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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 V(PPC_ModU64) \ | 60 V(PPC_ModU64) \ |
61 V(PPC_ModFloat64) \ | 61 V(PPC_ModFloat64) \ |
62 V(PPC_Neg32) \ | 62 V(PPC_Neg32) \ |
63 V(PPC_Neg64) \ | 63 V(PPC_Neg64) \ |
64 V(PPC_NegFloat64) \ | 64 V(PPC_NegFloat64) \ |
65 V(PPC_SqrtFloat64) \ | 65 V(PPC_SqrtFloat64) \ |
66 V(PPC_FloorFloat64) \ | 66 V(PPC_FloorFloat64) \ |
67 V(PPC_CeilFloat64) \ | 67 V(PPC_CeilFloat64) \ |
68 V(PPC_TruncateFloat64) \ | 68 V(PPC_TruncateFloat64) \ |
69 V(PPC_RoundFloat64) \ | 69 V(PPC_RoundFloat64) \ |
| 70 V(PPC_MaxFloat64) \ |
| 71 V(PPC_MinFloat64) \ |
70 V(PPC_Cmp32) \ | 72 V(PPC_Cmp32) \ |
71 V(PPC_Cmp64) \ | 73 V(PPC_Cmp64) \ |
72 V(PPC_CmpFloat64) \ | 74 V(PPC_CmpFloat64) \ |
73 V(PPC_Tst32) \ | 75 V(PPC_Tst32) \ |
74 V(PPC_Tst64) \ | 76 V(PPC_Tst64) \ |
75 V(PPC_Push) \ | 77 V(PPC_Push) \ |
76 V(PPC_ExtendSignWord8) \ | 78 V(PPC_ExtendSignWord8) \ |
77 V(PPC_ExtendSignWord16) \ | 79 V(PPC_ExtendSignWord16) \ |
78 V(PPC_ExtendSignWord32) \ | 80 V(PPC_ExtendSignWord32) \ |
79 V(PPC_Uint32ToUint64) \ | 81 V(PPC_Uint32ToUint64) \ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 // MRR = [register + register] | 123 // MRR = [register + register] |
122 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 124 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
123 V(MRI) /* [%r0 + K] */ \ | 125 V(MRI) /* [%r0 + K] */ \ |
124 V(MRR) /* [%r0 + %r1] */ | 126 V(MRR) /* [%r0 + %r1] */ |
125 | 127 |
126 } // namespace compiler | 128 } // namespace compiler |
127 } // namespace internal | 129 } // namespace internal |
128 } // namespace v8 | 130 } // namespace v8 |
129 | 131 |
130 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 132 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
OLD | NEW |