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

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

Issue 732403002: MIPS64: Add turbofan support for mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments and code cleanup. Created 6 years, 1 month 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/mips64/instruction-selector-mips64.cc ('k') | src/globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/mips64/linkage-mips64.cc
diff --git a/src/compiler/mips/linkage-mips.cc b/src/compiler/mips64/linkage-mips64.cc
similarity index 94%
copy from src/compiler/mips/linkage-mips.cc
copy to src/compiler/mips64/linkage-mips64.cc
index d4ec1902e169df0aa2bc0b07664b833e7267febf..049ae3c3e19c99801e9262989ddc8d98050cb57a 100644
--- a/src/compiler/mips/linkage-mips.cc
+++ b/src/compiler/mips64/linkage-mips64.cc
@@ -26,10 +26,10 @@ struct MipsLinkageHelperTraits {
s6.bit() | s7.bit();
}
static Register CRegisterParameter(int i) {
- static Register register_parameters[] = {a0, a1, a2, a3};
+ static Register register_parameters[] = {a0, a1, a2, a3, a4, a5, a6, a7};
return register_parameters[i];
}
- static int CRegisterParametersLength() { return 4; }
+ static int CRegisterParametersLength() { return 8; }
};
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698