| 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 ccab527ce8e5812ef02ce6a6baee397d23f4f3ca..d0e7dfe74daff7365d537c8d277d5127474a6259 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -236,7 +236,7 @@ void PropertyHandlerCompiler::GenerateCheckPropertyCell(
|
|
|
| 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 -------------
|
| // -- esp[0] : return address
|
| // -----------------------------------
|
| @@ -246,7 +246,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.
|
| @@ -256,8 +256,14 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
|
| __ push(receiver);
|
| __ push(value());
|
| ParameterCount actual(1);
|
| - ParameterCount expected(setter);
|
| - __ InvokeFunction(setter, expected, actual, CALL_FUNCTION,
|
| + ParameterCount expected(expected_arguments);
|
| + Register scratch = holder;
|
| + __ mov(scratch, FieldOperand(holder, HeapObject::kMapOffset));
|
| + __ LoadInstanceDescriptors(scratch, scratch);
|
| + __ mov(scratch, FieldOperand(scratch, DescriptorArray::GetValueOffset(
|
| + accessor_index)));
|
| + __ mov(edi, FieldOperand(scratch, AccessorPair::kSetterOffset));
|
| + __ InvokeFunction(edi, expected, actual, CALL_FUNCTION,
|
| NullCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
|
|