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

pub struct X86_64CoreRegs {
    pub regs: [u64; 16],
    pub eflags: u32,
    pub rip: u64,
    pub segments: [u32; 6],
    pub st: [F80; 8],
    pub fpu: X87FpuInternalRegs,
    pub xmm: [u128; 16],
    pub mxcsr: u32,
}

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

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

Fields

regs: [u64; 16]

RAX, RBX, RCX, RDX, RSI, RDI, RBP, RSP, r8-r15

eflags: u32

Status register

rip: u64

Instruction pointer

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; 16]

SIMD Registers: XMM0 through XMM15

mxcsr: u32

SSE Status/Control Register

Trait Implementations

impl Default for X86_64CoreRegs[src]

impl Registers for X86_64CoreRegs[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.