2002-11-02 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / reggroups.c
1 /* Register groupings for GDB, the GNU debugger.
2
3 Copyright 2002 Free Software Foundation, Inc.
4
5 Contributed by Red Hat.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 #include "defs.h"
25 #include "reggroups.h"
26 #include "gdbtypes.h"
27 #include "gdb_assert.h"
28 #include "regcache.h"
29 #include "command.h"
30 #include "gdbcmd.h" /* For maintenanceprintlist. */
31
32 /* Individual register groups. */
33
34 struct reggroup
35 {
36 const char *name;
37 enum reggroup_type type;
38 };
39
40 struct reggroup *
41 reggroup_new (const char *name, enum reggroup_type type)
42 {
43 struct reggroup *group = XMALLOC (struct reggroup);
44 group->name = name;
45 group->type = type;
46 return group;
47 }
48
49 /* Register group attributes. */
50
51 const char *
52 reggroup_name (struct reggroup *group)
53 {
54 return group->name;
55 }
56
57 enum reggroup_type
58 reggroup_type (struct reggroup *group)
59 {
60 return group->type;
61 }
62
63 /* All the groups for a given architecture. */
64
65 struct reggroups
66 {
67 int nr_group;
68 struct reggroup **group;
69 };
70
71 static struct gdbarch_data *reggroups_data;
72
73 static void *
74 reggroups_init (struct gdbarch *gdbarch)
75 {
76 struct reggroups *groups = XMALLOC (struct reggroups);
77 groups->nr_group = 0;
78 groups->group = NULL;
79 return groups;
80 }
81
82 static void
83 reggroups_free (struct gdbarch *gdbarch, void *data)
84 {
85 struct reggroups *groups = data;
86 xfree (groups->group);
87 xfree (groups);
88 }
89
90 /* Add a register group (with attribute values) to the pre-defined
91 list. This function can be called during architecture
92 initialization and hence needs to handle NULL architecture groups. */
93
94 static void
95 add_group (struct reggroups *groups, struct reggroup *group)
96 {
97 gdb_assert (group != NULL);
98 groups->nr_group++;
99 groups->group = xrealloc (groups->group, (sizeof (struct reggroup *)
100 * (groups->nr_group + 1)));
101 groups->group[groups->nr_group - 1] = group;
102 groups->group[groups->nr_group] = NULL;
103 }
104
105 void
106 reggroup_add (struct gdbarch *gdbarch, struct reggroup *group)
107 {
108 struct reggroups *groups = gdbarch_data (gdbarch, reggroups_data);
109 if (groups == NULL)
110 {
111 /* ULGH, called during architecture initialization. Patch
112 things up. */
113 groups = reggroups_init (gdbarch);
114 set_gdbarch_data (gdbarch, reggroups_data, groups);
115 }
116 add_group (groups, group);
117 }
118
119 /* The register groups for the current architecture. Mumble something
120 about the lifetime of the buffer.... */
121
122 static struct reggroups *default_groups;
123
124 struct reggroup * const*
125 reggroups (struct gdbarch *gdbarch)
126 {
127 struct reggroups *groups = gdbarch_data (gdbarch, reggroups_data);
128 /* Don't allow this function to be called during architecture
129 creation. */
130 gdb_assert (groups != NULL);
131 if (groups->group == NULL)
132 return default_groups->group;
133 else
134 return groups->group;
135 }
136
137 /* Is REGNUM a member of REGGROUP? */
138 int
139 default_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
140 struct reggroup *group)
141 {
142 int vector_p;
143 int float_p;
144 int raw_p;
145 if (REGISTER_NAME (regnum) == NULL
146 || *REGISTER_NAME (regnum) == '\0')
147 return 0;
148 if (group == all_reggroup)
149 return 1;
150 vector_p = TYPE_VECTOR (register_type (gdbarch, regnum));
151 float_p = TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT;
152 raw_p = regnum < gdbarch_num_regs (gdbarch);
153 if (group == float_reggroup)
154 return float_p;
155 if (group == vector_reggroup)
156 return vector_p;
157 if (group == general_reggroup)
158 return (!vector_p && !float_p);
159 if (group == save_reggroup || group == restore_reggroup)
160 return raw_p;
161 return 0;
162 }
163
164 /* Dump out a table of register groups for the current architecture. */
165
166 static void
167 reggroups_dump (struct gdbarch *gdbarch, struct ui_file *file)
168 {
169 struct reggroup *const *groups = reggroups (gdbarch);
170 int i = -1;
171 do
172 {
173 /* Group name. */
174 {
175 const char *name;
176 if (i < 0)
177 name = "Group";
178 else
179 name = reggroup_name (groups[i]);
180 fprintf_unfiltered (file, " %-10s", name);
181 }
182
183 /* Group type. */
184 {
185 const char *type;
186 if (i < 0)
187 type = "Type";
188 else
189 {
190 switch (reggroup_type (groups[i]))
191 {
192 case USER_REGGROUP:
193 type = "user";
194 break;
195 case INTERNAL_REGGROUP:
196 type = "internal";
197 break;
198 default:
199 internal_error (__FILE__, __LINE__, "bad switch");
200 }
201 }
202 fprintf_unfiltered (file, " %-10s", type);
203 }
204
205 /* Note: If you change this, be sure to also update the
206 documentation. */
207
208 fprintf_unfiltered (file, "\n");
209 i++;
210 }
211 while (groups[i] != NULL);
212 }
213
214 static void
215 maintenance_print_reggroups (char *args, int from_tty)
216 {
217 if (args == NULL)
218 reggroups_dump (current_gdbarch, gdb_stdout);
219 else
220 {
221 struct ui_file *file = gdb_fopen (args, "w");
222 if (file == NULL)
223 perror_with_name ("maintenance print reggroups");
224 reggroups_dump (current_gdbarch, file);
225 ui_file_delete (file);
226 }
227 }
228
229 /* Pre-defined register groups. */
230 static struct reggroup general_group = { "general", USER_REGGROUP };
231 static struct reggroup float_group = { "float", USER_REGGROUP };
232 static struct reggroup system_group = { "system", USER_REGGROUP };
233 static struct reggroup vector_group = { "vector", USER_REGGROUP };
234 static struct reggroup all_group = { "all", USER_REGGROUP };
235 static struct reggroup save_group = { "save", INTERNAL_REGGROUP };
236 static struct reggroup restore_group = { "restore", INTERNAL_REGGROUP };
237
238 struct reggroup *const general_reggroup = &general_group;
239 struct reggroup *const float_reggroup = &float_group;
240 struct reggroup *const system_reggroup = &system_group;
241 struct reggroup *const vector_reggroup = &vector_group;
242 struct reggroup *const all_reggroup = &all_group;
243 struct reggroup *const save_reggroup = &save_group;
244 struct reggroup *const restore_reggroup = &restore_group;
245
246 void
247 _initialize_reggroup (void)
248 {
249 reggroups_data = register_gdbarch_data (reggroups_init, reggroups_free);
250
251 /* The pre-defined list of groups. */
252 default_groups = reggroups_init (NULL);
253 add_group (default_groups, general_reggroup);
254 add_group (default_groups, float_reggroup);
255 add_group (default_groups, system_reggroup);
256 add_group (default_groups, vector_reggroup);
257 add_group (default_groups, all_reggroup);
258 add_group (default_groups, save_reggroup);
259 add_group (default_groups, restore_reggroup);
260
261
262 add_cmd ("reggroups", class_maintenance,
263 maintenance_print_reggroups, "\
264 Print the internal register group names.\n\
265 Takes an optional file parameter.",
266 &maintenanceprintlist);
267
268 }
This page took 0.037764 seconds and 5 git commands to generate.