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

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

Issue 2801183002: [WASM SIMD] Implement primitive shuffles. (Closed)
Patch Set: Add comments, remove S64x2Reverse, as it's redundant. Created 3 years, 8 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
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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 539
540 const Operator* S128Load(); 540 const Operator* S128Load();
541 const Operator* S128Store(); 541 const Operator* S128Store();
542 542
543 const Operator* S128Zero(); 543 const Operator* S128Zero();
544 const Operator* S128And(); 544 const Operator* S128And();
545 const Operator* S128Or(); 545 const Operator* S128Or();
546 const Operator* S128Xor(); 546 const Operator* S128Xor();
547 const Operator* S128Not(); 547 const Operator* S128Not();
548 548
549 const Operator* S32x4ZipLeft();
550 const Operator* S32x4ZipRight();
551 const Operator* S32x4UnzipLeft();
552 const Operator* S32x4UnzipRight();
553 const Operator* S32x4TransposeLeft();
554 const Operator* S32x4TransposeRight();
549 const Operator* S32x4Select(); 555 const Operator* S32x4Select();
550 const Operator* S32x4Swizzle(uint32_t); 556 const Operator* S16x8ZipLeft();
551 const Operator* S32x4Shuffle(); 557 const Operator* S16x8ZipRight();
558 const Operator* S16x8UnzipLeft();
559 const Operator* S16x8UnzipRight();
560 const Operator* S16x8TransposeLeft();
561 const Operator* S16x8TransposeRight();
552 const Operator* S16x8Select(); 562 const Operator* S16x8Select();
553 const Operator* S16x8Swizzle(uint32_t); 563 const Operator* S8x16ZipLeft();
554 const Operator* S16x8Shuffle(); 564 const Operator* S8x16ZipRight();
565 const Operator* S8x16UnzipLeft();
566 const Operator* S8x16UnzipRight();
567 const Operator* S8x16TransposeLeft();
568 const Operator* S8x16TransposeRight();
555 const Operator* S8x16Select(); 569 const Operator* S8x16Select();
556 const Operator* S8x16Swizzle(uint32_t); 570 const Operator* S8x16Concat(int32_t);
557 const Operator* S8x16Shuffle(); 571
572 const Operator* S32x2Reverse();
573 const Operator* S16x4Reverse();
574 const Operator* S16x2Reverse();
575 const Operator* S8x8Reverse();
576 const Operator* S8x4Reverse();
577 const Operator* S8x2Reverse();
558 578
559 const Operator* S1x4Zero(); 579 const Operator* S1x4Zero();
560 const Operator* S1x4And(); 580 const Operator* S1x4And();
561 const Operator* S1x4Or(); 581 const Operator* S1x4Or();
562 const Operator* S1x4Xor(); 582 const Operator* S1x4Xor();
563 const Operator* S1x4Not(); 583 const Operator* S1x4Not();
564 const Operator* S1x4AnyTrue(); 584 const Operator* S1x4AnyTrue();
565 const Operator* S1x4AllTrue(); 585 const Operator* S1x4AllTrue();
566 586
567 const Operator* S1x8Zero(); 587 const Operator* S1x8Zero();
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 }; 694 };
675 695
676 696
677 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 697 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
678 698
679 } // namespace compiler 699 } // namespace compiler
680 } // namespace internal 700 } // namespace internal
681 } // namespace v8 701 } // namespace v8
682 702
683 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 703 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698