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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 V(I8x16GtU) \ | 694 V(I8x16GtU) \ |
695 V(I8x16GeU) \ | 695 V(I8x16GeU) \ |
696 V(S128Load) \ | 696 V(S128Load) \ |
697 V(S128Store) \ | 697 V(S128Store) \ |
698 V(S128Zero) \ | 698 V(S128Zero) \ |
699 V(S128Not) \ | 699 V(S128Not) \ |
700 V(S128And) \ | 700 V(S128And) \ |
701 V(S128Or) \ | 701 V(S128Or) \ |
702 V(S128Xor) \ | 702 V(S128Xor) \ |
703 V(S128Select) \ | 703 V(S128Select) \ |
704 V(S32x4Shuffle) \ | |
705 V(S16x8Shuffle) \ | |
706 V(S8x16Shuffle) \ | 704 V(S8x16Shuffle) \ |
707 V(S1x4AnyTrue) \ | 705 V(S1x4AnyTrue) \ |
708 V(S1x4AllTrue) \ | 706 V(S1x4AllTrue) \ |
709 V(S1x8AnyTrue) \ | 707 V(S1x8AnyTrue) \ |
710 V(S1x8AllTrue) \ | 708 V(S1x8AllTrue) \ |
711 V(S1x16AnyTrue) \ | 709 V(S1x16AnyTrue) \ |
712 V(S1x16AllTrue) | 710 V(S1x16AllTrue) |
713 | 711 |
714 #define VALUE_OP_LIST(V) \ | 712 #define VALUE_OP_LIST(V) \ |
715 COMMON_OP_LIST(V) \ | 713 COMMON_OP_LIST(V) \ |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 } | 798 } |
801 }; | 799 }; |
802 | 800 |
803 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 801 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
804 | 802 |
805 } // namespace compiler | 803 } // namespace compiler |
806 } // namespace internal | 804 } // namespace internal |
807 } // namespace v8 | 805 } // namespace v8 |
808 | 806 |
809 #endif // V8_COMPILER_OPCODES_H_ | 807 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |