Index: src/ia32/builtins-ia32.cc |
diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc |
index 67503e3963509dde3dcca2f4f5f9f2af9f898b5d..1f73a7dd239a2dda54b3bf7b23ad2b86eff2b7d9 100644 |
--- a/src/ia32/builtins-ia32.cc |
+++ b/src/ia32/builtins-ia32.cc |
@@ -32,7 +32,6 @@ |
#include "codegen.h" |
#include "deoptimizer.h" |
#include "full-codegen.h" |
-#include "stub-cache.h" |
namespace v8 { |
namespace internal { |
@@ -784,7 +783,12 @@ void Builtins::Generate_FunctionCall(MacroAssembler* masm) { |
// Use the global receiver object from the called function as the |
// receiver. |
__ bind(&use_global_receiver); |
- CallStubCompiler::FetchGlobalProxy(masm, ebx, edi); |
+ const int kGlobalIndex = |
+ Context::kHeaderSize + Context::GLOBAL_OBJECT_INDEX * kPointerSize; |
+ __ mov(ebx, FieldOperand(esi, kGlobalIndex)); |
+ __ mov(ebx, FieldOperand(ebx, GlobalObject::kNativeContextOffset)); |
+ __ mov(ebx, FieldOperand(ebx, kGlobalIndex)); |
+ __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalReceiverOffset)); |
__ bind(&patch_receiver); |
__ mov(Operand(esp, eax, times_4, 0), ebx); |
@@ -957,7 +961,12 @@ void Builtins::Generate_FunctionApply(MacroAssembler* masm) { |
// Use the current global receiver object as the receiver. |
__ bind(&use_global_receiver); |
- CallStubCompiler::FetchGlobalProxy(masm, ebx, edi); |
+ const int kGlobalOffset = |
+ Context::kHeaderSize + Context::GLOBAL_OBJECT_INDEX * kPointerSize; |
+ __ mov(ebx, FieldOperand(esi, kGlobalOffset)); |
+ __ mov(ebx, FieldOperand(ebx, GlobalObject::kNativeContextOffset)); |
+ __ mov(ebx, FieldOperand(ebx, kGlobalOffset)); |
+ __ mov(ebx, FieldOperand(ebx, GlobalObject::kGlobalReceiverOffset)); |
// Push the receiver. |
__ bind(&push_receiver); |