| 1545 | } |
| 1546 | |
| 1547 | Result BinaryReaderInterp::OnAtomicNotifyExpr(Opcode opcode, |
| 1548 | Index memidx, |
| 1549 | Address align_log2, |
| 1550 | Address offset) { |
| 1551 | CHECK_RESULT(validator_.OnAtomicNotify(GetLocation(), opcode, |
| 1552 | Var(memidx, GetLocation()), |
| 1553 | GetAlignment(align_log2), offset)); |
| 1554 | istream_.Emit(opcode, memidx, offset); |
| 1555 | return Result::Ok; |
| 1556 | } |
| 1557 | |
| 1558 | Result BinaryReaderInterp::OnMemoryCopyExpr(Index destmemidx, Index srcmemidx) { |
| 1559 | CHECK_RESULT(validator_.OnMemoryCopy(GetLocation(), |
nothing calls this directly
no test coverage detected