pub struct cmpb_rm<R>where
R: Registers,{
pub r8: Gpr<R::ReadGpr>,
pub rm8: GprMem<R::ReadGpr, R::ReadGpr>,
}Expand description
cmpb: RM(r8, rm8)[flags:w] => 0x3A [_64b | compat] // /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cranelift-assembler-x64-meta-0.122.0/src/generate/inst.rs:14
Fields§
§r8: Gpr<R::ReadGpr>§rm8: GprMem<R::ReadGpr, R::ReadGpr>Implementations§
Source§impl<R: Registers> cmpb_rm<R>
impl<R: Registers> cmpb_rm<R>
pub fn new( r8: impl Into<Gpr<R::ReadGpr>>, rm8: impl Into<GprMem<R::ReadGpr, 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 cmpb_rm<R>
Auto Trait Implementations§
impl<R> Freeze for cmpb_rm<R>
impl<R> RefUnwindSafe for cmpb_rm<R>
impl<R> Send for cmpb_rm<R>
impl<R> Sync for cmpb_rm<R>
impl<R> Unpin for cmpb_rm<R>
impl<R> UnwindSafe for cmpb_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