| Index: src/ic/ia32/handler-compiler-ia32.cc
|
| diff --git a/src/ic/ia32/handler-compiler-ia32.cc b/src/ic/ia32/handler-compiler-ia32.cc
|
| index d4a8a1fb878b7fe442b1c42da8fa88d19916c42f..94b48be274bdf64fad6603bf6072802fe723b72f 100644
|
| --- a/src/ic/ia32/handler-compiler-ia32.cc
|
| +++ b/src/ic/ia32/handler-compiler-ia32.cc
|
| @@ -685,13 +685,21 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
|
|
|
|
|
| Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| - Handle<JSObject> object, Handle<Name> name, int accessor_index) {
|
| + Handle<JSObject> object, Handle<Name> name,
|
| + Handle<ExecutableAccessorInfo> callback) {
|
| Register holder_reg = Frontend(name);
|
|
|
| __ pop(scratch1()); // remove the return address
|
| __ push(receiver());
|
| __ push(holder_reg);
|
| - __ Push(Smi::FromInt(accessor_index));
|
| + // If the callback cannot leak, then push the callback directly,
|
| + // otherwise wrap it in a weak cell.
|
| + if (callback->data()->IsUndefined() || callback->data()->IsSmi()) {
|
| + __ Push(callback);
|
| + } else {
|
| + Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback);
|
| + __ Push(cell);
|
| + }
|
| __ Push(name);
|
| __ push(value());
|
| __ push(scratch1()); // restore return address
|
|
|