pub struct cmpw_mi_sxb<R>where
R: Registers,{
pub rm16: GprMem<R::ReadGpr, R::ReadGpr>,
pub imm8: Simm8,
}Expand description
cmpw: MI_SXB(rm16, imm8[sxw])[flags:w] => 0x66 + 0x83 /7 ib [_64b | compat] // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§rm16: GprMem<R::ReadGpr, R::ReadGpr>§imm8: Simm8Implementations§
Source§impl<R: Registers> cmpw_mi_sxb<R>
impl<R: Registers> cmpw_mi_sxb<R>
pub fn new( rm16: impl Into<GprMem<R::ReadGpr, R::ReadGpr>>, imm8: impl Into<Simm8>, ) -> 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§
Source§impl<R> Clone for cmpw_mi_sxb<R>
impl<R> Clone for cmpw_mi_sxb<R>
Source§fn clone(&self) -> cmpw_mi_sxb<R>
fn clone(&self) -> cmpw_mi_sxb<R>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R> Debug for cmpw_mi_sxb<R>
impl<R> Debug for cmpw_mi_sxb<R>
Source§impl<R: Registers> Display for cmpw_mi_sxb<R>
impl<R: Registers> Display for cmpw_mi_sxb<R>
impl<R> Copy for cmpw_mi_sxb<R>
Auto Trait Implementations§
impl<R> Freeze for cmpw_mi_sxb<R>
impl<R> RefUnwindSafe for cmpw_mi_sxb<R>
impl<R> Send for cmpw_mi_sxb<R>
impl<R> Sync for cmpw_mi_sxb<R>
impl<R> Unpin for cmpw_mi_sxb<R>
impl<R> UnwindSafe for cmpw_mi_sxb<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