OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_PPC_FRAMES_PPC_H_ | 5 #ifndef V8_PPC_FRAMES_PPC_H_ |
6 #define V8_PPC_FRAMES_PPC_H_ | 6 #define V8_PPC_FRAMES_PPC_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 1 << 5 | // d5 | 63 1 << 5 | // d5 |
64 1 << 6 | // d6 | 64 1 << 6 | // d6 |
65 1 << 7 | // d7 | 65 1 << 7 | // d7 |
66 1 << 8 | // d8 | 66 1 << 8 | // d8 |
67 1 << 9 | // d9 | 67 1 << 9 | // d9 |
68 1 << 10 | // d10 | 68 1 << 10 | // d10 |
69 1 << 11 | // d11 | 69 1 << 11 | // d11 |
70 1 << 12 | // d12 | 70 1 << 12 | // d12 |
71 1 << 13; // d13 | 71 1 << 13; // d13 |
72 | 72 |
| 73 const int kNumCallerSavedDoubles = 14; |
| 74 |
73 const RegList kCalleeSavedDoubles = 1 << 14 | // d14 | 75 const RegList kCalleeSavedDoubles = 1 << 14 | // d14 |
74 1 << 15 | // d15 | 76 1 << 15 | // d15 |
75 1 << 16 | // d16 | 77 1 << 16 | // d16 |
76 1 << 17 | // d17 | 78 1 << 17 | // d17 |
77 1 << 18 | // d18 | 79 1 << 18 | // d18 |
78 1 << 19 | // d19 | 80 1 << 19 | // d19 |
79 1 << 20 | // d20 | 81 1 << 20 | // d20 |
80 1 << 21 | // d21 | 82 1 << 21 | // d21 |
81 1 << 22 | // d22 | 83 1 << 22 | // d22 |
82 1 << 23 | // d23 | 84 1 << 23 | // d23 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 // Caller SP-relative. | 184 // Caller SP-relative. |
183 static const int kParam0Offset = -2 * kPointerSize; | 185 static const int kParam0Offset = -2 * kPointerSize; |
184 static const int kReceiverOffset = -1 * kPointerSize; | 186 static const int kReceiverOffset = -1 * kPointerSize; |
185 }; | 187 }; |
186 | 188 |
187 | 189 |
188 } // namespace internal | 190 } // namespace internal |
189 } // namespace v8 | 191 } // namespace v8 |
190 | 192 |
191 #endif // V8_PPC_FRAMES_PPC_H_ | 193 #endif // V8_PPC_FRAMES_PPC_H_ |
OLD | NEW |