[][src]Struct gdbstub::arch::mips::reg::MipsCoreRegs

pub struct MipsCoreRegs<U> {
    pub r: [U; 32],
    pub lo: U,
    pub hi: U,
    pub pc: U,
    pub cp0: MipsCp0Regs<U>,
    pub fpu: MipsFpuRegs<U>,
}

MIPS registers. This structure is identical for both 32 and 64-bit MIPS. The register width is set to u32 or u64 based on the <U> type.

Source: https://github.com/bminor/binutils-gdb/blob/master/gdb/features/mips-cpu.xml

Fields

r: [U; 32]

General purpose registers (R0-R32)

lo: U

Low register (regnum 33)

hi: U

High register (regnum 34)

pc: U

Program Counter (regnum 37)

cp0: MipsCp0Regs<U>

CP0 registers

fpu: MipsFpuRegs<U>

FPU registers

Trait Implementations

impl<U: Default> Default for MipsCoreRegs<U>[src]

impl<U> Registers for MipsCoreRegs<U> where
    U: PrimInt + LeBytes + Default
[src]

type RegId = ()

Register identifier for addressing single registers. Read more

Auto Trait Implementations

impl<U> RefUnwindSafe for MipsCoreRegs<U> where
    U: RefUnwindSafe

impl<U> Send for MipsCoreRegs<U> where
    U: Send

impl<U> Sync for MipsCoreRegs<U> where
    U: Sync

impl<U> Unpin for MipsCoreRegs<U> where
    U: Unpin

impl<U> UnwindSafe for MipsCoreRegs<U> where
    U: UnwindSafe

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.