pub struct mulxl_rvm<R>where
R: Registers,{
pub r32a: Gpr<R::WriteGpr>,
pub r32b: Gpr<R::WriteGpr>,
pub rm32: GprMem<R::ReadGpr, R::ReadGpr>,
pub edx: Fixed<R::ReadGpr, { gpr::enc::RDX }>,
}Expand description
mulxl: RVM(r32a[w], r32b[w], rm32, edx[implicit]) => VEX.LZ.F2.0F38.W0 0xF6 [_64b | compat | 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§
§r32a: Gpr<R::WriteGpr>§r32b: Gpr<R::WriteGpr>§rm32: GprMem<R::ReadGpr, R::ReadGpr>§edx: Fixed<R::ReadGpr, { gpr::enc::RDX }>Implementations§
Source§impl<R: Registers> mulxl_rvm<R>
impl<R: Registers> mulxl_rvm<R>
pub fn new( r32a: impl Into<Gpr<R::WriteGpr>>, r32b: impl Into<Gpr<R::WriteGpr>>, rm32: impl Into<GprMem<R::ReadGpr, R::ReadGpr>>, edx: 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 mulxl_rvm<R>
Auto Trait Implementations§
impl<R> Freeze for mulxl_rvm<R>
impl<R> RefUnwindSafe for mulxl_rvm<R>
impl<R> Send for mulxl_rvm<R>
impl<R> Sync for mulxl_rvm<R>
impl<R> Unpin for mulxl_rvm<R>
impl<R> UnwindSafe for mulxl_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