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

Unified Diff: src/v8globals.h

Issue 111613003: Load the global proxy from the context of the target function. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: don't embed global object or receiver in hydrogen Created 7 years 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
Index: src/v8globals.h
diff --git a/src/v8globals.h b/src/v8globals.h
index 4910cb7358de7e019a41010126fceb651b75a5f1..1896c1f1e515b76e0448b4b40c8950765aafb2f3 100644
--- a/src/v8globals.h
+++ b/src/v8globals.h
@@ -293,8 +293,10 @@ enum CallFunctionFlags {
// Receiver might implicitly be the global objects. If it is, the
// hole is passed to the call function stub.
RECEIVER_MIGHT_BE_IMPLICIT = 1 << 0,
+ // Receiver is implicit and the hole has been passed to the stub.
+ RECEIVER_IS_IMPLICIT = 1 << 1,
// The call target is cached in the instruction stream.
- RECORD_CALL_TARGET = 1 << 1
+ RECORD_CALL_TARGET = 1 << 2
};
« src/ia32/code-stubs-ia32.cc ('K') | « src/stub-cache.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698