Struct riscv::register::mstatus::Mstatus

source ·
pub struct Mstatus { /* private fields */ }
Expand description

mstatus register

Implementations§

source§

impl Mstatus

source

pub fn uie(&self) -> bool

User Interrupt Enable

source

pub fn sie(&self) -> bool

Supervisor Interrupt Enable

source

pub fn mie(&self) -> bool

Machine Interrupt Enable

source

pub fn upie(&self) -> bool

User Previous Interrupt Enable

source

pub fn spie(&self) -> bool

Supervisor Previous Interrupt Enable

source

pub fn mpie(&self) -> bool

Machine Previous Interrupt Enable

source

pub fn spp(&self) -> SPP

Supervisor Previous Privilege Mode

source

pub fn mpp(&self) -> MPP

Machine Previous Privilege Mode

source

pub fn fs(&self) -> FS

Floating-point extension state

Encodes the status of the floating-point unit, including the CSR fcsr and floating-point data registers f0–f31.

source

pub fn xs(&self) -> XS

Additional extension state

Encodes the status of additional user-mode extensions and associated state.

source

pub fn mprv(&self) -> bool

Modify Memory PRiVilege

source

pub fn sum(&self) -> bool

Permit Supervisor User Memory access

source

pub fn mxr(&self) -> bool

Make eXecutable Readable

source

pub fn tvm(&self) -> bool

Trap Virtual Memory

If this bit is set, reads or writes to satp CSR or execute sfence.vma instruction when in S-mode will raise an illegal instruction exception.

TVM is hard-wired to 0 when S-mode is not supported.

source

pub fn tw(&self) -> bool

Timeout Wait

Indicates that if WFI instruction should be intercepted.

If this bit is set, when WFI is executed in S-mode, and it does not complete within an implementation specific, bounded time limit, the WFI instruction will cause an illegal instruction trap; or could always cause trap then the time limit is zero.

TW is hard-wired to 0 when S-mode is not supported.

source

pub fn tsr(&self) -> bool

Trap SRET

Indicates that if SRET instruction should be trapped to raise illegal instruction exception.

If S-mode is not supported, TSR bit is hard-wired to 0.

source

pub fn sd(&self) -> bool

Whether either the FS field or XS field signals the presence of some dirty state

Trait Implementations§

source§

impl Clone for Mstatus

source§

fn clone(&self) -> Mstatus

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 Debug for Mstatus

source§

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

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

impl Copy for Mstatus

Auto Trait Implementations§

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§

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

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

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

source§

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

🔬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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.