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

Method fconst64

pulley/src/interp.rs:3177–3180  ·  view source on GitHub ↗
(&mut self, dst: FReg, bits: u64)

Source from the content-addressed store, hash-verified

3175 }
3176
3177 fn fconst64(&mut self, dst: FReg, bits: u64) -> ControlFlow<Done> {
3178 self.state[dst].set_f64(f64::from_bits(bits));
3179 ControlFlow::Continue(())
3180 }
3181
3182 fn bitcast_int_from_float_32(&mut self, dst: XReg, src: FReg) -> ControlFlow<Done> {
3183 let val = self.state[src].get_f32();

Callers

nothing calls this directly

Calls 1

set_f64Method · 0.80

Tested by

no test coverage detected