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");
167 else if (regnum
< gdbarch_num_regs (m_gdbarch
))
171 if (remote_register_number_and_offset (m_gdbarch
, regnum
,
173 gdb_printf (file
, "%7d %11d", pnum
, poffset
);
178 /* For "maint print register-groups". */
180 class register_dump_groups
: public register_dump
183 register_dump_groups (gdbarch
*arch
)
184 : register_dump (arch
)
188 void dump_reg (ui_file
*file
, int regnum
) override
191 gdb_printf (file
, "Groups");
194 const char *sep
= "";
195 for (const struct reggroup
*group
: gdbarch_reggroups (m_gdbarch
))
197 if (gdbarch_register_reggroup_p (m_gdbarch
, regnum
, group
))
199 gdb_printf (file
, "%s%s", sep
, group
->name ());
207 enum regcache_dump_what
209 regcache_dump_none
, regcache_dump_raw
,
210 regcache_dump_cooked
, regcache_dump_groups
,
215 regcache_print (const char *args
, enum regcache_dump_what what_to_dump
)
217 /* Where to send output. */
225 if (!file
.open (args
, "w"))
226 perror_with_name (_("maintenance print architecture"));
230 std::unique_ptr
<register_dump
> dump
;
231 std::unique_ptr
<regcache
> regs
;
234 if (target_has_registers ())
235 gdbarch
= get_thread_regcache (inferior_thread ())->arch ();
237 gdbarch
= current_inferior ()->arch ();
239 switch (what_to_dump
)
241 case regcache_dump_none
:
242 dump
.reset (new register_dump_none (gdbarch
));
244 case regcache_dump_remote
:
245 dump
.reset (new register_dump_remote (gdbarch
));
247 case regcache_dump_groups
:
248 dump
.reset (new register_dump_groups (gdbarch
));
250 case regcache_dump_raw
:
251 case regcache_dump_cooked
:
253 auto dump_pseudo
= (what_to_dump
== regcache_dump_cooked
);
255 if (target_has_registers ())
256 dump
.reset (new register_dump_regcache (get_thread_regcache
257 (inferior_thread ()),
261 /* For the benefit of "maint print registers" & co when
262 debugging an executable, allow dumping a regcache even when
263 there is no thread selected / no registers. */
264 dump
.reset (new register_dump_reg_buffer (gdbarch
, dump_pseudo
));
274 maintenance_print_registers (const char *args
, int from_tty
)
276 regcache_print (args
, regcache_dump_none
);
280 maintenance_print_raw_registers (const char *args
, int from_tty
)
282 regcache_print (args
, regcache_dump_raw
);
286 maintenance_print_cooked_registers (const char *args
, int from_tty
)
288 regcache_print (args
, regcache_dump_cooked
);
292 maintenance_print_register_groups (const char *args
, int from_tty
)
294 regcache_print (args
, regcache_dump_groups
);
298 maintenance_print_remote_registers (const char *args
, int from_tty
)
300 regcache_print (args
, regcache_dump_remote
);
303 void _initialize_regcache_dump ();
305 _initialize_regcache_dump ()
307 add_cmd ("registers", class_maintenance
, maintenance_print_registers
,
308 _("Print the internal register configuration.\n"
309 "Takes an optional file parameter."), &maintenanceprintlist
);
310 add_cmd ("raw-registers", class_maintenance
,
311 maintenance_print_raw_registers
,
312 _("Print the internal register configuration "
313 "including raw values.\n"
314 "Takes an optional file parameter."), &maintenanceprintlist
);
315 add_cmd ("cooked-registers", class_maintenance
,
316 maintenance_print_cooked_registers
,
317 _("Print the internal register configuration "
318 "including cooked values.\n"
319 "Takes an optional file parameter."), &maintenanceprintlist
);
320 add_cmd ("register-groups", class_maintenance
,
321 maintenance_print_register_groups
,
322 _("Print the internal register configuration "
323 "including each register's group.\n"
324 "Takes an optional file parameter."),
325 &maintenanceprintlist
);
326 add_cmd ("remote-registers", class_maintenance
,
327 maintenance_print_remote_registers
, _("\
328 Print the internal register configuration including remote register number "
329 "and g/G packets offset.\n\
330 Takes an optional file parameter."),
331 &maintenanceprintlist
);