OSDN Git Service

* breakpoint.c:
[pf3gnuchains/pf3gnuchains3x.git] / gdb / i386bsd-nat.c
1 /* Native-dependent code for modern i386 BSD's.
2
3    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
4    Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor,
21    Boston, MA 02110-1301, USA.  */
22
23 #include "defs.h"
24 #include "inferior.h"
25 #include "regcache.h"
26
27 #include "gdb_assert.h"
28 #include <signal.h>
29 #include <stddef.h>
30 #include <sys/types.h>
31 #include <sys/ptrace.h>
32 #include <machine/reg.h>
33 #include <machine/frame.h>
34
35 #include "i386-tdep.h"
36 #include "i387-tdep.h"
37 #include "i386bsd-nat.h"
38 #include "inf-ptrace.h"
39 \f
40
41 /* In older BSD versions we cannot get at some of the segment
42    registers.  FreeBSD for example didn't support the %fs and %gs
43    registers until the 3.0 release.  We have autoconf checks for their
44    presence, and deal gracefully with their absence.  */
45
46 /* Offset in `struct reg' where MEMBER is stored.  */
47 #define REG_OFFSET(member) offsetof (struct reg, member)
48
49 /* At i386bsd_reg_offset[REGNUM] you'll find the offset in `struct
50    reg' where the GDB register REGNUM is stored.  Unsupported
51    registers are marked with `-1'.  */
52 static int i386bsd_r_reg_offset[] =
53 {
54   REG_OFFSET (r_eax),
55   REG_OFFSET (r_ecx),
56   REG_OFFSET (r_edx),
57   REG_OFFSET (r_ebx),
58   REG_OFFSET (r_esp),
59   REG_OFFSET (r_ebp),
60   REG_OFFSET (r_esi),
61   REG_OFFSET (r_edi),
62   REG_OFFSET (r_eip),
63   REG_OFFSET (r_eflags),
64   REG_OFFSET (r_cs),
65   REG_OFFSET (r_ss),
66   REG_OFFSET (r_ds),
67   REG_OFFSET (r_es),
68 #ifdef HAVE_STRUCT_REG_R_FS
69   REG_OFFSET (r_fs),
70 #else
71   -1,
72 #endif
73 #ifdef HAVE_STRUCT_REG_R_GS
74   REG_OFFSET (r_gs)
75 #else
76   -1
77 #endif
78 };
79
80 /* Macro to determine if a register is fetched with PT_GETREGS.  */
81 #define GETREGS_SUPPLIES(regnum) \
82   ((0 <= (regnum) && (regnum) <= 15))
83
84 #ifdef HAVE_PT_GETXMMREGS
85 /* Set to 1 if the kernel supports PT_GETXMMREGS.  Initialized to -1
86    so that we try PT_GETXMMREGS the first time around.  */
87 static int have_ptrace_xmmregs = -1;
88 #endif
89 \f
90
91 /* Supply the general-purpose registers in GREGS, to REGCACHE.  */
92
93 static void
94 i386bsd_supply_gregset (struct regcache *regcache, const void *gregs)
95 {
96   const char *regs = gregs;
97   int regnum;
98
99   for (regnum = 0; regnum < ARRAY_SIZE (i386bsd_r_reg_offset); regnum++)
100     {
101       int offset = i386bsd_r_reg_offset[regnum];
102
103       if (offset != -1)
104         regcache_raw_supply (regcache, regnum, regs + offset);
105     }
106 }
107
108 /* Collect register REGNUM from REGCACHE and store its contents in
109    GREGS.  If REGNUM is -1, collect and store all appropriate
110    registers.  */
111
112 static void
113 i386bsd_collect_gregset (const struct regcache *regcache,
114                          void *gregs, int regnum)
115 {
116   char *regs = gregs;
117   int i;
118
119   for (i = 0; i < ARRAY_SIZE (i386bsd_r_reg_offset); i++)
120     {
121       if (regnum == -1 || regnum == i)
122         {
123           int offset = i386bsd_r_reg_offset[i];
124
125           if (offset != -1)
126             regcache_raw_collect (regcache, i, regs + offset);
127         }
128     }
129 }
130
131 /* Fetch register REGNUM from the inferior.  If REGNUM is -1, do this
132    for all registers (including the floating point registers).  */
133
134 static void
135 i386bsd_fetch_inferior_registers (int regnum)
136 {
137   if (regnum == -1 || GETREGS_SUPPLIES (regnum))
138     {
139       struct reg regs;
140
141       if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
142                   (PTRACE_TYPE_ARG3) &regs, 0) == -1)
143         perror_with_name (_("Couldn't get registers"));
144
145       i386bsd_supply_gregset (current_regcache, &regs);
146       if (regnum != -1)
147         return;
148     }
149
150   if (regnum == -1 || regnum >= I386_ST0_REGNUM)
151     {
152       struct fpreg fpregs;
153 #ifdef HAVE_PT_GETXMMREGS
154       char xmmregs[512];
155
156       if (have_ptrace_xmmregs != 0
157           && ptrace(PT_GETXMMREGS, PIDGET (inferior_ptid),
158                     (PTRACE_TYPE_ARG3) xmmregs, 0) == 0)
159         {
160           have_ptrace_xmmregs = 1;
161           i387_supply_fxsave (current_regcache, -1, xmmregs);
162         }
163       else
164         {
165           if (ptrace (PT_GETFPREGS, PIDGET (inferior_ptid),
166                       (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
167             perror_with_name (_("Couldn't get floating point status"));
168
169           i387_supply_fsave (current_regcache, -1, &fpregs);
170         }
171 #else
172       if (ptrace (PT_GETFPREGS, PIDGET (inferior_ptid),
173                   (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
174         perror_with_name (_("Couldn't get floating point status"));
175
176       i387_supply_fsave (current_regcache, -1, &fpregs);
177 #endif
178     }
179 }
180
181 /* Store register REGNUM back into the inferior.  If REGNUM is -1, do
182    this for all registers (including the floating point registers).  */
183
184 static void
185 i386bsd_store_inferior_registers (int regnum)
186 {
187   if (regnum == -1 || GETREGS_SUPPLIES (regnum))
188     {
189       struct reg regs;
190
191       if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
192                   (PTRACE_TYPE_ARG3) &regs, 0) == -1)
193         perror_with_name (_("Couldn't get registers"));
194
195       i386bsd_collect_gregset (current_regcache, &regs, regnum);
196
197       if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
198                   (PTRACE_TYPE_ARG3) &regs, 0) == -1)
199         perror_with_name (_("Couldn't write registers"));
200
201       if (regnum != -1)
202         return;
203     }
204
205   if (regnum == -1 || regnum >= I386_ST0_REGNUM)
206     {
207       struct fpreg fpregs;
208 #ifdef HAVE_PT_GETXMMREGS
209       char xmmregs[512];
210
211       if (have_ptrace_xmmregs != 0
212           && ptrace(PT_GETXMMREGS, PIDGET (inferior_ptid),
213                     (PTRACE_TYPE_ARG3) xmmregs, 0) == 0)
214         {
215           have_ptrace_xmmregs = 1;
216
217           i387_collect_fxsave (current_regcache, regnum, xmmregs);
218
219           if (ptrace (PT_SETXMMREGS, PIDGET (inferior_ptid),
220                       (PTRACE_TYPE_ARG3) xmmregs, 0) == -1)
221             perror_with_name (_("Couldn't write XMM registers"));
222         }
223       else
224         {
225           have_ptrace_xmmregs = 0;
226 #endif
227           if (ptrace (PT_GETFPREGS, PIDGET (inferior_ptid),
228                       (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
229             perror_with_name (_("Couldn't get floating point status"));
230
231           i387_collect_fsave (current_regcache, regnum, &fpregs);
232
233           if (ptrace (PT_SETFPREGS, PIDGET (inferior_ptid),
234                       (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
235             perror_with_name (_("Couldn't write floating point status"));
236 #ifdef HAVE_PT_GETXMMREGS
237         }
238 #endif
239     }
240 }
241
242 /* Create a prototype *BSD/i386 target.  The client can override it
243    with local methods.  */
244
245 struct target_ops *
246 i386bsd_target (void)
247 {
248   struct target_ops *t;
249
250   t = inf_ptrace_target ();
251   t->to_fetch_registers = i386bsd_fetch_inferior_registers;
252   t->to_store_registers = i386bsd_store_inferior_registers;
253   return t;
254 }
255 \f
256
257 /* Support for debug registers.  */
258
259 #ifdef HAVE_PT_GETDBREGS
260
261 /* Not all versions of FreeBSD/i386 that support the debug registers
262    have this macro.  */
263 #ifndef DBREG_DRX
264 #define DBREG_DRX(d, x) ((&d->dr0)[x])
265 #endif
266
267 static void
268 i386bsd_dr_set (int regnum, unsigned int value)
269 {
270   struct dbreg dbregs;
271
272   if (ptrace (PT_GETDBREGS, PIDGET (inferior_ptid),
273               (PTRACE_TYPE_ARG3) &dbregs, 0) == -1)
274     perror_with_name (_("Couldn't get debug registers"));
275
276   /* For some mysterious reason, some of the reserved bits in the
277      debug control register get set.  Mask these off, otherwise the
278      ptrace call below will fail.  */
279   DBREG_DRX ((&dbregs), 7) &= ~(0x0000fc00);
280
281   DBREG_DRX ((&dbregs), regnum) = value;
282
283   if (ptrace (PT_SETDBREGS, PIDGET (inferior_ptid),
284               (PTRACE_TYPE_ARG3) &dbregs, 0) == -1)
285     perror_with_name (_("Couldn't write debug registers"));
286 }
287
288 void
289 i386bsd_dr_set_control (unsigned long control)
290 {
291   i386bsd_dr_set (7, control);
292 }
293
294 void
295 i386bsd_dr_set_addr (int regnum, CORE_ADDR addr)
296 {
297   gdb_assert (regnum >= 0 && regnum <= 4);
298
299   i386bsd_dr_set (regnum, addr);
300 }
301
302 void
303 i386bsd_dr_reset_addr (int regnum)
304 {
305   gdb_assert (regnum >= 0 && regnum <= 4);
306
307   i386bsd_dr_set (regnum, 0);
308 }
309
310 unsigned long
311 i386bsd_dr_get_status (void)
312 {
313   struct dbreg dbregs;
314
315   /* FIXME: kettenis/2001-03-31: Calling perror_with_name if the
316      ptrace call fails breaks debugging remote targets.  The correct
317      way to fix this is to add the hardware breakpoint and watchpoint
318      stuff to the target vector.  For now, just return zero if the
319      ptrace call fails.  */
320   if (ptrace (PT_GETDBREGS, PIDGET (inferior_ptid),
321               (PTRACE_TYPE_ARG3) &dbregs, 0) == -1)
322 #if 0
323     perror_with_name (_("Couldn't read debug registers"));
324 #else
325     return 0;
326 #endif
327
328   return DBREG_DRX ((&dbregs), 6);
329 }
330
331 #endif /* PT_GETDBREGS */
332 \f
333
334 void
335 _initialize_i386bsd_nat (void)
336 {
337   int offset;
338
339   /* To support the recognition of signal handlers, i386bsd-tdep.c
340      hardcodes some constants.  Inclusion of this file means that we
341      are compiling a native debugger, which means that we can use the
342      system header files and sysctl(3) to get at the relevant
343      information.  */
344
345 #if defined (__FreeBSD_version) && __FreeBSD_version >= 400011
346 #define SC_REG_OFFSET i386fbsd4_sc_reg_offset
347 #elif defined (__FreeBSD_version) && __FreeBSD_version >= 300005
348 #define SC_REG_OFFSET i386fbsd_sc_reg_offset
349 #elif defined (NetBSD) || defined (__NetBSD_Version__)
350 #define SC_REG_OFFSET i386nbsd_sc_reg_offset
351 #elif defined (OpenBSD)
352 #define SC_REG_OFFSET i386obsd_sc_reg_offset
353 #endif
354
355 #ifdef SC_REG_OFFSET
356
357   /* We only check the program counter, stack pointer and frame
358      pointer since these members of `struct sigcontext' are essential
359      for providing backtraces.  More checks could be added, but would
360      involve adding configure checks for the appropriate structure
361      members, since older BSD's don't provide all of them.  */
362
363 #define SC_PC_OFFSET SC_REG_OFFSET[I386_EIP_REGNUM]
364 #define SC_SP_OFFSET SC_REG_OFFSET[I386_ESP_REGNUM]
365 #define SC_FP_OFFSET SC_REG_OFFSET[I386_EBP_REGNUM]
366
367   /* Override the default value for the offset of the program counter
368      in the sigcontext structure.  */
369   offset = offsetof (struct sigcontext, sc_pc);
370
371   if (SC_PC_OFFSET != offset)
372     {
373       warning (_("\
374 offsetof (struct sigcontext, sc_pc) yields %d instead of %d.\n\
375 Please report this to <bug-gdb@gnu.org>."), 
376                offset, SC_PC_OFFSET);
377     }
378
379   SC_PC_OFFSET = offset;
380
381   /* Likewise for the stack pointer.  */
382   offset = offsetof (struct sigcontext, sc_sp);
383
384   if (SC_SP_OFFSET != offset)
385     {
386       warning (_("\
387 offsetof (struct sigcontext, sc_sp) yields %d instead of %d.\n\
388 Please report this to <bug-gdb@gnu.org>."),
389                offset, SC_SP_OFFSET);
390     }
391
392   SC_SP_OFFSET = offset;
393
394   /* And the frame pointer.  */
395   offset = offsetof (struct sigcontext, sc_fp);
396
397   if (SC_FP_OFFSET != offset)
398     {
399       warning (_("\
400 offsetof (struct sigcontext, sc_fp) yields %d instead of %d.\n\
401 Please report this to <bug-gdb@gnu.org>."),
402                offset, SC_FP_OFFSET);
403     }
404
405   SC_FP_OFFSET = offset;
406
407 #endif /* SC_REG_OFFSET */
408 }