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