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

Method xmin32_u

pulley/src/interp.rs:2379–2384  ·  view source on GitHub ↗
(&mut self, operands: BinaryOperands<XReg>)

Source from the content-addressed store, hash-verified

2377 }
2378
2379 fn xmin32_u(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
2380 let a = self.state[operands.src1].get_u32();
2381 let b = self.state[operands.src2].get_u32();
2382 self.state[operands.dst].set_u32(a.min(b));
2383 ControlFlow::Continue(())
2384 }
2385
2386 fn xmin32_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
2387 let a = self.state[operands.src1].get_i32();

Callers

nothing calls this directly

Calls 3

get_u32Method · 0.45
set_u32Method · 0.45
minMethod · 0.45

Tested by

no test coverage detected