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

Method visit_f32_min

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

Source from the content-addressed store, hash-verified

690 }
691
692 fn visit_f32_min(&mut self) -> Self::Output {
693 self.context.binop(
694 self.masm,
695 OperandSize::S32,
696 &mut |masm: &mut M, dst, src, size| {
697 masm.float_min(writable!(dst), dst, src, size)?;
698 masm.maybe_canonicalize_nan(writable!(dst), size)?;
699 Ok(TypedReg::f32(dst))
700 },
701 )
702 }
703
704 fn visit_f64_min(&mut self) -> Self::Output {
705 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