| Index: src/ic/arm/ic-arm.cc
|
| diff --git a/src/ic/arm/ic-arm.cc b/src/ic/arm/ic-arm.cc
|
| index fee6ebf259224d561a54846bdd4c549a38eb3bde..19381047f3cb4c1eff4ab9a87d8370bf1054d9b4 100644
|
| --- a/src/ic/arm/ic-arm.cc
|
| +++ b/src/ic/arm/ic-arm.cc
|
| @@ -454,6 +454,13 @@ 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);
|
| +}
|
|
|
| static void KeyedStoreGenerateMegamorphicHelper(
|
| MacroAssembler* masm, Label* fast_object, Label* fast_double, Label* slow,
|
|
|