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

Method xmin64_u

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

Source from the content-addressed store, hash-verified

2405 }
2406
2407 fn xmin64_u(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
2408 let a = self.state[operands.src1].get_u64();
2409 let b = self.state[operands.src2].get_u64();
2410 self.state[operands.dst].set_u64(a.min(b));
2411 ControlFlow::Continue(())
2412 }
2413
2414 fn xmin64_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
2415 let a = self.state[operands.src1].get_i64();

Callers

nothing calls this directly

Calls 3

get_u64Method · 0.45
set_u64Method · 0.45
minMethod · 0.45

Tested by

no test coverage detected