#[repr(u64)]pub enum Value {
Show 34 variants
Unknown = 0,
TrappedWFIorWFE = 1,
TrappedMCRorMRC = 3,
TrappedMCRRorMRRC = 4,
TrappedMCRorMRC2 = 5,
TrappedLDCorSTC = 6,
TrappedFP = 7,
TrappedMRRC = 12,
BranchTarget = 13,
IllegalExecutionState = 14,
SVC32 = 17,
SVC64 = 21,
HVC64 = 22,
SMC64 = 23,
TrappedMsrMrs = 24,
TrappedSve = 25,
PointerAuth = 28,
InstrAbortLowerEL = 32,
InstrAbortCurrentEL = 33,
PCAlignmentFault = 34,
DataAbortLowerEL = 36,
DataAbortCurrentEL = 37,
SPAlignmentFault = 38,
TrappedFP32 = 40,
TrappedFP64 = 44,
SError = 47,
BreakpointLowerEL = 48,
BreakpointCurrentEL = 49,
SoftwareStepLowerEL = 50,
SoftwareStepCurrentEL = 51,
WatchpointLowerEL = 52,
WatchpointCurrentEL = 53,
Bkpt32 = 56,
Brk64 = 60,
}Expand description
Exception Class. Indicates the reason for the exception that this register holds information about.
For each EC value, the table references a subsection that gives information about:
- The cause of the exception, for example the configuration required to enable the trap.
- The encoding of the associated ISS.
Incomplete listing - to be done.
Variants§
Unknown = 0
TrappedWFIorWFE = 1
TrappedMCRorMRC = 3
TrappedMCRRorMRRC = 4
TrappedMCRorMRC2 = 5
TrappedLDCorSTC = 6
TrappedFP = 7
TrappedMRRC = 12
BranchTarget = 13
IllegalExecutionState = 14
SVC32 = 17
SVC64 = 21
HVC64 = 22
SMC64 = 23
TrappedMsrMrs = 24
TrappedSve = 25
PointerAuth = 28
InstrAbortLowerEL = 32
InstrAbortCurrentEL = 33
PCAlignmentFault = 34
DataAbortLowerEL = 36
DataAbortCurrentEL = 37
SPAlignmentFault = 38
TrappedFP32 = 40
TrappedFP64 = 44
SError = 47
BreakpointLowerEL = 48
BreakpointCurrentEL = 49
SoftwareStepLowerEL = 50
SoftwareStepCurrentEL = 51
WatchpointLowerEL = 52
WatchpointCurrentEL = 53
Bkpt32 = 56
Brk64 = 60
Trait Implementations§
Source§impl TryFromValue<u64> for Value
impl TryFromValue<u64> for Value
impl Copy for Value
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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