Import of readline 4.3.
[deliverable/binutils-gdb.git] / gdb / cli / cli-cmds.c
CommitLineData
d318976c 1/* GDB CLI commands.
8926118c
AC
2
3 Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
d318976c
FN
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
9255ee31 22#include <readline/tilde.h>
d318976c
FN
23#include "defs.h"
24#include "completer.h"
25#include "target.h" /* For baud_rate, remote_debug and remote_timeout */
26#include "gdb_wait.h" /* For shell escape implementation */
f77b92bf 27#include "gdb_regex.h" /* Used by apropos_command */
5f8a3188 28#include "gdb_string.h"
0378c332
FN
29#include "linespec.h"
30#include "expression.h"
83c31e7d
FN
31#include "frame.h"
32#include "value.h"
0378c332 33#include "language.h"
fe4e3eb8 34#include "filenames.h" /* for DOSish file names */
0378c332
FN
35#include "objfiles.h"
36#include "source.h"
83c31e7d 37#include "disasm.h"
d318976c 38
d318976c 39#include "ui-out.h"
d318976c
FN
40
41#include "top.h"
42#include "cli/cli-decode.h"
43#include "cli/cli-script.h"
44#include "cli/cli-setshow.h"
45#include "cli/cli-cmds.h"
46
47#ifndef GDBINIT_FILENAME
48#define GDBINIT_FILENAME ".gdbinit"
49#endif
50
d318976c
FN
51/* From gdb/top.c */
52
53extern void dont_repeat (void);
54
55extern void set_verbose (char *, int, struct cmd_list_element *);
56
57extern void show_history (char *, int);
58
59extern void set_history (char *, int);
60
61extern void show_commands (char *, int);
62
0378c332 63/* Prototypes for local command functions */
d318976c
FN
64
65static void complete_command (char *, int);
66
67static void echo_command (char *, int);
68
69static void pwd_command (char *, int);
70
71static void show_version (char *, int);
72
73static void validate_comname (char *);
74
75static void help_command (char *, int);
76
77static void show_command (char *, int);
78
79static void info_command (char *, int);
80
81static void show_debug (char *, int);
82
83static void set_debug (char *, int);
84
85static void show_user (char *, int);
86
87static void make_command (char *, int);
88
89static void shell_escape (char *, int);
90
0378c332
FN
91static void edit_command (char *, int);
92
93static void list_command (char *, int);
94
d318976c 95void apropos_command (char *, int);
0378c332
FN
96
97/* Prototypes for local utility functions */
98
99static void ambiguous_line_spec (struct symtabs_and_lines *);
d318976c 100\f
20f01a46
DH
101/* Limit the call depth of user-defined commands */
102int max_user_call_depth;
103
d318976c
FN
104/* Define all cmd_list_elements. */
105
106/* Chain containing all defined commands. */
107
108struct cmd_list_element *cmdlist;
109
110/* Chain containing all defined info subcommands. */
111
112struct cmd_list_element *infolist;
113
114/* Chain containing all defined enable subcommands. */
115
116struct cmd_list_element *enablelist;
117
118/* Chain containing all defined disable subcommands. */
119
120struct cmd_list_element *disablelist;
121
122/* Chain containing all defined toggle subcommands. */
123
124struct cmd_list_element *togglelist;
125
126/* Chain containing all defined stop subcommands. */
127
128struct cmd_list_element *stoplist;
129
130/* Chain containing all defined delete subcommands. */
131
132struct cmd_list_element *deletelist;
133
134/* Chain containing all defined "enable breakpoint" subcommands. */
135
136struct cmd_list_element *enablebreaklist;
137
138/* Chain containing all defined set subcommands */
139
140struct cmd_list_element *setlist;
141
142/* Chain containing all defined unset subcommands */
143
144struct cmd_list_element *unsetlist;
145
146/* Chain containing all defined show subcommands. */
147
148struct cmd_list_element *showlist;
149
150/* Chain containing all defined \"set history\". */
151
152struct cmd_list_element *sethistlist;
153
154/* Chain containing all defined \"show history\". */
155
156struct cmd_list_element *showhistlist;
157
158/* Chain containing all defined \"unset history\". */
159
160struct cmd_list_element *unsethistlist;
161
162/* Chain containing all defined maintenance subcommands. */
163
164struct cmd_list_element *maintenancelist;
165
166/* Chain containing all defined "maintenance info" subcommands. */
167
168struct cmd_list_element *maintenanceinfolist;
169
170/* Chain containing all defined "maintenance print" subcommands. */
171
172struct cmd_list_element *maintenanceprintlist;
173
174struct cmd_list_element *setprintlist;
175
176struct cmd_list_element *showprintlist;
177
178struct cmd_list_element *setdebuglist;
179
180struct cmd_list_element *showdebuglist;
181
182struct cmd_list_element *setchecklist;
183
184struct cmd_list_element *showchecklist;
185\f
186/* Utility used everywhere when at least one argument is needed and
187 none is supplied. */
188
189void
190error_no_arg (char *why)
191{
192 error ("Argument required (%s).", why);
193}
194
195/* The "info" command is defined as a prefix, with allow_unknown = 0.
196 Therefore, its own definition is called only for "info" with no args. */
197
198/* ARGSUSED */
199static void
200info_command (char *arg, int from_tty)
201{
202 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
203 help_list (infolist, "info ", -1, gdb_stdout);
204}
205
206/* The "show" command with no arguments shows all the settings. */
207
208/* ARGSUSED */
209static void
210show_command (char *arg, int from_tty)
211{
212 cmd_show_list (showlist, from_tty, "");
213}
214\f
215/* Provide documentation on command or list given by COMMAND. FROM_TTY
216 is ignored. */
217
218/* ARGSUSED */
219static void
220help_command (char *command, int from_tty)
221{
222 help_cmd (command, gdb_stdout);
223}
224\f
83d31a92
TT
225/* String compare function for qsort. */
226static int
227compare_strings (const void *arg1, const void *arg2)
228{
229 const char **s1 = (const char **) arg1;
230 const char **s2 = (const char **) arg2;
231 return strcmp (*s1, *s2);
232}
233
d318976c
FN
234/* The "complete" command is used by Emacs to implement completion. */
235
236/* ARGSUSED */
237static void
238complete_command (char *arg, int from_tty)
239{
240 int i;
241 int argpoint;
83d31a92 242 char **completions;
d318976c
FN
243
244 dont_repeat ();
245
246 if (arg == NULL)
247 arg = "";
248 argpoint = strlen (arg);
249
83d31a92
TT
250 completions = complete_line (arg, arg, argpoint);
251
252 if (completions)
d318976c 253 {
83d31a92
TT
254 int item, size;
255
256 for (size = 0; completions[size]; ++size)
257 ;
258 qsort (completions, size, sizeof (char *), compare_strings);
259
260 /* We do extra processing here since we only want to print each
261 unique item once. */
262 item = 0;
263 while (item < size)
264 {
265 int next_item;
266 printf_unfiltered ("%s\n", completions[item]);
267 next_item = item + 1;
268 while (next_item < size
269 && ! strcmp (completions[item], completions[next_item]))
270 {
271 xfree (completions[next_item]);
272 ++next_item;
273 }
274
275 xfree (completions[item]);
276 item = next_item;
277 }
278
279 xfree (completions);
d318976c
FN
280 }
281}
282
bbaca940
AC
283int
284is_complete_command (struct cmd_list_element *c)
d318976c 285{
bbaca940 286 return cmd_cfunc_eq (c, complete_command);
d318976c
FN
287}
288
289/* ARGSUSED */
290static void
291show_version (char *args, int from_tty)
292{
293 immediate_quit++;
294 print_gdb_version (gdb_stdout);
295 printf_filtered ("\n");
296 immediate_quit--;
297}
298
299/* Handle the quit command. */
300
301void
302quit_command (char *args, int from_tty)
303{
304 if (!quit_confirm ())
305 error ("Not confirmed.");
306 quit_force (args, from_tty);
307}
308
309/* ARGSUSED */
310static void
311pwd_command (char *args, int from_tty)
312{
313 if (args)
314 error ("The \"pwd\" command does not take an argument: %s", args);
315 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
316
317 if (!STREQ (gdb_dirbuf, current_directory))
318 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
319 current_directory, gdb_dirbuf);
320 else
321 printf_unfiltered ("Working directory %s.\n", current_directory);
322}
323
324void
325cd_command (char *dir, int from_tty)
326{
327 int len;
328 /* Found something other than leading repetitions of "/..". */
329 int found_real_path;
330 char *p;
331
332 /* If the new directory is absolute, repeat is a no-op; if relative,
333 repeat might be useful but is more likely to be a mistake. */
334 dont_repeat ();
335
336 if (dir == 0)
337 error_no_arg ("new working directory");
338
339 dir = tilde_expand (dir);
b8c9b27d 340 make_cleanup (xfree, dir);
d318976c
FN
341
342 if (chdir (dir) < 0)
343 perror_with_name (dir);
344
c3690141 345#ifdef HAVE_DOS_BASED_FILE_SYSTEM
d318976c
FN
346 /* There's too much mess with DOSish names like "d:", "d:.",
347 "d:./foo" etc. Instead of having lots of special #ifdef'ed code,
348 simply get the canonicalized name of the current directory. */
349 dir = getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
350#endif
351
352 len = strlen (dir);
fe4e3eb8 353 if (IS_DIR_SEPARATOR (dir[len - 1]))
d318976c
FN
354 {
355 /* Remove the trailing slash unless this is a root directory
356 (including a drive letter on non-Unix systems). */
357 if (!(len == 1) /* "/" */
c3690141 358#ifdef HAVE_DOS_BASED_FILE_SYSTEM
fe4e3eb8 359 && !(len == 3 && dir[1] == ':') /* "d:/" */
d318976c
FN
360#endif
361 )
362 len--;
363 }
364
365 dir = savestring (dir, len);
fe4e3eb8 366 if (IS_ABSOLUTE_PATH (dir))
d318976c
FN
367 current_directory = dir;
368 else
369 {
fe4e3eb8 370 if (IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1]))
d318976c
FN
371 current_directory = concat (current_directory, dir, NULL);
372 else
373 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
b8c9b27d 374 xfree (dir);
d318976c
FN
375 }
376
377 /* Now simplify any occurrences of `.' and `..' in the pathname. */
378
379 found_real_path = 0;
380 for (p = current_directory; *p;)
381 {
fe4e3eb8
EZ
382 if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.'
383 && (p[2] == 0 || IS_DIR_SEPARATOR (p[2])))
d318976c 384 strcpy (p, p + 2);
fe4e3eb8
EZ
385 else if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.' && p[2] == '.'
386 && (p[3] == 0 || IS_DIR_SEPARATOR (p[3])))
d318976c
FN
387 {
388 if (found_real_path)
389 {
390 /* Search backwards for the directory just before the "/.."
391 and obliterate it and the "/..". */
392 char *q = p;
fe4e3eb8 393 while (q != current_directory && !IS_DIR_SEPARATOR (q[-1]))
d318976c
FN
394 --q;
395
396 if (q == current_directory)
397 /* current_directory is
398 a relative pathname ("can't happen"--leave it alone). */
399 ++p;
400 else
401 {
402 strcpy (q - 1, p + 3);
403 p = q - 1;
404 }
405 }
406 else
407 /* We are dealing with leading repetitions of "/..", for example
408 "/../..", which is the Mach super-root. */
409 p += 3;
410 }
411 else
412 {
413 found_real_path = 1;
414 ++p;
415 }
416 }
417
418 forget_cached_source_info ();
419
420 if (from_tty)
421 pwd_command ((char *) 0, 1);
422}
423\f
424void
425source_command (char *args, int from_tty)
426{
427 FILE *stream;
428 struct cleanup *old_cleanups;
429 char *file = args;
430
431 if (file == NULL)
432 {
433 error ("source command requires pathname of file to source.");
434 }
435
436 file = tilde_expand (file);
b8c9b27d 437 old_cleanups = make_cleanup (xfree, file);
d318976c
FN
438
439 stream = fopen (file, FOPEN_RT);
440 if (!stream)
441 {
442 if (from_tty)
443 perror_with_name (file);
444 else
445 return;
446 }
447
448 script_from_file (stream, file);
449
450 do_cleanups (old_cleanups);
451}
452
453/* ARGSUSED */
454static void
455echo_command (char *text, int from_tty)
456{
457 char *p = text;
458 register int c;
459
460 if (text)
461 while ((c = *p++) != '\0')
462 {
463 if (c == '\\')
464 {
465 /* \ at end of argument is used after spaces
466 so they won't be lost. */
467 if (*p == 0)
468 return;
469
470 c = parse_escape (&p);
471 if (c >= 0)
472 printf_filtered ("%c", c);
473 }
474 else
475 printf_filtered ("%c", c);
476 }
477
478 /* Force this output to appear now. */
479 wrap_here ("");
480 gdb_flush (gdb_stdout);
481}
482
483/* ARGSUSED */
484static void
485shell_escape (char *arg, int from_tty)
486{
487#ifdef CANT_FORK
488 /* If ARG is NULL, they want an inferior shell, but `system' just
489 reports if the shell is available when passed a NULL arg. */
490 int rc = system (arg ? arg : "");
491
492 if (!arg)
493 arg = "inferior shell";
494
495 if (rc == -1)
496 {
497 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", arg,
498 safe_strerror (errno));
499 gdb_flush (gdb_stderr);
500 }
501 else if (rc)
502 {
503 fprintf_unfiltered (gdb_stderr, "%s exited with status %d\n", arg, rc);
504 gdb_flush (gdb_stderr);
505 }
2584159e 506#ifdef GLOBAL_CURDIR
d318976c
FN
507 /* Make sure to return to the directory GDB thinks it is, in case the
508 shell command we just ran changed it. */
509 chdir (current_directory);
510#endif
511#else /* Can fork. */
512 int rc, status, pid;
513 char *p, *user_shell;
514
515 if ((user_shell = (char *) getenv ("SHELL")) == NULL)
516 user_shell = "/bin/sh";
517
518 /* Get the name of the shell for arg0 */
519 if ((p = strrchr (user_shell, '/')) == NULL)
520 p = user_shell;
521 else
522 p++; /* Get past '/' */
523
524 if ((pid = fork ()) == 0)
525 {
526 if (!arg)
527 execl (user_shell, p, 0);
528 else
529 execl (user_shell, p, "-c", arg, 0);
530
531 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", user_shell,
532 safe_strerror (errno));
533 gdb_flush (gdb_stderr);
534 _exit (0177);
535 }
536
537 if (pid != -1)
538 while ((rc = wait (&status)) != pid && rc != -1)
539 ;
540 else
541 error ("Fork failed");
542#endif /* Can fork. */
543}
544
0378c332
FN
545static void
546edit_command (char *arg, int from_tty)
547{
548 struct symtabs_and_lines sals;
549 struct symtab_and_line sal;
550 struct symbol *sym;
551 char *arg1;
552 int cmdlen, log10;
553 unsigned m;
554 char *editor;
555 char *p;
556
557 /* Pull in the current default source line if necessary */
558 if (arg == 0)
53cb0458
FN
559 {
560 set_default_source_symtab_and_line ();
561 sal = get_current_source_symtab_and_line ();
562 }
0378c332
FN
563
564 /* bare "edit" edits file with present line. */
565
566 if (arg == 0)
567 {
568 if (sal.symtab == 0)
569 error ("No default source file yet.");
570 sal.line += get_lines_to_list () / 2;
571 }
572 else
573 {
574
575 /* Now should only be one argument -- decode it in SAL */
576
577 arg1 = arg;
578 sals = decode_line_1 (&arg1, 0, 0, 0, 0);
579
580 if (! sals.nelts) return; /* C++ */
581 if (sals.nelts > 1) {
582 ambiguous_line_spec (&sals);
583 xfree (sals.sals);
584 return;
585 }
586
587 sal = sals.sals[0];
588 xfree (sals.sals);
589
590 if (*arg1)
591 error ("Junk at end of line specification.");
592
593 /* if line was specified by address,
594 first print exactly which line, and which file.
595 In this case, sal.symtab == 0 means address is outside
596 of all known source files, not that user failed to give a filename. */
597 if (*arg == '*')
598 {
599 if (sal.symtab == 0)
600 /* FIXME-32x64--assumes sal.pc fits in long. */
601 error ("No source file for address %s.",
602 local_hex_string((unsigned long) sal.pc));
603 sym = find_pc_function (sal.pc);
604 if (sym)
605 {
606 print_address_numeric (sal.pc, 1, gdb_stdout);
607 printf_filtered (" is in ");
608 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
609 printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
610 }
611 else
612 {
613 print_address_numeric (sal.pc, 1, gdb_stdout);
614 printf_filtered (" is at %s:%d.\n",
615 sal.symtab->filename, sal.line);
616 }
617 }
618
619 /* If what was given does not imply a symtab, it must be an undebuggable
620 symbol which means no source code. */
621
622 if (sal.symtab == 0)
623 error ("No line number known for %s.", arg);
624 }
625
626 if ((editor = (char *) getenv ("EDITOR")) == NULL)
627 editor = "/bin/ex";
628
629 /* Approximate base-10 log of line to 1 unit for digit count */
630 for(log10=32, m=0x80000000; !(sal.line & m) && log10>0; log10--, m=m>>1);
631 log10 = 1 + (int)((log10 + (0 == ((m-1) & sal.line)))/3.32192809);
632
633 cmdlen = strlen(editor) + 1
634 + (NULL == sal.symtab->dirname ? 0 : strlen(sal.symtab->dirname) + 1)
635 + (NULL == sal.symtab->filename? 0 : strlen(sal.symtab->filename)+ 1)
636 + log10 + 2;
637
638 p = xmalloc(cmdlen);
639 sprintf(p,"%s +%d %s%s",editor,sal.line,
640 (NULL == sal.symtab->dirname ? "./" :
641 (NULL != sal.symtab->filename && *(sal.symtab->filename) != '/') ?
642 sal.symtab->dirname : ""),
643 (NULL == sal.symtab->filename ? "unknown" : sal.symtab->filename)
644 );
645 shell_escape(p, from_tty);
646
647 xfree(p);
648}
649
650static void
651list_command (char *arg, int from_tty)
652{
653 struct symtabs_and_lines sals, sals_end;
654 struct symtab_and_line sal, sal_end, cursal;
655 struct symbol *sym;
656 char *arg1;
657 int no_end = 1;
658 int dummy_end = 0;
659 int dummy_beg = 0;
660 int linenum_beg = 0;
661 char *p;
662
663 /* Pull in the current default source line if necessary */
664 if (arg == 0 || arg[0] == '+' || arg[0] == '-')
53cb0458
FN
665 {
666 set_default_source_symtab_and_line ();
667 cursal = get_current_source_symtab_and_line ();
668 }
0378c332
FN
669
670 /* "l" or "l +" lists next ten lines. */
671
672 if (arg == 0 || STREQ (arg, "+"))
673 {
674 print_source_lines (cursal.symtab, cursal.line,
675 cursal.line + get_lines_to_list (), 0);
676 return;
677 }
678
679 /* "l -" lists previous ten lines, the ones before the ten just listed. */
680 if (STREQ (arg, "-"))
681 {
682 print_source_lines (cursal.symtab,
683 max (get_first_line_listed () - get_lines_to_list (), 1),
684 get_first_line_listed (), 0);
685 return;
686 }
687
688 /* Now if there is only one argument, decode it in SAL
689 and set NO_END.
690 If there are two arguments, decode them in SAL and SAL_END
691 and clear NO_END; however, if one of the arguments is blank,
692 set DUMMY_BEG or DUMMY_END to record that fact. */
693
694 if (!have_full_symbols () && !have_partial_symbols ())
695 error ("No symbol table is loaded. Use the \"file\" command.");
696
697 arg1 = arg;
698 if (*arg1 == ',')
699 dummy_beg = 1;
700 else
701 {
702 sals = decode_line_1 (&arg1, 0, 0, 0, 0);
703
704 if (!sals.nelts)
705 return; /* C++ */
706 if (sals.nelts > 1)
707 {
708 ambiguous_line_spec (&sals);
709 xfree (sals.sals);
710 return;
711 }
712
713 sal = sals.sals[0];
714 xfree (sals.sals);
715 }
716
717 /* Record whether the BEG arg is all digits. */
718
719 for (p = arg; p != arg1 && *p >= '0' && *p <= '9'; p++);
720 linenum_beg = (p == arg1);
721
722 while (*arg1 == ' ' || *arg1 == '\t')
723 arg1++;
724 if (*arg1 == ',')
725 {
726 no_end = 0;
727 arg1++;
728 while (*arg1 == ' ' || *arg1 == '\t')
729 arg1++;
730 if (*arg1 == 0)
731 dummy_end = 1;
732 else
733 {
734 if (dummy_beg)
735 sals_end = decode_line_1 (&arg1, 0, 0, 0, 0);
736 else
737 sals_end = decode_line_1 (&arg1, 0, sal.symtab, sal.line, 0);
738 if (sals_end.nelts == 0)
739 return;
740 if (sals_end.nelts > 1)
741 {
742 ambiguous_line_spec (&sals_end);
743 xfree (sals_end.sals);
744 return;
745 }
746 sal_end = sals_end.sals[0];
747 xfree (sals_end.sals);
748 }
749 }
750
751 if (*arg1)
752 error ("Junk at end of line specification.");
753
754 if (!no_end && !dummy_beg && !dummy_end
755 && sal.symtab != sal_end.symtab)
756 error ("Specified start and end are in different files.");
757 if (dummy_beg && dummy_end)
758 error ("Two empty args do not say what lines to list.");
759
760 /* if line was specified by address,
761 first print exactly which line, and which file.
762 In this case, sal.symtab == 0 means address is outside
763 of all known source files, not that user failed to give a filename. */
764 if (*arg == '*')
765 {
766 if (sal.symtab == 0)
767 /* FIXME-32x64--assumes sal.pc fits in long. */
768 error ("No source file for address %s.",
769 local_hex_string ((unsigned long) sal.pc));
770 sym = find_pc_function (sal.pc);
771 if (sym)
772 {
773 print_address_numeric (sal.pc, 1, gdb_stdout);
774 printf_filtered (" is in ");
775 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
776 printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
777 }
778 else
779 {
780 print_address_numeric (sal.pc, 1, gdb_stdout);
781 printf_filtered (" is at %s:%d.\n",
782 sal.symtab->filename, sal.line);
783 }
784 }
785
786 /* If line was not specified by just a line number,
787 and it does not imply a symtab, it must be an undebuggable symbol
788 which means no source code. */
789
790 if (!linenum_beg && sal.symtab == 0)
791 error ("No line number known for %s.", arg);
792
793 /* If this command is repeated with RET,
794 turn it into the no-arg variant. */
795
796 if (from_tty)
797 *arg = 0;
798
799 if (dummy_beg && sal_end.symtab == 0)
800 error ("No default source file yet. Do \"help list\".");
801 if (dummy_beg)
802 print_source_lines (sal_end.symtab,
803 max (sal_end.line - (get_lines_to_list () - 1), 1),
804 sal_end.line + 1, 0);
805 else if (sal.symtab == 0)
806 error ("No default source file yet. Do \"help list\".");
807 else if (no_end)
808 {
809 int first_line = sal.line - get_lines_to_list () / 2;
810
811 if (first_line < 1) first_line = 1;
812
813 print_source_lines (sal.symtab,
814 first_line,
815 first_line + get_lines_to_list (),
816 0);
817 }
818 else
819 print_source_lines (sal.symtab, sal.line,
820 (dummy_end
821 ? sal.line + get_lines_to_list ()
822 : sal_end.line + 1),
823 0);
824}
825
83c31e7d
FN
826/* Dump a specified section of assembly code. With no command line
827 arguments, this command will dump the assembly code for the
828 function surrounding the pc value in the selected frame. With one
829 argument, it will dump the assembly code surrounding that pc value.
830 Two arguments are interpeted as bounds within which to dump
831 assembly. */
832
833/* ARGSUSED */
834static void
835disassemble_command (char *arg, int from_tty)
836{
837 CORE_ADDR low, high;
838 char *name;
839 CORE_ADDR pc, pc_masked;
840 char *space_index;
841#if 0
842 asection *section;
843#endif
844
845 name = NULL;
846 if (!arg)
847 {
6e7f8b9c 848 if (!deprecated_selected_frame)
83c31e7d
FN
849 error ("No frame selected.\n");
850
6e7f8b9c 851 pc = get_frame_pc (deprecated_selected_frame);
83c31e7d
FN
852 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
853 error ("No function contains program counter for selected frame.\n");
854#if defined(TUI)
855 else if (tui_version)
856 low = tuiGetLowDisassemblyAddress (low, pc);
857#endif
858 low += FUNCTION_START_OFFSET;
859 }
860 else if (!(space_index = (char *) strchr (arg, ' ')))
861 {
862 /* One argument. */
863 pc = parse_and_eval_address (arg);
864 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
865 error ("No function contains specified address.\n");
866#if defined(TUI)
867 else if (tui_version)
868 low = tuiGetLowDisassemblyAddress (low, pc);
869#endif
870 low += FUNCTION_START_OFFSET;
871 }
872 else
873 {
874 /* Two arguments. */
875 *space_index = '\0';
876 low = parse_and_eval_address (arg);
877 high = parse_and_eval_address (space_index + 1);
878 }
879
880#if defined(TUI)
881 if (!tui_is_window_visible (DISASSEM_WIN))
882#endif
883 {
884 printf_filtered ("Dump of assembler code ");
885 if (name != NULL)
886 {
887 printf_filtered ("for function %s:\n", name);
888 }
889 else
890 {
891 printf_filtered ("from ");
892 print_address_numeric (low, 1, gdb_stdout);
893 printf_filtered (" to ");
894 print_address_numeric (high, 1, gdb_stdout);
895 printf_filtered (":\n");
896 }
897
898 /* Dump the specified range. */
899 gdb_disassembly (uiout, 0, 0, 0, -1, low, high);
900
901 printf_filtered ("End of assembler dump.\n");
902 gdb_flush (gdb_stdout);
903 }
904#if defined(TUI)
905 else
906 {
907 tui_show_assembly (low);
908 }
909#endif
910}
911
d318976c
FN
912static void
913make_command (char *arg, int from_tty)
914{
915 char *p;
916
917 if (arg == 0)
918 p = "make";
919 else
920 {
921 p = xmalloc (sizeof ("make ") + strlen (arg));
922 strcpy (p, "make ");
923 strcpy (p + sizeof ("make ") - 1, arg);
924 }
925
926 shell_escape (p, from_tty);
927}
928
929/* ARGSUSED */
930static void
931show_user (char *args, int from_tty)
932{
933 struct cmd_list_element *c;
934 extern struct cmd_list_element *cmdlist;
935
936 if (args)
937 {
938 c = lookup_cmd (&args, cmdlist, "", 0, 1);
939 if (c->class != class_user)
940 error ("Not a user command.");
941 show_user_1 (c, gdb_stdout);
942 }
943 else
944 {
945 for (c = cmdlist; c; c = c->next)
946 {
947 if (c->class == class_user)
948 show_user_1 (c, gdb_stdout);
949 }
950 }
951}
952
953/* Search through names of commands and documentations for a certain
954 regular expression.
955*/
956void
957apropos_command (char *searchstr, int from_tty)
958{
959 extern struct cmd_list_element *cmdlist; /*This is the main command list*/
960 regex_t pattern;
961 char *pattern_fastmap;
962 char errorbuffer[512];
2e94c453 963 pattern_fastmap = xcalloc (256, sizeof (char));
d318976c
FN
964 if (searchstr == NULL)
965 error("REGEXP string is empty");
966
967 if (regcomp(&pattern,searchstr,REG_ICASE) == 0)
968 {
969 pattern.fastmap=pattern_fastmap;
970 re_compile_fastmap(&pattern);
971 apropos_cmd (gdb_stdout,cmdlist,&pattern,"");
972 }
973 else
974 {
975 regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
976 error("Error in regular expression:%s",errorbuffer);
977 }
2b5436af 978 xfree (pattern_fastmap);
d318976c
FN
979}
980\f
0378c332
FN
981/* Print a list of files and line numbers which a user may choose from
982 in order to list a function which was specified ambiguously (as with
983 `list classname::overloadedfuncname', for example). The vector in
984 SALS provides the filenames and line numbers. */
985
986static void
987ambiguous_line_spec (struct symtabs_and_lines *sals)
988{
989 int i;
990
991 for (i = 0; i < sals->nelts; ++i)
992 printf_filtered ("file: \"%s\", line number: %d\n",
993 sals->sals[i].symtab->filename, sals->sals[i].line);
994}
995
d318976c
FN
996static void
997set_debug (char *arg, int from_tty)
998{
999 printf_unfiltered ("\"set debug\" must be followed by the name of a print subcommand.\n");
1000 help_list (setdebuglist, "set debug ", -1, gdb_stdout);
1001}
1002
1003static void
1004show_debug (char *args, int from_tty)
1005{
1006 cmd_show_list (showdebuglist, from_tty, "");
1007}
1008
1009void
1010init_cmd_lists (void)
1011{
20f01a46
DH
1012 max_user_call_depth = 1024;
1013
d318976c
FN
1014 cmdlist = NULL;
1015 infolist = NULL;
1016 enablelist = NULL;
1017 disablelist = NULL;
1018 togglelist = NULL;
1019 stoplist = NULL;
1020 deletelist = NULL;
1021 enablebreaklist = NULL;
1022 setlist = NULL;
1023 unsetlist = NULL;
1024 showlist = NULL;
1025 sethistlist = NULL;
1026 showhistlist = NULL;
1027 unsethistlist = NULL;
1028 maintenancelist = NULL;
1029 maintenanceinfolist = NULL;
1030 maintenanceprintlist = NULL;
1031 setprintlist = NULL;
1032 showprintlist = NULL;
1033 setchecklist = NULL;
1034 showchecklist = NULL;
1035}
1036
1037\f
1038void
1039init_cli_cmds (void)
1040{
1041 struct cmd_list_element *c;
1042
1043 /* Define the classes of commands.
1044 They will appear in the help list in the reverse of this order. */
1045
e00d1dc8 1046 add_cmd ("internals", class_maintenance, NULL,
d318976c
FN
1047 "Maintenance commands.\n\
1048Some gdb commands are provided just for use by gdb maintainers.\n\
1049These commands are subject to frequent change, and may not be as\n\
1050well documented as user commands.",
1051 &cmdlist);
e00d1dc8
AC
1052 add_cmd ("obscure", class_obscure, NULL, "Obscure features.", &cmdlist);
1053 add_cmd ("aliases", class_alias, NULL, "Aliases of other commands.", &cmdlist);
1054 add_cmd ("user-defined", class_user, NULL, "User-defined commands.\n\
d318976c
FN
1055The commands in this class are those defined by the user.\n\
1056Use the \"define\" command to define a command.", &cmdlist);
e00d1dc8 1057 add_cmd ("support", class_support, NULL, "Support facilities.", &cmdlist);
d318976c 1058 if (!dbx_commands)
e00d1dc8
AC
1059 add_cmd ("status", class_info, NULL, "Status inquiries.", &cmdlist);
1060 add_cmd ("files", class_files, NULL, "Specifying and examining files.", &cmdlist);
1061 add_cmd ("breakpoints", class_breakpoint, NULL, "Making program stop at certain points.", &cmdlist);
1062 add_cmd ("data", class_vars, NULL, "Examining data.", &cmdlist);
1063 add_cmd ("stack", class_stack, NULL, "Examining the stack.\n\
d318976c
FN
1064The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
1065counting from zero for the innermost (currently executing) frame.\n\n\
1066At any time gdb identifies one frame as the \"selected\" frame.\n\
1067Variable lookups are done with respect to the selected frame.\n\
1068When the program being debugged stops, gdb selects the innermost frame.\n\
1069The commands below can be used to select other frames by number or address.",
1070 &cmdlist);
e00d1dc8 1071 add_cmd ("running", class_run, NULL, "Running the program.", &cmdlist);
d318976c
FN
1072
1073 /* Define general commands. */
1074
1075 add_com ("pwd", class_files, pwd_command,
1076 "Print working directory. This is used for your program as well.");
1077 c = add_cmd ("cd", class_files, cd_command,
1078 "Set working directory to DIR for debugger and program being debugged.\n\
1079The change does not take effect for the program being debugged\n\
1080until the next time it is started.", &cmdlist);
5ba2abeb 1081 set_cmd_completer (c, filename_completer);
d318976c
FN
1082
1083 add_com ("echo", class_support, echo_command,
1084 "Print a constant string. Give string as argument.\n\
1085C escape sequences may be used in the argument.\n\
1086No newline is added at the end of the argument;\n\
1087use \"\\n\" if you want a newline to be printed.\n\
1088Since leading and trailing whitespace are ignored in command arguments,\n\
1089if you want to print some you must use \"\\\" before leading whitespace\n\
1090to be printed or after trailing whitespace.");
1091 add_com ("document", class_support, document_command,
1092 "Document a user-defined command.\n\
1093Give command name as argument. Give documentation on following lines.\n\
1094End with a line of just \"end\".");
1095 add_com ("define", class_support, define_command,
1096 "Define a new command name. Command name is argument.\n\
1097Definition appears on following lines, one command per line.\n\
1098End with a line of just \"end\".\n\
1099Use the \"document\" command to give documentation for the new command.\n\
1100Commands defined in this way may have up to ten arguments.");
1101
d318976c
FN
1102 c = add_cmd ("source", class_support, source_command,
1103 "Read commands from a file named FILE.\n\
1104Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
1105when gdb is started.", &cmdlist);
5ba2abeb 1106 set_cmd_completer (c, filename_completer);
d318976c
FN
1107
1108 add_com ("quit", class_support, quit_command, "Exit gdb.");
db60ec62 1109 c = add_com ("help", class_support, help_command, "Print list of commands.");
5ba2abeb 1110 set_cmd_completer (c, command_completer);
d318976c
FN
1111 add_com_alias ("q", "quit", class_support, 1);
1112 add_com_alias ("h", "help", class_support, 1);
1113
1114 c = add_set_cmd ("verbose", class_support, var_boolean, (char *) &info_verbose,
1115 "Set ",
1116 &setlist),
1117 add_show_from_set (c, &showlist);
9f60d481 1118 set_cmd_sfunc (c, set_verbose);
d318976c
FN
1119 set_verbose (NULL, 0, c);
1120
1121 add_prefix_cmd ("history", class_support, set_history,
1122 "Generic command for setting command history parameters.",
1123 &sethistlist, "set history ", 0, &setlist);
1124 add_prefix_cmd ("history", class_support, show_history,
1125 "Generic command for showing command history parameters.",
1126 &showhistlist, "show history ", 0, &showlist);
1127
1128 add_show_from_set
1129 (add_set_cmd ("expansion", no_class, var_boolean, (char *) &history_expansion_p,
1130 "Set history expansion on command input.\n\
1131Without an argument, history expansion is enabled.", &sethistlist),
1132 &showhistlist);
1133
1134 add_prefix_cmd ("info", class_info, info_command,
1135 "Generic command for showing things about the program being debugged.",
1136 &infolist, "info ", 0, &cmdlist);
1137 add_com_alias ("i", "info", class_info, 1);
1138
1139 add_com ("complete", class_obscure, complete_command,
1140 "List the completions for the rest of the line as a command.");
1141
1142 add_prefix_cmd ("show", class_info, show_command,
1143 "Generic command for showing things about the debugger.",
1144 &showlist, "show ", 0, &cmdlist);
1145 /* Another way to get at the same thing. */
1146 add_info ("set", show_command, "Show all GDB settings.");
1147
1148 add_cmd ("commands", no_class, show_commands,
1149 "Show the history of commands you typed.\n\
1150You can supply a command number to start with, or a `+' to start after\n\
1151the previous command number shown.",
1152 &showlist);
1153
1154 add_cmd ("version", no_class, show_version,
1155 "Show what version of GDB this is.", &showlist);
1156
1157 add_com ("while", class_support, while_command,
1158 "Execute nested commands WHILE the conditional expression is non zero.\n\
1159The conditional expression must follow the word `while' and must in turn be\n\
1160followed by a new line. The nested commands must be entered one per line,\n\
1161and should be terminated by the word `end'.");
1162
1163 add_com ("if", class_support, if_command,
1164 "Execute nested commands once IF the conditional expression is non zero.\n\
1165The conditional expression must follow the word `if' and must in turn be\n\
1166followed by a new line. The nested commands must be entered one per line,\n\
1167and should be terminated by the word 'else' or `end'. If an else clause\n\
1168is used, the same rules apply to its nested commands as to the first ones.");
1169
1170 /* If target is open when baud changes, it doesn't take effect until the
1171 next open (I think, not sure). */
1172 add_show_from_set (add_set_cmd ("remotebaud", no_class,
1173 var_zinteger, (char *) &baud_rate,
1174 "Set baud rate for remote serial I/O.\n\
1175This value is used to set the speed of the serial port when debugging\n\
1176using remote targets.", &setlist),
1177 &showlist);
1178
1179 c = add_set_cmd ("remotedebug", no_class, var_zinteger,
1180 (char *) &remote_debug,
1181 "Set debugging of remote protocol.\n\
1182When enabled, each packet sent or received with the remote target\n\
1183is displayed.", &setlist);
1184 deprecate_cmd (c, "set debug remote");
1185 deprecate_cmd (add_show_from_set (c, &showlist), "show debug remote");
1186
1187 add_show_from_set (add_set_cmd ("remote", no_class, var_zinteger,
1188 (char *) &remote_debug,
1189 "Set debugging of remote protocol.\n\
1190When enabled, each packet sent or received with the remote target\n\
1191is displayed.", &setdebuglist),
1192 &showdebuglist);
1193
1194 add_show_from_set (
1195 add_set_cmd ("remotetimeout", no_class, var_integer, (char *) &remote_timeout,
1196 "Set timeout limit to wait for target to respond.\n\
1197This value is used to set the time limit for gdb to wait for a response\n\
1198from the target.", &setlist),
1199 &showlist);
1200
1201 add_prefix_cmd ("debug", no_class, set_debug,
1202 "Generic command for setting gdb debugging flags",
1203 &setdebuglist, "set debug ", 0, &setlist);
1204
1205 add_prefix_cmd ("debug", no_class, show_debug,
1206 "Generic command for showing gdb debugging flags",
1207 &showdebuglist, "show debug ", 0, &showlist);
1208
fa58ee11 1209 c = add_com ("shell", class_support, shell_escape,
d4654627 1210 "Execute the rest of the line as a shell command.\n\
d318976c 1211With no arguments, run an inferior shell.");
5ba2abeb 1212 set_cmd_completer (c, filename_completer);
d318976c 1213
0378c332
FN
1214 c = add_com ("edit", class_files, edit_command,
1215 concat ("Edit specified file or function.\n\
1216With no argument, edits file containing most recent line listed.\n\
1217", "\
1218Editing targets can be specified in these ways:\n\
1219 FILE:LINENUM, to edit at that line in that file,\n\
1220 FUNCTION, to edit at the beginning of that function,\n\
1221 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1222 *ADDRESS, to edit at the line containing that address.\n\
1223Uses EDITOR environment variable contents as editor (or ex as default).",NULL));
1224
1225 c->completer = location_completer;
1226
1227 add_com ("list", class_files, list_command,
1228 concat ("List specified function or line.\n\
1229With no argument, lists ten more lines after or around previous listing.\n\
1230\"list -\" lists the ten lines before a previous ten-line listing.\n\
1231One argument specifies a line, and ten lines are listed around that line.\n\
1232Two arguments with comma between specify starting and ending lines to list.\n\
1233", "\
1234Lines can be specified in these ways:\n\
1235 LINENUM, to list around that line in current file,\n\
1236 FILE:LINENUM, to list around that line in that file,\n\
1237 FUNCTION, to list around beginning of that function,\n\
1238 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1239 *ADDRESS, to list around the line containing that address.\n\
1240With two args if one is empty it stands for ten lines away from the other arg.", NULL));
1241
1242 if (!xdb_commands)
1243 add_com_alias ("l", "list", class_files, 1);
1244 else
1245 add_com_alias ("v", "list", class_files, 1);
1246
1247 if (dbx_commands)
1248 add_com_alias ("file", "list", class_files, 1);
1249
83c31e7d
FN
1250 c = add_com ("disassemble", class_vars, disassemble_command,
1251 "Disassemble a specified section of memory.\n\
1252Default is the function surrounding the pc of the selected frame.\n\
1253With a single argument, the function surrounding that address is dumped.\n\
1254Two arguments are taken as a range of memory to dump.");
1255 set_cmd_completer (c, location_completer);
1256 if (xdb_commands)
1257 add_com_alias ("va", "disassemble", class_xdb, 0);
0378c332 1258
d318976c
FN
1259 /* NOTE: cagney/2000-03-20: Being able to enter ``(gdb) !ls'' would
1260 be a really useful feature. Unfortunately, the below wont do
1261 this. Instead it adds support for the form ``(gdb) ! ls''
1262 (i.e. the space is required). If the ``!'' command below is
1263 added the complains about no ``!'' command would be replaced by
1264 complains about how the ``!'' command is broken :-) */
1265 if (xdb_commands)
1266 add_com_alias ("!", "shell", class_support, 0);
1267
fa58ee11
EZ
1268 c = add_com ("make", class_support, make_command,
1269 "Run the ``make'' program using the rest of the line as arguments.");
5ba2abeb 1270 set_cmd_completer (c, filename_completer);
d318976c
FN
1271 add_cmd ("user", no_class, show_user,
1272 "Show definitions of user defined commands.\n\
1273Argument is the name of the user defined command.\n\
1274With no argument, show definitions of all user defined commands.", &showlist);
1275 add_com ("apropos", class_support, apropos_command, "Search for commands matching a REGEXP");
20f01a46
DH
1276
1277 add_show_from_set (
1278 add_set_cmd ("max-user-call-depth", no_class, var_integer,
1279 (char *) &max_user_call_depth,
1280 "Set the max call depth for user-defined commands.\n",
1281 &setlist),
1282 &showlist);
d318976c 1283}
This page took 0.244774 seconds and 4 git commands to generate.