| 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 16 matching lines...) Expand all Loading... |
| 27 V(S390_ShiftRightArith32) \ | 27 V(S390_ShiftRightArith32) \ |
| 28 V(S390_ShiftRightArith64) \ | 28 V(S390_ShiftRightArith64) \ |
| 29 V(S390_ShiftRightArithPair) \ | 29 V(S390_ShiftRightArithPair) \ |
| 30 V(S390_RotRight32) \ | 30 V(S390_RotRight32) \ |
| 31 V(S390_RotRight64) \ | 31 V(S390_RotRight64) \ |
| 32 V(S390_Not32) \ | 32 V(S390_Not32) \ |
| 33 V(S390_Not64) \ | 33 V(S390_Not64) \ |
| 34 V(S390_RotLeftAndClear64) \ | 34 V(S390_RotLeftAndClear64) \ |
| 35 V(S390_RotLeftAndClearLeft64) \ | 35 V(S390_RotLeftAndClearLeft64) \ |
| 36 V(S390_RotLeftAndClearRight64) \ | 36 V(S390_RotLeftAndClearRight64) \ |
| 37 V(S390_Lay) \ |
| 37 V(S390_Add32) \ | 38 V(S390_Add32) \ |
| 38 V(S390_Add64) \ | 39 V(S390_Add64) \ |
| 39 V(S390_AddPair) \ | 40 V(S390_AddPair) \ |
| 40 V(S390_AddFloat) \ | 41 V(S390_AddFloat) \ |
| 41 V(S390_AddDouble) \ | 42 V(S390_AddDouble) \ |
| 42 V(S390_Sub32) \ | 43 V(S390_Sub32) \ |
| 43 V(S390_Sub64) \ | 44 V(S390_Sub64) \ |
| 44 V(S390_SubFloat) \ | 45 V(S390_SubFloat) \ |
| 45 V(S390_SubDouble) \ | 46 V(S390_SubDouble) \ |
| 46 V(S390_SubPair) \ | 47 V(S390_SubPair) \ |
| 47 V(S390_MulPair) \ | 48 V(S390_MulPair) \ |
| 48 V(S390_Mul32) \ | 49 V(S390_Mul32) \ |
| 50 V(S390_Mul32WithOverflow) \ |
| 49 V(S390_Mul32WithHigh32) \ | 51 V(S390_Mul32WithHigh32) \ |
| 50 V(S390_Mul64) \ | 52 V(S390_Mul64) \ |
| 51 V(S390_MulHigh32) \ | 53 V(S390_MulHigh32) \ |
| 52 V(S390_MulHighU32) \ | 54 V(S390_MulHighU32) \ |
| 53 V(S390_MulFloat) \ | 55 V(S390_MulFloat) \ |
| 54 V(S390_MulDouble) \ | 56 V(S390_MulDouble) \ |
| 55 V(S390_Div32) \ | 57 V(S390_Div32) \ |
| 56 V(S390_Div64) \ | 58 V(S390_Div64) \ |
| 57 V(S390_DivU32) \ | 59 V(S390_DivU32) \ |
| 58 V(S390_DivU64) \ | 60 V(S390_DivU64) \ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 V(MR) /* [%r0 ] */ \ | 172 V(MR) /* [%r0 ] */ \ |
| 171 V(MRI) /* [%r0 + K] */ \ | 173 V(MRI) /* [%r0 + K] */ \ |
| 172 V(MRR) /* [%r0 + %r1 ] */ \ | 174 V(MRR) /* [%r0 + %r1 ] */ \ |
| 173 V(MRRI) /* [%r0 + %r1 + K] */ | 175 V(MRRI) /* [%r0 + %r1 + K] */ |
| 174 | 176 |
| 175 } // namespace compiler | 177 } // namespace compiler |
| 176 } // namespace internal | 178 } // namespace internal |
| 177 } // namespace v8 | 179 } // namespace v8 |
| 178 | 180 |
| 179 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 181 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
| OLD | NEW |