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 { |
11 | 11 |
12 // S390-specific opcodes that specify which assembly sequence to emit. | 12 // S390-specific opcodes that specify which assembly sequence to emit. |
13 // Most opcodes specify a single instruction. | 13 // Most opcodes specify a single instruction. |
14 #define TARGET_ARCH_OPCODE_LIST(V) \ | 14 #define TARGET_ARCH_OPCODE_LIST(V) \ |
| 15 V(S390_Abs32) \ |
| 16 V(S390_Abs64) \ |
15 V(S390_And32) \ | 17 V(S390_And32) \ |
16 V(S390_And64) \ | 18 V(S390_And64) \ |
17 V(S390_Or32) \ | 19 V(S390_Or32) \ |
18 V(S390_Or64) \ | 20 V(S390_Or64) \ |
19 V(S390_Xor32) \ | 21 V(S390_Xor32) \ |
20 V(S390_Xor64) \ | 22 V(S390_Xor64) \ |
21 V(S390_ShiftLeft32) \ | 23 V(S390_ShiftLeft32) \ |
22 V(S390_ShiftLeft64) \ | 24 V(S390_ShiftLeft64) \ |
23 V(S390_ShiftLeftPair) \ | 25 V(S390_ShiftLeftPair) \ |
24 V(S390_ShiftRight32) \ | 26 V(S390_ShiftRight32) \ |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 V(MR) /* [%r0 ] */ \ | 177 V(MR) /* [%r0 ] */ \ |
176 V(MRI) /* [%r0 + K] */ \ | 178 V(MRI) /* [%r0 + K] */ \ |
177 V(MRR) /* [%r0 + %r1 ] */ \ | 179 V(MRR) /* [%r0 + %r1 ] */ \ |
178 V(MRRI) /* [%r0 + %r1 + K] */ | 180 V(MRRI) /* [%r0 + %r1 + K] */ |
179 | 181 |
180 } // namespace compiler | 182 } // namespace compiler |
181 } // namespace internal | 183 } // namespace internal |
182 } // namespace v8 | 184 } // namespace v8 |
183 | 185 |
184 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 186 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |