(&mut self, dst: XReg, src: XReg)
| 1907 | } |
| 1908 | |
| 1909 | fn xneg64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 1910 | let a = self.state[src].get_i64(); |
| 1911 | self.state[dst].set_i64(a.wrapping_neg()); |
| 1912 | ControlFlow::Continue(()) |
| 1913 | } |
| 1914 | |
| 1915 | fn xeq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 1916 | let a = self.state[operands.src1].get_u64(); |
nothing calls this directly
no test coverage detected