]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/maint.c
The testcase was generating DW_AT_high_pc and DW_AT_low_pc entries
[thirdparty/binutils-gdb.git] / gdb / maint.c
CommitLineData
c906108c 1/* Support for GDB maintenance commands.
c6f0559b 2
ecd75fc8 3 Copyright (C) 1992-2014 Free Software Foundation, Inc.
c6f0559b 4
c906108c
SS
5 Written by Fred Fish at Cygnus Support.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22
23#include "defs.h"
e17c207e 24#include "arch-utils.h"
c906108c
SS
25#include <ctype.h>
26#include <signal.h>
bd712aed
DE
27#include <sys/time.h>
28#include <time.h>
c906108c
SS
29#include "command.h"
30#include "gdbcmd.h"
31#include "symtab.h"
bd712aed 32#include "block.h"
c906108c
SS
33#include "gdbtypes.h"
34#include "demangle.h"
35#include "gdbcore.h"
c5aa993b 36#include "expression.h" /* For language.h */
c906108c
SS
37#include "language.h"
38#include "symfile.h"
39#include "objfiles.h"
40#include "value.h"
c14c28ba 41#include "gdb_assert.h"
bd712aed
DE
42#include "top.h"
43#include "timeval-utils.h"
44#include "maint.h"
c906108c 45
18a642a1 46#include "cli/cli-decode.h"
529480d0 47#include "cli/cli-utils.h"
bd712aed 48#include "cli/cli-setshow.h"
18a642a1 49
a14ed312 50extern void _initialize_maint_cmds (void);
392a587b 51
a14ed312 52static void maintenance_command (char *, int);
c906108c 53
a14ed312 54static void maintenance_internal_error (char *args, int from_tty);
7be570e7 55
a14ed312 56static void maintenance_demangle (char *, int);
c906108c 57
a14ed312 58static void maintenance_time_display (char *, int);
c906108c 59
a14ed312 60static void maintenance_space_display (char *, int);
c906108c 61
a14ed312 62static void maintenance_info_command (char *, int);
c906108c 63
a14ed312 64static void maintenance_info_sections (char *, int);
c906108c 65
a14ed312 66static void maintenance_print_command (char *, int);
c906108c 67
1c689132
DB
68static void maintenance_do_deprecate (char *, int);
69
c906108c
SS
70/* Set this to the maximum number of seconds to wait instead of waiting forever
71 in target_wait(). If this timer times out, then it generates an error and
72 the command is aborted. This replaces most of the need for timeouts in the
73 GDB test suite, and makes it possible to distinguish between a hung target
74 and one with slow communications. */
75
76int watchdog = 0;
920d2a44
AC
77static void
78show_watchdog (struct ui_file *file, int from_tty,
79 struct cmd_list_element *c, const char *value)
80{
81 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
82}
c906108c 83
7f86f058 84/* Access the maintenance subcommands. */
c906108c
SS
85
86static void
fba45db2 87maintenance_command (char *args, int from_tty)
c906108c 88{
3e43a32a
MS
89 printf_unfiltered (_("\"maintenance\" must be followed by "
90 "the name of a maintenance command.\n"));
635c7e8a 91 help_list (maintenancelist, "maintenance ", all_commands, gdb_stdout);
c906108c
SS
92}
93
94#ifndef _WIN32
c906108c 95static void
fba45db2 96maintenance_dump_me (char *args, int from_tty)
c906108c 97{
9e2f0ad4 98 if (query (_("Should GDB dump core? ")))
c906108c 99 {
7be570e7
JM
100#ifdef __DJGPP__
101 /* SIGQUIT by default is ignored, so use SIGABRT instead. */
102 signal (SIGABRT, SIG_DFL);
103 kill (getpid (), SIGABRT);
104#else
c906108c
SS
105 signal (SIGQUIT, SIG_DFL);
106 kill (getpid (), SIGQUIT);
7be570e7 107#endif
c906108c
SS
108 }
109}
110#endif
111
7be570e7
JM
112/* Stimulate the internal error mechanism that GDB uses when an
113 internal problem is detected. Allows testing of the mechanism.
114 Also useful when the user wants to drop a core file but not exit
025bb325 115 GDB. */
7be570e7
JM
116
117static void
118maintenance_internal_error (char *args, int from_tty)
119{
dec43320
AC
120 internal_error (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
121}
122
123/* Stimulate the internal error mechanism that GDB uses when an
124 internal problem is detected. Allows testing of the mechanism.
125 Also useful when the user wants to drop a core file but not exit
025bb325 126 GDB. */
dec43320
AC
127
128static void
129maintenance_internal_warning (char *args, int from_tty)
130{
131 internal_warning (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
7be570e7
JM
132}
133
33f91161
AC
134/* Someday we should allow demangling for things other than just
135 explicit strings. For example, we might want to be able to specify
136 the address of a string in either GDB's process space or the
137 debuggee's process space, and have gdb fetch and demangle that
138 string. If we have a char* pointer "ptr" that points to a string,
139 we might want to be able to given just the name and have GDB
025bb325 140 demangle and print what it points to, etc. (FIXME) */
c906108c
SS
141
142static void
fba45db2 143maintenance_demangle (char *args, int from_tty)
c906108c
SS
144{
145 char *demangled;
146
147 if (args == NULL || *args == '\0')
148 {
3e43a32a
MS
149 printf_unfiltered (_("\"maintenance demangle\" takes "
150 "an argument to demangle.\n"));
c906108c
SS
151 }
152 else
153 {
9a3d7dfd
AF
154 demangled = language_demangle (current_language, args,
155 DMGL_ANSI | DMGL_PARAMS);
c906108c
SS
156 if (demangled != NULL)
157 {
158 printf_unfiltered ("%s\n", demangled);
b8c9b27d 159 xfree (demangled);
c906108c
SS
160 }
161 else
162 {
a3f17187 163 printf_unfiltered (_("Can't demangle \"%s\"\n"), args);
c906108c
SS
164 }
165 }
166}
167
168static void
fba45db2 169maintenance_time_display (char *args, int from_tty)
c906108c 170{
c906108c 171 if (args == NULL || *args == '\0')
a3f17187 172 printf_unfiltered (_("\"maintenance time\" takes a numeric argument.\n"));
c906108c 173 else
bd712aed 174 set_per_command_time (strtol (args, NULL, 10));
c906108c
SS
175}
176
177static void
fba45db2 178maintenance_space_display (char *args, int from_tty)
c906108c 179{
c906108c
SS
180 if (args == NULL || *args == '\0')
181 printf_unfiltered ("\"maintenance space\" takes a numeric argument.\n");
182 else
bd712aed 183 set_per_command_space (strtol (args, NULL, 10));
c906108c
SS
184}
185
33f91161
AC
186/* The "maintenance info" command is defined as a prefix, with
187 allow_unknown 0. Therefore, its own definition is called only for
188 "maintenance info" with no args. */
c906108c 189
c906108c 190static void
fba45db2 191maintenance_info_command (char *arg, int from_tty)
c906108c 192{
3e43a32a
MS
193 printf_unfiltered (_("\"maintenance info\" must be followed "
194 "by the name of an info command.\n"));
635c7e8a
TT
195 help_list (maintenanceinfolist, "maintenance info ", all_commands,
196 gdb_stdout);
c906108c
SS
197}
198
a532ca62
MS
199/* Mini tokenizing lexer for 'maint info sections' command. */
200
201static int
473e38f3 202match_substring (const char *string, const char *substr)
a532ca62
MS
203{
204 int substr_len = strlen(substr);
473e38f3 205 const char *tok;
a532ca62
MS
206
207 while ((tok = strstr (string, substr)) != NULL)
208 {
025bb325 209 /* Got a partial match. Is it a whole word? */
b01d807c
MS
210 if (tok == string
211 || tok[-1] == ' '
212 || tok[-1] == '\t')
a532ca62 213 {
025bb325 214 /* Token is delimited at the front... */
b01d807c
MS
215 if (tok[substr_len] == ' '
216 || tok[substr_len] == '\t'
217 || tok[substr_len] == '\0')
a532ca62
MS
218 {
219 /* Token is delimited at the rear. Got a whole-word match. */
220 return 1;
221 }
222 }
223 /* Token didn't match as a whole word. Advance and try again. */
224 string = tok + 1;
225 }
226 return 0;
227}
228
43155bc1
MS
229static int
230match_bfd_flags (char *string, flagword flags)
c906108c 231{
43155bc1 232 if (flags & SEC_ALLOC)
a532ca62 233 if (match_substring (string, "ALLOC"))
43155bc1
MS
234 return 1;
235 if (flags & SEC_LOAD)
a532ca62 236 if (match_substring (string, "LOAD"))
43155bc1
MS
237 return 1;
238 if (flags & SEC_RELOC)
a532ca62 239 if (match_substring (string, "RELOC"))
43155bc1
MS
240 return 1;
241 if (flags & SEC_READONLY)
a532ca62 242 if (match_substring (string, "READONLY"))
43155bc1
MS
243 return 1;
244 if (flags & SEC_CODE)
a532ca62 245 if (match_substring (string, "CODE"))
43155bc1
MS
246 return 1;
247 if (flags & SEC_DATA)
a532ca62 248 if (match_substring (string, "DATA"))
43155bc1
MS
249 return 1;
250 if (flags & SEC_ROM)
a532ca62 251 if (match_substring (string, "ROM"))
43155bc1
MS
252 return 1;
253 if (flags & SEC_CONSTRUCTOR)
a532ca62 254 if (match_substring (string, "CONSTRUCTOR"))
43155bc1
MS
255 return 1;
256 if (flags & SEC_HAS_CONTENTS)
a532ca62 257 if (match_substring (string, "HAS_CONTENTS"))
43155bc1
MS
258 return 1;
259 if (flags & SEC_NEVER_LOAD)
a532ca62 260 if (match_substring (string, "NEVER_LOAD"))
43155bc1
MS
261 return 1;
262 if (flags & SEC_COFF_SHARED_LIBRARY)
a532ca62 263 if (match_substring (string, "COFF_SHARED_LIBRARY"))
43155bc1
MS
264 return 1;
265 if (flags & SEC_IS_COMMON)
a532ca62 266 if (match_substring (string, "IS_COMMON"))
43155bc1 267 return 1;
c906108c 268
43155bc1
MS
269 return 0;
270}
c906108c 271
43155bc1
MS
272static void
273print_bfd_flags (flagword flags)
274{
c906108c
SS
275 if (flags & SEC_ALLOC)
276 printf_filtered (" ALLOC");
277 if (flags & SEC_LOAD)
278 printf_filtered (" LOAD");
279 if (flags & SEC_RELOC)
280 printf_filtered (" RELOC");
281 if (flags & SEC_READONLY)
282 printf_filtered (" READONLY");
283 if (flags & SEC_CODE)
284 printf_filtered (" CODE");
285 if (flags & SEC_DATA)
286 printf_filtered (" DATA");
287 if (flags & SEC_ROM)
288 printf_filtered (" ROM");
289 if (flags & SEC_CONSTRUCTOR)
290 printf_filtered (" CONSTRUCTOR");
291 if (flags & SEC_HAS_CONTENTS)
292 printf_filtered (" HAS_CONTENTS");
293 if (flags & SEC_NEVER_LOAD)
294 printf_filtered (" NEVER_LOAD");
295 if (flags & SEC_COFF_SHARED_LIBRARY)
296 printf_filtered (" COFF_SHARED_LIBRARY");
297 if (flags & SEC_IS_COMMON)
298 printf_filtered (" IS_COMMON");
43155bc1
MS
299}
300
301static void
67a2b77e
AC
302maint_print_section_info (const char *name, flagword flags,
303 CORE_ADDR addr, CORE_ADDR endaddr,
5af949e3 304 unsigned long filepos, int addr_size)
43155bc1 305{
5af949e3
UW
306 printf_filtered (" %s", hex_string_custom (addr, addr_size));
307 printf_filtered ("->%s", hex_string_custom (endaddr, addr_size));
3ab13650 308 printf_filtered (" at %s",
bb599908 309 hex_string_custom ((unsigned long) filepos, 8));
e3d3bfda
MS
310 printf_filtered (": %s", name);
311 print_bfd_flags (flags);
312 printf_filtered ("\n");
313}
c906108c 314
e3d3bfda
MS
315static void
316print_bfd_section_info (bfd *abfd,
317 asection *asect,
318 void *arg)
319{
320 flagword flags = bfd_get_section_flags (abfd, asect);
321 const char *name = bfd_section_name (abfd, asect);
322
b01d807c
MS
323 if (arg == NULL || *((char *) arg) == '\0'
324 || match_substring ((char *) arg, name)
325 || match_bfd_flags ((char *) arg, flags))
e3d3bfda 326 {
5af949e3
UW
327 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
328 int addr_size = gdbarch_addr_bit (gdbarch) / 8;
e3d3bfda
MS
329 CORE_ADDR addr, endaddr;
330
331 addr = bfd_section_vma (abfd, asect);
332 endaddr = addr + bfd_section_size (abfd, asect);
8625fc1b 333 printf_filtered (" [%d] ", gdb_bfd_section_index (abfd, asect));
5af949e3
UW
334 maint_print_section_info (name, flags, addr, endaddr,
335 asect->filepos, addr_size);
e3d3bfda
MS
336 }
337}
338
339static void
340print_objfile_section_info (bfd *abfd,
341 struct obj_section *asect,
342 char *string)
343{
344 flagword flags = bfd_get_section_flags (abfd, asect->the_bfd_section);
345 const char *name = bfd_section_name (abfd, asect->the_bfd_section);
43155bc1 346
b01d807c
MS
347 if (string == NULL || *string == '\0'
348 || match_substring (string, name)
349 || match_bfd_flags (string, flags))
43155bc1 350 {
5af949e3
UW
351 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
352 int addr_size = gdbarch_addr_bit (gdbarch) / 8;
b8d56208 353
f1f6aadf
PA
354 maint_print_section_info (name, flags,
355 obj_section_addr (asect),
356 obj_section_endaddr (asect),
5af949e3
UW
357 asect->the_bfd_section->filepos,
358 addr_size);
43155bc1 359 }
c906108c
SS
360}
361
c906108c 362static void
fba45db2 363maintenance_info_sections (char *arg, int from_tty)
c906108c
SS
364{
365 if (exec_bfd)
366 {
a3f17187 367 printf_filtered (_("Exec file:\n"));
c5aa993b 368 printf_filtered (" `%s', ", bfd_get_filename (exec_bfd));
c906108c 369 wrap_here (" ");
a3f17187 370 printf_filtered (_("file type %s.\n"), bfd_get_target (exec_bfd));
a532ca62 371 if (arg && *arg && match_substring (arg, "ALLOBJ"))
e3d3bfda
MS
372 {
373 struct objfile *ofile;
374 struct obj_section *osect;
375
376 /* Only this function cares about the 'ALLOBJ' argument;
377 if 'ALLOBJ' is the only argument, discard it rather than
378 passing it down to print_objfile_section_info (which
379 wouldn't know how to handle it). */
380 if (strcmp (arg, "ALLOBJ") == 0)
381 arg = NULL;
382
383 ALL_OBJFILES (ofile)
384 {
a3f17187 385 printf_filtered (_(" Object file: %s\n"),
e3d3bfda
MS
386 bfd_get_filename (ofile->obfd));
387 ALL_OBJFILE_OSECTIONS (ofile, osect)
388 {
389 print_objfile_section_info (ofile->obfd, osect, arg);
390 }
391 }
392 }
393 else
394 bfd_map_over_sections (exec_bfd, print_bfd_section_info, arg);
c906108c
SS
395 }
396
397 if (core_bfd)
398 {
a3f17187 399 printf_filtered (_("Core file:\n"));
c5aa993b 400 printf_filtered (" `%s', ", bfd_get_filename (core_bfd));
c906108c 401 wrap_here (" ");
a3f17187 402 printf_filtered (_("file type %s.\n"), bfd_get_target (core_bfd));
e3d3bfda 403 bfd_map_over_sections (core_bfd, print_bfd_section_info, arg);
c906108c
SS
404 }
405}
406
025cfdb2 407static void
fba45db2 408maintenance_print_statistics (char *args, int from_tty)
c906108c
SS
409{
410 print_objfile_statistics ();
411 print_symbol_bcache_statistics ();
412}
413
b9362cc7 414static void
4b9b3959
AC
415maintenance_print_architecture (char *args, int from_tty)
416{
e17c207e
UW
417 struct gdbarch *gdbarch = get_current_arch ();
418
4b9b3959 419 if (args == NULL)
e17c207e 420 gdbarch_dump (gdbarch, gdb_stdout);
4b9b3959
AC
421 else
422 {
724b958c 423 struct cleanup *cleanups;
4b9b3959 424 struct ui_file *file = gdb_fopen (args, "w");
b8d56208 425
4b9b3959 426 if (file == NULL)
e2e0b3e5 427 perror_with_name (_("maintenance print architecture"));
724b958c 428 cleanups = make_cleanup_ui_file_delete (file);
e17c207e 429 gdbarch_dump (gdbarch, file);
724b958c 430 do_cleanups (cleanups);
4b9b3959
AC
431 }
432}
433
33f91161
AC
434/* The "maintenance print" command is defined as a prefix, with
435 allow_unknown 0. Therefore, its own definition is called only for
436 "maintenance print" with no args. */
c906108c 437
c906108c 438static void
fba45db2 439maintenance_print_command (char *arg, int from_tty)
c906108c 440{
3e43a32a
MS
441 printf_unfiltered (_("\"maintenance print\" must be followed "
442 "by the name of a print command.\n"));
635c7e8a
TT
443 help_list (maintenanceprintlist, "maintenance print ", all_commands,
444 gdb_stdout);
c906108c
SS
445}
446
447/* The "maintenance translate-address" command converts a section and address
448 to a symbol. This can be called in two ways:
c5aa993b 449 maintenance translate-address <secname> <addr>
025bb325 450 or maintenance translate-address <addr>. */
c906108c
SS
451
452static void
fba45db2 453maintenance_translate_address (char *arg, int from_tty)
c906108c
SS
454{
455 CORE_ADDR address;
714835d5 456 struct obj_section *sect;
c906108c 457 char *p;
7cbd4a93 458 struct bound_minimal_symbol sym;
c906108c
SS
459 struct objfile *objfile;
460
461 if (arg == NULL || *arg == 0)
8a3fe4f8 462 error (_("requires argument (address or section + address)"));
c906108c
SS
463
464 sect = NULL;
465 p = arg;
466
467 if (!isdigit (*p))
025bb325
MS
468 { /* See if we have a valid section name. */
469 while (*p && !isspace (*p)) /* Find end of section name. */
c906108c 470 p++;
025bb325 471 if (*p == '\000') /* End of command? */
8a3fe4f8 472 error (_("Need to specify <section-name> and <address>"));
c906108c 473 *p++ = '\000';
529480d0 474 p = skip_spaces (p);
c906108c 475
714835d5 476 ALL_OBJSECTIONS (objfile, sect)
c5aa993b 477 {
714835d5 478 if (strcmp (sect->the_bfd_section->name, arg) == 0)
c5aa993b
JM
479 break;
480 }
c906108c 481
15c99a44 482 if (!objfile)
8a3fe4f8 483 error (_("Unknown section %s."), arg);
c906108c
SS
484 }
485
486 address = parse_and_eval_address (p);
487
488 if (sect)
489 sym = lookup_minimal_symbol_by_pc_section (address, sect);
490 else
491 sym = lookup_minimal_symbol_by_pc (address);
492
7cbd4a93 493 if (sym.minsym)
c14c28ba 494 {
efd66ac6 495 const char *symbol_name = MSYMBOL_PRINT_NAME (sym.minsym);
3e43a32a 496 const char *symbol_offset
77e371c0 497 = pulongest (address - BMSYMBOL_VALUE_ADDRESS (sym));
c14c28ba 498
efd66ac6 499 sect = MSYMBOL_OBJ_SECTION(sym.objfile, sym.minsym);
c14c28ba
PP
500 if (sect != NULL)
501 {
502 const char *section_name;
503 const char *obj_name;
504
505 gdb_assert (sect->the_bfd_section && sect->the_bfd_section->name);
506 section_name = sect->the_bfd_section->name;
507
4262abfb
JK
508 gdb_assert (sect->objfile && objfile_name (sect->objfile));
509 obj_name = objfile_name (sect->objfile);
c14c28ba
PP
510
511 if (MULTI_OBJFILE_P ())
512 printf_filtered (_("%s + %s in section %s of %s\n"),
3e43a32a
MS
513 symbol_name, symbol_offset,
514 section_name, obj_name);
c14c28ba
PP
515 else
516 printf_filtered (_("%s + %s in section %s\n"),
517 symbol_name, symbol_offset, section_name);
518 }
519 else
520 printf_filtered (_("%s + %s\n"), symbol_name, symbol_offset);
521 }
c906108c 522 else if (sect)
5af949e3
UW
523 printf_filtered (_("no symbol at %s:%s\n"),
524 sect->the_bfd_section->name, hex_string (address));
c906108c 525 else
5af949e3 526 printf_filtered (_("no symbol at %s\n"), hex_string (address));
c906108c
SS
527
528 return;
529}
530
56382845 531
c114dcd5 532/* When a command is deprecated the user will be warned the first time
33f91161 533 the command is used. If possible, a replacement will be
025bb325 534 offered. */
56382845
FN
535
536static void
537maintenance_deprecate (char *args, int from_tty)
538{
539 if (args == NULL || *args == '\0')
540 {
cce7e648
PA
541 printf_unfiltered (_("\"maintenance deprecate\" takes an argument,\n\
542the command you want to deprecate, and optionally the replacement command\n\
a3f17187 543enclosed in quotes.\n"));
56382845 544 }
33f91161 545
56382845
FN
546 maintenance_do_deprecate (args, 1);
547
548}
549
550
551static void
552maintenance_undeprecate (char *args, int from_tty)
553{
554 if (args == NULL || *args == '\0')
555 {
a3f17187
AC
556 printf_unfiltered (_("\"maintenance undeprecate\" takes an argument, \n\
557the command you want to undeprecate.\n"));
56382845 558 }
33f91161 559
56382845 560 maintenance_do_deprecate (args, 0);
33f91161 561
56382845
FN
562}
563
025bb325 564/* You really shouldn't be using this. It is just for the testsuite.
33f91161
AC
565 Rather, you should use deprecate_cmd() when the command is created
566 in _initialize_blah().
567
568 This function deprecates a command and optionally assigns it a
569 replacement. */
570
8399535b 571static void
33f91161
AC
572maintenance_do_deprecate (char *text, int deprecate)
573{
33f91161
AC
574 struct cmd_list_element *alias = NULL;
575 struct cmd_list_element *prefix_cmd = NULL;
576 struct cmd_list_element *cmd = NULL;
577
578 char *start_ptr = NULL;
579 char *end_ptr = NULL;
56382845 580 int len;
33f91161
AC
581 char *replacement = NULL;
582
1c689132
DB
583 if (text == NULL)
584 return;
56382845 585
33f91161
AC
586 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
587 {
a3f17187 588 printf_filtered (_("Can't find command '%s' to deprecate.\n"), text);
33f91161
AC
589 return;
590 }
56382845 591
56382845
FN
592 if (deprecate)
593 {
025bb325 594 /* Look for a replacement command. */
80ce1ecb
AC
595 start_ptr = strchr (text, '\"');
596 if (start_ptr != NULL)
33f91161
AC
597 {
598 start_ptr++;
80ce1ecb
AC
599 end_ptr = strrchr (start_ptr, '\"');
600 if (end_ptr != NULL)
33f91161
AC
601 {
602 len = end_ptr - start_ptr;
603 start_ptr[len] = '\0';
604 replacement = xstrdup (start_ptr);
605 }
606 }
56382845 607 }
33f91161 608
56382845
FN
609 if (!start_ptr || !end_ptr)
610 replacement = NULL;
33f91161
AC
611
612
56382845 613 /* If they used an alias, we only want to deprecate the alias.
33f91161 614
56382845
FN
615 Note the MALLOCED_REPLACEMENT test. If the command's replacement
616 string was allocated at compile time we don't want to free the
025bb325 617 memory. */
56382845
FN
618 if (alias)
619 {
1f2bdf09 620 if (alias->malloced_replacement)
b8c9b27d 621 xfree (alias->replacement);
33f91161 622
56382845 623 if (deprecate)
1f2bdf09
TT
624 {
625 alias->deprecated_warn_user = 1;
626 alias->cmd_deprecated = 1;
627 }
56382845 628 else
1f2bdf09
TT
629 {
630 alias->deprecated_warn_user = 0;
631 alias->cmd_deprecated = 0;
632 }
33f91161 633 alias->replacement = replacement;
1f2bdf09 634 alias->malloced_replacement = 1;
56382845
FN
635 return;
636 }
637 else if (cmd)
638 {
1f2bdf09 639 if (cmd->malloced_replacement)
b8c9b27d 640 xfree (cmd->replacement);
56382845
FN
641
642 if (deprecate)
1f2bdf09
TT
643 {
644 cmd->deprecated_warn_user = 1;
645 cmd->cmd_deprecated = 1;
646 }
56382845 647 else
1f2bdf09
TT
648 {
649 cmd->deprecated_warn_user = 0;
650 cmd->cmd_deprecated = 0;
651 }
33f91161 652 cmd->replacement = replacement;
1f2bdf09 653 cmd->malloced_replacement = 1;
56382845
FN
654 return;
655 }
240f9570 656 xfree (replacement);
56382845
FN
657}
658
4f337972
AC
659/* Maintenance set/show framework. */
660
ae038cb0
DJ
661struct cmd_list_element *maintenance_set_cmdlist;
662struct cmd_list_element *maintenance_show_cmdlist;
4f337972
AC
663
664static void
665maintenance_set_cmd (char *args, int from_tty)
666{
3e43a32a
MS
667 printf_unfiltered (_("\"maintenance set\" must be followed "
668 "by the name of a set command.\n"));
635c7e8a
TT
669 help_list (maintenance_set_cmdlist, "maintenance set ", all_commands,
670 gdb_stdout);
4f337972
AC
671}
672
673static void
674maintenance_show_cmd (char *args, int from_tty)
675{
676 cmd_show_list (maintenance_show_cmdlist, from_tty, "");
677}
678
4f337972
AC
679/* Profiling support. */
680
681static int maintenance_profile_p;
920d2a44
AC
682static void
683show_maintenance_profile_p (struct ui_file *file, int from_tty,
684 struct cmd_list_element *c, const char *value)
685{
686 fprintf_filtered (file, _("Internal profiling is %s.\n"), value);
687}
d9feb4e7 688
b0b1c2c0
MK
689#ifdef HAVE__ETEXT
690extern char _etext;
691#define TEXTEND &_etext
01fe12f6 692#elif defined (HAVE_ETEXT)
b0b1c2c0
MK
693extern char etext;
694#define TEXTEND &etext
695#endif
696
01fe12f6
JB
697#if defined (HAVE_MONSTARTUP) && defined (HAVE__MCLEANUP) && defined (TEXTEND)
698
d28f9cdf
DJ
699static int profiling_state;
700
701static void
702mcleanup_wrapper (void)
703{
704 extern void _mcleanup (void);
705
706 if (profiling_state)
707 _mcleanup ();
708}
4f337972
AC
709
710static void
3e43a32a
MS
711maintenance_set_profile_cmd (char *args, int from_tty,
712 struct cmd_list_element *c)
4f337972 713{
d28f9cdf
DJ
714 if (maintenance_profile_p == profiling_state)
715 return;
716
717 profiling_state = maintenance_profile_p;
718
719 if (maintenance_profile_p)
720 {
721 static int profiling_initialized;
722
723 extern void monstartup (unsigned long, unsigned long);
d28f9cdf
DJ
724 extern int main();
725
726 if (!profiling_initialized)
727 {
728 atexit (mcleanup_wrapper);
729 profiling_initialized = 1;
730 }
731
732 /* "main" is now always the first function in the text segment, so use
733 its address for monstartup. */
b0b1c2c0 734 monstartup ((unsigned long) &main, (unsigned long) TEXTEND);
d28f9cdf
DJ
735 }
736 else
737 {
738 extern void _mcleanup (void);
b8d56208 739
d28f9cdf
DJ
740 _mcleanup ();
741 }
4f337972 742}
d9feb4e7
DJ
743#else
744static void
3e43a32a
MS
745maintenance_set_profile_cmd (char *args, int from_tty,
746 struct cmd_list_element *c)
d9feb4e7 747{
8a3fe4f8 748 error (_("Profiling support is not available on this system."));
d9feb4e7
DJ
749}
750#endif
bd712aed
DE
751\f
752/* If nonzero, display time usage both at startup and for each command. */
56382845 753
bd712aed
DE
754static int per_command_time;
755
756/* If nonzero, display space usage both at startup and for each command. */
757
758static int per_command_space;
759
760/* If nonzero, display basic symtab stats for each command. */
761
762static int per_command_symtab;
763
764/* mt per-command commands. */
765
766static struct cmd_list_element *per_command_setlist;
767static struct cmd_list_element *per_command_showlist;
768
769/* Records a run time and space usage to be used as a base for
770 reporting elapsed time or change in space. */
771
772struct cmd_stats
773{
774 /* Zero if the saved time is from the beginning of GDB execution.
775 One if from the beginning of an individual command execution. */
776 int msg_type;
777 /* Track whether the stat was enabled at the start of the command
778 so that we can avoid printing anything if it gets turned on by
779 the current command. */
780 int time_enabled : 1;
781 int space_enabled : 1;
782 int symtab_enabled : 1;
783 long start_cpu_time;
784 struct timeval start_wall_time;
785 long start_space;
786 /* Total number of symtabs (over all objfiles). */
787 int start_nr_symtabs;
788 /* Of those, a count of just the primary ones. */
789 int start_nr_primary_symtabs;
790 /* Total number of blocks. */
791 int start_nr_blocks;
792};
793
794/* Set whether to display time statistics to NEW_VALUE
795 (non-zero means true). */
796
797void
798set_per_command_time (int new_value)
799{
800 per_command_time = new_value;
801}
802
803/* Set whether to display space statistics to NEW_VALUE
804 (non-zero means true). */
805
806void
807set_per_command_space (int new_value)
808{
809 per_command_space = new_value;
810}
811
812/* Count the number of symtabs and blocks. */
813
814static void
815count_symtabs_and_blocks (int *nr_symtabs_ptr, int *nr_primary_symtabs_ptr,
816 int *nr_blocks_ptr)
817{
818 struct objfile *o;
819 struct symtab *s;
820 int nr_symtabs = 0;
821 int nr_primary_symtabs = 0;
822 int nr_blocks = 0;
823
824 ALL_SYMTABS (o, s)
825 {
826 ++nr_symtabs;
827 if (s->primary)
828 {
829 ++nr_primary_symtabs;
830 nr_blocks += BLOCKVECTOR_NBLOCKS (BLOCKVECTOR (s));
831 }
832 }
833
834 *nr_symtabs_ptr = nr_symtabs;
835 *nr_primary_symtabs_ptr = nr_primary_symtabs;
836 *nr_blocks_ptr = nr_blocks;
837}
838
839/* As indicated by display_time and display_space, report GDB's elapsed time
840 and space usage from the base time and space provided in ARG, which
841 must be a pointer to a struct cmd_stat. This function is intended
842 to be called as a cleanup. */
843
844static void
845report_command_stats (void *arg)
846{
847 struct cmd_stats *start_stats = (struct cmd_stats *) arg;
848 int msg_type = start_stats->msg_type;
849
850 if (start_stats->time_enabled)
851 {
852 long cmd_time = get_run_time () - start_stats->start_cpu_time;
853 struct timeval now_wall_time, delta_wall_time, wait_time;
854
855 gettimeofday (&now_wall_time, NULL);
856 timeval_sub (&delta_wall_time,
857 &now_wall_time, &start_stats->start_wall_time);
858
859 /* Subtract time spend in prompt_for_continue from walltime. */
860 wait_time = get_prompt_for_continue_wait_time ();
861 timeval_sub (&delta_wall_time, &delta_wall_time, &wait_time);
862
863 printf_unfiltered (msg_type == 0
864 ? _("Startup time: %ld.%06ld (cpu), %ld.%06ld (wall)\n")
865 : _("Command execution time: %ld.%06ld (cpu), %ld.%06ld (wall)\n"),
866 cmd_time / 1000000, cmd_time % 1000000,
867 (long) delta_wall_time.tv_sec,
868 (long) delta_wall_time.tv_usec);
869 }
870
871 if (start_stats->space_enabled)
872 {
873#ifdef HAVE_SBRK
874 char *lim = (char *) sbrk (0);
875
876 long space_now = lim - lim_at_start;
877 long space_diff = space_now - start_stats->start_space;
878
879 printf_unfiltered (msg_type == 0
880 ? _("Space used: %ld (%s%ld during startup)\n")
881 : _("Space used: %ld (%s%ld for this command)\n"),
882 space_now,
883 (space_diff >= 0 ? "+" : ""),
884 space_diff);
885#endif
886 }
887
888 if (start_stats->symtab_enabled)
889 {
890 int nr_symtabs, nr_primary_symtabs, nr_blocks;
891
892 count_symtabs_and_blocks (&nr_symtabs, &nr_primary_symtabs, &nr_blocks);
893 printf_unfiltered (_("#symtabs: %d (+%d),"
894 " #primary symtabs: %d (+%d),"
895 " #blocks: %d (+%d)\n"),
896 nr_symtabs,
897 nr_symtabs - start_stats->start_nr_symtabs,
898 nr_primary_symtabs,
899 nr_primary_symtabs - start_stats->start_nr_primary_symtabs,
900 nr_blocks,
901 nr_blocks - start_stats->start_nr_blocks);
902 }
903}
904
905/* Create a cleanup that reports time and space used since its creation.
906 MSG_TYPE is zero for gdb startup, otherwise it is one(1) to report
907 data for individual commands. */
908
909struct cleanup *
910make_command_stats_cleanup (int msg_type)
911{
912 struct cmd_stats *new_stat;
913
914 /* Early exit if we're not reporting any stats. */
915 if (!per_command_time
916 && !per_command_space
917 && !per_command_symtab)
918 return make_cleanup (null_cleanup, 0);
919
41bf6aca 920 new_stat = XCNEW (struct cmd_stats);
bd712aed
DE
921
922 new_stat->msg_type = msg_type;
923
924 if (per_command_space)
925 {
926#ifdef HAVE_SBRK
927 char *lim = (char *) sbrk (0);
928 new_stat->start_space = lim - lim_at_start;
929 new_stat->space_enabled = 1;
930#endif
931 }
932
933 if (per_command_time)
934 {
935 new_stat->start_cpu_time = get_run_time ();
936 gettimeofday (&new_stat->start_wall_time, NULL);
937 new_stat->time_enabled = 1;
938 }
939
940 if (per_command_symtab)
941 {
942 int nr_symtabs, nr_primary_symtabs, nr_blocks;
943
944 count_symtabs_and_blocks (&nr_symtabs, &nr_primary_symtabs, &nr_blocks);
945 new_stat->start_nr_symtabs = nr_symtabs;
946 new_stat->start_nr_primary_symtabs = nr_primary_symtabs;
947 new_stat->start_nr_blocks = nr_blocks;
948 new_stat->symtab_enabled = 1;
949 }
950
951 /* Initalize timer to keep track of how long we waited for the user. */
952 reset_prompt_for_continue_wait_time ();
953
954 return make_cleanup_dtor (report_command_stats, new_stat, xfree);
955}
956
957/* Handle unknown "mt set per-command" arguments.
958 In this case have "mt set per-command on|off" affect every setting. */
959
960static void
961set_per_command_cmd (char *args, int from_tty)
962{
963 struct cmd_list_element *list;
964 size_t length;
965 int val;
966
967 val = parse_cli_boolean_value (args);
968 if (val < 0)
969 error (_("Bad value for 'mt set per-command no'."));
970
971 for (list = per_command_setlist; list != NULL; list = list->next)
972 if (list->var_type == var_boolean)
973 {
974 gdb_assert (list->type == set_cmd);
975 do_set_command (args, from_tty, list);
976 }
977}
978
979/* Command "show per-command" displays summary of all the current
980 "show per-command " settings. */
981
982static void
983show_per_command_cmd (char *args, int from_tty)
984{
985 cmd_show_list (per_command_showlist, from_tty, "");
986}
987\f
c906108c 988void
fba45db2 989_initialize_maint_cmds (void)
c906108c 990{
1bedd215
AC
991 add_prefix_cmd ("maintenance", class_maintenance, maintenance_command, _("\
992Commands for use by GDB maintainers.\n\
c906108c
SS
993Includes commands to dump specific internal GDB structures in\n\
994a human readable form, to cause GDB to deliberately dump core,\n\
1bedd215 995to test internal functions such as the C++/ObjC demangler, etc."),
c906108c
SS
996 &maintenancelist, "maintenance ", 0,
997 &cmdlist);
998
999 add_com_alias ("mt", "maintenance", class_maintenance, 1);
1000
1bedd215
AC
1001 add_prefix_cmd ("info", class_maintenance, maintenance_info_command, _("\
1002Commands for showing internal info about the program being debugged."),
c906108c
SS
1003 &maintenanceinfolist, "maintenance info ", 0,
1004 &maintenancelist);
90515c23 1005 add_alias_cmd ("i", "info", class_maintenance, 1, &maintenancelist);
c906108c 1006
1a966eab
AC
1007 add_cmd ("sections", class_maintenance, maintenance_info_sections, _("\
1008List the BFD sections of the exec and core files. \n\
e3d3bfda
MS
1009Arguments may be any combination of:\n\
1010 [one or more section names]\n\
1011 ALLOC LOAD RELOC READONLY CODE DATA ROM CONSTRUCTOR\n\
1012 HAS_CONTENTS NEVER_LOAD COFF_SHARED_LIBRARY IS_COMMON\n\
1013Sections matching any argument will be listed (no argument\n\
1014implies all sections). In addition, the special argument\n\
1015 ALLOBJ\n\
1a966eab 1016lists all sections from all object files, including shared libraries."),
c906108c
SS
1017 &maintenanceinfolist);
1018
1019 add_prefix_cmd ("print", class_maintenance, maintenance_print_command,
1bedd215 1020 _("Maintenance command for printing GDB internal state."),
c906108c
SS
1021 &maintenanceprintlist, "maintenance print ", 0,
1022 &maintenancelist);
1023
1bedd215 1024 add_prefix_cmd ("set", class_maintenance, maintenance_set_cmd, _("\
4f337972 1025Set GDB internal variables used by the GDB maintainer.\n\
1bedd215 1026Configure variables internal to GDB that aid in GDB's maintenance"),
4f337972
AC
1027 &maintenance_set_cmdlist, "maintenance set ",
1028 0/*allow-unknown*/,
1029 &maintenancelist);
1030
1bedd215 1031 add_prefix_cmd ("show", class_maintenance, maintenance_show_cmd, _("\
4f337972 1032Show GDB internal variables used by the GDB maintainer.\n\
1bedd215 1033Configure variables internal to GDB that aid in GDB's maintenance"),
4f337972
AC
1034 &maintenance_show_cmdlist, "maintenance show ",
1035 0/*allow-unknown*/,
1036 &maintenancelist);
1037
c906108c 1038#ifndef _WIN32
1a966eab
AC
1039 add_cmd ("dump-me", class_maintenance, maintenance_dump_me, _("\
1040Get fatal error; make debugger dump its core.\n\
8308e54c 1041GDB sets its handling of SIGQUIT back to SIG_DFL and then sends\n\
1a966eab 1042itself a SIGQUIT signal."),
c906108c
SS
1043 &maintenancelist);
1044#endif
1045
1a966eab
AC
1046 add_cmd ("internal-error", class_maintenance,
1047 maintenance_internal_error, _("\
1048Give GDB an internal error.\n\
1049Cause GDB to behave as if an internal error was detected."),
7be570e7
JM
1050 &maintenancelist);
1051
1a966eab
AC
1052 add_cmd ("internal-warning", class_maintenance,
1053 maintenance_internal_warning, _("\
1054Give GDB an internal warning.\n\
1055Cause GDB to behave as if an internal warning was reported."),
dec43320
AC
1056 &maintenancelist);
1057
1a966eab
AC
1058 add_cmd ("demangle", class_maintenance, maintenance_demangle, _("\
1059Demangle a C++/ObjC mangled name.\n\
c906108c 1060Call internal GDB demangler routine to demangle a C++ link name\n\
1a966eab 1061and prints the result."),
c906108c
SS
1062 &maintenancelist);
1063
bd712aed
DE
1064 add_prefix_cmd ("per-command", class_maintenance, set_per_command_cmd, _("\
1065Per-command statistics settings."),
1066 &per_command_setlist, "set per-command ",
1067 1/*allow-unknown*/, &maintenance_set_cmdlist);
1068
1069 add_prefix_cmd ("per-command", class_maintenance, show_per_command_cmd, _("\
1070Show per-command statistics settings."),
1071 &per_command_showlist, "show per-command ",
1072 0/*allow-unknown*/, &maintenance_show_cmdlist);
1073
1074 add_setshow_boolean_cmd ("time", class_maintenance,
1075 &per_command_time, _("\
1076Set whether to display per-command execution time."), _("\
1077Show whether to display per-command execution time."),
1078 _("\
1079If enabled, the execution time for each command will be\n\
1080displayed following the command's output."),
1081 NULL, NULL,
1082 &per_command_setlist, &per_command_showlist);
1083
1084 add_setshow_boolean_cmd ("space", class_maintenance,
1085 &per_command_space, _("\
1086Set whether to display per-command space usage."), _("\
1087Show whether to display per-command space usage."),
1088 _("\
1089If enabled, the space usage for each command will be\n\
1090displayed following the command's output."),
1091 NULL, NULL,
1092 &per_command_setlist, &per_command_showlist);
1093
1094 add_setshow_boolean_cmd ("symtab", class_maintenance,
1095 &per_command_symtab, _("\
1096Set whether to display per-command symtab statistics."), _("\
1097Show whether to display per-command symtab statistics."),
1098 _("\
1099If enabled, the basic symtab statistics for each command will be\n\
1100displayed following the command's output."),
1101 NULL, NULL,
1102 &per_command_setlist, &per_command_showlist);
1103
1104 /* This is equivalent to "mt set per-command time on".
1105 Kept because some people are used to typing "mt time 1". */
1a966eab
AC
1106 add_cmd ("time", class_maintenance, maintenance_time_display, _("\
1107Set the display of time usage.\n\
c906108c 1108If nonzero, will cause the execution time for each command to be\n\
1a966eab 1109displayed, following the command's output."),
c906108c
SS
1110 &maintenancelist);
1111
bd712aed
DE
1112 /* This is equivalent to "mt set per-command space on".
1113 Kept because some people are used to typing "mt space 1". */
1a966eab
AC
1114 add_cmd ("space", class_maintenance, maintenance_space_display, _("\
1115Set the display of space usage.\n\
c906108c 1116If nonzero, will cause the execution space for each command to be\n\
1a966eab 1117displayed, following the command's output."),
c906108c
SS
1118 &maintenancelist);
1119
1a966eab
AC
1120 add_cmd ("type", class_maintenance, maintenance_print_type, _("\
1121Print a type chain for a given symbol.\n\
c906108c 1122For each node in a type chain, print the raw data for each member of\n\
1a966eab 1123the type structure, and the interpretation of the data."),
c906108c
SS
1124 &maintenanceprintlist);
1125
c906108c 1126 add_cmd ("statistics", class_maintenance, maintenance_print_statistics,
1a966eab 1127 _("Print statistics about internal gdb state."),
c906108c
SS
1128 &maintenanceprintlist);
1129
1a966eab
AC
1130 add_cmd ("architecture", class_maintenance,
1131 maintenance_print_architecture, _("\
1132Print the internal architecture configuration.\n\
1133Takes an optional file parameter."),
4b9b3959
AC
1134 &maintenanceprintlist);
1135
3e43a32a
MS
1136 add_cmd ("translate-address", class_maintenance,
1137 maintenance_translate_address,
1a966eab 1138 _("Translate a section name and address to a symbol."),
c906108c
SS
1139 &maintenancelist);
1140
1a966eab
AC
1141 add_cmd ("deprecate", class_maintenance, maintenance_deprecate, _("\
1142Deprecate a command. Note that this is just in here so the \n\
ef4cb050 1143testsuite can check the command deprecator. You probably shouldn't use this,\n\
56382845 1144rather you should use the C function deprecate_cmd(). If you decide you \n\
6f122dc9 1145want to use it: maintenance deprecate 'commandname' \"replacement\". The \n\
1a966eab 1146replacement is optional."), &maintenancelist);
56382845 1147
1a966eab
AC
1148 add_cmd ("undeprecate", class_maintenance, maintenance_undeprecate, _("\
1149Undeprecate a command. Note that this is just in here so the \n\
ef4cb050 1150testsuite can check the command deprecator. You probably shouldn't use this,\n\
1a966eab 1151If you decide you want to use it: maintenance undeprecate 'commandname'"),
33f91161 1152 &maintenancelist);
56382845 1153
85c07804
AC
1154 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
1155Set watchdog timer."), _("\
1156Show watchdog timer."), _("\
cb1a6d5f
AC
1157When non-zero, this timeout is used instead of waiting forever for a target\n\
1158to finish a low-level step or continue operation. If the specified amount\n\
85c07804
AC
1159of time passes without a response from the target, an error occurs."),
1160 NULL,
920d2a44 1161 show_watchdog,
85c07804 1162 &setlist, &showlist);
4f337972 1163
d28f9cdf 1164 add_setshow_boolean_cmd ("profile", class_maintenance,
7915a72c
AC
1165 &maintenance_profile_p, _("\
1166Set internal profiling."), _("\
1167Show internal profiling."), _("\
1168When enabled GDB is profiled."),
2c5b56ce 1169 maintenance_set_profile_cmd,
920d2a44 1170 show_maintenance_profile_p,
d28f9cdf
DJ
1171 &maintenance_set_cmdlist,
1172 &maintenance_show_cmdlist);
c906108c 1173}