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