| 570 | } |
| 571 | |
| 572 | Expect<void> Executor::proxyMemFill(Runtime::StackManager &StackMgr, |
| 573 | const uint32_t MemIdx, const uint64_t Off, |
| 574 | const uint8_t Val, |
| 575 | const uint64_t Len) noexcept { |
| 576 | auto *MemInst = getMemInstByIdx(StackMgr, MemIdx); |
| 577 | assuming(MemInst); |
| 578 | return MemInst->fillBytes(Val, Off, Len); |
| 579 | } |
| 580 | |
| 581 | Expect<uint64_t> Executor::proxyMemAtomicNotify(Runtime::StackManager &StackMgr, |
| 582 | const uint32_t MemIdx, |