[][src]Struct gdbstub::arch::x86::reg::X86CoreRegs

pub struct X86CoreRegs {
    pub eax: u32,
    pub ecx: u32,
    pub edx: u32,
    pub ebx: u32,
    pub esp: u32,
    pub ebp: u32,
    pub esi: u32,
    pub edi: u32,
    pub eip: u32,
    pub eflags: u32,
    pub segments: [u32; 6],
    pub st: [F80; 8],
    pub fpu: X87FpuInternalRegs,
    pub xmm: [u128; 8],
    pub mxcsr: u32,
}

32-bit x86 core registers (+ SSE extensions).

Source: https://github.com/bminor/binutils-gdb/blob/master/gdb/features/i386/32bit-core.xml Additionally: https://github.com/bminor/binutils-gdb/blob/master/gdb/features/i386/32bit-sse.xml

Fields

eax: u32

Accumulator

ecx: u32

Count register

edx: u32

Data register

ebx: u32

Base register

esp: u32

Stack pointer

ebp: u32

Base pointer

esi: u32

Source index

edi: u32

Destination index

eip: u32

Instruction pointer

eflags: u32

Status register

segments: [u32; 6]

Segment registers: CS, SS, DS, ES, FS, GS

st: [F80; 8]

FPU registers: ST0 through ST7

fpu: X87FpuInternalRegs

FPU internal registers

xmm: [u128; 8]

SIMD Registers: XMM0 through XMM7

mxcsr: u32

SSE Status/Control Register

Trait Implementations

impl Default for X86CoreRegs[src]

impl Registers for X86CoreRegs[src]

type RegId = ()

Register identifier for addressing single registers. Read more

Auto Trait Implementations

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.