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

Unified Diff: src/compiler/mips/linkage-mips.cc

Issue 1245133002: [interpreter] Add Interpreter{Entry,Exit}Trampoline builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth_bytecode_array
Patch Set: Adding MIPS based on https://codereview.chromium.org/1257953002/ 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/mips64/linkage-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips/linkage-mips.cc
diff --git a/src/compiler/mips/linkage-mips.cc b/src/compiler/mips/linkage-mips.cc
index e2d8b6c3186067384ed3add5e2d46a28c686fd44..610ebbbb90cb2492a5dd93e3011c88ce77b31b40 100644
--- a/src/compiler/mips/linkage-mips.cc
+++ b/src/compiler/mips/linkage-mips.cc
@@ -17,9 +17,15 @@ struct MipsLinkageHelperTraits {
static Register ReturnValue2Reg() { return v1; }
static Register JSCallFunctionReg() { return a1; }
static Register ContextReg() { return cp; }
- static Register InterpreterBytecodeOffsetReg() { return t4; }
- static Register InterpreterBytecodeArrayReg() { return t5; }
- static Register InterpreterDispatchTableReg() { return t6; }
+ static Register InterpreterBytecodeOffsetReg() {
+ return kInterpreterBytecodeOffsetRegister;
+ }
+ static Register InterpreterBytecodeArrayReg() {
+ return kInterpreterBytecodeArrayRegister;
+ }
+ static Register InterpreterDispatchTableReg() {
+ return kInterpreterDispatchTableRegister;
+ }
static Register RuntimeCallFunctionReg() { return a1; }
static Register RuntimeCallArgCountReg() { return a0; }
static RegList CCalleeSaveRegisters() {
« no previous file with comments | « src/compiler/interpreter-assembler.cc ('k') | src/compiler/mips64/linkage-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698