1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright (C) 1986-2014 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>
36 #include "gdb_regex.h"
42 #include "filenames.h" /* for DOSish file names */
43 #include "completer.h"
45 #include "readline/readline.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 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;
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))
279 sals = decode_line_with_current_source (main_name (),
280 DECODE_LINE_FUNFIRSTLINE);
283 current_source_pspace = sal.pspace;
284 current_source_symtab = sal.symtab;
285 current_source_line = 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;
297 for (s = ofp->symtabs; s; s = s->next)
299 const char *name = s->filename;
300 int len = strlen (name);
302 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
303 || strcmp (name, "<<C++-namespaces>>") == 0)))
305 current_source_pspace = current_program_space;
306 current_source_symtab = s;
311 if (current_source_symtab)
317 s = ofp->sf->qf->find_last_source_symtab (ofp);
319 current_source_symtab = s;
321 if (current_source_symtab)
324 error (_("Can't find a default source file"));
327 /* Handler for "set directories path-list" command.
328 "set dir mumble" doesn't prepend paths, it resets the entire
329 path list. The theory is that set(show(dir)) should be a no-op. */
332 set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
334 /* This is the value that was set.
335 It needs to be processed to maintain $cdir:$cwd and remove dups. */
336 char *set_path = source_path;
338 /* We preserve the invariant that $cdir:$cwd begins life at the end of
339 the list by calling init_source_path. If they appear earlier in
340 SET_PATH then mod_path will move them appropriately.
341 mod_path will also remove duplicates. */
343 if (*set_path != '\0')
344 mod_path (set_path, &source_path);
349 /* Print the list of source directories.
350 This is used by the "ld" command, so it has the signature of a command
354 show_directories_1 (char *ignore, int from_tty)
356 puts_filtered ("Source directories searched: ");
357 puts_filtered (source_path);
358 puts_filtered ("\n");
361 /* Handler for "show directories" command. */
364 show_directories_command (struct ui_file *file, int from_tty,
365 struct cmd_list_element *c, const char *value)
367 show_directories_1 (NULL, from_tty);
370 /* Forget line positions and file names for the symtabs in a
371 particular objfile. */
374 forget_cached_source_info_for_objfile (struct objfile *objfile)
378 ALL_OBJFILE_SYMTABS (objfile, s)
380 if (s->line_charpos != NULL)
382 xfree (s->line_charpos);
383 s->line_charpos = NULL;
385 if (s->fullname != NULL)
393 objfile->sf->qf->forget_cached_source_info (objfile);
396 /* Forget what we learned about line positions in source files, and
397 which directories contain them; must check again now since files
398 may be found in a different directory now. */
401 forget_cached_source_info (void)
403 struct program_space *pspace;
404 struct objfile *objfile;
407 ALL_PSPACE_OBJFILES (pspace, objfile)
409 forget_cached_source_info_for_objfile (objfile);
412 last_source_visited = NULL;
416 init_source_path (void)
420 xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR);
421 source_path = xstrdup (buf);
422 forget_cached_source_info ();
425 /* Add zero or more directories to the front of the source path. */
428 directory_command (char *dirname, int from_tty)
431 /* FIXME, this goes to "delete dir"... */
434 if (!from_tty || query (_("Reinitialize source path to empty? ")))
442 mod_path (dirname, &source_path);
443 forget_cached_source_info ();
446 show_directories_1 ((char *) 0, from_tty);
449 /* Add a path given with the -d command line switch.
450 This will not be quoted so we must not treat spaces as separators. */
453 directory_switch (char *dirname, int from_tty)
455 add_path (dirname, &source_path, 0);
458 /* Add zero or more directories to the front of an arbitrary path. */
461 mod_path (char *dirname, char **which_path)
463 add_path (dirname, which_path, 1);
466 /* Workhorse of mod_path. Takes an extra argument to determine
467 if dirname should be parsed for separators that indicate multiple
468 directories. This allows for interfaces that pre-parse the dirname
469 and allow specification of traditional separator characters such
473 add_path (char *dirname, char **which_path, int parse_separators)
475 char *old = *which_path;
477 VEC (char_ptr) *dir_vec = NULL;
478 struct cleanup *back_to;
485 if (parse_separators)
487 char **argv, **argvp;
489 /* This will properly parse the space and tab separators
490 and any quotes that may exist. */
491 argv = gdb_buildargv (dirname);
493 for (argvp = argv; *argvp; argvp++)
494 dirnames_to_char_ptr_vec_append (&dir_vec, *argvp);
499 VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname));
500 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
502 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix)
507 /* Spaces and tabs will have been removed by buildargv().
508 NAME is the start of the directory.
509 P is the '\0' following the end. */
510 p = name + strlen (name);
512 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
513 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
514 /* On MS-DOS and MS-Windows, h:\ is different from h: */
515 && !(p == name + 3 && name[1] == ':') /* "d:/" */
517 && IS_DIR_SEPARATOR (p[-1]))
518 /* Sigh. "foo/" => "foo" */
522 while (p > name && p[-1] == '.')
526 /* "." => getwd (). */
527 name = current_directory;
530 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
540 /* "...foo/." => "...foo". */
551 name = tilde_expand (name);
552 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
553 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
554 name = concat (name, ".", (char *)NULL);
556 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
557 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
559 name = savestring (name, p - name);
560 make_cleanup (xfree, name);
562 /* Unless it's a variable, check existence. */
565 /* These are warnings, not errors, since we don't want a
566 non-existent directory in a .gdbinit file to stop processing
567 of the .gdbinit file.
569 Whether they get added to the path is more debatable. Current
570 answer is yes, in case the user wants to go make the directory
571 or whatever. If the directory continues to not exist/not be
572 a directory/etc, then having them in the path should be
574 if (stat (name, &st) < 0)
576 int save_errno = errno;
578 fprintf_unfiltered (gdb_stderr, "Warning: ");
579 print_sys_errmsg (name, save_errno);
581 else if ((st.st_mode & S_IFMT) != S_IFDIR)
582 warning (_("%s is not a directory."), name);
587 unsigned int len = strlen (name);
593 /* FIXME: we should use realpath() or its work-alike
594 before comparing. Then all the code above which
595 removes excess slashes and dots could simply go away. */
596 if (!filename_ncmp (p, name, len)
597 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
599 /* Found it in the search path, remove old copy. */
602 /* Back over leading separator. */
605 if (prefix > p - *which_path)
607 /* Same dir twice in one cmd. */
610 /* Copy from next '\0' or ':'. */
611 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1);
613 p = strchr (p, DIRNAME_SEPARATOR);
620 tinybuf[0] = DIRNAME_SEPARATOR;
623 /* If we have already tacked on a name(s) in this command,
624 be sure they stay on the front as we tack on some
632 temp = concat (old, tinybuf, name, (char *)NULL);
634 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
635 prefix = strlen (temp);
640 *which_path = concat (name, (old[0] ? tinybuf : old),
642 prefix = strlen (name);
651 do_cleanups (back_to);
656 source_info (char *ignore, int from_tty)
658 struct symtab *s = current_source_symtab;
662 printf_filtered (_("No current source file.\n"));
665 printf_filtered (_("Current source file is %s\n"), s->filename);
667 printf_filtered (_("Compilation directory is %s\n"), s->dirname);
669 printf_filtered (_("Located in %s\n"), s->fullname);
671 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
672 s->nlines == 1 ? "" : "s");
674 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
675 printf_filtered (_("Compiled with %s debugging format.\n"), s->debugformat);
676 printf_filtered (_("%s preprocessor macro info.\n"),
677 s->macro_table ? "Includes" : "Does not include");
681 /* Return True if the file NAME exists and is a regular file. */
683 is_regular_file (const char *name)
686 const int status = stat (name, &st);
688 /* Stat should never fail except when the file does not exist.
689 If stat fails, analyze the source of error and return True
690 unless the file does not exist, to avoid returning false results
691 on obscure systems where stat does not work as expected. */
694 return (errno != ENOENT);
696 return S_ISREG (st.st_mode);
699 /* Open a file named STRING, searching path PATH (dir names sep by some char)
700 using mode MODE in the calls to open. You cannot use this function to
701 create files (O_CREAT).
703 OPTS specifies the function behaviour in specific cases.
705 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
706 (ie pretend the first element of PATH is "."). This also indicates
707 that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING
708 disables searching of the path (this is so that "exec-file ./foo" or
709 "symbol-file ./foo" insures that you get that particular version of
710 foo or an error message).
712 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
713 searched in path (we usually want this for source files but not for
716 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
717 the actual file opened (this string will always start with a "/"). We
718 have to take special pains to avoid doubling the "/" between the directory
719 and the file, sigh! Emacs gets confuzzed by this when we print the
722 If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by
723 gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns
724 filename starting with "/". If FILENAME_OPENED is NULL this option has no
727 If a file is found, return the descriptor.
728 Otherwise, return -1, with errno set for the last name we tried to open. */
730 /* >>>> This should only allow files of certain types,
731 >>>> eg executable, non-directory. */
733 openp (const char *path, int opts, const char *string,
734 int mode, char **filename_opened)
739 VEC (char_ptr) *dir_vec;
740 struct cleanup *back_to;
744 /* The open syscall MODE parameter is not specified. */
745 gdb_assert ((mode & O_CREAT) == 0);
746 gdb_assert (string != NULL);
748 /* A file with an empty name cannot possibly exist. Report a failure
749 without further checking.
751 This is an optimization which also defends us against buggy
752 implementations of the "stat" function. For instance, we have
753 noticed that a MinGW debugger built on Windows XP 32bits crashes
754 when the debugger is started with an empty argument. */
755 if (string[0] == '\0')
766 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
770 if (is_regular_file (string))
772 filename = alloca (strlen (string) + 1);
773 strcpy (filename, string);
774 fd = gdb_open_cloexec (filename, mode, 0);
784 if (!(opts & OPF_SEARCH_IN_PATH))
785 for (i = 0; string[i]; i++)
786 if (IS_DIR_SEPARATOR (string[i]))
790 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
791 if (HAS_DRIVE_SPEC (string))
792 string = STRIP_DRIVE_SPEC (string);
794 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
795 while (IS_DIR_SEPARATOR(string[0]))
799 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
802 alloclen = strlen (path) + strlen (string) + 2;
803 filename = alloca (alloclen);
806 dir_vec = dirnames_to_char_ptr_vec (path);
807 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
809 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix)
811 size_t len = strlen (dir);
813 if (strcmp (dir, "$cwd") == 0)
815 /* Name is $cwd -- insert current directory name instead. */
818 /* First, realloc the filename buffer if too short. */
819 len = strlen (current_directory);
820 newlen = len + strlen (string) + 2;
821 if (newlen > alloclen)
824 filename = alloca (alloclen);
826 strcpy (filename, current_directory);
828 else if (strchr(dir, '~'))
830 /* See whether we need to expand the tilde. */
832 char *tilde_expanded;
834 tilde_expanded = tilde_expand (dir);
836 /* First, realloc the filename buffer if too short. */
837 len = strlen (tilde_expanded);
838 newlen = len + strlen (string) + 2;
839 if (newlen > alloclen)
842 filename = alloca (alloclen);
844 strcpy (filename, tilde_expanded);
845 xfree (tilde_expanded);
849 /* Normal file name in path -- just use it. */
850 strcpy (filename, dir);
852 /* Don't search $cdir. It's also a magic path like $cwd, but we
853 don't have enough information to expand it. The user *could*
854 have an actual directory named '$cdir' but handling that would
855 be confusing, it would mean different things in different
856 contexts. If the user really has '$cdir' one can use './$cdir'.
857 We can get $cdir when loading scripts. When loading source files
858 $cdir must have already been expanded to the correct value. */
859 if (strcmp (dir, "$cdir") == 0)
863 /* Remove trailing slashes. */
864 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
867 strcat (filename + len, SLASH_STRING);
868 strcat (filename, string);
870 if (is_regular_file (filename))
872 fd = gdb_open_cloexec (filename, mode, 0);
878 do_cleanups (back_to);
883 /* If a file was opened, canonicalize its filename. */
885 *filename_opened = NULL;
886 else if ((opts & OPF_RETURN_REALPATH) != 0)
887 *filename_opened = gdb_realpath (filename);
889 *filename_opened = gdb_abspath (filename);
896 /* This is essentially a convenience, for clients that want the behaviour
897 of openp, using source_path, but that really don't want the file to be
898 opened but want instead just to know what the full pathname is (as
899 qualified against source_path).
901 The current working directory is searched first.
903 If the file was found, this function returns 1, and FULL_PATHNAME is
904 set to the fully-qualified pathname.
906 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
908 source_full_path_of (const char *filename, char **full_pathname)
912 fd = openp (source_path,
913 OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH,
914 filename, O_RDONLY, full_pathname);
917 *full_pathname = NULL;
925 /* Return non-zero if RULE matches PATH, that is if the rule can be
929 substitute_path_rule_matches (const struct substitute_path_rule *rule,
932 const int from_len = strlen (rule->from);
933 const int path_len = strlen (path);
935 if (path_len < from_len)
938 /* The substitution rules are anchored at the start of the path,
939 so the path should start with rule->from. */
941 if (filename_ncmp (path, rule->from, from_len) != 0)
944 /* Make sure that the region in the path that matches the substitution
945 rule is immediately followed by a directory separator (or the end of
946 string character). */
948 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
954 /* Find the substitute-path rule that applies to PATH and return it.
955 Return NULL if no rule applies. */
957 static struct substitute_path_rule *
958 get_substitute_path_rule (const char *path)
960 struct substitute_path_rule *rule = substitute_path_rules;
962 while (rule != NULL && !substitute_path_rule_matches (rule, path))
968 /* If the user specified a source path substitution rule that applies
969 to PATH, then apply it and return the new path. This new path must
970 be deallocated afterwards.
972 Return NULL if no substitution rule was specified by the user,
973 or if no rule applied to the given PATH. */
976 rewrite_source_path (const char *path)
978 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
985 from_len = strlen (rule->from);
987 /* Compute the rewritten path and return it. */
990 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
991 strcpy (new_path, rule->to);
992 strcat (new_path, path + from_len);
998 find_and_open_source (const char *filename,
1002 char *path = source_path;
1005 struct cleanup *cleanup;
1007 /* Quick way out if we already know its full name. */
1011 /* The user may have requested that source paths be rewritten
1012 according to substitution rules he provided. If a substitution
1013 rule applies to this path, then apply it. */
1014 char *rewritten_fullname = rewrite_source_path (*fullname);
1016 if (rewritten_fullname != NULL)
1019 *fullname = rewritten_fullname;
1022 result = gdb_open_cloexec (*fullname, OPEN_MODE, 0);
1025 char *lpath = gdb_realpath (*fullname);
1032 /* Didn't work -- free old one, try again. */
1037 cleanup = make_cleanup (null_cleanup, NULL);
1039 if (dirname != NULL)
1041 /* If necessary, rewrite the compilation directory name according
1042 to the source path substitution rules specified by the user. */
1044 char *rewritten_dirname = rewrite_source_path (dirname);
1046 if (rewritten_dirname != NULL)
1048 make_cleanup (xfree, rewritten_dirname);
1049 dirname = rewritten_dirname;
1052 /* Replace a path entry of $cdir with the compilation directory
1055 /* We cast strstr's result in case an ANSIhole has made it const,
1056 which produces a "required warning" when assigned to a nonconst. */
1057 p = (char *) strstr (source_path, "$cdir");
1058 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
1059 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
1064 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
1065 len = p - source_path;
1066 strncpy (path, source_path, len); /* Before $cdir */
1067 strcpy (path + len, dirname); /* new stuff */
1068 strcat (path + len, source_path + len + cdir_len); /* After
1073 if (IS_ABSOLUTE_PATH (filename))
1075 /* If filename is absolute path, try the source path
1076 substitution on it. */
1077 char *rewritten_filename = rewrite_source_path (filename);
1079 if (rewritten_filename != NULL)
1081 make_cleanup (xfree, rewritten_filename);
1082 filename = rewritten_filename;
1086 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename,
1087 OPEN_MODE, fullname);
1090 /* Didn't work. Try using just the basename. */
1091 p = lbasename (filename);
1093 result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p,
1094 OPEN_MODE, fullname);
1097 do_cleanups (cleanup);
1101 /* Open a source file given a symtab S. Returns a file descriptor or
1102 negative number for error.
1104 This function is a convience function to find_and_open_source. */
1107 open_source_file (struct symtab *s)
1112 return find_and_open_source (s->filename, s->dirname, &s->fullname);
1115 /* Finds the fullname that a symtab represents.
1117 This functions finds the fullname and saves it in s->fullname.
1118 It will also return the value.
1120 If this function fails to find the file that this symtab represents,
1121 the expected fullname is used. Therefore the files does not have to
1125 symtab_to_fullname (struct symtab *s)
1127 /* Use cached copy if we have it.
1128 We rely on forget_cached_source_info being called appropriately
1129 to handle cases like the file being moved. */
1130 if (s->fullname == NULL)
1132 int fd = find_and_open_source (s->filename, s->dirname, &s->fullname);
1139 struct cleanup *back_to;
1141 /* rewrite_source_path would be applied by find_and_open_source, we
1142 should report the pathname where GDB tried to find the file. */
1144 if (s->dirname == NULL || IS_ABSOLUTE_PATH (s->filename))
1145 fullname = xstrdup (s->filename);
1147 fullname = concat (s->dirname, SLASH_STRING, s->filename, NULL);
1149 back_to = make_cleanup (xfree, fullname);
1150 s->fullname = rewrite_source_path (fullname);
1151 if (s->fullname == NULL)
1152 s->fullname = xstrdup (fullname);
1153 do_cleanups (back_to);
1160 /* See commentary in source.h. */
1163 symtab_to_filename_for_display (struct symtab *symtab)
1165 if (filename_display_string == filename_display_basename)
1166 return lbasename (symtab->filename);
1167 else if (filename_display_string == filename_display_absolute)
1168 return symtab_to_fullname (symtab);
1169 else if (filename_display_string == filename_display_relative)
1170 return symtab->filename;
1172 internal_error (__FILE__, __LINE__, _("invalid filename_display_string"));
1175 /* Create and initialize the table S->line_charpos that records
1176 the positions of the lines in the source file, which is assumed
1177 to be open on descriptor DESC.
1178 All set S->nlines to the number of such lines. */
1181 find_source_lines (struct symtab *s, int desc)
1184 char *data, *p, *end;
1186 int lines_allocated = 1000;
1192 line_charpos = (int *) xmalloc (lines_allocated * sizeof (int));
1193 if (fstat (desc, &st) < 0)
1194 perror_with_name (symtab_to_filename_for_display (s));
1196 if (s->objfile && s->objfile->obfd)
1197 mtime = s->objfile->mtime;
1199 mtime = exec_bfd_mtime;
1201 if (mtime && mtime < st.st_mtime)
1202 warning (_("Source file is more recent than executable."));
1205 struct cleanup *old_cleanups;
1207 /* st_size might be a large type, but we only support source files whose
1208 size fits in an int. */
1209 size = (int) st.st_size;
1211 /* Use malloc, not alloca, because this may be pretty large, and we may
1212 run into various kinds of limits on stack size. */
1213 data = (char *) xmalloc (size);
1214 old_cleanups = make_cleanup (xfree, data);
1216 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1217 size = myread (desc, data, size);
1219 perror_with_name (symtab_to_filename_for_display (s));
1222 line_charpos[0] = 0;
1227 /* A newline at the end does not start a new line. */
1230 if (nlines == lines_allocated)
1232 lines_allocated *= 2;
1234 (int *) xrealloc ((char *) line_charpos,
1235 sizeof (int) * lines_allocated);
1237 line_charpos[nlines++] = p - data;
1240 do_cleanups (old_cleanups);
1245 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
1251 /* Get full pathname and line number positions for a symtab.
1252 Return nonzero if line numbers may have changed.
1253 Set *FULLNAME to actual name of the file as found by `openp',
1254 or to 0 if the file is not found. */
1257 get_filename_and_charpos (struct symtab *s, char **fullname)
1259 int desc, linenums_changed = 0;
1260 struct cleanup *cleanups;
1262 desc = open_source_file (s);
1269 cleanups = make_cleanup_close (desc);
1271 *fullname = s->fullname;
1272 if (s->line_charpos == 0)
1273 linenums_changed = 1;
1274 if (linenums_changed)
1275 find_source_lines (s, desc);
1276 do_cleanups (cleanups);
1277 return linenums_changed;
1280 /* Print text describing the full name of the source file S
1281 and the line number LINE and its corresponding character position.
1282 The text starts with two Ctrl-z so that the Emacs-GDB interface
1285 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1287 Return 1 if successful, 0 if could not find the file. */
1290 identify_source_line (struct symtab *s, int line, int mid_statement,
1293 if (s->line_charpos == 0)
1294 get_filename_and_charpos (s, (char **) NULL);
1295 if (s->fullname == 0)
1297 if (line > s->nlines)
1298 /* Don't index off the end of the line_charpos array. */
1300 annotate_source (s->fullname, line, s->line_charpos[line - 1],
1301 mid_statement, get_objfile_arch (s->objfile), pc);
1303 current_source_line = line;
1304 current_source_symtab = s;
1305 clear_lines_listed_range ();
1310 /* Print source lines from the file of symtab S,
1311 starting with line number LINE and stopping before line number STOPLINE. */
1314 print_source_lines_base (struct symtab *s, int line, int stopline,
1315 enum print_source_lines_flags flags)
1321 int nlines = stopline - line;
1322 struct cleanup *cleanup;
1323 struct ui_out *uiout = current_uiout;
1325 /* Regardless of whether we can open the file, set current_source_symtab. */
1326 current_source_symtab = s;
1327 current_source_line = line;
1328 first_line_listed = line;
1330 /* If printing of source lines is disabled, just print file and line
1332 if (ui_out_test_flags (uiout, ui_source_list))
1334 /* Only prints "No such file or directory" once. */
1335 if ((s != last_source_visited) || (!last_source_error))
1337 last_source_visited = s;
1338 desc = open_source_file (s);
1342 desc = last_source_error;
1343 flags |= PRINT_SOURCE_LINES_NOERROR;
1348 desc = last_source_error;
1349 flags |= PRINT_SOURCE_LINES_NOERROR;
1353 if (desc < 0 || noprint)
1355 last_source_error = desc;
1357 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
1359 const char *filename = symtab_to_filename_for_display (s);
1360 int len = strlen (filename) + 100;
1361 char *name = alloca (len);
1363 xsnprintf (name, len, "%d\t%s", line, filename);
1364 print_sys_errmsg (name, errno);
1368 ui_out_field_int (uiout, "line", line);
1369 ui_out_text (uiout, "\tin ");
1371 /* CLI expects only the "file" field. TUI expects only the
1372 "fullname" field (and TUI does break if "file" is printed).
1373 MI expects both fields. ui_source_list is set only for CLI,
1375 if (ui_out_is_mi_like_p (uiout)
1376 || ui_out_test_flags (uiout, ui_source_list))
1377 ui_out_field_string (uiout, "file",
1378 symtab_to_filename_for_display (s));
1379 if (ui_out_is_mi_like_p (uiout)
1380 || !ui_out_test_flags (uiout, ui_source_list))
1382 const char *s_fullname = symtab_to_fullname (s);
1383 char *local_fullname;
1385 /* ui_out_field_string may free S_FULLNAME by calling
1386 open_source_file for it again. See e.g.,
1387 tui_field_string->tui_show_source. */
1388 local_fullname = alloca (strlen (s_fullname) + 1);
1389 strcpy (local_fullname, s_fullname);
1391 ui_out_field_string (uiout, "fullname", local_fullname);
1394 ui_out_text (uiout, "\n");
1400 last_source_error = 0;
1402 if (s->line_charpos == 0)
1403 find_source_lines (s, desc);
1405 if (line < 1 || line > s->nlines)
1408 error (_("Line number %d out of range; %s has %d lines."),
1409 line, symtab_to_filename_for_display (s), s->nlines);
1412 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1415 perror_with_name (symtab_to_filename_for_display (s));
1418 stream = fdopen (desc, FDOPEN_MODE);
1420 cleanup = make_cleanup_fclose (stream);
1422 while (nlines-- > 0)
1429 last_line_listed = current_source_line;
1430 if (flags & PRINT_SOURCE_LINES_FILENAME)
1432 ui_out_text (uiout, symtab_to_filename_for_display (s));
1433 ui_out_text (uiout, ":");
1435 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
1436 ui_out_text (uiout, buf);
1439 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1441 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
1442 ui_out_text (uiout, buf);
1445 ui_out_text (uiout, "^?");
1448 /* Skip a \r character, but only before a \n. */
1449 int c1 = fgetc (stream);
1452 printf_filtered ("^%c", c + 0100);
1454 ungetc (c1, stream);
1458 xsnprintf (buf, sizeof (buf), "%c", c);
1459 ui_out_text (uiout, buf);
1462 while (c != '\n' && (c = fgetc (stream)) >= 0);
1465 do_cleanups (cleanup);
1468 /* Show source lines from the file of symtab S, starting with line
1469 number LINE and stopping before line number STOPLINE. If this is
1470 not the command line version, then the source is shown in the source
1471 window otherwise it is simply printed. */
1474 print_source_lines (struct symtab *s, int line, int stopline,
1475 enum print_source_lines_flags flags)
1477 print_source_lines_base (s, line, stopline, flags);
1480 /* Print info on range of pc's in a specified line. */
1483 line_info (char *arg, int from_tty)
1485 struct symtabs_and_lines sals;
1486 struct symtab_and_line sal;
1487 CORE_ADDR start_pc, end_pc;
1489 struct cleanup *cleanups;
1491 init_sal (&sal); /* initialize to zeroes */
1495 sal.symtab = current_source_symtab;
1496 sal.pspace = current_program_space;
1497 if (last_line_listed != 0)
1498 sal.line = last_line_listed;
1500 sal.line = current_source_line;
1503 sals.sals = (struct symtab_and_line *)
1504 xmalloc (sizeof (struct symtab_and_line));
1509 sals = decode_line_with_last_displayed (arg, DECODE_LINE_LIST_MODE);
1514 cleanups = make_cleanup (xfree, sals.sals);
1516 /* C++ More than one line may have been specified, as when the user
1517 specifies an overloaded function name. Print info on them all. */
1518 for (i = 0; i < sals.nelts; i++)
1521 if (sal.pspace != current_program_space)
1524 if (sal.symtab == 0)
1526 struct gdbarch *gdbarch = get_current_arch ();
1528 printf_filtered (_("No line number information available"));
1531 /* This is useful for "info line *0x7f34". If we can't tell the
1532 user about a source line, at least let them have the symbolic
1534 printf_filtered (" for address ");
1536 print_address (gdbarch, sal.pc, gdb_stdout);
1539 printf_filtered (".");
1540 printf_filtered ("\n");
1542 else if (sal.line > 0
1543 && find_line_pc_range (sal, &start_pc, &end_pc))
1545 struct gdbarch *gdbarch = get_objfile_arch (sal.symtab->objfile);
1547 if (start_pc == end_pc)
1549 printf_filtered ("Line %d of \"%s\"",
1551 symtab_to_filename_for_display (sal.symtab));
1553 printf_filtered (" is at address ");
1554 print_address (gdbarch, start_pc, gdb_stdout);
1556 printf_filtered (" but contains no code.\n");
1560 printf_filtered ("Line %d of \"%s\"",
1562 symtab_to_filename_for_display (sal.symtab));
1564 printf_filtered (" starts at address ");
1565 print_address (gdbarch, start_pc, gdb_stdout);
1567 printf_filtered (" and ends at ");
1568 print_address (gdbarch, end_pc, gdb_stdout);
1569 printf_filtered (".\n");
1572 /* x/i should display this line's code. */
1573 set_next_address (gdbarch, start_pc);
1575 /* Repeating "info line" should do the following line. */
1576 last_line_listed = sal.line + 1;
1578 /* If this is the only line, show the source code. If it could
1579 not find the file, don't do anything special. */
1580 if (annotation_level && sals.nelts == 1)
1581 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1584 /* Is there any case in which we get here, and have an address
1585 which the user would want to see? If we have debugging symbols
1586 and no line numbers? */
1587 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
1588 sal.line, symtab_to_filename_for_display (sal.symtab));
1590 do_cleanups (cleanups);
1593 /* Commands to search the source file for a regexp. */
1596 forward_search_command (char *regex, int from_tty)
1603 struct cleanup *cleanups;
1605 line = last_line_listed + 1;
1607 msg = (char *) re_comp (regex);
1609 error (("%s"), msg);
1611 if (current_source_symtab == 0)
1612 select_source_symtab (0);
1614 desc = open_source_file (current_source_symtab);
1616 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1617 cleanups = make_cleanup_close (desc);
1619 if (current_source_symtab->line_charpos == 0)
1620 find_source_lines (current_source_symtab, desc);
1622 if (line < 1 || line > current_source_symtab->nlines)
1623 error (_("Expression not found"));
1625 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1626 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1628 discard_cleanups (cleanups);
1629 stream = fdopen (desc, FDOPEN_MODE);
1631 cleanups = make_cleanup_fclose (stream);
1634 static char *buf = NULL;
1636 int cursize, newsize;
1639 buf = xmalloc (cursize);
1648 if (p - buf == cursize)
1650 newsize = cursize + cursize / 2;
1651 buf = xrealloc (buf, newsize);
1656 while (c != '\n' && (c = fgetc (stream)) >= 0);
1658 /* Remove the \r, if any, at the end of the line, otherwise
1659 regular expressions that end with $ or \n won't work. */
1660 if (p - buf > 1 && p[-2] == '\r')
1666 /* We now have a source line in buf, null terminate and match. */
1668 if (re_exec (buf) > 0)
1671 do_cleanups (cleanups);
1672 print_source_lines (current_source_symtab, line, line + 1, 0);
1673 set_internalvar_integer (lookup_internalvar ("_"), line);
1674 current_source_line = max (line - lines_to_list / 2, 1);
1680 printf_filtered (_("Expression not found\n"));
1681 do_cleanups (cleanups);
1685 reverse_search_command (char *regex, int from_tty)
1692 struct cleanup *cleanups;
1694 line = last_line_listed - 1;
1696 msg = (char *) re_comp (regex);
1698 error (("%s"), msg);
1700 if (current_source_symtab == 0)
1701 select_source_symtab (0);
1703 desc = open_source_file (current_source_symtab);
1705 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1706 cleanups = make_cleanup_close (desc);
1708 if (current_source_symtab->line_charpos == 0)
1709 find_source_lines (current_source_symtab, desc);
1711 if (line < 1 || line > current_source_symtab->nlines)
1712 error (_("Expression not found"));
1714 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1715 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
1717 discard_cleanups (cleanups);
1718 stream = fdopen (desc, FDOPEN_MODE);
1720 cleanups = make_cleanup_fclose (stream);
1723 /* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1724 char buf[4096]; /* Should be reasonable??? */
1734 while (c != '\n' && (c = fgetc (stream)) >= 0);
1736 /* Remove the \r, if any, at the end of the line, otherwise
1737 regular expressions that end with $ or \n won't work. */
1738 if (p - buf > 1 && p[-2] == '\r')
1744 /* We now have a source line in buf; null terminate and match. */
1746 if (re_exec (buf) > 0)
1749 do_cleanups (cleanups);
1750 print_source_lines (current_source_symtab, line, line + 1, 0);
1751 set_internalvar_integer (lookup_internalvar ("_"), line);
1752 current_source_line = max (line - lines_to_list / 2, 1);
1756 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1758 const char *filename;
1760 do_cleanups (cleanups);
1761 filename = symtab_to_filename_for_display (current_source_symtab);
1762 perror_with_name (filename);
1766 printf_filtered (_("Expression not found\n"));
1767 do_cleanups (cleanups);
1771 /* If the last character of PATH is a directory separator, then strip it. */
1774 strip_trailing_directory_separator (char *path)
1776 const int last = strlen (path) - 1;
1779 return; /* No stripping is needed if PATH is the empty string. */
1781 if (IS_DIR_SEPARATOR (path[last]))
1785 /* Return the path substitution rule that matches FROM.
1786 Return NULL if no rule matches. */
1788 static struct substitute_path_rule *
1789 find_substitute_path_rule (const char *from)
1791 struct substitute_path_rule *rule = substitute_path_rules;
1793 while (rule != NULL)
1795 if (FILENAME_CMP (rule->from, from) == 0)
1803 /* Add a new substitute-path rule at the end of the current list of rules.
1804 The new rule will replace FROM into TO. */
1807 add_substitute_path_rule (char *from, char *to)
1809 struct substitute_path_rule *rule;
1810 struct substitute_path_rule *new_rule;
1812 new_rule = xmalloc (sizeof (struct substitute_path_rule));
1813 new_rule->from = xstrdup (from);
1814 new_rule->to = xstrdup (to);
1815 new_rule->next = NULL;
1817 /* If the list of rules are empty, then insert the new rule
1818 at the head of the list. */
1820 if (substitute_path_rules == NULL)
1822 substitute_path_rules = new_rule;
1826 /* Otherwise, skip to the last rule in our list and then append
1829 rule = substitute_path_rules;
1830 while (rule->next != NULL)
1833 rule->next = new_rule;
1836 /* Remove the given source path substitution rule from the current list
1837 of rules. The memory allocated for that rule is also deallocated. */
1840 delete_substitute_path_rule (struct substitute_path_rule *rule)
1842 if (rule == substitute_path_rules)
1843 substitute_path_rules = rule->next;
1846 struct substitute_path_rule *prev = substitute_path_rules;
1848 while (prev != NULL && prev->next != rule)
1851 gdb_assert (prev != NULL);
1853 prev->next = rule->next;
1861 /* Implement the "show substitute-path" command. */
1864 show_substitute_path_command (char *args, int from_tty)
1866 struct substitute_path_rule *rule = substitute_path_rules;
1869 struct cleanup *cleanup;
1871 argv = gdb_buildargv (args);
1872 cleanup = make_cleanup_freeargv (argv);
1874 /* We expect zero or one argument. */
1876 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1877 error (_("Too many arguments in command"));
1879 if (argv != NULL && argv[0] != NULL)
1882 /* Print the substitution rules. */
1886 (_("Source path substitution rule matching `%s':\n"), from);
1888 printf_filtered (_("List of all source path substitution rules:\n"));
1890 while (rule != NULL)
1892 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
1893 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1897 do_cleanups (cleanup);
1900 /* Implement the "unset substitute-path" command. */
1903 unset_substitute_path_command (char *args, int from_tty)
1905 struct substitute_path_rule *rule = substitute_path_rules;
1906 char **argv = gdb_buildargv (args);
1909 struct cleanup *cleanup;
1911 /* This function takes either 0 or 1 argument. */
1913 cleanup = make_cleanup_freeargv (argv);
1914 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1915 error (_("Incorrect usage, too many arguments in command"));
1917 if (argv != NULL && argv[0] != NULL)
1920 /* If the user asked for all the rules to be deleted, ask him
1921 to confirm and give him a chance to abort before the action
1925 && !query (_("Delete all source path substitution rules? ")))
1926 error (_("Canceled"));
1928 /* Delete the rule matching the argument. No argument means that
1929 all rules should be deleted. */
1931 while (rule != NULL)
1933 struct substitute_path_rule *next = rule->next;
1935 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1937 delete_substitute_path_rule (rule);
1944 /* If the user asked for a specific rule to be deleted but
1945 we could not find it, then report an error. */
1947 if (from != NULL && !rule_found)
1948 error (_("No substitution rule defined for `%s'"), from);
1950 forget_cached_source_info ();
1952 do_cleanups (cleanup);
1955 /* Add a new source path substitution rule. */
1958 set_substitute_path_command (char *args, int from_tty)
1961 struct substitute_path_rule *rule;
1962 struct cleanup *cleanup;
1964 argv = gdb_buildargv (args);
1965 cleanup = make_cleanup_freeargv (argv);
1967 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1968 error (_("Incorrect usage, too few arguments in command"));
1970 if (argv[2] != NULL)
1971 error (_("Incorrect usage, too many arguments in command"));
1973 if (*(argv[0]) == '\0')
1974 error (_("First argument must be at least one character long"));
1976 /* Strip any trailing directory separator character in either FROM
1977 or TO. The substitution rule already implicitly contains them. */
1978 strip_trailing_directory_separator (argv[0]);
1979 strip_trailing_directory_separator (argv[1]);
1981 /* If a rule with the same "from" was previously defined, then
1982 delete it. This new rule replaces it. */
1984 rule = find_substitute_path_rule (argv[0]);
1986 delete_substitute_path_rule (rule);
1988 /* Insert the new substitution rule. */
1990 add_substitute_path_rule (argv[0], argv[1]);
1991 forget_cached_source_info ();
1993 do_cleanups (cleanup);
1998 _initialize_source (void)
2000 struct cmd_list_element *c;
2002 current_source_symtab = 0;
2003 init_source_path ();
2005 /* The intention is to use POSIX Basic Regular Expressions.
2006 Always use the GNU regex routine for consistency across all hosts.
2007 Our current GNU regex.c does not have all the POSIX features, so this is
2008 just an approximation. */
2009 re_set_syntax (RE_SYNTAX_GREP);
2011 c = add_cmd ("directory", class_files, directory_command, _("\
2012 Add directory DIR to beginning of search path for source files.\n\
2013 Forget cached info on source file locations and line positions.\n\
2014 DIR can also be $cwd for the current working directory, or $cdir for the\n\
2015 directory in which the source file was compiled into object code.\n\
2016 With no argument, reset the search path to $cdir:$cwd, the default."),
2020 add_com_alias ("use", "directory", class_files, 0);
2022 set_cmd_completer (c, filename_completer);
2024 add_setshow_optional_filename_cmd ("directories",
2028 Set the search path for finding source files."),
2030 Show the search path for finding source files."),
2032 $cwd in the path means the current working directory.\n\
2033 $cdir in the path means the compilation directory of the source file.\n\
2034 GDB ensures the search path always ends with $cdir:$cwd by\n\
2035 appending these directories if necessary.\n\
2036 Setting the value to an empty string sets it to $cdir:$cwd, the default."),
2037 set_directories_command,
2038 show_directories_command,
2039 &setlist, &showlist);
2043 add_com_alias ("D", "directory", class_files, 0);
2044 add_cmd ("ld", no_class, show_directories_1, _("\
2045 Current search path for finding source files.\n\
2046 $cwd in the path means the current working directory.\n\
2047 $cdir in the path means the compilation directory of the source file."),
2051 add_info ("source", source_info,
2052 _("Information about the current source file."));
2054 add_info ("line", line_info, _("\
2055 Core addresses of the code for a source line.\n\
2056 Line can be specified as\n\
2057 LINENUM, to list around that line in current file,\n\
2058 FILE:LINENUM, to list around that line in that file,\n\
2059 FUNCTION, to list around beginning of that function,\n\
2060 FILE:FUNCTION, to distinguish among like-named static functions.\n\
2061 Default is to describe the last source line that was listed.\n\n\
2062 This sets the default address for \"x\" to the line's first instruction\n\
2063 so that \"x/i\" suffices to start examining the machine code.\n\
2064 The address is also stored as the value of \"$_\"."));
2066 add_com ("forward-search", class_files, forward_search_command, _("\
2067 Search for regular expression (see regex(3)) from last line listed.\n\
2068 The matching line number is also stored as the value of \"$_\"."));
2069 add_com_alias ("search", "forward-search", class_files, 0);
2070 add_com_alias ("fo", "forward-search", class_files, 1);
2072 add_com ("reverse-search", class_files, reverse_search_command, _("\
2073 Search backward for regular expression (see regex(3)) from last line listed.\n\
2074 The matching line number is also stored as the value of \"$_\"."));
2075 add_com_alias ("rev", "reverse-search", class_files, 1);
2079 add_com_alias ("/", "forward-search", class_files, 0);
2080 add_com_alias ("?", "reverse-search", class_files, 0);
2083 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
2084 Set number of source lines gdb will list by default."), _("\
2085 Show number of source lines gdb will list by default."), _("\
2086 Use this to choose how many source lines the \"list\" displays (unless\n\
2087 the \"list\" argument explicitly specifies some other number).\n\
2088 A value of \"unlimited\", or zero, means there's no limit."),
2091 &setlist, &showlist);
2093 add_cmd ("substitute-path", class_files, set_substitute_path_command,
2095 Usage: set substitute-path FROM TO\n\
2096 Add a substitution rule replacing FROM into TO in source file names.\n\
2097 If a substitution rule was previously set for FROM, the old rule\n\
2098 is replaced by the new one."),
2101 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2103 Usage: unset substitute-path [FROM]\n\
2104 Delete the rule for substituting FROM in source file names. If FROM\n\
2105 is not specified, all substituting rules are deleted.\n\
2106 If the debugger cannot find a rule for FROM, it will display a warning."),
2109 add_cmd ("substitute-path", class_files, show_substitute_path_command,
2111 Usage: show substitute-path [FROM]\n\
2112 Print the rule for substituting FROM in source file names. If FROM\n\
2113 is not specified, print all substitution rules."),
2116 add_setshow_enum_cmd ("filename-display", class_files,
2117 filename_display_kind_names,
2118 &filename_display_string, _("\
2119 Set how to display filenames."), _("\
2120 Show how to display filenames."), _("\
2121 filename-display can be:\n\
2122 basename - display only basename of a filename\n\
2123 relative - display a filename relative to the compilation directory\n\
2124 absolute - display an absolute filename\n\
2125 By default, relative filenames are displayed."),
2127 show_filename_display_string,
2128 &setlist, &showlist);