From 368f8a743c8322c3a01633f0cfa8ce205d58fb49 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Mon, 4 Nov 2019 15:44:19 -0800 Subject: Add i32x4.dot_i16x8_s (#2420) This experimental instruction is specified in https://github.com/WebAssembly/simd/pull/127 and is being implemented to enable further investigation of its performance impact. --- src/wasm-interpreter.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wasm-interpreter.h') diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index f8cf3ae42..dc2696716 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -801,6 +801,8 @@ public: return left.maxSI32x4(right); case MaxUVecI32x4: return left.maxUI32x4(right); + case DotSVecI16x8ToVecI32x4: + return left.dotSI16x8toI32x4(right); case AddVecI64x2: return left.addI64x2(right); case SubVecI64x2: -- cgit v1.2.3