1 /* Native-dependent code for BSD Unix running on i386's, for GDB.
2 Copyright 1988, 1989, 1991, 1992, 1994, 1996 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #ifdef FETCH_INFERIOR_REGISTERS
23 #include <sys/types.h>
24 #include <sys/ptrace.h>
25 #include <machine/reg.h>
26 #include <machine/frame.h>
30 fetch_inferior_registers(regno
)
33 struct reg inferior_registers
;
35 ptrace (PT_GETREGS
, inferior_pid
, (PTRACE_ARG3_TYPE
) &inferior_registers
, 0);
36 memcpy (®isters
[REGISTER_BYTE (0)], &inferior_registers
, 4*NUM_REGS
);
41 store_inferior_registers(regno
)
44 struct reg inferior_registers
;
46 memcpy (&inferior_registers
, ®isters
[REGISTER_BYTE (0)], 4*NUM_REGS
);
47 ptrace (PT_SETREGS
, inferior_pid
, (PTRACE_ARG3_TYPE
) &inferior_registers
, 0);
56 fetch_core_registers (core_reg_sect
, core_reg_size
, which
, ignore
)
58 unsigned core_reg_size
;
62 struct md_core
*core_reg
= (struct md_core
*)core_reg_sect
;
64 /* integer registers */
65 memcpy(®isters
[REGISTER_BYTE (0)], &core_reg
->intreg
,
67 /* floating point registers */
73 #include <machine/reg.h>
75 /* this table must line up with REGISTER_NAMES in tm-i386.h */
76 /* symbols like 'tEAX' come from <machine/reg.h> */
77 static int tregmap
[] =
79 tEAX
, tECX
, tEDX
, tEBX
,
80 tESP
, tEBP
, tESI
, tEDI
,
81 tEIP
, tEFLAGS
, tCS
, tSS
85 static int sregmap
[] =
87 sEAX
, sECX
, sEDX
, sEBX
,
88 sESP
, sEBP
, sESI
, sEDI
,
89 sEIP
, sEFLAGS
, sCS
, sSS
93 /* FreeBSD has decided to collapse the s* and t* symbols. So if the s*
94 ones aren't around, use the t* ones for sregmap too. */
96 static int sregmap
[] =
98 tEAX
, tECX
, tEDX
, tEBX
,
99 tESP
, tEBP
, tESI
, tEDI
,
100 tEIP
, tEFLAGS
, tCS
, tSS
104 /* blockend is the value of u.u_ar0, and points to the
105 place where ES is stored. */
108 i386_register_u_addr (blockend
, regnum
)
112 /* The following condition is a kludge to get at the proper register map
113 depending upon the state of pcb_flag.
114 The proper condition would be
115 if (u.u_pcb.pcb_flag & FM_TRAP)
116 but that would require a ptrace call here and wouldn't work
119 if (blockend
< 0x1fcc)
120 return (blockend
+ 4 * tregmap
[regnum
]);
122 return (blockend
+ 4 * sregmap
[regnum
]);
125 #endif /* !FETCH_INFERIOR_REGISTERS */
128 #include "expression.h"
129 #include "language.h" /* for local_hex_string */
130 #include "floatformat.h"
132 #include <sys/param.h>
135 #include <sys/ioctl.h>
140 #include <sys/time.h>
141 #include <sys/resource.h>
143 #define curpcb Xcurpcb /* XXX avoid leaking declaration from pcb.h */
144 #include <sys/user.h>
146 #include <sys/file.h>
147 #include "gdb_stat.h"
148 #include <sys/ptrace.h>
150 extern void print_387_control_word (); /* i387-tdep.h */
151 extern void print_387_status_word ();
153 #define fpstate save87
154 #define U_FPSTATE(u) u.u_pcb.pcb_savefpu
158 unsigned short control
;
160 unsigned short status
;
165 unsigned short code_seg
;
166 unsigned short opcode
;
167 unsigned long operand
;
168 unsigned short operand_seg
;
170 unsigned char regs
[8][10];
174 print_387_status (status
, ep
)
175 unsigned short status
;
183 bothstatus
= ((status
!= 0) && (ep
->status
!= 0));
187 printf_unfiltered ("u: ");
188 print_387_status_word ((unsigned int)status
);
194 printf_unfiltered ("e: ");
195 print_387_status_word ((unsigned int)ep
->status
);
198 print_387_control_word ((unsigned int)ep
->control
);
199 printf_unfiltered ("last exception: ");
200 printf_unfiltered ("opcode %s; ", local_hex_string(ep
->opcode
));
201 printf_unfiltered ("pc %s:", local_hex_string(ep
->code_seg
));
202 printf_unfiltered ("%s; ", local_hex_string(ep
->eip
));
203 printf_unfiltered ("operand %s", local_hex_string(ep
->operand_seg
));
204 printf_unfiltered (":%s\n", local_hex_string(ep
->operand
));
206 top
= (ep
->status
>> 11) & 7;
208 printf_unfiltered ("regno tag msb lsb value\n");
209 for (fpreg
= 7; fpreg
>= 0; fpreg
--)
213 printf_unfiltered ("%s %d: ", fpreg
== top
? "=>" : " ", fpreg
);
215 switch ((ep
->tag
>> (fpreg
* 2)) & 3)
217 case 0: printf_unfiltered ("valid "); break;
218 case 1: printf_unfiltered ("zero "); break;
219 case 2: printf_unfiltered ("trap "); break;
220 case 3: printf_unfiltered ("empty "); break;
222 for (i
= 9; i
>= 0; i
--)
223 printf_unfiltered ("%02x", ep
->regs
[fpreg
][i
]);
225 floatformat_to_double(&floatformat_i387_ext
, (char *) ep
->regs
[fpreg
],
227 printf_unfiltered (" %g\n", val
);
233 struct user u
; /* just for address computations */
235 /* fpstate defined in <sys/user.h> */
236 struct fpstate
*fpstatep
;
237 char buf
[sizeof (struct fpstate
) + 2 * sizeof (int)];
240 unsigned int rounded_addr
;
241 unsigned int rounded_size
;
242 /*extern int corechan;*/
244 extern int inferior_pid
;
246 uaddr
= (char *)&U_FPSTATE(u
) - (char *)&u
;
251 rounded_addr
= uaddr
& -sizeof (int);
252 rounded_size
= (((uaddr
+ sizeof (struct fpstate
)) - uaddr
) +
253 sizeof (int) - 1) / sizeof (int);
254 skip
= uaddr
- rounded_addr
;
257 for (i
= 0; i
< rounded_size
; i
++)
259 *ip
++ = ptrace (PT_READ_U
, inferior_pid
, (caddr_t
)rounded_addr
, 0);
260 rounded_addr
+= sizeof (int);
265 printf("float info: can't do a core file (yet)\n");
268 if (lseek (corechan
, uaddr
, 0) < 0)
269 perror_with_name ("seek on core file");
270 if (myread (corechan
, buf
, sizeof (struct fpstate
)) < 0)
271 perror_with_name ("read from core file");
276 print_387_status (0, (struct env387
*)buf
);
282 return (sizeof (struct user
));