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