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/>. */
21 #include "gdbsupport/def-vector.h"
24 #include "reggroups.h"
29 /* Dump registers from regcache, used for dumping raw registers and
32 class register_dump_regcache
: public register_dump
35 register_dump_regcache (regcache
*regcache
, bool dump_pseudo
)
36 : register_dump (regcache
->arch ()), m_regcache (regcache
),
37 m_dump_pseudo (dump_pseudo
)
42 void dump_reg (ui_file
*file
, int regnum
) override
47 gdb_printf (file
, "Cooked value");
49 gdb_printf (file
, "Raw value");
53 if (regnum
< gdbarch_num_regs (m_gdbarch
) || m_dump_pseudo
)
55 auto size
= register_size (m_gdbarch
, regnum
);
60 gdb::byte_vector
buf (size
);
61 auto status
= m_regcache
->cooked_read (regnum
, buf
.data ());
63 if (status
== REG_UNKNOWN
)
64 gdb_printf (file
, "<invalid>");
65 else if (status
== REG_UNAVAILABLE
)
66 gdb_printf (file
, "<unavailable>");
69 print_hex_chars (file
, buf
.data (), size
,
70 gdbarch_byte_order (m_gdbarch
), true);
75 /* Just print "<cooked>" for pseudo register when
77 gdb_printf (file
, "<cooked>");
85 /* Dump pseudo registers or not. */
86 const bool m_dump_pseudo
;
89 /* Dump from reg_buffer, used when there is no thread or
92 class register_dump_reg_buffer
: public register_dump
, reg_buffer
95 register_dump_reg_buffer (gdbarch
*gdbarch
, bool dump_pseudo
)
96 : register_dump (gdbarch
), reg_buffer (gdbarch
, dump_pseudo
)
101 void dump_reg (ui_file
*file
, int regnum
) override
106 gdb_printf (file
, "Cooked value");
108 gdb_printf (file
, "Raw value");
112 if (regnum
< gdbarch_num_regs (m_gdbarch
) || m_has_pseudo
)
114 auto size
= register_size (m_gdbarch
, regnum
);
119 auto status
= get_register_status (regnum
);
121 gdb_assert (status
!= REG_VALID
);
123 if (status
== REG_UNKNOWN
)
124 gdb_printf (file
, "<invalid>");
126 gdb_printf (file
, "<unavailable>");
130 /* Just print "<cooked>" for pseudo register when
131 regcache_dump_raw. */
132 gdb_printf (file
, "<cooked>");
138 /* For "maint print registers". */
140 class register_dump_none
: public register_dump
143 register_dump_none (gdbarch
*arch
)
144 : register_dump (arch
)
148 void dump_reg (ui_file
*file
, int regnum
) override
152 /* For "maint print remote-registers". */
154 class register_dump_remote
: public register_dump
157 register_dump_remote (gdbarch
*arch
)
158 : register_dump (arch
)
162 void dump_reg (ui_file
*file
, int regnum
) override
166 gdb_printf (file
, "Rmt Nr g/G Offset");
168 else if (regnum
< gdbarch_num_regs (m_gdbarch
))
172 if (remote_register_number_and_offset (m_gdbarch
, regnum
,
174 gdb_printf (file
, "%7d %11d", pnum
, poffset
);
179 /* For "maint print register-groups". */
181 class register_dump_groups
: public register_dump
184 register_dump_groups (gdbarch
*arch
)
185 : register_dump (arch
)
189 void dump_reg (ui_file
*file
, int regnum
) override
192 gdb_printf (file
, "Groups");
195 const char *sep
= "";
196 for (const struct reggroup
*group
: gdbarch_reggroups (m_gdbarch
))
198 if (gdbarch_register_reggroup_p (m_gdbarch
, regnum
, group
))
200 gdb_printf (file
, "%s%s", sep
, group
->name ());
208 enum regcache_dump_what
210 regcache_dump_none
, regcache_dump_raw
,
211 regcache_dump_cooked
, regcache_dump_groups
,
216 regcache_print (const char *args
, enum regcache_dump_what what_to_dump
)
218 /* Where to send output. */
226 if (!file
.open (args
, "w"))
227 perror_with_name (_("maintenance print architecture"));
231 std::unique_ptr
<register_dump
> dump
;
232 std::unique_ptr
<regcache
> regs
;
235 if (target_has_registers ())
236 gdbarch
= get_thread_regcache (inferior_thread ())->arch ();
238 gdbarch
= current_inferior ()->arch ();
240 switch (what_to_dump
)
242 case regcache_dump_none
:
243 dump
.reset (new register_dump_none (gdbarch
));
245 case regcache_dump_remote
:
246 dump
.reset (new register_dump_remote (gdbarch
));
248 case regcache_dump_groups
:
249 dump
.reset (new register_dump_groups (gdbarch
));
251 case regcache_dump_raw
:
252 case regcache_dump_cooked
:
254 auto dump_pseudo
= (what_to_dump
== regcache_dump_cooked
);
256 if (target_has_registers ())
257 dump
.reset (new register_dump_regcache (get_thread_regcache
258 (inferior_thread ()),
262 /* For the benefit of "maint print registers" & co when
263 debugging an executable, allow dumping a regcache even when
264 there is no thread selected / no registers. */
265 dump
.reset (new register_dump_reg_buffer (gdbarch
, dump_pseudo
));
275 maintenance_print_registers (const char *args
, int from_tty
)
277 regcache_print (args
, regcache_dump_none
);
281 maintenance_print_raw_registers (const char *args
, int from_tty
)
283 regcache_print (args
, regcache_dump_raw
);
287 maintenance_print_cooked_registers (const char *args
, int from_tty
)
289 regcache_print (args
, regcache_dump_cooked
);
293 maintenance_print_register_groups (const char *args
, int from_tty
)
295 regcache_print (args
, regcache_dump_groups
);
299 maintenance_print_remote_registers (const char *args
, int from_tty
)
301 regcache_print (args
, regcache_dump_remote
);
304 void _initialize_regcache_dump ();
306 _initialize_regcache_dump ()
308 add_cmd ("registers", class_maintenance
, maintenance_print_registers
,
309 _("Print the internal register configuration.\n"
310 "Takes an optional file parameter."), &maintenanceprintlist
);
311 add_cmd ("raw-registers", class_maintenance
,
312 maintenance_print_raw_registers
,
313 _("Print the internal register configuration "
314 "including raw values.\n"
315 "Takes an optional file parameter."), &maintenanceprintlist
);
316 add_cmd ("cooked-registers", class_maintenance
,
317 maintenance_print_cooked_registers
,
318 _("Print the internal register configuration "
319 "including cooked values.\n"
320 "Takes an optional file parameter."), &maintenanceprintlist
);
321 add_cmd ("register-groups", class_maintenance
,
322 maintenance_print_register_groups
,
323 _("Print the internal register configuration "
324 "including each register's group.\n"
325 "Takes an optional file parameter."),
326 &maintenanceprintlist
);
327 add_cmd ("remote-registers", class_maintenance
,
328 maintenance_print_remote_registers
, _("\
329 Print the internal register configuration including remote register number "
330 "and g/G packets offset.\n\
331 Takes an optional file parameter."),
332 &maintenanceprintlist
);