| 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
|
|
|