1 /* Register groupings for GDB, the GNU debugger.
3 Copyright (C) 2002-2023 Free Software Foundation, Inc.
5 Contributed by Red Hat.
7 This file is part of GDB.
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "arch-utils.h"
24 #include "reggroups.h"
29 #include "gdbsupport/gdb_obstack.h"
31 /* See reggroups.h. */
34 reggroup_new (const char *name
, enum reggroup_type type
)
36 return new reggroup (name
, type
);
39 /* See reggroups.h. */
42 reggroup_gdbarch_new (struct gdbarch
*gdbarch
, const char *name
,
43 enum reggroup_type type
)
45 name
= gdbarch_obstack_strdup (gdbarch
, name
);
46 return obstack_new
<struct reggroup
> (gdbarch_obstack (gdbarch
),
50 /* A container holding all the register groups for a particular
57 /* Add the default groups. */
58 add (general_reggroup
);
60 add (system_reggroup
);
61 add (vector_reggroup
);
64 add (restore_reggroup
);
67 DISABLE_COPY_AND_ASSIGN (reggroups
);
69 /* Add GROUP to the list of register groups. */
71 void add (const reggroup
*group
)
73 gdb_assert (group
!= nullptr);
75 auto find_by_name
= [group
] (const reggroup
*g
)
77 return streq (group
->name (), g
->name ());
79 gdb_assert (std::find_if (m_groups
.begin (), m_groups
.end (), find_by_name
)
82 m_groups
.push_back (group
);
85 /* The number of register groups. */
87 std::vector
<struct reggroup
*>::size_type
90 return m_groups
.size ();
93 /* Return a reference to the list of all groups. */
95 const std::vector
<const struct reggroup
*> &
102 /* The register groups. */
103 std::vector
<const struct reggroup
*> m_groups
;
106 /* Key used to lookup register group data from a gdbarch. */
108 static const registry
<gdbarch
>::key
<reggroups
> reggroups_data
;
110 /* Get the reggroups for the architecture, creating if necessary. */
113 get_reggroups (struct gdbarch
*gdbarch
)
115 struct reggroups
*groups
= reggroups_data
.get (gdbarch
);
116 if (groups
== nullptr)
117 groups
= reggroups_data
.emplace (gdbarch
);
121 /* See reggroups.h. */
124 reggroup_add (struct gdbarch
*gdbarch
, const reggroup
*group
)
126 struct reggroups
*groups
= get_reggroups (gdbarch
);
128 gdb_assert (groups
!= nullptr);
129 gdb_assert (group
!= nullptr);
134 /* See reggroups.h. */
135 const std::vector
<const reggroup
*> &
136 gdbarch_reggroups (struct gdbarch
*gdbarch
)
138 struct reggroups
*groups
= get_reggroups (gdbarch
);
139 gdb_assert (groups
!= nullptr);
140 gdb_assert (groups
->size () > 0);
141 return groups
->groups ();
144 /* See reggroups.h. */
147 default_register_reggroup_p (struct gdbarch
*gdbarch
, int regnum
,
148 const struct reggroup
*group
)
154 if (*gdbarch_register_name (gdbarch
, regnum
) == '\0')
156 if (group
== all_reggroup
)
158 vector_p
= register_type (gdbarch
, regnum
)->is_vector ();
159 float_p
= (register_type (gdbarch
, regnum
)->code () == TYPE_CODE_FLT
160 || (register_type (gdbarch
, regnum
)->code ()
161 == TYPE_CODE_DECFLOAT
));
162 raw_p
= regnum
< gdbarch_num_regs (gdbarch
);
163 if (group
== float_reggroup
)
165 if (group
== vector_reggroup
)
167 if (group
== general_reggroup
)
168 return (!vector_p
&& !float_p
);
169 if (group
== save_reggroup
|| group
== restore_reggroup
)
174 /* See reggroups.h. */
177 reggroup_find (struct gdbarch
*gdbarch
, const char *name
)
179 for (const struct reggroup
*group
: gdbarch_reggroups (gdbarch
))
181 if (strcmp (name
, group
->name ()) == 0)
187 /* Dump out a table of register groups for the current architecture. */
190 reggroups_dump (struct gdbarch
*gdbarch
, struct ui_file
*file
)
192 static constexpr const char *fmt
= " %-10s %-10s\n";
194 gdb_printf (file
, fmt
, "Group", "Type");
196 for (const struct reggroup
*group
: gdbarch_reggroups (gdbarch
))
199 const char *name
= group
->name ();
204 switch (group
->type ())
209 case INTERNAL_REGGROUP
:
213 internal_error (_("bad switch"));
216 /* Note: If you change this, be sure to also update the
219 gdb_printf (file
, fmt
, name
, type
);
223 /* Implement 'maintenance print reggroups' command. */
226 maintenance_print_reggroups (const char *args
, int from_tty
)
228 struct gdbarch
*gdbarch
= get_current_arch ();
231 reggroups_dump (gdbarch
, gdb_stdout
);
236 if (!file
.open (args
, "w"))
237 perror_with_name (_("maintenance print reggroups"));
238 reggroups_dump (gdbarch
, &file
);
242 /* Pre-defined register groups. */
243 static const reggroup general_group
= { "general", USER_REGGROUP
};
244 static const reggroup float_group
= { "float", USER_REGGROUP
};
245 static const reggroup system_group
= { "system", USER_REGGROUP
};
246 static const reggroup vector_group
= { "vector", USER_REGGROUP
};
247 static const reggroup all_group
= { "all", USER_REGGROUP
};
248 static const reggroup save_group
= { "save", INTERNAL_REGGROUP
};
249 static const reggroup restore_group
= { "restore", INTERNAL_REGGROUP
};
251 const reggroup
*const general_reggroup
= &general_group
;
252 const reggroup
*const float_reggroup
= &float_group
;
253 const reggroup
*const system_reggroup
= &system_group
;
254 const reggroup
*const vector_reggroup
= &vector_group
;
255 const reggroup
*const all_reggroup
= &all_group
;
256 const reggroup
*const save_reggroup
= &save_group
;
257 const reggroup
*const restore_reggroup
= &restore_group
;
259 void _initialize_reggroup ();
261 _initialize_reggroup ()
263 add_cmd ("reggroups", class_maintenance
,
264 maintenance_print_reggroups
, _("\
265 Print the internal register group names.\n\
266 Takes an optional file parameter."),
267 &maintenanceprintlist
);