pub struct andnl_rvm<R>where
R: Registers,{
pub r32a: Gpr<R::WriteGpr>,
pub r32b: Gpr<R::ReadGpr>,
pub rm32: GprMem<R::ReadGpr, R::ReadGpr>,
}Expand description
andnl: RVM(r32a[w], r32b, rm32) => VEX.LZ.0F38.W0 0xF2 [_64b | compat | bmi1] // /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>§r32b: Gpr<R::ReadGpr>§rm32: GprMem<R::ReadGpr, R::ReadGpr>Implementations§
Source§impl<R: Registers> andnl_rvm<R>
impl<R: Registers> andnl_rvm<R>
pub fn new( r32a: impl Into<Gpr<R::WriteGpr>>, r32b: impl Into<Gpr<R::ReadGpr>>, rm32: impl Into<GprMem<R::ReadGpr, 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 andnl_rvm<R>
Auto Trait Implementations§
impl<R> Freeze for andnl_rvm<R>
impl<R> RefUnwindSafe for andnl_rvm<R>
impl<R> Send for andnl_rvm<R>
impl<R> Sync for andnl_rvm<R>
impl<R> Unpin for andnl_rvm<R>
impl<R> UnwindSafe for andnl_rvm<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