(&mut self, operands: BinaryOperands<XReg>)
| 2384 | } |
| 2385 | |
| 2386 | fn xmin32_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2387 | let a = self.state[operands.src1].get_i32(); |
| 2388 | let b = self.state[operands.src2].get_i32(); |
| 2389 | self.state[operands.dst].set_i32(a.min(b)); |
| 2390 | ControlFlow::Continue(()) |
| 2391 | } |
| 2392 | |
| 2393 | fn xmax32_u(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2394 | let a = self.state[operands.src1].get_u32(); |