You copied the Doc URL to your clipboard.
Shared Exceptions.Traps Pseudocode
Library pseudocode for shared/exceptions/traps/ReservedValue
// ReservedValue() // =============== ReservedValue() if UsingAArch32() && !AArch32.GeneralExceptionsToAArch64() then AArch32.TakeUndefInstrException(); else AArch64.UndefinedFault();
Library pseudocode for shared/exceptions/traps/UnallocatedEncoding
// UnallocatedEncoding() // ===================== UnallocatedEncoding() if UsingAArch32() && AArch32.ExecutingCP10or11Instr() then FPEXC.DEX = '0'; if UsingAArch32() && !AArch32.GeneralExceptionsToAArch64() then AArch32.TakeUndefInstrException(); else AArch64.UndefinedFault();