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

Method fnearest64

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

Source from the content-addressed store, hash-verified

3776 }
3777
3778 fn fnearest64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3779 let a = self.state[src].get_f64();
3780 self.state[dst].set_f64(a.wasm_nearest());
3781 ControlFlow::Continue(())
3782 }
3783
3784 fn fsqrt64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3785 let a = self.state[src].get_f64();

Callers

nothing calls this directly

Calls 3

set_f64Method · 0.80
wasm_nearestMethod · 0.80
get_f64Method · 0.45

Tested by

no test coverage detected