1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986-2017 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>
35 #include "gdb_regex.h"
41 #include "filenames.h" /* for DOSish file names */
42 #include "completer.h"
44 #include "readline/readline.h"
45 #include "common/enum-flags.h"
48 #define OPEN_MODE (O_RDONLY | O_BINARY)
49 #define FDOPEN_MODE FOPEN_RB
51 /* Prototypes for exported functions. */
53 void _initialize_source (void);
55 /* Prototypes for local functions. */
57 static int get_filename_and_charpos (struct symtab *, char **);
59 static void reverse_search_command (char *, int);
61 static void forward_search_command (char *, int);
63 static void info_line_command (char *, int);
65 static void info_source_command (char *, int);
67 /* Path of directories to search for source files.
68 Same format as the PATH environment variable's value. */
72 /* Support for source path substitution commands. */
74 struct substitute_path_rule
78 struct substitute_path_rule *next;
81 static struct substitute_path_rule *substitute_path_rules = NULL;
83 /* Symtab of default file for listing lines of. */
85 static struct symtab *current_source_symtab;
87 /* Default next line to list. */
89 static int current_source_line;
91 static struct program_space *current_source_pspace;
93 /* Default number of lines to print with commands like "list".
94 This is based on guessing how many long (i.e. more than chars_per_line
95 characters) lines there will be. To be completely correct, "list"
96 and friends should be rewritten to count characters and see where
97 things are wrapping, but that would be a fair amount of work. */
99 static int lines_to_list = 10;
101 show_lines_to_list (struct ui_file *file, int from_tty,
102 struct cmd_list_element *c, const char *value)
104 fprintf_filtered (file,
105 _("Number of source lines gdb "
106 "will list by default is %s.\n"),
110 /* Possible values of 'set filename-display'. */
111 static const char filename_display_basename[] = "basename";
112 static const char filename_display_relative[] = "relative";
113 static const char filename_display_absolute[] = "absolute";
115 static const char *const filename_display_kind_names[] = {
116 filename_display_basename,
117 filename_display_relative,
118 filename_display_absolute,
122 static const char *filename_display_string = filename_display_relative;
125 show_filename_display_string (struct ui_file *file, int from_tty,
126 struct cmd_list_element *c, const char *value)
128 fprintf_filtered (file, _("Filenames are displayed as \"%s\".\n"), value);
131 /* Line number of last line printed. Default for various commands.
132 current_source_line is usually, but not always, the same as this. */
134 static int last_line_listed;
136 /* First line number listed by last listing command. If 0, then no
137 source lines have yet been listed since the last time the current
138 source line was changed. */
140 static int first_line_listed;
142 /* Saves the name of the last source file visited and a possible error code.
143 Used to prevent repeating annoying "No such file or directories" msgs. */
145 static struct symtab *last_source_visited = NULL;
146 static int last_source_error = 0;
148 /* Return the first line listed by print_source_lines.
149 Used by command interpreters to request listing from
153 get_first_line_listed (void)
155 return first_line_listed;
158 /* Clear line listed range. This makes the next "list" center the
159 printed source lines around the current source line. */
162 clear_lines_listed_range (void)
164 first_line_listed = 0;
165 last_line_listed = 0;
168 /* Return the default number of lines to print with commands like the
169 cli "list". The caller of print_source_lines must use this to
170 calculate the end line and use it in the call to print_source_lines
171 as it does not automatically use this value. */
174 get_lines_to_list (void)
176 return lines_to_list;
179 /* Return the current source file for listing and next line to list.
180 NOTE: The returned sal pc and end fields are not valid. */
182 struct symtab_and_line
183 get_current_source_symtab_and_line (void)
185 struct symtab_and_line cursal = { 0 };
187 cursal.pspace = current_source_pspace;
188 cursal.symtab = current_source_symtab;
189 cursal.line = current_source_line;
196 /* If the current source file for listing is not set, try and get a default.
197 Usually called before get_current_source_symtab_and_line() is called.
198 It may err out if a default cannot be determined.
199 We must be cautious about where it is called, as it can recurse as the
200 process of determining a new default may call the caller!
201 Use get_current_source_symtab_and_line only to get whatever
202 we have without erroring out or trying to get a default. */
205 set_default_source_symtab_and_line (void)
207 if (!have_full_symbols () && !have_partial_symbols ())
208 error (_("No symbol table is loaded. Use the \"file\" command."));
210 /* Pull in a current source symtab if necessary. */
211 if (current_source_symtab == 0)
212 select_source_symtab (0);
215 /* Return the current default file for listing and next line to list
216 (the returned sal pc and end fields are not valid.)
217 and set the current default to whatever is in SAL.
218 NOTE: The returned sal pc and end fields are not valid. */
220 struct symtab_and_line
221 set_current_source_symtab_and_line (const struct symtab_and_line *sal)
223 struct symtab_and_line cursal = { 0 };
225 cursal.pspace = current_source_pspace;
226 cursal.symtab = current_source_symtab;
227 cursal.line = current_source_line;
231 current_source_pspace = sal->pspace;
232 current_source_symtab = sal->symtab;
233 current_source_line = sal->line;
235 /* Force the next "list" to center around the current line. */
236 clear_lines_listed_range ();
241 /* Reset any information stored about a default file and line to print. */
244 clear_current_source_symtab_and_line (void)
246 current_source_symtab = 0;
247 current_source_line = 0;
250 /* Set the source file default for the "list" command to be S.
252 If S is NULL, and we don't have a default, find one. This
253 should only be called when the user actually tries to use the
254 default, since we produce an error if we can't find a reasonable
255 default. Also, since this can cause symbols to be read, doing it
256 before we need to would make things slower than necessary. */
259 select_source_symtab (struct symtab *s)
262 struct compunit_symtab *cu;
266 current_source_symtab = s;
267 current_source_line = 1;
268 current_source_pspace = SYMTAB_PSPACE (s);
272 if (current_source_symtab)
275 /* Make the default place to list be the function `main'
277 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0).symbol)
279 std::vector<symtab_and_line> sals
280 = decode_line_with_current_source (main_name (),
281 DECODE_LINE_FUNFIRSTLINE);
282 const symtab_and_line &sal = sals[0];
283 current_source_pspace = sal.pspace;
284 current_source_symtab = sal.symtab;
285 current_source_line = std::max (sal.line - (lines_to_list - 1), 1);
286 if (current_source_symtab)
290 /* Alright; find the last file in the symtab list (ignoring .h's
291 and namespace symtabs). */
293 current_source_line = 1;
295 ALL_FILETABS (ofp, cu, s)
297 const char *name = s->filename;
298 int len = strlen (name);
300 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
301 || strcmp (name, "<<C++-namespaces>>") == 0)))
303 current_source_pspace = current_program_space;
304 current_source_symtab = s;
308 if (current_source_symtab)
314 s = ofp->sf->qf->find_last_source_symtab (ofp);
316 current_source_symtab = s;
318 if (current_source_symtab)
321 error (_("Can't find a default source file"));
324 /* Handler for "set directories path-list" command.
325 "set dir mumble" doesn't prepend paths, it resets the entire
326 path list. The theory is that set(show(dir)) should be a no-op. */
329 set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
331 /* This is the value that was set.
332 It needs to be processed to maintain $cdir:$cwd and remove dups. */
333 char *set_path = source_path;
335 /* We preserve the invariant that $cdir:$cwd begins life at the end of
336 the list by calling init_source_path. If they appear earlier in
337 SET_PATH then mod_path will move them appropriately.
338 mod_path will also remove duplicates. */
340 if (*set_path != '\0')
341 mod_path (set_path, &source_path);
346 /* Print the list of source directories.
347 This is used by the "ld" command, so it has the signature of a command
351 show_directories_1 (char *ignore, int from_tty)
353 puts_filtered ("Source directories searched: ");
354 puts_filtered (source_path);
355 puts_filtered ("\n");
358 /* Handler for "show directories" command. */
361 show_directories_command (struct ui_file *file, int from_tty,
362 struct cmd_list_element *c, const char *value)
364 show_directories_1 (NULL, from_tty);
367 /* Forget line positions and file names for the symtabs in a
368 particular objfile. */
371 forget_cached_source_info_for_objfile (struct objfile *objfile)
373 struct compunit_symtab *cu;
376 ALL_OBJFILE_FILETABS (objfile, cu, s)
378 if (s->line_charpos != NULL)
380 xfree (s->line_charpos);
381 s->line_charpos = NULL;
383 if (s->fullname != NULL)
391 objfile->sf->qf->forget_cached_source_info (objfile);
394 /* Forget what we learned about line positions in source files, and
395 which directories contain them; must check again now since files
396 may be found in a different directory now. */
399 forget_cached_source_info (void)
401 struct program_space *pspace;
402 struct objfile *objfile;
405 ALL_PSPACE_OBJFILES (pspace, objfile)
407 forget_cached_source_info_for_objfile (objfile);
410 last_source_visited = NULL;
414 init_source_path (void)
418 xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR);
419 source_path = xstrdup (buf);
420 forget_cached_source_info ();
423 /* Add zero or more directories to the front of the source path. */
426 directory_command (char *dirname, int from_tty)
429 /* FIXME, this goes to "delete dir"... */
432 if (!from_tty || query (_("Reinitialize source path to empty? ")))
440 mod_path (dirname, &source_path);
441 forget_cached_source_info ();
444 show_directories_1 ((char *) 0, from_tty);
447 /* Add a path given with the -d command line switch.
448 This will not be quoted so we must not treat spaces as separators. */
451 directory_switch (char *dirname, int from_tty)
453 add_path (dirname, &source_path, 0);
456 /* Add zero or more directories to the front of an arbitrary path. */
459 mod_path (char *dirname, char **which_path)
461 add_path (dirname, which_path, 1);
464 /* Workhorse of mod_path. Takes an extra argument to determine
465 if dirname should be parsed for separators that indicate multiple
466 directories. This allows for interfaces that pre-parse the dirname
467 and allow specification of traditional separator characters such
471 add_path (char *dirname, char **which_path, int parse_separators)
473 char *old = *which_path;
475 VEC (char_ptr) *dir_vec = NULL;
476 struct cleanup *back_to;
483 if (parse_separators)
485 /* This will properly parse the space and tab separators
486 and any quotes that may exist. */
487 gdb_argv argv (dirname);
489 for (char *arg : argv)
490 dirnames_to_char_ptr_vec_append (&dir_vec, arg);
493 VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname));
494 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
496 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix)
501 /* Spaces and tabs will have been removed by buildargv().
502 NAME is the start of the directory.
503 P is the '\0' following the end. */
504 p = name + strlen (name);
506 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
507 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
508 /* On MS-DOS and MS-Windows, h:\ is different from h: */
509 && !(p == name + 3 && name[1] == ':') /* "d:/" */
511 && IS_DIR_SEPARATOR (p[-1]))
512 /* Sigh. "foo/" => "foo" */
516 while (p > name && p[-1] == '.')
520 /* "." => getwd (). */
521 name = current_directory;
524 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
534 /* "...foo/." => "...foo". */
545 name = tilde_expand (name);
546 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
547 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
548 name = concat (name, ".", (char *)NULL);
550 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
551 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
553 name = savestring (name, p - name);
554 make_cleanup (xfree, name);
556 /* Unless it's a variable, check existence. */
559 /* These are warnings, not errors, since we don't want a
560 non-existent directory in a .gdbinit file to stop processing
561 of the .gdbinit file.
563 Whether they get added to the path is more debatable. Current
564 answer is yes, in case the user wants to go make the directory
565 or whatever. If the directory continues to not exist/not be
566 a directory/etc, then having them in the path should be
568 if (stat (name, &st) < 0)
570 int save_errno = errno;
572 fprintf_unfiltered (gdb_stderr, "Warning: ");
573 print_sys_errmsg (name, save_errno);
575 else if ((st.st_mode & S_IFMT) != S_IFDIR)
576 warning (_("%s is not a directory."), name);
581 unsigned int len = strlen (name);
587 /* FIXME: we should use realpath() or its work-alike
588 before comparing. Then all the code above which
589 removes excess slashes and dots could simply go away. */
590 if (!filename_ncmp (p, name, len)
591 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
593 /* Found it in the search path, remove old copy. */
596 /* Back over leading separator. */
599 if (prefix > p - *which_path)
601 /* Same dir twice in one cmd. */
604 /* Copy from next '\0' or ':'. */
605 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
607 p = strchr (p, DIRNAME_SEPARATOR);
614 tinybuf[0] = DIRNAME_SEPARATOR;
617 /* If we have already tacked on a name(s) in this command,
618 be sure they stay on the front as we tack on some
626 temp = concat (old, tinybuf, name, (char *)NULL);
628 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
629 prefix = strlen (temp);
634 *which_path = concat (name, (old[0] ? tinybuf : old),
636 prefix = strlen (name);
645 do_cleanups (back_to);
650 info_source_command (char *ignore, int from_tty)
652 struct symtab *s = current_source_symtab;
653 struct compunit_symtab *cust;
657 printf_filtered (_("No current source file.\n"));
661 cust = SYMTAB_COMPUNIT (s);
662 printf_filtered (_("Current source file is %s\n"), s->filename);
663 if (SYMTAB_DIRNAME (s) != NULL)
664 printf_filtered (_("Compilation directory is %s\n"), SYMTAB_DIRNAME (s));
666 printf_filtered (_("Located in %s\n"), s->fullname);
668 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
669 s->nlines == 1 ? "" : "s");
671 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
672 printf_filtered (_("Producer is %s.\n"),
673 COMPUNIT_PRODUCER (cust) != NULL
674 ? COMPUNIT_PRODUCER (cust) : _("unknown"));
675 printf_filtered (_("Compiled with %s debugging format.\n"),
676 COMPUNIT_DEBUGFORMAT (cust));
677 printf_filtered (_("%s preprocessor macro info.\n"),
678 COMPUNIT_MACRO_TABLE (cust) != NULL
679 ? "Includes" : "Does not include");
683 /* Return True if the file NAME exists and is a regular file.
684 If the result is false then *ERRNO_PTR is set to a useful value assuming
685 we're expecting a regular file. */
688 is_regular_file (const char *name, int *errno_ptr)
691 const int status = stat (name, &st);
693 /* Stat should never fail except when the file does not exist.
694 If stat fails, analyze the source of error and return True
695 unless the file does not exist, to avoid returning false results
696 on obscure systems where stat does not work as expected. */
706 if (S_ISREG (st.st_mode))
709 if (S_ISDIR (st.st_mode))
716 /* Open a file named STRING, searching path PATH (dir names sep by some char)
717 using mode MODE in the calls to open. You cannot use this function to
718 create files (O_CREAT).
720 OPTS specifies the function behaviour in specific cases.
722 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
723 (ie pretend the first element of PATH is "."). This also indicates
724 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
725 disables searching of the path (this is so that "exec-file ./foo" or
726 "symbol-file ./foo" insures that you get that particular version of
727 foo or an error message).
729 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
730 searched in path (we usually want this for source files but not for
733 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
734 the actual file opened (this string will always start with a "/"). We
735 have to take special pains to avoid doubling the "/" between the directory
736 and the file, sigh! Emacs gets confuzzed by this when we print the
739 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
740 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
741 filename starting with "/". If FILENAME_OPENED is NULL this option has no
744 If a file is found, return the descriptor.
745 Otherwise, return -1, with errno set for the last name we tried to open. */
747 /* >>>> This should only allow files of certain types,
748 >>>> eg executable, non-directory. */
750 openp (const char *path, int opts, const char *string,
751 int mode, char **filename_opened)
756 VEC (char_ptr) *dir_vec;
757 struct cleanup *back_to;
760 /* The errno set for the last name we tried to open (and
764 /* The open syscall MODE parameter is not specified. */
765 gdb_assert ((mode & O_CREAT) == 0);
766 gdb_assert (string != NULL);
768 /* A file with an empty name cannot possibly exist. Report a failure
769 without further checking.
771 This is an optimization which also defends us against buggy
772 implementations of the "stat" function. For instance, we have
773 noticed that a MinGW debugger built on Windows XP 32bits crashes
774 when the debugger is started with an empty argument. */
775 if (string[0] == '\0')
786 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
788 int i, reg_file_errno;
790 if (is_regular_file (string, ®_file_errno))
792 filename = (char *) alloca (strlen (string) + 1);
793 strcpy (filename, string);
794 fd = gdb_open_cloexec (filename, mode, 0);
803 last_errno = reg_file_errno;
806 if (!(opts & OPF_SEARCH_IN_PATH))
807 for (i = 0; string[i]; i++)
808 if (IS_DIR_SEPARATOR (string[i]))
812 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
813 if (HAS_DRIVE_SPEC (string))
814 string = STRIP_DRIVE_SPEC (string);
816 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
817 while (IS_DIR_SEPARATOR(string[0]))
821 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
824 alloclen = strlen (path) + strlen (string) + 2;
825 filename = (char *) alloca (alloclen);
829 dir_vec = dirnames_to_char_ptr_vec (path);
830 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
832 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix)
834 size_t len = strlen (dir);
837 if (strcmp (dir, "$cwd") == 0)
839 /* Name is $cwd -- insert current directory name instead. */
842 /* First, realloc the filename buffer if too short. */
843 len = strlen (current_directory);
844 newlen = len + strlen (string) + 2;
845 if (newlen > alloclen)
848 filename = (char *) alloca (alloclen);
850 strcpy (filename, current_directory);
852 else if (strchr(dir, '~'))
854 /* See whether we need to expand the tilde. */
857 gdb::unique_xmalloc_ptr<char> tilde_expanded (tilde_expand (dir));
859 /* First, realloc the filename buffer if too short. */
860 len = strlen (tilde_expanded.get ());
861 newlen = len + strlen (string) + 2;
862 if (newlen > alloclen)
865 filename = (char *) alloca (alloclen);
867 strcpy (filename, tilde_expanded.get ());
871 /* Normal file name in path -- just use it. */
872 strcpy (filename, dir);
874 /* Don't search $cdir. It's also a magic path like $cwd, but we
875 don't have enough information to expand it. The user *could*
876 have an actual directory named '$cdir' but handling that would
877 be confusing, it would mean different things in different
878 contexts. If the user really has '$cdir' one can use './$cdir'.
879 We can get $cdir when loading scripts. When loading source files
880 $cdir must have already been expanded to the correct value. */
881 if (strcmp (dir, "$cdir") == 0)
885 /* Remove trailing slashes. */
886 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
889 strcat (filename + len, SLASH_STRING);
890 strcat (filename, string);
892 if (is_regular_file (filename, ®_file_errno))
894 fd = gdb_open_cloexec (filename, mode, 0);
900 last_errno = reg_file_errno;
903 do_cleanups (back_to);
908 /* If a file was opened, canonicalize its filename. */
910 *filename_opened = NULL;
911 else if ((opts & OPF_RETURN_REALPATH) != 0)
912 *filename_opened = gdb_realpath (filename).release ();
914 *filename_opened = gdb_abspath (filename).release ();
922 /* This is essentially a convenience, for clients that want the behaviour
923 of openp, using source_path, but that really don't want the file to be
924 opened but want instead just to know what the full pathname is (as
925 qualified against source_path).
927 The current working directory is searched first.
929 If the file was found, this function returns 1, and FULL_PATHNAME is
930 set to the fully-qualified pathname.
932 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
934 source_full_path_of (const char *filename, char **full_pathname)
938 fd = openp (source_path,
939 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
940 filename, O_RDONLY, full_pathname);
943 *full_pathname = NULL;
951 /* Return non-zero if RULE matches PATH, that is if the rule can be
955 substitute_path_rule_matches (const struct substitute_path_rule *rule,
958 const int from_len = strlen (rule->from);
959 const int path_len = strlen (path);
961 if (path_len < from_len)
964 /* The substitution rules are anchored at the start of the path,
965 so the path should start with rule->from. */
967 if (filename_ncmp (path, rule->from, from_len) != 0)
970 /* Make sure that the region in the path that matches the substitution
971 rule is immediately followed by a directory separator (or the end of
972 string character). */
974 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
980 /* Find the substitute-path rule that applies to PATH and return it.
981 Return NULL if no rule applies. */
983 static struct substitute_path_rule *
984 get_substitute_path_rule (const char *path)
986 struct substitute_path_rule *rule = substitute_path_rules;
988 while (rule != NULL && !substitute_path_rule_matches (rule, path))
994 /* If the user specified a source path substitution rule that applies
995 to PATH, then apply it and return the new path.
997 Return NULL if no substitution rule was specified by the user,
998 or if no rule applied to the given PATH. */
1000 gdb::unique_xmalloc_ptr<char>
1001 rewrite_source_path (const char *path)
1003 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
1010 from_len = strlen (rule->from);
1012 /* Compute the rewritten path and return it. */
1015 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
1016 strcpy (new_path, rule->to);
1017 strcat (new_path, path + from_len);
1019 return gdb::unique_xmalloc_ptr<char> (new_path);
1023 find_and_open_source (const char *filename,
1024 const char *dirname,
1027 char *path = source_path;
1031 /* Quick way out if we already know its full name. */
1035 /* The user may have requested that source paths be rewritten
1036 according to substitution rules he provided. If a substitution
1037 rule applies to this path, then apply it. */
1038 char *rewritten_fullname = rewrite_source_path (*fullname).release ();
1040 if (rewritten_fullname != NULL)
1043 *fullname = rewritten_fullname;
1046 result = gdb_open_cloexec (*fullname, OPEN_MODE, 0);
1049 char *lpath = gdb_realpath (*fullname).release ();
1056 /* Didn't work -- free old one, try again. */
1061 gdb::unique_xmalloc_ptr<char> rewritten_dirname;
1062 if (dirname != NULL)
1064 /* If necessary, rewrite the compilation directory name according
1065 to the source path substitution rules specified by the user. */
1067 rewritten_dirname = rewrite_source_path (dirname);
1069 if (rewritten_dirname != NULL)
1070 dirname = rewritten_dirname.get ();
1072 /* Replace a path entry of $cdir with the compilation directory
1075 /* We cast strstr's result in case an ANSIhole has made it const,
1076 which produces a "required warning" when assigned to a nonconst. */
1077 p = (char *) strstr (source_path, "$cdir");
1078 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1079 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1084 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
1085 len = p - source_path;
1086 strncpy (path, source_path, len); /* Before $cdir */
1087 strcpy (path + len, dirname); /* new stuff */
1088 strcat (path + len, source_path + len + cdir_len); /* After
1093 gdb::unique_xmalloc_ptr<char> rewritten_filename;
1094 if (IS_ABSOLUTE_PATH (filename))
1096 /* If filename is absolute path, try the source path
1097 substitution on it. */
1098 rewritten_filename = rewrite_source_path (filename);
1100 if (rewritten_filename != NULL)
1101 filename = rewritten_filename.get ();
1104 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1105 OPEN_MODE, fullname);
1108 /* Didn't work. Try using just the basename. */
1109 p = lbasename (filename);
1111 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1112 OPEN_MODE, fullname);
1118 /* Open a source file given a symtab S. Returns a file descriptor or
1119 negative number for error.
1121 This function is a convience function to find_and_open_source. */
1124 open_source_file (struct symtab *s)
1129 return find_and_open_source (s->filename, SYMTAB_DIRNAME (s), &s->fullname);
1132 /* Finds the fullname that a symtab represents.
1134 This functions finds the fullname and saves it in s->fullname.
1135 It will also return the value.
1137 If this function fails to find the file that this symtab represents,
1138 the expected fullname is used. Therefore the files does not have to
1142 symtab_to_fullname (struct symtab *s)
1144 /* Use cached copy if we have it.
1145 We rely on forget_cached_source_info being called appropriately
1146 to handle cases like the file being moved. */
1147 if (s->fullname == NULL)
1149 int fd = find_and_open_source (s->filename, SYMTAB_DIRNAME (s),
1156 gdb::unique_xmalloc_ptr<char> fullname;
1158 /* rewrite_source_path would be applied by find_and_open_source, we
1159 should report the pathname where GDB tried to find the file. */
1161 if (SYMTAB_DIRNAME (s) == NULL || IS_ABSOLUTE_PATH (s->filename))
1162 fullname.reset (xstrdup (s->filename));
1164 fullname.reset (concat (SYMTAB_DIRNAME (s), SLASH_STRING,
1165 s->filename, (char *) NULL));
1167 s->fullname = rewrite_source_path (fullname.get ()).release ();
1168 if (s->fullname == NULL)
1169 s->fullname = fullname.release ();
1176 /* See commentary in source.h. */
1179 symtab_to_filename_for_display (struct symtab *symtab)
1181 if (filename_display_string == filename_display_basename)
1182 return lbasename (symtab->filename);
1183 else if (filename_display_string == filename_display_absolute)
1184 return symtab_to_fullname (symtab);
1185 else if (filename_display_string == filename_display_relative)
1186 return symtab->filename;
1188 internal_error (__FILE__, __LINE__, _("invalid filename_display_string"));
1191 /* Create and initialize the table S->line_charpos that records
1192 the positions of the lines in the source file, which is assumed
1193 to be open on descriptor DESC.
1194 All set S->nlines to the number of such lines. */
1197 find_source_lines (struct symtab *s, int desc)
1200 char *data, *p, *end;
1202 int lines_allocated = 1000;
1208 line_charpos = XNEWVEC (int, lines_allocated);
1209 if (fstat (desc, &st) < 0)
1210 perror_with_name (symtab_to_filename_for_display (s));
1212 if (SYMTAB_OBJFILE (s) != NULL && SYMTAB_OBJFILE (s)->obfd != NULL)
1213 mtime = SYMTAB_OBJFILE (s)->mtime;
1215 mtime = exec_bfd_mtime;
1217 if (mtime && mtime < st.st_mtime)
1218 warning (_("Source file is more recent than executable."));
1221 struct cleanup *old_cleanups;
1223 /* st_size might be a large type, but we only support source files whose
1224 size fits in an int. */
1225 size = (int) st.st_size;
1227 /* Use malloc, not alloca, because this may be pretty large, and we may
1228 run into various kinds of limits on stack size. */
1229 data = (char *) xmalloc (size);
1230 old_cleanups = make_cleanup (xfree, data);
1232 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1233 size = myread (desc, data, size);
1235 perror_with_name (symtab_to_filename_for_display (s));
1238 line_charpos[0] = 0;
1243 /* A newline at the end does not start a new line. */
1246 if (nlines == lines_allocated)
1248 lines_allocated *= 2;
1250 (int *) xrealloc ((char *) line_charpos,
1251 sizeof (int) * lines_allocated);
1253 line_charpos[nlines++] = p - data;
1256 do_cleanups (old_cleanups);
1261 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
1267 /* Get full pathname and line number positions for a symtab.
1268 Return nonzero if line numbers may have changed.
1269 Set *FULLNAME to actual name of the file as found by `openp',
1270 or to 0 if the file is not found. */
1273 get_filename_and_charpos (struct symtab *s, char **fullname)
1275 int desc, linenums_changed = 0;
1276 struct cleanup *cleanups;
1278 desc = open_source_file (s);
1285 cleanups = make_cleanup_close (desc);
1287 *fullname = s->fullname;
1288 if (s->line_charpos == 0)
1289 linenums_changed = 1;
1290 if (linenums_changed)
1291 find_source_lines (s, desc);
1292 do_cleanups (cleanups);
1293 return linenums_changed;
1296 /* Print text describing the full name of the source file S
1297 and the line number LINE and its corresponding character position.
1298 The text starts with two Ctrl-z so that the Emacs-GDB interface
1301 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1303 Return 1 if successful, 0 if could not find the file. */
1306 identify_source_line (struct symtab *s, int line, int mid_statement,
1309 if (s->line_charpos == 0)
1310 get_filename_and_charpos (s, (char **) NULL);
1311 if (s->fullname == 0)
1313 if (line > s->nlines)
1314 /* Don't index off the end of the line_charpos array. */
1316 annotate_source (s->fullname, line, s->line_charpos[line - 1],
1317 mid_statement, get_objfile_arch (SYMTAB_OBJFILE (s)), pc);
1319 current_source_line = line;
1320 current_source_symtab = s;
1321 clear_lines_listed_range ();
1326 /* Print source lines from the file of symtab S,
1327 starting with line number LINE and stopping before line number STOPLINE. */
1330 print_source_lines_base (struct symtab *s, int line, int stopline,
1331 print_source_lines_flags flags)
1336 int nlines = stopline - line;
1337 struct ui_out *uiout = current_uiout;
1339 /* Regardless of whether we can open the file, set current_source_symtab. */
1340 current_source_symtab = s;
1341 current_source_line = line;
1342 first_line_listed = line;
1344 /* If printing of source lines is disabled, just print file and line
1346 if (uiout->test_flags (ui_source_list))
1348 /* Only prints "No such file or directory" once. */
1349 if ((s != last_source_visited) || (!last_source_error))
1351 last_source_visited = s;
1352 desc = open_source_file (s);
1356 desc = last_source_error;
1357 flags |= PRINT_SOURCE_LINES_NOERROR;
1362 desc = last_source_error;
1363 flags |= PRINT_SOURCE_LINES_NOERROR;
1367 if (desc < 0 || noprint)
1369 last_source_error = desc;
1371 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1373 const char *filename = symtab_to_filename_for_display (s);
1374 int len = strlen (filename) + 100;
1375 char *name = (char *) alloca (len);
1377 xsnprintf (name, len, "%d\t%s", line, filename);
1378 print_sys_errmsg (name, errno);
1382 uiout->field_int ("line", line);
1383 uiout->text ("\tin ");
1385 /* CLI expects only the "file" field. TUI expects only the
1386 "fullname" field (and TUI does break if "file" is printed).
1387 MI expects both fields. ui_source_list is set only for CLI,
1389 if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list))
1390 uiout->field_string ("file", symtab_to_filename_for_display (s));
1391 if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list))
1393 const char *s_fullname = symtab_to_fullname (s);
1394 char *local_fullname;
1396 /* ui_out_field_string may free S_FULLNAME by calling
1397 open_source_file for it again. See e.g.,
1398 tui_field_string->tui_show_source. */
1399 local_fullname = (char *) alloca (strlen (s_fullname) + 1);
1400 strcpy (local_fullname, s_fullname);
1402 uiout->field_string ("fullname", local_fullname);
1411 last_source_error = 0;
1413 if (s->line_charpos == 0)
1414 find_source_lines (s, desc);
1416 if (line < 1 || line > s->nlines)
1419 error (_("Line number %d out of range; %s has %d lines."),
1420 line, symtab_to_filename_for_display (s), s->nlines);
1423 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1426 perror_with_name (symtab_to_filename_for_display (s));
1429 gdb_file_up stream (fdopen (desc, FDOPEN_MODE));
1430 clearerr (stream.get ());
1432 while (nlines-- > 0)
1436 c = fgetc (stream.get ());
1439 last_line_listed = current_source_line;
1440 if (flags & PRINT_SOURCE_LINES_FILENAME)
1442 uiout->text (symtab_to_filename_for_display (s));
1445 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
1449 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1451 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
1458 /* Skip a \r character, but only before a \n. */
1459 int c1 = fgetc (stream.get ());
1462 printf_filtered ("^%c", c + 0100);
1464 ungetc (c1, stream.get ());
1468 xsnprintf (buf, sizeof (buf), "%c", c);
1472 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1476 /* Show source lines from the file of symtab S, starting with line
1477 number LINE and stopping before line number STOPLINE. If this is
1478 not the command line version, then the source is shown in the source
1479 window otherwise it is simply printed. */
1482 print_source_lines (struct symtab *s, int line, int stopline,
1483 print_source_lines_flags flags)
1485 print_source_lines_base (s, line, stopline, flags);
1488 /* Print info on range of pc's in a specified line. */
1491 info_line_command (char *arg, int from_tty)
1493 CORE_ADDR start_pc, end_pc;
1495 std::vector<symtab_and_line> decoded_sals;
1496 symtab_and_line curr_sal;
1497 gdb::array_view<symtab_and_line> sals;
1501 init_sal (&curr_sal); /* initialize to zeroes */
1502 curr_sal.symtab = current_source_symtab;
1503 curr_sal.pspace = current_program_space;
1504 if (last_line_listed != 0)
1505 curr_sal.line = last_line_listed;
1507 curr_sal.line = current_source_line;
1513 decoded_sals = decode_line_with_last_displayed (arg,
1514 DECODE_LINE_LIST_MODE);
1515 sals = decoded_sals;
1520 /* C++ More than one line may have been specified, as when the user
1521 specifies an overloaded function name. Print info on them all. */
1522 for (const auto &sal : sals)
1524 if (sal.pspace != current_program_space)
1527 if (sal.symtab == 0)
1529 struct gdbarch *gdbarch = get_current_arch ();
1531 printf_filtered (_("No line number information available"));
1534 /* This is useful for "info line *0x7f34". If we can't tell the
1535 user about a source line, at least let them have the symbolic
1537 printf_filtered (" for address ");
1539 print_address (gdbarch, sal.pc, gdb_stdout);
1542 printf_filtered (".");
1543 printf_filtered ("\n");
1545 else if (sal.line > 0
1546 && find_line_pc_range (sal, &start_pc, &end_pc))
1548 struct gdbarch *gdbarch
1549 = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
1551 if (start_pc == end_pc)
1553 printf_filtered ("Line %d of \"%s\"",
1555 symtab_to_filename_for_display (sal.symtab));
1557 printf_filtered (" is at address ");
1558 print_address (gdbarch, start_pc, gdb_stdout);
1560 printf_filtered (" but contains no code.\n");
1564 printf_filtered ("Line %d of \"%s\"",
1566 symtab_to_filename_for_display (sal.symtab));
1568 printf_filtered (" starts at address ");
1569 print_address (gdbarch, start_pc, gdb_stdout);
1571 printf_filtered (" and ends at ");
1572 print_address (gdbarch, end_pc, gdb_stdout);
1573 printf_filtered (".\n");
1576 /* x/i should display this line's code. */
1577 set_next_address (gdbarch, start_pc);
1579 /* Repeating "info line" should do the following line. */
1580 last_line_listed = sal.line + 1;
1582 /* If this is the only line, show the source code. If it could
1583 not find the file, don't do anything special. */
1584 if (annotation_level && sals.size () == 1)
1585 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1588 /* Is there any case in which we get here, and have an address
1589 which the user would want to see? If we have debugging symbols
1590 and no line numbers? */
1591 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
1592 sal.line, symtab_to_filename_for_display (sal.symtab));
1596 /* Commands to search the source file for a regexp. */
1599 forward_search_command (char *regex, int from_tty)
1605 struct cleanup *cleanups;
1607 line = last_line_listed + 1;
1609 msg = (char *) re_comp (regex);
1611 error (("%s"), msg);
1613 if (current_source_symtab == 0)
1614 select_source_symtab (0);
1616 desc = open_source_file (current_source_symtab);
1618 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1619 cleanups = make_cleanup_close (desc);
1621 if (current_source_symtab->line_charpos == 0)
1622 find_source_lines (current_source_symtab, desc);
1624 if (line < 1 || line > current_source_symtab->nlines)
1625 error (_("Expression not found"));
1627 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1628 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1630 discard_cleanups (cleanups);
1631 gdb_file_up stream (fdopen (desc, FDOPEN_MODE));
1632 clearerr (stream.get ());
1635 static char *buf = NULL;
1637 int cursize, newsize;
1640 buf = (char *) xmalloc (cursize);
1643 c = fgetc (stream.get ());
1649 if (p - buf == cursize)
1651 newsize = cursize + cursize / 2;
1652 buf = (char *) xrealloc (buf, newsize);
1657 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1659 /* Remove the \r, if any, at the end of the line, otherwise
1660 regular expressions that end with $ or \n won't work. */
1661 if (p - buf > 1 && p[-2] == '\r')
1667 /* We now have a source line in buf, null terminate and match. */
1669 if (re_exec (buf) > 0)
1672 print_source_lines (current_source_symtab, line, line + 1, 0);
1673 set_internalvar_integer (lookup_internalvar ("_"), line);
1674 current_source_line = std::max (line - lines_to_list / 2, 1);
1680 printf_filtered (_("Expression not found\n"));
1684 reverse_search_command (char *regex, int from_tty)
1690 struct cleanup *cleanups;
1692 line = last_line_listed - 1;
1694 msg = (char *) re_comp (regex);
1696 error (("%s"), msg);
1698 if (current_source_symtab == 0)
1699 select_source_symtab (0);
1701 desc = open_source_file (current_source_symtab);
1703 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1704 cleanups = make_cleanup_close (desc);
1706 if (current_source_symtab->line_charpos == 0)
1707 find_source_lines (current_source_symtab, desc);
1709 if (line < 1 || line > current_source_symtab->nlines)
1710 error (_("Expression not found"));
1712 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1713 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1715 discard_cleanups (cleanups);
1716 gdb_file_up stream (fdopen (desc, FDOPEN_MODE));
1717 clearerr (stream.get ());
1720 /* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1721 char buf[4096]; /* Should be reasonable??? */
1724 c = fgetc (stream.get ());
1731 while (c != '\n' && (c = fgetc (stream.get ())) >= 0);
1733 /* Remove the \r, if any, at the end of the line, otherwise
1734 regular expressions that end with $ or \n won't work. */
1735 if (p - buf > 1 && p[-2] == '\r')
1741 /* We now have a source line in buf; null terminate and match. */
1743 if (re_exec (buf) > 0)
1746 print_source_lines (current_source_symtab, line, line + 1, 0);
1747 set_internalvar_integer (lookup_internalvar ("_"), line);
1748 current_source_line = std::max (line - lines_to_list / 2, 1);
1752 if (fseek (stream.get (),
1753 current_source_symtab->line_charpos[line - 1], 0) < 0)
1755 const char *filename;
1757 filename = symtab_to_filename_for_display (current_source_symtab);
1758 perror_with_name (filename);
1762 printf_filtered (_("Expression not found\n"));
1766 /* If the last character of PATH is a directory separator, then strip it. */
1769 strip_trailing_directory_separator (char *path)
1771 const int last = strlen (path) - 1;
1774 return; /* No stripping is needed if PATH is the empty string. */
1776 if (IS_DIR_SEPARATOR (path[last]))
1780 /* Return the path substitution rule that matches FROM.
1781 Return NULL if no rule matches. */
1783 static struct substitute_path_rule *
1784 find_substitute_path_rule (const char *from)
1786 struct substitute_path_rule *rule = substitute_path_rules;
1788 while (rule != NULL)
1790 if (FILENAME_CMP (rule->from, from) == 0)
1798 /* Add a new substitute-path rule at the end of the current list of rules.
1799 The new rule will replace FROM into TO. */
1802 add_substitute_path_rule (char *from, char *to)
1804 struct substitute_path_rule *rule;
1805 struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule);
1807 new_rule->from = xstrdup (from);
1808 new_rule->to = xstrdup (to);
1809 new_rule->next = NULL;
1811 /* If the list of rules are empty, then insert the new rule
1812 at the head of the list. */
1814 if (substitute_path_rules == NULL)
1816 substitute_path_rules = new_rule;
1820 /* Otherwise, skip to the last rule in our list and then append
1823 rule = substitute_path_rules;
1824 while (rule->next != NULL)
1827 rule->next = new_rule;
1830 /* Remove the given source path substitution rule from the current list
1831 of rules. The memory allocated for that rule is also deallocated. */
1834 delete_substitute_path_rule (struct substitute_path_rule *rule)
1836 if (rule == substitute_path_rules)
1837 substitute_path_rules = rule->next;
1840 struct substitute_path_rule *prev = substitute_path_rules;
1842 while (prev != NULL && prev->next != rule)
1845 gdb_assert (prev != NULL);
1847 prev->next = rule->next;
1855 /* Implement the "show substitute-path" command. */
1858 show_substitute_path_command (char *args, int from_tty)
1860 struct substitute_path_rule *rule = substitute_path_rules;
1863 gdb_argv argv (args);
1865 /* We expect zero or one argument. */
1867 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1868 error (_("Too many arguments in command"));
1870 if (argv != NULL && argv[0] != NULL)
1873 /* Print the substitution rules. */
1877 (_("Source path substitution rule matching `%s':\n"), from);
1879 printf_filtered (_("List of all source path substitution rules:\n"));
1881 while (rule != NULL)
1883 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
1884 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1889 /* Implement the "unset substitute-path" command. */
1892 unset_substitute_path_command (char *args, int from_tty)
1894 struct substitute_path_rule *rule = substitute_path_rules;
1895 gdb_argv argv (args);
1899 /* This function takes either 0 or 1 argument. */
1901 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1902 error (_("Incorrect usage, too many arguments in command"));
1904 if (argv != NULL && argv[0] != NULL)
1907 /* If the user asked for all the rules to be deleted, ask him
1908 to confirm and give him a chance to abort before the action
1912 && !query (_("Delete all source path substitution rules? ")))
1913 error (_("Canceled"));
1915 /* Delete the rule matching the argument. No argument means that
1916 all rules should be deleted. */
1918 while (rule != NULL)
1920 struct substitute_path_rule *next = rule->next;
1922 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1924 delete_substitute_path_rule (rule);
1931 /* If the user asked for a specific rule to be deleted but
1932 we could not find it, then report an error. */
1934 if (from != NULL && !rule_found)
1935 error (_("No substitution rule defined for `%s'"), from);
1937 forget_cached_source_info ();
1940 /* Add a new source path substitution rule. */
1943 set_substitute_path_command (char *args, int from_tty)
1945 struct substitute_path_rule *rule;
1947 gdb_argv argv (args);
1949 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1950 error (_("Incorrect usage, too few arguments in command"));
1952 if (argv[2] != NULL)
1953 error (_("Incorrect usage, too many arguments in command"));
1955 if (*(argv[0]) == '\0')
1956 error (_("First argument must be at least one character long"));
1958 /* Strip any trailing directory separator character in either FROM
1959 or TO. The substitution rule already implicitly contains them. */
1960 strip_trailing_directory_separator (argv[0]);
1961 strip_trailing_directory_separator (argv[1]);
1963 /* If a rule with the same "from" was previously defined, then
1964 delete it. This new rule replaces it. */
1966 rule = find_substitute_path_rule (argv[0]);
1968 delete_substitute_path_rule (rule);
1970 /* Insert the new substitution rule. */
1972 add_substitute_path_rule (argv[0], argv[1]);
1973 forget_cached_source_info ();
1978 _initialize_source (void)
1980 struct cmd_list_element *c;
1982 current_source_symtab = 0;
1983 init_source_path ();
1985 /* The intention is to use POSIX Basic Regular Expressions.
1986 Always use the GNU regex routine for consistency across all hosts.
1987 Our current GNU regex.c does not have all the POSIX features, so this is
1988 just an approximation. */
1989 re_set_syntax (RE_SYNTAX_GREP);
1991 c = add_cmd ("directory", class_files, directory_command, _("\
1992 Add directory DIR to beginning of search path for source files.\n\
1993 Forget cached info on source file locations and line positions.\n\
1994 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1995 directory in which the source file was compiled into object code.\n\
1996 With no argument, reset the search path to $cdir:$cwd, the default."),
2000 add_com_alias ("use", "directory", class_files, 0);
2002 set_cmd_completer (c, filename_completer);
2004 add_setshow_optional_filename_cmd ("directories",
2008 Set the search path for finding source files."),
2010 Show the search path for finding source files."),
2012 $cwd in the path means the current working directory.\n\
2013 $cdir in the path means the compilation directory of the source file.\n\
2014 GDB ensures the search path always ends with $cdir:$cwd by\n\
2015 appending these directories if necessary.\n\
2016 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
2017 set_directories_command,
2018 show_directories_command,
2019 &setlist, &showlist);
2021 add_info ("source", info_source_command,
2022 _("Information about the current source file."));
2024 add_info ("line", info_line_command, _("\
2025 Core addresses of the code for a source line.\n\
2026 Line can be specified as\n\
2027 LINENUM, to list around that line in current file,\n\
2028 FILE:LINENUM, to list around that line in that file,\n\
2029 FUNCTION, to list around beginning of that function,\n\
2030 FILE:FUNCTION, to distinguish among like-named static functions.\n\
2031 Default is to describe the last source line that was listed.\n\n\
2032 This sets the default address for \"x\" to the line's first instruction\n\
2033 so that \"x/i\" suffices to start examining the machine code.\n\
2034 The address is also stored as the value of \"$_\"."));
2036 add_com ("forward-search", class_files, forward_search_command, _("\
2037 Search for regular expression (see regex(3)) from last line listed.\n\
2038 The matching line number is also stored as the value of \"$_\"."));
2039 add_com_alias ("search", "forward-search", class_files, 0);
2040 add_com_alias ("fo", "forward-search", class_files, 1);
2042 add_com ("reverse-search", class_files, reverse_search_command, _("\
2043 Search backward for regular expression (see regex(3)) from last line listed.\n\
2044 The matching line number is also stored as the value of \"$_\"."));
2045 add_com_alias ("rev", "reverse-search", class_files, 1);
2047 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
2048 Set number of source lines gdb will list by default."), _("\
2049 Show number of source lines gdb will list by default."), _("\
2050 Use this to choose how many source lines the \"list\" displays (unless\n\
2051 the \"list\" argument explicitly specifies some other number).\n\
2052 A value of \"unlimited\", or zero, means there's no limit."),
2055 &setlist, &showlist);
2057 add_cmd ("substitute-path", class_files, set_substitute_path_command,
2059 Usage: set substitute-path FROM TO\n\
2060 Add a substitution rule replacing FROM into TO in source file names.\n\
2061 If a substitution rule was previously set for FROM, the old rule\n\
2062 is replaced by the new one."),
2065 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2067 Usage: unset substitute-path [FROM]\n\
2068 Delete the rule for substituting FROM in source file names. If FROM\n\
2069 is not specified, all substituting rules are deleted.\n\
2070 If the debugger cannot find a rule for FROM, it will display a warning."),
2073 add_cmd ("substitute-path", class_files, show_substitute_path_command,
2075 Usage: show substitute-path [FROM]\n\
2076 Print the rule for substituting FROM in source file names. If FROM\n\
2077 is not specified, print all substitution rules."),
2080 add_setshow_enum_cmd ("filename-display", class_files,
2081 filename_display_kind_names,
2082 &filename_display_string, _("\
2083 Set how to display filenames."), _("\
2084 Show how to display filenames."), _("\
2085 filename-display can be:\n\
2086 basename - display only basename of a filename\n\
2087 relative - display a filename relative to the compilation directory\n\
2088 absolute - display an absolute filename\n\
2089 By default, relative filenames are displayed."),
2091 show_filename_display_string,
2092 &setlist, &showlist);