]>
Commit | Line | Data |
---|---|---|
c906108c SS |
1 | /* Machine independent GDB support for core files on systems using "regsets". |
2 | Copyright 1993-1998 Free Software Foundation, Inc. | |
3 | ||
c5aa993b | 4 | This file is part of GDB. |
c906108c | 5 | |
c5aa993b JM |
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. | |
c906108c | 10 | |
c5aa993b JM |
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. | |
c906108c | 15 | |
c5aa993b JM |
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, | |
19 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
20 | |
21 | ||
c5aa993b | 22 | /* N O T E S |
c906108c | 23 | |
c5aa993b JM |
24 | This file is used by most systems that implement /proc. For these systems, |
25 | the general registers are laid out the same way in both the core file and | |
26 | the gregset_p structure. The current exception to this is Irix-4.*, where | |
27 | the gregset_p structure is split up into two pieces in the core file. | |
c906108c | 28 | |
c5aa993b JM |
29 | The general register and floating point register sets are manipulated by |
30 | separate ioctl's. This file makes the assumption that if FP0_REGNUM is | |
31 | defined, then support for the floating point register set is desired, | |
32 | regardless of whether or not the actual target has floating point hardware. | |
c906108c SS |
33 | |
34 | */ | |
35 | ||
36 | #include "defs.h" | |
37 | ||
38 | #include <time.h> | |
39 | #ifdef HAVE_SYS_PROCFS_H | |
40 | #include <sys/procfs.h> | |
41 | #endif | |
42 | #include <fcntl.h> | |
43 | #include <errno.h> | |
44 | #include "gdb_string.h" | |
45 | ||
46 | #include "inferior.h" | |
47 | #include "target.h" | |
48 | #include "command.h" | |
49 | #include "gdbcore.h" | |
50 | ||
51 | static void fetch_core_registers PARAMS ((char *, unsigned, int, CORE_ADDR)); | |
52 | ||
53 | void _initialize_core_regset PARAMS ((void)); | |
54 | ||
55 | /* | |
56 | ||
c5aa993b | 57 | GLOBAL FUNCTION |
c906108c | 58 | |
c5aa993b | 59 | fetch_core_registers -- fetch current registers from core file |
c906108c | 60 | |
c5aa993b | 61 | SYNOPSIS |
c906108c | 62 | |
c5aa993b JM |
63 | void fetch_core_registers (char *core_reg_sect, |
64 | unsigned core_reg_size, | |
65 | int which, CORE_ADDR reg_addr) | |
c906108c | 66 | |
c5aa993b | 67 | DESCRIPTION |
c906108c | 68 | |
c5aa993b JM |
69 | Read the values of either the general register set (WHICH equals 0) |
70 | or the floating point register set (WHICH equals 2) from the core | |
71 | file data (pointed to by CORE_REG_SECT), and update gdb's idea of | |
72 | their current values. The CORE_REG_SIZE parameter is ignored. | |
c906108c | 73 | |
c5aa993b | 74 | NOTES |
c906108c | 75 | |
c5aa993b JM |
76 | Use the indicated sizes to validate the gregset and fpregset |
77 | structures. | |
78 | */ | |
c906108c SS |
79 | |
80 | static void | |
81 | fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) | |
82 | char *core_reg_sect; | |
83 | unsigned core_reg_size; | |
84 | int which; | |
85 | CORE_ADDR reg_addr; /* Unused in this version */ | |
86 | { | |
87 | #if defined (HAVE_GREGSET_T) && defined (HAVE_FPREGSET_T) | |
88 | gregset_t gregset; | |
89 | fpregset_t fpregset; | |
90 | ||
91 | if (which == 0) | |
92 | { | |
93 | if (core_reg_size != sizeof (gregset)) | |
94 | { | |
95 | warning ("wrong size gregset struct in core file"); | |
96 | } | |
97 | else | |
98 | { | |
99 | memcpy ((char *) &gregset, core_reg_sect, sizeof (gregset)); | |
100 | supply_gregset (&gregset); | |
101 | } | |
102 | } | |
103 | else if (which == 2) | |
104 | { | |
105 | if (core_reg_size != sizeof (fpregset)) | |
106 | { | |
107 | warning ("wrong size fpregset struct in core file"); | |
108 | } | |
109 | else | |
110 | { | |
111 | memcpy ((char *) &fpregset, core_reg_sect, sizeof (fpregset)); | |
112 | #if defined (FP0_REGNUM) | |
113 | supply_fpregset (&fpregset); | |
114 | #endif | |
115 | } | |
116 | } | |
c5aa993b | 117 | #endif /* defined(HAVE_GREGSET_T) && defined (HAVE_FPREGSET_T) */ |
c906108c | 118 | } |
c906108c | 119 | \f |
c5aa993b | 120 | |
c906108c SS |
121 | /* Register that we are able to handle ELF file formats using standard |
122 | procfs "regset" structures. */ | |
123 | ||
124 | static struct core_fns regset_core_fns = | |
125 | { | |
126 | bfd_target_elf_flavour, | |
127 | fetch_core_registers, | |
128 | NULL | |
129 | }; | |
130 | ||
131 | void | |
132 | _initialize_core_regset () | |
133 | { | |
134 | add_core_fns (®set_core_fns); | |
135 | } |