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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 V(I8x16ShrU) \ | 667 V(I8x16ShrU) \ |
668 V(I8x16MinU) \ | 668 V(I8x16MinU) \ |
669 V(I8x16MaxU) \ | 669 V(I8x16MaxU) \ |
670 V(I8x16LtU) \ | 670 V(I8x16LtU) \ |
671 V(I8x16LeU) \ | 671 V(I8x16LeU) \ |
672 V(I8x16GtU) \ | 672 V(I8x16GtU) \ |
673 V(I8x16GeU) \ | 673 V(I8x16GeU) \ |
674 V(S128Load) \ | 674 V(S128Load) \ |
675 V(S128Store) \ | 675 V(S128Store) \ |
676 V(S128Zero) \ | 676 V(S128Zero) \ |
| 677 V(S128Not) \ |
677 V(S128And) \ | 678 V(S128And) \ |
678 V(S128Or) \ | 679 V(S128Or) \ |
679 V(S128Xor) \ | 680 V(S128Xor) \ |
680 V(S128Not) \ | 681 V(S32x4ZipLeft) \ |
| 682 V(S32x4ZipRight) \ |
| 683 V(S32x4UnzipLeft) \ |
| 684 V(S32x4UnzipRight) \ |
| 685 V(S32x4TransposeLeft) \ |
| 686 V(S32x4TransposeRight) \ |
681 V(S32x4Select) \ | 687 V(S32x4Select) \ |
682 V(S32x4Swizzle) \ | 688 V(S16x8ZipLeft) \ |
683 V(S32x4Shuffle) \ | 689 V(S16x8ZipRight) \ |
| 690 V(S16x8UnzipLeft) \ |
| 691 V(S16x8UnzipRight) \ |
| 692 V(S16x8TransposeLeft) \ |
| 693 V(S16x8TransposeRight) \ |
684 V(S16x8Select) \ | 694 V(S16x8Select) \ |
685 V(S16x8Swizzle) \ | 695 V(S8x16ZipLeft) \ |
686 V(S16x8Shuffle) \ | 696 V(S8x16ZipRight) \ |
| 697 V(S8x16UnzipLeft) \ |
| 698 V(S8x16UnzipRight) \ |
| 699 V(S8x16TransposeLeft) \ |
| 700 V(S8x16TransposeRight) \ |
687 V(S8x16Select) \ | 701 V(S8x16Select) \ |
688 V(S8x16Swizzle) \ | 702 V(S8x16Concat) \ |
689 V(S8x16Shuffle) \ | 703 V(S32x2Reverse) \ |
| 704 V(S16x4Reverse) \ |
| 705 V(S16x2Reverse) \ |
| 706 V(S8x8Reverse) \ |
| 707 V(S8x4Reverse) \ |
| 708 V(S8x2Reverse) \ |
690 V(S1x4Zero) \ | 709 V(S1x4Zero) \ |
691 V(S1x4And) \ | 710 V(S1x4And) \ |
692 V(S1x4Or) \ | 711 V(S1x4Or) \ |
693 V(S1x4Xor) \ | 712 V(S1x4Xor) \ |
694 V(S1x4Not) \ | 713 V(S1x4Not) \ |
695 V(S1x4AnyTrue) \ | 714 V(S1x4AnyTrue) \ |
696 V(S1x4AllTrue) \ | 715 V(S1x4AllTrue) \ |
697 V(S1x8Zero) \ | 716 V(S1x8Zero) \ |
698 V(S1x8And) \ | 717 V(S1x8And) \ |
699 V(S1x8Or) \ | 718 V(S1x8Or) \ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 } | 817 } |
799 }; | 818 }; |
800 | 819 |
801 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 820 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
802 | 821 |
803 } // namespace compiler | 822 } // namespace compiler |
804 } // namespace internal | 823 } // namespace internal |
805 } // namespace v8 | 824 } // namespace v8 |
806 | 825 |
807 #endif // V8_COMPILER_OPCODES_H_ | 826 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |