pub struct mulxq_rvm<R>where
R: Registers,{
pub r64a: Gpr<R::WriteGpr>,
pub r64b: Gpr<R::WriteGpr>,
pub rm64: GprMem<R::ReadGpr, R::ReadGpr>,
pub rdx: Fixed<R::ReadGpr, { gpr::enc::RDX }>,
}Expand description
mulxq: RVM(r64a[w], r64b[w], rm64, rdx[implicit]) => VEX.LZ.F2.0F38.W1 0xF6 [_64b | bmi2] custom(Visit) // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§r64a: Gpr<R::WriteGpr>§r64b: Gpr<R::WriteGpr>§rm64: GprMem<R::ReadGpr, R::ReadGpr>§rdx: Fixed<R::ReadGpr, { gpr::enc::RDX }>Implementations§
Source§impl<R: Registers> mulxq_rvm<R>
impl<R: Registers> mulxq_rvm<R>
pub fn new( r64a: impl Into<Gpr<R::WriteGpr>>, r64b: impl Into<Gpr<R::WriteGpr>>, rm64: impl Into<GprMem<R::ReadGpr, R::ReadGpr>>, rdx: impl Into<Fixed<R::ReadGpr, { gpr::enc::RDX }>>, ) -> 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 mulxq_rvm<R>
Auto Trait Implementations§
impl<R> Freeze for mulxq_rvm<R>
impl<R> RefUnwindSafe for mulxq_rvm<R>
impl<R> Send for mulxq_rvm<R>
impl<R> Sync for mulxq_rvm<R>
impl<R> Unpin for mulxq_rvm<R>
impl<R> UnwindSafe for mulxq_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