| 1427 | } |
| 1428 | |
| 1429 | Result BinaryReaderInterp::OnStoreExpr(Opcode opcode, |
| 1430 | Index memidx, |
| 1431 | Address align_log2, |
| 1432 | Address offset) { |
| 1433 | CHECK_RESULT(validator_.OnStore(GetLocation(), opcode, |
| 1434 | Var(memidx, GetLocation()), |
| 1435 | GetAlignment(align_log2), offset)); |
| 1436 | istream_.Emit(opcode, memidx, offset); |
| 1437 | return Result::Ok; |
| 1438 | } |
| 1439 | |
| 1440 | Result BinaryReaderInterp::OnMemoryGrowExpr(Index memidx) { |
| 1441 | CHECK_RESULT( |
nothing calls this directly
no test coverage detected