4 /* IA32 compatible user structures for ptrace.
5 * These should be used for 32bit coredumps too. */
7 struct user_i387_ia32_struct
{
15 u32 st_space
[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
18 /* FSAVE frame with extensions */
19 struct user32_fxsr_struct
{
22 unsigned short twd
; /* not compatible to 64bit twd */
30 int st_space
[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
31 int xmm_space
[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
35 struct user_regs_struct32
{
36 __u32 ebx
, ecx
, edx
, esi
, edi
, ebp
, eax
;
37 unsigned short ds
, __ds
, es
, __es
;
38 unsigned short fs
, __fs
, gs
, __gs
;
40 unsigned short cs
, __cs
;
42 unsigned short ss
, __ss
;
46 struct user_regs_struct32 regs
; /* Where the registers are actually stored */
47 int u_fpvalid
; /* True if math co-processor being used. */
48 /* for this mess. Not yet used. */
49 struct user_i387_ia32_struct i387
; /* Math Co-processor registers. */
50 /* The rest of this junk is to help gdb figure out what goes where */
51 __u32 u_tsize
; /* Text segment size (pages). */
52 __u32 u_dsize
; /* Data segment size (pages). */
53 __u32 u_ssize
; /* Stack segment size (pages). */
54 __u32 start_code
; /* Starting virtual address of text. */
55 __u32 start_stack
; /* Starting virtual address of stack area.
56 This is actually the bottom of the stack,
57 the top of the stack is always found in the
59 __u32 signal
; /* Signal that caused the core dump. */
60 int reserved
; /* No __u32er used */
61 __u32 u_ar0
; /* Used by gdb to help find the values for */
63 __u32 u_fpstate
; /* Math Co-processor pointer. */
64 __u32 magic
; /* To uniquely identify a core file */
65 char u_comm
[32]; /* User command that was responsible */