| 989 | } |
| 990 | |
| 991 | Result BinaryReaderInterp::OnSimdLoadLaneExpr(Opcode opcode, |
| 992 | Index memidx, |
| 993 | Address alignment_log2, |
| 994 | Address offset, |
| 995 | uint64_t value) { |
| 996 | CHECK_RESULT(validator_.OnSimdLoadLane( |
| 997 | GetLocation(), opcode, Var(memidx, GetLocation()), |
| 998 | GetAlignment(alignment_log2), offset, value)); |
| 999 | istream_.Emit(opcode, memidx, offset, static_cast<u8>(value)); |
| 1000 | return Result::Ok; |
| 1001 | } |
| 1002 | |
| 1003 | Result BinaryReaderInterp::OnSimdStoreLaneExpr(Opcode opcode, |
| 1004 | Index memidx, |
nothing calls this directly
no test coverage detected