Index: src/ic/mips64/ic-mips64.cc |
diff --git a/src/ic/mips64/ic-mips64.cc b/src/ic/mips64/ic-mips64.cc |
index b551bc70f61c55cfbc1490edffd6453bc0d6c7db..d3406dd512c7fabf2147b60c5dc12ec53ef1763d 100644 |
--- a/src/ic/mips64/ic-mips64.cc |
+++ b/src/ic/mips64/ic-mips64.cc |
@@ -727,6 +727,14 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
__ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
+void KeyedStoreIC::GenerateSlow(MacroAssembler* masm) { |
+ StoreIC_PushArgs(masm); |
+ |
+ // The slow case calls into the runtime to complete the store without causing |
+ // an IC miss that would otherwise cause a transition to the generic stub. |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow); |
+} |
+ |
void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |