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

Method visit_f32_mul

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

Source from the content-addressed store, hash-verified

642 }
643
644 fn visit_f32_mul(&mut self) -> Self::Output {
645 self.context.binop(
646 self.masm,
647 OperandSize::S32,
648 &mut |masm: &mut M, dst, src, size| {
649 masm.float_mul(writable!(dst), dst, src, size)?;
650 masm.maybe_canonicalize_nan(writable!(dst), size)?;
651 Ok(TypedReg::f32(dst))
652 },
653 )
654 }
655
656 fn visit_f64_mul(&mut self) -> Self::Output {
657 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_mulMethod · 0.45

Tested by

no test coverage detected