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

Method visit_f64_sub

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

Source from the content-addressed store, hash-verified

630 }
631
632 fn visit_f64_sub(&mut self) -> Self::Output {
633 self.context.binop(
634 self.masm,
635 OperandSize::S64,
636 &mut |masm: &mut M, dst, src, size| {
637 masm.float_sub(writable!(dst), dst, src, size)?;
638 masm.maybe_canonicalize_nan(writable!(dst), size)?;
639 Ok(TypedReg::f64(dst))
640 },
641 )
642 }
643
644 fn visit_f32_mul(&mut self) -> Self::Output {
645 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