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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 // | 159 // |
160 // We use the following local notation for addressing modes: | 160 // We use the following local notation for addressing modes: |
161 // | 161 // |
162 // R = register | 162 // R = register |
163 // O = register or stack slot | 163 // O = register or stack slot |
164 // D = double register | 164 // D = double register |
165 // I = immediate (handle, external, int32) | 165 // I = immediate (handle, external, int32) |
166 // MRI = [register + immediate] | 166 // MRI = [register + immediate] |
167 // MRR = [register + register] | 167 // MRR = [register + register] |
168 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 168 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
169 V(MRI) /* [%r0 + K] */ \ | 169 V(MR) /* [%r0 ] */ \ |
170 V(MRR) /* [%r0 + %r1] */ | 170 V(MRI) /* [%r0 + K] */ \ |
| 171 V(MRR) /* [%r0 + %r1 ] */ \ |
| 172 V(MRRI) /* [%r0 + %r1 + K] */ |
171 | 173 |
172 } // namespace compiler | 174 } // namespace compiler |
173 } // namespace internal | 175 } // namespace internal |
174 } // namespace v8 | 176 } // namespace v8 |
175 | 177 |
176 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 178 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |