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