| 1052 | } |
| 1053 | |
| 1054 | Result BinaryReaderInterp::OnAtomicStoreExpr(Opcode opcode, |
| 1055 | Index memidx, |
| 1056 | Address align_log2, |
| 1057 | Address offset) { |
| 1058 | CHECK_RESULT(validator_.OnAtomicStore(GetLocation(), opcode, |
| 1059 | Var(memidx, GetLocation()), |
| 1060 | GetAlignment(align_log2), offset)); |
| 1061 | istream_.Emit(opcode, memidx, offset); |
| 1062 | return Result::Ok; |
| 1063 | } |
| 1064 | |
| 1065 | Result BinaryReaderInterp::OnAtomicRmwExpr(Opcode opcode, |
| 1066 | Index memidx, |
nothing calls this directly
no test coverage detected