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

Method visit_f32_sub

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

Source from the content-addressed store, hash-verified

618 }
619
620 fn visit_f32_sub(&mut self) -> Self::Output {
621 self.context.binop(
622 self.masm,
623 OperandSize::S32,
624 &mut |masm: &mut M, dst, src, size| {
625 masm.float_sub(writable!(dst), dst, src, size)?;
626 masm.maybe_canonicalize_nan(writable!(dst), size)?;
627 Ok(TypedReg::f32(dst))
628 },
629 )
630 }
631
632 fn visit_f64_sub(&mut self) -> Self::Output {
633 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_subMethod · 0.45

Tested by

no test coverage detected