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

Unified Diff: src/compiler/linkage.h

Issue 1254293006: [interpreter] Change interpreter to use an BytecodeArray pointer and and offset. (Closed) Base URL: ssh://rmcilroy.lon.corp.google.com///usr/local/google/code/v8_full/v8@master
Patch Set: Fix MIPS merge error Created 5 years, 5 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-impl.h » ('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 ea20b655ca2f1f08e3331cdc9b480eb311648503..2fee957fa3144cb84596915573da7cead7f9a7ba 100644
--- a/src/compiler/linkage.h
+++ b/src/compiler/linkage.h
@@ -281,8 +281,9 @@ class Linkage : public ZoneObject {
// Special parameter indices used to pass fixed register data through
// interpreter dispatches.
- static const int kInterpreterBytecodeParameter = 0;
- static const int kInterpreterDispatchTableParameter = 1;
+ static const int kInterpreterBytecodeOffsetParameter = 0;
+ static const int kInterpreterBytecodeArrayParameter = 1;
+ static const int kInterpreterDispatchTableParameter = 2;
private:
CallDescriptor* const incoming_;
« no previous file with comments | « src/compiler/interpreter-assembler.cc ('k') | src/compiler/linkage-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698