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

Method fabs32

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

Source from the content-addressed store, hash-verified

3710 }
3711
3712 fn fabs32(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> {
3713 let a = self.state[src].get_f32();
3714 self.state[dst].set_f32(a.wasm_abs());
3715 ControlFlow::Continue(())
3716 }
3717
3718 fn fadd64(&mut self, operands: BinaryOperands<FReg>) -> ControlFlow<Done> {
3719 let a = self.state[operands.src1].get_f64();

Callers

nothing calls this directly

Calls 3

set_f32Method · 0.80
wasm_absMethod · 0.80
get_f32Method · 0.45

Tested by

no test coverage detected