| Index: src/x64/stub-cache-x64.cc
|
| diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc
|
| index 43a28d5bb395c3ab7785572f6c6c40af65bcbc73..a543d227128d3330fd8851f83eaf8c9ec290e4b2 100644
|
| --- a/src/x64/stub-cache-x64.cc
|
| +++ b/src/x64/stub-cache-x64.cc
|
| @@ -2139,11 +2139,12 @@ Handle<Code> StoreStubCompiler::CompileStoreCallback(
|
| Handle<JSObject> holder,
|
| Handle<Name> name,
|
| Handle<ExecutableAccessorInfo> callback) {
|
| - HandlerFrontend(IC::CurrentTypeOf(object, isolate()),
|
| - receiver(), holder, name);
|
| + Register holder_reg = HandlerFrontend(
|
| + IC::CurrentTypeOf(object, isolate()), receiver(), holder, name);
|
|
|
| __ PopReturnAddressTo(scratch1());
|
| __ push(receiver());
|
| + __ push(holder_reg);
|
| __ Push(callback); // callback info
|
| __ Push(name);
|
| __ push(value());
|
| @@ -2152,7 +2153,7 @@ Handle<Code> StoreStubCompiler::CompileStoreCallback(
|
| // Do tail-call to the runtime system.
|
| ExternalReference store_callback_property =
|
| ExternalReference(IC_Utility(IC::kStoreCallbackProperty), isolate());
|
| - __ TailCallExternalReference(store_callback_property, 4, 1);
|
| + __ TailCallExternalReference(store_callback_property, 5, 1);
|
|
|
| // Return the generated code.
|
| return GetCode(kind(), Code::FAST, name);
|
|
|