| 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 6b97ccb0fb3de0beaa4dced361c1f7909a788273..e2b7ae7a9bf0b55200be724883435703beecb466 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -141,7 +141,9 @@ void NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(
|
| void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| MacroAssembler* masm, const CallOptimization& optimization,
|
| Handle<Map> receiver_map, Register receiver, Register scratch_in,
|
| - bool is_store, Register store_parameter) {
|
| + bool is_store, Register store_parameter, Register accessor_holder,
|
| + int accessor_index) {
|
| + DCHECK(!accessor_holder.is(scratch_in));
|
| // Copy return value.
|
| __ pop(scratch_in);
|
| // receiver
|
| @@ -163,6 +165,10 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| Register api_function_address = edx;
|
| Register scratch = edi; // scratch_in is no longer valid.
|
|
|
| + // Put callee in place.
|
| + __ LoadAccessor(callee, accessor_holder, accessor_index,
|
| + is_store ? ACCESSOR_SETTER : ACCESSOR_GETTER);
|
| +
|
| // Put holder in place.
|
| CallOptimization::HolderLookup holder_lookup;
|
| Handle<JSObject> api_holder =
|
| @@ -180,13 +186,9 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| }
|
|
|
| Isolate* isolate = masm->isolate();
|
| - Handle<JSFunction> function = optimization.constant_function();
|
| Handle<CallHandlerInfo> api_call_info = optimization.api_call_info();
|
| Handle<Object> call_data_obj(api_call_info->data(), isolate);
|
|
|
| - // Put callee in place.
|
| - __ LoadHeapObject(callee, function);
|
| -
|
| bool call_data_undefined = false;
|
| // Put call_data in place.
|
| if (isolate->heap()->InNewSpace(*call_data_obj)) {
|
|
|