pub struct pextrw_a<R>where
R: Registers,{
pub r32: Gpr<R::WriteGpr>,
pub xmm2: Xmm<R::ReadXmm>,
pub imm8: Imm8,
}Expand description
pextrw: A(r32[w], xmm2, imm8) => 0x66 + 0x0F + 0xC5 /r ib [_64b | compat | sse2] (alternate: avx => vpextrw_a) // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§r32: Gpr<R::WriteGpr>§xmm2: Xmm<R::ReadXmm>§imm8: Imm8Implementations§
Source§impl<R: Registers> pextrw_a<R>
impl<R: Registers> pextrw_a<R>
pub fn new( r32: impl Into<Gpr<R::WriteGpr>>, xmm2: impl Into<Xmm<R::ReadXmm>>, imm8: impl Into<Imm8>, ) -> Self
pub fn mnemonic(&self) -> Cow<'static, str>
pub fn encode(&self, buf: &mut impl CodeSink)
pub fn visit(&mut self, visitor: &mut impl RegisterVisitor<R>)
pub fn features(&self) -> Vec<Feature>
Trait Implementations§
impl<R> Copy for pextrw_a<R>
Auto Trait Implementations§
impl<R> Freeze for pextrw_a<R>
impl<R> RefUnwindSafe for pextrw_a<R>
impl<R> Send for pextrw_a<R>
impl<R> Sync for pextrw_a<R>
impl<R> Unpin for pextrw_a<R>
impl<R> UnwindSafe for pextrw_a<R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more