Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/registers/esr_el1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ register_bitfields! {u64,
TrappedMCRorMRC2 = 0b00_0101,
/// Trapped LDC or STC access (FEAT_AA32)
TrappedLDCorSTC = 0b00_0110,
/// Access to SME, SVE, Advanced SIMD or floating-point functionality trapped
/// Access to SME, SVE, Advanced SIMD or floating-point functionality trapped (FEAT_AA32)
TrappedFP = 0b00_0111,
/// Trapped execution of any instruction not covered by other EC values (FEAT_LS64)
TrappedNotCovered = 0b00_1010,
/// Trapped MRRC access with (coproc==0b1110) (FEAT_AA32)
TrappedMRRC = 0b00_1100,
/// Branch Target Exception (FEAT_BTI)
BranchTarget = 0b00_1101,
/// Illegal Execution state (FEAT_BTI)
/// Illegal Execution state
IllegalExecutionState = 0b00_1110,
/// SVC instruction execution in AArch32 state (FEAT_AA32)
SVC32 = 0b01_0001,
Expand Down
2 changes: 1 addition & 1 deletion src/registers/esr_el2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ register_bitfields! {u64,
TrappedMCRorMRC2 = 0b00_0101,
/// Trapped LDC or STC access (FEAT_AA32)
TrappedLDCorSTC = 0b00_0110,
/// Access to SME, SVE, Advanced SIMD or floating-point functionality trapped
/// Access to SME, SVE, Advanced SIMD or floating-point functionality trapped (FEAT_AA32)
TrappedFP = 0b00_0111,
/// Trapped VMRS access, from ID group trap (FEAT_AA32)
TrappedVMRS = 0b00_1000,
Expand Down