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

Unified Diff: src/wasm/function-body-decoder-impl.h

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/wasm/function-body-decoder.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/function-body-decoder-impl.h
diff --git a/src/wasm/function-body-decoder-impl.h b/src/wasm/function-body-decoder-impl.h
index f723ee0c3f310de7eae1200c115172e4b36e2375..6759ed6f2a6ee05e1d4907f5309676a86cc0eb87 100644
--- a/src/wasm/function-body-decoder-impl.h
+++ b/src/wasm/function-body-decoder-impl.h
@@ -144,6 +144,15 @@ struct BlockTypeOperand {
case kLocalS128:
*result = kWasmS128;
return true;
+ case kLocalS1x4:
+ *result = kWasmS1x4;
+ return true;
+ case kLocalS1x8:
+ *result = kWasmS1x8;
+ return true;
+ case kLocalS1x16:
+ *result = kWasmS1x16;
+ return true;
default:
*result = kWasmStmt;
return false;
« no previous file with comments | « src/wasm/function-body-decoder.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698