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

Method fsqrt32

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

Source from the content-addressed store, hash-verified

3668 }
3669
3670 fn fsqrt32(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3671 let a = self.state[src].get_f32();
3672 self.state[dst].set_f32(a.wasm_sqrt());
3673 ControlFlow::Continue(())
3674 }
3675
3676 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
3677 fn vsqrt32x4(&mut self, dst: VReg, src: VReg) -> ControlFlow<Done> {

Callers

nothing calls this directly

Calls 3

set_f32Method · 0.80
wasm_sqrtMethod · 0.80
get_f32Method · 0.45

Tested by

no test coverage detected