]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/cli/cli-cmds.c
Fix PR gdb/17035: "show user" doesn't list user-defined commands that
[thirdparty/binutils-gdb.git] / gdb / cli / cli-cmds.c
1 /* GDB CLI commands.
2
3 Copyright (C) 2000-2014 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "exceptions.h"
22 #include "arch-utils.h"
23 #include "dyn-string.h"
24 #include "readline/readline.h"
25 #include "readline/tilde.h"
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. */
29 #include "gdb_regex.h" /* Used by apropos_command. */
30 #include "gdb_vfork.h"
31 #include "linespec.h"
32 #include "expression.h"
33 #include "frame.h"
34 #include "value.h"
35 #include "language.h"
36 #include "filenames.h" /* For DOSish file names. */
37 #include "objfiles.h"
38 #include "source.h"
39 #include "disasm.h"
40 #include "tracepoint.h"
41 #include "filestuff.h"
42
43 #include "ui-out.h"
44
45 #include "top.h"
46 #include "cli/cli-decode.h"
47 #include "cli/cli-script.h"
48 #include "cli/cli-setshow.h"
49 #include "cli/cli-cmds.h"
50 #include "cli/cli-utils.h"
51
52 #include "extension.h"
53
54 #ifdef TUI
55 #include "tui/tui.h" /* For tui_active et.al. */
56 #endif
57
58 #include <fcntl.h>
59
60 /* Prototypes for local command functions */
61
62 static void complete_command (char *, int);
63
64 static void echo_command (char *, int);
65
66 static void pwd_command (char *, int);
67
68 static void show_version (char *, int);
69
70 static void help_command (char *, int);
71
72 static void show_command (char *, int);
73
74 static void info_command (char *, int);
75
76 static void show_debug (char *, int);
77
78 static void set_debug (char *, int);
79
80 static void show_user (char *, int);
81
82 static void make_command (char *, int);
83
84 static void shell_escape (char *, int);
85
86 static void edit_command (char *, int);
87
88 static void list_command (char *, int);
89
90 /* Prototypes for local utility functions */
91
92 static void ambiguous_line_spec (struct symtabs_and_lines *);
93
94 static void filter_sals (struct symtabs_and_lines *);
95
96 \f
97 /* Limit the call depth of user-defined commands */
98 unsigned int max_user_call_depth;
99
100 /* Define all cmd_list_elements. */
101
102 /* Chain containing all defined commands. */
103
104 struct cmd_list_element *cmdlist;
105
106 /* Chain containing all defined info subcommands. */
107
108 struct cmd_list_element *infolist;
109
110 /* Chain containing all defined enable subcommands. */
111
112 struct cmd_list_element *enablelist;
113
114 /* Chain containing all defined disable subcommands. */
115
116 struct cmd_list_element *disablelist;
117
118 /* Chain containing all defined stop subcommands. */
119
120 struct cmd_list_element *stoplist;
121
122 /* Chain containing all defined delete subcommands. */
123
124 struct cmd_list_element *deletelist;
125
126 /* Chain containing all defined detach subcommands. */
127
128 struct cmd_list_element *detachlist;
129
130 /* Chain containing all defined kill subcommands. */
131
132 struct cmd_list_element *killlist;
133
134 /* Chain containing all defined set subcommands */
135
136 struct cmd_list_element *setlist;
137
138 /* Chain containing all defined unset subcommands */
139
140 struct cmd_list_element *unsetlist;
141
142 /* Chain containing all defined show subcommands. */
143
144 struct cmd_list_element *showlist;
145
146 /* Chain containing all defined \"set history\". */
147
148 struct cmd_list_element *sethistlist;
149
150 /* Chain containing all defined \"show history\". */
151
152 struct cmd_list_element *showhistlist;
153
154 /* Chain containing all defined \"unset history\". */
155
156 struct cmd_list_element *unsethistlist;
157
158 /* Chain containing all defined maintenance subcommands. */
159
160 struct cmd_list_element *maintenancelist;
161
162 /* Chain containing all defined "maintenance info" subcommands. */
163
164 struct cmd_list_element *maintenanceinfolist;
165
166 /* Chain containing all defined "maintenance print" subcommands. */
167
168 struct cmd_list_element *maintenanceprintlist;
169
170 struct cmd_list_element *setprintlist;
171
172 struct cmd_list_element *showprintlist;
173
174 struct cmd_list_element *setdebuglist;
175
176 struct cmd_list_element *showdebuglist;
177
178 struct cmd_list_element *setchecklist;
179
180 struct cmd_list_element *showchecklist;
181
182 /* Command tracing state. */
183
184 int source_verbose = 0;
185 int trace_commands = 0;
186 \f
187 /* 'script-extension' option support. */
188
189 static const char script_ext_off[] = "off";
190 static const char script_ext_soft[] = "soft";
191 static const char script_ext_strict[] = "strict";
192
193 static const char *const script_ext_enums[] = {
194 script_ext_off,
195 script_ext_soft,
196 script_ext_strict,
197 NULL
198 };
199
200 static const char *script_ext_mode = script_ext_soft;
201 \f
202 /* Utility used everywhere when at least one argument is needed and
203 none is supplied. */
204
205 void
206 error_no_arg (const char *why)
207 {
208 error (_("Argument required (%s)."), why);
209 }
210
211 /* The "info" command is defined as a prefix, with allow_unknown = 0.
212 Therefore, its own definition is called only for "info" with no
213 args. */
214
215 static void
216 info_command (char *arg, int from_tty)
217 {
218 printf_unfiltered (_("\"info\" must be followed by "
219 "the name of an info command.\n"));
220 help_list (infolist, "info ", all_commands, gdb_stdout);
221 }
222
223 /* The "show" command with no arguments shows all the settings. */
224
225 static void
226 show_command (char *arg, int from_tty)
227 {
228 cmd_show_list (showlist, from_tty, "");
229 }
230 \f
231 /* Provide documentation on command or list given by COMMAND. FROM_TTY
232 is ignored. */
233
234 static void
235 help_command (char *command, int from_tty)
236 {
237 help_cmd (command, gdb_stdout);
238 }
239 \f
240 /* The "complete" command is used by Emacs to implement completion. */
241
242 static void
243 complete_command (char *arg, int from_tty)
244 {
245 int argpoint;
246 char *point, *arg_prefix;
247 VEC (char_ptr) *completions;
248
249 dont_repeat ();
250
251 if (arg == NULL)
252 arg = "";
253 argpoint = strlen (arg);
254
255 /* complete_line assumes that its first argument is somewhere
256 within, and except for filenames at the beginning of, the word to
257 be completed. The following crude imitation of readline's
258 word-breaking tries to accomodate this. */
259 point = arg + argpoint;
260 while (point > arg)
261 {
262 if (strchr (rl_completer_word_break_characters, point[-1]) != 0)
263 break;
264 point--;
265 }
266
267 arg_prefix = alloca (point - arg + 1);
268 memcpy (arg_prefix, arg, point - arg);
269 arg_prefix[point - arg] = 0;
270
271 completions = complete_line (point, arg, argpoint);
272
273 if (completions)
274 {
275 int ix, size = VEC_length (char_ptr, completions);
276 char *item, *prev = NULL;
277
278 qsort (VEC_address (char_ptr, completions), size,
279 sizeof (char *), compare_strings);
280
281 /* We do extra processing here since we only want to print each
282 unique item once. */
283 for (ix = 0; VEC_iterate (char_ptr, completions, ix, item); ++ix)
284 {
285 if (prev == NULL || strcmp (item, prev) != 0)
286 {
287 printf_unfiltered ("%s%s\n", arg_prefix, item);
288 xfree (prev);
289 prev = item;
290 }
291 else
292 xfree (item);
293 }
294
295 xfree (prev);
296 VEC_free (char_ptr, completions);
297 }
298 }
299
300 int
301 is_complete_command (struct cmd_list_element *c)
302 {
303 return cmd_cfunc_eq (c, complete_command);
304 }
305
306 static void
307 show_version (char *args, int from_tty)
308 {
309 print_gdb_version (gdb_stdout);
310 printf_filtered ("\n");
311 }
312
313 static void
314 show_configuration (char *args, int from_tty)
315 {
316 print_gdb_configuration (gdb_stdout);
317 }
318
319 /* Handle the quit command. */
320
321 void
322 quit_command (char *args, int from_tty)
323 {
324 if (!quit_confirm ())
325 error (_("Not confirmed."));
326
327 query_if_trace_running (from_tty);
328
329 quit_force (args, from_tty);
330 }
331
332 static void
333 pwd_command (char *args, int from_tty)
334 {
335 if (args)
336 error (_("The \"pwd\" command does not take an argument: %s"), args);
337 if (! getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)))
338 error (_("Error finding name of working directory: %s"),
339 safe_strerror (errno));
340
341 if (strcmp (gdb_dirbuf, current_directory) != 0)
342 printf_unfiltered (_("Working directory %s\n (canonically %s).\n"),
343 current_directory, gdb_dirbuf);
344 else
345 printf_unfiltered (_("Working directory %s.\n"), current_directory);
346 }
347
348 void
349 cd_command (char *dir, int from_tty)
350 {
351 int len;
352 /* Found something other than leading repetitions of "/..". */
353 int found_real_path;
354 char *p;
355 struct cleanup *cleanup;
356
357 /* If the new directory is absolute, repeat is a no-op; if relative,
358 repeat might be useful but is more likely to be a mistake. */
359 dont_repeat ();
360
361 if (dir == 0)
362 dir = "~";
363
364 dir = tilde_expand (dir);
365 cleanup = make_cleanup (xfree, dir);
366
367 if (chdir (dir) < 0)
368 perror_with_name (dir);
369
370 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
371 /* There's too much mess with DOSish names like "d:", "d:.",
372 "d:./foo" etc. Instead of having lots of special #ifdef'ed code,
373 simply get the canonicalized name of the current directory. */
374 dir = getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
375 #endif
376
377 len = strlen (dir);
378 if (IS_DIR_SEPARATOR (dir[len - 1]))
379 {
380 /* Remove the trailing slash unless this is a root directory
381 (including a drive letter on non-Unix systems). */
382 if (!(len == 1) /* "/" */
383 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
384 && !(len == 3 && dir[1] == ':') /* "d:/" */
385 #endif
386 )
387 len--;
388 }
389
390 dir = savestring (dir, len);
391 if (IS_ABSOLUTE_PATH (dir))
392 current_directory = dir;
393 else
394 {
395 if (IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1]))
396 current_directory = concat (current_directory, dir, (char *)NULL);
397 else
398 current_directory = concat (current_directory, SLASH_STRING,
399 dir, (char *)NULL);
400 xfree (dir);
401 }
402
403 /* Now simplify any occurrences of `.' and `..' in the pathname. */
404
405 found_real_path = 0;
406 for (p = current_directory; *p;)
407 {
408 if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.'
409 && (p[2] == 0 || IS_DIR_SEPARATOR (p[2])))
410 memmove (p, p + 2, strlen (p + 2) + 1);
411 else if (IS_DIR_SEPARATOR (p[0]) && p[1] == '.' && p[2] == '.'
412 && (p[3] == 0 || IS_DIR_SEPARATOR (p[3])))
413 {
414 if (found_real_path)
415 {
416 /* Search backwards for the directory just before the "/.."
417 and obliterate it and the "/..". */
418 char *q = p;
419
420 while (q != current_directory && !IS_DIR_SEPARATOR (q[-1]))
421 --q;
422
423 if (q == current_directory)
424 /* current_directory is
425 a relative pathname ("can't happen"--leave it alone). */
426 ++p;
427 else
428 {
429 memmove (q - 1, p + 3, strlen (p + 3) + 1);
430 p = q - 1;
431 }
432 }
433 else
434 /* We are dealing with leading repetitions of "/..", for
435 example "/../..", which is the Mach super-root. */
436 p += 3;
437 }
438 else
439 {
440 found_real_path = 1;
441 ++p;
442 }
443 }
444
445 forget_cached_source_info ();
446
447 if (from_tty)
448 pwd_command ((char *) 0, 1);
449
450 do_cleanups (cleanup);
451 }
452 \f
453 /* Show the current value of the 'script-extension' option. */
454
455 static void
456 show_script_ext_mode (struct ui_file *file, int from_tty,
457 struct cmd_list_element *c, const char *value)
458 {
459 fprintf_filtered (file,
460 _("Script filename extension recognition is \"%s\".\n"),
461 value);
462 }
463
464 /* Try to open SCRIPT_FILE.
465 If successful, the full path name is stored in *FULL_PATHP,
466 the stream is stored in *STREAMP, and return 1.
467 The caller is responsible for freeing *FULL_PATHP.
468 If not successful, return 0; errno is set for the last file
469 we tried to open.
470
471 If SEARCH_PATH is non-zero, and the file isn't found in cwd,
472 search for it in the source search path. */
473
474 int
475 find_and_open_script (const char *script_file, int search_path,
476 FILE **streamp, char **full_pathp)
477 {
478 char *file;
479 int fd;
480 struct cleanup *old_cleanups;
481 int search_flags = OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH;
482
483 file = tilde_expand (script_file);
484 old_cleanups = make_cleanup (xfree, file);
485
486 if (search_path)
487 search_flags |= OPF_SEARCH_IN_PATH;
488
489 /* Search for and open 'file' on the search path used for source
490 files. Put the full location in *FULL_PATHP. */
491 fd = openp (source_path, search_flags,
492 file, O_RDONLY, full_pathp);
493
494 if (fd == -1)
495 {
496 int save_errno = errno;
497 do_cleanups (old_cleanups);
498 errno = save_errno;
499 return 0;
500 }
501
502 do_cleanups (old_cleanups);
503
504 *streamp = fdopen (fd, FOPEN_RT);
505 if (*streamp == NULL)
506 {
507 int save_errno = errno;
508
509 close (fd);
510 if (full_pathp)
511 xfree (*full_pathp);
512 errno = save_errno;
513 return 0;
514 }
515
516 return 1;
517 }
518
519 /* Load script FILE, which has already been opened as STREAM. */
520
521 static void
522 source_script_from_stream (FILE *stream, const char *file)
523 {
524 if (script_ext_mode != script_ext_off)
525 {
526 const struct extension_language_defn *extlang
527 = get_ext_lang_of_file (file);
528
529 if (extlang != NULL)
530 {
531 if (ext_lang_present_p (extlang))
532 {
533 script_sourcer_func *sourcer
534 = ext_lang_script_sourcer (extlang);
535
536 gdb_assert (sourcer != NULL);
537 sourcer (extlang, stream, file);
538 return;
539 }
540 else if (script_ext_mode == script_ext_soft)
541 {
542 /* Assume the file is a gdb script.
543 This is handled below. */
544 }
545 else
546 throw_ext_lang_unsupported (extlang);
547 }
548 }
549
550 script_from_file (stream, file);
551 }
552
553 /* Worker to perform the "source" command.
554 Load script FILE.
555 If SEARCH_PATH is non-zero, and the file isn't found in cwd,
556 search for it in the source search path. */
557
558 static void
559 source_script_with_search (const char *file, int from_tty, int search_path)
560 {
561 FILE *stream;
562 char *full_path;
563 struct cleanup *old_cleanups;
564
565 if (file == NULL || *file == 0)
566 error (_("source command requires file name of file to source."));
567
568 if (!find_and_open_script (file, search_path, &stream, &full_path))
569 {
570 /* The script wasn't found, or was otherwise inaccessible.
571 If the source command was invoked interactively, throw an
572 error. Otherwise (e.g. if it was invoked by a script),
573 just emit a warning, rather than cause an error. */
574 if (from_tty)
575 perror_with_name (file);
576 else
577 {
578 perror_warning_with_name (file);
579 return;
580 }
581 }
582
583 old_cleanups = make_cleanup (xfree, full_path);
584 make_cleanup_fclose (stream);
585 /* The python support reopens the file, so we need to pass full_path here
586 in case the file was found on the search path. It's useful to do this
587 anyway so that error messages show the actual file used. But only do
588 this if we (may have) used search_path, as printing the full path in
589 errors for the non-search case can be more noise than signal. */
590 source_script_from_stream (stream, search_path ? full_path : file);
591 do_cleanups (old_cleanups);
592 }
593
594 /* Wrapper around source_script_with_search to export it to main.c
595 for use in loading .gdbinit scripts. */
596
597 void
598 source_script (const char *file, int from_tty)
599 {
600 source_script_with_search (file, from_tty, 0);
601 }
602
603 /* Return the source_verbose global variable to its previous state
604 on exit from the source command, by whatever means. */
605 static void
606 source_verbose_cleanup (void *old_value)
607 {
608 source_verbose = *(int *)old_value;
609 xfree (old_value);
610 }
611
612 static void
613 source_command (char *args, int from_tty)
614 {
615 struct cleanup *old_cleanups;
616 char *file = args;
617 int *old_source_verbose = xmalloc (sizeof(int));
618 int search_path = 0;
619
620 *old_source_verbose = source_verbose;
621 old_cleanups = make_cleanup (source_verbose_cleanup,
622 old_source_verbose);
623
624 /* -v causes the source command to run in verbose mode.
625 -s causes the file to be searched in the source search path,
626 even if the file name contains a '/'.
627 We still have to be able to handle filenames with spaces in a
628 backward compatible way, so buildargv is not appropriate. */
629
630 if (args)
631 {
632 while (args[0] != '\0')
633 {
634 /* Make sure leading white space does not break the
635 comparisons. */
636 args = skip_spaces (args);
637
638 if (args[0] != '-')
639 break;
640
641 if (args[1] == 'v' && isspace (args[2]))
642 {
643 source_verbose = 1;
644
645 /* Skip passed -v. */
646 args = &args[3];
647 }
648 else if (args[1] == 's' && isspace (args[2]))
649 {
650 search_path = 1;
651
652 /* Skip passed -s. */
653 args = &args[3];
654 }
655 else
656 break;
657 }
658
659 file = skip_spaces (args);
660 }
661
662 source_script_with_search (file, from_tty, search_path);
663
664 do_cleanups (old_cleanups);
665 }
666
667
668 static void
669 echo_command (char *text, int from_tty)
670 {
671 const char *p = text;
672 int c;
673
674 if (text)
675 while ((c = *p++) != '\0')
676 {
677 if (c == '\\')
678 {
679 /* \ at end of argument is used after spaces
680 so they won't be lost. */
681 if (*p == 0)
682 return;
683
684 c = parse_escape (get_current_arch (), &p);
685 if (c >= 0)
686 printf_filtered ("%c", c);
687 }
688 else
689 printf_filtered ("%c", c);
690 }
691
692 /* Force this output to appear now. */
693 wrap_here ("");
694 gdb_flush (gdb_stdout);
695 }
696
697 static void
698 shell_escape (char *arg, int from_tty)
699 {
700 #if defined(CANT_FORK) || \
701 (!defined(HAVE_WORKING_VFORK) && !defined(HAVE_WORKING_FORK))
702 /* If ARG is NULL, they want an inferior shell, but `system' just
703 reports if the shell is available when passed a NULL arg. */
704 int rc = system (arg ? arg : "");
705
706 if (!arg)
707 arg = "inferior shell";
708
709 if (rc == -1)
710 {
711 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", arg,
712 safe_strerror (errno));
713 gdb_flush (gdb_stderr);
714 }
715 else if (rc)
716 {
717 fprintf_unfiltered (gdb_stderr, "%s exited with status %d\n", arg, rc);
718 gdb_flush (gdb_stderr);
719 }
720 #ifdef GLOBAL_CURDIR
721 /* Make sure to return to the directory GDB thinks it is, in case
722 the shell command we just ran changed it. */
723 chdir (current_directory);
724 #endif
725 #else /* Can fork. */
726 int status, pid;
727
728 if ((pid = vfork ()) == 0)
729 {
730 const char *p, *user_shell;
731
732 close_most_fds ();
733
734 if ((user_shell = (char *) getenv ("SHELL")) == NULL)
735 user_shell = "/bin/sh";
736
737 /* Get the name of the shell for arg0. */
738 p = lbasename (user_shell);
739
740 if (!arg)
741 execl (user_shell, p, (char *) 0);
742 else
743 execl (user_shell, p, "-c", arg, (char *) 0);
744
745 fprintf_unfiltered (gdb_stderr, "Cannot execute %s: %s\n", user_shell,
746 safe_strerror (errno));
747 gdb_flush (gdb_stderr);
748 _exit (0177);
749 }
750
751 if (pid != -1)
752 waitpid (pid, &status, 0);
753 else
754 error (_("Fork failed"));
755 #endif /* Can fork. */
756 }
757
758 static void
759 edit_command (char *arg, int from_tty)
760 {
761 struct symtabs_and_lines sals;
762 struct symtab_and_line sal;
763 struct symbol *sym;
764 char *arg1;
765 char *editor;
766 char *p;
767 const char *fn;
768
769 /* Pull in the current default source line if necessary. */
770 if (arg == 0)
771 {
772 set_default_source_symtab_and_line ();
773 sal = get_current_source_symtab_and_line ();
774 }
775
776 /* Bare "edit" edits file with present line. */
777
778 if (arg == 0)
779 {
780 if (sal.symtab == 0)
781 error (_("No default source file yet."));
782 sal.line += get_lines_to_list () / 2;
783 }
784 else
785 {
786 /* Now should only be one argument -- decode it in SAL. */
787
788 arg1 = arg;
789 sals = decode_line_1 (&arg1, DECODE_LINE_LIST_MODE, 0, 0);
790
791 filter_sals (&sals);
792 if (! sals.nelts)
793 {
794 /* C++ */
795 return;
796 }
797 if (sals.nelts > 1)
798 {
799 ambiguous_line_spec (&sals);
800 xfree (sals.sals);
801 return;
802 }
803
804 sal = sals.sals[0];
805 xfree (sals.sals);
806
807 if (*arg1)
808 error (_("Junk at end of line specification."));
809
810 /* If line was specified by address, first print exactly which
811 line, and which file. In this case, sal.symtab == 0 means
812 address is outside of all known source files, not that user
813 failed to give a filename. */
814 if (*arg == '*')
815 {
816 struct gdbarch *gdbarch;
817
818 if (sal.symtab == 0)
819 error (_("No source file for address %s."),
820 paddress (get_current_arch (), sal.pc));
821
822 gdbarch = get_objfile_arch (sal.symtab->objfile);
823 sym = find_pc_function (sal.pc);
824 if (sym)
825 printf_filtered ("%s is in %s (%s:%d).\n",
826 paddress (gdbarch, sal.pc),
827 SYMBOL_PRINT_NAME (sym),
828 symtab_to_filename_for_display (sal.symtab),
829 sal.line);
830 else
831 printf_filtered ("%s is at %s:%d.\n",
832 paddress (gdbarch, sal.pc),
833 symtab_to_filename_for_display (sal.symtab),
834 sal.line);
835 }
836
837 /* If what was given does not imply a symtab, it must be an
838 undebuggable symbol which means no source code. */
839
840 if (sal.symtab == 0)
841 error (_("No line number known for %s."), arg);
842 }
843
844 if ((editor = (char *) getenv ("EDITOR")) == NULL)
845 editor = "/bin/ex";
846
847 fn = symtab_to_fullname (sal.symtab);
848
849 /* Quote the file name, in case it has whitespace or other special
850 characters. */
851 p = xstrprintf ("%s +%d \"%s\"", editor, sal.line, fn);
852 shell_escape (p, from_tty);
853 xfree (p);
854 }
855
856 static void
857 list_command (char *arg, int from_tty)
858 {
859 struct symtabs_and_lines sals, sals_end;
860 struct symtab_and_line sal = { 0 };
861 struct symtab_and_line sal_end = { 0 };
862 struct symtab_and_line cursal = { 0 };
863 struct symbol *sym;
864 char *arg1;
865 int no_end = 1;
866 int dummy_end = 0;
867 int dummy_beg = 0;
868 int linenum_beg = 0;
869 char *p;
870
871 /* Pull in the current default source line if necessary. */
872 if (arg == 0 || arg[0] == '+' || arg[0] == '-')
873 {
874 set_default_source_symtab_and_line ();
875 cursal = get_current_source_symtab_and_line ();
876
877 /* If this is the first "list" since we've set the current
878 source line, center the listing around that line. */
879 if (get_first_line_listed () == 0)
880 {
881 int first;
882
883 first = max (cursal.line - get_lines_to_list () / 2, 1);
884
885 /* A small special case --- if listing backwards, and we
886 should list only one line, list the preceding line,
887 instead of the exact line we've just shown after e.g.,
888 stopping for a breakpoint. */
889 if (arg != NULL && arg[0] == '-'
890 && get_lines_to_list () == 1 && first > 1)
891 first -= 1;
892
893 print_source_lines (cursal.symtab, first,
894 first + get_lines_to_list (), 0);
895 return;
896 }
897 }
898
899 /* "l" or "l +" lists next ten lines. */
900
901 if (arg == 0 || strcmp (arg, "+") == 0)
902 {
903 print_source_lines (cursal.symtab, cursal.line,
904 cursal.line + get_lines_to_list (), 0);
905 return;
906 }
907
908 /* "l -" lists previous ten lines, the ones before the ten just
909 listed. */
910 if (strcmp (arg, "-") == 0)
911 {
912 print_source_lines (cursal.symtab,
913 max (get_first_line_listed ()
914 - get_lines_to_list (), 1),
915 get_first_line_listed (), 0);
916 return;
917 }
918
919 /* Now if there is only one argument, decode it in SAL
920 and set NO_END.
921 If there are two arguments, decode them in SAL and SAL_END
922 and clear NO_END; however, if one of the arguments is blank,
923 set DUMMY_BEG or DUMMY_END to record that fact. */
924
925 if (!have_full_symbols () && !have_partial_symbols ())
926 error (_("No symbol table is loaded. Use the \"file\" command."));
927
928 arg1 = arg;
929 if (*arg1 == ',')
930 dummy_beg = 1;
931 else
932 {
933 sals = decode_line_1 (&arg1, DECODE_LINE_LIST_MODE, 0, 0);
934
935 filter_sals (&sals);
936 if (!sals.nelts)
937 return; /* C++ */
938 if (sals.nelts > 1)
939 {
940 ambiguous_line_spec (&sals);
941 xfree (sals.sals);
942 return;
943 }
944
945 sal = sals.sals[0];
946 xfree (sals.sals);
947 }
948
949 /* Record whether the BEG arg is all digits. */
950
951 for (p = arg; p != arg1 && *p >= '0' && *p <= '9'; p++);
952 linenum_beg = (p == arg1);
953
954 while (*arg1 == ' ' || *arg1 == '\t')
955 arg1++;
956 if (*arg1 == ',')
957 {
958 no_end = 0;
959 arg1++;
960 while (*arg1 == ' ' || *arg1 == '\t')
961 arg1++;
962 if (*arg1 == 0)
963 dummy_end = 1;
964 else
965 {
966 if (dummy_beg)
967 sals_end = decode_line_1 (&arg1, DECODE_LINE_LIST_MODE, 0, 0);
968 else
969 sals_end = decode_line_1 (&arg1, DECODE_LINE_LIST_MODE,
970 sal.symtab, sal.line);
971 filter_sals (&sals_end);
972 if (sals_end.nelts == 0)
973 return;
974 if (sals_end.nelts > 1)
975 {
976 ambiguous_line_spec (&sals_end);
977 xfree (sals_end.sals);
978 return;
979 }
980 sal_end = sals_end.sals[0];
981 xfree (sals_end.sals);
982 }
983 }
984
985 if (*arg1)
986 error (_("Junk at end of line specification."));
987
988 if (!no_end && !dummy_beg && !dummy_end
989 && sal.symtab != sal_end.symtab)
990 error (_("Specified start and end are in different files."));
991 if (dummy_beg && dummy_end)
992 error (_("Two empty args do not say what lines to list."));
993
994 /* If line was specified by address,
995 first print exactly which line, and which file.
996
997 In this case, sal.symtab == 0 means address is outside of all
998 known source files, not that user failed to give a filename. */
999 if (*arg == '*')
1000 {
1001 struct gdbarch *gdbarch;
1002
1003 if (sal.symtab == 0)
1004 error (_("No source file for address %s."),
1005 paddress (get_current_arch (), sal.pc));
1006
1007 gdbarch = get_objfile_arch (sal.symtab->objfile);
1008 sym = find_pc_function (sal.pc);
1009 if (sym)
1010 printf_filtered ("%s is in %s (%s:%d).\n",
1011 paddress (gdbarch, sal.pc),
1012 SYMBOL_PRINT_NAME (sym),
1013 symtab_to_filename_for_display (sal.symtab), sal.line);
1014 else
1015 printf_filtered ("%s is at %s:%d.\n",
1016 paddress (gdbarch, sal.pc),
1017 symtab_to_filename_for_display (sal.symtab), sal.line);
1018 }
1019
1020 /* If line was not specified by just a line number, and it does not
1021 imply a symtab, it must be an undebuggable symbol which means no
1022 source code. */
1023
1024 if (!linenum_beg && sal.symtab == 0)
1025 error (_("No line number known for %s."), arg);
1026
1027 /* If this command is repeated with RET,
1028 turn it into the no-arg variant. */
1029
1030 if (from_tty)
1031 *arg = 0;
1032
1033 if (dummy_beg && sal_end.symtab == 0)
1034 error (_("No default source file yet. Do \"help list\"."));
1035 if (dummy_beg)
1036 print_source_lines (sal_end.symtab,
1037 max (sal_end.line - (get_lines_to_list () - 1), 1),
1038 sal_end.line + 1, 0);
1039 else if (sal.symtab == 0)
1040 error (_("No default source file yet. Do \"help list\"."));
1041 else if (no_end)
1042 {
1043 int first_line = sal.line - get_lines_to_list () / 2;
1044
1045 if (first_line < 1) first_line = 1;
1046
1047 print_source_lines (sal.symtab,
1048 first_line,
1049 first_line + get_lines_to_list (),
1050 0);
1051 }
1052 else
1053 print_source_lines (sal.symtab, sal.line,
1054 (dummy_end
1055 ? sal.line + get_lines_to_list ()
1056 : sal_end.line + 1),
1057 0);
1058 }
1059
1060 /* Subroutine of disassemble_command to simplify it.
1061 Perform the disassembly.
1062 NAME is the name of the function if known, or NULL.
1063 [LOW,HIGH) are the range of addresses to disassemble.
1064 MIXED is non-zero to print source with the assembler. */
1065
1066 static void
1067 print_disassembly (struct gdbarch *gdbarch, const char *name,
1068 CORE_ADDR low, CORE_ADDR high, int flags)
1069 {
1070 #if defined(TUI)
1071 if (!tui_is_window_visible (DISASSEM_WIN))
1072 #endif
1073 {
1074 printf_filtered ("Dump of assembler code ");
1075 if (name != NULL)
1076 printf_filtered ("for function %s:\n", name);
1077 else
1078 printf_filtered ("from %s to %s:\n",
1079 paddress (gdbarch, low), paddress (gdbarch, high));
1080
1081 /* Dump the specified range. */
1082 gdb_disassembly (gdbarch, current_uiout, 0, flags, -1, low, high);
1083
1084 printf_filtered ("End of assembler dump.\n");
1085 gdb_flush (gdb_stdout);
1086 }
1087 #if defined(TUI)
1088 else
1089 {
1090 tui_show_assembly (gdbarch, low);
1091 }
1092 #endif
1093 }
1094
1095 /* Subroutine of disassemble_command to simplify it.
1096 Print a disassembly of the current function according to FLAGS. */
1097
1098 static void
1099 disassemble_current_function (int flags)
1100 {
1101 struct frame_info *frame;
1102 struct gdbarch *gdbarch;
1103 CORE_ADDR low, high, pc;
1104 const char *name;
1105
1106 frame = get_selected_frame (_("No frame selected."));
1107 gdbarch = get_frame_arch (frame);
1108 pc = get_frame_address_in_block (frame);
1109 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
1110 error (_("No function contains program counter for selected frame."));
1111 #if defined(TUI)
1112 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
1113 `tui_version'. */
1114 if (tui_active)
1115 /* FIXME: cagney/2004-02-07: This should be an observer. */
1116 low = tui_get_low_disassembly_address (gdbarch, low, pc);
1117 #endif
1118 low += gdbarch_deprecated_function_start_offset (gdbarch);
1119
1120 print_disassembly (gdbarch, name, low, high, flags);
1121 }
1122
1123 /* Dump a specified section of assembly code.
1124
1125 Usage:
1126 disassemble [/mr]
1127 - dump the assembly code for the function of the current pc
1128 disassemble [/mr] addr
1129 - dump the assembly code for the function at ADDR
1130 disassemble [/mr] low,high
1131 disassemble [/mr] low,+length
1132 - dump the assembly code in the range [LOW,HIGH), or [LOW,LOW+length)
1133
1134 A /m modifier will include source code with the assembly.
1135 A /r modifier will include raw instructions in hex with the assembly. */
1136
1137 static void
1138 disassemble_command (char *arg, int from_tty)
1139 {
1140 struct gdbarch *gdbarch = get_current_arch ();
1141 CORE_ADDR low, high;
1142 const char *name;
1143 CORE_ADDR pc;
1144 int flags;
1145 const char *p;
1146
1147 p = arg;
1148 name = NULL;
1149 flags = 0;
1150
1151 if (p && *p == '/')
1152 {
1153 ++p;
1154
1155 if (*p == '\0')
1156 error (_("Missing modifier."));
1157
1158 while (*p && ! isspace (*p))
1159 {
1160 switch (*p++)
1161 {
1162 case 'm':
1163 flags |= DISASSEMBLY_SOURCE;
1164 break;
1165 case 'r':
1166 flags |= DISASSEMBLY_RAW_INSN;
1167 break;
1168 default:
1169 error (_("Invalid disassembly modifier."));
1170 }
1171 }
1172
1173 p = skip_spaces_const (p);
1174 }
1175
1176 if (! p || ! *p)
1177 {
1178 flags |= DISASSEMBLY_OMIT_FNAME;
1179 disassemble_current_function (flags);
1180 return;
1181 }
1182
1183 pc = value_as_address (parse_to_comma_and_eval (&p));
1184 if (p[0] == ',')
1185 ++p;
1186 if (p[0] == '\0')
1187 {
1188 /* One argument. */
1189 if (find_pc_partial_function (pc, &name, &low, &high) == 0)
1190 error (_("No function contains specified address."));
1191 #if defined(TUI)
1192 /* NOTE: cagney/2003-02-13 The `tui_active' was previously
1193 `tui_version'. */
1194 if (tui_active)
1195 /* FIXME: cagney/2004-02-07: This should be an observer. */
1196 low = tui_get_low_disassembly_address (gdbarch, low, pc);
1197 #endif
1198 low += gdbarch_deprecated_function_start_offset (gdbarch);
1199 flags |= DISASSEMBLY_OMIT_FNAME;
1200 }
1201 else
1202 {
1203 /* Two arguments. */
1204 int incl_flag = 0;
1205 low = pc;
1206 p = skip_spaces_const (p);
1207 if (p[0] == '+')
1208 {
1209 ++p;
1210 incl_flag = 1;
1211 }
1212 high = parse_and_eval_address (p);
1213 if (incl_flag)
1214 high += low;
1215 }
1216
1217 print_disassembly (gdbarch, name, low, high, flags);
1218 }
1219
1220 static void
1221 make_command (char *arg, int from_tty)
1222 {
1223 char *p;
1224
1225 if (arg == 0)
1226 p = "make";
1227 else
1228 {
1229 p = xmalloc (sizeof ("make ") + strlen (arg));
1230 strcpy (p, "make ");
1231 strcpy (p + sizeof ("make ") - 1, arg);
1232 }
1233
1234 shell_escape (p, from_tty);
1235 }
1236
1237 static void
1238 show_user (char *args, int from_tty)
1239 {
1240 struct cmd_list_element *c;
1241 extern struct cmd_list_element *cmdlist;
1242
1243 if (args)
1244 {
1245 const char *comname = args;
1246
1247 c = lookup_cmd (&comname, cmdlist, "", 0, 1);
1248 if (!cli_user_command_p (c))
1249 error (_("Not a user command."));
1250 show_user_1 (c, "", args, gdb_stdout);
1251 }
1252 else
1253 {
1254 for (c = cmdlist; c; c = c->next)
1255 {
1256 if (cli_user_command_p (c) || c->prefixlist != NULL)
1257 show_user_1 (c, "", c->name, gdb_stdout);
1258 }
1259 }
1260 }
1261
1262 /* Search through names of commands and documentations for a certain
1263 regular expression. */
1264
1265 static void
1266 apropos_command (char *searchstr, int from_tty)
1267 {
1268 regex_t pattern;
1269 int code;
1270
1271 if (searchstr == NULL)
1272 error (_("REGEXP string is empty"));
1273
1274 code = regcomp (&pattern, searchstr, REG_ICASE);
1275 if (code == 0)
1276 {
1277 struct cleanup *cleanups;
1278
1279 cleanups = make_regfree_cleanup (&pattern);
1280 apropos_cmd (gdb_stdout, cmdlist, &pattern, "");
1281 do_cleanups (cleanups);
1282 }
1283 else
1284 {
1285 char *err = get_regcomp_error (code, &pattern);
1286
1287 make_cleanup (xfree, err);
1288 error (_("Error in regular expression: %s"), err);
1289 }
1290 }
1291
1292 /* Subroutine of alias_command to simplify it.
1293 Return the first N elements of ARGV flattened back to a string
1294 with a space separating each element.
1295 ARGV may not be NULL.
1296 This does not take care of quoting elements in case they contain spaces
1297 on purpose. */
1298
1299 static dyn_string_t
1300 argv_to_dyn_string (char **argv, int n)
1301 {
1302 int i;
1303 dyn_string_t result = dyn_string_new (10);
1304
1305 gdb_assert (argv != NULL);
1306 gdb_assert (n >= 0 && n <= countargv (argv));
1307
1308 for (i = 0; i < n; ++i)
1309 {
1310 if (i > 0)
1311 dyn_string_append_char (result, ' ');
1312 dyn_string_append_cstr (result, argv[i]);
1313 }
1314
1315 return result;
1316 }
1317
1318 /* Subroutine of alias_command to simplify it.
1319 Return TRUE if COMMAND exists, unambiguously. Otherwise FALSE. */
1320
1321 static int
1322 valid_command_p (const char *command)
1323 {
1324 struct cmd_list_element *c;
1325
1326 c = lookup_cmd_1 (& command, cmdlist, NULL, 1);
1327
1328 if (c == NULL || c == (struct cmd_list_element *) -1)
1329 return FALSE;
1330
1331 /* This is the slightly tricky part.
1332 lookup_cmd_1 will return a pointer to the last part of COMMAND
1333 to match, leaving COMMAND pointing at the remainder. */
1334 while (*command == ' ' || *command == '\t')
1335 ++command;
1336 return *command == '\0';
1337 }
1338
1339 /* Make an alias of an existing command. */
1340
1341 static void
1342 alias_command (char *args, int from_tty)
1343 {
1344 int i, alias_argc, command_argc;
1345 int abbrev_flag = 0;
1346 char *args2, *equals, *alias, *command;
1347 char **alias_argv, **command_argv;
1348 dyn_string_t alias_dyn_string, command_dyn_string;
1349 struct cleanup *cleanup;
1350 static const char usage[] = N_("Usage: alias [-a] [--] ALIAS = COMMAND");
1351
1352 if (args == NULL || strchr (args, '=') == NULL)
1353 error (_(usage));
1354
1355 args2 = xstrdup (args);
1356 cleanup = make_cleanup (xfree, args2);
1357 equals = strchr (args2, '=');
1358 *equals = '\0';
1359 alias_argv = gdb_buildargv (args2);
1360 make_cleanup_freeargv (alias_argv);
1361 command_argv = gdb_buildargv (equals + 1);
1362 make_cleanup_freeargv (command_argv);
1363
1364 for (i = 0; alias_argv[i] != NULL; )
1365 {
1366 if (strcmp (alias_argv[i], "-a") == 0)
1367 {
1368 ++alias_argv;
1369 abbrev_flag = 1;
1370 }
1371 else if (strcmp (alias_argv[i], "--") == 0)
1372 {
1373 ++alias_argv;
1374 break;
1375 }
1376 else
1377 break;
1378 }
1379
1380 if (alias_argv[0] == NULL || command_argv[0] == NULL
1381 || *alias_argv[0] == '\0' || *command_argv[0] == '\0')
1382 error (_(usage));
1383
1384 for (i = 0; alias_argv[i] != NULL; ++i)
1385 {
1386 if (! valid_user_defined_cmd_name_p (alias_argv[i]))
1387 {
1388 if (i == 0)
1389 error (_("Invalid command name: %s"), alias_argv[i]);
1390 else
1391 error (_("Invalid command element name: %s"), alias_argv[i]);
1392 }
1393 }
1394
1395 alias_argc = countargv (alias_argv);
1396 command_argc = countargv (command_argv);
1397
1398 /* COMMAND must exist.
1399 Reconstruct the command to remove any extraneous spaces,
1400 for better error messages. */
1401 command_dyn_string = argv_to_dyn_string (command_argv, command_argc);
1402 make_cleanup_dyn_string_delete (command_dyn_string);
1403 command = dyn_string_buf (command_dyn_string);
1404 if (! valid_command_p (command))
1405 error (_("Invalid command to alias to: %s"), command);
1406
1407 /* ALIAS must not exist. */
1408 alias_dyn_string = argv_to_dyn_string (alias_argv, alias_argc);
1409 make_cleanup_dyn_string_delete (alias_dyn_string);
1410 alias = dyn_string_buf (alias_dyn_string);
1411 if (valid_command_p (alias))
1412 error (_("Alias already exists: %s"), alias);
1413
1414 /* If ALIAS is one word, it is an alias for the entire COMMAND.
1415 Example: alias spe = set print elements
1416
1417 Otherwise ALIAS and COMMAND must have the same number of words,
1418 and every word except the last must match; and the last word of
1419 ALIAS is made an alias of the last word of COMMAND.
1420 Example: alias set print elms = set pr elem
1421 Note that unambiguous abbreviations are allowed. */
1422
1423 if (alias_argc == 1)
1424 {
1425 /* add_cmd requires *we* allocate space for name, hence the xstrdup. */
1426 add_com_alias (xstrdup (alias_argv[0]), command, class_alias,
1427 abbrev_flag);
1428 }
1429 else
1430 {
1431 dyn_string_t alias_prefix_dyn_string, command_prefix_dyn_string;
1432 const char *alias_prefix, *command_prefix;
1433 struct cmd_list_element *c_alias, *c_command;
1434
1435 if (alias_argc != command_argc)
1436 error (_("Mismatched command length between ALIAS and COMMAND."));
1437
1438 /* Create copies of ALIAS and COMMAND without the last word,
1439 and use that to verify the leading elements match. */
1440 alias_prefix_dyn_string =
1441 argv_to_dyn_string (alias_argv, alias_argc - 1);
1442 make_cleanup_dyn_string_delete (alias_prefix_dyn_string);
1443 command_prefix_dyn_string =
1444 argv_to_dyn_string (alias_argv, command_argc - 1);
1445 make_cleanup_dyn_string_delete (command_prefix_dyn_string);
1446 alias_prefix = dyn_string_buf (alias_prefix_dyn_string);
1447 command_prefix = dyn_string_buf (command_prefix_dyn_string);
1448
1449 c_command = lookup_cmd_1 (& command_prefix, cmdlist, NULL, 1);
1450 /* We've already tried to look up COMMAND. */
1451 gdb_assert (c_command != NULL
1452 && c_command != (struct cmd_list_element *) -1);
1453 gdb_assert (c_command->prefixlist != NULL);
1454 c_alias = lookup_cmd_1 (& alias_prefix, cmdlist, NULL, 1);
1455 if (c_alias != c_command)
1456 error (_("ALIAS and COMMAND prefixes do not match."));
1457
1458 /* add_cmd requires *we* allocate space for name, hence the xstrdup. */
1459 add_alias_cmd (xstrdup (alias_argv[alias_argc - 1]),
1460 command_argv[command_argc - 1],
1461 class_alias, abbrev_flag, c_command->prefixlist);
1462 }
1463
1464 do_cleanups (cleanup);
1465 }
1466 \f
1467 /* Print a list of files and line numbers which a user may choose from
1468 in order to list a function which was specified ambiguously (as
1469 with `list classname::overloadedfuncname', for example). The
1470 vector in SALS provides the filenames and line numbers. */
1471
1472 static void
1473 ambiguous_line_spec (struct symtabs_and_lines *sals)
1474 {
1475 int i;
1476
1477 for (i = 0; i < sals->nelts; ++i)
1478 printf_filtered (_("file: \"%s\", line number: %d\n"),
1479 symtab_to_filename_for_display (sals->sals[i].symtab),
1480 sals->sals[i].line);
1481 }
1482
1483 /* Sort function for filter_sals. */
1484
1485 static int
1486 compare_symtabs (const void *a, const void *b)
1487 {
1488 const struct symtab_and_line *sala = a;
1489 const struct symtab_and_line *salb = b;
1490 int r;
1491
1492 if (!sala->symtab->dirname)
1493 {
1494 if (salb->symtab->dirname)
1495 return -1;
1496 }
1497 else if (!salb->symtab->dirname)
1498 {
1499 if (sala->symtab->dirname)
1500 return 1;
1501 }
1502 else
1503 {
1504 r = filename_cmp (sala->symtab->dirname, salb->symtab->dirname);
1505 if (r)
1506 return r;
1507 }
1508
1509 r = filename_cmp (sala->symtab->filename, salb->symtab->filename);
1510 if (r)
1511 return r;
1512
1513 if (sala->line < salb->line)
1514 return -1;
1515 return sala->line == salb->line ? 0 : 1;
1516 }
1517
1518 /* Remove any SALs that do not match the current program space, or
1519 which appear to be "file:line" duplicates. */
1520
1521 static void
1522 filter_sals (struct symtabs_and_lines *sals)
1523 {
1524 int i, out, prev;
1525
1526 out = 0;
1527 for (i = 0; i < sals->nelts; ++i)
1528 {
1529 if (sals->sals[i].pspace == current_program_space
1530 && sals->sals[i].symtab != NULL)
1531 {
1532 sals->sals[out] = sals->sals[i];
1533 ++out;
1534 }
1535 }
1536 sals->nelts = out;
1537
1538 qsort (sals->sals, sals->nelts, sizeof (struct symtab_and_line),
1539 compare_symtabs);
1540
1541 out = 1;
1542 prev = 0;
1543 for (i = 1; i < sals->nelts; ++i)
1544 {
1545 if (compare_symtabs (&sals->sals[prev], &sals->sals[i]))
1546 {
1547 /* Symtabs differ. */
1548 sals->sals[out] = sals->sals[i];
1549 prev = out;
1550 ++out;
1551 }
1552 }
1553
1554 if (sals->nelts == 0)
1555 {
1556 xfree (sals->sals);
1557 sals->sals = NULL;
1558 }
1559 else
1560 sals->nelts = out;
1561 }
1562
1563 static void
1564 set_debug (char *arg, int from_tty)
1565 {
1566 printf_unfiltered (_("\"set debug\" must be followed by "
1567 "the name of a debug subcommand.\n"));
1568 help_list (setdebuglist, "set debug ", all_commands, gdb_stdout);
1569 }
1570
1571 static void
1572 show_debug (char *args, int from_tty)
1573 {
1574 cmd_show_list (showdebuglist, from_tty, "");
1575 }
1576
1577 void
1578 init_cmd_lists (void)
1579 {
1580 max_user_call_depth = 1024;
1581 }
1582
1583 static void
1584 show_info_verbose (struct ui_file *file, int from_tty,
1585 struct cmd_list_element *c,
1586 const char *value)
1587 {
1588 if (info_verbose)
1589 fprintf_filtered (file,
1590 _("Verbose printing of informational messages is %s.\n"),
1591 value);
1592 else
1593 fprintf_filtered (file, _("Verbosity is %s.\n"), value);
1594 }
1595
1596 static void
1597 show_history_expansion_p (struct ui_file *file, int from_tty,
1598 struct cmd_list_element *c, const char *value)
1599 {
1600 fprintf_filtered (file, _("History expansion on command input is %s.\n"),
1601 value);
1602 }
1603
1604 static void
1605 show_remote_debug (struct ui_file *file, int from_tty,
1606 struct cmd_list_element *c, const char *value)
1607 {
1608 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
1609 value);
1610 }
1611
1612 static void
1613 show_remote_timeout (struct ui_file *file, int from_tty,
1614 struct cmd_list_element *c, const char *value)
1615 {
1616 fprintf_filtered (file,
1617 _("Timeout limit to wait for target to respond is %s.\n"),
1618 value);
1619 }
1620
1621 static void
1622 show_max_user_call_depth (struct ui_file *file, int from_tty,
1623 struct cmd_list_element *c, const char *value)
1624 {
1625 fprintf_filtered (file,
1626 _("The max call depth for user-defined commands is %s.\n"),
1627 value);
1628 }
1629
1630 \f
1631
1632 initialize_file_ftype _initialize_cli_cmds;
1633
1634 void
1635 _initialize_cli_cmds (void)
1636 {
1637 struct cmd_list_element *c;
1638
1639 /* Define the classes of commands.
1640 They will appear in the help list in alphabetical order. */
1641
1642 add_cmd ("internals", class_maintenance, NULL, _("\
1643 Maintenance commands.\n\
1644 Some gdb commands are provided just for use by gdb maintainers.\n\
1645 These commands are subject to frequent change, and may not be as\n\
1646 well documented as user commands."),
1647 &cmdlist);
1648 add_cmd ("obscure", class_obscure, NULL, _("Obscure features."), &cmdlist);
1649 add_cmd ("aliases", class_alias, NULL,
1650 _("Aliases of other commands."), &cmdlist);
1651 add_cmd ("user-defined", class_user, NULL, _("\
1652 User-defined commands.\n\
1653 The commands in this class are those defined by the user.\n\
1654 Use the \"define\" command to define a command."), &cmdlist);
1655 add_cmd ("support", class_support, NULL, _("Support facilities."), &cmdlist);
1656 if (!dbx_commands)
1657 add_cmd ("status", class_info, NULL, _("Status inquiries."), &cmdlist);
1658 add_cmd ("files", class_files, NULL, _("Specifying and examining files."),
1659 &cmdlist);
1660 add_cmd ("breakpoints", class_breakpoint, NULL,
1661 _("Making program stop at certain points."), &cmdlist);
1662 add_cmd ("data", class_vars, NULL, _("Examining data."), &cmdlist);
1663 add_cmd ("stack", class_stack, NULL, _("\
1664 Examining the stack.\n\
1665 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
1666 counting from zero for the innermost (currently executing) frame.\n\n\
1667 At any time gdb identifies one frame as the \"selected\" frame.\n\
1668 Variable lookups are done with respect to the selected frame.\n\
1669 When the program being debugged stops, gdb selects the innermost frame.\n\
1670 The commands below can be used to select other frames by number or address."),
1671 &cmdlist);
1672 add_cmd ("running", class_run, NULL, _("Running the program."), &cmdlist);
1673
1674 /* Define general commands. */
1675
1676 add_com ("pwd", class_files, pwd_command, _("\
1677 Print working directory. This is used for your program as well."));
1678
1679 c = add_cmd ("cd", class_files, cd_command, _("\
1680 Set working directory to DIR for debugger and program being debugged.\n\
1681 The change does not take effect for the program being debugged\n\
1682 until the next time it is started."), &cmdlist);
1683 set_cmd_completer (c, filename_completer);
1684
1685 add_com ("echo", class_support, echo_command, _("\
1686 Print a constant string. Give string as argument.\n\
1687 C escape sequences may be used in the argument.\n\
1688 No newline is added at the end of the argument;\n\
1689 use \"\\n\" if you want a newline to be printed.\n\
1690 Since leading and trailing whitespace are ignored in command arguments,\n\
1691 if you want to print some you must use \"\\\" before leading whitespace\n\
1692 to be printed or after trailing whitespace."));
1693
1694 add_setshow_enum_cmd ("script-extension", class_support,
1695 script_ext_enums, &script_ext_mode, _("\
1696 Set mode for script filename extension recognition."), _("\
1697 Show mode for script filename extension recognition."), _("\
1698 off == no filename extension recognition (all sourced files are GDB scripts)\n\
1699 soft == evaluate script according to filename extension, fallback to GDB script"
1700 "\n\
1701 strict == evaluate script according to filename extension, error if not supported"
1702 ),
1703 NULL,
1704 show_script_ext_mode,
1705 &setlist, &showlist);
1706
1707 add_com ("quit", class_support, quit_command, _("\
1708 Exit gdb.\n\
1709 Usage: quit [EXPR]\n\
1710 The optional expression EXPR, if present, is evaluated and the result\n\
1711 used as GDB's exit code. The default is zero."));
1712 c = add_com ("help", class_support, help_command,
1713 _("Print list of commands."));
1714 set_cmd_completer (c, command_completer);
1715 add_com_alias ("q", "quit", class_support, 1);
1716 add_com_alias ("h", "help", class_support, 1);
1717
1718 add_setshow_boolean_cmd ("verbose", class_support, &info_verbose, _("\
1719 Set verbosity."), _("\
1720 Show verbosity."), NULL,
1721 set_verbose,
1722 show_info_verbose,
1723 &setlist, &showlist);
1724
1725 add_prefix_cmd ("history", class_support, set_history,
1726 _("Generic command for setting command history parameters."),
1727 &sethistlist, "set history ", 0, &setlist);
1728 add_prefix_cmd ("history", class_support, show_history,
1729 _("Generic command for showing command history parameters."),
1730 &showhistlist, "show history ", 0, &showlist);
1731
1732 add_setshow_boolean_cmd ("expansion", no_class, &history_expansion_p, _("\
1733 Set history expansion on command input."), _("\
1734 Show history expansion on command input."), _("\
1735 Without an argument, history expansion is enabled."),
1736 NULL,
1737 show_history_expansion_p,
1738 &sethistlist, &showhistlist);
1739
1740 add_prefix_cmd ("info", class_info, info_command, _("\
1741 Generic command for showing things about the program being debugged."),
1742 &infolist, "info ", 0, &cmdlist);
1743 add_com_alias ("i", "info", class_info, 1);
1744 add_com_alias ("inf", "info", class_info, 1);
1745
1746 add_com ("complete", class_obscure, complete_command,
1747 _("List the completions for the rest of the line as a command."));
1748
1749 add_prefix_cmd ("show", class_info, show_command, _("\
1750 Generic command for showing things about the debugger."),
1751 &showlist, "show ", 0, &cmdlist);
1752 /* Another way to get at the same thing. */
1753 add_info ("set", show_command, _("Show all GDB settings."));
1754
1755 add_cmd ("commands", no_set_class, show_commands, _("\
1756 Show the history of commands you typed.\n\
1757 You can supply a command number to start with, or a `+' to start after\n\
1758 the previous command number shown."),
1759 &showlist);
1760
1761 add_cmd ("version", no_set_class, show_version,
1762 _("Show what version of GDB this is."), &showlist);
1763
1764 add_cmd ("configuration", no_set_class, show_configuration,
1765 _("Show how GDB was configured at build time."), &showlist);
1766
1767 add_setshow_zinteger_cmd ("remote", no_class, &remote_debug, _("\
1768 Set debugging of remote protocol."), _("\
1769 Show debugging of remote protocol."), _("\
1770 When enabled, each packet sent or received with the remote target\n\
1771 is displayed."),
1772 NULL,
1773 show_remote_debug,
1774 &setdebuglist, &showdebuglist);
1775
1776 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
1777 &remote_timeout, _("\
1778 Set timeout limit to wait for target to respond."), _("\
1779 Show timeout limit to wait for target to respond."), _("\
1780 This value is used to set the time limit for gdb to wait for a response\n\
1781 from the target."),
1782 NULL,
1783 show_remote_timeout,
1784 &setlist, &showlist);
1785
1786 add_prefix_cmd ("debug", no_class, set_debug,
1787 _("Generic command for setting gdb debugging flags"),
1788 &setdebuglist, "set debug ", 0, &setlist);
1789
1790 add_prefix_cmd ("debug", no_class, show_debug,
1791 _("Generic command for showing gdb debugging flags"),
1792 &showdebuglist, "show debug ", 0, &showlist);
1793
1794 c = add_com ("shell", class_support, shell_escape, _("\
1795 Execute the rest of the line as a shell command.\n\
1796 With no arguments, run an inferior shell."));
1797 set_cmd_completer (c, filename_completer);
1798
1799 c = add_com ("edit", class_files, edit_command, _("\
1800 Edit specified file or function.\n\
1801 With no argument, edits file containing most recent line listed.\n\
1802 Editing targets can be specified in these ways:\n\
1803 FILE:LINENUM, to edit at that line in that file,\n\
1804 FUNCTION, to edit at the beginning of that function,\n\
1805 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1806 *ADDRESS, to edit at the line containing that address.\n\
1807 Uses EDITOR environment variable contents as editor (or ex as default)."));
1808
1809 c->completer = location_completer;
1810
1811 add_com ("list", class_files, list_command, _("\
1812 List specified function or line.\n\
1813 With no argument, lists ten more lines after or around previous listing.\n\
1814 \"list -\" lists the ten lines before a previous ten-line listing.\n\
1815 One argument specifies a line, and ten lines are listed around that line.\n\
1816 Two arguments with comma between specify starting and ending lines to list.\n\
1817 Lines can be specified in these ways:\n\
1818 LINENUM, to list around that line in current file,\n\
1819 FILE:LINENUM, to list around that line in that file,\n\
1820 FUNCTION, to list around beginning of that function,\n\
1821 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1822 *ADDRESS, to list around the line containing that address.\n\
1823 With two args if one is empty it stands for ten lines away from \
1824 the other arg."));
1825
1826 if (!xdb_commands)
1827 add_com_alias ("l", "list", class_files, 1);
1828 else
1829 add_com_alias ("v", "list", class_files, 1);
1830
1831 if (dbx_commands)
1832 add_com_alias ("file", "list", class_files, 1);
1833
1834 c = add_com ("disassemble", class_vars, disassemble_command, _("\
1835 Disassemble a specified section of memory.\n\
1836 Default is the function surrounding the pc of the selected frame.\n\
1837 With a /m modifier, source lines are included (if available).\n\
1838 With a /r modifier, raw instructions in hex are included.\n\
1839 With a single argument, the function surrounding that address is dumped.\n\
1840 Two arguments (separated by a comma) are taken as a range of memory to dump,\n\
1841 in the form of \"start,end\", or \"start,+length\".\n\
1842 \n\
1843 Note that the address is interpreted as an expression, not as a location\n\
1844 like in the \"break\" command.\n\
1845 So, for example, if you want to disassemble function bar in file foo.c\n\
1846 you must type \"disassemble 'foo.c'::bar\" and not \"disassemble foo.c:bar\"."));
1847 set_cmd_completer (c, location_completer);
1848 if (xdb_commands)
1849 add_com_alias ("va", "disassemble", class_xdb, 0);
1850
1851 add_com_alias ("!", "shell", class_support, 0);
1852
1853 c = add_com ("make", class_support, make_command, _("\
1854 Run the ``make'' program using the rest of the line as arguments."));
1855 set_cmd_completer (c, filename_completer);
1856 add_cmd ("user", no_class, show_user, _("\
1857 Show definitions of non-python/scheme user defined commands.\n\
1858 Argument is the name of the user defined command.\n\
1859 With no argument, show definitions of all user defined commands."), &showlist);
1860 add_com ("apropos", class_support, apropos_command,
1861 _("Search for commands matching a REGEXP"));
1862
1863 add_setshow_uinteger_cmd ("max-user-call-depth", no_class,
1864 &max_user_call_depth, _("\
1865 Set the max call depth for non-python/scheme user-defined commands."), _("\
1866 Show the max call depth for non-python/scheme user-defined commands."), NULL,
1867 NULL,
1868 show_max_user_call_depth,
1869 &setlist, &showlist);
1870
1871 add_setshow_boolean_cmd ("trace-commands", no_class, &trace_commands, _("\
1872 Set tracing of GDB CLI commands."), _("\
1873 Show state of GDB CLI command tracing."), _("\
1874 When 'on', each command is displayed as it is executed."),
1875 NULL,
1876 NULL,
1877 &setlist, &showlist);
1878
1879 c = add_com ("alias", class_support, alias_command, _("\
1880 Define a new command that is an alias of an existing command.\n\
1881 Usage: alias [-a] [--] ALIAS = COMMAND\n\
1882 ALIAS is the name of the alias command to create.\n\
1883 COMMAND is the command being aliased to.\n\
1884 If \"-a\" is specified, the command is an abbreviation,\n\
1885 and will not appear in help command list output.\n\
1886 \n\
1887 Examples:\n\
1888 Make \"spe\" an alias of \"set print elements\":\n\
1889 alias spe = set print elements\n\
1890 Make \"elms\" an alias of \"elements\" in the \"set print\" command:\n\
1891 alias -a set print elms = set print elements"));
1892 }
1893
1894 void
1895 init_cli_cmds (void)
1896 {
1897 struct cmd_list_element *c;
1898 char *source_help_text;
1899
1900 source_help_text = xstrprintf (_("\
1901 Read commands from a file named FILE.\n\
1902 \n\
1903 Usage: source [-s] [-v] FILE\n\
1904 -s: search for the script in the source search path,\n\
1905 even if FILE contains directories.\n\
1906 -v: each command in FILE is echoed as it is executed.\n\
1907 \n\
1908 Note that the file \"%s\" is read automatically in this way\n\
1909 when GDB is started."), gdbinit);
1910 c = add_cmd ("source", class_support, source_command,
1911 source_help_text, &cmdlist);
1912 set_cmd_completer (c, filename_completer);
1913 }