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

Method ffloor64

pulley/src/interp.rs:3766–3770  ·  view source on GitHub ↗
(&mut self, dst: FReg, src: FReg)

Source from the content-addressed store, hash-verified

3764 }
3765
3766 fn ffloor64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3767 let a = self.state[src].get_f64();
3768 self.state[dst].set_f64(a.wasm_floor());
3769 ControlFlow::Continue(())
3770 }
3771
3772 fn fceil64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3773 let a = self.state[src].get_f64();

Callers

nothing calls this directly

Calls 3

set_f64Method · 0.80
wasm_floorMethod · 0.80
get_f64Method · 0.45

Tested by

no test coverage detected