OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_S390_INSTRUCTION_CODES_S390_H_ | 5 #ifndef V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
6 #define V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 6 #define V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 V(S390_DoubleConstruct) \ | 119 V(S390_DoubleConstruct) \ |
120 V(S390_BitcastInt32ToFloat32) \ | 120 V(S390_BitcastInt32ToFloat32) \ |
121 V(S390_BitcastFloat32ToInt32) \ | 121 V(S390_BitcastFloat32ToInt32) \ |
122 V(S390_BitcastInt64ToDouble) \ | 122 V(S390_BitcastInt64ToDouble) \ |
123 V(S390_BitcastDoubleToInt64) \ | 123 V(S390_BitcastDoubleToInt64) \ |
124 V(S390_LoadWordS8) \ | 124 V(S390_LoadWordS8) \ |
125 V(S390_LoadWordU8) \ | 125 V(S390_LoadWordU8) \ |
126 V(S390_LoadWordS16) \ | 126 V(S390_LoadWordS16) \ |
127 V(S390_LoadWordU16) \ | 127 V(S390_LoadWordU16) \ |
128 V(S390_LoadWordS32) \ | 128 V(S390_LoadWordS32) \ |
| 129 V(S390_LoadWordU32) \ |
129 V(S390_LoadWord64) \ | 130 V(S390_LoadWord64) \ |
130 V(S390_LoadFloat32) \ | 131 V(S390_LoadFloat32) \ |
131 V(S390_LoadDouble) \ | 132 V(S390_LoadDouble) \ |
132 V(S390_StoreWord8) \ | 133 V(S390_StoreWord8) \ |
133 V(S390_StoreWord16) \ | 134 V(S390_StoreWord16) \ |
134 V(S390_StoreWord32) \ | 135 V(S390_StoreWord32) \ |
135 V(S390_StoreWord64) \ | 136 V(S390_StoreWord64) \ |
136 V(S390_StoreFloat32) \ | 137 V(S390_StoreFloat32) \ |
137 V(S390_StoreDouble) | 138 V(S390_StoreDouble) |
138 | 139 |
(...skipping 12 matching lines...) Expand all Loading... |
151 // MRR = [register + register] | 152 // MRR = [register + register] |
152 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 153 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
153 V(MRI) /* [%r0 + K] */ \ | 154 V(MRI) /* [%r0 + K] */ \ |
154 V(MRR) /* [%r0 + %r1] */ | 155 V(MRR) /* [%r0 + %r1] */ |
155 | 156 |
156 } // namespace compiler | 157 } // namespace compiler |
157 } // namespace internal | 158 } // namespace internal |
158 } // namespace v8 | 159 } // namespace v8 |
159 | 160 |
160 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 161 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |