OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 V(NumberClz32) \ | 197 V(NumberClz32) \ |
198 V(NumberCeil) \ | 198 V(NumberCeil) \ |
199 V(NumberFloor) \ | 199 V(NumberFloor) \ |
200 V(NumberLog) \ | 200 V(NumberLog) \ |
201 V(NumberLog1p) \ | 201 V(NumberLog1p) \ |
202 V(NumberRound) \ | 202 V(NumberRound) \ |
203 V(NumberTrunc) \ | 203 V(NumberTrunc) \ |
204 V(NumberToInt32) \ | 204 V(NumberToInt32) \ |
205 V(NumberToUint32) \ | 205 V(NumberToUint32) \ |
206 V(NumberIsHoleNaN) \ | 206 V(NumberIsHoleNaN) \ |
| 207 V(NumberSilenceNaN) \ |
207 V(StringFromCharCode) \ | 208 V(StringFromCharCode) \ |
208 V(StringToNumber) \ | 209 V(StringToNumber) \ |
209 V(ChangeTaggedSignedToInt32) \ | 210 V(ChangeTaggedSignedToInt32) \ |
210 V(ChangeTaggedToInt32) \ | 211 V(ChangeTaggedToInt32) \ |
211 V(ChangeTaggedToUint32) \ | 212 V(ChangeTaggedToUint32) \ |
212 V(ChangeTaggedToFloat64) \ | 213 V(ChangeTaggedToFloat64) \ |
213 V(ChangeInt31ToTaggedSigned) \ | 214 V(ChangeInt31ToTaggedSigned) \ |
214 V(ChangeInt32ToTagged) \ | 215 V(ChangeInt32ToTagged) \ |
215 V(ChangeUint32ToTagged) \ | 216 V(ChangeUint32ToTagged) \ |
216 V(ChangeFloat64ToTagged) \ | 217 V(ChangeFloat64ToTagged) \ |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 V(Int64Mul) \ | 305 V(Int64Mul) \ |
305 V(Int64Div) \ | 306 V(Int64Div) \ |
306 V(Int64Mod) \ | 307 V(Int64Mod) \ |
307 V(Uint64Div) \ | 308 V(Uint64Div) \ |
308 V(Uint64Mod) \ | 309 V(Uint64Mod) \ |
309 V(BitcastWordToTagged) \ | 310 V(BitcastWordToTagged) \ |
310 V(TruncateFloat64ToWord32) \ | 311 V(TruncateFloat64ToWord32) \ |
311 V(ChangeFloat32ToFloat64) \ | 312 V(ChangeFloat32ToFloat64) \ |
312 V(ChangeFloat64ToInt32) \ | 313 V(ChangeFloat64ToInt32) \ |
313 V(ChangeFloat64ToUint32) \ | 314 V(ChangeFloat64ToUint32) \ |
| 315 V(Float64SilenceNaN) \ |
314 V(TruncateFloat64ToUint32) \ | 316 V(TruncateFloat64ToUint32) \ |
315 V(TruncateFloat32ToInt32) \ | 317 V(TruncateFloat32ToInt32) \ |
316 V(TruncateFloat32ToUint32) \ | 318 V(TruncateFloat32ToUint32) \ |
317 V(TryTruncateFloat32ToInt64) \ | 319 V(TryTruncateFloat32ToInt64) \ |
318 V(TryTruncateFloat64ToInt64) \ | 320 V(TryTruncateFloat64ToInt64) \ |
319 V(TryTruncateFloat32ToUint64) \ | 321 V(TryTruncateFloat32ToUint64) \ |
320 V(TryTruncateFloat64ToUint64) \ | 322 V(TryTruncateFloat64ToUint64) \ |
321 V(ChangeInt32ToFloat64) \ | 323 V(ChangeInt32ToFloat64) \ |
322 V(ChangeInt32ToInt64) \ | 324 V(ChangeInt32ToInt64) \ |
323 V(ChangeUint32ToFloat64) \ | 325 V(ChangeUint32ToFloat64) \ |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 } | 651 } |
650 }; | 652 }; |
651 | 653 |
652 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 654 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
653 | 655 |
654 } // namespace compiler | 656 } // namespace compiler |
655 } // namespace internal | 657 } // namespace internal |
656 } // namespace v8 | 658 } // namespace v8 |
657 | 659 |
658 #endif // V8_COMPILER_OPCODES_H_ | 660 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |