Index: src/stub-cache.h |
=================================================================== |
--- src/stub-cache.h (revision 2408) |
+++ src/stub-cache.h (working copy) |
@@ -79,7 +79,8 @@ |
static Object* ComputeLoadGlobal(String* name, |
- GlobalObject* receiver, |
+ JSObject* receiver, |
+ GlobalObject* holder, |
JSGlobalPropertyCell* cell, |
bool is_dont_delete); |
@@ -164,7 +165,8 @@ |
static Object* ComputeCallGlobal(int argc, |
InLoopFlag in_loop, |
String* name, |
- GlobalObject* receiver, |
+ JSObject* receiver, |
+ GlobalObject* holder, |
JSGlobalPropertyCell* cell, |
JSFunction* function); |
@@ -435,7 +437,8 @@ |
JSObject* holder, |
String* name); |
- Object* CompileLoadGlobal(GlobalObject* object, |
+ Object* CompileLoadGlobal(JSObject* object, |
+ GlobalObject* holder, |
JSGlobalPropertyCell* holder, |
String* name, |
bool is_dont_delete); |
@@ -519,7 +522,8 @@ |
Object* CompileCallInterceptor(Object* object, |
JSObject* holder, |
String* name); |
- Object* CompileCallGlobal(GlobalObject* object, |
+ Object* CompileCallGlobal(JSObject* object, |
+ GlobalObject* holder, |
JSGlobalPropertyCell* cell, |
JSFunction* function, |
String* name); |