| Index: src/ic/mips/handler-compiler-mips.cc
|
| diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc
|
| index 00c3242f48a92a1ed670e08db985908540b8c77c..4fc736fee512d9c9b2fa21a0fc627b65925c9a71 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -59,7 +59,7 @@ void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
|
|
|
| void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
|
| MacroAssembler* masm, Handle<HeapType> type, Register receiver,
|
| - Handle<JSFunction> setter) {
|
| + Register holder, int accessor_index, int expected_arguments) {
|
| // ----------- S t a t e -------------
|
| // -- ra : return address
|
| // -----------------------------------
|
| @@ -69,7 +69,7 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
|
| // Save value register, so we can restore it later.
|
| __ push(value());
|
|
|
| - if (!setter.is_null()) {
|
| + if (accessor_index >= 0) {
|
| // Call the JavaScript setter with receiver and value on the stack.
|
| if (IC::TypeToMap(*type, masm->isolate())->IsJSGlobalObjectMap()) {
|
| // Swap in the global receiver.
|
| @@ -78,9 +78,14 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
|
| }
|
| __ Push(receiver, value());
|
| ParameterCount actual(1);
|
| - ParameterCount expected(setter);
|
| - __ InvokeFunction(setter, expected, actual, CALL_FUNCTION,
|
| - NullCallWrapper());
|
| + ParameterCount expected(expected_arguments);
|
| + Register scratch = holder;
|
| + __ lw(scratch, FieldMemOperand(holder, HeapObject::kMapOffset));
|
| + __ LoadInstanceDescriptors(scratch, scratch);
|
| + __ lw(scratch, FieldMemOperand(scratch, DescriptorArray::GetValueOffset(
|
| + accessor_index)));
|
| + __ lw(a1, FieldMemOperand(scratch, AccessorPair::kSetterOffset));
|
| + __ InvokeFunction(a1, expected, actual, CALL_FUNCTION, NullCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
| // the place to continue after deoptimization.
|
|
|