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

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

Issue 1266053002: PPC: [interpreter] Add Interpreter{Entry,Exit}Trampoline builtins. Port c5dd553cf3a44cd8c17958a5951… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « no previous file | src/full-codegen/ppc/full-codegen-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/ppc/linkage-ppc.cc
diff --git a/src/compiler/ppc/linkage-ppc.cc b/src/compiler/ppc/linkage-ppc.cc
index ebdaaa0a73c6b5e6199a861d912071b72b0698f4..011f79563e23e7f48c5f86eeb846f172d8bd6a1f 100644
--- a/src/compiler/ppc/linkage-ppc.cc
+++ b/src/compiler/ppc/linkage-ppc.cc
@@ -17,9 +17,15 @@ struct PPCLinkageHelperTraits {
static Register ReturnValue2Reg() { return r4; }
static Register JSCallFunctionReg() { return r4; }
static Register ContextReg() { return cp; }
- static Register InterpreterBytecodeOffsetReg() { return r14; }
- static Register InterpreterBytecodeArrayReg() { return r15; }
- static Register InterpreterDispatchTableReg() { return r16; }
+ static Register InterpreterBytecodeOffsetReg() {
+ return kInterpreterBytecodeOffsetRegister;
+ }
+ static Register InterpreterBytecodeArrayReg() {
+ return kInterpreterBytecodeArrayRegister;
+ }
+ static Register InterpreterDispatchTableReg() {
+ return kInterpreterDispatchTableRegister;
+ }
static Register RuntimeCallFunctionReg() { return r4; }
static Register RuntimeCallArgCountReg() { return r3; }
};
« no previous file with comments | « no previous file | src/full-codegen/ppc/full-codegen-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698