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

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

Issue 2919203002: [WASM] Eliminate SIMD boolean vector types. (Closed)
Patch Set: Restore DCHECKs in AssembleMove/Swap now that we're back to 1 SIMD representation. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/machine-graph-verifier.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 313302c4dc3adcb569d4337436219c60c180f9f7..315683544751621c4d865d1f61a6566c5bb26d37 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -575,35 +575,16 @@ class V8_EXPORT_PRIVATE MachineOperatorBuilder final
const Operator* S128Or();
const Operator* S128Xor();
const Operator* S128Not();
+ const Operator* S128Select();
const Operator* S32x4Shuffle(uint8_t shuffle[16]);
- const Operator* S32x4Select();
const Operator* S16x8Shuffle(uint8_t shuffle[16]);
- const Operator* S16x8Select();
const Operator* S8x16Shuffle(uint8_t shuffle[16]);
- const Operator* S8x16Select();
- const Operator* S1x4Zero();
- const Operator* S1x4And();
- const Operator* S1x4Or();
- const Operator* S1x4Xor();
- const Operator* S1x4Not();
const Operator* S1x4AnyTrue();
const Operator* S1x4AllTrue();
-
- const Operator* S1x8Zero();
- const Operator* S1x8And();
- const Operator* S1x8Or();
- const Operator* S1x8Xor();
- const Operator* S1x8Not();
const Operator* S1x8AnyTrue();
const Operator* S1x8AllTrue();
-
- const Operator* S1x16Zero();
- const Operator* S1x16And();
- const Operator* S1x16Or();
- const Operator* S1x16Xor();
- const Operator* S1x16Not();
const Operator* S1x16AnyTrue();
const Operator* S1x16AllTrue();
« no previous file with comments | « src/compiler/machine-graph-verifier.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698