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

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

Issue 2847663005: [WASM SIMD] Replace primitive shuffles with general Shuffle. (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 V(I8x16LeU) \ 684 V(I8x16LeU) \
685 V(I8x16GtU) \ 685 V(I8x16GtU) \
686 V(I8x16GeU) \ 686 V(I8x16GeU) \
687 V(S128Load) \ 687 V(S128Load) \
688 V(S128Store) \ 688 V(S128Store) \
689 V(S128Zero) \ 689 V(S128Zero) \
690 V(S128Not) \ 690 V(S128Not) \
691 V(S128And) \ 691 V(S128And) \
692 V(S128Or) \ 692 V(S128Or) \
693 V(S128Xor) \ 693 V(S128Xor) \
694 V(S32x4ZipLeft) \ 694 V(S32x4Shuffle) \
695 V(S32x4ZipRight) \
696 V(S32x4UnzipLeft) \
697 V(S32x4UnzipRight) \
698 V(S32x4TransposeLeft) \
699 V(S32x4TransposeRight) \
700 V(S32x4Select) \ 695 V(S32x4Select) \
701 V(S16x8ZipLeft) \ 696 V(S16x8Shuffle) \
702 V(S16x8ZipRight) \
703 V(S16x8UnzipLeft) \
704 V(S16x8UnzipRight) \
705 V(S16x8TransposeLeft) \
706 V(S16x8TransposeRight) \
707 V(S16x8Select) \ 697 V(S16x8Select) \
708 V(S8x16ZipLeft) \ 698 V(S8x16Shuffle) \
709 V(S8x16ZipRight) \
710 V(S8x16UnzipLeft) \
711 V(S8x16UnzipRight) \
712 V(S8x16TransposeLeft) \
713 V(S8x16TransposeRight) \
714 V(S8x16Select) \ 699 V(S8x16Select) \
715 V(S8x16Concat) \
716 V(S32x2Reverse) \
717 V(S16x4Reverse) \
718 V(S16x2Reverse) \
719 V(S8x8Reverse) \
720 V(S8x4Reverse) \
721 V(S8x2Reverse) \
722 V(S1x4Zero) \ 700 V(S1x4Zero) \
723 V(S1x4And) \ 701 V(S1x4And) \
724 V(S1x4Or) \ 702 V(S1x4Or) \
725 V(S1x4Xor) \ 703 V(S1x4Xor) \
726 V(S1x4Not) \ 704 V(S1x4Not) \
727 V(S1x4AnyTrue) \ 705 V(S1x4AnyTrue) \
728 V(S1x4AllTrue) \ 706 V(S1x4AllTrue) \
729 V(S1x8Zero) \ 707 V(S1x8Zero) \
730 V(S1x8And) \ 708 V(S1x8And) \
731 V(S1x8Or) \ 709 V(S1x8Or) \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 } 808 }
831 }; 809 };
832 810
833 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 811 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
834 812
835 } // namespace compiler 813 } // namespace compiler
836 } // namespace internal 814 } // namespace internal
837 } // namespace v8 815 } // namespace v8
838 816
839 #endif // V8_COMPILER_OPCODES_H_ 817 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/wasm-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698