| Index: src/mips64/code-stubs-mips64.cc
|
| diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc
|
| index cf421497943fa933cddd5599cfeb13d335bb34da..ac0ca9e95ebe36c1d1b21e14f89e11cf3003cf4d 100644
|
| --- a/src/mips64/code-stubs-mips64.cc
|
| +++ b/src/mips64/code-stubs-mips64.cc
|
| @@ -4642,7 +4642,7 @@ void LoadICTrampolineStub::Generate(MacroAssembler* masm) {
|
|
|
| void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) {
|
| EmitLoadTypeFeedbackVector(masm, LoadWithVectorDescriptor::VectorRegister());
|
| - KeyedLoadICStub stub(isolate());
|
| + KeyedLoadICStub stub(isolate(), state());
|
| stub.GenerateForTrampoline(masm);
|
| }
|
|
|
| @@ -4853,7 +4853,7 @@ void KeyedLoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
|
| __ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex);
|
| __ Branch(&try_poly_name, ne, feedback, Operand(at));
|
| Handle<Code> megamorphic_stub =
|
| - KeyedLoadIC::ChooseMegamorphicStub(masm->isolate());
|
| + KeyedLoadIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState());
|
| __ Jump(megamorphic_stub, RelocInfo::CODE_TARGET);
|
|
|
| __ bind(&try_poly_name);
|
|
|