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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 V(TruncateFloat32ToInt32) \ | 400 V(TruncateFloat32ToInt32) \ |
401 V(TruncateFloat32ToUint32) \ | 401 V(TruncateFloat32ToUint32) \ |
402 V(TryTruncateFloat32ToInt64) \ | 402 V(TryTruncateFloat32ToInt64) \ |
403 V(TryTruncateFloat64ToInt64) \ | 403 V(TryTruncateFloat64ToInt64) \ |
404 V(TryTruncateFloat32ToUint64) \ | 404 V(TryTruncateFloat32ToUint64) \ |
405 V(TryTruncateFloat64ToUint64) \ | 405 V(TryTruncateFloat64ToUint64) \ |
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) \ | |
411 V(ImpossibleToWord32) \ | |
412 V(ImpossibleToWord64) \ | |
413 V(ImpossibleToFloat32) \ | |
414 V(ImpossibleToFloat64) \ | |
415 V(ImpossibleToTagged) \ | |
416 V(TruncateFloat64ToFloat32) \ | 410 V(TruncateFloat64ToFloat32) \ |
417 V(TruncateInt64ToInt32) \ | 411 V(TruncateInt64ToInt32) \ |
418 V(RoundFloat64ToInt32) \ | 412 V(RoundFloat64ToInt32) \ |
419 V(RoundInt32ToFloat32) \ | 413 V(RoundInt32ToFloat32) \ |
420 V(RoundInt64ToFloat32) \ | 414 V(RoundInt64ToFloat32) \ |
421 V(RoundInt64ToFloat64) \ | 415 V(RoundInt64ToFloat64) \ |
422 V(RoundUint32ToFloat32) \ | 416 V(RoundUint32ToFloat32) \ |
423 V(RoundUint64ToFloat32) \ | 417 V(RoundUint64ToFloat32) \ |
424 V(RoundUint64ToFloat64) \ | 418 V(RoundUint64ToFloat64) \ |
425 V(BitcastFloat32ToInt32) \ | 419 V(BitcastFloat32ToInt32) \ |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 } | 754 } |
761 }; | 755 }; |
762 | 756 |
763 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 757 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
764 | 758 |
765 } // namespace compiler | 759 } // namespace compiler |
766 } // namespace internal | 760 } // namespace internal |
767 } // namespace v8 | 761 } // namespace v8 |
768 | 762 |
769 #endif // V8_COMPILER_OPCODES_H_ | 763 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |