@@ -1826,9 +1826,9 @@ static void GenerateRecordCallTarget(MacroAssembler* masm, Register argc,
1826
1826
// index : slot in feedback vector (smi)
1827
1827
Label initialize, done, miss, megamorphic, not_array_function;
1828
1828
1829
- DCHECK_EQ (*TypeFeedbackVector ::MegamorphicSentinel (masm->isolate ()),
1829
+ DCHECK_EQ (*FeedbackVector ::MegamorphicSentinel (masm->isolate ()),
1830
1830
masm->isolate ()->heap ()->megamorphic_symbol ());
1831
- DCHECK_EQ (*TypeFeedbackVector ::UninitializedSentinel (masm->isolate ()),
1831
+ DCHECK_EQ (*FeedbackVector ::UninitializedSentinel (masm->isolate ()),
1832
1832
masm->isolate ()->heap ()->uninitialized_symbol ());
1833
1833
1834
1834
// Load the cache state.
@@ -1843,7 +1843,7 @@ static void GenerateRecordCallTarget(MacroAssembler* masm, Register argc,
1843
1843
// function without changing the state.
1844
1844
// We don't know if feedback value is a WeakCell or a Symbol, but it's
1845
1845
// harmless to read at this position in a symbol (see static asserts in
1846
- // type- feedback-vector.h).
1846
+ // feedback-vector.h).
1847
1847
Label check_allocation_site;
1848
1848
__ Ldr (feedback_value, FieldMemOperand (feedback, WeakCell::kValueOffset ));
1849
1849
__ Cmp (function, feedback_value);
@@ -2967,7 +2967,7 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) {
2967
2967
}
2968
2968
2969
2969
void CallICTrampolineStub::Generate (MacroAssembler* masm) {
2970
- __ EmitLoadTypeFeedbackVector (x2);
2970
+ __ EmitLoadFeedbackVector (x2);
2971
2971
CallICStub stub (isolate (), state ());
2972
2972
__ Jump (stub.GetCode (), RelocInfo::CODE_TARGET);
2973
2973
}
0 commit comments