diff options
author | Ng Zhi An <ngzhian@gmail.com> | 2021-03-22 15:22:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 15:22:02 -0700 |
commit | 2c7d2572414aad39341734d1513a6cd94759a320 (patch) | |
tree | 4b71cafd0fbee7c1a4920a96b8d4e11138f7264a /src/interp/binary-reader-interp.cc | |
parent | c7293e42c587cab2b15eaf2934f574f84eeab9e5 (diff) | |
download | wabt-2c7d2572414aad39341734d1513a6cd94759a320.tar.gz wabt-2c7d2572414aad39341734d1513a6cd94759a320.tar.bz2 wabt-2c7d2572414aad39341734d1513a6cd94759a320.zip |
[simd] Implement load lane (#1646)
This is a new kind of ir/ast node/instruction. It has 3 immediates:
memarg align, memarg offset, and lane index. This required new visitor
functions in all the places.
Drive-by cleanup to share the simd lane parsing logic between shuffle,
lane op and this new load lane instructions. This requires rebasing some
tests because the error messages are slightly different now.
Diffstat (limited to 'src/interp/binary-reader-interp.cc')
-rw-r--r-- | src/interp/binary-reader-interp.cc | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/src/interp/binary-reader-interp.cc b/src/interp/binary-reader-interp.cc index 0da318ae..cbec83cc 100644 --- a/src/interp/binary-reader-interp.cc +++ b/src/interp/binary-reader-interp.cc @@ -212,6 +212,10 @@ class BinaryReaderInterp : public BinaryReaderNop { Result OnUnreachableExpr() override; Result EndFunctionBody(Index index) override; Result OnSimdLaneOpExpr(Opcode opcode, uint64_t value) override; + Result OnSimdLoadLaneExpr(Opcode opcode, + Address alignment_log2, + Address offset, + uint64_t value) override; Result OnSimdShuffleOpExpr(Opcode opcode, v128 value) override; Result OnLoadSplatExpr(Opcode opcode, Address alignment_log2, @@ -891,16 +895,25 @@ Result BinaryReaderInterp::OnSimdLaneOpExpr(Opcode opcode, uint64_t value) { return Result::Ok; } +uint32_t GetAlignment(Address alignment_log2) { + return alignment_log2 < 32 ? 1 << alignment_log2 : ~0u; +} + +Result BinaryReaderInterp::OnSimdLoadLaneExpr(Opcode opcode, + Address alignment_log2, + Address offset, + uint64_t value) { + CHECK_RESULT(validator_.OnSimdLoadLane(loc, opcode, GetAlignment(alignment_log2), value)); + istream_.Emit(opcode, kMemoryIndex0, offset, static_cast<u8>(value)); + return Result::Ok; +} + Result BinaryReaderInterp::OnSimdShuffleOpExpr(Opcode opcode, v128 value) { CHECK_RESULT(validator_.OnSimdShuffleOp(loc, opcode, value)); istream_.Emit(opcode, value); return Result::Ok; } -uint32_t GetAlignment(Address alignment_log2) { - return alignment_log2 < 32 ? 1 << alignment_log2 : ~0u; -} - Result BinaryReaderInterp::OnLoadSplatExpr(Opcode opcode, Address align_log2, Address offset) { |