(&mut self, dst: XReg, imm: i64)
| 1694 | } |
| 1695 | |
| 1696 | fn xconst64(&mut self, dst: XReg, imm: i64) -> ControlFlow<Done> { |
| 1697 | self.state[dst].set_i64(imm); |
| 1698 | ControlFlow::Continue(()) |
| 1699 | } |
| 1700 | |
| 1701 | fn xadd32(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 1702 | let a = self.state[operands.src1].get_u32(); |