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

Unified Diff: src/mips64/frames-mips64.h

Issue 371923006: Add mips64 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 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/mips64/disasm-mips64.cc ('k') | src/mips64/frames-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips64/frames-mips64.h
diff --git a/src/mips/frames-mips.h b/src/mips64/frames-mips64.h
similarity index 95%
copy from src/mips/frames-mips.h
copy to src/mips64/frames-mips64.h
index 5666f642f99938879cab6251f36ef901434350bd..eaf29c89bb530a56e0308d03a93432f65e32bce0 100644
--- a/src/mips/frames-mips.h
+++ b/src/mips64/frames-mips64.h
@@ -22,14 +22,14 @@ const RegList kJSCallerSaved =
1 << 5 | // a1
1 << 6 | // a2
1 << 7 | // a3
- 1 << 8 | // t0
- 1 << 9 | // t1
- 1 << 10 | // t2
- 1 << 11 | // t3
- 1 << 12 | // t4
- 1 << 13 | // t5
- 1 << 14 | // t6
- 1 << 15; // t7
+ 1 << 8 | // a4
+ 1 << 9 | // a5
+ 1 << 10 | // a6
+ 1 << 11 | // a7
+ 1 << 12 | // t0
+ 1 << 13 | // t1
+ 1 << 14 | // t2
+ 1 << 15; // t3
const int kNumJSCallerSaved = 14;
@@ -98,14 +98,14 @@ const int kSafepointRegisterStackIndexMap[kNumRegs] = {
3, // a1
4, // a2
5, // a3
- 6, // t0
- 7, // t1
- 8, // t2
- 9, // t3
- 10, // t4
- 11, // t5
- 12, // t6
- 13, // t7
+ 6, // a4
+ 7, // a5
+ 8, // a6
+ 9, // a7
+ 10, // t0
+ 11, // t1
+ 12, // t2
+ 13, // t3
14, // s0
15, // s1
16, // s2
« no previous file with comments | « src/mips64/disasm-mips64.cc ('k') | src/mips64/frames-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698