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

Unified Diff: src/frames.h

Issue 1378523005: [Interpreter] Add support for global declarations and load/store of global variables (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_toplevel
Patch Set: Created 5 years, 3 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
Index: src/frames.h
diff --git a/src/frames.h b/src/frames.h
index d6bfd7aab8d3fbe1a344106c36e30f105cbd205e..9b86165341fa61ae108e62aaebb0329f5ba7aed3 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -181,6 +181,7 @@ class InterpreterFrameConstants : public AllStatic {
static const int kLastParamFromRegisterPointer =
StandardFrameConstants::kFixedFrameSize + kPointerSize;
static const int kFunctionFromRegisterPointer = kPointerSize;
+ static const int kContextFromRegisterPointer = 2 * kPointerSize;
};

Powered by Google App Engine
This is Rietveld 408576698