(&mut self, dst: XReg, src1: XReg, src2: i32)
| 2308 | } |
| 2309 | |
| 2310 | fn xbor32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 2311 | let a = self.state[src1].get_i32(); |
| 2312 | self.state[dst].set_i32(a | src2); |
| 2313 | ControlFlow::Continue(()) |
| 2314 | } |
| 2315 | |
| 2316 | fn xbor64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2317 | let a = self.state[operands.src1].get_u64(); |