Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(503)

Unified Diff: src/ic-ia32.cc

Issue 7366: Split window support from V8. ... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic.cc ('k') | src/macro-assembler-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic-ia32.cc
===================================================================
--- src/ic-ia32.cc (revision 539)
+++ src/ic-ia32.cc (working copy)
@@ -469,7 +469,7 @@
ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
// Check for access to global object.
- __ cmp(eax, JS_GLOBAL_OBJECT_TYPE);
+ __ cmp(eax, JS_GLOBAL_PROXY_TYPE);
__ j(equal, &global, not_taken);
// Search the dictionary placing the result in edx.
@@ -493,7 +493,7 @@
// Global object access: Check access rights.
__ bind(&global);
- __ CheckAccessGlobal(edx, eax, &miss);
+ __ CheckAccessGlobalProxy(edx, eax, &miss);
__ jmp(&probe);
// Cache miss: Jump to runtime.
@@ -583,7 +583,7 @@
ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
// Check for access to global object (unlikely).
- __ cmp(edx, JS_GLOBAL_OBJECT_TYPE);
+ __ cmp(edx, JS_GLOBAL_PROXY_TYPE);
__ j(equal, &global, not_taken);
// Search the dictionary placing the result in eax.
@@ -593,7 +593,7 @@
// Global object access: Check access rights.
__ bind(&global);
- __ CheckAccessGlobal(eax, edx, &miss);
+ __ CheckAccessGlobalProxy(eax, edx, &miss);
__ jmp(&probe);
// Cache miss: Restore receiver from stack and jump to runtime.
« no previous file with comments | « src/ic.cc ('k') | src/macro-assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698