| 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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 684   V(I8x16ShrU)                  \ | 684   V(I8x16ShrU)                  \ | 
| 685   V(I8x16MinU)                  \ | 685   V(I8x16MinU)                  \ | 
| 686   V(I8x16MaxU)                  \ | 686   V(I8x16MaxU)                  \ | 
| 687   V(I8x16LtU)                   \ | 687   V(I8x16LtU)                   \ | 
| 688   V(I8x16LeU)                   \ | 688   V(I8x16LeU)                   \ | 
| 689   V(I8x16GtU)                   \ | 689   V(I8x16GtU)                   \ | 
| 690   V(I8x16GeU)                   \ | 690   V(I8x16GeU)                   \ | 
| 691   V(S128Load)                   \ | 691   V(S128Load)                   \ | 
| 692   V(S128Store)                  \ | 692   V(S128Store)                  \ | 
| 693   V(S128Zero)                   \ | 693   V(S128Zero)                   \ | 
|  | 694   V(S128Not)                    \ | 
| 694   V(S128And)                    \ | 695   V(S128And)                    \ | 
| 695   V(S128Or)                     \ | 696   V(S128Or)                     \ | 
| 696   V(S128Xor)                    \ | 697   V(S128Xor)                    \ | 
| 697   V(S128Not)                    \ | 698   V(S32x4ZipLeft)               \ | 
|  | 699   V(S32x4ZipRight)              \ | 
|  | 700   V(S32x4UnzipLeft)             \ | 
|  | 701   V(S32x4UnzipRight)            \ | 
|  | 702   V(S32x4TransposeLeft)         \ | 
|  | 703   V(S32x4TransposeRight)        \ | 
| 698   V(S32x4Select)                \ | 704   V(S32x4Select)                \ | 
| 699   V(S32x4Swizzle)               \ | 705   V(S16x8ZipLeft)               \ | 
| 700   V(S32x4Shuffle)               \ | 706   V(S16x8ZipRight)              \ | 
|  | 707   V(S16x8UnzipLeft)             \ | 
|  | 708   V(S16x8UnzipRight)            \ | 
|  | 709   V(S16x8TransposeLeft)         \ | 
|  | 710   V(S16x8TransposeRight)        \ | 
| 701   V(S16x8Select)                \ | 711   V(S16x8Select)                \ | 
| 702   V(S16x8Swizzle)               \ | 712   V(S8x16ZipLeft)               \ | 
| 703   V(S16x8Shuffle)               \ | 713   V(S8x16ZipRight)              \ | 
|  | 714   V(S8x16UnzipLeft)             \ | 
|  | 715   V(S8x16UnzipRight)            \ | 
|  | 716   V(S8x16TransposeLeft)         \ | 
|  | 717   V(S8x16TransposeRight)        \ | 
| 704   V(S8x16Select)                \ | 718   V(S8x16Select)                \ | 
| 705   V(S8x16Swizzle)               \ | 719   V(S8x16Concat)                \ | 
| 706   V(S8x16Shuffle)               \ | 720   V(S32x2Reverse)               \ | 
|  | 721   V(S16x4Reverse)               \ | 
|  | 722   V(S16x2Reverse)               \ | 
|  | 723   V(S8x8Reverse)                \ | 
|  | 724   V(S8x4Reverse)                \ | 
|  | 725   V(S8x2Reverse)                \ | 
| 707   V(S1x4Zero)                   \ | 726   V(S1x4Zero)                   \ | 
| 708   V(S1x4And)                    \ | 727   V(S1x4And)                    \ | 
| 709   V(S1x4Or)                     \ | 728   V(S1x4Or)                     \ | 
| 710   V(S1x4Xor)                    \ | 729   V(S1x4Xor)                    \ | 
| 711   V(S1x4Not)                    \ | 730   V(S1x4Not)                    \ | 
| 712   V(S1x4AnyTrue)                \ | 731   V(S1x4AnyTrue)                \ | 
| 713   V(S1x4AllTrue)                \ | 732   V(S1x4AllTrue)                \ | 
| 714   V(S1x8Zero)                   \ | 733   V(S1x8Zero)                   \ | 
| 715   V(S1x8And)                    \ | 734   V(S1x8And)                    \ | 
| 716   V(S1x8Or)                     \ | 735   V(S1x8Or)                     \ | 
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 815   } | 834   } | 
| 816 }; | 835 }; | 
| 817 | 836 | 
| 818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 837 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 
| 819 | 838 | 
| 820 }  // namespace compiler | 839 }  // namespace compiler | 
| 821 }  // namespace internal | 840 }  // namespace internal | 
| 822 }  // namespace v8 | 841 }  // namespace v8 | 
| 823 | 842 | 
| 824 #endif  // V8_COMPILER_OPCODES_H_ | 843 #endif  // V8_COMPILER_OPCODES_H_ | 
| OLD | NEW | 
|---|