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