Index: src/ia32/stub-cache-ia32.cc |
diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc |
index 5f1e26b932f57cff9398c573c98cf30ac1a74423..f5e2d0589272047876166b353d1507dd26b554e0 100644 |
--- a/src/ia32/stub-cache-ia32.cc |
+++ b/src/ia32/stub-cache-ia32.cc |
@@ -2996,6 +2996,43 @@ Handle<Code> LoadStubCompiler::CompileLoadCallback( |
} |
+#undef __ |
+#define __ ACCESS_MASM(masm) |
+ |
+ |
+void LoadStubCompiler::GenerateLoadViaGetter(MacroAssembler* masm, |
+ Handle<JSFunction> getter) { |
+ // ----------- S t a t e ------------- |
+ // -- ecx : name |
+ // -- edx : receiver |
+ // -- esp[0] : return address |
+ // ----------------------------------- |
+ { |
+ FrameScope scope(masm, StackFrame::INTERNAL); |
+ |
+ if (!getter.is_null()) { |
+ // Call the JavaScript getter with the receiver on the stack. |
+ __ push(edx); |
+ ParameterCount actual(0); |
+ __ InvokeFunction(getter, actual, CALL_FUNCTION, NullCallWrapper(), |
+ CALL_AS_METHOD); |
+ } else { |
+ // If we generate a global code snippet for deoptimization only, remember |
+ // the place to continue after deoptimization. |
+ masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset()); |
+ } |
+ |
+ // Restore context register. |
+ __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
+ } |
+ __ ret(0); |
+} |
+ |
+ |
+#undef __ |
+#define __ ACCESS_MASM(masm()) |
+ |
+ |
Handle<Code> LoadStubCompiler::CompileLoadViaGetter( |
Handle<String> name, |
Handle<JSObject> receiver, |
@@ -3012,19 +3049,7 @@ Handle<Code> LoadStubCompiler::CompileLoadViaGetter( |
__ JumpIfSmi(edx, &miss); |
CheckPrototypes(receiver, edx, holder, ebx, eax, edi, name, &miss); |
- { |
- FrameScope scope(masm(), StackFrame::INTERNAL); |
- |
- // Call the JavaScript getter with the receiver on the stack. |
- __ push(edx); |
- ParameterCount actual(0); |
- __ InvokeFunction(getter, actual, CALL_FUNCTION, NullCallWrapper(), |
- CALL_AS_METHOD); |
- |
- // Restore context register. |
- __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
- } |
- __ ret(0); |
+ GenerateLoadViaGetter(masm(), getter); |
__ bind(&miss); |
GenerateLoadMiss(masm(), Code::LOAD_IC); |