(&mut self, dst: XReg, src: XReg)
| 2439 | } |
| 2440 | |
| 2441 | fn xctz64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2442 | let a = self.state[src].get_u64(); |
| 2443 | self.state[dst].set_u64(a.trailing_zeros().into()); |
| 2444 | ControlFlow::Continue(()) |
| 2445 | } |
| 2446 | |
| 2447 | fn xclz32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2448 | let a = self.state[src].get_u32(); |
nothing calls this directly
no test coverage detected