(&mut self, operands: BinaryOperands<XReg>)
| 2426 | } |
| 2427 | |
| 2428 | fn xmax64_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2429 | let a = self.state[operands.src1].get_i64(); |
| 2430 | let b = self.state[operands.src2].get_i64(); |
| 2431 | self.state[operands.dst].set_i64(a.max(b)); |
| 2432 | ControlFlow::Continue(()) |
| 2433 | } |
| 2434 | |
| 2435 | fn xctz32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2436 | let a = self.state[src].get_u32(); |