From b7a93cca37d2253ef36e4cc63ef38c3647404597 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Tue, 7 Jun 2022 15:46:38 -0700 Subject: Update relaxed SIMD instructions Update the opcodes for all relaxed SIMD instructions and remove the unsigned dot product instructions that are no longer in the proposal. --- src/wasm/wasm-stack.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/wasm/wasm-stack.cpp') diff --git a/src/wasm/wasm-stack.cpp b/src/wasm/wasm-stack.cpp index 8588a049f..fb24dbb01 100644 --- a/src/wasm/wasm-stack.cpp +++ b/src/wasm/wasm-stack.cpp @@ -570,9 +570,6 @@ void BinaryInstWriter::visitSIMDTernary(SIMDTernary* curr) { case DotI8x16I7x16AddSToVecI32x4: o << U32LEB(BinaryConsts::I32x4DotI8x16I7x16AddS); break; - case DotI8x16I7x16AddUToVecI32x4: - o << U32LEB(BinaryConsts::I32x4DotI8x16I7x16AddU); - break; } } @@ -1853,10 +1850,6 @@ void BinaryInstWriter::visitBinary(Binary* curr) { o << int8_t(BinaryConsts::SIMDPrefix) << U32LEB(BinaryConsts::I16x8DotI8x16I7x16S); break; - case DotI8x16I7x16UToVecI16x8: - o << int8_t(BinaryConsts::SIMDPrefix) - << U32LEB(BinaryConsts::I16x8DotI8x16I7x16U); - break; case InvalidBinary: WASM_UNREACHABLE("invalid binary op"); -- cgit v1.2.3