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

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

Issue 2700813002: [V8] Implement SIMD Boolean vector types to allow mask registers. (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « src/s390/assembler-s390.h ('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 3311caa3e233574499818fea8c6609815af3b937..dc2f83b459d2cfc0966312661d5210a89a6f02cb 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 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;
« no previous file with comments | « src/s390/assembler-s390.h ('k') | src/wasm/function-body-decoder-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698