MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / proxyMemFill

Method proxyMemFill

lib/executor/engine/proxy.cpp:572–579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

570}
571
572Expect<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
581Expect<uint64_t> Executor::proxyMemAtomicNotify(Runtime::StackManager &StackMgr,
582 const uint32_t MemIdx,

Callers

nothing calls this directly

Calls 1

fillBytesMethod · 0.80

Tested by

no test coverage detected