pub struct leaw_rm<R>where
R: Registers,{
pub r16: Gpr<R::WriteGpr>,
pub m16: Amode<R::ReadGpr>,
}Expand description
leaw: RM(r16[w], m16) => 0x66 + 0x8D /r [_64b | compat] // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§r16: Gpr<R::WriteGpr>§m16: Amode<R::ReadGpr>Implementations§
Source§impl<R: Registers> leaw_rm<R>
impl<R: Registers> leaw_rm<R>
pub fn new( r16: impl Into<Gpr<R::WriteGpr>>, m16: impl Into<Amode<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 leaw_rm<R>
Auto Trait Implementations§
impl<R> Freeze for leaw_rm<R>
impl<R> RefUnwindSafe for leaw_rm<R>
impl<R> Send for leaw_rm<R>
impl<R> Sync for leaw_rm<R>
impl<R> Unpin for leaw_rm<R>
impl<R> UnwindSafe for leaw_rm<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