Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 55891d51ef6014f8b26e6ea52f982a0109f7e10b..a814bfb59947228c6d02c3e422e97753da53fe15 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -1902,36 +1902,10 @@ static void EmitContinueIfStrictOrNative(MacroAssembler* masm, Label* cont) { |
} |
-static void EmitSlowCase(Isolate* isolate, |
- MacroAssembler* masm, |
- StackArgumentsAccessor* args, |
- int argc, |
- Label* non_function) { |
- // Check for function proxy. |
- __ CmpInstanceType(rcx, JS_FUNCTION_PROXY_TYPE); |
- __ j(not_equal, non_function); |
- __ PopReturnAddressTo(rcx); |
- __ Push(rdi); // put proxy as additional argument under return address |
- __ PushReturnAddressFrom(rcx); |
- __ Set(rax, argc + 1); |
- __ Set(rbx, 0); |
- __ GetBuiltinEntry(rdx, Context::CALL_FUNCTION_PROXY_BUILTIN_INDEX); |
- { |
- Handle<Code> adaptor = |
- masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); |
- __ jmp(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); |
- __ movp(args->GetReceiverOperand(), rdi); |
+static void EmitSlowCase(MacroAssembler* masm, StackArgumentsAccessor* args, |
+ int argc) { |
__ Set(rax, argc); |
- __ Set(rbx, 0); |
- __ GetBuiltinEntry(rdx, Context::CALL_NON_FUNCTION_BUILTIN_INDEX); |
- Handle<Code> adaptor = |
- isolate->builtins()->ArgumentsAdaptorTrampoline(); |
- __ Jump(adaptor, RelocInfo::CODE_TARGET); |
+ __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); |
} |
@@ -1956,13 +1930,12 @@ static void CallFunctionNoFeedback(MacroAssembler* masm, |
// rdi : the function to call |
// wrap_and_call can only be true if we are compiling a monomorphic method. |
- Isolate* isolate = masm->isolate(); |
- Label slow, non_function, wrap, cont; |
+ Label slow, wrap, cont; |
StackArgumentsAccessor args(rsp, argc); |
if (needs_checks) { |
// Check that the function really is a JavaScript function. |
- __ JumpIfSmi(rdi, &non_function); |
+ __ JumpIfSmi(rdi, &slow); |
// Goto slow case if we do not have a function. |
__ CmpObjectType(rdi, JS_FUNCTION_TYPE, rcx); |
@@ -1997,7 +1970,7 @@ static void CallFunctionNoFeedback(MacroAssembler* masm, |
if (needs_checks) { |
// Slow-case: Non-function called. |
__ bind(&slow); |
- EmitSlowCase(isolate, masm, &args, argc, &non_function); |
+ EmitSlowCase(masm, &args, argc); |
} |
if (call_as_method) { |
@@ -2113,32 +2086,28 @@ void CallIC_ArrayStub::Generate(MacroAssembler* masm) { |
__ movp(rcx, FieldOperand(rbx, rdx, times_pointer_size, |
FixedArray::kHeaderSize)); |
// Verify that ecx contains an AllocationSite |
- Factory* factory = masm->isolate()->factory(); |
- __ Cmp(FieldOperand(rcx, HeapObject::kMapOffset), |
- factory->allocation_site_map()); |
- __ j(not_equal, &miss); |
+ __ CompareRoot(FieldOperand(rcx, HeapObject::kMapOffset), |
+ Heap::kAllocationSiteMapRootIndex); |
+ __ j(not_equal, &miss, Label::kNear); |
// Increment the call count for monomorphic function calls. |
- __ SmiAddConstant(FieldOperand(rbx, rdx, times_pointer_size, |
- FixedArray::kHeaderSize + kPointerSize), |
- Smi::FromInt(CallICNexus::kCallCountIncrement)); |
+ { |
+ __ SmiAddConstant(FieldOperand(rbx, rdx, times_pointer_size, |
+ FixedArray::kHeaderSize + kPointerSize), |
+ Smi::FromInt(CallICNexus::kCallCountIncrement)); |
- __ movp(rbx, rcx); |
- __ movp(rdx, rdi); |
- ArrayConstructorStub stub(masm->isolate(), arg_count()); |
- __ TailCallStub(&stub); |
+ __ movp(rbx, rcx); |
+ __ movp(rdx, rdi); |
+ ArrayConstructorStub stub(masm->isolate(), arg_count()); |
+ __ TailCallStub(&stub); |
+ } |
__ bind(&miss); |
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. |
- __ int3(); |
+ __ Set(rax, arg_count()); |
+ __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); |
} |
@@ -2152,7 +2121,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(); |
StackArgumentsAccessor args(rsp, argc); |
@@ -2207,7 +2176,7 @@ void CallICStub::Generate(MacroAssembler* masm) { |
__ InvokeFunction(rdi, actual, JUMP_FUNCTION, NullCallWrapper()); |
__ bind(&slow); |
- EmitSlowCase(isolate, masm, &args, argc, &non_function); |
+ EmitSlowCase(masm, &args, argc); |
if (CallAsMethod()) { |
__ bind(&wrap); |
@@ -2288,7 +2257,7 @@ void CallICStub::Generate(MacroAssembler* masm) { |
// the slow case |
__ bind(&slow_start); |
// Check that function is not a smi. |
- __ JumpIfSmi(rdi, &non_function); |
+ __ JumpIfSmi(rdi, &slow); |
// Check that function is a JSFunction. |
__ CmpObjectType(rdi, JS_FUNCTION_TYPE, rcx); |
__ j(not_equal, &slow); |