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

Method visit_f64_div

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

Source from the content-addressed store, hash-verified

678 }
679
680 fn visit_f64_div(&mut self) -> Self::Output {
681 self.context.binop(
682 self.masm,
683 OperandSize::S64,
684 &mut |masm: &mut M, dst, src, size| {
685 masm.float_div(writable!(dst), dst, src, size)?;
686 masm.maybe_canonicalize_nan(writable!(dst), size)?;
687 Ok(TypedReg::f64(dst))
688 },
689 )
690 }
691
692 fn visit_f32_min(&mut self) -> Self::Output {
693 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_divMethod · 0.45

Tested by

no test coverage detected