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

Unified Diff: src/compiler/machine-operator.h

Issue 2801183002: [WASM SIMD] Implement primitive shuffles. (Closed)
Patch Set: Fix non-ARM build. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator.h
diff --git a/src/compiler/machine-operator.h b/src/compiler/machine-operator.h
index 9ffb3553623cc46f402c8c8dc9e1d7c4b8608acd..4bca124ebdcf817dde385a5e711fb24fa19a6140 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -556,15 +556,35 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* S128Xor();
const Operator* S128Not();
+ const Operator* S32x4ZipLeft();
+ const Operator* S32x4ZipRight();
+ const Operator* S32x4UnzipLeft();
+ const Operator* S32x4UnzipRight();
+ const Operator* S32x4TransposeLeft();
+ const Operator* S32x4TransposeRight();
const Operator* S32x4Select();
- const Operator* S32x4Swizzle(uint32_t);
- const Operator* S32x4Shuffle();
+ const Operator* S16x8ZipLeft();
+ const Operator* S16x8ZipRight();
+ const Operator* S16x8UnzipLeft();
+ const Operator* S16x8UnzipRight();
+ const Operator* S16x8TransposeLeft();
+ const Operator* S16x8TransposeRight();
const Operator* S16x8Select();
- const Operator* S16x8Swizzle(uint32_t);
- const Operator* S16x8Shuffle();
+ const Operator* S8x16ZipLeft();
+ const Operator* S8x16ZipRight();
+ const Operator* S8x16UnzipLeft();
+ const Operator* S8x16UnzipRight();
+ const Operator* S8x16TransposeLeft();
+ const Operator* S8x16TransposeRight();
const Operator* S8x16Select();
- const Operator* S8x16Swizzle(uint32_t);
- const Operator* S8x16Shuffle();
+ const Operator* S8x16Concat(int32_t);
+
+ const Operator* S32x2Reverse();
+ const Operator* S16x4Reverse();
+ const Operator* S16x2Reverse();
+ const Operator* S8x8Reverse();
+ const Operator* S8x4Reverse();
+ const Operator* S8x2Reverse();
const Operator* S1x4Zero();
const Operator* S1x4And();
« 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