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

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

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-operator.h ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator.cc
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
index 6dc5181ee36a22b6c64c036a39c1332f7c228543..a5d27a68449df679f16c4eac5b2393732bad5f5c 100644
--- a/src/compiler/machine-operator.cc
+++ b/src/compiler/machine-operator.cc
@@ -333,28 +333,11 @@ MachineType AtomicOpRepresentationOf(Operator const* op) {
V(S128Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
V(S128Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
V(S128Not, Operator::kNoProperties, 1, 0, 1) \
- V(S32x4Select, Operator::kNoProperties, 3, 0, 1) \
- V(S16x8Select, Operator::kNoProperties, 3, 0, 1) \
- V(S8x16Select, Operator::kNoProperties, 3, 0, 1) \
- V(S1x4Zero, Operator::kNoProperties, 0, 0, 1) \
- V(S1x4And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x4Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x4Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x4Not, Operator::kNoProperties, 1, 0, 1) \
+ V(S128Select, Operator::kNoProperties, 3, 0, 1) \
V(S1x4AnyTrue, Operator::kNoProperties, 1, 0, 1) \
V(S1x4AllTrue, Operator::kNoProperties, 1, 0, 1) \
- V(S1x8Zero, Operator::kNoProperties, 0, 0, 1) \
- V(S1x8And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x8Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x8Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x8Not, Operator::kNoProperties, 1, 0, 1) \
V(S1x8AnyTrue, Operator::kNoProperties, 1, 0, 1) \
V(S1x8AllTrue, Operator::kNoProperties, 1, 0, 1) \
- V(S1x16Zero, Operator::kNoProperties, 0, 0, 1) \
- V(S1x16And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x16Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x16Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
- V(S1x16Not, Operator::kNoProperties, 1, 0, 1) \
V(S1x16AnyTrue, Operator::kNoProperties, 1, 0, 1) \
V(S1x16AllTrue, Operator::kNoProperties, 1, 0, 1)
@@ -721,9 +704,6 @@ const Operator* MachineOperatorBuilder::UnalignedStore(
MACHINE_REPRESENTATION_LIST(STORE)
#undef STORE
case MachineRepresentation::kBit:
- case MachineRepresentation::kSimd1x4:
- case MachineRepresentation::kSimd1x8:
- case MachineRepresentation::kSimd1x16:
case MachineRepresentation::kNone:
break;
}
@@ -806,9 +786,6 @@ const Operator* MachineOperatorBuilder::Store(StoreRepresentation store_rep) {
MACHINE_REPRESENTATION_LIST(STORE)
#undef STORE
case MachineRepresentation::kBit:
- case MachineRepresentation::kSimd1x4:
- case MachineRepresentation::kSimd1x8:
- case MachineRepresentation::kSimd1x16:
case MachineRepresentation::kNone:
break;
}
@@ -825,9 +802,6 @@ const Operator* MachineOperatorBuilder::ProtectedStore(
MACHINE_REPRESENTATION_LIST(STORE)
#undef STORE
case MachineRepresentation::kBit:
- case MachineRepresentation::kSimd1x4:
- case MachineRepresentation::kSimd1x8:
- case MachineRepresentation::kSimd1x16:
case MachineRepresentation::kNone:
break;
}
@@ -871,9 +845,6 @@ const Operator* MachineOperatorBuilder::CheckedStore(
MACHINE_REPRESENTATION_LIST(STORE)
#undef STORE
case MachineRepresentation::kBit:
- case MachineRepresentation::kSimd1x4:
- case MachineRepresentation::kSimd1x8:
- case MachineRepresentation::kSimd1x16:
case MachineRepresentation::kNone:
break;
}
« no previous file with comments | « src/compiler/machine-operator.h ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698