1 /* Copyright (C) 1986-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include "cli/cli-cmds.h"
20 #include "gdbsupport/def-vector.h"
23 #include "reggroups.h"
28 /* Dump registers from regcache, used for dumping raw registers and
31 class register_dump_regcache
: public register_dump
34 register_dump_regcache (regcache
*regcache
, bool dump_pseudo
)
35 : register_dump (regcache
->arch ()), m_regcache (regcache
),
36 m_dump_pseudo (dump_pseudo
)
41 void dump_reg (ui_file
*file
, int regnum
) override
46 gdb_printf (file
, "Cooked value");
48 gdb_printf (file
, "Raw value");
52 if (regnum
< gdbarch_num_regs (m_gdbarch
) || m_dump_pseudo
)
54 auto size
= register_size (m_gdbarch
, regnum
);
59 gdb::byte_vector
buf (size
);
60 auto status
= m_regcache
->cooked_read (regnum
, buf
.data ());
62 if (status
== REG_UNKNOWN
)
63 gdb_printf (file
, "<invalid>");
64 else if (status
== REG_UNAVAILABLE
)
65 gdb_printf (file
, "<unavailable>");
68 print_hex_chars (file
, buf
.data (), size
,
69 gdbarch_byte_order (m_gdbarch
), true);
74 /* Just print "<cooked>" for pseudo register when
76 gdb_printf (file
, "<cooked>");
84 /* Dump pseudo registers or not. */
85 const bool m_dump_pseudo
;
88 /* Dump from reg_buffer, used when there is no thread or
91 class register_dump_reg_buffer
: public register_dump
, reg_buffer
94 register_dump_reg_buffer (gdbarch
*gdbarch
, bool dump_pseudo
)
95 : register_dump (gdbarch
), reg_buffer (gdbarch
, dump_pseudo
)
100 void dump_reg (ui_file
*file
, int regnum
) override
105 gdb_printf (file
, "Cooked value");
107 gdb_printf (file
, "Raw value");
111 if (regnum
< gdbarch_num_regs (m_gdbarch
) || m_has_pseudo
)
113 auto size
= register_size (m_gdbarch
, regnum
);
118 auto status
= get_register_status (regnum
);
120 gdb_assert (status
!= REG_VALID
);
122 if (status
== REG_UNKNOWN
)
123 gdb_printf (file
, "<invalid>");
125 gdb_printf (file
, "<unavailable>");
129 /* Just print "<cooked>" for pseudo register when
130 regcache_dump_raw. */
131 gdb_printf (file
, "<cooked>");
137 /* For "maint print registers". */
139 class register_dump_none
: public register_dump
142 register_dump_none (gdbarch
*arch
)
143 : register_dump (arch
)
147 void dump_reg (ui_file
*file
, int regnum
) override
151 /* For "maint print remote-registers". */
153 class register_dump_remote
: public register_dump
156 register_dump_remote (gdbarch
*arch
)
157 : register_dump (arch
)
161 void dump_reg (ui_file
*file
, int regnum
) override
165 gdb_printf (file
, "Rmt Nr g/G Offset Expedited");
167 else if (regnum
< gdbarch_num_regs (m_gdbarch
))
171 if (remote_register_number_and_offset (m_gdbarch
, regnum
,
174 if (remote_register_is_expedited (regnum
))
175 gdb_printf (file
, "%7d %11d yes", pnum
, poffset
);
177 gdb_printf (file
, "%7d %11d", pnum
, poffset
);
183 /* For "maint print register-groups". */
185 class register_dump_groups
: public register_dump
188 register_dump_groups (gdbarch
*arch
)
189 : register_dump (arch
)
193 void dump_reg (ui_file
*file
, int regnum
) override
196 gdb_printf (file
, "Groups");
199 const char *sep
= "";
200 for (const struct reggroup
*group
: gdbarch_reggroups (m_gdbarch
))
202 if (gdbarch_register_reggroup_p (m_gdbarch
, regnum
, group
))
204 gdb_printf (file
, "%s%s", sep
, group
->name ());
212 enum regcache_dump_what
214 regcache_dump_none
, regcache_dump_raw
,
215 regcache_dump_cooked
, regcache_dump_groups
,
220 regcache_print (const char *args
, enum regcache_dump_what what_to_dump
)
222 /* Where to send output. */
230 if (!file
.open (args
, "w"))
231 perror_with_name (_("maintenance print architecture"));
235 std::unique_ptr
<register_dump
> dump
;
236 std::unique_ptr
<regcache
> regs
;
239 if (target_has_registers ())
240 gdbarch
= get_thread_regcache (inferior_thread ())->arch ();
242 gdbarch
= current_inferior ()->arch ();
244 switch (what_to_dump
)
246 case regcache_dump_none
:
247 dump
= std::make_unique
<register_dump_none
> (gdbarch
);
249 case regcache_dump_remote
:
250 dump
= std::make_unique
<register_dump_remote
> (gdbarch
);
252 case regcache_dump_groups
:
253 dump
= std::make_unique
<register_dump_groups
> (gdbarch
);
255 case regcache_dump_raw
:
256 case regcache_dump_cooked
:
258 auto dump_pseudo
= (what_to_dump
== regcache_dump_cooked
);
260 if (target_has_registers ())
261 dump
= (std::make_unique
<register_dump_regcache
>
262 (get_thread_regcache (inferior_thread ()), dump_pseudo
));
265 /* For the benefit of "maint print registers" & co when
266 debugging an executable, allow dumping a regcache even when
267 there is no thread selected / no registers. */
268 dump
= std::make_unique
<register_dump_reg_buffer
> (gdbarch
,
279 maintenance_print_registers (const char *args
, int from_tty
)
281 regcache_print (args
, regcache_dump_none
);
285 maintenance_print_raw_registers (const char *args
, int from_tty
)
287 regcache_print (args
, regcache_dump_raw
);
291 maintenance_print_cooked_registers (const char *args
, int from_tty
)
293 regcache_print (args
, regcache_dump_cooked
);
297 maintenance_print_register_groups (const char *args
, int from_tty
)
299 regcache_print (args
, regcache_dump_groups
);
303 maintenance_print_remote_registers (const char *args
, int from_tty
)
305 regcache_print (args
, regcache_dump_remote
);
308 void _initialize_regcache_dump ();
310 _initialize_regcache_dump ()
312 add_cmd ("registers", class_maintenance
, maintenance_print_registers
,
313 _("Print the internal register configuration.\n"
314 "Takes an optional file parameter."), &maintenanceprintlist
);
315 add_cmd ("raw-registers", class_maintenance
,
316 maintenance_print_raw_registers
,
317 _("Print the internal register configuration "
318 "including raw values.\n"
319 "Takes an optional file parameter."), &maintenanceprintlist
);
320 add_cmd ("cooked-registers", class_maintenance
,
321 maintenance_print_cooked_registers
,
322 _("Print the internal register configuration "
323 "including cooked values.\n"
324 "Takes an optional file parameter."), &maintenanceprintlist
);
325 add_cmd ("register-groups", class_maintenance
,
326 maintenance_print_register_groups
,
327 _("Print the internal register configuration "
328 "including each register's group.\n"
329 "Takes an optional file parameter."),
330 &maintenanceprintlist
);
331 add_cmd ("remote-registers", class_maintenance
,
332 maintenance_print_remote_registers
, _("\
333 Print the internal register configuration.\n\
334 Usage: maintenance print remote-registers [FILE]\n\
335 The remote register number and g/G packets offset are included,\n\
336 as well as which registers were sent in the last stop reply packet\n\
337 (i.e., expedited)."),
338 &maintenanceprintlist
);