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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 V(S390_DivU64) \ | 59 V(S390_DivU64) \ |
60 V(S390_DivFloat) \ | 60 V(S390_DivFloat) \ |
61 V(S390_DivDouble) \ | 61 V(S390_DivDouble) \ |
62 V(S390_Mod32) \ | 62 V(S390_Mod32) \ |
63 V(S390_Mod64) \ | 63 V(S390_Mod64) \ |
64 V(S390_ModU32) \ | 64 V(S390_ModU32) \ |
65 V(S390_ModU64) \ | 65 V(S390_ModU64) \ |
66 V(S390_ModDouble) \ | 66 V(S390_ModDouble) \ |
67 V(S390_Neg) \ | 67 V(S390_Neg) \ |
68 V(S390_NegDouble) \ | 68 V(S390_NegDouble) \ |
| 69 V(S390_NegFloat) \ |
69 V(S390_SqrtFloat) \ | 70 V(S390_SqrtFloat) \ |
70 V(S390_FloorFloat) \ | 71 V(S390_FloorFloat) \ |
71 V(S390_CeilFloat) \ | 72 V(S390_CeilFloat) \ |
72 V(S390_TruncateFloat) \ | 73 V(S390_TruncateFloat) \ |
73 V(S390_AbsFloat) \ | 74 V(S390_AbsFloat) \ |
74 V(S390_SqrtDouble) \ | 75 V(S390_SqrtDouble) \ |
75 V(S390_FloorDouble) \ | 76 V(S390_FloorDouble) \ |
76 V(S390_CeilDouble) \ | 77 V(S390_CeilDouble) \ |
77 V(S390_TruncateDouble) \ | 78 V(S390_TruncateDouble) \ |
78 V(S390_RoundDouble) \ | 79 V(S390_RoundDouble) \ |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 // MRR = [register + register] | 166 // MRR = [register + register] |
166 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 167 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
167 V(MRI) /* [%r0 + K] */ \ | 168 V(MRI) /* [%r0 + K] */ \ |
168 V(MRR) /* [%r0 + %r1] */ | 169 V(MRR) /* [%r0 + %r1] */ |
169 | 170 |
170 } // namespace compiler | 171 } // namespace compiler |
171 } // namespace internal | 172 } // namespace internal |
172 } // namespace v8 | 173 } // namespace v8 |
173 | 174 |
174 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 175 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |