(&mut self, operands: BinaryOperands<XReg>)
| 2419 | } |
| 2420 | |
| 2421 | fn xmax64_u(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2422 | let a = self.state[operands.src1].get_u64(); |
| 2423 | let b = self.state[operands.src2].get_u64(); |
| 2424 | self.state[operands.dst].set_u64(a.max(b)); |
| 2425 | ControlFlow::Continue(()) |
| 2426 | } |
| 2427 | |
| 2428 | fn xmax64_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2429 | let a = self.state[operands.src1].get_i64(); |