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

Unified Diff: src/wasm/function-body-decoder.cc

Issue 2700813002: [V8] Implement SIMD Boolean vector types to allow mask registers. (Closed)
Patch Set: Remove stray DCHECK. Created 3 years, 10 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
Index: src/wasm/function-body-decoder.cc
diff --git a/src/wasm/function-body-decoder.cc b/src/wasm/function-body-decoder.cc
index 114926d36b1a9aefe177d36d94275c7b4f420113..e7c9032efb3cd9d7f7a78f8413053ede1412dab8 100644
--- a/src/wasm/function-body-decoder.cc
+++ b/src/wasm/function-body-decoder.cc
@@ -215,6 +215,15 @@ class WasmDecoder : public Decoder {
case kLocalS128:
type = kWasmS128;
break;
+ case kLocalS4:
+ type = kWasmS4;
+ break;
+ case kLocalS8:
+ type = kWasmS8;
+ break;
+ case kLocalS16:
+ type = kWasmS16;
+ break;
default:
decoder->error(decoder->pc() - 1, "invalid local type");
return false;

Powered by Google App Engine
This is Rietveld 408576698