| 1041 | } |
| 1042 | |
| 1043 | Result BinaryReaderInterp::OnAtomicLoadExpr(Opcode opcode, |
| 1044 | Index memidx, |
| 1045 | Address align_log2, |
| 1046 | Address offset) { |
| 1047 | CHECK_RESULT(validator_.OnAtomicLoad(GetLocation(), opcode, |
| 1048 | Var(memidx, GetLocation()), |
| 1049 | GetAlignment(align_log2), offset)); |
| 1050 | istream_.Emit(opcode, memidx, offset); |
| 1051 | return Result::Ok; |
| 1052 | } |
| 1053 | |
| 1054 | Result BinaryReaderInterp::OnAtomicStoreExpr(Opcode opcode, |
| 1055 | Index memidx, |
nothing calls this directly
no test coverage detected