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

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

Issue 2923103003: [WASM] Simplify SIMD shuffle opcodes. (Closed)
Patch Set: De-comment-out irregular shuffle code. Created 3 years, 6 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 V(I8x16GtU) \ 693 V(I8x16GtU) \
694 V(I8x16GeU) \ 694 V(I8x16GeU) \
695 V(S128Load) \ 695 V(S128Load) \
696 V(S128Store) \ 696 V(S128Store) \
697 V(S128Zero) \ 697 V(S128Zero) \
698 V(S128Not) \ 698 V(S128Not) \
699 V(S128And) \ 699 V(S128And) \
700 V(S128Or) \ 700 V(S128Or) \
701 V(S128Xor) \ 701 V(S128Xor) \
702 V(S128Select) \ 702 V(S128Select) \
703 V(S32x4Shuffle) \
704 V(S16x8Shuffle) \
705 V(S8x16Shuffle) \ 703 V(S8x16Shuffle) \
706 V(S1x4AnyTrue) \ 704 V(S1x4AnyTrue) \
707 V(S1x4AllTrue) \ 705 V(S1x4AllTrue) \
708 V(S1x8AnyTrue) \ 706 V(S1x8AnyTrue) \
709 V(S1x8AllTrue) \ 707 V(S1x8AllTrue) \
710 V(S1x16AnyTrue) \ 708 V(S1x16AnyTrue) \
711 V(S1x16AllTrue) 709 V(S1x16AllTrue)
712 710
713 #define VALUE_OP_LIST(V) \ 711 #define VALUE_OP_LIST(V) \
714 COMMON_OP_LIST(V) \ 712 COMMON_OP_LIST(V) \
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 } 797 }
800 }; 798 };
801 799
802 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 800 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
803 801
804 } // namespace compiler 802 } // namespace compiler
805 } // namespace internal 803 } // namespace internal
806 } // namespace v8 804 } // namespace v8
807 805
808 #endif // V8_COMPILER_OPCODES_H_ 806 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698