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

Method visit_f64_mul

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

Source from the content-addressed store, hash-verified

654 }
655
656 fn visit_f64_mul(&mut self) -> Self::Output {
657 self.context.binop(
658 self.masm,
659 OperandSize::S64,
660 &mut |masm: &mut M, dst, src, size| {
661 masm.float_mul(writable!(dst), dst, src, size)?;
662 masm.maybe_canonicalize_nan(writable!(dst), size)?;
663 Ok(TypedReg::f64(dst))
664 },
665 )
666 }
667
668 fn visit_f32_div(&mut self) -> Self::Output {
669 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