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 395 matching lines...) Loading... |
406 V(ChangeInt32ToFloat64) \ | 406 V(ChangeInt32ToFloat64) \ |
407 V(ChangeInt32ToInt64) \ | 407 V(ChangeInt32ToInt64) \ |
408 V(ChangeUint32ToFloat64) \ | 408 V(ChangeUint32ToFloat64) \ |
409 V(ChangeUint32ToUint64) \ | 409 V(ChangeUint32ToUint64) \ |
410 V(ImpossibleToBit) \ | 410 V(ImpossibleToBit) \ |
411 V(ImpossibleToWord32) \ | 411 V(ImpossibleToWord32) \ |
412 V(ImpossibleToWord64) \ | 412 V(ImpossibleToWord64) \ |
413 V(ImpossibleToFloat32) \ | 413 V(ImpossibleToFloat32) \ |
414 V(ImpossibleToFloat64) \ | 414 V(ImpossibleToFloat64) \ |
415 V(ImpossibleToTagged) \ | 415 V(ImpossibleToTagged) \ |
| 416 V(ImpossibleToTaggedSigned) \ |
| 417 V(ImpossibleToTaggedPointer) \ |
416 V(TruncateFloat64ToFloat32) \ | 418 V(TruncateFloat64ToFloat32) \ |
417 V(TruncateInt64ToInt32) \ | 419 V(TruncateInt64ToInt32) \ |
418 V(RoundFloat64ToInt32) \ | 420 V(RoundFloat64ToInt32) \ |
419 V(RoundInt32ToFloat32) \ | 421 V(RoundInt32ToFloat32) \ |
420 V(RoundInt64ToFloat32) \ | 422 V(RoundInt64ToFloat32) \ |
421 V(RoundInt64ToFloat64) \ | 423 V(RoundInt64ToFloat64) \ |
422 V(RoundUint32ToFloat32) \ | 424 V(RoundUint32ToFloat32) \ |
423 V(RoundUint64ToFloat32) \ | 425 V(RoundUint64ToFloat32) \ |
424 V(RoundUint64ToFloat64) \ | 426 V(RoundUint64ToFloat64) \ |
425 V(BitcastFloat32ToInt32) \ | 427 V(BitcastFloat32ToInt32) \ |
(...skipping 332 matching lines...) Loading... |
758 } | 760 } |
759 }; | 761 }; |
760 | 762 |
761 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 763 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
762 | 764 |
763 } // namespace compiler | 765 } // namespace compiler |
764 } // namespace internal | 766 } // namespace internal |
765 } // namespace v8 | 767 } // namespace v8 |
766 | 768 |
767 #endif // V8_COMPILER_OPCODES_H_ | 769 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |