| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 71c974ea6e8f37f1c6587836b871b377c95e69c3..ecd27c08104119fe3a75fcd297b732dd209114dd 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -1830,7 +1830,7 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) {
|
| // function without changing the state.
|
| __ cmp(ecx, edi);
|
| __ j(equal, &done, Label::kFar);
|
| - __ cmp(ecx, Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
|
| + __ cmp(ecx, Immediate(TypeFeedbackVector::MegamorphicSentinel(isolate)));
|
| __ j(equal, &done, Label::kFar);
|
|
|
| if (!FLAG_pretenuring_call_new) {
|
| @@ -1853,14 +1853,14 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) {
|
|
|
| // A monomorphic miss (i.e, here the cache is not uninitialized) goes
|
| // megamorphic.
|
| - __ cmp(ecx, Immediate(TypeFeedbackInfo::UninitializedSentinel(isolate)));
|
| + __ cmp(ecx, Immediate(TypeFeedbackVector::UninitializedSentinel(isolate)));
|
| __ j(equal, &initialize);
|
| // MegamorphicSentinel is an immortal immovable object (undefined) so no
|
| // write-barrier is needed.
|
| __ bind(&megamorphic);
|
| - __ mov(FieldOperand(ebx, edx, times_half_pointer_size,
|
| - FixedArray::kHeaderSize),
|
| - Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
|
| + __ mov(
|
| + FieldOperand(ebx, edx, times_half_pointer_size, FixedArray::kHeaderSize),
|
| + Immediate(TypeFeedbackVector::MegamorphicSentinel(isolate)));
|
| __ jmp(&done, Label::kFar);
|
|
|
| // An uninitialized cache is patched with the function or sentinel to
|
| @@ -2196,9 +2196,9 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
|
|
| __ mov(ecx, FieldOperand(ebx, edx, times_half_pointer_size,
|
| FixedArray::kHeaderSize));
|
| - __ cmp(ecx, Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
|
| + __ cmp(ecx, Immediate(TypeFeedbackVector::MegamorphicSentinel(isolate)));
|
| __ j(equal, &slow_start);
|
| - __ cmp(ecx, Immediate(TypeFeedbackInfo::UninitializedSentinel(isolate)));
|
| + __ cmp(ecx, Immediate(TypeFeedbackVector::UninitializedSentinel(isolate)));
|
| __ j(equal, &miss);
|
|
|
| if (!FLAG_trace_ic) {
|
| @@ -2209,7 +2209,7 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
| __ j(not_equal, &miss);
|
| __ mov(FieldOperand(ebx, edx, times_half_pointer_size,
|
| FixedArray::kHeaderSize),
|
| - Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
|
| + Immediate(TypeFeedbackVector::MegamorphicSentinel(isolate)));
|
| __ jmp(&slow_start);
|
| }
|
|
|
|
|