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

mstatus register

Implementations§

§

impl Mstatus

pub fn uie(&self) -> bool

User Interrupt Enable

pub fn sie(&self) -> bool

Supervisor Interrupt Enable

pub fn mie(&self) -> bool

Machine Interrupt Enable

pub fn upie(&self) -> bool

User Previous Interrupt Enable

pub fn spie(&self) -> bool

Supervisor Previous Interrupt Enable

pub fn mpie(&self) -> bool

Machine Previous Interrupt Enable

pub fn spp(&self) -> SPP

Supervisor Previous Privilege Mode

pub fn mpp(&self) -> MPP

Machine Previous Privilege Mode

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.

pub fn xs(&self) -> XS

Additional extension state

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

pub fn mprv(&self) -> bool

Modify Memory PRiVilege

pub fn sum(&self) -> bool

Permit Supervisor User Memory access

pub fn mxr(&self) -> bool

Make eXecutable Readable

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.

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.

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.

pub fn sd(&self) -> bool

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

Trait Implementations§

§

impl Clone for Mstatus

§

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
§

impl Debug for Mstatus

§

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

Formats the value using the given formatter. Read more
§

impl Copy for Mstatus

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.