1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986-2016 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"
47 #define OPEN_MODE (O_RDONLY | O_BINARY)
48 #define FDOPEN_MODE FOPEN_RB
50 /* Prototypes for exported functions. */
52 void _initialize_source (void);
54 /* Prototypes for local functions. */
56 static int get_filename_and_charpos (struct symtab *, char **);
58 static void reverse_search_command (char *, int);
60 static void forward_search_command (char *, int);
62 static void line_info (char *, int);
64 static void source_info (char *, int);
66 /* Path of directories to search for source files.
67 Same format as the PATH environment variable's value. */
71 /* Support for source path substitution commands. */
73 struct substitute_path_rule
77 struct substitute_path_rule *next;
80 static struct substitute_path_rule *substitute_path_rules = NULL;
82 /* Symtab of default file for listing lines of. */
84 static struct symtab *current_source_symtab;
86 /* Default next line to list. */
88 static int current_source_line;
90 static struct program_space *current_source_pspace;
92 /* Default number of lines to print with commands like "list".
93 This is based on guessing how many long (i.e. more than chars_per_line
94 characters) lines there will be. To be completely correct, "list"
95 and friends should be rewritten to count characters and see where
96 things are wrapping, but that would be a fair amount of work. */
98 static int lines_to_list = 10;
100 show_lines_to_list (struct ui_file *file, int from_tty,
101 struct cmd_list_element *c, const char *value)
103 fprintf_filtered (file,
104 _("Number of source lines gdb "
105 "will list by default is %s.\n"),
109 /* Possible values of 'set filename-display'. */
110 static const char filename_display_basename[] = "basename";
111 static const char filename_display_relative[] = "relative";
112 static const char filename_display_absolute[] = "absolute";
114 static const char *const filename_display_kind_names[] = {
115 filename_display_basename,
116 filename_display_relative,
117 filename_display_absolute,
121 static const char *filename_display_string = filename_display_relative;
124 show_filename_display_string (struct ui_file *file, int from_tty,
125 struct cmd_list_element *c, const char *value)
127 fprintf_filtered (file, _("Filenames are displayed as \"%s\".\n"), value);
130 /* Line number of last line printed. Default for various commands.
131 current_source_line is usually, but not always, the same as this. */
133 static int last_line_listed;
135 /* First line number listed by last listing command. If 0, then no
136 source lines have yet been listed since the last time the current
137 source line was changed. */
139 static int first_line_listed;
141 /* Saves the name of the last source file visited and a possible error code.
142 Used to prevent repeating annoying "No such file or directories" msgs. */
144 static struct symtab *last_source_visited = NULL;
145 static int last_source_error = 0;
147 /* Return the first line listed by print_source_lines.
148 Used by command interpreters to request listing from
152 get_first_line_listed (void)
154 return first_line_listed;
157 /* Clear line listed range. This makes the next "list" center the
158 printed source lines around the current source line. */
161 clear_lines_listed_range (void)
163 first_line_listed = 0;
164 last_line_listed = 0;
167 /* Return the default number of lines to print with commands like the
168 cli "list". The caller of print_source_lines must use this to
169 calculate the end line and use it in the call to print_source_lines
170 as it does not automatically use this value. */
173 get_lines_to_list (void)
175 return lines_to_list;
178 /* Return the current source file for listing and next line to list.
179 NOTE: The returned sal pc and end fields are not valid. */
181 struct symtab_and_line
182 get_current_source_symtab_and_line (void)
184 struct symtab_and_line cursal = { 0 };
186 cursal.pspace = current_source_pspace;
187 cursal.symtab = current_source_symtab;
188 cursal.line = current_source_line;
195 /* If the current source file for listing is not set, try and get a default.
196 Usually called before get_current_source_symtab_and_line() is called.
197 It may err out if a default cannot be determined.
198 We must be cautious about where it is called, as it can recurse as the
199 process of determining a new default may call the caller!
200 Use get_current_source_symtab_and_line only to get whatever
201 we have without erroring out or trying to get a default. */
204 set_default_source_symtab_and_line (void)
206 if (!have_full_symbols () && !have_partial_symbols ())
207 error (_("No symbol table is loaded. Use the \"file\" command."));
209 /* Pull in a current source symtab if necessary. */
210 if (current_source_symtab == 0)
211 select_source_symtab (0);
214 /* Return the current default file for listing and next line to list
215 (the returned sal pc and end fields are not valid.)
216 and set the current default to whatever is in SAL.
217 NOTE: The returned sal pc and end fields are not valid. */
219 struct symtab_and_line
220 set_current_source_symtab_and_line (const struct symtab_and_line *sal)
222 struct symtab_and_line cursal = { 0 };
224 cursal.pspace = current_source_pspace;
225 cursal.symtab = current_source_symtab;
226 cursal.line = current_source_line;
230 current_source_pspace = sal->pspace;
231 current_source_symtab = sal->symtab;
232 current_source_line = sal->line;
234 /* Force the next "list" to center around the current line. */
235 clear_lines_listed_range ();
240 /* Reset any information stored about a default file and line to print. */
243 clear_current_source_symtab_and_line (void)
245 current_source_symtab = 0;
246 current_source_line = 0;
249 /* Set the source file default for the "list" command to be S.
251 If S is NULL, and we don't have a default, find one. This
252 should only be called when the user actually tries to use the
253 default, since we produce an error if we can't find a reasonable
254 default. Also, since this can cause symbols to be read, doing it
255 before we need to would make things slower than necessary. */
258 select_source_symtab (struct symtab *s)
260 struct symtabs_and_lines sals;
261 struct symtab_and_line sal;
263 struct compunit_symtab *cu;
267 current_source_symtab = s;
268 current_source_line = 1;
269 current_source_pspace = SYMTAB_PSPACE (s);
273 if (current_source_symtab)
276 /* Make the default place to list be the function `main'
278 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0).symbol)
280 sals = decode_line_with_current_source (main_name (),
281 DECODE_LINE_FUNFIRSTLINE);
284 current_source_pspace = sal.pspace;
285 current_source_symtab = sal.symtab;
286 current_source_line = max (sal.line - (lines_to_list - 1), 1);
287 if (current_source_symtab)
291 /* Alright; find the last file in the symtab list (ignoring .h's
292 and namespace symtabs). */
294 current_source_line = 1;
296 ALL_FILETABS (ofp, cu, s)
298 const char *name = s->filename;
299 int len = strlen (name);
301 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
302 || strcmp (name, "<<C++-namespaces>>") == 0)))
304 current_source_pspace = current_program_space;
305 current_source_symtab = s;
309 if (current_source_symtab)
315 s = ofp->sf->qf->find_last_source_symtab (ofp);
317 current_source_symtab = s;
319 if (current_source_symtab)
322 error (_("Can't find a default source file"));
325 /* Handler for "set directories path-list" command.
326 "set dir mumble" doesn't prepend paths, it resets the entire
327 path list. The theory is that set(show(dir)) should be a no-op. */
330 set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
332 /* This is the value that was set.
333 It needs to be processed to maintain $cdir:$cwd and remove dups. */
334 char *set_path = source_path;
336 /* We preserve the invariant that $cdir:$cwd begins life at the end of
337 the list by calling init_source_path. If they appear earlier in
338 SET_PATH then mod_path will move them appropriately.
339 mod_path will also remove duplicates. */
341 if (*set_path != '\0')
342 mod_path (set_path, &source_path);
347 /* Print the list of source directories.
348 This is used by the "ld" command, so it has the signature of a command
352 show_directories_1 (char *ignore, int from_tty)
354 puts_filtered ("Source directories searched: ");
355 puts_filtered (source_path);
356 puts_filtered ("\n");
359 /* Handler for "show directories" command. */
362 show_directories_command (struct ui_file *file, int from_tty,
363 struct cmd_list_element *c, const char *value)
365 show_directories_1 (NULL, from_tty);
368 /* Forget line positions and file names for the symtabs in a
369 particular objfile. */
372 forget_cached_source_info_for_objfile (struct objfile *objfile)
374 struct compunit_symtab *cu;
377 ALL_OBJFILE_FILETABS (objfile, cu, s)
379 if (s->line_charpos != NULL)
381 xfree (s->line_charpos);
382 s->line_charpos = NULL;
384 if (s->fullname != NULL)
392 objfile->sf->qf->forget_cached_source_info (objfile);
395 /* Forget what we learned about line positions in source files, and
396 which directories contain them; must check again now since files
397 may be found in a different directory now. */
400 forget_cached_source_info (void)
402 struct program_space *pspace;
403 struct objfile *objfile;
406 ALL_PSPACE_OBJFILES (pspace, objfile)
408 forget_cached_source_info_for_objfile (objfile);
411 last_source_visited = NULL;
415 init_source_path (void)
419 xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR);
420 source_path = xstrdup (buf);
421 forget_cached_source_info ();
424 /* Add zero or more directories to the front of the source path. */
427 directory_command (char *dirname, int from_tty)
430 /* FIXME, this goes to "delete dir"... */
433 if (!from_tty || query (_("Reinitialize source path to empty? ")))
441 mod_path (dirname, &source_path);
442 forget_cached_source_info ();
445 show_directories_1 ((char *) 0, from_tty);
448 /* Add a path given with the -d command line switch.
449 This will not be quoted so we must not treat spaces as separators. */
452 directory_switch (char *dirname, int from_tty)
454 add_path (dirname, &source_path, 0);
457 /* Add zero or more directories to the front of an arbitrary path. */
460 mod_path (char *dirname, char **which_path)
462 add_path (dirname, which_path, 1);
465 /* Workhorse of mod_path. Takes an extra argument to determine
466 if dirname should be parsed for separators that indicate multiple
467 directories. This allows for interfaces that pre-parse the dirname
468 and allow specification of traditional separator characters such
472 add_path (char *dirname, char **which_path, int parse_separators)
474 char *old = *which_path;
476 VEC (char_ptr) *dir_vec = NULL;
477 struct cleanup *back_to;
484 if (parse_separators)
486 char **argv, **argvp;
488 /* This will properly parse the space and tab separators
489 and any quotes that may exist. */
490 argv = gdb_buildargv (dirname);
492 for (argvp = argv; *argvp; argvp++)
493 dirnames_to_char_ptr_vec_append (&dir_vec, *argvp);
498 VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname));
499 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
501 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix)
506 /* Spaces and tabs will have been removed by buildargv().
507 NAME is the start of the directory.
508 P is the '\0' following the end. */
509 p = name + strlen (name);
511 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
512 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
513 /* On MS-DOS and MS-Windows, h:\ is different from h: */
514 && !(p == name + 3 && name[1] == ':') /* "d:/" */
516 && IS_DIR_SEPARATOR (p[-1]))
517 /* Sigh. "foo/" => "foo" */
521 while (p > name && p[-1] == '.')
525 /* "." => getwd (). */
526 name = current_directory;
529 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
539 /* "...foo/." => "...foo". */
550 name = tilde_expand (name);
551 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
552 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
553 name = concat (name, ".", (char *)NULL);
555 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
556 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
558 name = savestring (name, p - name);
559 make_cleanup (xfree, name);
561 /* Unless it's a variable, check existence. */
564 /* These are warnings, not errors, since we don't want a
565 non-existent directory in a .gdbinit file to stop processing
566 of the .gdbinit file.
568 Whether they get added to the path is more debatable. Current
569 answer is yes, in case the user wants to go make the directory
570 or whatever. If the directory continues to not exist/not be
571 a directory/etc, then having them in the path should be
573 if (stat (name, &st) < 0)
575 int save_errno = errno;
577 fprintf_unfiltered (gdb_stderr, "Warning: ");
578 print_sys_errmsg (name, save_errno);
580 else if ((st.st_mode & S_IFMT) != S_IFDIR)
581 warning (_("%s is not a directory."), name);
586 unsigned int len = strlen (name);
592 /* FIXME: we should use realpath() or its work-alike
593 before comparing. Then all the code above which
594 removes excess slashes and dots could simply go away. */
595 if (!filename_ncmp (p, name, len)
596 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
598 /* Found it in the search path, remove old copy. */
601 /* Back over leading separator. */
604 if (prefix > p - *which_path)
606 /* Same dir twice in one cmd. */
609 /* Copy from next '\0' or ':'. */
610 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
612 p = strchr (p, DIRNAME_SEPARATOR);
619 tinybuf[0] = DIRNAME_SEPARATOR;
622 /* If we have already tacked on a name(s) in this command,
623 be sure they stay on the front as we tack on some
631 temp = concat (old, tinybuf, name, (char *)NULL);
633 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
634 prefix = strlen (temp);
639 *which_path = concat (name, (old[0] ? tinybuf : old),
641 prefix = strlen (name);
650 do_cleanups (back_to);
655 source_info (char *ignore, int from_tty)
657 struct symtab *s = current_source_symtab;
658 struct compunit_symtab *cust;
662 printf_filtered (_("No current source file.\n"));
666 cust = SYMTAB_COMPUNIT (s);
667 printf_filtered (_("Current source file is %s\n"), s->filename);
668 if (SYMTAB_DIRNAME (s) != NULL)
669 printf_filtered (_("Compilation directory is %s\n"), SYMTAB_DIRNAME (s));
671 printf_filtered (_("Located in %s\n"), s->fullname);
673 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
674 s->nlines == 1 ? "" : "s");
676 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
677 printf_filtered (_("Producer is %s.\n"),
678 COMPUNIT_PRODUCER (cust) != NULL
679 ? COMPUNIT_PRODUCER (cust) : _("unknown"));
680 printf_filtered (_("Compiled with %s debugging format.\n"),
681 COMPUNIT_DEBUGFORMAT (cust));
682 printf_filtered (_("%s preprocessor macro info.\n"),
683 COMPUNIT_MACRO_TABLE (cust) != NULL
684 ? "Includes" : "Does not include");
688 /* Return True if the file NAME exists and is a regular file. */
690 is_regular_file (const char *name)
693 const int status = stat (name, &st);
695 /* Stat should never fail except when the file does not exist.
696 If stat fails, analyze the source of error and return True
697 unless the file does not exist, to avoid returning false results
698 on obscure systems where stat does not work as expected. */
701 return (errno != ENOENT);
703 return S_ISREG (st.st_mode);
706 /* Open a file named STRING, searching path PATH (dir names sep by some char)
707 using mode MODE in the calls to open. You cannot use this function to
708 create files (O_CREAT).
710 OPTS specifies the function behaviour in specific cases.
712 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
713 (ie pretend the first element of PATH is "."). This also indicates
714 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
715 disables searching of the path (this is so that "exec-file ./foo" or
716 "symbol-file ./foo" insures that you get that particular version of
717 foo or an error message).
719 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
720 searched in path (we usually want this for source files but not for
723 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
724 the actual file opened (this string will always start with a "/"). We
725 have to take special pains to avoid doubling the "/" between the directory
726 and the file, sigh! Emacs gets confuzzed by this when we print the
729 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
730 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
731 filename starting with "/". If FILENAME_OPENED is NULL this option has no
734 If a file is found, return the descriptor.
735 Otherwise, return -1, with errno set for the last name we tried to open. */
737 /* >>>> This should only allow files of certain types,
738 >>>> eg executable, non-directory. */
740 openp (const char *path, int opts, const char *string,
741 int mode, char **filename_opened)
746 VEC (char_ptr) *dir_vec;
747 struct cleanup *back_to;
750 /* The errno set for the last name we tried to open (and
754 /* The open syscall MODE parameter is not specified. */
755 gdb_assert ((mode & O_CREAT) == 0);
756 gdb_assert (string != NULL);
758 /* A file with an empty name cannot possibly exist. Report a failure
759 without further checking.
761 This is an optimization which also defends us against buggy
762 implementations of the "stat" function. For instance, we have
763 noticed that a MinGW debugger built on Windows XP 32bits crashes
764 when the debugger is started with an empty argument. */
765 if (string[0] == '\0')
776 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
780 if (is_regular_file (string))
782 filename = (char *) alloca (strlen (string) + 1);
783 strcpy (filename, string);
784 fd = gdb_open_cloexec (filename, mode, 0);
795 if (!(opts & OPF_SEARCH_IN_PATH))
796 for (i = 0; string[i]; i++)
797 if (IS_DIR_SEPARATOR (string[i]))
801 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
802 if (HAS_DRIVE_SPEC (string))
803 string = STRIP_DRIVE_SPEC (string);
805 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
806 while (IS_DIR_SEPARATOR(string[0]))
810 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
813 alloclen = strlen (path) + strlen (string) + 2;
814 filename = (char *) alloca (alloclen);
818 dir_vec = dirnames_to_char_ptr_vec (path);
819 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
821 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix)
823 size_t len = strlen (dir);
825 if (strcmp (dir, "$cwd") == 0)
827 /* Name is $cwd -- insert current directory name instead. */
830 /* First, realloc the filename buffer if too short. */
831 len = strlen (current_directory);
832 newlen = len + strlen (string) + 2;
833 if (newlen > alloclen)
836 filename = (char *) alloca (alloclen);
838 strcpy (filename, current_directory);
840 else if (strchr(dir, '~'))
842 /* See whether we need to expand the tilde. */
844 char *tilde_expanded;
846 tilde_expanded = tilde_expand (dir);
848 /* First, realloc the filename buffer if too short. */
849 len = strlen (tilde_expanded);
850 newlen = len + strlen (string) + 2;
851 if (newlen > alloclen)
854 filename = (char *) alloca (alloclen);
856 strcpy (filename, tilde_expanded);
857 xfree (tilde_expanded);
861 /* Normal file name in path -- just use it. */
862 strcpy (filename, dir);
864 /* Don't search $cdir. It's also a magic path like $cwd, but we
865 don't have enough information to expand it. The user *could*
866 have an actual directory named '$cdir' but handling that would
867 be confusing, it would mean different things in different
868 contexts. If the user really has '$cdir' one can use './$cdir'.
869 We can get $cdir when loading scripts. When loading source files
870 $cdir must have already been expanded to the correct value. */
871 if (strcmp (dir, "$cdir") == 0)
875 /* Remove trailing slashes. */
876 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
879 strcat (filename + len, SLASH_STRING);
880 strcat (filename, string);
882 if (is_regular_file (filename))
884 fd = gdb_open_cloexec (filename, mode, 0);
891 do_cleanups (back_to);
896 /* If a file was opened, canonicalize its filename. */
898 *filename_opened = NULL;
899 else if ((opts & OPF_RETURN_REALPATH) != 0)
900 *filename_opened = gdb_realpath (filename);
902 *filename_opened = gdb_abspath (filename);
910 /* This is essentially a convenience, for clients that want the behaviour
911 of openp, using source_path, but that really don't want the file to be
912 opened but want instead just to know what the full pathname is (as
913 qualified against source_path).
915 The current working directory is searched first.
917 If the file was found, this function returns 1, and FULL_PATHNAME is
918 set to the fully-qualified pathname.
920 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
922 source_full_path_of (const char *filename, char **full_pathname)
926 fd = openp (source_path,
927 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
928 filename, O_RDONLY, full_pathname);
931 *full_pathname = NULL;
939 /* Return non-zero if RULE matches PATH, that is if the rule can be
943 substitute_path_rule_matches (const struct substitute_path_rule *rule,
946 const int from_len = strlen (rule->from);
947 const int path_len = strlen (path);
949 if (path_len < from_len)
952 /* The substitution rules are anchored at the start of the path,
953 so the path should start with rule->from. */
955 if (filename_ncmp (path, rule->from, from_len) != 0)
958 /* Make sure that the region in the path that matches the substitution
959 rule is immediately followed by a directory separator (or the end of
960 string character). */
962 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
968 /* Find the substitute-path rule that applies to PATH and return it.
969 Return NULL if no rule applies. */
971 static struct substitute_path_rule *
972 get_substitute_path_rule (const char *path)
974 struct substitute_path_rule *rule = substitute_path_rules;
976 while (rule != NULL && !substitute_path_rule_matches (rule, path))
982 /* If the user specified a source path substitution rule that applies
983 to PATH, then apply it and return the new path. This new path must
984 be deallocated afterwards.
986 Return NULL if no substitution rule was specified by the user,
987 or if no rule applied to the given PATH. */
990 rewrite_source_path (const char *path)
992 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
999 from_len = strlen (rule->from);
1001 /* Compute the rewritten path and return it. */
1004 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
1005 strcpy (new_path, rule->to);
1006 strcat (new_path, path + from_len);
1012 find_and_open_source (const char *filename,
1013 const char *dirname,
1016 char *path = source_path;
1019 struct cleanup *cleanup;
1021 /* Quick way out if we already know its full name. */
1025 /* The user may have requested that source paths be rewritten
1026 according to substitution rules he provided. If a substitution
1027 rule applies to this path, then apply it. */
1028 char *rewritten_fullname = rewrite_source_path (*fullname);
1030 if (rewritten_fullname != NULL)
1033 *fullname = rewritten_fullname;
1036 result = gdb_open_cloexec (*fullname, OPEN_MODE, 0);
1039 char *lpath = gdb_realpath (*fullname);
1046 /* Didn't work -- free old one, try again. */
1051 cleanup = make_cleanup (null_cleanup, NULL);
1053 if (dirname != NULL)
1055 /* If necessary, rewrite the compilation directory name according
1056 to the source path substitution rules specified by the user. */
1058 char *rewritten_dirname = rewrite_source_path (dirname);
1060 if (rewritten_dirname != NULL)
1062 make_cleanup (xfree, rewritten_dirname);
1063 dirname = rewritten_dirname;
1066 /* Replace a path entry of $cdir with the compilation directory
1069 /* We cast strstr's result in case an ANSIhole has made it const,
1070 which produces a "required warning" when assigned to a nonconst. */
1071 p = (char *) strstr (source_path, "$cdir");
1072 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1073 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1078 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
1079 len = p - source_path;
1080 strncpy (path, source_path, len); /* Before $cdir */
1081 strcpy (path + len, dirname); /* new stuff */
1082 strcat (path + len, source_path + len + cdir_len); /* After
1087 if (IS_ABSOLUTE_PATH (filename))
1089 /* If filename is absolute path, try the source path
1090 substitution on it. */
1091 char *rewritten_filename = rewrite_source_path (filename);
1093 if (rewritten_filename != NULL)
1095 make_cleanup (xfree, rewritten_filename);
1096 filename = rewritten_filename;
1100 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1101 OPEN_MODE, fullname);
1104 /* Didn't work. Try using just the basename. */
1105 p = lbasename (filename);
1107 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1108 OPEN_MODE, fullname);
1111 do_cleanups (cleanup);
1115 /* Open a source file given a symtab S. Returns a file descriptor or
1116 negative number for error.
1118 This function is a convience function to find_and_open_source. */
1121 open_source_file (struct symtab *s)
1126 return find_and_open_source (s->filename, SYMTAB_DIRNAME (s), &s->fullname);
1129 /* Finds the fullname that a symtab represents.
1131 This functions finds the fullname and saves it in s->fullname.
1132 It will also return the value.
1134 If this function fails to find the file that this symtab represents,
1135 the expected fullname is used. Therefore the files does not have to
1139 symtab_to_fullname (struct symtab *s)
1141 /* Use cached copy if we have it.
1142 We rely on forget_cached_source_info being called appropriately
1143 to handle cases like the file being moved. */
1144 if (s->fullname == NULL)
1146 int fd = find_and_open_source (s->filename, SYMTAB_DIRNAME (s),
1154 struct cleanup *back_to;
1156 /* rewrite_source_path would be applied by find_and_open_source, we
1157 should report the pathname where GDB tried to find the file. */
1159 if (SYMTAB_DIRNAME (s) == NULL || IS_ABSOLUTE_PATH (s->filename))
1160 fullname = xstrdup (s->filename);
1162 fullname = concat (SYMTAB_DIRNAME (s), SLASH_STRING, s->filename,
1165 back_to = make_cleanup (xfree, fullname);
1166 s->fullname = rewrite_source_path (fullname);
1167 if (s->fullname == NULL)
1168 s->fullname = xstrdup (fullname);
1169 do_cleanups (back_to);
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)
1337 int nlines = stopline - line;
1338 struct cleanup *cleanup;
1339 struct ui_out *uiout = current_uiout;
1341 /* Regardless of whether we can open the file, set current_source_symtab. */
1342 current_source_symtab = s;
1343 current_source_line = line;
1344 first_line_listed = line;
1346 /* If printing of source lines is disabled, just print file and line
1348 if (ui_out_test_flags (uiout, ui_source_list))
1350 /* Only prints "No such file or directory" once. */
1351 if ((s != last_source_visited) || (!last_source_error))
1353 last_source_visited = s;
1354 desc = open_source_file (s);
1358 desc = last_source_error;
1359 flags |= PRINT_SOURCE_LINES_NOERROR;
1364 desc = last_source_error;
1365 flags |= PRINT_SOURCE_LINES_NOERROR;
1369 if (desc < 0 || noprint)
1371 last_source_error = desc;
1373 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1375 const char *filename = symtab_to_filename_for_display (s);
1376 int len = strlen (filename) + 100;
1377 char *name = (char *) alloca (len);
1379 xsnprintf (name, len, "%d\t%s", line, filename);
1380 print_sys_errmsg (name, errno);
1384 ui_out_field_int (uiout, "line", line);
1385 ui_out_text (uiout, "\tin ");
1387 /* CLI expects only the "file" field. TUI expects only the
1388 "fullname" field (and TUI does break if "file" is printed).
1389 MI expects both fields. ui_source_list is set only for CLI,
1391 if (ui_out_is_mi_like_p (uiout)
1392 || ui_out_test_flags (uiout, ui_source_list))
1393 ui_out_field_string (uiout, "file",
1394 symtab_to_filename_for_display (s));
1395 if (ui_out_is_mi_like_p (uiout)
1396 || !ui_out_test_flags (uiout, ui_source_list))
1398 const char *s_fullname = symtab_to_fullname (s);
1399 char *local_fullname;
1401 /* ui_out_field_string may free S_FULLNAME by calling
1402 open_source_file for it again. See e.g.,
1403 tui_field_string->tui_show_source. */
1404 local_fullname = (char *) alloca (strlen (s_fullname) + 1);
1405 strcpy (local_fullname, s_fullname);
1407 ui_out_field_string (uiout, "fullname", local_fullname);
1410 ui_out_text (uiout, "\n");
1416 last_source_error = 0;
1418 if (s->line_charpos == 0)
1419 find_source_lines (s, desc);
1421 if (line < 1 || line > s->nlines)
1424 error (_("Line number %d out of range; %s has %d lines."),
1425 line, symtab_to_filename_for_display (s), s->nlines);
1428 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1431 perror_with_name (symtab_to_filename_for_display (s));
1434 stream = fdopen (desc, FDOPEN_MODE);
1436 cleanup = make_cleanup_fclose (stream);
1438 while (nlines-- > 0)
1445 last_line_listed = current_source_line;
1446 if (flags & PRINT_SOURCE_LINES_FILENAME)
1448 ui_out_text (uiout, symtab_to_filename_for_display (s));
1449 ui_out_text (uiout, ":");
1451 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
1452 ui_out_text (uiout, buf);
1455 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1457 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
1458 ui_out_text (uiout, buf);
1461 ui_out_text (uiout, "^?");
1464 /* Skip a \r character, but only before a \n. */
1465 int c1 = fgetc (stream);
1468 printf_filtered ("^%c", c + 0100);
1470 ungetc (c1, stream);
1474 xsnprintf (buf, sizeof (buf), "%c", c);
1475 ui_out_text (uiout, buf);
1478 while (c != '\n' && (c = fgetc (stream)) >= 0);
1481 do_cleanups (cleanup);
1484 /* Show source lines from the file of symtab S, starting with line
1485 number LINE and stopping before line number STOPLINE. If this is
1486 not the command line version, then the source is shown in the source
1487 window otherwise it is simply printed. */
1490 print_source_lines (struct symtab *s, int line, int stopline,
1491 print_source_lines_flags flags)
1493 print_source_lines_base (s, line, stopline, flags);
1496 /* Print info on range of pc's in a specified line. */
1499 line_info (char *arg, int from_tty)
1501 struct symtabs_and_lines sals;
1502 struct symtab_and_line sal;
1503 CORE_ADDR start_pc, end_pc;
1505 struct cleanup *cleanups;
1507 init_sal (&sal); /* initialize to zeroes */
1511 sal.symtab = current_source_symtab;
1512 sal.pspace = current_program_space;
1513 if (last_line_listed != 0)
1514 sal.line = last_line_listed;
1516 sal.line = current_source_line;
1519 sals.sals = XNEW (struct symtab_and_line);
1524 sals = decode_line_with_last_displayed (arg, DECODE_LINE_LIST_MODE);
1529 cleanups = make_cleanup (xfree, sals.sals);
1531 /* C++ More than one line may have been specified, as when the user
1532 specifies an overloaded function name. Print info on them all. */
1533 for (i = 0; i < sals.nelts; i++)
1536 if (sal.pspace != current_program_space)
1539 if (sal.symtab == 0)
1541 struct gdbarch *gdbarch = get_current_arch ();
1543 printf_filtered (_("No line number information available"));
1546 /* This is useful for "info line *0x7f34". If we can't tell the
1547 user about a source line, at least let them have the symbolic
1549 printf_filtered (" for address ");
1551 print_address (gdbarch, sal.pc, gdb_stdout);
1554 printf_filtered (".");
1555 printf_filtered ("\n");
1557 else if (sal.line > 0
1558 && find_line_pc_range (sal, &start_pc, &end_pc))
1560 struct gdbarch *gdbarch
1561 = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
1563 if (start_pc == end_pc)
1565 printf_filtered ("Line %d of \"%s\"",
1567 symtab_to_filename_for_display (sal.symtab));
1569 printf_filtered (" is at address ");
1570 print_address (gdbarch, start_pc, gdb_stdout);
1572 printf_filtered (" but contains no code.\n");
1576 printf_filtered ("Line %d of \"%s\"",
1578 symtab_to_filename_for_display (sal.symtab));
1580 printf_filtered (" starts at address ");
1581 print_address (gdbarch, start_pc, gdb_stdout);
1583 printf_filtered (" and ends at ");
1584 print_address (gdbarch, end_pc, gdb_stdout);
1585 printf_filtered (".\n");
1588 /* x/i should display this line's code. */
1589 set_next_address (gdbarch, start_pc);
1591 /* Repeating "info line" should do the following line. */
1592 last_line_listed = sal.line + 1;
1594 /* If this is the only line, show the source code. If it could
1595 not find the file, don't do anything special. */
1596 if (annotation_level && sals.nelts == 1)
1597 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1600 /* Is there any case in which we get here, and have an address
1601 which the user would want to see? If we have debugging symbols
1602 and no line numbers? */
1603 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
1604 sal.line, symtab_to_filename_for_display (sal.symtab));
1606 do_cleanups (cleanups);
1609 /* Commands to search the source file for a regexp. */
1612 forward_search_command (char *regex, int from_tty)
1619 struct cleanup *cleanups;
1621 line = last_line_listed + 1;
1623 msg = (char *) re_comp (regex);
1625 error (("%s"), msg);
1627 if (current_source_symtab == 0)
1628 select_source_symtab (0);
1630 desc = open_source_file (current_source_symtab);
1632 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1633 cleanups = make_cleanup_close (desc);
1635 if (current_source_symtab->line_charpos == 0)
1636 find_source_lines (current_source_symtab, desc);
1638 if (line < 1 || line > current_source_symtab->nlines)
1639 error (_("Expression not found"));
1641 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1642 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1644 discard_cleanups (cleanups);
1645 stream = fdopen (desc, FDOPEN_MODE);
1647 cleanups = make_cleanup_fclose (stream);
1650 static char *buf = NULL;
1652 int cursize, newsize;
1655 buf = (char *) xmalloc (cursize);
1664 if (p - buf == cursize)
1666 newsize = cursize + cursize / 2;
1667 buf = (char *) xrealloc (buf, newsize);
1672 while (c != '\n' && (c = fgetc (stream)) >= 0);
1674 /* Remove the \r, if any, at the end of the line, otherwise
1675 regular expressions that end with $ or \n won't work. */
1676 if (p - buf > 1 && p[-2] == '\r')
1682 /* We now have a source line in buf, null terminate and match. */
1684 if (re_exec (buf) > 0)
1687 do_cleanups (cleanups);
1688 print_source_lines (current_source_symtab, line, line + 1, 0);
1689 set_internalvar_integer (lookup_internalvar ("_"), line);
1690 current_source_line = max (line - lines_to_list / 2, 1);
1696 printf_filtered (_("Expression not found\n"));
1697 do_cleanups (cleanups);
1701 reverse_search_command (char *regex, int from_tty)
1708 struct cleanup *cleanups;
1710 line = last_line_listed - 1;
1712 msg = (char *) re_comp (regex);
1714 error (("%s"), msg);
1716 if (current_source_symtab == 0)
1717 select_source_symtab (0);
1719 desc = open_source_file (current_source_symtab);
1721 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1722 cleanups = make_cleanup_close (desc);
1724 if (current_source_symtab->line_charpos == 0)
1725 find_source_lines (current_source_symtab, desc);
1727 if (line < 1 || line > current_source_symtab->nlines)
1728 error (_("Expression not found"));
1730 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1731 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1733 discard_cleanups (cleanups);
1734 stream = fdopen (desc, FDOPEN_MODE);
1736 cleanups = make_cleanup_fclose (stream);
1739 /* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1740 char buf[4096]; /* Should be reasonable??? */
1750 while (c != '\n' && (c = fgetc (stream)) >= 0);
1752 /* Remove the \r, if any, at the end of the line, otherwise
1753 regular expressions that end with $ or \n won't work. */
1754 if (p - buf > 1 && p[-2] == '\r')
1760 /* We now have a source line in buf; null terminate and match. */
1762 if (re_exec (buf) > 0)
1765 do_cleanups (cleanups);
1766 print_source_lines (current_source_symtab, line, line + 1, 0);
1767 set_internalvar_integer (lookup_internalvar ("_"), line);
1768 current_source_line = max (line - lines_to_list / 2, 1);
1772 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1774 const char *filename;
1776 do_cleanups (cleanups);
1777 filename = symtab_to_filename_for_display (current_source_symtab);
1778 perror_with_name (filename);
1782 printf_filtered (_("Expression not found\n"));
1783 do_cleanups (cleanups);
1787 /* If the last character of PATH is a directory separator, then strip it. */
1790 strip_trailing_directory_separator (char *path)
1792 const int last = strlen (path) - 1;
1795 return; /* No stripping is needed if PATH is the empty string. */
1797 if (IS_DIR_SEPARATOR (path[last]))
1801 /* Return the path substitution rule that matches FROM.
1802 Return NULL if no rule matches. */
1804 static struct substitute_path_rule *
1805 find_substitute_path_rule (const char *from)
1807 struct substitute_path_rule *rule = substitute_path_rules;
1809 while (rule != NULL)
1811 if (FILENAME_CMP (rule->from, from) == 0)
1819 /* Add a new substitute-path rule at the end of the current list of rules.
1820 The new rule will replace FROM into TO. */
1823 add_substitute_path_rule (char *from, char *to)
1825 struct substitute_path_rule *rule;
1826 struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule);
1828 new_rule->from = xstrdup (from);
1829 new_rule->to = xstrdup (to);
1830 new_rule->next = NULL;
1832 /* If the list of rules are empty, then insert the new rule
1833 at the head of the list. */
1835 if (substitute_path_rules == NULL)
1837 substitute_path_rules = new_rule;
1841 /* Otherwise, skip to the last rule in our list and then append
1844 rule = substitute_path_rules;
1845 while (rule->next != NULL)
1848 rule->next = new_rule;
1851 /* Remove the given source path substitution rule from the current list
1852 of rules. The memory allocated for that rule is also deallocated. */
1855 delete_substitute_path_rule (struct substitute_path_rule *rule)
1857 if (rule == substitute_path_rules)
1858 substitute_path_rules = rule->next;
1861 struct substitute_path_rule *prev = substitute_path_rules;
1863 while (prev != NULL && prev->next != rule)
1866 gdb_assert (prev != NULL);
1868 prev->next = rule->next;
1876 /* Implement the "show substitute-path" command. */
1879 show_substitute_path_command (char *args, int from_tty)
1881 struct substitute_path_rule *rule = substitute_path_rules;
1884 struct cleanup *cleanup;
1886 argv = gdb_buildargv (args);
1887 cleanup = make_cleanup_freeargv (argv);
1889 /* We expect zero or one argument. */
1891 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1892 error (_("Too many arguments in command"));
1894 if (argv != NULL && argv[0] != NULL)
1897 /* Print the substitution rules. */
1901 (_("Source path substitution rule matching `%s':\n"), from);
1903 printf_filtered (_("List of all source path substitution rules:\n"));
1905 while (rule != NULL)
1907 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
1908 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1912 do_cleanups (cleanup);
1915 /* Implement the "unset substitute-path" command. */
1918 unset_substitute_path_command (char *args, int from_tty)
1920 struct substitute_path_rule *rule = substitute_path_rules;
1921 char **argv = gdb_buildargv (args);
1924 struct cleanup *cleanup;
1926 /* This function takes either 0 or 1 argument. */
1928 cleanup = make_cleanup_freeargv (argv);
1929 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1930 error (_("Incorrect usage, too many arguments in command"));
1932 if (argv != NULL && argv[0] != NULL)
1935 /* If the user asked for all the rules to be deleted, ask him
1936 to confirm and give him a chance to abort before the action
1940 && !query (_("Delete all source path substitution rules? ")))
1941 error (_("Canceled"));
1943 /* Delete the rule matching the argument. No argument means that
1944 all rules should be deleted. */
1946 while (rule != NULL)
1948 struct substitute_path_rule *next = rule->next;
1950 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1952 delete_substitute_path_rule (rule);
1959 /* If the user asked for a specific rule to be deleted but
1960 we could not find it, then report an error. */
1962 if (from != NULL && !rule_found)
1963 error (_("No substitution rule defined for `%s'"), from);
1965 forget_cached_source_info ();
1967 do_cleanups (cleanup);
1970 /* Add a new source path substitution rule. */
1973 set_substitute_path_command (char *args, int from_tty)
1976 struct substitute_path_rule *rule;
1977 struct cleanup *cleanup;
1979 argv = gdb_buildargv (args);
1980 cleanup = make_cleanup_freeargv (argv);
1982 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1983 error (_("Incorrect usage, too few arguments in command"));
1985 if (argv[2] != NULL)
1986 error (_("Incorrect usage, too many arguments in command"));
1988 if (*(argv[0]) == '\0')
1989 error (_("First argument must be at least one character long"));
1991 /* Strip any trailing directory separator character in either FROM
1992 or TO. The substitution rule already implicitly contains them. */
1993 strip_trailing_directory_separator (argv[0]);
1994 strip_trailing_directory_separator (argv[1]);
1996 /* If a rule with the same "from" was previously defined, then
1997 delete it. This new rule replaces it. */
1999 rule = find_substitute_path_rule (argv[0]);
2001 delete_substitute_path_rule (rule);
2003 /* Insert the new substitution rule. */
2005 add_substitute_path_rule (argv[0], argv[1]);
2006 forget_cached_source_info ();
2008 do_cleanups (cleanup);
2013 _initialize_source (void)
2015 struct cmd_list_element *c;
2017 current_source_symtab = 0;
2018 init_source_path ();
2020 /* The intention is to use POSIX Basic Regular Expressions.
2021 Always use the GNU regex routine for consistency across all hosts.
2022 Our current GNU regex.c does not have all the POSIX features, so this is
2023 just an approximation. */
2024 re_set_syntax (RE_SYNTAX_GREP);
2026 c = add_cmd ("directory", class_files, directory_command, _("\
2027 Add directory DIR to beginning of search path for source files.\n\
2028 Forget cached info on source file locations and line positions.\n\
2029 DIR can also be $cwd for the current working directory, or $cdir for the\n\
2030 directory in which the source file was compiled into object code.\n\
2031 With no argument, reset the search path to $cdir:$cwd, the default."),
2035 add_com_alias ("use", "directory", class_files, 0);
2037 set_cmd_completer (c, filename_completer);
2039 add_setshow_optional_filename_cmd ("directories",
2043 Set the search path for finding source files."),
2045 Show the search path for finding source files."),
2047 $cwd in the path means the current working directory.\n\
2048 $cdir in the path means the compilation directory of the source file.\n\
2049 GDB ensures the search path always ends with $cdir:$cwd by\n\
2050 appending these directories if necessary.\n\
2051 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
2052 set_directories_command,
2053 show_directories_command,
2054 &setlist, &showlist);
2056 add_info ("source", source_info,
2057 _("Information about the current source file."));
2059 add_info ("line", line_info, _("\
2060 Core addresses of the code for a source line.\n\
2061 Line can be specified as\n\
2062 LINENUM, to list around that line in current file,\n\
2063 FILE:LINENUM, to list around that line in that file,\n\
2064 FUNCTION, to list around beginning of that function,\n\
2065 FILE:FUNCTION, to distinguish among like-named static functions.\n\
2066 Default is to describe the last source line that was listed.\n\n\
2067 This sets the default address for \"x\" to the line's first instruction\n\
2068 so that \"x/i\" suffices to start examining the machine code.\n\
2069 The address is also stored as the value of \"$_\"."));
2071 add_com ("forward-search", class_files, forward_search_command, _("\
2072 Search for regular expression (see regex(3)) from last line listed.\n\
2073 The matching line number is also stored as the value of \"$_\"."));
2074 add_com_alias ("search", "forward-search", class_files, 0);
2075 add_com_alias ("fo", "forward-search", class_files, 1);
2077 add_com ("reverse-search", class_files, reverse_search_command, _("\
2078 Search backward for regular expression (see regex(3)) from last line listed.\n\
2079 The matching line number is also stored as the value of \"$_\"."));
2080 add_com_alias ("rev", "reverse-search", class_files, 1);
2082 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
2083 Set number of source lines gdb will list by default."), _("\
2084 Show number of source lines gdb will list by default."), _("\
2085 Use this to choose how many source lines the \"list\" displays (unless\n\
2086 the \"list\" argument explicitly specifies some other number).\n\
2087 A value of \"unlimited\", or zero, means there's no limit."),
2090 &setlist, &showlist);
2092 add_cmd ("substitute-path", class_files, set_substitute_path_command,
2094 Usage: set substitute-path FROM TO\n\
2095 Add a substitution rule replacing FROM into TO in source file names.\n\
2096 If a substitution rule was previously set for FROM, the old rule\n\
2097 is replaced by the new one."),
2100 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2102 Usage: unset substitute-path [FROM]\n\
2103 Delete the rule for substituting FROM in source file names. If FROM\n\
2104 is not specified, all substituting rules are deleted.\n\
2105 If the debugger cannot find a rule for FROM, it will display a warning."),
2108 add_cmd ("substitute-path", class_files, show_substitute_path_command,
2110 Usage: show substitute-path [FROM]\n\
2111 Print the rule for substituting FROM in source file names. If FROM\n\
2112 is not specified, print all substitution rules."),
2115 add_setshow_enum_cmd ("filename-display", class_files,
2116 filename_display_kind_names,
2117 &filename_display_string, _("\
2118 Set how to display filenames."), _("\
2119 Show how to display filenames."), _("\
2120 filename-display can be:\n\
2121 basename - display only basename of a filename\n\
2122 relative - display a filename relative to the compilation directory\n\
2123 absolute - display an absolute filename\n\
2124 By default, relative filenames are displayed."),
2126 show_filename_display_string,
2127 &setlist, &showlist);