pub struct shrxl_rmv<R>where
R: Registers,{
pub r32a: Gpr<R::WriteGpr>,
pub rm32: GprMem<R::ReadGpr, R::ReadGpr>,
pub r32b: Gpr<R::ReadGpr>,
}Expand description
shrxl: RMV(r32a[w], rm32, r32b) => VEX.LZ.F2.0F38.W0 0xF7 [_64b | compat | bmi2] // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§r32a: Gpr<R::WriteGpr>§rm32: GprMem<R::ReadGpr, R::ReadGpr>§r32b: Gpr<R::ReadGpr>Implementations§
Source§impl<R: Registers> shrxl_rmv<R>
impl<R: Registers> shrxl_rmv<R>
pub fn new( r32a: impl Into<Gpr<R::WriteGpr>>, rm32: impl Into<GprMem<R::ReadGpr, R::ReadGpr>>, r32b: impl Into<Gpr<R::ReadGpr>>, ) -> 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 shrxl_rmv<R>
Auto Trait Implementations§
impl<R> Freeze for shrxl_rmv<R>
impl<R> RefUnwindSafe for shrxl_rmv<R>
impl<R> Send for shrxl_rmv<R>
impl<R> Sync for shrxl_rmv<R>
impl<R> Unpin for shrxl_rmv<R>
impl<R> UnwindSafe for shrxl_rmv<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