| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 | 547 |
| 548 const Operator* S128Load(); | 548 const Operator* S128Load(); |
| 549 const Operator* S128Store(); | 549 const Operator* S128Store(); |
| 550 | 550 |
| 551 const Operator* S128Zero(); | 551 const Operator* S128Zero(); |
| 552 const Operator* S128And(); | 552 const Operator* S128And(); |
| 553 const Operator* S128Or(); | 553 const Operator* S128Or(); |
| 554 const Operator* S128Xor(); | 554 const Operator* S128Xor(); |
| 555 const Operator* S128Not(); | 555 const Operator* S128Not(); |
| 556 | 556 |
| 557 const Operator* S32x4ZipLeft(); | 557 const Operator* S32x4Shuffle(uint8_t shuffle[16]); |
| 558 const Operator* S32x4ZipRight(); | |
| 559 const Operator* S32x4UnzipLeft(); | |
| 560 const Operator* S32x4UnzipRight(); | |
| 561 const Operator* S32x4TransposeLeft(); | |
| 562 const Operator* S32x4TransposeRight(); | |
| 563 const Operator* S32x4Select(); | 558 const Operator* S32x4Select(); |
| 564 const Operator* S16x8ZipLeft(); | 559 const Operator* S16x8Shuffle(uint8_t shuffle[16]); |
| 565 const Operator* S16x8ZipRight(); | |
| 566 const Operator* S16x8UnzipLeft(); | |
| 567 const Operator* S16x8UnzipRight(); | |
| 568 const Operator* S16x8TransposeLeft(); | |
| 569 const Operator* S16x8TransposeRight(); | |
| 570 const Operator* S16x8Select(); | 560 const Operator* S16x8Select(); |
| 571 const Operator* S8x16ZipLeft(); | 561 const Operator* S8x16Shuffle(uint8_t shuffle[16]); |
| 572 const Operator* S8x16ZipRight(); | |
| 573 const Operator* S8x16UnzipLeft(); | |
| 574 const Operator* S8x16UnzipRight(); | |
| 575 const Operator* S8x16TransposeLeft(); | |
| 576 const Operator* S8x16TransposeRight(); | |
| 577 const Operator* S8x16Select(); | 562 const Operator* S8x16Select(); |
| 578 const Operator* S8x16Concat(int32_t); | |
| 579 | |
| 580 const Operator* S32x2Reverse(); | |
| 581 const Operator* S16x4Reverse(); | |
| 582 const Operator* S16x2Reverse(); | |
| 583 const Operator* S8x8Reverse(); | |
| 584 const Operator* S8x4Reverse(); | |
| 585 const Operator* S8x2Reverse(); | |
| 586 | 563 |
| 587 const Operator* S1x4Zero(); | 564 const Operator* S1x4Zero(); |
| 588 const Operator* S1x4And(); | 565 const Operator* S1x4And(); |
| 589 const Operator* S1x4Or(); | 566 const Operator* S1x4Or(); |
| 590 const Operator* S1x4Xor(); | 567 const Operator* S1x4Xor(); |
| 591 const Operator* S1x4Not(); | 568 const Operator* S1x4Not(); |
| 592 const Operator* S1x4AnyTrue(); | 569 const Operator* S1x4AnyTrue(); |
| 593 const Operator* S1x4AllTrue(); | 570 const Operator* S1x4AllTrue(); |
| 594 | 571 |
| 595 const Operator* S1x8Zero(); | 572 const Operator* S1x8Zero(); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 }; | 689 }; |
| 713 | 690 |
| 714 | 691 |
| 715 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 692 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 716 | 693 |
| 717 } // namespace compiler | 694 } // namespace compiler |
| 718 } // namespace internal | 695 } // namespace internal |
| 719 } // namespace v8 | 696 } // namespace v8 |
| 720 | 697 |
| 721 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 698 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |