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

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

Issue 2701003003: [V8] Implement remaining SIMD operations on ARM. (Closed)
Patch Set: 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 114926d36b1a9aefe177d36d94275c7b4f420113..3be197be9d062ced2918daa7bd1ab5441ccaa101 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