Struct Imm32

Source
pub struct Imm32<const HIGH_BIT: usize, const LOW_BIT: usize>(pub u32);
Expand description

This is used to represent lazily-decoded immediate value, which is written as imm[HIGH_BIT:LOW_BIT] in the risc-v specification.

Tuple Fields§

§0: u32

Implementations§

Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Imm32<HIGH_BIT, LOW_BIT>

Source

pub fn from(underlying: u32) -> Self

Source

pub fn valid_bits(&self) -> usize

Source

pub fn decode(self) -> u32

Decode the immediate value by placing its valid bits at the range of [HIGH_BIT, LOW_BIT] according to the risc-v specification.

Source

pub fn decode_sext(self) -> i32

Trait Implementations§

Source§

impl<const LHS_HIGH_BIT: usize, const LHS_LOW_BIT: usize, const RHS_HIGH_BIT: usize, const RHS_LOW_BIT: usize> BitOr<Imm32<RHS_HIGH_BIT, RHS_LOW_BIT>> for Imm32<LHS_HIGH_BIT, LHS_LOW_BIT>
where If<{ _ }>: True, If<{ _ }>: True, If<{ _ }>: True,

Source§

type Output = Imm32<LHS_HIGH_BIT, RHS_LOW_BIT>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Imm32<RHS_HIGH_BIT, RHS_LOW_BIT>) -> Self::Output

Performs the | operation. Read more
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Clone for Imm32<HIGH_BIT, LOW_BIT>

Source§

fn clone(&self) -> Imm32<HIGH_BIT, LOW_BIT>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Debug for Imm32<HIGH_BIT, LOW_BIT>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Into<Imm32<HIGH_BIT, LOW_BIT>> for i32

Source§

fn into(self) -> Imm32<HIGH_BIT, LOW_BIT>

Converts this type into the (usually inferred) input type.
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Into<Imm32<HIGH_BIT, LOW_BIT>> for u32

Source§

fn into(self) -> Imm32<HIGH_BIT, LOW_BIT>

Converts this type into the (usually inferred) input type.
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> PartialEq for Imm32<HIGH_BIT, LOW_BIT>

Source§

fn eq(&self, other: &Imm32<HIGH_BIT, LOW_BIT>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Copy for Imm32<HIGH_BIT, LOW_BIT>

Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Eq for Imm32<HIGH_BIT, LOW_BIT>

Source§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> StructuralPartialEq for Imm32<HIGH_BIT, LOW_BIT>

Auto Trait Implementations§

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Freeze for Imm32<HIGH_BIT, LOW_BIT>

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> RefUnwindSafe for Imm32<HIGH_BIT, LOW_BIT>

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Send for Imm32<HIGH_BIT, LOW_BIT>

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Sync for Imm32<HIGH_BIT, LOW_BIT>

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> Unpin for Imm32<HIGH_BIT, LOW_BIT>

§

impl<const HIGH_BIT: usize, const LOW_BIT: usize> UnwindSafe for Imm32<HIGH_BIT, LOW_BIT>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.