| Index: src/ic/arm/ic-arm.cc
|
| diff --git a/src/ic/arm/ic-arm.cc b/src/ic/arm/ic-arm.cc
|
| index fad0737a1ccd23530970bad0617079e8d4575ea0..96fcc36d925cc27099483a31e93a56e7d34290c8 100644
|
| --- a/src/ic/arm/ic-arm.cc
|
| +++ b/src/ic/arm/ic-arm.cc
|
| @@ -13,38 +13,6 @@ namespace v8 {
|
| namespace internal {
|
|
|
|
|
| -// ----------------------------------------------------------------------------
|
| -// Static IC stub generators.
|
| -//
|
| -
|
| -#define __ ACCESS_MASM(masm)
|
| -
|
| -static void StoreIC_PushArgs(MacroAssembler* masm) {
|
| - __ Push(StoreWithVectorDescriptor::ValueRegister(),
|
| - StoreWithVectorDescriptor::SlotRegister(),
|
| - StoreWithVectorDescriptor::VectorRegister(),
|
| - StoreWithVectorDescriptor::ReceiverRegister(),
|
| - StoreWithVectorDescriptor::NameRegister());
|
| -}
|
| -
|
| -
|
| -void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
|
| - StoreIC_PushArgs(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);
|
| -}
|
| -
|
| -#undef __
|
| -
|
| -
|
| Condition CompareIC::ComputeCondition(Token::Value op) {
|
| switch (op) {
|
| case Token::EQ_STRICT:
|
|
|