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