Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: src/compiler/opcodes.h

Issue 2847663005: [WASM SIMD] Replace primitive shuffles with general Shuffle. (Closed)
Patch Set: Remove stray wasm opcode. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 V(I8x16LeU) \ 685 V(I8x16LeU) \
686 V(I8x16GtU) \ 686 V(I8x16GtU) \
687 V(I8x16GeU) \ 687 V(I8x16GeU) \
688 V(S128Load) \ 688 V(S128Load) \
689 V(S128Store) \ 689 V(S128Store) \
690 V(S128Zero) \ 690 V(S128Zero) \
691 V(S128Not) \ 691 V(S128Not) \
692 V(S128And) \ 692 V(S128And) \
693 V(S128Or) \ 693 V(S128Or) \
694 V(S128Xor) \ 694 V(S128Xor) \
695 V(S32x4ZipLeft) \ 695 V(S32x4Shuffle) \
696 V(S32x4ZipRight) \
697 V(S32x4UnzipLeft) \
698 V(S32x4UnzipRight) \
699 V(S32x4TransposeLeft) \
700 V(S32x4TransposeRight) \
701 V(S32x4Select) \ 696 V(S32x4Select) \
702 V(S16x8ZipLeft) \ 697 V(S16x8Shuffle) \
703 V(S16x8ZipRight) \
704 V(S16x8UnzipLeft) \
705 V(S16x8UnzipRight) \
706 V(S16x8TransposeLeft) \
707 V(S16x8TransposeRight) \
708 V(S16x8Select) \ 698 V(S16x8Select) \
709 V(S8x16ZipLeft) \ 699 V(S8x16Shuffle) \
710 V(S8x16ZipRight) \
711 V(S8x16UnzipLeft) \
712 V(S8x16UnzipRight) \
713 V(S8x16TransposeLeft) \
714 V(S8x16TransposeRight) \
715 V(S8x16Select) \ 700 V(S8x16Select) \
716 V(S8x16Concat) \
717 V(S32x2Reverse) \
718 V(S16x4Reverse) \
719 V(S16x2Reverse) \
720 V(S8x8Reverse) \
721 V(S8x4Reverse) \
722 V(S8x2Reverse) \
723 V(S1x4Zero) \ 701 V(S1x4Zero) \
724 V(S1x4And) \ 702 V(S1x4And) \
725 V(S1x4Or) \ 703 V(S1x4Or) \
726 V(S1x4Xor) \ 704 V(S1x4Xor) \
727 V(S1x4Not) \ 705 V(S1x4Not) \
728 V(S1x4AnyTrue) \ 706 V(S1x4AnyTrue) \
729 V(S1x4AllTrue) \ 707 V(S1x4AllTrue) \
730 V(S1x8Zero) \ 708 V(S1x8Zero) \
731 V(S1x8And) \ 709 V(S1x8And) \
732 V(S1x8Or) \ 710 V(S1x8Or) \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 } 809 }
832 }; 810 };
833 811
834 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 812 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
835 813
836 } // namespace compiler 814 } // namespace compiler
837 } // namespace internal 815 } // namespace internal
838 } // namespace v8 816 } // namespace v8
839 817
840 #endif // V8_COMPILER_OPCODES_H_ 818 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698