MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / visit_memory_copy

Method visit_memory_copy

winch/codegen/src/visitor.rs:1761–1766  ·  view source on GitHub ↗
(&mut self, dst_mem: u32, src_mem: u32)

Source from the content-addressed store, hash-verified

1759 }
1760
1761 fn visit_memory_copy(&mut self, dst_mem: u32, src_mem: u32) -> Self::Output {
1762 self.emit_memory_copy(
1763 MemoryIndex::from_u32(dst_mem),
1764 MemoryIndex::from_u32(src_mem),
1765 )
1766 }
1767
1768 fn visit_memory_fill(&mut self, mem: u32) -> Self::Output {
1769 self.emit_memory_fill(MemoryIndex::from_u32(mem))

Callers

nothing calls this directly

Calls 1

emit_memory_copyMethod · 0.80

Tested by

no test coverage detected