Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index d89264cadec8f23080b3de1277859d2c0184db63..bf6773f4a5e62a6798eddf8560594e4e3f1a57f9 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -4797,6 +4797,20 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) { |
} |
+void LoadICTrampolineStub::Generate(MacroAssembler* masm) { |
+ EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); |
+ VectorLoadStub stub(isolate(), state_); |
+ __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); |
+} |
+ |
+ |
+void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) { |
+ EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); |
+ VectorKeyedLoadStub stub(isolate()); |
+ __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); |
+} |
+ |
+ |
void ProfileEntryHookStub::MaybeCallEntryHook(MacroAssembler* masm) { |
if (masm->isolate()->function_entry_hook() != NULL) { |
ProfileEntryHookStub stub(masm->isolate()); |