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

Unified Diff: src/compiler/linkage.h

Issue 1289863003: [interpreter]: Changes to interpreter builtins for accumulator and register file registers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@fix_interpreter_initialization
Patch Set: Created 5 years, 4 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/compiler/linkage.h
diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
index 363261e08842d8219cbee34fe4c078d85c3429f7..d49cddd1a325de6ec598f0a802290146ddecbd79 100644
--- a/src/compiler/linkage.h
+++ b/src/compiler/linkage.h
@@ -330,9 +330,11 @@ class Linkage : public ZoneObject {
// Special parameter indices used to pass fixed register data through
// interpreter dispatches.
- static const int kInterpreterBytecodeOffsetParameter = 0;
- static const int kInterpreterBytecodeArrayParameter = 1;
- static const int kInterpreterDispatchTableParameter = 2;
+ static const int kInterpreterAccumulatorParameter = 0;
+ static const int kInterpreterRegisterFileParameter = 1;
+ static const int kInterpreterBytecodeOffsetParameter = 2;
+ static const int kInterpreterBytecodeArrayParameter = 3;
+ static const int kInterpreterDispatchTableParameter = 4;
private:
CallDescriptor* const incoming_;

Powered by Google App Engine
This is Rietveld 408576698