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

Unified Diff: src/compiler/instruction-selector.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/instruction.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/instruction-selector.h
diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h
index 26cc85a81f693bde2b14bdb7fdf4f43e4aeb57e3..512b6d1775ad6df4b7eb859d6d5e71ceaa8e9628 100644
--- a/src/compiler/instruction-selector.h
+++ b/src/compiler/instruction-selector.h
@@ -263,27 +263,6 @@ class V8_EXPORT_PRIVATE InstructionSelector final {
void MarkAsSimd128(Node* node) {
MarkAsRepresentation(MachineRepresentation::kSimd128, node);
}
- void MarkAsSimd1x4(Node* node) {
- if (kSimdMaskRegisters) {
- MarkAsRepresentation(MachineRepresentation::kSimd1x4, node);
- } else {
- MarkAsSimd128(node);
- }
- }
- void MarkAsSimd1x8(Node* node) {
- if (kSimdMaskRegisters) {
- MarkAsRepresentation(MachineRepresentation::kSimd1x8, node);
- } else {
- MarkAsSimd128(node);
- }
- }
- void MarkAsSimd1x16(Node* node) {
- if (kSimdMaskRegisters) {
- MarkAsRepresentation(MachineRepresentation::kSimd1x16, node);
- } else {
- MarkAsSimd128(node);
- }
- }
void MarkAsReference(Node* node) {
MarkAsRepresentation(MachineRepresentation::kTagged, node);
}
« no previous file with comments | « src/compiler/instruction.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698