| 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 e98ad2231f5e555af00aab600c548288fd6202fa..353689e4ea0e4c9f52a8a03221ccbcf177ebb923 100644
|
| --- a/src/ic/x87/handler-compiler-x87.cc
|
| +++ b/src/ic/x87/handler-compiler-x87.cc
|
| @@ -197,9 +197,13 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| call_data_undefined = true;
|
| __ mov(data, Immediate(isolate->factory()->undefined_value()));
|
| } else {
|
| - __ mov(data, FieldOperand(callee, JSFunction::kSharedFunctionInfoOffset));
|
| - __ mov(data, FieldOperand(data, SharedFunctionInfo::kFunctionDataOffset));
|
| - __ mov(data, FieldOperand(data, FunctionTemplateInfo::kCallCodeOffset));
|
| + if (optimization.is_constant_call()) {
|
| + __ mov(data, FieldOperand(callee, JSFunction::kSharedFunctionInfoOffset));
|
| + __ mov(data, FieldOperand(data, SharedFunctionInfo::kFunctionDataOffset));
|
| + __ mov(data, FieldOperand(data, FunctionTemplateInfo::kCallCodeOffset));
|
| + } else {
|
| + __ mov(data, FieldOperand(callee, FunctionTemplateInfo::kCallCodeOffset));
|
| + }
|
| __ mov(data, FieldOperand(data, CallHandlerInfo::kDataOffset));
|
| }
|
|
|
| @@ -214,7 +218,8 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| __ mov(api_function_address, Immediate(function_address));
|
|
|
| // Jump to stub.
|
| - CallApiAccessorStub stub(isolate, is_store, call_data_undefined);
|
| + CallApiAccessorStub stub(isolate, is_store, call_data_undefined,
|
| + !optimization.is_constant_call());
|
| __ TailCallStub(&stub);
|
| }
|
|
|
|
|