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)
// cranelift/assembler-x64/meta/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) -> &'static str
pub fn encode(&self, buf: &mut impl CodeSink, off: &impl KnownOffsetTable)
pub fn visit(&mut self, visitor: &mut impl RegisterVisitor<R>)
pub fn features(&self) -> Vec<Feature>
Trait Implementations§
Source§impl<'arbitrary, R> Arbitrary<'arbitrary> for mulxl_rvm<R>where
R: Registers + RegistersArbitrary,
impl<'arbitrary, R> Arbitrary<'arbitrary> for mulxl_rvm<R>where
R: Registers + RegistersArbitrary,
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreimpl<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