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

Method float_min

winch/codegen/src/isa/x64/masm.rs:595–599  ·  view source on GitHub ↗
(&mut self, dst: WritableReg, lhs: Reg, rhs: Reg, size: OperandSize)

Source from the content-addressed store, hash-verified

593 }
594
595 fn float_min(&mut self, dst: WritableReg, lhs: Reg, rhs: Reg, size: OperandSize) -> Result<()> {
596 Self::ensure_two_argument_form(&dst.to_reg(), &lhs)?;
597 self.asm.xmm_min_seq(rhs, dst, size);
598 Ok(())
599 }
600
601 fn float_max(&mut self, dst: WritableReg, lhs: Reg, rhs: Reg, size: OperandSize) -> Result<()> {
602 Self::ensure_two_argument_form(&dst.to_reg(), &lhs)?;

Callers 2

visit_f32_minMethod · 0.45
visit_f64_minMethod · 0.45

Calls 3

OkFunction · 0.85
to_regMethod · 0.80
xmm_min_seqMethod · 0.80

Tested by

no test coverage detected