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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 V(S390_BitcastInt32ToFloat32) \ | 128 V(S390_BitcastInt32ToFloat32) \ |
129 V(S390_BitcastFloat32ToInt32) \ | 129 V(S390_BitcastFloat32ToInt32) \ |
130 V(S390_BitcastInt64ToDouble) \ | 130 V(S390_BitcastInt64ToDouble) \ |
131 V(S390_BitcastDoubleToInt64) \ | 131 V(S390_BitcastDoubleToInt64) \ |
132 V(S390_LoadWordS8) \ | 132 V(S390_LoadWordS8) \ |
133 V(S390_LoadWordU8) \ | 133 V(S390_LoadWordU8) \ |
134 V(S390_LoadWordS16) \ | 134 V(S390_LoadWordS16) \ |
135 V(S390_LoadWordU16) \ | 135 V(S390_LoadWordU16) \ |
136 V(S390_LoadWordS32) \ | 136 V(S390_LoadWordS32) \ |
137 V(S390_LoadWordU32) \ | 137 V(S390_LoadWordU32) \ |
| 138 V(S390_LoadAndTestWord32) \ |
| 139 V(S390_LoadAndTestWord64) \ |
| 140 V(S390_LoadAndTestFloat32) \ |
| 141 V(S390_LoadAndTestFloat64) \ |
138 V(S390_LoadReverse16RR) \ | 142 V(S390_LoadReverse16RR) \ |
139 V(S390_LoadReverse32RR) \ | 143 V(S390_LoadReverse32RR) \ |
140 V(S390_LoadReverse64RR) \ | 144 V(S390_LoadReverse64RR) \ |
141 V(S390_LoadReverse16) \ | 145 V(S390_LoadReverse16) \ |
142 V(S390_LoadReverse32) \ | 146 V(S390_LoadReverse32) \ |
143 V(S390_LoadReverse64) \ | 147 V(S390_LoadReverse64) \ |
144 V(S390_LoadWord64) \ | 148 V(S390_LoadWord64) \ |
145 V(S390_LoadFloat32) \ | 149 V(S390_LoadFloat32) \ |
146 V(S390_LoadDouble) \ | 150 V(S390_LoadDouble) \ |
147 V(S390_StoreWord8) \ | 151 V(S390_StoreWord8) \ |
(...skipping 23 matching lines...) Expand all Loading... |
171 V(MR) /* [%r0 ] */ \ | 175 V(MR) /* [%r0 ] */ \ |
172 V(MRI) /* [%r0 + K] */ \ | 176 V(MRI) /* [%r0 + K] */ \ |
173 V(MRR) /* [%r0 + %r1 ] */ \ | 177 V(MRR) /* [%r0 + %r1 ] */ \ |
174 V(MRRI) /* [%r0 + %r1 + K] */ | 178 V(MRRI) /* [%r0 + %r1 + K] */ |
175 | 179 |
176 } // namespace compiler | 180 } // namespace compiler |
177 } // namespace internal | 181 } // namespace internal |
178 } // namespace v8 | 182 } // namespace v8 |
179 | 183 |
180 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 184 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |