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

Method fabs64

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

Source from the content-addressed store, hash-verified

3794 }
3795
3796 fn fabs64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3797 let a = self.state[src].get_f64();
3798 self.state[dst].set_f64(a.wasm_abs());
3799 ControlFlow::Continue(())
3800 }
3801
3802 #[interp_disable_if_cfg(pulley_disable_interp_simd)]
3803 fn vaddi8x16(&mut self, operands: BinaryOperands<VReg>) -> ControlFlow<Done> {

Callers

nothing calls this directly

Calls 3

set_f64Method · 0.80
wasm_absMethod · 0.80
get_f64Method · 0.45

Tested by

no test coverage detected