Index: src/arm/stub-cache-arm.cc |
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc |
index 57fe596ac59d6af1c9fa3b80fb4f4e055c10cef0..61f7801aff30d9377798d993836025efa5bd4072 100644 |
--- a/src/arm/stub-cache-arm.cc |
+++ b/src/arm/stub-cache-arm.cc |
@@ -2278,6 +2278,60 @@ MaybeObject* CallStubCompiler::CompileMathAbsCall(Object* object, |
} |
+MaybeObject* CallStubCompiler::CompileFastApiCall( |
+ const CallOptimization& optimization, |
+ Object* object, |
+ JSObject* holder, |
+ JSGlobalPropertyCell* cell, |
+ JSFunction* function, |
+ String* name) { |
+ ASSERT(optimization.is_simple_api_call()); |
+ // Bail out if object is a global object as we don't want to |
+ // repatch it to global receiver. |
+ if (object->IsGlobalObject()) return Heap::undefined_value(); |
+ if (cell != NULL) return Heap::undefined_value(); |
+ int depth = optimization.GetPrototypeDepthOfExpectedType( |
+ JSObject::cast(object), holder); |
+ if (depth == kInvalidProtoDepth) return Heap::undefined_value(); |
+ |
+ Label miss, miss_before_stack_reserved; |
+ |
+ GenerateNameCheck(name, &miss_before_stack_reserved); |
+ |
+ // Get the receiver from the stack. |
+ const int argc = arguments().immediate(); |
+ __ ldr(r1, MemOperand(sp, argc * kPointerSize)); |
+ |
+ // Check that the receiver isn't a smi. |
+ __ tst(r1, Operand(kSmiTagMask)); |
+ __ b(eq, &miss_before_stack_reserved); |
+ |
+ __ IncrementCounter(&Counters::call_const, 1, r0, r3); |
+ __ IncrementCounter(&Counters::call_const_fast_api, 1, r0, r3); |
+ |
+ ReserveSpaceForFastApiCall(masm(), r0); |
+ |
+ // Check that the maps haven't changed and find a Holder as a side effect. |
+ CheckPrototypes(JSObject::cast(object), r1, holder, r0, r3, r4, name, |
+ depth, &miss); |
+ |
+ MaybeObject* result = GenerateFastApiDirectCall(masm(), optimization, argc); |
+ if (result->IsFailure()) return result; |
+ |
+ __ bind(&miss); |
+ FreeSpaceForFastApiCall(masm()); |
+ |
+ __ bind(&miss_before_stack_reserved); |
+ Object* obj; |
+ { MaybeObject* maybe_obj = GenerateMissBranch(); |
+ if (!maybe_obj->ToObject(&obj)) return maybe_obj; |
+ } |
+ |
+ // Return the generated code. |
+ return GetCode(function); |
+} |
+ |
+ |
MaybeObject* CallStubCompiler::CompileCallConstant(Object* object, |
JSObject* holder, |
JSFunction* function, |
@@ -2287,22 +2341,18 @@ MaybeObject* CallStubCompiler::CompileCallConstant(Object* object, |
// -- r2 : name |
// -- lr : return address |
// ----------------------------------- |
- SharedFunctionInfo* function_info = function->shared(); |
- if (function_info->HasBuiltinFunctionId()) { |
- BuiltinFunctionId id = function_info->builtin_function_id(); |
+ if (HasCustomCallGenerator(function)) { |
MaybeObject* maybe_result = CompileCustomCall( |
- id, object, holder, NULL, function, name); |
+ object, holder, NULL, function, name); |
Object* result; |
if (!maybe_result->ToObject(&result)) return maybe_result; |
// undefined means bail out to regular compiler. |
- if (!result->IsUndefined()) { |
- return result; |
- } |
+ if (!result->IsUndefined()) return result; |
} |
- Label miss_in_smi_check; |
+ Label miss; |
- GenerateNameCheck(name, &miss_in_smi_check); |
+ GenerateNameCheck(name, &miss); |
// Get the receiver from the stack |
const int argc = arguments().immediate(); |
@@ -2311,39 +2361,25 @@ MaybeObject* CallStubCompiler::CompileCallConstant(Object* object, |
// Check that the receiver isn't a smi. |
if (check != NUMBER_CHECK) { |
__ tst(r1, Operand(kSmiTagMask)); |
- __ b(eq, &miss_in_smi_check); |
+ __ b(eq, &miss); |
} |
// Make sure that it's okay not to patch the on stack receiver |
// unless we're doing a receiver map check. |
ASSERT(!object->IsGlobalObject() || check == RECEIVER_MAP_CHECK); |
- CallOptimization optimization(function); |
- int depth = kInvalidProtoDepth; |
- Label miss; |
- |
+ SharedFunctionInfo* function_info = function->shared(); |
switch (check) { |
case RECEIVER_MAP_CHECK: |
__ IncrementCounter(&Counters::call_const, 1, r0, r3); |
- if (optimization.is_simple_api_call() && !object->IsGlobalObject()) { |
- depth = optimization.GetPrototypeDepthOfExpectedType( |
- JSObject::cast(object), holder); |
- } |
- |
- if (depth != kInvalidProtoDepth) { |
- __ IncrementCounter(&Counters::call_const_fast_api, 1, r0, r3); |
- ReserveSpaceForFastApiCall(masm(), r0); |
- } |
- |
// Check that the maps haven't changed. |
CheckPrototypes(JSObject::cast(object), r1, holder, r0, r3, r4, name, |
- depth, &miss); |
+ &miss); |
// Patch the receiver on the stack with the global proxy if |
// necessary. |
if (object->IsGlobalObject()) { |
- ASSERT(depth == kInvalidProtoDepth); |
__ ldr(r3, FieldMemOperand(r1, GlobalObject::kGlobalReceiverOffset)); |
__ str(r3, MemOperand(sp, argc * kPointerSize)); |
} |
@@ -2416,20 +2452,10 @@ MaybeObject* CallStubCompiler::CompileCallConstant(Object* object, |
UNREACHABLE(); |
} |
- if (depth != kInvalidProtoDepth) { |
- MaybeObject* result = GenerateFastApiDirectCall(masm(), optimization, argc); |
- if (result->IsFailure()) return result; |
- } else { |
- __ InvokeFunction(function, arguments(), JUMP_FUNCTION); |
- } |
+ __ InvokeFunction(function, arguments(), JUMP_FUNCTION); |
// Handle call cache miss. |
__ bind(&miss); |
- if (depth != kInvalidProtoDepth) { |
- FreeSpaceForFastApiCall(masm()); |
- } |
- |
- __ bind(&miss_in_smi_check); |
Object* obj; |
{ MaybeObject* maybe_obj = GenerateMissBranch(); |
if (!maybe_obj->ToObject(&obj)) return maybe_obj; |
@@ -2505,11 +2531,9 @@ MaybeObject* CallStubCompiler::CompileCallGlobal(JSObject* object, |
// -- lr : return address |
// ----------------------------------- |
- SharedFunctionInfo* function_info = function->shared(); |
- if (function_info->HasBuiltinFunctionId()) { |
- BuiltinFunctionId id = function_info->builtin_function_id(); |
+ if (HasCustomCallGenerator(function)) { |
MaybeObject* maybe_result = CompileCustomCall( |
- id, object, holder, cell, function, name); |
+ object, holder, cell, function, name); |
Object* result; |
if (!maybe_result->ToObject(&result)) return maybe_result; |
// undefined means bail out to regular compiler. |