Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: src/compiler/machine-operator.h

Issue 2923103003: [WASM] Simplify SIMD shuffle opcodes. (Closed)
Patch Set: Mircea's review comments. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698