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