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

Method xstore32be_z

pulley/src/interp.rs:5666–5672  ·  view source on GitHub ↗
(&mut self, addr: AddrZ, val: XReg)

Source from the content-addressed store, hash-verified

5664 }
5665
5666 fn xstore32be_z(&mut self, addr: AddrZ, val: XReg) -> ControlFlow<Done> {
5667 let val = self.state[val].get_u32();
5668 unsafe {
5669 self.store_ne::<u32, crate::XStore32BeZ>(addr, val.to_be())?;
5670 }
5671 ControlFlow::Continue(())
5672 }
5673
5674 fn xstore64be_z(&mut self, addr: AddrZ, val: XReg) -> ControlFlow<Done> {
5675 let val = self.state[val].get_u64();

Callers

nothing calls this directly

Calls 2

to_beMethod · 0.80
get_u32Method · 0.45

Tested by

no test coverage detected