| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 const Operator* S128Load(); | 570 const Operator* S128Load(); |
| 571 const Operator* S128Store(); | 571 const Operator* S128Store(); |
| 572 | 572 |
| 573 const Operator* S128Zero(); | 573 const Operator* S128Zero(); |
| 574 const Operator* S128And(); | 574 const Operator* S128And(); |
| 575 const Operator* S128Or(); | 575 const Operator* S128Or(); |
| 576 const Operator* S128Xor(); | 576 const Operator* S128Xor(); |
| 577 const Operator* S128Not(); | 577 const Operator* S128Not(); |
| 578 const Operator* S128Select(); | 578 const Operator* S128Select(); |
| 579 | 579 |
| 580 const Operator* S32x4Shuffle(uint8_t shuffle[16]); | |
| 581 const Operator* S16x8Shuffle(uint8_t shuffle[16]); | |
| 582 const Operator* S8x16Shuffle(uint8_t shuffle[16]); | 580 const Operator* S8x16Shuffle(uint8_t shuffle[16]); |
| 583 | 581 |
| 584 const Operator* S1x4AnyTrue(); | 582 const Operator* S1x4AnyTrue(); |
| 585 const Operator* S1x4AllTrue(); | 583 const Operator* S1x4AllTrue(); |
| 586 const Operator* S1x8AnyTrue(); | 584 const Operator* S1x8AnyTrue(); |
| 587 const Operator* S1x8AllTrue(); | 585 const Operator* S1x8AllTrue(); |
| 588 const Operator* S1x16AnyTrue(); | 586 const Operator* S1x16AnyTrue(); |
| 589 const Operator* S1x16AllTrue(); | 587 const Operator* S1x16AllTrue(); |
| 590 | 588 |
| 591 // load [base + index] | 589 // load [base + index] |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 }; | 690 }; |
| 693 | 691 |
| 694 | 692 |
| 695 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 693 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 696 | 694 |
| 697 } // namespace compiler | 695 } // namespace compiler |
| 698 } // namespace internal | 696 } // namespace internal |
| 699 } // namespace v8 | 697 } // namespace v8 |
| 700 | 698 |
| 701 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 699 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |