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

Method visit_f64_min

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

Source from the content-addressed store, hash-verified

702 }
703
704 fn visit_f64_min(&mut self) -> Self::Output {
705 self.context.binop(
706 self.masm,
707 OperandSize::S64,
708 &mut |masm: &mut M, dst, src, size| {
709 masm.float_min(writable!(dst), dst, src, size)?;
710 masm.maybe_canonicalize_nan(writable!(dst), size)?;
711 Ok(TypedReg::f64(dst))
712 },
713 )
714 }
715
716 fn visit_f32_max(&mut self) -> Self::Output {
717 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_minMethod · 0.45

Tested by

no test coverage detected