(&mut self, dst: XReg, src: VReg, lane: u8)
| 4715 | |
| 4716 | #[interp_disable_if_cfg(pulley_disable_interp_simd)] |
| 4717 | fn xextractv32x4(&mut self, dst: XReg, src: VReg, lane: u8) -> ControlFlow<Done> { |
| 4718 | let a = unsafe { *self.state[src].get_u32x4().get_unchecked(usize::from(lane)) }; |
| 4719 | self.state[dst].set_u32(a); |
| 4720 | ControlFlow::Continue(()) |
| 4721 | } |
| 4722 | |
| 4723 | #[interp_disable_if_cfg(pulley_disable_interp_simd)] |
| 4724 | fn xextractv64x2(&mut self, dst: XReg, src: VReg, lane: u8) -> ControlFlow<Done> { |