| Index: src/ic/x87/handler-compiler-x87.cc
|
| diff --git a/src/ic/x87/handler-compiler-x87.cc b/src/ic/x87/handler-compiler-x87.cc
|
| index 4bf0af2569bedbab033f27a177656b5a41757202..8d2181651d0a0c31961d08a1afce1b79cd9957fc 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -316,32 +316,6 @@ static void CompileCallLoadPropertyWithInterceptor(
|
| __ CallRuntime(id);
|
| }
|
|
|
| -
|
| -static void StoreIC_PushArgs(MacroAssembler* masm) {
|
| - Register receiver = StoreDescriptor::ReceiverRegister();
|
| - Register name = StoreDescriptor::NameRegister();
|
| - Register value = StoreDescriptor::ValueRegister();
|
| - Register slot = StoreWithVectorDescriptor::SlotRegister();
|
| - Register vector = StoreWithVectorDescriptor::VectorRegister();
|
| -
|
| - __ xchg(receiver, Operand(esp, 0));
|
| - __ push(name);
|
| - __ push(value);
|
| - __ push(slot);
|
| - __ push(vector);
|
| - __ push(receiver); // which contains the return address.
|
| -}
|
| -
|
| -
|
| -void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
| - // Return address is on the stack.
|
| - StoreIC_PushArgs(masm);
|
| -
|
| - // Do tail-call to runtime routine.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow);
|
| -}
|
| -
|
| -
|
| #undef __
|
| #define __ ACCESS_MASM(masm())
|
|
|
|
|