[][src]Struct skyline::nn::os::UserExceptionInfo

#[repr(C)]#[repr(align(16))]pub struct UserExceptionInfo {
    pub ErrorDescription: u32,
    pub pad: [u32; 3],
    pub CpuRegisters: [CpuRegister; 29],
    pub FP: CpuRegister,
    pub LR: CpuRegister,
    pub SP: CpuRegister,
    pub PC: CpuRegister,
    pub padding: u64,
    pub FpuRegisters: [FpuRegister; 32],
    pub PState: u32,
    pub AFSR0: u32,
    pub AFSR1: u32,
    pub ESR: u32,
    pub FAR: CpuRegister,
}

Fields

ErrorDescription: u32

< See \ref ThreadExceptionDesc.

pad: [u32; 3]CpuRegisters: [CpuRegister; 29]

< GPRs 0..28. Note: also contains AArch32 registers.

FP: CpuRegister

< Frame pointer.

LR: CpuRegister

< Link register.

SP: CpuRegister

< Stack pointer.

PC: CpuRegister

< Program counter (elr_el1).

padding: u64FpuRegisters: [FpuRegister; 32]

< 32 general-purpose NEON registers.

PState: u32

< pstate & 0xFF0FFE20

AFSR0: u32AFSR1: u32ESR: u32FAR: CpuRegister

< Fault Address Register.

Auto Trait Implementations

impl RefUnwindSafe for UserExceptionInfo

impl Send for UserExceptionInfo

impl Sync for UserExceptionInfo

impl Unpin for UserExceptionInfo

impl UnwindSafe for UserExceptionInfo

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.