bfd/
[external/binutils.git] / bfd / hosts / x86-64linux.h
1 /* Copyright (C) 2006, 2011
2    Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 /* This is somewhat modelled after the file of the same name on SVR4
21    systems.  It provides a definition of the core file format for ELF
22    used on Linux.  It doesn't have anything to do with the /proc file
23    system, even though Linux has one.
24
25    Anyway, the whole purpose of this file is for GDB and GDB only.
26    Don't read too much into it.  Don't use it for anything other than
27    GDB unless you know what you are doing.  */
28
29 #include <features.h>
30 #include <sys/time.h>
31 #include <sys/types.h>
32
33 /* We define here only the symbols differing from their 64-bit variant.  */
34 #include <sys/procfs.h>
35
36 #ifdef HAVE_STDINT_H
37 #include <stdint.h>
38 #else
39 typedef unsigned int uint32_t;
40 #endif
41
42 #undef HAVE_PRPSINFO32_T
43 #define HAVE_PRPSINFO32_T
44 #undef HAVE_PRPSINFO32_T_PR_PID
45 #define HAVE_PRPSINFO32_T_PR_PID
46
47 #undef HAVE_PRSTATUS32_T
48 #define HAVE_PRSTATUS32_T
49
50 /* These are the 32-bit x86 structures.  */
51
52 struct user_fpregs32_struct
53 {
54   int32_t cwd;
55   int32_t swd;
56   int32_t twd;
57   int32_t fip;
58   int32_t fcs;
59   int32_t foo;
60   int32_t fos;
61   int32_t st_space [20];
62 };
63
64 struct user_fpxregs32_struct
65 {
66   unsigned short int cwd;
67   unsigned short int swd;
68   unsigned short int twd;
69   unsigned short int fop;
70   int32_t fip;
71   int32_t fcs;
72   int32_t foo;
73   int32_t fos;
74   int32_t mxcsr;
75   int32_t reserved;
76   int32_t st_space[32];   /* 8*16 bytes for each FP-reg = 128 bytes */
77   int32_t xmm_space[32];  /* 8*16 bytes for each XMM-reg = 128 bytes */
78   int32_t padding[56];
79 };
80
81 struct user_regs32_struct
82 {
83   int32_t ebx;
84   int32_t ecx;
85   int32_t edx;
86   int32_t esi;
87   int32_t edi;
88   int32_t ebp;
89   int32_t eax;
90   int32_t xds;
91   int32_t xes;
92   int32_t xfs;
93   int32_t xgs;
94   int32_t orig_eax;
95   int32_t eip;
96   int32_t xcs;
97   int32_t eflags;
98   int32_t esp;
99   int32_t xss;
100 };
101
102 struct user32
103 {
104   struct user_regs32_struct     regs;
105   int                           u_fpvalid;
106   struct user_fpregs32_struct   i387;
107   uint32_t                      u_tsize;
108   uint32_t                      u_dsize;
109   uint32_t                      u_ssize;
110   uint32_t                      start_code;
111   uint32_t                      start_stack;
112   int32_t                       signal;
113   int                           reserved;
114   struct user_regs32_struct*    u_ar0;
115   struct user_fpregs32_struct*  u_fpstate;
116   uint32_t                      magic;
117   char                          u_comm [32];
118   int                           u_debugreg [8];
119 };
120
121 /* Type for a general-purpose register.  */
122 typedef unsigned int elf_greg32_t;
123
124 /* And the whole bunch of them.  We could have used `struct
125    user_regs_struct' directly in the typedef, but tradition says that
126    the register set is an array, which does have some peculiar
127    semantics, so leave it that way.  */
128 #define ELF_NGREG32 (sizeof (struct user_regs32_struct) / sizeof(elf_greg32_t))
129 typedef elf_greg32_t elf_gregset32_t[ELF_NGREG32];
130
131 /* Register set for the floating-point registers.  */
132 typedef struct user_fpregs32_struct elf_fpregset32_t;
133
134 /* Register set for the extended floating-point registers.  Includes
135    the Pentium III SSE registers in addition to the classic
136    floating-point stuff.  */
137 typedef struct user_fpxregs32_struct elf_fpxregset32_t;
138
139
140 /* Definitions to generate Intel SVR4-like core files.  These mostly
141    have the same names as the SVR4 types with "elf_" tacked on the
142    front to prevent clashes with Linux definitions, and the typedef
143    forms have been avoided.  This is mostly like the SVR4 structure,
144    but more Linuxy, with things that Linux does not support and which
145    GDB doesn't really use excluded.  */
146
147 struct prstatus32_timeval
148   {
149     int tv_sec;
150     int tv_usec;
151   };
152
153 struct elf_prstatus32
154   {
155     struct elf_siginfo pr_info;         /* Info associated with signal.  */
156     short int pr_cursig;                /* Current signal.  */
157     unsigned int pr_sigpend;            /* Set of pending signals.  */
158     unsigned int pr_sighold;            /* Set of held signals.  */
159     pid_t pr_pid;
160     pid_t pr_ppid;
161     pid_t pr_pgrp;
162     pid_t pr_sid;
163     struct prstatus32_timeval pr_utime;         /* User time.  */
164     struct prstatus32_timeval pr_stime;         /* System time.  */
165     struct prstatus32_timeval pr_cutime;        /* Cumulative user time.  */
166     struct prstatus32_timeval pr_cstime;        /* Cumulative system time.  */
167     elf_gregset32_t pr_reg;             /* GP registers.  */
168     int pr_fpvalid;                     /* True if math copro being used.  */
169   };
170
171
172 struct elf_prpsinfo32
173   {
174     char pr_state;                      /* Numeric process state.  */
175     char pr_sname;                      /* Char for pr_state.  */
176     char pr_zomb;                       /* Zombie.  */
177     char pr_nice;                       /* Nice val.  */
178     unsigned int pr_flag;               /* Flags.  */
179     unsigned short int pr_uid;
180     unsigned short int pr_gid;
181     int pr_pid, pr_ppid, pr_pgrp, pr_sid;
182     /* Lots missing */
183     char pr_fname[16];                  /* Filename of executable.  */
184     char pr_psargs[ELF_PRARGSZ];        /* Initial part of arg list.  */
185   };
186
187
188 /* The rest of this file provides the types for emulation of the
189    Solaris <proc_service.h> interfaces that should be implemented by
190    users of libthread_db.  */
191
192 /* Register sets.  Linux has different names.  */
193 typedef elf_gregset_t prgregset32_t;
194 typedef elf_fpregset_t prfpregset32_t;
195
196 /* Process status and info.  In the end we do provide typedefs for them.  */
197 typedef struct elf_prstatus32 prstatus32_t;
198 typedef struct elf_prpsinfo32 prpsinfo32_t;