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_MACHINE_OPERATOR_H_ | 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_ |
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ | 6 #define V8_COMPILER_MACHINE_OPERATOR_H_ |
7 | 7 |
8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
10 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 | 549 |
550 const Operator* S128Load(); | 550 const Operator* S128Load(); |
551 const Operator* S128Store(); | 551 const Operator* S128Store(); |
552 | 552 |
553 const Operator* S128Zero(); | 553 const Operator* S128Zero(); |
554 const Operator* S128And(); | 554 const Operator* S128And(); |
555 const Operator* S128Or(); | 555 const Operator* S128Or(); |
556 const Operator* S128Xor(); | 556 const Operator* S128Xor(); |
557 const Operator* S128Not(); | 557 const Operator* S128Not(); |
558 | 558 |
| 559 const Operator* S32x4ZipLeft(); |
| 560 const Operator* S32x4ZipRight(); |
| 561 const Operator* S32x4UnzipLeft(); |
| 562 const Operator* S32x4UnzipRight(); |
| 563 const Operator* S32x4TransposeLeft(); |
| 564 const Operator* S32x4TransposeRight(); |
559 const Operator* S32x4Select(); | 565 const Operator* S32x4Select(); |
560 const Operator* S32x4Swizzle(uint32_t); | 566 const Operator* S16x8ZipLeft(); |
561 const Operator* S32x4Shuffle(); | 567 const Operator* S16x8ZipRight(); |
| 568 const Operator* S16x8UnzipLeft(); |
| 569 const Operator* S16x8UnzipRight(); |
| 570 const Operator* S16x8TransposeLeft(); |
| 571 const Operator* S16x8TransposeRight(); |
562 const Operator* S16x8Select(); | 572 const Operator* S16x8Select(); |
563 const Operator* S16x8Swizzle(uint32_t); | 573 const Operator* S8x16ZipLeft(); |
564 const Operator* S16x8Shuffle(); | 574 const Operator* S8x16ZipRight(); |
| 575 const Operator* S8x16UnzipLeft(); |
| 576 const Operator* S8x16UnzipRight(); |
| 577 const Operator* S8x16TransposeLeft(); |
| 578 const Operator* S8x16TransposeRight(); |
565 const Operator* S8x16Select(); | 579 const Operator* S8x16Select(); |
566 const Operator* S8x16Swizzle(uint32_t); | 580 const Operator* S8x16Concat(int32_t); |
567 const Operator* S8x16Shuffle(); | 581 |
| 582 const Operator* S32x2Reverse(); |
| 583 const Operator* S16x4Reverse(); |
| 584 const Operator* S16x2Reverse(); |
| 585 const Operator* S8x8Reverse(); |
| 586 const Operator* S8x4Reverse(); |
| 587 const Operator* S8x2Reverse(); |
568 | 588 |
569 const Operator* S1x4Zero(); | 589 const Operator* S1x4Zero(); |
570 const Operator* S1x4And(); | 590 const Operator* S1x4And(); |
571 const Operator* S1x4Or(); | 591 const Operator* S1x4Or(); |
572 const Operator* S1x4Xor(); | 592 const Operator* S1x4Xor(); |
573 const Operator* S1x4Not(); | 593 const Operator* S1x4Not(); |
574 const Operator* S1x4AnyTrue(); | 594 const Operator* S1x4AnyTrue(); |
575 const Operator* S1x4AllTrue(); | 595 const Operator* S1x4AllTrue(); |
576 | 596 |
577 const Operator* S1x8Zero(); | 597 const Operator* S1x8Zero(); |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 }; | 714 }; |
695 | 715 |
696 | 716 |
697 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 717 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
698 | 718 |
699 } // namespace compiler | 719 } // namespace compiler |
700 } // namespace internal | 720 } // namespace internal |
701 } // namespace v8 | 721 } // namespace v8 |
702 | 722 |
703 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 723 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
OLD | NEW |