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

Method visit_f32_add

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

Source from the content-addressed store, hash-verified

594 }
595
596 fn visit_f32_add(&mut self) -> Self::Output {
597 self.context.binop(
598 self.masm,
599 OperandSize::S32,
600 &mut |masm: &mut M, dst, src, size| {
601 masm.float_add(writable!(dst), dst, src, size)?;
602 masm.maybe_canonicalize_nan(writable!(dst), size)?;
603 Ok(TypedReg::f32(dst))
604 },
605 )
606 }
607
608 fn visit_f64_add(&mut self) -> Self::Output {
609 self.context.binop(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
binopMethod · 0.80
float_addMethod · 0.45

Tested by

no test coverage detected