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

Method visit_f64_max

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

Source from the content-addressed store, hash-verified

726 }
727
728 fn visit_f64_max(&mut self) -> Self::Output {
729 self.context.binop(
730 self.masm,
731 OperandSize::S64,
732 &mut |masm: &mut M, dst, src, size| {
733 masm.float_max(writable!(dst), dst, src, size)?;
734 masm.maybe_canonicalize_nan(writable!(dst), size)?;
735 Ok(TypedReg::f64(dst))
736 },
737 )
738 }
739
740 fn visit_f32_copysign(&mut self) -> Self::Output {
741 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