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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 V(I8x16LeU) \ | 690 V(I8x16LeU) \ |
691 V(I8x16GtU) \ | 691 V(I8x16GtU) \ |
692 V(I8x16GeU) \ | 692 V(I8x16GeU) \ |
693 V(S128Load) \ | 693 V(S128Load) \ |
694 V(S128Store) \ | 694 V(S128Store) \ |
695 V(S128Zero) \ | 695 V(S128Zero) \ |
696 V(S128Not) \ | 696 V(S128Not) \ |
697 V(S128And) \ | 697 V(S128And) \ |
698 V(S128Or) \ | 698 V(S128Or) \ |
699 V(S128Xor) \ | 699 V(S128Xor) \ |
| 700 V(S128Select) \ |
700 V(S32x4Shuffle) \ | 701 V(S32x4Shuffle) \ |
701 V(S32x4Select) \ | |
702 V(S16x8Shuffle) \ | 702 V(S16x8Shuffle) \ |
703 V(S16x8Select) \ | |
704 V(S8x16Shuffle) \ | 703 V(S8x16Shuffle) \ |
705 V(S8x16Select) \ | |
706 V(S1x4Zero) \ | |
707 V(S1x4And) \ | |
708 V(S1x4Or) \ | |
709 V(S1x4Xor) \ | |
710 V(S1x4Not) \ | |
711 V(S1x4AnyTrue) \ | 704 V(S1x4AnyTrue) \ |
712 V(S1x4AllTrue) \ | 705 V(S1x4AllTrue) \ |
713 V(S1x8Zero) \ | |
714 V(S1x8And) \ | |
715 V(S1x8Or) \ | |
716 V(S1x8Xor) \ | |
717 V(S1x8Not) \ | |
718 V(S1x8AnyTrue) \ | 706 V(S1x8AnyTrue) \ |
719 V(S1x8AllTrue) \ | 707 V(S1x8AllTrue) \ |
720 V(S1x16Zero) \ | |
721 V(S1x16And) \ | |
722 V(S1x16Or) \ | |
723 V(S1x16Xor) \ | |
724 V(S1x16Not) \ | |
725 V(S1x16AnyTrue) \ | 708 V(S1x16AnyTrue) \ |
726 V(S1x16AllTrue) | 709 V(S1x16AllTrue) |
727 | 710 |
728 #define VALUE_OP_LIST(V) \ | 711 #define VALUE_OP_LIST(V) \ |
729 COMMON_OP_LIST(V) \ | 712 COMMON_OP_LIST(V) \ |
730 SIMPLIFIED_OP_LIST(V) \ | 713 SIMPLIFIED_OP_LIST(V) \ |
731 MACHINE_OP_LIST(V) \ | 714 MACHINE_OP_LIST(V) \ |
732 MACHINE_SIMD_OP_LIST(V) \ | 715 MACHINE_SIMD_OP_LIST(V) \ |
733 JS_OP_LIST(V) | 716 JS_OP_LIST(V) |
734 | 717 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 } | 797 } |
815 }; | 798 }; |
816 | 799 |
817 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 800 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
818 | 801 |
819 } // namespace compiler | 802 } // namespace compiler |
820 } // namespace internal | 803 } // namespace internal |
821 } // namespace v8 | 804 } // namespace v8 |
822 | 805 |
823 #endif // V8_COMPILER_OPCODES_H_ | 806 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |