Index: src/ic/arm64/ic-arm64.cc |
diff --git a/src/ic/arm64/ic-arm64.cc b/src/ic/arm64/ic-arm64.cc |
index bffa603cb74c7b06dbb4c2504c52a3a900fb9ed4..6985ea5d4e6f62ed4d8d77a60859277f1f563272 100644 |
--- a/src/ic/arm64/ic-arm64.cc |
+++ b/src/ic/arm64/ic-arm64.cc |
@@ -775,20 +775,6 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
} |
-void KeyedStoreIC::GenerateSlow(MacroAssembler* masm) { |
- ASM_LOCATION("KeyedStoreIC::GenerateSlow"); |
- |
- // Push receiver, key and value for runtime call. |
- __ Push(ReceiverRegister(), NameRegister(), ValueRegister()); |
- |
- // 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. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedStoreIC_Slow), masm->isolate()); |
- __ TailCallExternalReference(ref, 3, 1); |
-} |
- |
- |
static void KeyedStoreGenerateGenericHelper( |
MacroAssembler* masm, Label* fast_object, Label* fast_double, Label* slow, |
KeyedStoreCheckMap check_map, KeyedStoreIncrementLength increment_length, |
@@ -1069,25 +1055,6 @@ void StoreIC::GenerateNormal(MacroAssembler* masm) { |
} |
-void StoreIC::GenerateSlow(MacroAssembler* masm) { |
- // ---------- S t a t e -------------- |
- // -- x0 : value |
- // -- x1 : receiver |
- // -- x2 : name |
- // -- lr : return address |
- // ----------------------------------- |
- |
- // Push receiver, name and value for runtime call. |
- __ Push(ReceiverRegister(), NameRegister(), ValueRegister()); |
- |
- // 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. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kStoreIC_Slow), masm->isolate()); |
- __ TailCallExternalReference(ref, 3, 1); |
-} |
- |
- |
Condition CompareIC::ComputeCondition(Token::Value op) { |
switch (op) { |
case Token::EQ_STRICT: |