pub enum Register<R: ArchReg> {
ArchReg(R),
Temp(u32),
}
Variants§
Trait Implementations§
source§impl<'a, R, A: 'a + Architecture> Liftable<'a, A> for Register<R>
impl<'a, R, A: 'a + Architecture> Liftable<'a, A> for Register<R>
source§impl<'a, R, A: 'a + Architecture> LiftableWithSize<'a, A> for Register<R>
impl<'a, R, A: 'a + Architecture> LiftableWithSize<'a, A> for Register<R>
fn lift_with_size( il: &'a Function<A, Mutable, NonSSA<LiftedNonSSA>>, reg: Self, size: usize, ) -> Expression<'a, A, Mutable, NonSSA<LiftedNonSSA>, ValueExpr>
impl<R: Copy + ArchReg> Copy for Register<R>
impl<R: Eq + ArchReg> Eq for Register<R>
impl<R: ArchReg> StructuralPartialEq for Register<R>
Auto Trait Implementations§
impl<R> Freeze for Register<R>where
R: Freeze,
impl<R> RefUnwindSafe for Register<R>where
R: RefUnwindSafe,
impl<R> Send for Register<R>where
R: Send,
impl<R> Sync for Register<R>where
R: Sync,
impl<R> Unpin for Register<R>where
R: Unpin,
impl<R> UnwindSafe for Register<R>where
R: UnwindSafe,
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