(&mut self, operands: BinaryOperands<XReg>)
| 1913 | } |
| 1914 | |
| 1915 | fn xeq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 1916 | let a = self.state[operands.src1].get_u64(); |
| 1917 | let b = self.state[operands.src2].get_u64(); |
| 1918 | self.state[operands.dst].set_u32(u32::from(a == b)); |
| 1919 | ControlFlow::Continue(()) |
| 1920 | } |
| 1921 | |
| 1922 | fn xneq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 1923 | let a = self.state[operands.src1].get_u64(); |