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

Unified Diff: src/wasm/function-body-decoder.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/machine-type.cc ('k') | src/wasm/function-body-decoder-impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/function-body-decoder.cc
diff --git a/src/wasm/function-body-decoder.cc b/src/wasm/function-body-decoder.cc
index d8cee9df8484e51dbf979f66d95f55cb34f66e83..9241c2d448f59aa5cdc9bfde189f2b7b24d558ec 100644
--- a/src/wasm/function-body-decoder.cc
+++ b/src/wasm/function-body-decoder.cc
@@ -228,15 +228,6 @@ class WasmDecoder : public Decoder {
case kLocalS128:
type = kWasmS128;
break;
- case kLocalS1x4:
- type = kWasmS1x4;
- break;
- case kLocalS1x8:
- type = kWasmS1x8;
- break;
- case kLocalS1x16:
- type = kWasmS1x16;
- break;
default:
decoder->error(decoder->pc() - 1, "invalid local type");
return false;
@@ -761,12 +752,6 @@ class WasmFullDecoder : public WasmDecoder {
return builder_->Float64Constant(0);
case kWasmS128:
return builder_->S128Zero();
- case kWasmS1x4:
- return builder_->S1x4Zero();
- case kWasmS1x8:
- return builder_->S1x8Zero();
- case kWasmS1x16:
- return builder_->S1x16Zero();
default:
UNREACHABLE();
}
« no previous file with comments | « src/machine-type.cc ('k') | src/wasm/function-body-decoder-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698