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

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: Rename incoming_accumulator 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
« no previous file with comments | « src/compiler/interpreter-assembler.cc ('k') | src/compiler/linkage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/linkage.h
diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
index 623c9109d96b93b271c61daf5d811b2d694933cf..f5507a0594ea56fdfe2c3dd37300f4857e234cbb 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_;
« no previous file with comments | « src/compiler/interpreter-assembler.cc ('k') | src/compiler/linkage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698