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

Method visit_f64_abs

winch/codegen/src/visitor.rs:769–774  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

767 }
768
769 fn visit_f64_abs(&mut self) -> Self::Output {
770 self.context.unop(self.masm, |masm, reg| {
771 masm.float_abs(writable!(reg), OperandSize::S64)?;
772 Ok(TypedReg::f64(reg))
773 })
774 }
775
776 fn visit_f32_neg(&mut self) -> Self::Output {
777 self.context.unop(self.masm, |masm, reg| {

Callers

nothing calls this directly

Calls 3

OkFunction · 0.85
unopMethod · 0.80
float_absMethod · 0.45

Tested by

no test coverage detected