]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/maint.c
* elfarm-nabi.c (elf32_arm_howto_table): Fix ABS16 masks.
[thirdparty/binutils-gdb.git] / gdb / maint.c
CommitLineData
c906108c 1/* Support for GDB maintenance commands.
3ab13650 2 Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002
b6ba6518 3 Free Software Foundation, Inc.
c906108c
SS
4 Written by Fred Fish at Cygnus Support.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23
24#include "defs.h"
c906108c
SS
25#include <ctype.h>
26#include <signal.h>
27#include "command.h"
28#include "gdbcmd.h"
29#include "symtab.h"
30#include "gdbtypes.h"
31#include "demangle.h"
32#include "gdbcore.h"
c5aa993b 33#include "expression.h" /* For language.h */
c906108c
SS
34#include "language.h"
35#include "symfile.h"
36#include "objfiles.h"
37#include "value.h"
38
18a642a1
AC
39#include "cli/cli-decode.h"
40
a14ed312 41extern void _initialize_maint_cmds (void);
392a587b 42
a14ed312 43static void maintenance_command (char *, int);
c906108c 44
a14ed312 45static void maintenance_dump_me (char *, int);
c906108c 46
a14ed312 47static void maintenance_internal_error (char *args, int from_tty);
7be570e7 48
a14ed312 49static void maintenance_demangle (char *, int);
c906108c 50
a14ed312 51static void maintenance_time_display (char *, int);
c906108c 52
a14ed312 53static void maintenance_space_display (char *, int);
c906108c 54
a14ed312 55static void maintenance_info_command (char *, int);
c906108c 56
43155bc1 57static void print_section_table (bfd *, asection *, void *);
c906108c 58
a14ed312 59static void maintenance_info_sections (char *, int);
c906108c 60
a14ed312 61static void maintenance_print_command (char *, int);
c906108c 62
1c689132
DB
63static void maintenance_do_deprecate (char *, int);
64
c906108c
SS
65/* Set this to the maximum number of seconds to wait instead of waiting forever
66 in target_wait(). If this timer times out, then it generates an error and
67 the command is aborted. This replaces most of the need for timeouts in the
68 GDB test suite, and makes it possible to distinguish between a hung target
69 and one with slow communications. */
70
71int watchdog = 0;
72
73/*
74
c5aa993b 75 LOCAL FUNCTION
c906108c 76
c5aa993b 77 maintenance_command -- access the maintenance subcommands
c906108c 78
c5aa993b 79 SYNOPSIS
c906108c 80
c5aa993b 81 void maintenance_command (char *args, int from_tty)
c906108c 82
c5aa993b 83 DESCRIPTION
c906108c 84
c5aa993b 85 */
c906108c
SS
86
87static void
fba45db2 88maintenance_command (char *args, int from_tty)
c906108c
SS
89{
90 printf_unfiltered ("\"maintenance\" must be followed by the name of a maintenance command.\n");
91 help_list (maintenancelist, "maintenance ", -1, gdb_stdout);
92}
93
94#ifndef _WIN32
95/* ARGSUSED */
96static void
fba45db2 97maintenance_dump_me (char *args, int from_tty)
c906108c
SS
98{
99 if (query ("Should GDB dump core? "))
100 {
7be570e7
JM
101#ifdef __DJGPP__
102 /* SIGQUIT by default is ignored, so use SIGABRT instead. */
103 signal (SIGABRT, SIG_DFL);
104 kill (getpid (), SIGABRT);
105#else
c906108c
SS
106 signal (SIGQUIT, SIG_DFL);
107 kill (getpid (), SIGQUIT);
7be570e7 108#endif
c906108c
SS
109 }
110}
111#endif
112
7be570e7
JM
113/* Stimulate the internal error mechanism that GDB uses when an
114 internal problem is detected. Allows testing of the mechanism.
115 Also useful when the user wants to drop a core file but not exit
116 GDB. */
117
118static void
119maintenance_internal_error (char *args, int from_tty)
120{
8e65ff28
AC
121 internal_error (__FILE__, __LINE__,
122 "internal maintenance");
7be570e7
JM
123}
124
33f91161
AC
125/* Someday we should allow demangling for things other than just
126 explicit strings. For example, we might want to be able to specify
127 the address of a string in either GDB's process space or the
128 debuggee's process space, and have gdb fetch and demangle that
129 string. If we have a char* pointer "ptr" that points to a string,
130 we might want to be able to given just the name and have GDB
131 demangle and print what it points to, etc. (FIXME) */
c906108c
SS
132
133static void
fba45db2 134maintenance_demangle (char *args, int from_tty)
c906108c
SS
135{
136 char *demangled;
137
138 if (args == NULL || *args == '\0')
139 {
140 printf_unfiltered ("\"maintenance demangle\" takes an argument to demangle.\n");
141 }
142 else
143 {
144 demangled = cplus_demangle (args, DMGL_ANSI | DMGL_PARAMS);
145 if (demangled != NULL)
146 {
147 printf_unfiltered ("%s\n", demangled);
b8c9b27d 148 xfree (demangled);
c906108c
SS
149 }
150 else
151 {
152 printf_unfiltered ("Can't demangle \"%s\"\n", args);
153 }
154 }
155}
156
157static void
fba45db2 158maintenance_time_display (char *args, int from_tty)
c906108c
SS
159{
160 extern int display_time;
161
162 if (args == NULL || *args == '\0')
163 printf_unfiltered ("\"maintenance time\" takes a numeric argument.\n");
164 else
165 display_time = strtol (args, NULL, 10);
166}
167
168static void
fba45db2 169maintenance_space_display (char *args, int from_tty)
c906108c
SS
170{
171 extern int display_space;
172
173 if (args == NULL || *args == '\0')
174 printf_unfiltered ("\"maintenance space\" takes a numeric argument.\n");
175 else
176 display_space = strtol (args, NULL, 10);
177}
178
33f91161
AC
179/* The "maintenance info" command is defined as a prefix, with
180 allow_unknown 0. Therefore, its own definition is called only for
181 "maintenance info" with no args. */
c906108c
SS
182
183/* ARGSUSED */
184static void
fba45db2 185maintenance_info_command (char *arg, int from_tty)
c906108c
SS
186{
187 printf_unfiltered ("\"maintenance info\" must be followed by the name of an info command.\n");
188 help_list (maintenanceinfolist, "maintenance info ", -1, gdb_stdout);
189}
190
a532ca62
MS
191/* Mini tokenizing lexer for 'maint info sections' command. */
192
193static int
473e38f3 194match_substring (const char *string, const char *substr)
a532ca62
MS
195{
196 int substr_len = strlen(substr);
473e38f3 197 const char *tok;
a532ca62
MS
198
199 while ((tok = strstr (string, substr)) != NULL)
200 {
201 /* Got a partial match. Is it a whole word? */
b01d807c
MS
202 if (tok == string
203 || tok[-1] == ' '
204 || tok[-1] == '\t')
a532ca62
MS
205 {
206 /* Token is delimited at the front... */
b01d807c
MS
207 if (tok[substr_len] == ' '
208 || tok[substr_len] == '\t'
209 || tok[substr_len] == '\0')
a532ca62
MS
210 {
211 /* Token is delimited at the rear. Got a whole-word match. */
212 return 1;
213 }
214 }
215 /* Token didn't match as a whole word. Advance and try again. */
216 string = tok + 1;
217 }
218 return 0;
219}
220
43155bc1
MS
221static int
222match_bfd_flags (char *string, flagword flags)
c906108c 223{
43155bc1 224 if (flags & SEC_ALLOC)
a532ca62 225 if (match_substring (string, "ALLOC"))
43155bc1
MS
226 return 1;
227 if (flags & SEC_LOAD)
a532ca62 228 if (match_substring (string, "LOAD"))
43155bc1
MS
229 return 1;
230 if (flags & SEC_RELOC)
a532ca62 231 if (match_substring (string, "RELOC"))
43155bc1
MS
232 return 1;
233 if (flags & SEC_READONLY)
a532ca62 234 if (match_substring (string, "READONLY"))
43155bc1
MS
235 return 1;
236 if (flags & SEC_CODE)
a532ca62 237 if (match_substring (string, "CODE"))
43155bc1
MS
238 return 1;
239 if (flags & SEC_DATA)
a532ca62 240 if (match_substring (string, "DATA"))
43155bc1
MS
241 return 1;
242 if (flags & SEC_ROM)
a532ca62 243 if (match_substring (string, "ROM"))
43155bc1
MS
244 return 1;
245 if (flags & SEC_CONSTRUCTOR)
a532ca62 246 if (match_substring (string, "CONSTRUCTOR"))
43155bc1
MS
247 return 1;
248 if (flags & SEC_HAS_CONTENTS)
a532ca62 249 if (match_substring (string, "HAS_CONTENTS"))
43155bc1
MS
250 return 1;
251 if (flags & SEC_NEVER_LOAD)
a532ca62 252 if (match_substring (string, "NEVER_LOAD"))
43155bc1
MS
253 return 1;
254 if (flags & SEC_COFF_SHARED_LIBRARY)
a532ca62 255 if (match_substring (string, "COFF_SHARED_LIBRARY"))
43155bc1
MS
256 return 1;
257 if (flags & SEC_IS_COMMON)
a532ca62 258 if (match_substring (string, "IS_COMMON"))
43155bc1 259 return 1;
c906108c 260
43155bc1
MS
261 return 0;
262}
c906108c 263
43155bc1
MS
264static void
265print_bfd_flags (flagword flags)
266{
c906108c
SS
267 if (flags & SEC_ALLOC)
268 printf_filtered (" ALLOC");
269 if (flags & SEC_LOAD)
270 printf_filtered (" LOAD");
271 if (flags & SEC_RELOC)
272 printf_filtered (" RELOC");
273 if (flags & SEC_READONLY)
274 printf_filtered (" READONLY");
275 if (flags & SEC_CODE)
276 printf_filtered (" CODE");
277 if (flags & SEC_DATA)
278 printf_filtered (" DATA");
279 if (flags & SEC_ROM)
280 printf_filtered (" ROM");
281 if (flags & SEC_CONSTRUCTOR)
282 printf_filtered (" CONSTRUCTOR");
283 if (flags & SEC_HAS_CONTENTS)
284 printf_filtered (" HAS_CONTENTS");
285 if (flags & SEC_NEVER_LOAD)
286 printf_filtered (" NEVER_LOAD");
287 if (flags & SEC_COFF_SHARED_LIBRARY)
288 printf_filtered (" COFF_SHARED_LIBRARY");
289 if (flags & SEC_IS_COMMON)
290 printf_filtered (" IS_COMMON");
43155bc1
MS
291}
292
293static void
e3d3bfda
MS
294print_section_info (const char *name, flagword flags,
295 CORE_ADDR addr, CORE_ADDR endaddr,
296 unsigned long filepos)
43155bc1 297{
e3d3bfda
MS
298 /* FIXME-32x64: Need print_address_numeric with field width. */
299 printf_filtered (" 0x%s", paddr (addr));
300 printf_filtered ("->0x%s", paddr (endaddr));
3ab13650 301 printf_filtered (" at %s",
e3d3bfda
MS
302 local_hex_string_custom ((unsigned long) filepos, "08l"));
303 printf_filtered (": %s", name);
304 print_bfd_flags (flags);
305 printf_filtered ("\n");
306}
c906108c 307
e3d3bfda
MS
308static void
309print_bfd_section_info (bfd *abfd,
310 asection *asect,
311 void *arg)
312{
313 flagword flags = bfd_get_section_flags (abfd, asect);
314 const char *name = bfd_section_name (abfd, asect);
315
b01d807c
MS
316 if (arg == NULL || *((char *) arg) == '\0'
317 || match_substring ((char *) arg, name)
318 || match_bfd_flags ((char *) arg, flags))
e3d3bfda
MS
319 {
320 CORE_ADDR addr, endaddr;
321
322 addr = bfd_section_vma (abfd, asect);
323 endaddr = addr + bfd_section_size (abfd, asect);
324 print_section_info (name, flags, addr, endaddr, asect->filepos);
325 }
326}
327
328static void
329print_objfile_section_info (bfd *abfd,
330 struct obj_section *asect,
331 char *string)
332{
333 flagword flags = bfd_get_section_flags (abfd, asect->the_bfd_section);
334 const char *name = bfd_section_name (abfd, asect->the_bfd_section);
43155bc1 335
b01d807c
MS
336 if (string == NULL || *string == '\0'
337 || match_substring (string, name)
338 || match_bfd_flags (string, flags))
43155bc1 339 {
e3d3bfda
MS
340 print_section_info (name, flags, asect->addr, asect->endaddr,
341 asect->the_bfd_section->filepos);
43155bc1 342 }
c906108c
SS
343}
344
345/* ARGSUSED */
346static void
fba45db2 347maintenance_info_sections (char *arg, int from_tty)
c906108c
SS
348{
349 if (exec_bfd)
350 {
351 printf_filtered ("Exec file:\n");
c5aa993b 352 printf_filtered (" `%s', ", bfd_get_filename (exec_bfd));
c906108c 353 wrap_here (" ");
c5aa993b 354 printf_filtered ("file type %s.\n", bfd_get_target (exec_bfd));
a532ca62 355 if (arg && *arg && match_substring (arg, "ALLOBJ"))
e3d3bfda
MS
356 {
357 struct objfile *ofile;
358 struct obj_section *osect;
359
360 /* Only this function cares about the 'ALLOBJ' argument;
361 if 'ALLOBJ' is the only argument, discard it rather than
362 passing it down to print_objfile_section_info (which
363 wouldn't know how to handle it). */
364 if (strcmp (arg, "ALLOBJ") == 0)
365 arg = NULL;
366
367 ALL_OBJFILES (ofile)
368 {
369 printf_filtered (" Object file: %s\n",
370 bfd_get_filename (ofile->obfd));
371 ALL_OBJFILE_OSECTIONS (ofile, osect)
372 {
373 print_objfile_section_info (ofile->obfd, osect, arg);
374 }
375 }
376 }
377 else
378 bfd_map_over_sections (exec_bfd, print_bfd_section_info, arg);
c906108c
SS
379 }
380
381 if (core_bfd)
382 {
383 printf_filtered ("Core file:\n");
c5aa993b 384 printf_filtered (" `%s', ", bfd_get_filename (core_bfd));
c906108c 385 wrap_here (" ");
c5aa993b 386 printf_filtered ("file type %s.\n", bfd_get_target (core_bfd));
e3d3bfda 387 bfd_map_over_sections (core_bfd, print_bfd_section_info, arg);
c906108c
SS
388 }
389}
390
391/* ARGSUSED */
392void
fba45db2 393maintenance_print_statistics (char *args, int from_tty)
c906108c
SS
394{
395 print_objfile_statistics ();
396 print_symbol_bcache_statistics ();
397}
398
4b9b3959
AC
399void
400maintenance_print_architecture (char *args, int from_tty)
401{
402 if (args == NULL)
403 gdbarch_dump (current_gdbarch, gdb_stdout);
404 else
405 {
406 struct ui_file *file = gdb_fopen (args, "w");
407 if (file == NULL)
408 perror_with_name ("maintenance print architecture");
409 gdbarch_dump (current_gdbarch, file);
410 ui_file_delete (file);
411 }
412}
413
33f91161
AC
414/* The "maintenance print" command is defined as a prefix, with
415 allow_unknown 0. Therefore, its own definition is called only for
416 "maintenance print" with no args. */
c906108c
SS
417
418/* ARGSUSED */
419static void
fba45db2 420maintenance_print_command (char *arg, int from_tty)
c906108c
SS
421{
422 printf_unfiltered ("\"maintenance print\" must be followed by the name of a print command.\n");
423 help_list (maintenanceprintlist, "maintenance print ", -1, gdb_stdout);
424}
425
426/* The "maintenance translate-address" command converts a section and address
427 to a symbol. This can be called in two ways:
c5aa993b
JM
428 maintenance translate-address <secname> <addr>
429 or maintenance translate-address <addr>
430 */
c906108c
SS
431
432static void
fba45db2 433maintenance_translate_address (char *arg, int from_tty)
c906108c
SS
434{
435 CORE_ADDR address;
436 asection *sect;
437 char *p;
438 struct minimal_symbol *sym;
439 struct objfile *objfile;
440
441 if (arg == NULL || *arg == 0)
442 error ("requires argument (address or section + address)");
443
444 sect = NULL;
445 p = arg;
446
447 if (!isdigit (*p))
448 { /* See if we have a valid section name */
c5aa993b 449 while (*p && !isspace (*p)) /* Find end of section name */
c906108c
SS
450 p++;
451 if (*p == '\000') /* End of command? */
452 error ("Need to specify <section-name> and <address>");
453 *p++ = '\000';
c5aa993b
JM
454 while (isspace (*p))
455 p++; /* Skip whitespace */
c906108c
SS
456
457 ALL_OBJFILES (objfile)
c5aa993b
JM
458 {
459 sect = bfd_get_section_by_name (objfile->obfd, arg);
460 if (sect != NULL)
461 break;
462 }
c906108c
SS
463
464 if (!sect)
465 error ("Unknown section %s.", arg);
466 }
467
468 address = parse_and_eval_address (p);
469
470 if (sect)
471 sym = lookup_minimal_symbol_by_pc_section (address, sect);
472 else
473 sym = lookup_minimal_symbol_by_pc (address);
474
475 if (sym)
d4f3574e 476 printf_filtered ("%s+%s\n",
c5aa993b 477 SYMBOL_SOURCE_NAME (sym),
d4f3574e 478 paddr_u (address - SYMBOL_VALUE_ADDRESS (sym)));
c906108c 479 else if (sect)
d4f3574e 480 printf_filtered ("no symbol at %s:0x%s\n", sect->name, paddr (address));
c906108c 481 else
d4f3574e 482 printf_filtered ("no symbol at 0x%s\n", paddr (address));
c906108c
SS
483
484 return;
485}
486
56382845 487
c114dcd5 488/* When a command is deprecated the user will be warned the first time
33f91161
AC
489 the command is used. If possible, a replacement will be
490 offered. */
56382845
FN
491
492static void
493maintenance_deprecate (char *args, int from_tty)
494{
495 if (args == NULL || *args == '\0')
496 {
497 printf_unfiltered ("\"maintenance deprecate\" takes an argument, \n\
498the command you want to deprecate, and optionally the replacement command \n\
499enclosed in quotes.\n");
500 }
33f91161 501
56382845
FN
502 maintenance_do_deprecate (args, 1);
503
504}
505
506
507static void
508maintenance_undeprecate (char *args, int from_tty)
509{
510 if (args == NULL || *args == '\0')
511 {
512 printf_unfiltered ("\"maintenance undeprecate\" takes an argument, \n\
513the command you want to undeprecate.\n");
514 }
33f91161 515
56382845 516 maintenance_do_deprecate (args, 0);
33f91161 517
56382845
FN
518}
519
33f91161
AC
520/* You really shouldn't be using this. It is just for the testsuite.
521 Rather, you should use deprecate_cmd() when the command is created
522 in _initialize_blah().
523
524 This function deprecates a command and optionally assigns it a
525 replacement. */
526
8399535b 527static void
33f91161
AC
528maintenance_do_deprecate (char *text, int deprecate)
529{
530
531 struct cmd_list_element *alias = NULL;
532 struct cmd_list_element *prefix_cmd = NULL;
533 struct cmd_list_element *cmd = NULL;
534
535 char *start_ptr = NULL;
536 char *end_ptr = NULL;
56382845 537 int len;
33f91161
AC
538 char *replacement = NULL;
539
1c689132
DB
540 if (text == NULL)
541 return;
56382845 542
33f91161
AC
543 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
544 {
545 printf_filtered ("Can't find command '%s' to deprecate.\n", text);
546 return;
547 }
56382845 548
56382845
FN
549 if (deprecate)
550 {
551 /* look for a replacement command */
80ce1ecb
AC
552 start_ptr = strchr (text, '\"');
553 if (start_ptr != NULL)
33f91161
AC
554 {
555 start_ptr++;
80ce1ecb
AC
556 end_ptr = strrchr (start_ptr, '\"');
557 if (end_ptr != NULL)
33f91161
AC
558 {
559 len = end_ptr - start_ptr;
560 start_ptr[len] = '\0';
561 replacement = xstrdup (start_ptr);
562 }
563 }
56382845 564 }
33f91161 565
56382845
FN
566 if (!start_ptr || !end_ptr)
567 replacement = NULL;
33f91161
AC
568
569
56382845 570 /* If they used an alias, we only want to deprecate the alias.
33f91161 571
56382845
FN
572 Note the MALLOCED_REPLACEMENT test. If the command's replacement
573 string was allocated at compile time we don't want to free the
33f91161 574 memory. */
56382845
FN
575 if (alias)
576 {
33f91161 577
56382845 578 if (alias->flags & MALLOCED_REPLACEMENT)
b8c9b27d 579 xfree (alias->replacement);
33f91161 580
56382845 581 if (deprecate)
33f91161 582 alias->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
56382845 583 else
33f91161
AC
584 alias->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
585 alias->replacement = replacement;
56382845
FN
586 alias->flags |= MALLOCED_REPLACEMENT;
587 return;
588 }
589 else if (cmd)
590 {
591 if (cmd->flags & MALLOCED_REPLACEMENT)
b8c9b27d 592 xfree (cmd->replacement);
56382845
FN
593
594 if (deprecate)
33f91161 595 cmd->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
56382845 596 else
33f91161
AC
597 cmd->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
598 cmd->replacement = replacement;
56382845
FN
599 cmd->flags |= MALLOCED_REPLACEMENT;
600 return;
601 }
602}
603
4f337972
AC
604/* Maintenance set/show framework. */
605
606static struct cmd_list_element *maintenance_set_cmdlist;
607static struct cmd_list_element *maintenance_show_cmdlist;
608
609static void
610maintenance_set_cmd (char *args, int from_tty)
611{
612 printf_unfiltered ("\"maintenance set\" must be followed by the name of a set command.\n");
613 help_list (maintenance_set_cmdlist, "maintenance set ", -1, gdb_stdout);
614}
615
616static void
617maintenance_show_cmd (char *args, int from_tty)
618{
619 cmd_show_list (maintenance_show_cmdlist, from_tty, "");
620}
621
622#ifdef NOTYET
623/* Profiling support. */
624
625static int maintenance_profile_p;
626
627static void
628maintenance_set_profile_cmd (char *args, int from_tty, struct cmd_list_element *c)
629{
630 maintenance_profile_p = 0;
631 warning ("\"maintenance set profile\" command not supported.\n");
632}
633#endif
56382845 634
c906108c 635void
fba45db2 636_initialize_maint_cmds (void)
c906108c 637{
4f337972
AC
638 struct cmd_list_element *tmpcmd;
639
c906108c
SS
640 add_prefix_cmd ("maintenance", class_maintenance, maintenance_command,
641 "Commands for use by GDB maintainers.\n\
642Includes commands to dump specific internal GDB structures in\n\
643a human readable form, to cause GDB to deliberately dump core,\n\
644to test internal functions such as the C++ demangler, etc.",
645 &maintenancelist, "maintenance ", 0,
646 &cmdlist);
647
648 add_com_alias ("mt", "maintenance", class_maintenance, 1);
649
650 add_prefix_cmd ("info", class_maintenance, maintenance_info_command,
c5aa993b 651 "Commands for showing internal info about the program being debugged.",
c906108c
SS
652 &maintenanceinfolist, "maintenance info ", 0,
653 &maintenancelist);
90515c23 654 add_alias_cmd ("i", "info", class_maintenance, 1, &maintenancelist);
c906108c
SS
655
656 add_cmd ("sections", class_maintenance, maintenance_info_sections,
c5ad026a 657 "List the BFD sections of the exec and core files. \n\
e3d3bfda
MS
658Arguments may be any combination of:\n\
659 [one or more section names]\n\
660 ALLOC LOAD RELOC READONLY CODE DATA ROM CONSTRUCTOR\n\
661 HAS_CONTENTS NEVER_LOAD COFF_SHARED_LIBRARY IS_COMMON\n\
662Sections matching any argument will be listed (no argument\n\
663implies all sections). In addition, the special argument\n\
664 ALLOBJ\n\
665lists all sections from all object files, including shared libraries.",
c906108c
SS
666 &maintenanceinfolist);
667
668 add_prefix_cmd ("print", class_maintenance, maintenance_print_command,
669 "Maintenance command for printing GDB internal state.",
670 &maintenanceprintlist, "maintenance print ", 0,
671 &maintenancelist);
672
4f337972
AC
673 add_prefix_cmd ("set", class_maintenance, maintenance_set_cmd, "\
674Set GDB internal variables used by the GDB maintainer.\n\
675Configure variables internal to GDB that aid in GDB's maintenance",
676 &maintenance_set_cmdlist, "maintenance set ",
677 0/*allow-unknown*/,
678 &maintenancelist);
679
680 add_prefix_cmd ("show", class_maintenance, maintenance_show_cmd, "\
681Show GDB internal variables used by the GDB maintainer.\n\
682Configure variables internal to GDB that aid in GDB's maintenance",
683 &maintenance_show_cmdlist, "maintenance show ",
684 0/*allow-unknown*/,
685 &maintenancelist);
686
c906108c
SS
687#ifndef _WIN32
688 add_cmd ("dump-me", class_maintenance, maintenance_dump_me,
689 "Get fatal error; make debugger dump its core.\n\
690GDB sets it's handling of SIGQUIT back to SIG_DFL and then sends\n\
691itself a SIGQUIT signal.",
692 &maintenancelist);
693#endif
694
7be570e7
JM
695 add_cmd ("internal-error", class_maintenance, maintenance_internal_error,
696 "Give GDB an internal error.\n\
697Cause GDB to behave as if an internal error was detected.",
698 &maintenancelist);
699
c906108c
SS
700 add_cmd ("demangle", class_maintenance, maintenance_demangle,
701 "Demangle a C++ mangled name.\n\
702Call internal GDB demangler routine to demangle a C++ link name\n\
703and prints the result.",
704 &maintenancelist);
705
706 add_cmd ("time", class_maintenance, maintenance_time_display,
707 "Set the display of time usage.\n\
708If nonzero, will cause the execution time for each command to be\n\
709displayed, following the command's output.",
710 &maintenancelist);
711
712 add_cmd ("space", class_maintenance, maintenance_space_display,
713 "Set the display of space usage.\n\
714If nonzero, will cause the execution space for each command to be\n\
715displayed, following the command's output.",
716 &maintenancelist);
717
718 add_cmd ("type", class_maintenance, maintenance_print_type,
719 "Print a type chain for a given symbol.\n\
720For each node in a type chain, print the raw data for each member of\n\
721the type structure, and the interpretation of the data.",
722 &maintenanceprintlist);
723
724 add_cmd ("symbols", class_maintenance, maintenance_print_symbols,
725 "Print dump of current symbol definitions.\n\
726Entries in the full symbol table are dumped to file OUTFILE.\n\
727If a SOURCE file is specified, dump only that file's symbols.",
728 &maintenanceprintlist);
729
730 add_cmd ("msymbols", class_maintenance, maintenance_print_msymbols,
731 "Print dump of current minimal symbol definitions.\n\
732Entries in the minimal symbol table are dumped to file OUTFILE.\n\
733If a SOURCE file is specified, dump only that file's minimal symbols.",
734 &maintenanceprintlist);
735
736 add_cmd ("psymbols", class_maintenance, maintenance_print_psymbols,
737 "Print dump of current partial symbol definitions.\n\
738Entries in the partial symbol table are dumped to file OUTFILE.\n\
739If a SOURCE file is specified, dump only that file's partial symbols.",
740 &maintenanceprintlist);
741
742 add_cmd ("objfiles", class_maintenance, maintenance_print_objfiles,
743 "Print dump of current object file definitions.",
744 &maintenanceprintlist);
745
746 add_cmd ("statistics", class_maintenance, maintenance_print_statistics,
747 "Print statistics about internal gdb state.",
748 &maintenanceprintlist);
749
4b9b3959
AC
750 add_cmd ("architecture", class_maintenance, maintenance_print_architecture,
751 "Print the internal architecture configuration.\
752Takes an optional file parameter.",
753 &maintenanceprintlist);
754
c906108c
SS
755 add_cmd ("check-symtabs", class_maintenance, maintenance_check_symtabs,
756 "Check consistency of psymtabs and symtabs.",
757 &maintenancelist);
758
759 add_cmd ("translate-address", class_maintenance, maintenance_translate_address,
760 "Translate a section name and address to a symbol.",
761 &maintenancelist);
762
56382845 763 add_cmd ("deprecate", class_maintenance, maintenance_deprecate,
33f91161 764 "Deprecate a command. Note that this is just in here so the \n\
56382845
FN
765testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\
766rather you should use the C function deprecate_cmd(). If you decide you \n\
6f122dc9 767want to use it: maintenance deprecate 'commandname' \"replacement\". The \n\
56382845
FN
768replacement is optional.", &maintenancelist);
769
770 add_cmd ("undeprecate", class_maintenance, maintenance_undeprecate,
33f91161 771 "Undeprecate a command. Note that this is just in here so the \n\
56382845 772testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\
33f91161
AC
773If you decide you want to use it: maintenance undeprecate 'commandname'",
774 &maintenancelist);
56382845 775
c906108c 776 add_show_from_set (
c5aa993b
JM
777 add_set_cmd ("watchdog", class_maintenance, var_zinteger, (char *) &watchdog,
778 "Set watchdog timer.\n\
c906108c
SS
779When non-zero, this timeout is used instead of waiting forever for a target to\n\
780finish a low-level step or continue operation. If the specified amount of time\n\
781passes without a response from the target, an error occurs.", &setlist),
c5aa993b 782 &showlist);
4f337972
AC
783
784
785#ifdef NOTYET
786 /* FIXME: cagney/2001-09-24: A patch introducing a
787 add_set_boolean_cmd() is pending, the below should probably use
788 it. A patch implementing profiling is pending, this just sets up
789 the framework. */
790 tmpcmd = add_set_cmd ("profile", class_maintenance,
791 var_boolean, &maintenance_profile_p,
792 "Set internal profiling.\n\
793When enabled GDB is profiled.",
794 &maintenance_set_cmdlist);
9f60d481 795 set_cmd_sfunc (tmpcmd, maintenance_set_profile_cmd);
4f337972
AC
796 add_show_from_set (tmpcmd, &maintenance_show_cmdlist);
797#endif
c906108c 798}