(&mut self, dst: XReg, src: XReg)
| 2451 | } |
| 2452 | |
| 2453 | fn xclz64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2454 | let a = self.state[src].get_u64(); |
| 2455 | self.state[dst].set_u64(a.leading_zeros().into()); |
| 2456 | ControlFlow::Continue(()) |
| 2457 | } |
| 2458 | |
| 2459 | fn xpopcnt32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2460 | let a = self.state[src].get_u32(); |
nothing calls this directly
no test coverage detected