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

Method fstore64be_o32

pulley/src/interp.rs:3020–3026  ·  view source on GitHub ↗
(&mut self, addr: AddrO32, src: FReg)

Source from the content-addressed store, hash-verified

3018 }
3019
3020 fn fstore64be_o32(&mut self, addr: AddrO32, src: FReg) -> ControlFlow<Done> {
3021 let val = self.state[src].get_f64();
3022 unsafe {
3023 self.store_ne::<u64, crate::Fstore64BeO32>(addr, val.to_bits().to_be())?;
3024 }
3025 ControlFlow::Continue(())
3026 }
3027
3028 // =========================================================================
3029 // z addressing modes for little-endian F-registers

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