pub enum FPUOpRIMod {
Sli32(FPULeftShiftImm),
Sli64(FPULeftShiftImm),
}
Available on crate feature
arm64
only.Expand description
A floating-point unit (FPU) operation with two args, a register and an immediate that modifies its dest (so takes that input value as a separate virtual register).
Variants§
Sli32(FPULeftShiftImm)
Shift left and insert. Rd |= Rn << #imm
Sli64(FPULeftShiftImm)
Shift left and insert. Rd |= Rn << #imm
Trait Implementations§
Source§impl Clone for FPUOpRIMod
impl Clone for FPUOpRIMod
Source§fn clone(&self) -> FPUOpRIMod
fn clone(&self) -> FPUOpRIMod
Returns a copy 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 Debug for FPUOpRIMod
impl Debug for FPUOpRIMod
impl Copy for FPUOpRIMod
Auto Trait Implementations§
impl Freeze for FPUOpRIMod
impl RefUnwindSafe for FPUOpRIMod
impl Send for FPUOpRIMod
impl Sync for FPUOpRIMod
impl Unpin for FPUOpRIMod
impl UnwindSafe for FPUOpRIMod
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