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

Method visit_f32_max

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

Source from the content-addressed store, hash-verified

714 }
715
716 fn visit_f32_max(&mut self) -> Self::Output {
717 self.context.binop(
718 self.masm,
719 OperandSize::S32,
720 &mut |masm: &mut M, dst, src, size| {
721 masm.float_max(writable!(dst), dst, src, size)?;
722 masm.maybe_canonicalize_nan(writable!(dst), size)?;
723 Ok(TypedReg::f32(dst))
724 },
725 )
726 }
727
728 fn visit_f64_max(&mut self) -> Self::Output {
729 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_maxMethod · 0.45

Tested by

no test coverage detected