1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986-2018 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "arch-utils.h"
22 #include "expression.h"
29 #include "filestuff.h"
31 #include <sys/types.h>
34 #include "gdb_regex.h"
40 #include "filenames.h" /* for DOSish file names */
41 #include "completer.h"
43 #include "readline/readline.h"
44 #include "common/enum-flags.h"
45 #include "common/scoped_fd.h"
47 #include "common/pathstuff.h"
49 #define OPEN_MODE (O_RDONLY | O_BINARY)
50 #define FDOPEN_MODE FOPEN_RB
52 /* Path of directories to search for source files.
53 Same format as the PATH environment variable's value. */
57 /* Support for source path substitution commands. */
59 struct substitute_path_rule
63 struct substitute_path_rule *next;
66 static struct substitute_path_rule *substitute_path_rules = NULL;
68 /* Symtab of default file for listing lines of. */
70 static struct symtab *current_source_symtab;
72 /* Default next line to list. */
74 static int current_source_line;
76 static struct program_space *current_source_pspace;
78 /* Default number of lines to print with commands like "list".
79 This is based on guessing how many long (i.e. more than chars_per_line
80 characters) lines there will be. To be completely correct, "list"
81 and friends should be rewritten to count characters and see where
82 things are wrapping, but that would be a fair amount of work. */
84 static int lines_to_list = 10;
86 show_lines_to_list (struct ui_file *file, int from_tty,
87 struct cmd_list_element *c, const char *value)
89 fprintf_filtered (file,
90 _("Number of source lines gdb "
91 "will list by default is %s.\n"),
95 /* Possible values of 'set filename-display'. */
96 static const char filename_display_basename[] = "basename";
97 static const char filename_display_relative[] = "relative";
98 static const char filename_display_absolute[] = "absolute";
100 static const char *const filename_display_kind_names[] = {
101 filename_display_basename,
102 filename_display_relative,
103 filename_display_absolute,
107 static const char *filename_display_string = filename_display_relative;
110 show_filename_display_string (struct ui_file *file, int from_tty,
111 struct cmd_list_element *c, const char *value)
113 fprintf_filtered (file, _("Filenames are displayed as \"%s\".\n"), value);
116 /* Line number of last line printed. Default for various commands.
117 current_source_line is usually, but not always, the same as this. */
119 static int last_line_listed;
121 /* First line number listed by last listing command. If 0, then no
122 source lines have yet been listed since the last time the current
123 source line was changed. */
125 static int first_line_listed;
127 /* Saves the name of the last source file visited and a possible error code.
128 Used to prevent repeating annoying "No such file or directories" msgs. */
130 static struct symtab *last_source_visited = NULL;
131 static int last_source_error = 0;
133 /* Return the first line listed by print_source_lines.
134 Used by command interpreters to request listing from
138 get_first_line_listed (void)
140 return first_line_listed;
143 /* Clear line listed range. This makes the next "list" center the
144 printed source lines around the current source line. */
147 clear_lines_listed_range (void)
149 first_line_listed = 0;
150 last_line_listed = 0;
153 /* Return the default number of lines to print with commands like the
154 cli "list". The caller of print_source_lines must use this to
155 calculate the end line and use it in the call to print_source_lines
156 as it does not automatically use this value. */
159 get_lines_to_list (void)
161 return lines_to_list;
164 /* Return the current source file for listing and next line to list.
165 NOTE: The returned sal pc and end fields are not valid. */
167 struct symtab_and_line
168 get_current_source_symtab_and_line (void)
170 symtab_and_line cursal;
172 cursal.pspace = current_source_pspace;
173 cursal.symtab = current_source_symtab;
174 cursal.line = current_source_line;
181 /* If the current source file for listing is not set, try and get a default.
182 Usually called before get_current_source_symtab_and_line() is called.
183 It may err out if a default cannot be determined.
184 We must be cautious about where it is called, as it can recurse as the
185 process of determining a new default may call the caller!
186 Use get_current_source_symtab_and_line only to get whatever
187 we have without erroring out or trying to get a default. */
190 set_default_source_symtab_and_line (void)
192 if (!have_full_symbols () && !have_partial_symbols ())
193 error (_("No symbol table is loaded. Use the \"file\" command."));
195 /* Pull in a current source symtab if necessary. */
196 if (current_source_symtab == 0)
197 select_source_symtab (0);
200 /* Return the current default file for listing and next line to list
201 (the returned sal pc and end fields are not valid.)
202 and set the current default to whatever is in SAL.
203 NOTE: The returned sal pc and end fields are not valid. */
205 struct symtab_and_line
206 set_current_source_symtab_and_line (const symtab_and_line &sal)
208 symtab_and_line cursal;
210 cursal.pspace = current_source_pspace;
211 cursal.symtab = current_source_symtab;
212 cursal.line = current_source_line;
216 current_source_pspace = sal.pspace;
217 current_source_symtab = sal.symtab;
218 current_source_line = sal.line;
220 /* Force the next "list" to center around the current line. */
221 clear_lines_listed_range ();
226 /* Reset any information stored about a default file and line to print. */
229 clear_current_source_symtab_and_line (void)
231 current_source_symtab = 0;
232 current_source_line = 0;
235 /* Set the source file default for the "list" command to be S.
237 If S is NULL, and we don't have a default, find one. This
238 should only be called when the user actually tries to use the
239 default, since we produce an error if we can't find a reasonable
240 default. Also, since this can cause symbols to be read, doing it
241 before we need to would make things slower than necessary. */
244 select_source_symtab (struct symtab *s)
247 struct compunit_symtab *cu;
251 current_source_symtab = s;
252 current_source_line = 1;
253 current_source_pspace = SYMTAB_PSPACE (s);
257 if (current_source_symtab)
260 /* Make the default place to list be the function `main'
262 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0).symbol)
264 std::vector<symtab_and_line> sals
265 = decode_line_with_current_source (main_name (),
266 DECODE_LINE_FUNFIRSTLINE);
267 const symtab_and_line &sal = sals[0];
268 current_source_pspace = sal.pspace;
269 current_source_symtab = sal.symtab;
270 current_source_line = std::max (sal.line - (lines_to_list - 1), 1);
271 if (current_source_symtab)
275 /* Alright; find the last file in the symtab list (ignoring .h's
276 and namespace symtabs). */
278 current_source_line = 1;
280 ALL_FILETABS (ofp, cu, s)
282 const char *name = s->filename;
283 int len = strlen (name);
285 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
286 || strcmp (name, "<<C++-namespaces>>") == 0)))
288 current_source_pspace = current_program_space;
289 current_source_symtab = s;
293 if (current_source_symtab)
299 s = ofp->sf->qf->find_last_source_symtab (ofp);
301 current_source_symtab = s;
303 if (current_source_symtab)
306 error (_("Can't find a default source file"));
309 /* Handler for "set directories path-list" command.
310 "set dir mumble" doesn't prepend paths, it resets the entire
311 path list. The theory is that set(show(dir)) should be a no-op. */
314 set_directories_command (const char *args,
315 int from_tty, struct cmd_list_element *c)
317 /* This is the value that was set.
318 It needs to be processed to maintain $cdir:$cwd and remove dups. */
319 char *set_path = source_path;
321 /* We preserve the invariant that $cdir:$cwd begins life at the end of
322 the list by calling init_source_path. If they appear earlier in
323 SET_PATH then mod_path will move them appropriately.
324 mod_path will also remove duplicates. */
326 if (*set_path != '\0')
327 mod_path (set_path, &source_path);
332 /* Print the list of source directories.
333 This is used by the "ld" command, so it has the signature of a command
337 show_directories_1 (char *ignore, int from_tty)
339 puts_filtered ("Source directories searched: ");
340 puts_filtered (source_path);
341 puts_filtered ("\n");
344 /* Handler for "show directories" command. */
347 show_directories_command (struct ui_file *file, int from_tty,
348 struct cmd_list_element *c, const char *value)
350 show_directories_1 (NULL, from_tty);
353 /* Forget line positions and file names for the symtabs in a
354 particular objfile. */
357 forget_cached_source_info_for_objfile (struct objfile *objfile)
359 struct compunit_symtab *cu;
362 ALL_OBJFILE_FILETABS (objfile, cu, s)
364 if (s->line_charpos != NULL)
366 xfree (s->line_charpos);
367 s->line_charpos = NULL;
369 if (s->fullname != NULL)
377 objfile->sf->qf->forget_cached_source_info (objfile);
380 /* Forget what we learned about line positions in source files, and
381 which directories contain them; must check again now since files
382 may be found in a different directory now. */
385 forget_cached_source_info (void)
387 struct program_space *pspace;
388 struct objfile *objfile;
391 ALL_PSPACE_OBJFILES (pspace, objfile)
393 forget_cached_source_info_for_objfile (objfile);
396 last_source_visited = NULL;
400 init_source_path (void)
404 xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR);
405 source_path = xstrdup (buf);
406 forget_cached_source_info ();
409 /* Add zero or more directories to the front of the source path. */
412 directory_command (const char *dirname, int from_tty)
415 /* FIXME, this goes to "delete dir"... */
418 if (!from_tty || query (_("Reinitialize source path to empty? ")))
426 mod_path (dirname, &source_path);
427 forget_cached_source_info ();
430 show_directories_1 ((char *) 0, from_tty);
433 /* Add a path given with the -d command line switch.
434 This will not be quoted so we must not treat spaces as separators. */
437 directory_switch (const char *dirname, int from_tty)
439 add_path (dirname, &source_path, 0);
442 /* Add zero or more directories to the front of an arbitrary path. */
445 mod_path (const char *dirname, char **which_path)
447 add_path (dirname, which_path, 1);
450 /* Workhorse of mod_path. Takes an extra argument to determine
451 if dirname should be parsed for separators that indicate multiple
452 directories. This allows for interfaces that pre-parse the dirname
453 and allow specification of traditional separator characters such
457 add_path (const char *dirname, char **which_path, int parse_separators)
459 char *old = *which_path;
461 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec;
466 if (parse_separators)
468 /* This will properly parse the space and tab separators
469 and any quotes that may exist. */
470 gdb_argv argv (dirname);
472 for (char *arg : argv)
473 dirnames_to_char_ptr_vec_append (&dir_vec, arg);
476 dir_vec.emplace_back (xstrdup (dirname));
478 for (const gdb::unique_xmalloc_ptr<char> &name_up : dir_vec)
480 char *name = name_up.get ();
483 gdb::unique_xmalloc_ptr<char> new_name_holder;
485 /* Spaces and tabs will have been removed by buildargv().
486 NAME is the start of the directory.
487 P is the '\0' following the end. */
488 p = name + strlen (name);
490 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
491 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
492 /* On MS-DOS and MS-Windows, h:\ is different from h: */
493 && !(p == name + 3 && name[1] == ':') /* "d:/" */
495 && IS_DIR_SEPARATOR (p[-1]))
496 /* Sigh. "foo/" => "foo" */
500 while (p > name && p[-1] == '.')
504 /* "." => getwd (). */
505 name = current_directory;
508 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
518 /* "...foo/." => "...foo". */
529 new_name_holder.reset (tilde_expand (name));
530 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
531 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
532 new_name_holder.reset (concat (name, ".", (char *) NULL));
534 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
535 new_name_holder.reset (concat (current_directory, SLASH_STRING, name,
538 new_name_holder.reset (savestring (name, p - name));
539 name = new_name_holder.get ();
541 /* Unless it's a variable, check existence. */
544 /* These are warnings, not errors, since we don't want a
545 non-existent directory in a .gdbinit file to stop processing
546 of the .gdbinit file.
548 Whether they get added to the path is more debatable. Current
549 answer is yes, in case the user wants to go make the directory
550 or whatever. If the directory continues to not exist/not be
551 a directory/etc, then having them in the path should be
553 if (stat (name, &st) < 0)
555 int save_errno = errno;
557 fprintf_unfiltered (gdb_stderr, "Warning: ");
558 print_sys_errmsg (name, save_errno);
560 else if ((st.st_mode & S_IFMT) != S_IFDIR)
561 warning (_("%s is not a directory."), name);
566 unsigned int len = strlen (name);
572 /* FIXME: we should use realpath() or its work-alike
573 before comparing. Then all the code above which
574 removes excess slashes and dots could simply go away. */
575 if (!filename_ncmp (p, name, len)
576 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
578 /* Found it in the search path, remove old copy. */
581 /* Back over leading separator. */
584 if (prefix > p - *which_path)
586 /* Same dir twice in one cmd. */
589 /* Copy from next '\0' or ':'. */
590 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
592 p = strchr (p, DIRNAME_SEPARATOR);
599 tinybuf[0] = DIRNAME_SEPARATOR;
602 /* If we have already tacked on a name(s) in this command,
603 be sure they stay on the front as we tack on some
611 temp = concat (old, tinybuf, name, (char *)NULL);
613 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
614 prefix = strlen (temp);
619 *which_path = concat (name, (old[0] ? tinybuf : old),
621 prefix = strlen (name);
633 info_source_command (const char *ignore, int from_tty)
635 struct symtab *s = current_source_symtab;
636 struct compunit_symtab *cust;
640 printf_filtered (_("No current source file.\n"));
644 cust = SYMTAB_COMPUNIT (s);
645 printf_filtered (_("Current source file is %s\n"), s->filename);
646 if (SYMTAB_DIRNAME (s) != NULL)
647 printf_filtered (_("Compilation directory is %s\n"), SYMTAB_DIRNAME (s));
649 printf_filtered (_("Located in %s\n"), s->fullname);
651 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
652 s->nlines == 1 ? "" : "s");
654 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
655 printf_filtered (_("Producer is %s.\n"),
656 COMPUNIT_PRODUCER (cust) != NULL
657 ? COMPUNIT_PRODUCER (cust) : _("unknown"));
658 printf_filtered (_("Compiled with %s debugging format.\n"),
659 COMPUNIT_DEBUGFORMAT (cust));
660 printf_filtered (_("%s preprocessor macro info.\n"),
661 COMPUNIT_MACRO_TABLE (cust) != NULL
662 ? "Includes" : "Does not include");
666 /* Open a file named STRING, searching path PATH (dir names sep by some char)
667 using mode MODE in the calls to open. You cannot use this function to
668 create files (O_CREAT).
670 OPTS specifies the function behaviour in specific cases.
672 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
673 (ie pretend the first element of PATH is "."). This also indicates
674 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
675 disables searching of the path (this is so that "exec-file ./foo" or
676 "symbol-file ./foo" insures that you get that particular version of
677 foo or an error message).
679 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
680 searched in path (we usually want this for source files but not for
683 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
684 the actual file opened (this string will always start with a "/"). We
685 have to take special pains to avoid doubling the "/" between the directory
686 and the file, sigh! Emacs gets confuzzed by this when we print the
689 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
690 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
691 filename starting with "/". If FILENAME_OPENED is NULL this option has no
694 If a file is found, return the descriptor.
695 Otherwise, return -1, with errno set for the last name we tried to open. */
697 /* >>>> This should only allow files of certain types,
698 >>>> eg executable, non-directory. */
700 openp (const char *path, openp_flags opts, const char *string,
701 int mode, gdb::unique_xmalloc_ptr<char> *filename_opened)
706 /* The errno set for the last name we tried to open (and
709 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec;
711 /* The open syscall MODE parameter is not specified. */
712 gdb_assert ((mode & O_CREAT) == 0);
713 gdb_assert (string != NULL);
715 /* A file with an empty name cannot possibly exist. Report a failure
716 without further checking.
718 This is an optimization which also defends us against buggy
719 implementations of the "stat" function. For instance, we have
720 noticed that a MinGW debugger built on Windows XP 32bits crashes
721 when the debugger is started with an empty argument. */
722 if (string[0] == '\0')
733 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
735 int i, reg_file_errno;
737 if (is_regular_file (string, ®_file_errno))
739 filename = (char *) alloca (strlen (string) + 1);
740 strcpy (filename, string);
741 fd = gdb_open_cloexec (filename, mode, 0);
750 last_errno = reg_file_errno;
753 if (!(opts & OPF_SEARCH_IN_PATH))
754 for (i = 0; string[i]; i++)
755 if (IS_DIR_SEPARATOR (string[i]))
759 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
760 if (HAS_DRIVE_SPEC (string))
761 string = STRIP_DRIVE_SPEC (string);
763 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
764 while (IS_DIR_SEPARATOR(string[0]))
768 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
771 alloclen = strlen (path) + strlen (string) + 2;
772 filename = (char *) alloca (alloclen);
776 dir_vec = dirnames_to_char_ptr_vec (path);
778 for (const gdb::unique_xmalloc_ptr<char> &dir_up : dir_vec)
780 char *dir = dir_up.get ();
781 size_t len = strlen (dir);
784 if (strcmp (dir, "$cwd") == 0)
786 /* Name is $cwd -- insert current directory name instead. */
789 /* First, realloc the filename buffer if too short. */
790 len = strlen (current_directory);
791 newlen = len + strlen (string) + 2;
792 if (newlen > alloclen)
795 filename = (char *) alloca (alloclen);
797 strcpy (filename, current_directory);
799 else if (strchr(dir, '~'))
801 /* See whether we need to expand the tilde. */
804 gdb::unique_xmalloc_ptr<char> tilde_expanded (tilde_expand (dir));
806 /* First, realloc the filename buffer if too short. */
807 len = strlen (tilde_expanded.get ());
808 newlen = len + strlen (string) + 2;
809 if (newlen > alloclen)
812 filename = (char *) alloca (alloclen);
814 strcpy (filename, tilde_expanded.get ());
818 /* Normal file name in path -- just use it. */
819 strcpy (filename, dir);
821 /* Don't search $cdir. It's also a magic path like $cwd, but we
822 don't have enough information to expand it. The user *could*
823 have an actual directory named '$cdir' but handling that would
824 be confusing, it would mean different things in different
825 contexts. If the user really has '$cdir' one can use './$cdir'.
826 We can get $cdir when loading scripts. When loading source files
827 $cdir must have already been expanded to the correct value. */
828 if (strcmp (dir, "$cdir") == 0)
832 /* Remove trailing slashes. */
833 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
836 strcat (filename + len, SLASH_STRING);
837 strcat (filename, string);
839 if (is_regular_file (filename, ®_file_errno))
841 fd = gdb_open_cloexec (filename, mode, 0);
847 last_errno = reg_file_errno;
853 /* If a file was opened, canonicalize its filename. */
855 filename_opened->reset (NULL);
856 else if ((opts & OPF_RETURN_REALPATH) != 0)
857 *filename_opened = gdb_realpath (filename);
859 *filename_opened = gdb_abspath (filename);
867 /* This is essentially a convenience, for clients that want the behaviour
868 of openp, using source_path, but that really don't want the file to be
869 opened but want instead just to know what the full pathname is (as
870 qualified against source_path).
872 The current working directory is searched first.
874 If the file was found, this function returns 1, and FULL_PATHNAME is
875 set to the fully-qualified pathname.
877 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
879 source_full_path_of (const char *filename,
880 gdb::unique_xmalloc_ptr<char> *full_pathname)
884 fd = openp (source_path,
885 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
886 filename, O_RDONLY, full_pathname);
889 full_pathname->reset (NULL);
897 /* Return non-zero if RULE matches PATH, that is if the rule can be
901 substitute_path_rule_matches (const struct substitute_path_rule *rule,
904 const int from_len = strlen (rule->from);
905 const int path_len = strlen (path);
907 if (path_len < from_len)
910 /* The substitution rules are anchored at the start of the path,
911 so the path should start with rule->from. */
913 if (filename_ncmp (path, rule->from, from_len) != 0)
916 /* Make sure that the region in the path that matches the substitution
917 rule is immediately followed by a directory separator (or the end of
918 string character). */
920 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
926 /* Find the substitute-path rule that applies to PATH and return it.
927 Return NULL if no rule applies. */
929 static struct substitute_path_rule *
930 get_substitute_path_rule (const char *path)
932 struct substitute_path_rule *rule = substitute_path_rules;
934 while (rule != NULL && !substitute_path_rule_matches (rule, path))
940 /* If the user specified a source path substitution rule that applies
941 to PATH, then apply it and return the new path.
943 Return NULL if no substitution rule was specified by the user,
944 or if no rule applied to the given PATH. */
946 gdb::unique_xmalloc_ptr<char>
947 rewrite_source_path (const char *path)
949 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
956 from_len = strlen (rule->from);
958 /* Compute the rewritten path and return it. */
961 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
962 strcpy (new_path, rule->to);
963 strcat (new_path, path + from_len);
965 return gdb::unique_xmalloc_ptr<char> (new_path);
971 find_and_open_source (const char *filename,
973 gdb::unique_xmalloc_ptr<char> *fullname)
975 char *path = source_path;
979 /* Quick way out if we already know its full name. */
983 /* The user may have requested that source paths be rewritten
984 according to substitution rules he provided. If a substitution
985 rule applies to this path, then apply it. */
986 gdb::unique_xmalloc_ptr<char> rewritten_fullname
987 = rewrite_source_path (fullname->get ());
989 if (rewritten_fullname != NULL)
990 *fullname = std::move (rewritten_fullname);
992 result = gdb_open_cloexec (fullname->get (), OPEN_MODE, 0);
995 *fullname = gdb_realpath (fullname->get ());
996 return scoped_fd (result);
999 /* Didn't work -- free old one, try again. */
1000 fullname->reset (NULL);
1003 gdb::unique_xmalloc_ptr<char> rewritten_dirname;
1004 if (dirname != NULL)
1006 /* If necessary, rewrite the compilation directory name according
1007 to the source path substitution rules specified by the user. */
1009 rewritten_dirname = rewrite_source_path (dirname);
1011 if (rewritten_dirname != NULL)
1012 dirname = rewritten_dirname.get ();
1014 /* Replace a path entry of $cdir with the compilation directory
1017 /* We cast strstr's result in case an ANSIhole has made it const,
1018 which produces a "required warning" when assigned to a nonconst. */
1019 p = (char *) strstr (source_path, "$cdir");
1020 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1021 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1026 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
1027 len = p - source_path;
1028 strncpy (path, source_path, len); /* Before $cdir */
1029 strcpy (path + len, dirname); /* new stuff */
1030 strcat (path + len, source_path + len + cdir_len); /* After
1035 gdb::unique_xmalloc_ptr<char> rewritten_filename;
1036 if (IS_ABSOLUTE_PATH (filename))
1038 /* If filename is absolute path, try the source path
1039 substitution on it. */
1040 rewritten_filename = rewrite_source_path (filename);
1042 if (rewritten_filename != NULL)
1043 filename = rewritten_filename.get ();
1046 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1047 OPEN_MODE, fullname);
1050 /* Didn't work. Try using just the basename. */
1051 p = lbasename (filename);
1053 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1054 OPEN_MODE, fullname);
1057 return scoped_fd (result);
1060 /* Open a source file given a symtab S. Returns a file descriptor or
1061 negative number for error.
1063 This function is a convience function to find_and_open_source. */
1066 open_source_file (struct symtab *s)
1069 return scoped_fd (-1);
1071 gdb::unique_xmalloc_ptr<char> fullname (s->fullname);
1073 scoped_fd fd = find_and_open_source (s->filename, SYMTAB_DIRNAME (s),
1075 s->fullname = fullname.release ();
1079 /* Finds the fullname that a symtab represents.
1081 This functions finds the fullname and saves it in s->fullname.
1082 It will also return the value.
1084 If this function fails to find the file that this symtab represents,
1085 the expected fullname is used. Therefore the files does not have to
1089 symtab_to_fullname (struct symtab *s)
1091 /* Use cached copy if we have it.
1092 We rely on forget_cached_source_info being called appropriately
1093 to handle cases like the file being moved. */
1094 if (s->fullname == NULL)
1096 scoped_fd fd = open_source_file (s);
1100 gdb::unique_xmalloc_ptr<char> fullname;
1102 /* rewrite_source_path would be applied by find_and_open_source, we
1103 should report the pathname where GDB tried to find the file. */
1105 if (SYMTAB_DIRNAME (s) == NULL || IS_ABSOLUTE_PATH (s->filename))
1106 fullname.reset (xstrdup (s->filename));
1108 fullname.reset (concat (SYMTAB_DIRNAME (s), SLASH_STRING,
1109 s->filename, (char *) NULL));
1111 s->fullname = rewrite_source_path (fullname.get ()).release ();
1112 if (s->fullname == NULL)
1113 s->fullname = fullname.release ();
1120 /* See commentary in source.h. */
1123 symtab_to_filename_for_display (struct symtab *symtab)
1125 if (filename_display_string == filename_display_basename)
1126 return lbasename (symtab->filename);
1127 else if (filename_display_string == filename_display_absolute)
1128 return symtab_to_fullname (symtab);
1129 else if (filename_display_string == filename_display_relative)
1130 return symtab->filename;
1132 internal_error (__FILE__, __LINE__, _("invalid filename_display_string"));
1135 /* Create and initialize the table S->line_charpos that records
1136 the positions of the lines in the source file, which is assumed
1137 to be open on descriptor DESC.
1138 All set S->nlines to the number of such lines. */
1141 find_source_lines (struct symtab *s, int desc)
1146 int lines_allocated = 1000;
1152 line_charpos = XNEWVEC (int, lines_allocated);
1153 if (fstat (desc, &st) < 0)
1154 perror_with_name (symtab_to_filename_for_display (s));
1156 if (SYMTAB_OBJFILE (s) != NULL && SYMTAB_OBJFILE (s)->obfd != NULL)
1157 mtime = SYMTAB_OBJFILE (s)->mtime;
1159 mtime = exec_bfd_mtime;
1161 if (mtime && mtime < st.st_mtime)
1162 warning (_("Source file is more recent than executable."));
1165 /* st_size might be a large type, but we only support source files whose
1166 size fits in an int. */
1167 size = (int) st.st_size;
1169 /* Use the heap, not the stack, because this may be pretty large,
1170 and we may run into various kinds of limits on stack size. */
1171 gdb::def_vector<char> data (size);
1173 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1174 size = myread (desc, data.data (), size);
1176 perror_with_name (symtab_to_filename_for_display (s));
1177 end = data.data () + size;
1179 line_charpos[0] = 0;
1184 /* A newline at the end does not start a new line. */
1187 if (nlines == lines_allocated)
1189 lines_allocated *= 2;
1191 (int *) xrealloc ((char *) line_charpos,
1192 sizeof (int) * lines_allocated);
1194 line_charpos[nlines++] = p - data.data ();
1201 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
1207 /* Get full pathname and line number positions for a symtab.
1208 Set *FULLNAME to actual name of the file as found by `openp',
1209 or to 0 if the file is not found. */
1212 get_filename_and_charpos (struct symtab *s, char **fullname)
1214 scoped_fd desc = open_source_file (s);
1215 if (desc.get () < 0)
1222 *fullname = s->fullname;
1223 if (s->line_charpos == 0)
1224 find_source_lines (s, desc.get ());
1227 /* Print text describing the full name of the source file S
1228 and the line number LINE and its corresponding character position.
1229 The text starts with two Ctrl-z so that the Emacs-GDB interface
1232 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1234 Return 1 if successful, 0 if could not find the file. */
1237 identify_source_line (struct symtab *s, int line, int mid_statement,
1240 if (s->line_charpos == 0)
1241 get_filename_and_charpos (s, (char **) NULL);
1242 if (s->fullname == 0)
1244 if (line > s->nlines)
1245 /* Don't index off the end of the line_charpos array. */
1247 annotate_source (s->fullname, line, s->line_charpos[line - 1],
1248 mid_statement, get_objfile_arch (SYMTAB_OBJFILE (s)), pc);
1250 current_source_line = line;
1251 current_source_symtab = s;
1252 clear_lines_listed_range ();
1257 /* Print source lines from the file of symtab S,
1258 starting with line number LINE and stopping before line number STOPLINE. */
1261 print_source_lines_base (struct symtab *s, int line, int stopline,
1262 print_source_lines_flags flags)
1267 int nlines = stopline - line;
1268 struct ui_out *uiout = current_uiout;
1270 /* Regardless of whether we can open the file, set current_source_symtab. */
1271 current_source_symtab = s;
1272 current_source_line = line;
1273 first_line_listed = line;
1275 /* If printing of source lines is disabled, just print file and line
1277 if (uiout->test_flags (ui_source_list))
1279 /* Only prints "No such file or directory" once. */
1280 if ((s != last_source_visited) || (!last_source_error))
1282 last_source_visited = s;
1283 desc = open_source_file (s);
1284 if (desc.get () < 0)
1286 last_source_error = desc.get ();
1292 flags |= PRINT_SOURCE_LINES_NOERROR;
1298 flags |= PRINT_SOURCE_LINES_NOERROR;
1304 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1306 const char *filename = symtab_to_filename_for_display (s);
1307 int len = strlen (filename) + 100;
1308 char *name = (char *) alloca (len);
1310 xsnprintf (name, len, "%d\t%s", line, filename);
1311 print_sys_errmsg (name, errno);
1315 uiout->field_int ("line", line);
1316 uiout->text ("\tin ");
1318 /* CLI expects only the "file" field. TUI expects only the
1319 "fullname" field (and TUI does break if "file" is printed).
1320 MI expects both fields. ui_source_list is set only for CLI,
1322 if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list))
1323 uiout->field_string ("file", symtab_to_filename_for_display (s));
1324 if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list))
1326 const char *s_fullname = symtab_to_fullname (s);
1327 char *local_fullname;
1329 /* ui_out_field_string may free S_FULLNAME by calling
1330 open_source_file for it again. See e.g.,
1331 tui_field_string->tui_show_source. */
1332 local_fullname = (char *) alloca (strlen (s_fullname) + 1);
1333 strcpy (local_fullname, s_fullname);
1335 uiout->field_string ("fullname", local_fullname);
1344 last_source_error = 0;
1346 if (s->line_charpos == 0)
1347 find_source_lines (s, desc.get ());
1349 if (line < 1 || line > s->nlines)
1350 error (_("Line number %d out of range; %s has %d lines."),
1351 line, symtab_to_filename_for_display (s), s->nlines);
1353 if (lseek (desc.get (), s->line_charpos[line - 1], 0) < 0)
1354 perror_with_name (symtab_to_filename_for_display (s));
1356 gdb_file_up stream = desc.to_file (FDOPEN_MODE);
1357 clearerr (stream.get ());
1359 while (nlines-- > 0)
1363 c = fgetc (stream.get ());
1366 last_line_listed = current_source_line;
1367 if (flags & PRINT_SOURCE_LINES_FILENAME)
1369 uiout->text (symtab_to_filename_for_display (s));
1372 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
1376 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1378 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
1385 /* Skip a \r character, but only before a \n. */
1386 int c1 = fgetc (stream.get ());
1389 printf_filtered ("^%c", c + 0100);
1391 ungetc (c1, stream.get ());
1395 xsnprintf (buf, sizeof (buf), "%c", c);
1399 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1403 /* Show source lines from the file of symtab S, starting with line
1404 number LINE and stopping before line number STOPLINE. If this is
1405 not the command line version, then the source is shown in the source
1406 window otherwise it is simply printed. */
1409 print_source_lines (struct symtab *s, int line, int stopline,
1410 print_source_lines_flags flags)
1412 print_source_lines_base (s, line, stopline, flags);
1415 /* Print info on range of pc's in a specified line. */
1418 info_line_command (const char *arg, int from_tty)
1420 CORE_ADDR start_pc, end_pc;
1422 std::vector<symtab_and_line> decoded_sals;
1423 symtab_and_line curr_sal;
1424 gdb::array_view<symtab_and_line> sals;
1428 curr_sal.symtab = current_source_symtab;
1429 curr_sal.pspace = current_program_space;
1430 if (last_line_listed != 0)
1431 curr_sal.line = last_line_listed;
1433 curr_sal.line = current_source_line;
1439 decoded_sals = decode_line_with_last_displayed (arg,
1440 DECODE_LINE_LIST_MODE);
1441 sals = decoded_sals;
1446 /* C++ More than one line may have been specified, as when the user
1447 specifies an overloaded function name. Print info on them all. */
1448 for (const auto &sal : sals)
1450 if (sal.pspace != current_program_space)
1453 if (sal.symtab == 0)
1455 struct gdbarch *gdbarch = get_current_arch ();
1457 printf_filtered (_("No line number information available"));
1460 /* This is useful for "info line *0x7f34". If we can't tell the
1461 user about a source line, at least let them have the symbolic
1463 printf_filtered (" for address ");
1465 print_address (gdbarch, sal.pc, gdb_stdout);
1468 printf_filtered (".");
1469 printf_filtered ("\n");
1471 else if (sal.line > 0
1472 && find_line_pc_range (sal, &start_pc, &end_pc))
1474 struct gdbarch *gdbarch
1475 = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
1477 if (start_pc == end_pc)
1479 printf_filtered ("Line %d of \"%s\"",
1481 symtab_to_filename_for_display (sal.symtab));
1483 printf_filtered (" is at address ");
1484 print_address (gdbarch, start_pc, gdb_stdout);
1486 printf_filtered (" but contains no code.\n");
1490 printf_filtered ("Line %d of \"%s\"",
1492 symtab_to_filename_for_display (sal.symtab));
1494 printf_filtered (" starts at address ");
1495 print_address (gdbarch, start_pc, gdb_stdout);
1497 printf_filtered (" and ends at ");
1498 print_address (gdbarch, end_pc, gdb_stdout);
1499 printf_filtered (".\n");
1502 /* x/i should display this line's code. */
1503 set_next_address (gdbarch, start_pc);
1505 /* Repeating "info line" should do the following line. */
1506 last_line_listed = sal.line + 1;
1508 /* If this is the only line, show the source code. If it could
1509 not find the file, don't do anything special. */
1510 if (annotation_level && sals.size () == 1)
1511 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1514 /* Is there any case in which we get here, and have an address
1515 which the user would want to see? If we have debugging symbols
1516 and no line numbers? */
1517 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
1518 sal.line, symtab_to_filename_for_display (sal.symtab));
1522 /* Commands to search the source file for a regexp. */
1524 /* Helper for forward_search_command/reverse_search_command. FORWARD
1525 indicates direction: true for forward, false for
1526 backward/reverse. */
1529 search_command_helper (const char *regex, int from_tty, bool forward)
1531 const char *msg = re_comp (regex);
1533 error (("%s"), msg);
1535 if (current_source_symtab == 0)
1536 select_source_symtab (0);
1538 scoped_fd desc = open_source_file (current_source_symtab);
1539 if (desc.get () < 0)
1540 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1542 if (current_source_symtab->line_charpos == 0)
1543 find_source_lines (current_source_symtab, desc.get ());
1546 ? last_line_listed + 1
1547 : last_line_listed - 1);
1549 if (line < 1 || line > current_source_symtab->nlines)
1550 error (_("Expression not found"));
1552 if (lseek (desc.get (), current_source_symtab->line_charpos[line - 1], 0)
1554 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1556 gdb_file_up stream = desc.to_file (FDOPEN_MODE);
1557 clearerr (stream.get ());
1559 gdb::def_vector<char> buf;
1566 int c = fgetc (stream.get ());
1573 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1575 /* Remove the \r, if any, at the end of the line, otherwise
1576 regular expressions that end with $ or \n won't work. */
1577 size_t sz = buf.size ();
1578 if (sz >= 2 && buf[sz - 2] == '\r')
1581 buf.resize (sz - 1);
1584 /* We now have a source line in buf, null terminate and match. */
1585 buf.push_back ('\0');
1586 if (re_exec (buf.data ()) > 0)
1589 print_source_lines (current_source_symtab, line, line + 1, 0);
1590 set_internalvar_integer (lookup_internalvar ("_"), line);
1591 current_source_line = std::max (line - lines_to_list / 2, 1);
1600 if (fseek (stream.get (),
1601 current_source_symtab->line_charpos[line - 1], 0) < 0)
1603 const char *filename
1604 = symtab_to_filename_for_display (current_source_symtab);
1605 perror_with_name (filename);
1610 printf_filtered (_("Expression not found\n"));
1614 forward_search_command (const char *regex, int from_tty)
1616 search_command_helper (regex, from_tty, true);
1620 reverse_search_command (const char *regex, int from_tty)
1622 search_command_helper (regex, from_tty, false);
1625 /* If the last character of PATH is a directory separator, then strip it. */
1628 strip_trailing_directory_separator (char *path)
1630 const int last = strlen (path) - 1;
1633 return; /* No stripping is needed if PATH is the empty string. */
1635 if (IS_DIR_SEPARATOR (path[last]))
1639 /* Return the path substitution rule that matches FROM.
1640 Return NULL if no rule matches. */
1642 static struct substitute_path_rule *
1643 find_substitute_path_rule (const char *from)
1645 struct substitute_path_rule *rule = substitute_path_rules;
1647 while (rule != NULL)
1649 if (FILENAME_CMP (rule->from, from) == 0)
1657 /* Add a new substitute-path rule at the end of the current list of rules.
1658 The new rule will replace FROM into TO. */
1661 add_substitute_path_rule (char *from, char *to)
1663 struct substitute_path_rule *rule;
1664 struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule);
1666 new_rule->from = xstrdup (from);
1667 new_rule->to = xstrdup (to);
1668 new_rule->next = NULL;
1670 /* If the list of rules are empty, then insert the new rule
1671 at the head of the list. */
1673 if (substitute_path_rules == NULL)
1675 substitute_path_rules = new_rule;
1679 /* Otherwise, skip to the last rule in our list and then append
1682 rule = substitute_path_rules;
1683 while (rule->next != NULL)
1686 rule->next = new_rule;
1689 /* Remove the given source path substitution rule from the current list
1690 of rules. The memory allocated for that rule is also deallocated. */
1693 delete_substitute_path_rule (struct substitute_path_rule *rule)
1695 if (rule == substitute_path_rules)
1696 substitute_path_rules = rule->next;
1699 struct substitute_path_rule *prev = substitute_path_rules;
1701 while (prev != NULL && prev->next != rule)
1704 gdb_assert (prev != NULL);
1706 prev->next = rule->next;
1714 /* Implement the "show substitute-path" command. */
1717 show_substitute_path_command (const char *args, int from_tty)
1719 struct substitute_path_rule *rule = substitute_path_rules;
1722 gdb_argv argv (args);
1724 /* We expect zero or one argument. */
1726 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1727 error (_("Too many arguments in command"));
1729 if (argv != NULL && argv[0] != NULL)
1732 /* Print the substitution rules. */
1736 (_("Source path substitution rule matching `%s':\n"), from);
1738 printf_filtered (_("List of all source path substitution rules:\n"));
1740 while (rule != NULL)
1742 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
1743 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1748 /* Implement the "unset substitute-path" command. */
1751 unset_substitute_path_command (const char *args, int from_tty)
1753 struct substitute_path_rule *rule = substitute_path_rules;
1754 gdb_argv argv (args);
1758 /* This function takes either 0 or 1 argument. */
1760 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1761 error (_("Incorrect usage, too many arguments in command"));
1763 if (argv != NULL && argv[0] != NULL)
1766 /* If the user asked for all the rules to be deleted, ask him
1767 to confirm and give him a chance to abort before the action
1771 && !query (_("Delete all source path substitution rules? ")))
1772 error (_("Canceled"));
1774 /* Delete the rule matching the argument. No argument means that
1775 all rules should be deleted. */
1777 while (rule != NULL)
1779 struct substitute_path_rule *next = rule->next;
1781 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1783 delete_substitute_path_rule (rule);
1790 /* If the user asked for a specific rule to be deleted but
1791 we could not find it, then report an error. */
1793 if (from != NULL && !rule_found)
1794 error (_("No substitution rule defined for `%s'"), from);
1796 forget_cached_source_info ();
1799 /* Add a new source path substitution rule. */
1802 set_substitute_path_command (const char *args, int from_tty)
1804 struct substitute_path_rule *rule;
1806 gdb_argv argv (args);
1808 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1809 error (_("Incorrect usage, too few arguments in command"));
1811 if (argv[2] != NULL)
1812 error (_("Incorrect usage, too many arguments in command"));
1814 if (*(argv[0]) == '\0')
1815 error (_("First argument must be at least one character long"));
1817 /* Strip any trailing directory separator character in either FROM
1818 or TO. The substitution rule already implicitly contains them. */
1819 strip_trailing_directory_separator (argv[0]);
1820 strip_trailing_directory_separator (argv[1]);
1822 /* If a rule with the same "from" was previously defined, then
1823 delete it. This new rule replaces it. */
1825 rule = find_substitute_path_rule (argv[0]);
1827 delete_substitute_path_rule (rule);
1829 /* Insert the new substitution rule. */
1831 add_substitute_path_rule (argv[0], argv[1]);
1832 forget_cached_source_info ();
1837 _initialize_source (void)
1839 struct cmd_list_element *c;
1841 current_source_symtab = 0;
1842 init_source_path ();
1844 /* The intention is to use POSIX Basic Regular Expressions.
1845 Always use the GNU regex routine for consistency across all hosts.
1846 Our current GNU regex.c does not have all the POSIX features, so this is
1847 just an approximation. */
1848 re_set_syntax (RE_SYNTAX_GREP);
1850 c = add_cmd ("directory", class_files, directory_command, _("\
1851 Add directory DIR to beginning of search path for source files.\n\
1852 Forget cached info on source file locations and line positions.\n\
1853 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1854 directory in which the source file was compiled into object code.\n\
1855 With no argument, reset the search path to $cdir:$cwd, the default."),
1859 add_com_alias ("use", "directory", class_files, 0);
1861 set_cmd_completer (c, filename_completer);
1863 add_setshow_optional_filename_cmd ("directories",
1867 Set the search path for finding source files."),
1869 Show the search path for finding source files."),
1871 $cwd in the path means the current working directory.\n\
1872 $cdir in the path means the compilation directory of the source file.\n\
1873 GDB ensures the search path always ends with $cdir:$cwd by\n\
1874 appending these directories if necessary.\n\
1875 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
1876 set_directories_command,
1877 show_directories_command,
1878 &setlist, &showlist);
1880 add_info ("source", info_source_command,
1881 _("Information about the current source file."));
1883 add_info ("line", info_line_command, _("\
1884 Core addresses of the code for a source line.\n\
1885 Line can be specified as\n\
1886 LINENUM, to list around that line in current file,\n\
1887 FILE:LINENUM, to list around that line in that file,\n\
1888 FUNCTION, to list around beginning of that function,\n\
1889 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1890 Default is to describe the last source line that was listed.\n\n\
1891 This sets the default address for \"x\" to the line's first instruction\n\
1892 so that \"x/i\" suffices to start examining the machine code.\n\
1893 The address is also stored as the value of \"$_\"."));
1895 add_com ("forward-search", class_files, forward_search_command, _("\
1896 Search for regular expression (see regex(3)) from last line listed.\n\
1897 The matching line number is also stored as the value of \"$_\"."));
1898 add_com_alias ("search", "forward-search", class_files, 0);
1899 add_com_alias ("fo", "forward-search", class_files, 1);
1901 add_com ("reverse-search", class_files, reverse_search_command, _("\
1902 Search backward for regular expression (see regex(3)) from last line listed.\n\
1903 The matching line number is also stored as the value of \"$_\"."));
1904 add_com_alias ("rev", "reverse-search", class_files, 1);
1906 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
1907 Set number of source lines gdb will list by default."), _("\
1908 Show number of source lines gdb will list by default."), _("\
1909 Use this to choose how many source lines the \"list\" displays (unless\n\
1910 the \"list\" argument explicitly specifies some other number).\n\
1911 A value of \"unlimited\", or zero, means there's no limit."),
1914 &setlist, &showlist);
1916 add_cmd ("substitute-path", class_files, set_substitute_path_command,
1918 Usage: set substitute-path FROM TO\n\
1919 Add a substitution rule replacing FROM into TO in source file names.\n\
1920 If a substitution rule was previously set for FROM, the old rule\n\
1921 is replaced by the new one."),
1924 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
1926 Usage: unset substitute-path [FROM]\n\
1927 Delete the rule for substituting FROM in source file names. If FROM\n\
1928 is not specified, all substituting rules are deleted.\n\
1929 If the debugger cannot find a rule for FROM, it will display a warning."),
1932 add_cmd ("substitute-path", class_files, show_substitute_path_command,
1934 Usage: show substitute-path [FROM]\n\
1935 Print the rule for substituting FROM in source file names. If FROM\n\
1936 is not specified, print all substitution rules."),
1939 add_setshow_enum_cmd ("filename-display", class_files,
1940 filename_display_kind_names,
1941 &filename_display_string, _("\
1942 Set how to display filenames."), _("\
1943 Show how to display filenames."), _("\
1944 filename-display can be:\n\
1945 basename - display only basename of a filename\n\
1946 relative - display a filename relative to the compilation directory\n\
1947 absolute - display an absolute filename\n\
1948 By default, relative filenames are displayed."),
1950 show_filename_display_string,
1951 &setlist, &showlist);