pub(crate) unsafe fn memory_fill( mem: &VMMemoryDefinition, dst: u32, val: u32, len: u32, ) -> Result<(), Trap>
Perform the memory.fill operation for the memory in an unsynchronized, non-atomic way.
memory.fill
Returns a Trap error if the memory range is out of bounds.
Trap
The memory is not filled atomically and is not synchronized: it’s the caller’s responsibility to synchronize.