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

Unified Diff: include/v8.h

Issue 23461039: add context save for GenerateFastApiCall (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
« no previous file with comments | « no previous file | src/arguments.h » ('j') | src/x64/macro-assembler-x64.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 5410334df57a25862861a81b386e2eafd9409244..e7094686b83abe0c5138b93c8c5c820cc4ef49db 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -2352,7 +2352,7 @@ class FunctionCallbackInfo {
V8_INLINE(Isolate* GetIsolate() const);
V8_INLINE(ReturnValue<T> GetReturnValue() const);
// This shouldn't be public, but the arm compiler needs it.
- static const int kArgsLength = 6;
+ static const int kArgsLength = 7;
protected:
friend class internal::FunctionCallbackArguments;
@@ -2360,9 +2360,10 @@ class FunctionCallbackInfo {
static const int kReturnValueIndex = 0;
static const int kReturnValueDefaultValueIndex = -1;
static const int kIsolateIndex = -2;
- static const int kDataIndex = -3;
- static const int kCalleeIndex = -4;
- static const int kHolderIndex = -5;
+ static const int kContextSaveIndex = -3;
+ static const int kDataIndex = -4;
+ static const int kCalleeIndex = -5;
+ static const int kHolderIndex = -6;
V8_INLINE(FunctionCallbackInfo(internal::Object** implicit_args,
internal::Object** values,
« no previous file with comments | « no previous file | src/arguments.h » ('j') | src/x64/macro-assembler-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698