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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 V(PPC_Tst32) \ | 70 V(PPC_Tst32) \ |
71 V(PPC_Tst64) \ | 71 V(PPC_Tst64) \ |
72 V(PPC_Push) \ | 72 V(PPC_Push) \ |
73 V(PPC_PushFrame) \ | 73 V(PPC_PushFrame) \ |
74 V(PPC_StoreToStackSlot) \ | 74 V(PPC_StoreToStackSlot) \ |
75 V(PPC_ExtendSignWord8) \ | 75 V(PPC_ExtendSignWord8) \ |
76 V(PPC_ExtendSignWord16) \ | 76 V(PPC_ExtendSignWord16) \ |
77 V(PPC_ExtendSignWord32) \ | 77 V(PPC_ExtendSignWord32) \ |
78 V(PPC_Uint32ToUint64) \ | 78 V(PPC_Uint32ToUint64) \ |
79 V(PPC_Int64ToInt32) \ | 79 V(PPC_Int64ToInt32) \ |
| 80 V(PPC_Int64ToFloat32) \ |
80 V(PPC_Int64ToDouble) \ | 81 V(PPC_Int64ToDouble) \ |
81 V(PPC_Int32ToDouble) \ | 82 V(PPC_Int32ToDouble) \ |
82 V(PPC_Uint32ToDouble) \ | 83 V(PPC_Uint32ToDouble) \ |
83 V(PPC_Float32ToDouble) \ | 84 V(PPC_Float32ToDouble) \ |
84 V(PPC_DoubleToInt32) \ | 85 V(PPC_DoubleToInt32) \ |
85 V(PPC_DoubleToUint32) \ | 86 V(PPC_DoubleToUint32) \ |
86 V(PPC_DoubleToFloat32) \ | 87 V(PPC_DoubleToFloat32) \ |
87 V(PPC_DoubleExtractLowWord32) \ | 88 V(PPC_DoubleExtractLowWord32) \ |
88 V(PPC_DoubleExtractHighWord32) \ | 89 V(PPC_DoubleExtractHighWord32) \ |
89 V(PPC_DoubleInsertLowWord32) \ | 90 V(PPC_DoubleInsertLowWord32) \ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 // MRR = [register + register] | 125 // MRR = [register + register] |
125 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 126 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
126 V(MRI) /* [%r0 + K] */ \ | 127 V(MRI) /* [%r0 + K] */ \ |
127 V(MRR) /* [%r0 + %r1] */ | 128 V(MRR) /* [%r0 + %r1] */ |
128 | 129 |
129 } // namespace compiler | 130 } // namespace compiler |
130 } // namespace internal | 131 } // namespace internal |
131 } // namespace v8 | 132 } // namespace v8 |
132 | 133 |
133 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 134 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
OLD | NEW |