Index: src/arm/code-stubs-arm.cc |
diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc |
index f504b72fef7a3791c5ad590ddd25dbfc28fade25..af86e47a35f44bbca7559429624caa40e2af2242 100644 |
--- a/src/arm/code-stubs-arm.cc |
+++ b/src/arm/code-stubs-arm.cc |
@@ -2395,31 +2395,9 @@ static void EmitContinueIfStrictOrNative(MacroAssembler* masm, Label* cont) { |
} |
-static void EmitSlowCase(MacroAssembler* masm, |
- int argc, |
- Label* non_function) { |
- // Check for function proxy. |
- __ cmp(r4, Operand(JS_FUNCTION_PROXY_TYPE)); |
- __ b(ne, non_function); |
- __ push(r1); // put proxy as additional argument |
- __ mov(r0, Operand(argc + 1, RelocInfo::NONE32)); |
- __ mov(r2, Operand::Zero()); |
- __ GetBuiltinFunction(r1, Context::CALL_FUNCTION_PROXY_BUILTIN_INDEX); |
- { |
- Handle<Code> adaptor = |
- masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); |
- __ Jump(adaptor, RelocInfo::CODE_TARGET); |
- } |
- |
- // CALL_NON_FUNCTION expects the non-function callee as receiver (instead |
- // of the original receiver from the call site). |
- __ bind(non_function); |
- __ str(r1, MemOperand(sp, argc * kPointerSize)); |
- __ mov(r0, Operand(argc)); // Set up the number of arguments. |
- __ mov(r2, Operand::Zero()); |
- __ GetBuiltinFunction(r1, Context::CALL_NON_FUNCTION_BUILTIN_INDEX); |
- __ Jump(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(), |
- RelocInfo::CODE_TARGET); |
+static void EmitSlowCase(MacroAssembler* masm, int argc) { |
+ __ mov(r0, Operand(argc)); |
+ __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); |
} |
@@ -2441,12 +2419,12 @@ static void CallFunctionNoFeedback(MacroAssembler* masm, |
int argc, bool needs_checks, |
bool call_as_method) { |
// r1 : the function to call |
- Label slow, non_function, wrap, cont; |
+ Label slow, wrap, cont; |
if (needs_checks) { |
// Check that the function is really a JavaScript function. |
// r1: pushed function (to be verified) |
- __ JumpIfSmi(r1, &non_function); |
+ __ JumpIfSmi(r1, &slow); |
// Goto slow case if we do not have a function. |
__ CompareObjectType(r1, r4, r4, JS_FUNCTION_TYPE); |
@@ -2481,7 +2459,7 @@ static void CallFunctionNoFeedback(MacroAssembler* masm, |
if (needs_checks) { |
// Slow-case: Non-function called. |
__ bind(&slow); |
- EmitSlowCase(masm, argc, &non_function); |
+ EmitSlowCase(masm, argc); |
} |
if (call_as_method) { |
@@ -2615,13 +2593,8 @@ void CallIC_ArrayStub::Generate(MacroAssembler* masm) { |
GenerateMiss(masm); |
// The slow case, we need this no matter what to complete a call after a miss. |
- CallFunctionNoFeedback(masm, |
- arg_count(), |
- true, |
- CallAsMethod()); |
- |
- // Unreachable. |
- __ stop("Unexpected code address"); |
+ __ mov(r0, Operand(arg_count())); |
+ __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); |
} |
@@ -2634,7 +2607,7 @@ void CallICStub::Generate(MacroAssembler* masm) { |
const int generic_offset = |
FixedArray::OffsetOfElementAt(TypeFeedbackVector::kGenericCountIndex); |
Label extra_checks_or_miss, slow_start; |
- Label slow, non_function, wrap, cont; |
+ Label slow, wrap, cont; |
Label have_js_function; |
int argc = arg_count(); |
ParameterCount actual(argc); |
@@ -2688,7 +2661,7 @@ void CallICStub::Generate(MacroAssembler* masm) { |
__ InvokeFunction(r1, actual, JUMP_FUNCTION, NullCallWrapper()); |
__ bind(&slow); |
- EmitSlowCase(masm, argc, &non_function); |
+ EmitSlowCase(masm, argc); |
if (CallAsMethod()) { |
__ bind(&wrap); |
@@ -2775,7 +2748,7 @@ void CallICStub::Generate(MacroAssembler* masm) { |
__ bind(&slow_start); |
// Check that the function is really a JavaScript function. |
// r1: pushed function (to be verified) |
- __ JumpIfSmi(r1, &non_function); |
+ __ JumpIfSmi(r1, &slow); |
// Goto slow case if we do not have a function. |
__ CompareObjectType(r1, r4, r4, JS_FUNCTION_TYPE); |