summaryrefslogtreecommitdiff
path: root/src/binary-reader.cc
diff options
context:
space:
mode:
authorNg Zhi An <ngzhian@gmail.com>2021-03-12 11:07:43 -0800
committerGitHub <noreply@github.com>2021-03-12 11:07:43 -0800
commit5f2a1c830563b15d6405e8c44f8c52c41024fa00 (patch)
treed1a8481c4bf7ace740c3911c35daa2c4d70eadd6 /src/binary-reader.cc
parent6738ebd57307a84e90b2782a694018315a86993a (diff)
downloadwabt-5f2a1c830563b15d6405e8c44f8c52c41024fa00.tar.gz
wabt-5f2a1c830563b15d6405e8c44f8c52c41024fa00.tar.bz2
wabt-5f2a1c830563b15d6405e8c44f8c52c41024fa00.zip
[simd] Implement extadd instructions (#1637)
Rebase and unskip simd_i16x8_extadd_pairwise_i8x16.txt and simd_i32x4_extadd_pairwise_i16x8.
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r--src/binary-reader.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc
index febd4d71..110c1268 100644
--- a/src/binary-reader.cc
+++ b/src/binary-reader.cc
@@ -1239,6 +1239,10 @@ Result BinaryReader::ReadFunctionBody(Offset end_offset) {
case Opcode::I32X4Abs:
case Opcode::I64X2Abs:
case Opcode::I8X16Popcnt:
+ case Opcode::I16X8ExtaddPairwiseI8X16S:
+ case Opcode::I16X8ExtaddPairwiseI8X16U:
+ case Opcode::I32X4ExtaddPairwiseI16X8S:
+ case Opcode::I32X4ExtaddPairwiseI16X8U:
CALLBACK(OnUnaryExpr, opcode);
CALLBACK0(OnOpcodeBare);
break;