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

Method fstore64be_z

pulley/src/interp.rs:5702–5708  ·  view source on GitHub ↗
(&mut self, addr: AddrZ, src: FReg)

Source from the content-addressed store, hash-verified

5700 }
5701
5702 fn fstore64be_z(&mut self, addr: AddrZ, src: FReg) -> ControlFlow<Done> {
5703 let val = self.state[src].get_f64();
5704 unsafe {
5705 self.store_ne::<u64, crate::Fstore64BeZ>(addr, val.to_bits().to_be())?;
5706 }
5707 ControlFlow::Continue(())
5708 }
5709
5710 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
5711 fn vload128be_z(&mut self, dst: VReg, addr: AddrZ) -> ControlFlow<Done> {

Callers

nothing calls this directly

Calls 3

to_beMethod · 0.80
get_f64Method · 0.45
to_bitsMethod · 0.45

Tested by

no test coverage detected