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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 V(S390_SqrtFloat) \ | 71 V(S390_SqrtFloat) \ |
72 V(S390_FloorFloat) \ | 72 V(S390_FloorFloat) \ |
73 V(S390_CeilFloat) \ | 73 V(S390_CeilFloat) \ |
74 V(S390_TruncateFloat) \ | 74 V(S390_TruncateFloat) \ |
75 V(S390_AbsFloat) \ | 75 V(S390_AbsFloat) \ |
76 V(S390_SqrtDouble) \ | 76 V(S390_SqrtDouble) \ |
77 V(S390_FloorDouble) \ | 77 V(S390_FloorDouble) \ |
78 V(S390_CeilDouble) \ | 78 V(S390_CeilDouble) \ |
79 V(S390_TruncateDouble) \ | 79 V(S390_TruncateDouble) \ |
80 V(S390_RoundDouble) \ | 80 V(S390_RoundDouble) \ |
| 81 V(S390_MaxFloat) \ |
81 V(S390_MaxDouble) \ | 82 V(S390_MaxDouble) \ |
| 83 V(S390_MinFloat) \ |
82 V(S390_MinDouble) \ | 84 V(S390_MinDouble) \ |
83 V(S390_AbsDouble) \ | 85 V(S390_AbsDouble) \ |
84 V(S390_Cntlz32) \ | 86 V(S390_Cntlz32) \ |
85 V(S390_Cntlz64) \ | 87 V(S390_Cntlz64) \ |
86 V(S390_Popcnt32) \ | 88 V(S390_Popcnt32) \ |
87 V(S390_Popcnt64) \ | 89 V(S390_Popcnt64) \ |
88 V(S390_Cmp32) \ | 90 V(S390_Cmp32) \ |
89 V(S390_Cmp64) \ | 91 V(S390_Cmp64) \ |
90 V(S390_CmpFloat) \ | 92 V(S390_CmpFloat) \ |
91 V(S390_CmpDouble) \ | 93 V(S390_CmpDouble) \ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 V(MR) /* [%r0 ] */ \ | 171 V(MR) /* [%r0 ] */ \ |
170 V(MRI) /* [%r0 + K] */ \ | 172 V(MRI) /* [%r0 + K] */ \ |
171 V(MRR) /* [%r0 + %r1 ] */ \ | 173 V(MRR) /* [%r0 + %r1 ] */ \ |
172 V(MRRI) /* [%r0 + %r1 + K] */ | 174 V(MRRI) /* [%r0 + %r1 + K] */ |
173 | 175 |
174 } // namespace compiler | 176 } // namespace compiler |
175 } // namespace internal | 177 } // namespace internal |
176 } // namespace v8 | 178 } // namespace v8 |
177 | 179 |
178 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ | 180 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ |
OLD | NEW |