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_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 5 #ifndef V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
6 #define V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 6 #define V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 24 matching lines...) Expand all Loading... |
35 V(PPC_RotLeftAndClearRight64) \ | 35 V(PPC_RotLeftAndClearRight64) \ |
36 V(PPC_Add) \ | 36 V(PPC_Add) \ |
37 V(PPC_AddWithOverflow32) \ | 37 V(PPC_AddWithOverflow32) \ |
38 V(PPC_AddPair) \ | 38 V(PPC_AddPair) \ |
39 V(PPC_AddDouble) \ | 39 V(PPC_AddDouble) \ |
40 V(PPC_Sub) \ | 40 V(PPC_Sub) \ |
41 V(PPC_SubWithOverflow32) \ | 41 V(PPC_SubWithOverflow32) \ |
42 V(PPC_SubPair) \ | 42 V(PPC_SubPair) \ |
43 V(PPC_SubDouble) \ | 43 V(PPC_SubDouble) \ |
44 V(PPC_Mul32) \ | 44 V(PPC_Mul32) \ |
| 45 V(PPC_Mul32WithHigh32) \ |
45 V(PPC_Mul64) \ | 46 V(PPC_Mul64) \ |
46 V(PPC_MulHigh32) \ | 47 V(PPC_MulHigh32) \ |
47 V(PPC_MulHighU32) \ | 48 V(PPC_MulHighU32) \ |
48 V(PPC_MulPair) \ | 49 V(PPC_MulPair) \ |
49 V(PPC_MulDouble) \ | 50 V(PPC_MulDouble) \ |
50 V(PPC_Div32) \ | 51 V(PPC_Div32) \ |
51 V(PPC_Div64) \ | 52 V(PPC_Div64) \ |
52 V(PPC_DivU32) \ | 53 V(PPC_DivU32) \ |
53 V(PPC_DivU64) \ | 54 V(PPC_DivU64) \ |
54 V(PPC_DivDouble) \ | 55 V(PPC_DivDouble) \ |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 // MRR = [register + register] | 140 // MRR = [register + register] |
140 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 141 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
141 V(MRI) /* [%r0 + K] */ \ | 142 V(MRI) /* [%r0 + K] */ \ |
142 V(MRR) /* [%r0 + %r1] */ | 143 V(MRR) /* [%r0 + %r1] */ |
143 | 144 |
144 } // namespace compiler | 145 } // namespace compiler |
145 } // namespace internal | 146 } // namespace internal |
146 } // namespace v8 | 147 } // namespace v8 |
147 | 148 |
148 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 149 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
OLD | NEW |