pub enum RoundImm {
RoundNearest,
RoundDown,
RoundUp,
RoundZero,
}
Expand description
Encode the rounding modes used as part of the Rounding Control field. Note, these rounding immediates only consider the rounding control field (i.e. the rounding mode) which only take up the first two bits when encoded. However the rounding immediate which this field helps make up, also includes bits 3 and 4 which define the rounding select and precision mask respectively. These two bits are not defined here and are implictly set to zero when encoded.
Variants§
RoundNearest
Round to nearest mode.
RoundDown
Round down mode.
RoundUp
Round up mode.
RoundZero
Round to zero mode.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for RoundImm
impl Send for RoundImm
impl Sync for RoundImm
impl Unpin for RoundImm
impl UnwindSafe for RoundImm
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