| 1019 | } |
| 1020 | |
| 1021 | Result BinaryReaderInterp::OnLoadSplatExpr(Opcode opcode, |
| 1022 | Index memidx, |
| 1023 | Address align_log2, |
| 1024 | Address offset) { |
| 1025 | CHECK_RESULT(validator_.OnLoadSplat(GetLocation(), opcode, |
| 1026 | Var(memidx, GetLocation()), |
| 1027 | GetAlignment(align_log2), offset)); |
| 1028 | istream_.Emit(opcode, memidx, offset); |
| 1029 | return Result::Ok; |
| 1030 | } |
| 1031 | |
| 1032 | Result BinaryReaderInterp::OnLoadZeroExpr(Opcode opcode, |
| 1033 | Index memidx, |
nothing calls this directly
no test coverage detected