Commit ae9a2d38 authored by Mythri's avatar Mythri Committed by Commit Bot

Remove SetForceInlineFlag from src/js/*

Remove SetForceInlineFlag from the js builtins. 

Bug: 
Change-Id: I962982509c82e4baba8dc32a0f163147c47daf34
Reviewed-on: https://chromium-review.googlesource.com/571803Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Mythri Alle <mythria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46756}
parent 6ab0241d
......@@ -30,7 +30,6 @@ function HashToEntry(table, hash, numBuckets) {
var bucket = ORDERED_HASH_TABLE_HASH_TO_BUCKET(hash, numBuckets);
return ORDERED_HASH_TABLE_BUCKET_AT(table, bucket);
}
%SetForceInlineFlag(HashToEntry);
function SetFindEntry(table, numBuckets, key, hash) {
......@@ -50,7 +49,6 @@ function SetFindEntry(table, numBuckets, key, hash) {
}
return NOT_FOUND;
}
%SetForceInlineFlag(SetFindEntry);
function MapFindEntry(table, numBuckets, key, hash) {
......@@ -70,7 +68,6 @@ function MapFindEntry(table, numBuckets, key, hash) {
}
return NOT_FOUND;
}
%SetForceInlineFlag(MapFindEntry);
function ComputeIntegerHash(key, seed) {
......@@ -84,7 +81,6 @@ function ComputeIntegerHash(key, seed) {
hash = hash ^ (hash >>> 16);
return hash & 0x3fffffff;
}
%SetForceInlineFlag(ComputeIntegerHash);
function GetExistingHash(key) {
if (%_IsSmi(key)) {
......@@ -101,7 +97,6 @@ function GetExistingHash(key) {
}
return %GenericHash(key);
}
%SetForceInlineFlag(GetExistingHash);
function GetHash(key) {
......@@ -113,7 +108,6 @@ function GetHash(key) {
}
return hash;
}
%SetForceInlineFlag(GetHash);
// -------------------------------------------------------------------
......
......@@ -16,8 +16,6 @@ function MinSimple(a, b) {
return a > b ? b : a;
}
%SetForceInlineFlag(MaxSimple);
%SetForceInlineFlag(MinSimple);
// ----------------------------------------------------------------------------
// Exports
......
......@@ -247,7 +247,6 @@ TYPED_ARRAYS(TYPED_ARRAY_SUBARRAY_CASE)
"get %TypedArray%.prototype.subarray", this);
}
);
%SetForceInlineFlag(GlobalTypedArray.prototype.subarray);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment