| 1416 | } |
| 1417 | |
| 1418 | Result BinaryReaderInterp::OnLoadExpr(Opcode opcode, |
| 1419 | Index memidx, |
| 1420 | Address align_log2, |
| 1421 | Address offset) { |
| 1422 | CHECK_RESULT(validator_.OnLoad(GetLocation(), opcode, |
| 1423 | Var(memidx, GetLocation()), |
| 1424 | GetAlignment(align_log2), offset)); |
| 1425 | istream_.Emit(opcode, memidx, offset); |
| 1426 | return Result::Ok; |
| 1427 | } |
| 1428 | |
| 1429 | Result BinaryReaderInterp::OnStoreExpr(Opcode opcode, |
| 1430 | Index memidx, |
nothing calls this directly
no test coverage detected