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

Method visit_f64_sqrt

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

Source from the content-addressed store, hash-verified

940 }
941
942 fn visit_f64_sqrt(&mut self) -> Self::Output {
943 self.context.unop(self.masm, |masm, reg| {
944 masm.float_sqrt(writable!(reg), reg, OperandSize::S64)?;
945 masm.maybe_canonicalize_nan(writable!(reg), OperandSize::S64)?;
946 Ok(TypedReg::f64(reg))
947 })
948 }
949
950 fn visit_f32_eq(&mut self) -> Self::Output {
951 self.context.float_cmp_op(

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
unopMethod · 0.80
float_sqrtMethod · 0.45

Tested by

no test coverage detected