[][src]Enum rvemu::csr::misa::Extensions

pub enum Extensions {
    BitA,
    BitB,
    BitC,
    BitD,
    BitE,
    BitF,
    BitG,
    BitH,
    BitI,
    BitJ,
    BitK,
    BitL,
    BitM,
    BitN,
    BitO,
    BitP,
    BitQ,
    BitR,
    BitS,
    BitT,
    BitU,
    BitV,
    BitW,
    BitX,
    BitY,
    BitZ,
}

Encoding of extensions field in misa.

Variants

BitA

Atomic extension.

BitB

Tentatively reserved for Bit-Manipulation extension.

BitC

Compressed extension.

BitD

Double-precision floating-point extension.

BitE

RV32E base ISA.

BitF

Single-precision floating-point extension.

BitG

Additional standard extensions present.

BitH

Hypervisor extension.

BitI

RV32I/64I/128I base ISA.

BitJ

Tentatively reserved for Dynamically Translated Languages extension.

BitK

Reserved.

BitL

Tentatively reserved for Decimal Floating-Point extension.

BitM

Integer Multiply/Divide extension.

BitN

User-level interrupts supported.

BitO

Reserved.

BitP

Tentatively reserved for Packed-SIMD extension.

BitQ

Quad-precision floating-point extension.

BitR

Reserved.

BitS

Supervisor mode implemented.

BitT

Tentatively reserved for Transactional Memory extension.

BitU

User mode implemented.

BitV

Tentatively reserved for Vector extension.

BitW

Reserved.

BitX

Non-standard extensions present.

BitY

Reserved.

BitZ

Reserved.

Trait Implementations

impl Eq for Extensions[src]

impl PartialEq<Extensions> for Extensions[src]

impl StructuralEq for Extensions[src]

impl StructuralPartialEq for Extensions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.