| Index: src/x87/code-stubs-x87.cc
|
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
|
| index 8c23bf30bd409e4145126472c1a78bb2066b8d13..e8ebc5fc38b234da3d151652fa2256942bf6853e 100644
|
| --- a/src/x87/code-stubs-x87.cc
|
| +++ b/src/x87/code-stubs-x87.cc
|
| @@ -2152,13 +2152,18 @@ static void EmitLoadTypeFeedbackVector(MacroAssembler* masm, Register vector) {
|
| }
|
|
|
|
|
| -void CallICStub::Generate_MonomorphicArray(MacroAssembler* masm, Label* miss) {
|
| +void CallIC_ArrayStub::Generate(MacroAssembler* masm) {
|
| // edi - function
|
| - // ebx - feedback vector
|
| // edx - slot id
|
| + Label miss;
|
| + int argc = state_.arg_count();
|
| + ParameterCount actual(argc);
|
| +
|
| + EmitLoadTypeFeedbackVector(masm, ebx);
|
| +
|
| __ LoadGlobalFunction(Context::ARRAY_FUNCTION_INDEX, ecx);
|
| __ cmp(edi, ecx);
|
| - __ j(not_equal, miss);
|
| + __ j(not_equal, &miss);
|
|
|
| __ mov(eax, arg_count());
|
| __ mov(ebx, FieldOperand(ebx, edx, times_half_pointer_size,
|
| @@ -2167,24 +2172,9 @@ void CallICStub::Generate_MonomorphicArray(MacroAssembler* masm, Label* miss) {
|
| __ AssertUndefinedOrAllocationSite(ebx);
|
| ArrayConstructorStub stub(masm->isolate(), arg_count());
|
| __ TailCallStub(&stub);
|
| -}
|
| -
|
| -
|
| -void CallICStub::Generate_CustomFeedbackCall(MacroAssembler* masm) {
|
| - // edi - function
|
| - // ebx - feedback vector
|
| - // edx - slot id
|
| - Label miss;
|
| -
|
| - if (state_.stub_type() == CallIC::MONOMORPHIC_ARRAY) {
|
| - Generate_MonomorphicArray(masm, &miss);
|
| - } else {
|
| - // So far there is only one customer for our custom feedback scheme.
|
| - UNREACHABLE();
|
| - }
|
|
|
| __ bind(&miss);
|
| - GenerateMiss(masm);
|
| + GenerateMiss(masm, IC::kCallIC_Customization_Miss);
|
|
|
| // The slow case, we need this no matter what to complete a call after a miss.
|
| CallFunctionNoFeedback(masm,
|
| @@ -2209,11 +2199,6 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
|
|
| EmitLoadTypeFeedbackVector(masm, ebx);
|
|
|
| - if (state_.stub_type() != CallIC::DEFAULT) {
|
| - Generate_CustomFeedbackCall(masm);
|
| - return;
|
| - }
|
| -
|
| // The checks. First, does edi match the recorded monomorphic target?
|
| __ cmp(edi, FieldOperand(ebx, edx, times_half_pointer_size,
|
| FixedArray::kHeaderSize));
|
| @@ -2264,7 +2249,7 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
|
|
| // We are here because tracing is on or we are going monomorphic.
|
| __ bind(&miss);
|
| - GenerateMiss(masm);
|
| + GenerateMiss(masm, IC::kCallIC_Miss);
|
|
|
| // the slow case
|
| __ bind(&slow_start);
|
| @@ -2282,7 +2267,7 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void CallICStub::GenerateMiss(MacroAssembler* masm) {
|
| +void CallICStub::GenerateMiss(MacroAssembler* masm, IC::UtilityId id) {
|
| // Get the receiver of the function from the stack; 1 ~ return address.
|
| __ mov(ecx, Operand(esp, (state_.arg_count() + 1) * kPointerSize));
|
|
|
| @@ -2296,7 +2281,7 @@ void CallICStub::GenerateMiss(MacroAssembler* masm) {
|
| __ push(edx);
|
|
|
| // Call the entry.
|
| - ExternalReference miss = ExternalReference(IC_Utility(IC::kCallIC_Miss),
|
| + ExternalReference miss = ExternalReference(IC_Utility(id),
|
| masm->isolate());
|
| __ CallExternalReference(miss, 4);
|
|
|
|
|