]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* List lines of source files for GDB, the GNU debugger. |
61baf725 | 2 | Copyright (C) 1986-2017 Free Software Foundation, Inc. |
c906108c | 3 | |
c5aa993b | 4 | This file is part of GDB. |
c906108c | 5 | |
c5aa993b JM |
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 | |
a9762ec7 | 8 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 9 | (at your option) any later version. |
c906108c | 10 | |
c5aa993b JM |
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. | |
c906108c | 15 | |
c5aa993b | 16 | You should have received a copy of the GNU General Public License |
a9762ec7 | 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
18 | |
19 | #include "defs.h" | |
5af949e3 | 20 | #include "arch-utils.h" |
c906108c SS |
21 | #include "symtab.h" |
22 | #include "expression.h" | |
23 | #include "language.h" | |
24 | #include "command.h" | |
c2c6d25f | 25 | #include "source.h" |
c906108c SS |
26 | #include "gdbcmd.h" |
27 | #include "frame.h" | |
28 | #include "value.h" | |
614c279d | 29 | #include "filestuff.h" |
c906108c SS |
30 | |
31 | #include <sys/types.h> | |
53ce3c39 | 32 | #include <sys/stat.h> |
c906108c | 33 | #include <fcntl.h> |
c906108c | 34 | #include "gdbcore.h" |
88987551 | 35 | #include "gdb_regex.h" |
c906108c SS |
36 | #include "symfile.h" |
37 | #include "objfiles.h" | |
38 | #include "annotate.h" | |
39 | #include "gdbtypes.h" | |
c5f0f3d0 | 40 | #include "linespec.h" |
fe4e3eb8 | 41 | #include "filenames.h" /* for DOSish file names */ |
d75b5104 | 42 | #include "completer.h" |
8b93c638 | 43 | #include "ui-out.h" |
dbda9972 | 44 | #include "readline/readline.h" |
8d297bbf | 45 | #include "common/enum-flags.h" |
325fac50 | 46 | #include <algorithm> |
c906108c | 47 | |
c906108c SS |
48 | #define OPEN_MODE (O_RDONLY | O_BINARY) |
49 | #define FDOPEN_MODE FOPEN_RB | |
50 | ||
c378eb4e | 51 | /* Prototypes for exported functions. */ |
c906108c | 52 | |
a14ed312 | 53 | void _initialize_source (void); |
c906108c | 54 | |
c378eb4e | 55 | /* Prototypes for local functions. */ |
c906108c | 56 | |
a14ed312 | 57 | static int get_filename_and_charpos (struct symtab *, char **); |
c906108c | 58 | |
a14ed312 | 59 | static void reverse_search_command (char *, int); |
c906108c | 60 | |
a14ed312 | 61 | static void forward_search_command (char *, int); |
c906108c | 62 | |
a14ed312 | 63 | static void line_info (char *, int); |
c906108c | 64 | |
a14ed312 | 65 | static void source_info (char *, int); |
c906108c | 66 | |
c906108c SS |
67 | /* Path of directories to search for source files. |
68 | Same format as the PATH environment variable's value. */ | |
69 | ||
70 | char *source_path; | |
71 | ||
2f61ca93 JB |
72 | /* Support for source path substitution commands. */ |
73 | ||
74 | struct substitute_path_rule | |
75 | { | |
76 | char *from; | |
77 | char *to; | |
78 | struct substitute_path_rule *next; | |
79 | }; | |
80 | ||
81 | static struct substitute_path_rule *substitute_path_rules = NULL; | |
82 | ||
c906108c SS |
83 | /* Symtab of default file for listing lines of. */ |
84 | ||
0378c332 | 85 | static struct symtab *current_source_symtab; |
c906108c SS |
86 | |
87 | /* Default next line to list. */ | |
88 | ||
0378c332 | 89 | static int current_source_line; |
c906108c | 90 | |
6c95b8df PA |
91 | static struct program_space *current_source_pspace; |
92 | ||
c906108c SS |
93 | /* Default number of lines to print with commands like "list". |
94 | This is based on guessing how many long (i.e. more than chars_per_line | |
95 | characters) lines there will be. To be completely correct, "list" | |
96 | and friends should be rewritten to count characters and see where | |
97 | things are wrapping, but that would be a fair amount of work. */ | |
98 | ||
f43f8571 | 99 | static int lines_to_list = 10; |
920d2a44 AC |
100 | static void |
101 | show_lines_to_list (struct ui_file *file, int from_tty, | |
102 | struct cmd_list_element *c, const char *value) | |
103 | { | |
3e43a32a MS |
104 | fprintf_filtered (file, |
105 | _("Number of source lines gdb " | |
106 | "will list by default is %s.\n"), | |
920d2a44 AC |
107 | value); |
108 | } | |
c906108c | 109 | |
1b56eb55 JK |
110 | /* Possible values of 'set filename-display'. */ |
111 | static const char filename_display_basename[] = "basename"; | |
112 | static const char filename_display_relative[] = "relative"; | |
113 | static const char filename_display_absolute[] = "absolute"; | |
114 | ||
115 | static const char *const filename_display_kind_names[] = { | |
116 | filename_display_basename, | |
117 | filename_display_relative, | |
118 | filename_display_absolute, | |
119 | NULL | |
120 | }; | |
121 | ||
122 | static const char *filename_display_string = filename_display_relative; | |
123 | ||
124 | static void | |
125 | show_filename_display_string (struct ui_file *file, int from_tty, | |
126 | struct cmd_list_element *c, const char *value) | |
127 | { | |
128 | fprintf_filtered (file, _("Filenames are displayed as \"%s\".\n"), value); | |
129 | } | |
130 | ||
c906108c SS |
131 | /* Line number of last line printed. Default for various commands. |
132 | current_source_line is usually, but not always, the same as this. */ | |
133 | ||
134 | static int last_line_listed; | |
135 | ||
5166082f PA |
136 | /* First line number listed by last listing command. If 0, then no |
137 | source lines have yet been listed since the last time the current | |
138 | source line was changed. */ | |
c906108c SS |
139 | |
140 | static int first_line_listed; | |
141 | ||
142 | /* Saves the name of the last source file visited and a possible error code. | |
c378eb4e | 143 | Used to prevent repeating annoying "No such file or directories" msgs. */ |
c906108c SS |
144 | |
145 | static struct symtab *last_source_visited = NULL; | |
146 | static int last_source_error = 0; | |
c906108c | 147 | \f |
0378c332 FN |
148 | /* Return the first line listed by print_source_lines. |
149 | Used by command interpreters to request listing from | |
c378eb4e | 150 | a previous point. */ |
0378c332 FN |
151 | |
152 | int | |
153 | get_first_line_listed (void) | |
154 | { | |
155 | return first_line_listed; | |
156 | } | |
157 | ||
5166082f PA |
158 | /* Clear line listed range. This makes the next "list" center the |
159 | printed source lines around the current source line. */ | |
160 | ||
161 | static void | |
162 | clear_lines_listed_range (void) | |
163 | { | |
164 | first_line_listed = 0; | |
165 | last_line_listed = 0; | |
166 | } | |
167 | ||
0378c332 FN |
168 | /* Return the default number of lines to print with commands like the |
169 | cli "list". The caller of print_source_lines must use this to | |
170 | calculate the end line and use it in the call to print_source_lines | |
c378eb4e | 171 | as it does not automatically use this value. */ |
0378c332 FN |
172 | |
173 | int | |
174 | get_lines_to_list (void) | |
175 | { | |
176 | return lines_to_list; | |
177 | } | |
178 | ||
179 | /* Return the current source file for listing and next line to list. | |
c378eb4e | 180 | NOTE: The returned sal pc and end fields are not valid. */ |
0378c332 FN |
181 | |
182 | struct symtab_and_line | |
183 | get_current_source_symtab_and_line (void) | |
184 | { | |
245c7f48 | 185 | struct symtab_and_line cursal = { 0 }; |
0378c332 | 186 | |
6c95b8df | 187 | cursal.pspace = current_source_pspace; |
0378c332 FN |
188 | cursal.symtab = current_source_symtab; |
189 | cursal.line = current_source_line; | |
53cb0458 FN |
190 | cursal.pc = 0; |
191 | cursal.end = 0; | |
0378c332 FN |
192 | |
193 | return cursal; | |
194 | } | |
195 | ||
53cb0458 FN |
196 | /* If the current source file for listing is not set, try and get a default. |
197 | Usually called before get_current_source_symtab_and_line() is called. | |
0378c332 | 198 | It may err out if a default cannot be determined. |
53cb0458 FN |
199 | We must be cautious about where it is called, as it can recurse as the |
200 | process of determining a new default may call the caller! | |
201 | Use get_current_source_symtab_and_line only to get whatever | |
c378eb4e | 202 | we have without erroring out or trying to get a default. */ |
0378c332 | 203 | |
53cb0458 FN |
204 | void |
205 | set_default_source_symtab_and_line (void) | |
0378c332 | 206 | { |
0378c332 | 207 | if (!have_full_symbols () && !have_partial_symbols ()) |
8a3fe4f8 | 208 | error (_("No symbol table is loaded. Use the \"file\" command.")); |
0378c332 | 209 | |
c378eb4e | 210 | /* Pull in a current source symtab if necessary. */ |
0378c332 FN |
211 | if (current_source_symtab == 0) |
212 | select_source_symtab (0); | |
0378c332 FN |
213 | } |
214 | ||
215 | /* Return the current default file for listing and next line to list | |
216 | (the returned sal pc and end fields are not valid.) | |
53cb0458 | 217 | and set the current default to whatever is in SAL. |
c378eb4e | 218 | NOTE: The returned sal pc and end fields are not valid. */ |
0378c332 FN |
219 | |
220 | struct symtab_and_line | |
53cb0458 | 221 | set_current_source_symtab_and_line (const struct symtab_and_line *sal) |
0378c332 | 222 | { |
245c7f48 | 223 | struct symtab_and_line cursal = { 0 }; |
6c95b8df PA |
224 | |
225 | cursal.pspace = current_source_pspace; | |
0378c332 FN |
226 | cursal.symtab = current_source_symtab; |
227 | cursal.line = current_source_line; | |
6c95b8df PA |
228 | cursal.pc = 0; |
229 | cursal.end = 0; | |
0378c332 | 230 | |
6c95b8df | 231 | current_source_pspace = sal->pspace; |
0378c332 FN |
232 | current_source_symtab = sal->symtab; |
233 | current_source_line = sal->line; | |
6c95b8df | 234 | |
5166082f PA |
235 | /* Force the next "list" to center around the current line. */ |
236 | clear_lines_listed_range (); | |
237 | ||
0378c332 FN |
238 | return cursal; |
239 | } | |
240 | ||
c378eb4e | 241 | /* Reset any information stored about a default file and line to print. */ |
0378c332 FN |
242 | |
243 | void | |
244 | clear_current_source_symtab_and_line (void) | |
245 | { | |
246 | current_source_symtab = 0; | |
247 | current_source_line = 0; | |
248 | } | |
c5aa993b | 249 | |
c906108c SS |
250 | /* Set the source file default for the "list" command to be S. |
251 | ||
252 | If S is NULL, and we don't have a default, find one. This | |
253 | should only be called when the user actually tries to use the | |
254 | default, since we produce an error if we can't find a reasonable | |
255 | default. Also, since this can cause symbols to be read, doing it | |
256 | before we need to would make things slower than necessary. */ | |
257 | ||
258 | void | |
aa1ee363 | 259 | select_source_symtab (struct symtab *s) |
c906108c SS |
260 | { |
261 | struct symtabs_and_lines sals; | |
262 | struct symtab_and_line sal; | |
c906108c | 263 | struct objfile *ofp; |
43f3e411 | 264 | struct compunit_symtab *cu; |
c5aa993b | 265 | |
c906108c SS |
266 | if (s) |
267 | { | |
268 | current_source_symtab = s; | |
269 | current_source_line = 1; | |
6c95b8df | 270 | current_source_pspace = SYMTAB_PSPACE (s); |
c906108c SS |
271 | return; |
272 | } | |
273 | ||
274 | if (current_source_symtab) | |
275 | return; | |
276 | ||
277 | /* Make the default place to list be the function `main' | |
278 | if one exists. */ | |
d12307c1 | 279 | if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0).symbol) |
c906108c | 280 | { |
39cf75f7 DE |
281 | sals = decode_line_with_current_source (main_name (), |
282 | DECODE_LINE_FUNFIRSTLINE); | |
c906108c | 283 | sal = sals.sals[0]; |
b8c9b27d | 284 | xfree (sals.sals); |
6c95b8df | 285 | current_source_pspace = sal.pspace; |
c906108c | 286 | current_source_symtab = sal.symtab; |
325fac50 | 287 | current_source_line = std::max (sal.line - (lines_to_list - 1), 1); |
c906108c | 288 | if (current_source_symtab) |
c5aa993b | 289 | return; |
c906108c | 290 | } |
c5aa993b | 291 | |
8340a3fb LM |
292 | /* Alright; find the last file in the symtab list (ignoring .h's |
293 | and namespace symtabs). */ | |
c906108c SS |
294 | |
295 | current_source_line = 1; | |
296 | ||
43f3e411 | 297 | ALL_FILETABS (ofp, cu, s) |
c906108c | 298 | { |
712a2e6d DE |
299 | const char *name = s->filename; |
300 | int len = strlen (name); | |
301 | ||
302 | if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0 | |
303 | || strcmp (name, "<<C++-namespaces>>") == 0))) | |
c906108c | 304 | { |
712a2e6d DE |
305 | current_source_pspace = current_program_space; |
306 | current_source_symtab = s; | |
c906108c SS |
307 | } |
308 | } | |
6c95b8df | 309 | |
c906108c SS |
310 | if (current_source_symtab) |
311 | return; | |
312 | ||
6c95b8df | 313 | ALL_OBJFILES (ofp) |
ccefe4c4 TT |
314 | { |
315 | if (ofp->sf) | |
316 | s = ofp->sf->qf->find_last_source_symtab (ofp); | |
317 | if (s) | |
318 | current_source_symtab = s; | |
319 | } | |
c906108c SS |
320 | if (current_source_symtab) |
321 | return; | |
322 | ||
8a3fe4f8 | 323 | error (_("Can't find a default source file")); |
c906108c SS |
324 | } |
325 | \f | |
99e7ae30 DE |
326 | /* Handler for "set directories path-list" command. |
327 | "set dir mumble" doesn't prepend paths, it resets the entire | |
328 | path list. The theory is that set(show(dir)) should be a no-op. */ | |
329 | ||
330 | static void | |
331 | set_directories_command (char *args, int from_tty, struct cmd_list_element *c) | |
332 | { | |
333 | /* This is the value that was set. | |
334 | It needs to be processed to maintain $cdir:$cwd and remove dups. */ | |
335 | char *set_path = source_path; | |
336 | ||
337 | /* We preserve the invariant that $cdir:$cwd begins life at the end of | |
338 | the list by calling init_source_path. If they appear earlier in | |
339 | SET_PATH then mod_path will move them appropriately. | |
340 | mod_path will also remove duplicates. */ | |
341 | init_source_path (); | |
342 | if (*set_path != '\0') | |
343 | mod_path (set_path, &source_path); | |
344 | ||
345 | xfree (set_path); | |
346 | } | |
347 | ||
348 | /* Print the list of source directories. | |
349 | This is used by the "ld" command, so it has the signature of a command | |
350 | function. */ | |
351 | ||
c906108c | 352 | static void |
99e7ae30 | 353 | show_directories_1 (char *ignore, int from_tty) |
c906108c SS |
354 | { |
355 | puts_filtered ("Source directories searched: "); | |
356 | puts_filtered (source_path); | |
357 | puts_filtered ("\n"); | |
358 | } | |
359 | ||
99e7ae30 DE |
360 | /* Handler for "show directories" command. */ |
361 | ||
362 | static void | |
363 | show_directories_command (struct ui_file *file, int from_tty, | |
364 | struct cmd_list_element *c, const char *value) | |
365 | { | |
366 | show_directories_1 (NULL, from_tty); | |
367 | } | |
368 | ||
00174a86 TT |
369 | /* Forget line positions and file names for the symtabs in a |
370 | particular objfile. */ | |
371 | ||
372 | void | |
373 | forget_cached_source_info_for_objfile (struct objfile *objfile) | |
374 | { | |
43f3e411 | 375 | struct compunit_symtab *cu; |
00174a86 TT |
376 | struct symtab *s; |
377 | ||
43f3e411 | 378 | ALL_OBJFILE_FILETABS (objfile, cu, s) |
00174a86 TT |
379 | { |
380 | if (s->line_charpos != NULL) | |
381 | { | |
382 | xfree (s->line_charpos); | |
383 | s->line_charpos = NULL; | |
384 | } | |
385 | if (s->fullname != NULL) | |
386 | { | |
387 | xfree (s->fullname); | |
388 | s->fullname = NULL; | |
389 | } | |
00174a86 | 390 | } |
6f809020 DE |
391 | |
392 | if (objfile->sf) | |
393 | objfile->sf->qf->forget_cached_source_info (objfile); | |
00174a86 TT |
394 | } |
395 | ||
c906108c SS |
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. */ | |
399 | ||
400 | void | |
fba45db2 | 401 | forget_cached_source_info (void) |
c906108c | 402 | { |
6c95b8df | 403 | struct program_space *pspace; |
52f0bd74 | 404 | struct objfile *objfile; |
c906108c | 405 | |
6c95b8df PA |
406 | ALL_PSPACES (pspace) |
407 | ALL_PSPACE_OBJFILES (pspace, objfile) | |
c906108c | 408 | { |
00174a86 | 409 | forget_cached_source_info_for_objfile (objfile); |
c906108c | 410 | } |
c4e86dd4 DJ |
411 | |
412 | last_source_visited = NULL; | |
c906108c SS |
413 | } |
414 | ||
415 | void | |
fba45db2 | 416 | init_source_path (void) |
c906108c SS |
417 | { |
418 | char buf[20]; | |
419 | ||
08850b56 | 420 | xsnprintf (buf, sizeof (buf), "$cdir%c$cwd", DIRNAME_SEPARATOR); |
4fcf66da | 421 | source_path = xstrdup (buf); |
c906108c SS |
422 | forget_cached_source_info (); |
423 | } | |
424 | ||
425 | /* Add zero or more directories to the front of the source path. */ | |
c5aa993b | 426 | |
28da1647 | 427 | static void |
fba45db2 | 428 | directory_command (char *dirname, int from_tty) |
c906108c SS |
429 | { |
430 | dont_repeat (); | |
c378eb4e | 431 | /* FIXME, this goes to "delete dir"... */ |
c906108c SS |
432 | if (dirname == 0) |
433 | { | |
80618b99 | 434 | if (!from_tty || query (_("Reinitialize source path to empty? "))) |
c906108c | 435 | { |
b8c9b27d | 436 | xfree (source_path); |
c906108c SS |
437 | init_source_path (); |
438 | } | |
439 | } | |
440 | else | |
441 | { | |
442 | mod_path (dirname, &source_path); | |
c4e86dd4 | 443 | forget_cached_source_info (); |
c906108c SS |
444 | } |
445 | if (from_tty) | |
99e7ae30 | 446 | show_directories_1 ((char *) 0, from_tty); |
c906108c SS |
447 | } |
448 | ||
13d35ae5 AS |
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. */ | |
451 | ||
452 | void | |
453 | directory_switch (char *dirname, int from_tty) | |
454 | { | |
455 | add_path (dirname, &source_path, 0); | |
456 | } | |
457 | ||
c906108c SS |
458 | /* Add zero or more directories to the front of an arbitrary path. */ |
459 | ||
460 | void | |
fba45db2 | 461 | mod_path (char *dirname, char **which_path) |
c04e0a08 JJ |
462 | { |
463 | add_path (dirname, which_path, 1); | |
464 | } | |
465 | ||
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 | |
c378eb4e | 470 | as space or tab. */ |
c04e0a08 JJ |
471 | |
472 | void | |
473 | add_path (char *dirname, char **which_path, int parse_separators) | |
c906108c SS |
474 | { |
475 | char *old = *which_path; | |
476 | int prefix = 0; | |
e4ab2fad JK |
477 | VEC (char_ptr) *dir_vec = NULL; |
478 | struct cleanup *back_to; | |
479 | int ix; | |
480 | char *name; | |
c906108c SS |
481 | |
482 | if (dirname == 0) | |
483 | return; | |
484 | ||
13d35ae5 AS |
485 | if (parse_separators) |
486 | { | |
e4ab2fad JK |
487 | char **argv, **argvp; |
488 | ||
13d35ae5 | 489 | /* This will properly parse the space and tab separators |
e4ab2fad | 490 | and any quotes that may exist. */ |
d1a41061 | 491 | argv = gdb_buildargv (dirname); |
13d35ae5 | 492 | |
e4ab2fad JK |
493 | for (argvp = argv; *argvp; argvp++) |
494 | dirnames_to_char_ptr_vec_append (&dir_vec, *argvp); | |
495 | ||
496 | freeargv (argv); | |
13d35ae5 AS |
497 | } |
498 | else | |
e4ab2fad JK |
499 | VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname)); |
500 | back_to = make_cleanup_free_char_ptr_vec (dir_vec); | |
c906108c | 501 | |
e4ab2fad | 502 | for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix) |
c906108c | 503 | { |
aa1ee363 | 504 | char *p; |
c906108c SS |
505 | struct stat st; |
506 | ||
e4ab2fad JK |
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); | |
13d35ae5 AS |
511 | |
512 | while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */ | |
c3690141 | 513 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
7be570e7 | 514 | /* On MS-DOS and MS-Windows, h:\ is different from h: */ |
13d35ae5 | 515 | && !(p == name + 3 && name[1] == ':') /* "d:/" */ |
7be570e7 | 516 | #endif |
13d35ae5 | 517 | && IS_DIR_SEPARATOR (p[-1])) |
c378eb4e | 518 | /* Sigh. "foo/" => "foo" */ |
c906108c | 519 | --p; |
c906108c SS |
520 | *p = '\0'; |
521 | ||
7be570e7 | 522 | while (p > name && p[-1] == '.') |
c906108c SS |
523 | { |
524 | if (p - name == 1) | |
525 | { | |
526 | /* "." => getwd (). */ | |
527 | name = current_directory; | |
528 | goto append; | |
529 | } | |
fe4e3eb8 | 530 | else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2])) |
c906108c SS |
531 | { |
532 | if (p - name == 2) | |
533 | { | |
534 | /* "/." => "/". */ | |
535 | *--p = '\0'; | |
536 | goto append; | |
537 | } | |
538 | else | |
539 | { | |
540 | /* "...foo/." => "...foo". */ | |
541 | p -= 2; | |
542 | *p = '\0'; | |
543 | continue; | |
544 | } | |
545 | } | |
546 | else | |
547 | break; | |
548 | } | |
549 | ||
550 | if (name[0] == '~') | |
551 | name = tilde_expand (name); | |
c3690141 | 552 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
fe4e3eb8 | 553 | else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */ |
1754f103 | 554 | name = concat (name, ".", (char *)NULL); |
7be570e7 | 555 | #endif |
fe4e3eb8 | 556 | else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$') |
1754f103 | 557 | name = concat (current_directory, SLASH_STRING, name, (char *)NULL); |
c906108c SS |
558 | else |
559 | name = savestring (name, p - name); | |
b8c9b27d | 560 | make_cleanup (xfree, name); |
c906108c SS |
561 | |
562 | /* Unless it's a variable, check existence. */ | |
c5aa993b JM |
563 | if (name[0] != '$') |
564 | { | |
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. | |
568 | ||
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 | |
573 | harmless. */ | |
574 | if (stat (name, &st) < 0) | |
575 | { | |
576 | int save_errno = errno; | |
433759f7 | 577 | |
c5aa993b JM |
578 | fprintf_unfiltered (gdb_stderr, "Warning: "); |
579 | print_sys_errmsg (name, save_errno); | |
580 | } | |
581 | else if ((st.st_mode & S_IFMT) != S_IFDIR) | |
8a3fe4f8 | 582 | warning (_("%s is not a directory."), name); |
c5aa993b | 583 | } |
c906108c SS |
584 | |
585 | append: | |
586 | { | |
aa1ee363 | 587 | unsigned int len = strlen (name); |
5ee4ed9f | 588 | char tinybuf[2]; |
c906108c SS |
589 | |
590 | p = *which_path; | |
5e3f4fab | 591 | while (1) |
c906108c | 592 | { |
5e3f4fab EBM |
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)) | |
598 | { | |
599 | /* Found it in the search path, remove old copy. */ | |
600 | if (p > *which_path) | |
601 | { | |
602 | /* Back over leading separator. */ | |
603 | p--; | |
604 | } | |
605 | if (prefix > p - *which_path) | |
606 | { | |
607 | /* Same dir twice in one cmd. */ | |
608 | goto skip_dup; | |
609 | } | |
610 | /* Copy from next '\0' or ':'. */ | |
611 | memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1); | |
612 | } | |
613 | p = strchr (p, DIRNAME_SEPARATOR); | |
614 | if (p != 0) | |
615 | ++p; | |
616 | else | |
617 | break; | |
c906108c | 618 | } |
c906108c | 619 | |
5ee4ed9f JK |
620 | tinybuf[0] = DIRNAME_SEPARATOR; |
621 | tinybuf[1] = '\0'; | |
c906108c | 622 | |
5ee4ed9f JK |
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 | |
625 | more. */ | |
626 | if (prefix) | |
627 | { | |
628 | char *temp, c; | |
629 | ||
630 | c = old[prefix]; | |
631 | old[prefix] = '\0'; | |
632 | temp = concat (old, tinybuf, name, (char *)NULL); | |
633 | old[prefix] = c; | |
634 | *which_path = concat (temp, "", &old[prefix], (char *) NULL); | |
635 | prefix = strlen (temp); | |
636 | xfree (temp); | |
637 | } | |
638 | else | |
639 | { | |
640 | *which_path = concat (name, (old[0] ? tinybuf : old), | |
641 | old, (char *)NULL); | |
642 | prefix = strlen (name); | |
c906108c | 643 | } |
5ee4ed9f JK |
644 | xfree (old); |
645 | old = *which_path; | |
c906108c | 646 | } |
82ae4854 | 647 | skip_dup: |
b27cf2b3 | 648 | ; |
c5aa993b | 649 | } |
e4ab2fad JK |
650 | |
651 | do_cleanups (back_to); | |
c906108c SS |
652 | } |
653 | ||
654 | ||
655 | static void | |
fba45db2 | 656 | source_info (char *ignore, int from_tty) |
c906108c | 657 | { |
52f0bd74 | 658 | struct symtab *s = current_source_symtab; |
b6577aab | 659 | struct compunit_symtab *cust; |
c906108c SS |
660 | |
661 | if (!s) | |
662 | { | |
a3f17187 | 663 | printf_filtered (_("No current source file.\n")); |
c906108c SS |
664 | return; |
665 | } | |
b6577aab DE |
666 | |
667 | cust = SYMTAB_COMPUNIT (s); | |
a3f17187 | 668 | printf_filtered (_("Current source file is %s\n"), s->filename); |
ee6f8984 DE |
669 | if (SYMTAB_DIRNAME (s) != NULL) |
670 | printf_filtered (_("Compilation directory is %s\n"), SYMTAB_DIRNAME (s)); | |
c906108c | 671 | if (s->fullname) |
a3f17187 | 672 | printf_filtered (_("Located in %s\n"), s->fullname); |
c906108c | 673 | if (s->nlines) |
a3f17187 | 674 | printf_filtered (_("Contains %d line%s.\n"), s->nlines, |
c906108c SS |
675 | s->nlines == 1 ? "" : "s"); |
676 | ||
a3f17187 | 677 | printf_filtered (_("Source language is %s.\n"), language_str (s->language)); |
b6577aab DE |
678 | printf_filtered (_("Producer is %s.\n"), |
679 | COMPUNIT_PRODUCER (cust) != NULL | |
680 | ? COMPUNIT_PRODUCER (cust) : _("unknown")); | |
43f3e411 | 681 | printf_filtered (_("Compiled with %s debugging format.\n"), |
b6577aab | 682 | COMPUNIT_DEBUGFORMAT (cust)); |
a3f17187 | 683 | printf_filtered (_("%s preprocessor macro info.\n"), |
b6577aab | 684 | COMPUNIT_MACRO_TABLE (cust) != NULL |
43f3e411 | 685 | ? "Includes" : "Does not include"); |
c906108c | 686 | } |
c5aa993b | 687 | \f |
c906108c | 688 | |
a55411b9 DE |
689 | /* Return True if the file NAME exists and is a regular file. |
690 | If the result is false then *ERRNO_PTR is set to a useful value assuming | |
691 | we're expecting a regular file. */ | |
692 | ||
1da1a192 | 693 | static int |
a55411b9 | 694 | is_regular_file (const char *name, int *errno_ptr) |
1da1a192 JB |
695 | { |
696 | struct stat st; | |
697 | const int status = stat (name, &st); | |
698 | ||
699 | /* Stat should never fail except when the file does not exist. | |
700 | If stat fails, analyze the source of error and return True | |
701 | unless the file does not exist, to avoid returning false results | |
c378eb4e MS |
702 | on obscure systems where stat does not work as expected. */ |
703 | ||
1da1a192 | 704 | if (status != 0) |
a55411b9 DE |
705 | { |
706 | if (errno != ENOENT) | |
707 | return 1; | |
708 | *errno_ptr = ENOENT; | |
709 | return 0; | |
710 | } | |
711 | ||
712 | if (S_ISREG (st.st_mode)) | |
713 | return 1; | |
1da1a192 | 714 | |
a55411b9 DE |
715 | if (S_ISDIR (st.st_mode)) |
716 | *errno_ptr = EISDIR; | |
717 | else | |
718 | *errno_ptr = EINVAL; | |
719 | return 0; | |
1da1a192 | 720 | } |
c906108c | 721 | |
c906108c | 722 | /* Open a file named STRING, searching path PATH (dir names sep by some char) |
fbdebf46 JK |
723 | using mode MODE in the calls to open. You cannot use this function to |
724 | create files (O_CREAT). | |
c906108c | 725 | |
014d698b EZ |
726 | OPTS specifies the function behaviour in specific cases. |
727 | ||
728 | If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH. | |
c906108c | 729 | (ie pretend the first element of PATH is "."). This also indicates |
e3e06db3 DE |
730 | that, unless OPF_SEARCH_IN_PATH is also specified, a slash in STRING |
731 | disables searching of the path (this is so that "exec-file ./foo" or | |
732 | "symbol-file ./foo" insures that you get that particular version of | |
733 | foo or an error message). | |
c906108c | 734 | |
014d698b EZ |
735 | If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be |
736 | searched in path (we usually want this for source files but not for | |
737 | executables). | |
738 | ||
e7a8479f | 739 | If FILENAME_OPENED is non-null, set it to a newly allocated string naming |
a89f66e4 | 740 | the actual file opened (this string will always start with a "/"). We |
c906108c SS |
741 | have to take special pains to avoid doubling the "/" between the directory |
742 | and the file, sigh! Emacs gets confuzzed by this when we print the | |
743 | source file name!!! | |
744 | ||
492c0ab7 JK |
745 | If OPTS has OPF_RETURN_REALPATH set return FILENAME_OPENED resolved by |
746 | gdb_realpath. Even without OPF_RETURN_REALPATH this function still returns | |
747 | filename starting with "/". If FILENAME_OPENED is NULL this option has no | |
748 | effect. | |
1f0c4988 | 749 | |
c906108c SS |
750 | If a file is found, return the descriptor. |
751 | Otherwise, return -1, with errno set for the last name we tried to open. */ | |
752 | ||
753 | /* >>>> This should only allow files of certain types, | |
c378eb4e | 754 | >>>> eg executable, non-directory. */ |
c906108c | 755 | int |
014d698b | 756 | openp (const char *path, int opts, const char *string, |
fbdebf46 | 757 | int mode, char **filename_opened) |
c906108c | 758 | { |
52f0bd74 AC |
759 | int fd; |
760 | char *filename; | |
c906108c | 761 | int alloclen; |
e4ab2fad JK |
762 | VEC (char_ptr) *dir_vec; |
763 | struct cleanup *back_to; | |
764 | int ix; | |
765 | char *dir; | |
79b289e2 PA |
766 | /* The errno set for the last name we tried to open (and |
767 | failed). */ | |
768 | int last_errno = 0; | |
c906108c | 769 | |
fbdebf46 JK |
770 | /* The open syscall MODE parameter is not specified. */ |
771 | gdb_assert ((mode & O_CREAT) == 0); | |
f91e5ac3 JB |
772 | gdb_assert (string != NULL); |
773 | ||
774 | /* A file with an empty name cannot possibly exist. Report a failure | |
775 | without further checking. | |
776 | ||
777 | This is an optimization which also defends us against buggy | |
778 | implementations of the "stat" function. For instance, we have | |
779 | noticed that a MinGW debugger built on Windows XP 32bits crashes | |
780 | when the debugger is started with an empty argument. */ | |
781 | if (string[0] == '\0') | |
782 | { | |
783 | errno = ENOENT; | |
784 | return -1; | |
785 | } | |
fbdebf46 | 786 | |
c906108c SS |
787 | if (!path) |
788 | path = "."; | |
789 | ||
c906108c | 790 | mode |= O_BINARY; |
c906108c | 791 | |
014d698b | 792 | if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string)) |
c906108c | 793 | { |
a55411b9 | 794 | int i, reg_file_errno; |
072b1022 | 795 | |
a55411b9 | 796 | if (is_regular_file (string, ®_file_errno)) |
072b1022 | 797 | { |
224c3ddb | 798 | filename = (char *) alloca (strlen (string) + 1); |
072b1022 | 799 | strcpy (filename, string); |
614c279d | 800 | fd = gdb_open_cloexec (filename, mode, 0); |
072b1022 DJ |
801 | if (fd >= 0) |
802 | goto done; | |
a55411b9 | 803 | last_errno = errno; |
072b1022 DJ |
804 | } |
805 | else | |
3f565f1e DJ |
806 | { |
807 | filename = NULL; | |
808 | fd = -1; | |
a55411b9 | 809 | last_errno = reg_file_errno; |
3f565f1e | 810 | } |
072b1022 | 811 | |
014d698b EZ |
812 | if (!(opts & OPF_SEARCH_IN_PATH)) |
813 | for (i = 0; string[i]; i++) | |
814 | if (IS_DIR_SEPARATOR (string[i])) | |
815 | goto done; | |
c906108c SS |
816 | } |
817 | ||
e6d9b9c2 DE |
818 | /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */ |
819 | if (HAS_DRIVE_SPEC (string)) | |
820 | string = STRIP_DRIVE_SPEC (string); | |
821 | ||
c378eb4e | 822 | /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */ |
014d698b EZ |
823 | while (IS_DIR_SEPARATOR(string[0])) |
824 | string++; | |
825 | ||
c906108c | 826 | /* ./foo => foo */ |
fe4e3eb8 | 827 | while (string[0] == '.' && IS_DIR_SEPARATOR (string[1])) |
c906108c SS |
828 | string += 2; |
829 | ||
830 | alloclen = strlen (path) + strlen (string) + 2; | |
224c3ddb | 831 | filename = (char *) alloca (alloclen); |
c906108c | 832 | fd = -1; |
79b289e2 | 833 | last_errno = ENOENT; |
e4ab2fad JK |
834 | |
835 | dir_vec = dirnames_to_char_ptr_vec (path); | |
836 | back_to = make_cleanup_free_char_ptr_vec (dir_vec); | |
837 | ||
838 | for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix) | |
c906108c | 839 | { |
e4ab2fad | 840 | size_t len = strlen (dir); |
a55411b9 | 841 | int reg_file_errno; |
c906108c | 842 | |
e4ab2fad | 843 | if (strcmp (dir, "$cwd") == 0) |
c5aa993b JM |
844 | { |
845 | /* Name is $cwd -- insert current directory name instead. */ | |
846 | int newlen; | |
847 | ||
c378eb4e | 848 | /* First, realloc the filename buffer if too short. */ |
c5aa993b JM |
849 | len = strlen (current_directory); |
850 | newlen = len + strlen (string) + 2; | |
851 | if (newlen > alloclen) | |
852 | { | |
853 | alloclen = newlen; | |
224c3ddb | 854 | filename = (char *) alloca (alloclen); |
c5aa993b JM |
855 | } |
856 | strcpy (filename, current_directory); | |
857 | } | |
ebd86fb5 TJB |
858 | else if (strchr(dir, '~')) |
859 | { | |
860 | /* See whether we need to expand the tilde. */ | |
861 | int newlen; | |
862 | char *tilde_expanded; | |
863 | ||
864 | tilde_expanded = tilde_expand (dir); | |
865 | ||
866 | /* First, realloc the filename buffer if too short. */ | |
867 | len = strlen (tilde_expanded); | |
868 | newlen = len + strlen (string) + 2; | |
869 | if (newlen > alloclen) | |
870 | { | |
871 | alloclen = newlen; | |
224c3ddb | 872 | filename = (char *) alloca (alloclen); |
ebd86fb5 TJB |
873 | } |
874 | strcpy (filename, tilde_expanded); | |
875 | xfree (tilde_expanded); | |
876 | } | |
c5aa993b JM |
877 | else |
878 | { | |
879 | /* Normal file name in path -- just use it. */ | |
e4ab2fad | 880 | strcpy (filename, dir); |
08001717 DE |
881 | |
882 | /* Don't search $cdir. It's also a magic path like $cwd, but we | |
883 | don't have enough information to expand it. The user *could* | |
884 | have an actual directory named '$cdir' but handling that would | |
885 | be confusing, it would mean different things in different | |
886 | contexts. If the user really has '$cdir' one can use './$cdir'. | |
887 | We can get $cdir when loading scripts. When loading source files | |
888 | $cdir must have already been expanded to the correct value. */ | |
e4ab2fad | 889 | if (strcmp (dir, "$cdir") == 0) |
08001717 | 890 | continue; |
c906108c | 891 | } |
c906108c | 892 | |
c378eb4e | 893 | /* Remove trailing slashes. */ |
fe4e3eb8 | 894 | while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1])) |
c906108c SS |
895 | filename[--len] = 0; |
896 | ||
c5aa993b | 897 | strcat (filename + len, SLASH_STRING); |
c906108c SS |
898 | strcat (filename, string); |
899 | ||
a55411b9 | 900 | if (is_regular_file (filename, ®_file_errno)) |
5e987968 | 901 | { |
614c279d | 902 | fd = gdb_open_cloexec (filename, mode, 0); |
5e987968 AS |
903 | if (fd >= 0) |
904 | break; | |
79b289e2 | 905 | last_errno = errno; |
5e987968 | 906 | } |
a55411b9 DE |
907 | else |
908 | last_errno = reg_file_errno; | |
c906108c SS |
909 | } |
910 | ||
e4ab2fad JK |
911 | do_cleanups (back_to); |
912 | ||
c5aa993b | 913 | done: |
c906108c SS |
914 | if (filename_opened) |
915 | { | |
f5b95b50 | 916 | /* If a file was opened, canonicalize its filename. */ |
c906108c | 917 | if (fd < 0) |
1f8cc6db | 918 | *filename_opened = NULL; |
04affae3 JK |
919 | else if ((opts & OPF_RETURN_REALPATH) != 0) |
920 | *filename_opened = gdb_realpath (filename); | |
c906108c | 921 | else |
04affae3 | 922 | *filename_opened = gdb_abspath (filename); |
c906108c | 923 | } |
c906108c | 924 | |
79b289e2 | 925 | errno = last_errno; |
c906108c SS |
926 | return fd; |
927 | } | |
928 | ||
c5aa993b | 929 | |
c906108c SS |
930 | /* This is essentially a convenience, for clients that want the behaviour |
931 | of openp, using source_path, but that really don't want the file to be | |
932 | opened but want instead just to know what the full pathname is (as | |
933 | qualified against source_path). | |
934 | ||
935 | The current working directory is searched first. | |
936 | ||
937 | If the file was found, this function returns 1, and FULL_PATHNAME is | |
938 | set to the fully-qualified pathname. | |
939 | ||
5e987968 | 940 | Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */ |
c906108c | 941 | int |
24f81874 | 942 | source_full_path_of (const char *filename, char **full_pathname) |
c906108c | 943 | { |
c5aa993b | 944 | int fd; |
c906108c | 945 | |
492c0ab7 JK |
946 | fd = openp (source_path, |
947 | OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, | |
948 | filename, O_RDONLY, full_pathname); | |
c906108c SS |
949 | if (fd < 0) |
950 | { | |
951 | *full_pathname = NULL; | |
952 | return 0; | |
953 | } | |
954 | ||
955 | close (fd); | |
956 | return 1; | |
957 | } | |
958 | ||
2f61ca93 JB |
959 | /* Return non-zero if RULE matches PATH, that is if the rule can be |
960 | applied to PATH. */ | |
961 | ||
962 | static int | |
963 | substitute_path_rule_matches (const struct substitute_path_rule *rule, | |
964 | const char *path) | |
965 | { | |
966 | const int from_len = strlen (rule->from); | |
967 | const int path_len = strlen (path); | |
2f61ca93 JB |
968 | |
969 | if (path_len < from_len) | |
970 | return 0; | |
971 | ||
972 | /* The substitution rules are anchored at the start of the path, | |
486ef3b9 | 973 | so the path should start with rule->from. */ |
2f61ca93 | 974 | |
486ef3b9 | 975 | if (filename_ncmp (path, rule->from, from_len) != 0) |
2f61ca93 JB |
976 | return 0; |
977 | ||
978 | /* Make sure that the region in the path that matches the substitution | |
979 | rule is immediately followed by a directory separator (or the end of | |
980 | string character). */ | |
230cd560 | 981 | |
2f61ca93 JB |
982 | if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len])) |
983 | return 0; | |
984 | ||
985 | return 1; | |
986 | } | |
987 | ||
988 | /* Find the substitute-path rule that applies to PATH and return it. | |
989 | Return NULL if no rule applies. */ | |
990 | ||
991 | static struct substitute_path_rule * | |
992 | get_substitute_path_rule (const char *path) | |
993 | { | |
994 | struct substitute_path_rule *rule = substitute_path_rules; | |
995 | ||
996 | while (rule != NULL && !substitute_path_rule_matches (rule, path)) | |
997 | rule = rule->next; | |
998 | ||
999 | return rule; | |
1000 | } | |
1001 | ||
1002 | /* If the user specified a source path substitution rule that applies | |
1003 | to PATH, then apply it and return the new path. This new path must | |
c378eb4e | 1004 | be deallocated afterwards. |
2f61ca93 JB |
1005 | |
1006 | Return NULL if no substitution rule was specified by the user, | |
1007 | or if no rule applied to the given PATH. */ | |
1008 | ||
fbd9ab74 | 1009 | char * |
2f61ca93 JB |
1010 | rewrite_source_path (const char *path) |
1011 | { | |
1012 | const struct substitute_path_rule *rule = get_substitute_path_rule (path); | |
1013 | char *new_path; | |
1014 | int from_len; | |
1015 | ||
1016 | if (rule == NULL) | |
1017 | return NULL; | |
1018 | ||
1019 | from_len = strlen (rule->from); | |
1020 | ||
1021 | /* Compute the rewritten path and return it. */ | |
1022 | ||
1023 | new_path = | |
1024 | (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len); | |
1025 | strcpy (new_path, rule->to); | |
1026 | strcat (new_path, path + from_len); | |
1027 | ||
1028 | return new_path; | |
1029 | } | |
1030 | ||
ccefe4c4 | 1031 | int |
e2357892 | 1032 | find_and_open_source (const char *filename, |
5e987968 AS |
1033 | const char *dirname, |
1034 | char **fullname) | |
c906108c SS |
1035 | { |
1036 | char *path = source_path; | |
31889e00 | 1037 | const char *p; |
c906108c | 1038 | int result; |
795d915c | 1039 | struct cleanup *cleanup; |
c906108c | 1040 | |
c378eb4e | 1041 | /* Quick way out if we already know its full name. */ |
2f61ca93 | 1042 | |
57c22c6c | 1043 | if (*fullname) |
c906108c | 1044 | { |
2f61ca93 JB |
1045 | /* The user may have requested that source paths be rewritten |
1046 | according to substitution rules he provided. If a substitution | |
1047 | rule applies to this path, then apply it. */ | |
1048 | char *rewritten_fullname = rewrite_source_path (*fullname); | |
1049 | ||
1050 | if (rewritten_fullname != NULL) | |
1051 | { | |
1052 | xfree (*fullname); | |
1053 | *fullname = rewritten_fullname; | |
1054 | } | |
1055 | ||
614c279d | 1056 | result = gdb_open_cloexec (*fullname, OPEN_MODE, 0); |
c906108c | 1057 | if (result >= 0) |
bc3aa6c3 | 1058 | { |
f5b95b50 | 1059 | char *lpath = gdb_realpath (*fullname); |
bc3aa6c3 DE |
1060 | |
1061 | xfree (*fullname); | |
1062 | *fullname = lpath; | |
1063 | return result; | |
1064 | } | |
1065 | ||
c378eb4e | 1066 | /* Didn't work -- free old one, try again. */ |
2dc74dc1 | 1067 | xfree (*fullname); |
57c22c6c | 1068 | *fullname = NULL; |
c906108c SS |
1069 | } |
1070 | ||
795d915c TT |
1071 | cleanup = make_cleanup (null_cleanup, NULL); |
1072 | ||
57c22c6c | 1073 | if (dirname != NULL) |
c906108c | 1074 | { |
2f61ca93 JB |
1075 | /* If necessary, rewrite the compilation directory name according |
1076 | to the source path substitution rules specified by the user. */ | |
1077 | ||
1078 | char *rewritten_dirname = rewrite_source_path (dirname); | |
1079 | ||
1080 | if (rewritten_dirname != NULL) | |
1081 | { | |
1082 | make_cleanup (xfree, rewritten_dirname); | |
1083 | dirname = rewritten_dirname; | |
1084 | } | |
1085 | ||
c378eb4e MS |
1086 | /* Replace a path entry of $cdir with the compilation directory |
1087 | name. */ | |
c906108c SS |
1088 | #define cdir_len 5 |
1089 | /* We cast strstr's result in case an ANSIhole has made it const, | |
c378eb4e | 1090 | which produces a "required warning" when assigned to a nonconst. */ |
c5aa993b | 1091 | p = (char *) strstr (source_path, "$cdir"); |
c906108c | 1092 | if (p && (p == path || p[-1] == DIRNAME_SEPARATOR) |
c5aa993b | 1093 | && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0')) |
c906108c SS |
1094 | { |
1095 | int len; | |
1096 | ||
1097 | path = (char *) | |
57c22c6c | 1098 | alloca (strlen (source_path) + 1 + strlen (dirname) + 1); |
c906108c | 1099 | len = p - source_path; |
c5aa993b | 1100 | strncpy (path, source_path, len); /* Before $cdir */ |
3e43a32a MS |
1101 | strcpy (path + len, dirname); /* new stuff */ |
1102 | strcat (path + len, source_path + len + cdir_len); /* After | |
1103 | $cdir */ | |
c906108c SS |
1104 | } |
1105 | } | |
8da2a1df DJ |
1106 | |
1107 | if (IS_ABSOLUTE_PATH (filename)) | |
56163ce1 | 1108 | { |
8da2a1df DJ |
1109 | /* If filename is absolute path, try the source path |
1110 | substitution on it. */ | |
56163ce1 JB |
1111 | char *rewritten_filename = rewrite_source_path (filename); |
1112 | ||
1113 | if (rewritten_filename != NULL) | |
1114 | { | |
1115 | make_cleanup (xfree, rewritten_filename); | |
1116 | filename = rewritten_filename; | |
1117 | } | |
1118 | } | |
c906108c | 1119 | |
492c0ab7 JK |
1120 | result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, filename, |
1121 | OPEN_MODE, fullname); | |
c906108c SS |
1122 | if (result < 0) |
1123 | { | |
c378eb4e | 1124 | /* Didn't work. Try using just the basename. */ |
57c22c6c BR |
1125 | p = lbasename (filename); |
1126 | if (p != filename) | |
492c0ab7 JK |
1127 | result = openp (path, OPF_SEARCH_IN_PATH | OPF_RETURN_REALPATH, p, |
1128 | OPEN_MODE, fullname); | |
c906108c | 1129 | } |
c906108c | 1130 | |
795d915c | 1131 | do_cleanups (cleanup); |
c906108c SS |
1132 | return result; |
1133 | } | |
1134 | ||
57c22c6c BR |
1135 | /* Open a source file given a symtab S. Returns a file descriptor or |
1136 | negative number for error. | |
1137 | ||
c378eb4e | 1138 | This function is a convience function to find_and_open_source. */ |
57c22c6c BR |
1139 | |
1140 | int | |
1141 | open_source_file (struct symtab *s) | |
1142 | { | |
5e987968 AS |
1143 | if (!s) |
1144 | return -1; | |
57c22c6c | 1145 | |
ee6f8984 | 1146 | return find_and_open_source (s->filename, SYMTAB_DIRNAME (s), &s->fullname); |
57c22c6c BR |
1147 | } |
1148 | ||
1149 | /* Finds the fullname that a symtab represents. | |
c906108c | 1150 | |
f35a17b5 JK |
1151 | This functions finds the fullname and saves it in s->fullname. |
1152 | It will also return the value. | |
57c22c6c BR |
1153 | |
1154 | If this function fails to find the file that this symtab represents, | |
f35a17b5 JK |
1155 | the expected fullname is used. Therefore the files does not have to |
1156 | exist. */ | |
256f06f3 | 1157 | |
0b0865da | 1158 | const char * |
57c22c6c | 1159 | symtab_to_fullname (struct symtab *s) |
c906108c | 1160 | { |
256f06f3 DE |
1161 | /* Use cached copy if we have it. |
1162 | We rely on forget_cached_source_info being called appropriately | |
1163 | to handle cases like the file being moved. */ | |
f35a17b5 | 1164 | if (s->fullname == NULL) |
5e987968 | 1165 | { |
ee6f8984 DE |
1166 | int fd = find_and_open_source (s->filename, SYMTAB_DIRNAME (s), |
1167 | &s->fullname); | |
f35a17b5 JK |
1168 | |
1169 | if (fd >= 0) | |
1170 | close (fd); | |
f35a17b5 | 1171 | else |
f0a4b570 JK |
1172 | { |
1173 | char *fullname; | |
1174 | struct cleanup *back_to; | |
1175 | ||
1176 | /* rewrite_source_path would be applied by find_and_open_source, we | |
1177 | should report the pathname where GDB tried to find the file. */ | |
1178 | ||
ee6f8984 | 1179 | if (SYMTAB_DIRNAME (s) == NULL || IS_ABSOLUTE_PATH (s->filename)) |
f0a4b570 JK |
1180 | fullname = xstrdup (s->filename); |
1181 | else | |
b36cec19 PA |
1182 | fullname = concat (SYMTAB_DIRNAME (s), SLASH_STRING, |
1183 | s->filename, (char *) NULL); | |
f0a4b570 JK |
1184 | |
1185 | back_to = make_cleanup (xfree, fullname); | |
1186 | s->fullname = rewrite_source_path (fullname); | |
1187 | if (s->fullname == NULL) | |
1188 | s->fullname = xstrdup (fullname); | |
1189 | do_cleanups (back_to); | |
1190 | } | |
f35a17b5 | 1191 | } |
c906108c | 1192 | |
f35a17b5 | 1193 | return s->fullname; |
57c22c6c | 1194 | } |
1b56eb55 JK |
1195 | |
1196 | /* See commentary in source.h. */ | |
1197 | ||
1198 | const char * | |
1199 | symtab_to_filename_for_display (struct symtab *symtab) | |
1200 | { | |
1201 | if (filename_display_string == filename_display_basename) | |
1202 | return lbasename (symtab->filename); | |
1203 | else if (filename_display_string == filename_display_absolute) | |
1204 | return symtab_to_fullname (symtab); | |
1205 | else if (filename_display_string == filename_display_relative) | |
1206 | return symtab->filename; | |
1207 | else | |
1208 | internal_error (__FILE__, __LINE__, _("invalid filename_display_string")); | |
1209 | } | |
5e987968 | 1210 | \f |
c906108c SS |
1211 | /* Create and initialize the table S->line_charpos that records |
1212 | the positions of the lines in the source file, which is assumed | |
1213 | to be open on descriptor DESC. | |
1214 | All set S->nlines to the number of such lines. */ | |
1215 | ||
1216 | void | |
fba45db2 | 1217 | find_source_lines (struct symtab *s, int desc) |
c906108c SS |
1218 | { |
1219 | struct stat st; | |
52f0bd74 | 1220 | char *data, *p, *end; |
c906108c SS |
1221 | int nlines = 0; |
1222 | int lines_allocated = 1000; | |
1223 | int *line_charpos; | |
1224 | long mtime = 0; | |
1225 | int size; | |
1226 | ||
be8ca11b | 1227 | gdb_assert (s); |
8d749320 | 1228 | line_charpos = XNEWVEC (int, lines_allocated); |
c906108c | 1229 | if (fstat (desc, &st) < 0) |
05cba821 | 1230 | perror_with_name (symtab_to_filename_for_display (s)); |
c906108c | 1231 | |
eb822aa6 DE |
1232 | if (SYMTAB_OBJFILE (s) != NULL && SYMTAB_OBJFILE (s)->obfd != NULL) |
1233 | mtime = SYMTAB_OBJFILE (s)->mtime; | |
c906108c | 1234 | else if (exec_bfd) |
c04ea773 | 1235 | mtime = exec_bfd_mtime; |
c906108c SS |
1236 | |
1237 | if (mtime && mtime < st.st_mtime) | |
8a3fe4f8 | 1238 | warning (_("Source file is more recent than executable.")); |
c906108c | 1239 | |
c906108c SS |
1240 | { |
1241 | struct cleanup *old_cleanups; | |
1242 | ||
1243 | /* st_size might be a large type, but we only support source files whose | |
1244 | size fits in an int. */ | |
1245 | size = (int) st.st_size; | |
1246 | ||
1247 | /* Use malloc, not alloca, because this may be pretty large, and we may | |
1248 | run into various kinds of limits on stack size. */ | |
1249 | data = (char *) xmalloc (size); | |
b8c9b27d | 1250 | old_cleanups = make_cleanup (xfree, data); |
c906108c SS |
1251 | |
1252 | /* Reassign `size' to result of read for systems where \r\n -> \n. */ | |
1253 | size = myread (desc, data, size); | |
1254 | if (size < 0) | |
05cba821 | 1255 | perror_with_name (symtab_to_filename_for_display (s)); |
c906108c SS |
1256 | end = data + size; |
1257 | p = data; | |
1258 | line_charpos[0] = 0; | |
1259 | nlines = 1; | |
1260 | while (p != end) | |
1261 | { | |
1262 | if (*p++ == '\n' | |
c5aa993b | 1263 | /* A newline at the end does not start a new line. */ |
c906108c SS |
1264 | && p != end) |
1265 | { | |
1266 | if (nlines == lines_allocated) | |
1267 | { | |
1268 | lines_allocated *= 2; | |
1269 | line_charpos = | |
0efffb96 AC |
1270 | (int *) xrealloc ((char *) line_charpos, |
1271 | sizeof (int) * lines_allocated); | |
c906108c SS |
1272 | } |
1273 | line_charpos[nlines++] = p - data; | |
1274 | } | |
1275 | } | |
1276 | do_cleanups (old_cleanups); | |
1277 | } | |
d4d4db8a | 1278 | |
c906108c SS |
1279 | s->nlines = nlines; |
1280 | s->line_charpos = | |
0efffb96 | 1281 | (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int)); |
c906108c SS |
1282 | |
1283 | } | |
1284 | ||
c906108c | 1285 | \f |
c5aa993b | 1286 | |
c906108c SS |
1287 | /* Get full pathname and line number positions for a symtab. |
1288 | Return nonzero if line numbers may have changed. | |
1289 | Set *FULLNAME to actual name of the file as found by `openp', | |
1290 | or to 0 if the file is not found. */ | |
1291 | ||
1292 | static int | |
fba45db2 | 1293 | get_filename_and_charpos (struct symtab *s, char **fullname) |
c906108c | 1294 | { |
52f0bd74 | 1295 | int desc, linenums_changed = 0; |
9fe4a216 | 1296 | struct cleanup *cleanups; |
c5aa993b | 1297 | |
c906108c SS |
1298 | desc = open_source_file (s); |
1299 | if (desc < 0) | |
1300 | { | |
1301 | if (fullname) | |
1302 | *fullname = NULL; | |
1303 | return 0; | |
c5aa993b | 1304 | } |
9fe4a216 | 1305 | cleanups = make_cleanup_close (desc); |
c906108c SS |
1306 | if (fullname) |
1307 | *fullname = s->fullname; | |
c5aa993b JM |
1308 | if (s->line_charpos == 0) |
1309 | linenums_changed = 1; | |
1310 | if (linenums_changed) | |
1311 | find_source_lines (s, desc); | |
9fe4a216 | 1312 | do_cleanups (cleanups); |
c906108c SS |
1313 | return linenums_changed; |
1314 | } | |
1315 | ||
1316 | /* Print text describing the full name of the source file S | |
1317 | and the line number LINE and its corresponding character position. | |
1318 | The text starts with two Ctrl-z so that the Emacs-GDB interface | |
1319 | can easily find it. | |
1320 | ||
1321 | MID_STATEMENT is nonzero if the PC is not at the beginning of that line. | |
1322 | ||
1323 | Return 1 if successful, 0 if could not find the file. */ | |
1324 | ||
1325 | int | |
fba45db2 KB |
1326 | identify_source_line (struct symtab *s, int line, int mid_statement, |
1327 | CORE_ADDR pc) | |
c906108c SS |
1328 | { |
1329 | if (s->line_charpos == 0) | |
c5aa993b | 1330 | get_filename_and_charpos (s, (char **) NULL); |
c906108c SS |
1331 | if (s->fullname == 0) |
1332 | return 0; | |
1333 | if (line > s->nlines) | |
1334 | /* Don't index off the end of the line_charpos array. */ | |
1335 | return 0; | |
1336 | annotate_source (s->fullname, line, s->line_charpos[line - 1], | |
eb822aa6 | 1337 | mid_statement, get_objfile_arch (SYMTAB_OBJFILE (s)), pc); |
c906108c SS |
1338 | |
1339 | current_source_line = line; | |
c906108c | 1340 | current_source_symtab = s; |
5166082f | 1341 | clear_lines_listed_range (); |
c906108c SS |
1342 | return 1; |
1343 | } | |
c906108c | 1344 | \f |
c5aa993b | 1345 | |
c906108c | 1346 | /* Print source lines from the file of symtab S, |
c378eb4e | 1347 | starting with line number LINE and stopping before line number STOPLINE. */ |
c906108c SS |
1348 | |
1349 | static void | |
dfaae886 | 1350 | print_source_lines_base (struct symtab *s, int line, int stopline, |
8d297bbf | 1351 | print_source_lines_flags flags) |
c906108c | 1352 | { |
52f0bd74 AC |
1353 | int c; |
1354 | int desc; | |
f4dfd9c0 | 1355 | int noprint = 0; |
c906108c | 1356 | int nlines = stopline - line; |
79a45e25 | 1357 | struct ui_out *uiout = current_uiout; |
c906108c | 1358 | |
c378eb4e | 1359 | /* Regardless of whether we can open the file, set current_source_symtab. */ |
c906108c SS |
1360 | current_source_symtab = s; |
1361 | current_source_line = line; | |
1362 | first_line_listed = line; | |
1363 | ||
3e43a32a | 1364 | /* If printing of source lines is disabled, just print file and line |
c378eb4e | 1365 | number. */ |
112e8700 | 1366 | if (uiout->test_flags (ui_source_list)) |
8b93c638 | 1367 | { |
c378eb4e | 1368 | /* Only prints "No such file or directory" once. */ |
c5aa993b JM |
1369 | if ((s != last_source_visited) || (!last_source_error)) |
1370 | { | |
1371 | last_source_visited = s; | |
1372 | desc = open_source_file (s); | |
1373 | } | |
1374 | else | |
1375 | { | |
1376 | desc = last_source_error; | |
dfaae886 | 1377 | flags |= PRINT_SOURCE_LINES_NOERROR; |
c5aa993b | 1378 | } |
8b93c638 JM |
1379 | } |
1380 | else | |
1381 | { | |
f4dfd9c0 | 1382 | desc = last_source_error; |
8d297bbf | 1383 | flags |= PRINT_SOURCE_LINES_NOERROR; |
f4dfd9c0 | 1384 | noprint = 1; |
8b93c638 | 1385 | } |
c906108c | 1386 | |
f4dfd9c0 | 1387 | if (desc < 0 || noprint) |
c906108c SS |
1388 | { |
1389 | last_source_error = desc; | |
1390 | ||
dfaae886 | 1391 | if (!(flags & PRINT_SOURCE_LINES_NOERROR)) |
c5aa993b | 1392 | { |
05cba821 JK |
1393 | const char *filename = symtab_to_filename_for_display (s); |
1394 | int len = strlen (filename) + 100; | |
224c3ddb | 1395 | char *name = (char *) alloca (len); |
08850b56 | 1396 | |
05cba821 | 1397 | xsnprintf (name, len, "%d\t%s", line, filename); |
c906108c SS |
1398 | print_sys_errmsg (name, errno); |
1399 | } | |
1400 | else | |
fc0ae648 | 1401 | { |
112e8700 SM |
1402 | uiout->field_int ("line", line); |
1403 | uiout->text ("\tin "); | |
56d397a3 | 1404 | |
23eb71e4 JK |
1405 | /* CLI expects only the "file" field. TUI expects only the |
1406 | "fullname" field (and TUI does break if "file" is printed). | |
1407 | MI expects both fields. ui_source_list is set only for CLI, | |
1408 | not for TUI. */ | |
112e8700 SM |
1409 | if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list)) |
1410 | uiout->field_string ("file", symtab_to_filename_for_display (s)); | |
1411 | if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list)) | |
8f1b8b82 JK |
1412 | { |
1413 | const char *s_fullname = symtab_to_fullname (s); | |
1414 | char *local_fullname; | |
1415 | ||
1416 | /* ui_out_field_string may free S_FULLNAME by calling | |
1417 | open_source_file for it again. See e.g., | |
1418 | tui_field_string->tui_show_source. */ | |
224c3ddb | 1419 | local_fullname = (char *) alloca (strlen (s_fullname) + 1); |
8f1b8b82 JK |
1420 | strcpy (local_fullname, s_fullname); |
1421 | ||
112e8700 | 1422 | uiout->field_string ("fullname", local_fullname); |
8f1b8b82 | 1423 | } |
23eb71e4 | 1424 | |
112e8700 | 1425 | uiout->text ("\n"); |
fc0ae648 | 1426 | } |
c906108c SS |
1427 | |
1428 | return; | |
1429 | } | |
1430 | ||
1431 | last_source_error = 0; | |
1432 | ||
1433 | if (s->line_charpos == 0) | |
1434 | find_source_lines (s, desc); | |
1435 | ||
1436 | if (line < 1 || line > s->nlines) | |
1437 | { | |
1438 | close (desc); | |
8a3fe4f8 | 1439 | error (_("Line number %d out of range; %s has %d lines."), |
05cba821 | 1440 | line, symtab_to_filename_for_display (s), s->nlines); |
c906108c SS |
1441 | } |
1442 | ||
1443 | if (lseek (desc, s->line_charpos[line - 1], 0) < 0) | |
1444 | { | |
1445 | close (desc); | |
05cba821 | 1446 | perror_with_name (symtab_to_filename_for_display (s)); |
c906108c SS |
1447 | } |
1448 | ||
4a45905b TT |
1449 | gdb_file_up stream (fdopen (desc, FDOPEN_MODE)); |
1450 | clearerr (stream.get ()); | |
c906108c SS |
1451 | |
1452 | while (nlines-- > 0) | |
1453 | { | |
8b93c638 JM |
1454 | char buf[20]; |
1455 | ||
4a45905b | 1456 | c = fgetc (stream.get ()); |
8b93c638 JM |
1457 | if (c == EOF) |
1458 | break; | |
1459 | last_line_listed = current_source_line; | |
4cd29721 MM |
1460 | if (flags & PRINT_SOURCE_LINES_FILENAME) |
1461 | { | |
112e8700 SM |
1462 | uiout->text (symtab_to_filename_for_display (s)); |
1463 | uiout->text (":"); | |
4cd29721 | 1464 | } |
08850b56 | 1465 | xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++); |
112e8700 | 1466 | uiout->text (buf); |
8b93c638 JM |
1467 | do |
1468 | { | |
1469 | if (c < 040 && c != '\t' && c != '\n' && c != '\r') | |
1470 | { | |
08850b56 | 1471 | xsnprintf (buf, sizeof (buf), "^%c", c + 0100); |
112e8700 | 1472 | uiout->text (buf); |
8b93c638 JM |
1473 | } |
1474 | else if (c == 0177) | |
112e8700 | 1475 | uiout->text ("^?"); |
8b93c638 JM |
1476 | else if (c == '\r') |
1477 | { | |
1478 | /* Skip a \r character, but only before a \n. */ | |
4a45905b | 1479 | int c1 = fgetc (stream.get ()); |
8b93c638 JM |
1480 | |
1481 | if (c1 != '\n') | |
1482 | printf_filtered ("^%c", c + 0100); | |
1483 | if (c1 != EOF) | |
4a45905b | 1484 | ungetc (c1, stream.get ()); |
8b93c638 | 1485 | } |
8b93c638 JM |
1486 | else |
1487 | { | |
08850b56 | 1488 | xsnprintf (buf, sizeof (buf), "%c", c); |
112e8700 | 1489 | uiout->text (buf); |
8b93c638 JM |
1490 | } |
1491 | } | |
4a45905b | 1492 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1493 | } |
c906108c SS |
1494 | } |
1495 | \f | |
1496 | /* Show source lines from the file of symtab S, starting with line | |
f132ba9d | 1497 | number LINE and stopping before line number STOPLINE. If this is |
c906108c | 1498 | not the command line version, then the source is shown in the source |
c378eb4e | 1499 | window otherwise it is simply printed. */ |
c906108c | 1500 | |
c5aa993b | 1501 | void |
dfaae886 | 1502 | print_source_lines (struct symtab *s, int line, int stopline, |
8d297bbf | 1503 | print_source_lines_flags flags) |
c906108c | 1504 | { |
dfaae886 | 1505 | print_source_lines_base (s, line, stopline, flags); |
c906108c SS |
1506 | } |
1507 | \f | |
c906108c SS |
1508 | /* Print info on range of pc's in a specified line. */ |
1509 | ||
1510 | static void | |
fba45db2 | 1511 | line_info (char *arg, int from_tty) |
c906108c SS |
1512 | { |
1513 | struct symtabs_and_lines sals; | |
1514 | struct symtab_and_line sal; | |
1515 | CORE_ADDR start_pc, end_pc; | |
1516 | int i; | |
f8eba3c6 | 1517 | struct cleanup *cleanups; |
c906108c | 1518 | |
fe39c653 | 1519 | init_sal (&sal); /* initialize to zeroes */ |
c906108c SS |
1520 | |
1521 | if (arg == 0) | |
1522 | { | |
1523 | sal.symtab = current_source_symtab; | |
f8eba3c6 | 1524 | sal.pspace = current_program_space; |
5166082f PA |
1525 | if (last_line_listed != 0) |
1526 | sal.line = last_line_listed; | |
1527 | else | |
1528 | sal.line = current_source_line; | |
1529 | ||
c906108c | 1530 | sals.nelts = 1; |
8d749320 | 1531 | sals.sals = XNEW (struct symtab_and_line); |
c906108c SS |
1532 | sals.sals[0] = sal; |
1533 | } | |
1534 | else | |
1535 | { | |
39cf75f7 | 1536 | sals = decode_line_with_last_displayed (arg, DECODE_LINE_LIST_MODE); |
c5aa993b | 1537 | |
c906108c SS |
1538 | dont_repeat (); |
1539 | } | |
1540 | ||
f8eba3c6 TT |
1541 | cleanups = make_cleanup (xfree, sals.sals); |
1542 | ||
c906108c | 1543 | /* C++ More than one line may have been specified, as when the user |
c378eb4e | 1544 | specifies an overloaded function name. Print info on them all. */ |
c906108c SS |
1545 | for (i = 0; i < sals.nelts; i++) |
1546 | { | |
1547 | sal = sals.sals[i]; | |
f8eba3c6 TT |
1548 | if (sal.pspace != current_program_space) |
1549 | continue; | |
c5aa993b | 1550 | |
c906108c SS |
1551 | if (sal.symtab == 0) |
1552 | { | |
5af949e3 UW |
1553 | struct gdbarch *gdbarch = get_current_arch (); |
1554 | ||
a3f17187 | 1555 | printf_filtered (_("No line number information available")); |
c906108c SS |
1556 | if (sal.pc != 0) |
1557 | { | |
1558 | /* This is useful for "info line *0x7f34". If we can't tell the | |
c5aa993b JM |
1559 | user about a source line, at least let them have the symbolic |
1560 | address. */ | |
c906108c SS |
1561 | printf_filtered (" for address "); |
1562 | wrap_here (" "); | |
5af949e3 | 1563 | print_address (gdbarch, sal.pc, gdb_stdout); |
c906108c SS |
1564 | } |
1565 | else | |
1566 | printf_filtered ("."); | |
1567 | printf_filtered ("\n"); | |
1568 | } | |
1569 | else if (sal.line > 0 | |
1570 | && find_line_pc_range (sal, &start_pc, &end_pc)) | |
1571 | { | |
eb822aa6 DE |
1572 | struct gdbarch *gdbarch |
1573 | = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab)); | |
5af949e3 | 1574 | |
c906108c SS |
1575 | if (start_pc == end_pc) |
1576 | { | |
1577 | printf_filtered ("Line %d of \"%s\"", | |
05cba821 JK |
1578 | sal.line, |
1579 | symtab_to_filename_for_display (sal.symtab)); | |
c906108c SS |
1580 | wrap_here (" "); |
1581 | printf_filtered (" is at address "); | |
5af949e3 | 1582 | print_address (gdbarch, start_pc, gdb_stdout); |
c906108c SS |
1583 | wrap_here (" "); |
1584 | printf_filtered (" but contains no code.\n"); | |
1585 | } | |
1586 | else | |
1587 | { | |
1588 | printf_filtered ("Line %d of \"%s\"", | |
05cba821 JK |
1589 | sal.line, |
1590 | symtab_to_filename_for_display (sal.symtab)); | |
c906108c SS |
1591 | wrap_here (" "); |
1592 | printf_filtered (" starts at address "); | |
5af949e3 | 1593 | print_address (gdbarch, start_pc, gdb_stdout); |
c906108c SS |
1594 | wrap_here (" "); |
1595 | printf_filtered (" and ends at "); | |
5af949e3 | 1596 | print_address (gdbarch, end_pc, gdb_stdout); |
c906108c SS |
1597 | printf_filtered (".\n"); |
1598 | } | |
1599 | ||
1600 | /* x/i should display this line's code. */ | |
5af949e3 | 1601 | set_next_address (gdbarch, start_pc); |
c906108c SS |
1602 | |
1603 | /* Repeating "info line" should do the following line. */ | |
1604 | last_line_listed = sal.line + 1; | |
1605 | ||
1606 | /* If this is the only line, show the source code. If it could | |
1607 | not find the file, don't do anything special. */ | |
1608 | if (annotation_level && sals.nelts == 1) | |
1609 | identify_source_line (sal.symtab, sal.line, 0, start_pc); | |
1610 | } | |
1611 | else | |
1612 | /* Is there any case in which we get here, and have an address | |
1613 | which the user would want to see? If we have debugging symbols | |
1614 | and no line numbers? */ | |
a3f17187 | 1615 | printf_filtered (_("Line number %d is out of range for \"%s\".\n"), |
05cba821 | 1616 | sal.line, symtab_to_filename_for_display (sal.symtab)); |
c906108c | 1617 | } |
f8eba3c6 | 1618 | do_cleanups (cleanups); |
c906108c SS |
1619 | } |
1620 | \f | |
1621 | /* Commands to search the source file for a regexp. */ | |
1622 | ||
c906108c | 1623 | static void |
fba45db2 | 1624 | forward_search_command (char *regex, int from_tty) |
c906108c | 1625 | { |
52f0bd74 AC |
1626 | int c; |
1627 | int desc; | |
c906108c SS |
1628 | int line; |
1629 | char *msg; | |
9fe4a216 | 1630 | struct cleanup *cleanups; |
c906108c | 1631 | |
c906108c | 1632 | line = last_line_listed + 1; |
c906108c SS |
1633 | |
1634 | msg = (char *) re_comp (regex); | |
1635 | if (msg) | |
8a3fe4f8 | 1636 | error (("%s"), msg); |
c906108c SS |
1637 | |
1638 | if (current_source_symtab == 0) | |
1639 | select_source_symtab (0); | |
1640 | ||
1641 | desc = open_source_file (current_source_symtab); | |
1642 | if (desc < 0) | |
05cba821 | 1643 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
9fe4a216 | 1644 | cleanups = make_cleanup_close (desc); |
c906108c SS |
1645 | |
1646 | if (current_source_symtab->line_charpos == 0) | |
1647 | find_source_lines (current_source_symtab, desc); | |
1648 | ||
1649 | if (line < 1 || line > current_source_symtab->nlines) | |
9fe4a216 | 1650 | error (_("Expression not found")); |
c906108c SS |
1651 | |
1652 | if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0) | |
05cba821 | 1653 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c | 1654 | |
9fe4a216 | 1655 | discard_cleanups (cleanups); |
4a45905b TT |
1656 | gdb_file_up stream (fdopen (desc, FDOPEN_MODE)); |
1657 | clearerr (stream.get ()); | |
c5aa993b JM |
1658 | while (1) |
1659 | { | |
1660 | static char *buf = NULL; | |
aa1ee363 | 1661 | char *p; |
c5aa993b JM |
1662 | int cursize, newsize; |
1663 | ||
1664 | cursize = 256; | |
224c3ddb | 1665 | buf = (char *) xmalloc (cursize); |
c5aa993b JM |
1666 | p = buf; |
1667 | ||
4a45905b | 1668 | c = fgetc (stream.get ()); |
c5aa993b JM |
1669 | if (c == EOF) |
1670 | break; | |
1671 | do | |
c906108c | 1672 | { |
c5aa993b JM |
1673 | *p++ = c; |
1674 | if (p - buf == cursize) | |
1675 | { | |
1676 | newsize = cursize + cursize / 2; | |
224c3ddb | 1677 | buf = (char *) xrealloc (buf, newsize); |
c5aa993b JM |
1678 | p = buf + cursize; |
1679 | cursize = newsize; | |
1680 | } | |
c906108c | 1681 | } |
4a45905b | 1682 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1683 | |
7be570e7 JM |
1684 | /* Remove the \r, if any, at the end of the line, otherwise |
1685 | regular expressions that end with $ or \n won't work. */ | |
1686 | if (p - buf > 1 && p[-2] == '\r') | |
1687 | { | |
1688 | p--; | |
1689 | p[-1] = '\n'; | |
1690 | } | |
7be570e7 | 1691 | |
c378eb4e | 1692 | /* We now have a source line in buf, null terminate and match. */ |
c5aa993b JM |
1693 | *p = 0; |
1694 | if (re_exec (buf) > 0) | |
1695 | { | |
c378eb4e | 1696 | /* Match! */ |
c5aa993b | 1697 | print_source_lines (current_source_symtab, line, line + 1, 0); |
4fa62494 | 1698 | set_internalvar_integer (lookup_internalvar ("_"), line); |
325fac50 | 1699 | current_source_line = std::max (line - lines_to_list / 2, 1); |
c5aa993b JM |
1700 | return; |
1701 | } | |
1702 | line++; | |
1703 | } | |
c906108c | 1704 | |
a3f17187 | 1705 | printf_filtered (_("Expression not found\n")); |
c906108c SS |
1706 | } |
1707 | ||
c906108c | 1708 | static void |
fba45db2 | 1709 | reverse_search_command (char *regex, int from_tty) |
c906108c | 1710 | { |
52f0bd74 AC |
1711 | int c; |
1712 | int desc; | |
c906108c SS |
1713 | int line; |
1714 | char *msg; | |
9fe4a216 | 1715 | struct cleanup *cleanups; |
063190b6 | 1716 | |
c906108c | 1717 | line = last_line_listed - 1; |
c906108c SS |
1718 | |
1719 | msg = (char *) re_comp (regex); | |
1720 | if (msg) | |
8a3fe4f8 | 1721 | error (("%s"), msg); |
c906108c SS |
1722 | |
1723 | if (current_source_symtab == 0) | |
1724 | select_source_symtab (0); | |
1725 | ||
1726 | desc = open_source_file (current_source_symtab); | |
1727 | if (desc < 0) | |
05cba821 | 1728 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
9fe4a216 | 1729 | cleanups = make_cleanup_close (desc); |
c906108c SS |
1730 | |
1731 | if (current_source_symtab->line_charpos == 0) | |
1732 | find_source_lines (current_source_symtab, desc); | |
1733 | ||
1734 | if (line < 1 || line > current_source_symtab->nlines) | |
9fe4a216 | 1735 | error (_("Expression not found")); |
c906108c SS |
1736 | |
1737 | if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0) | |
05cba821 | 1738 | perror_with_name (symtab_to_filename_for_display (current_source_symtab)); |
c906108c | 1739 | |
9fe4a216 | 1740 | discard_cleanups (cleanups); |
4a45905b TT |
1741 | gdb_file_up stream (fdopen (desc, FDOPEN_MODE)); |
1742 | clearerr (stream.get ()); | |
c906108c SS |
1743 | while (line > 1) |
1744 | { | |
c378eb4e MS |
1745 | /* FIXME!!! We walk right off the end of buf if we get a long line!!! */ |
1746 | char buf[4096]; /* Should be reasonable??? */ | |
aa1ee363 | 1747 | char *p = buf; |
c906108c | 1748 | |
4a45905b | 1749 | c = fgetc (stream.get ()); |
c906108c SS |
1750 | if (c == EOF) |
1751 | break; | |
c5aa993b JM |
1752 | do |
1753 | { | |
1754 | *p++ = c; | |
1755 | } | |
4a45905b | 1756 | while (c != '\n' && (c = fgetc (stream.get ())) >= 0); |
c906108c | 1757 | |
7be570e7 JM |
1758 | /* Remove the \r, if any, at the end of the line, otherwise |
1759 | regular expressions that end with $ or \n won't work. */ | |
1760 | if (p - buf > 1 && p[-2] == '\r') | |
1761 | { | |
1762 | p--; | |
1763 | p[-1] = '\n'; | |
1764 | } | |
7be570e7 | 1765 | |
c906108c SS |
1766 | /* We now have a source line in buf; null terminate and match. */ |
1767 | *p = 0; | |
1768 | if (re_exec (buf) > 0) | |
1769 | { | |
c378eb4e | 1770 | /* Match! */ |
c5aa993b | 1771 | print_source_lines (current_source_symtab, line, line + 1, 0); |
4fa62494 | 1772 | set_internalvar_integer (lookup_internalvar ("_"), line); |
325fac50 | 1773 | current_source_line = std::max (line - lines_to_list / 2, 1); |
c906108c SS |
1774 | return; |
1775 | } | |
1776 | line--; | |
4a45905b TT |
1777 | if (fseek (stream.get (), |
1778 | current_source_symtab->line_charpos[line - 1], 0) < 0) | |
c906108c | 1779 | { |
05cba821 JK |
1780 | const char *filename; |
1781 | ||
05cba821 JK |
1782 | filename = symtab_to_filename_for_display (current_source_symtab); |
1783 | perror_with_name (filename); | |
c906108c SS |
1784 | } |
1785 | } | |
1786 | ||
a3f17187 | 1787 | printf_filtered (_("Expression not found\n")); |
c906108c SS |
1788 | return; |
1789 | } | |
2f61ca93 JB |
1790 | |
1791 | /* If the last character of PATH is a directory separator, then strip it. */ | |
1792 | ||
1793 | static void | |
1794 | strip_trailing_directory_separator (char *path) | |
1795 | { | |
1796 | const int last = strlen (path) - 1; | |
1797 | ||
1798 | if (last < 0) | |
1799 | return; /* No stripping is needed if PATH is the empty string. */ | |
1800 | ||
1801 | if (IS_DIR_SEPARATOR (path[last])) | |
1802 | path[last] = '\0'; | |
1803 | } | |
1804 | ||
1805 | /* Return the path substitution rule that matches FROM. | |
1806 | Return NULL if no rule matches. */ | |
1807 | ||
1808 | static struct substitute_path_rule * | |
1809 | find_substitute_path_rule (const char *from) | |
1810 | { | |
1811 | struct substitute_path_rule *rule = substitute_path_rules; | |
1812 | ||
1813 | while (rule != NULL) | |
1814 | { | |
1815 | if (FILENAME_CMP (rule->from, from) == 0) | |
1816 | return rule; | |
1817 | rule = rule->next; | |
1818 | } | |
1819 | ||
1820 | return NULL; | |
1821 | } | |
1822 | ||
1823 | /* Add a new substitute-path rule at the end of the current list of rules. | |
1824 | The new rule will replace FROM into TO. */ | |
1825 | ||
29b0e8a2 | 1826 | void |
2f61ca93 JB |
1827 | add_substitute_path_rule (char *from, char *to) |
1828 | { | |
1829 | struct substitute_path_rule *rule; | |
8d749320 | 1830 | struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule); |
2f61ca93 | 1831 | |
2f61ca93 JB |
1832 | new_rule->from = xstrdup (from); |
1833 | new_rule->to = xstrdup (to); | |
1834 | new_rule->next = NULL; | |
1835 | ||
1836 | /* If the list of rules are empty, then insert the new rule | |
1837 | at the head of the list. */ | |
1838 | ||
1839 | if (substitute_path_rules == NULL) | |
1840 | { | |
1841 | substitute_path_rules = new_rule; | |
1842 | return; | |
1843 | } | |
1844 | ||
1845 | /* Otherwise, skip to the last rule in our list and then append | |
1846 | the new rule. */ | |
1847 | ||
1848 | rule = substitute_path_rules; | |
1849 | while (rule->next != NULL) | |
1850 | rule = rule->next; | |
1851 | ||
1852 | rule->next = new_rule; | |
1853 | } | |
1854 | ||
1855 | /* Remove the given source path substitution rule from the current list | |
1856 | of rules. The memory allocated for that rule is also deallocated. */ | |
1857 | ||
1858 | static void | |
1859 | delete_substitute_path_rule (struct substitute_path_rule *rule) | |
1860 | { | |
1861 | if (rule == substitute_path_rules) | |
1862 | substitute_path_rules = rule->next; | |
1863 | else | |
1864 | { | |
1865 | struct substitute_path_rule *prev = substitute_path_rules; | |
1866 | ||
1867 | while (prev != NULL && prev->next != rule) | |
1868 | prev = prev->next; | |
1869 | ||
1870 | gdb_assert (prev != NULL); | |
1871 | ||
1872 | prev->next = rule->next; | |
1873 | } | |
1874 | ||
1875 | xfree (rule->from); | |
1876 | xfree (rule->to); | |
1877 | xfree (rule); | |
1878 | } | |
1879 | ||
1880 | /* Implement the "show substitute-path" command. */ | |
1881 | ||
1882 | static void | |
1883 | show_substitute_path_command (char *args, int from_tty) | |
1884 | { | |
1885 | struct substitute_path_rule *rule = substitute_path_rules; | |
1886 | char **argv; | |
1887 | char *from = NULL; | |
5b3fca71 | 1888 | struct cleanup *cleanup; |
2f61ca93 | 1889 | |
d1a41061 | 1890 | argv = gdb_buildargv (args); |
5b3fca71 | 1891 | cleanup = make_cleanup_freeargv (argv); |
2f61ca93 JB |
1892 | |
1893 | /* We expect zero or one argument. */ | |
1894 | ||
1895 | if (argv != NULL && argv[0] != NULL && argv[1] != NULL) | |
1896 | error (_("Too many arguments in command")); | |
1897 | ||
1898 | if (argv != NULL && argv[0] != NULL) | |
1899 | from = argv[0]; | |
1900 | ||
1901 | /* Print the substitution rules. */ | |
1902 | ||
1903 | if (from != NULL) | |
1904 | printf_filtered | |
1905 | (_("Source path substitution rule matching `%s':\n"), from); | |
1906 | else | |
1907 | printf_filtered (_("List of all source path substitution rules:\n")); | |
1908 | ||
1909 | while (rule != NULL) | |
1910 | { | |
1e2ccb61 | 1911 | if (from == NULL || substitute_path_rule_matches (rule, from) != 0) |
2f61ca93 JB |
1912 | printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to); |
1913 | rule = rule->next; | |
1914 | } | |
5b3fca71 TT |
1915 | |
1916 | do_cleanups (cleanup); | |
2f61ca93 JB |
1917 | } |
1918 | ||
1919 | /* Implement the "unset substitute-path" command. */ | |
1920 | ||
1921 | static void | |
1922 | unset_substitute_path_command (char *args, int from_tty) | |
1923 | { | |
1924 | struct substitute_path_rule *rule = substitute_path_rules; | |
d1a41061 | 1925 | char **argv = gdb_buildargv (args); |
2f61ca93 JB |
1926 | char *from = NULL; |
1927 | int rule_found = 0; | |
5b3fca71 | 1928 | struct cleanup *cleanup; |
2f61ca93 JB |
1929 | |
1930 | /* This function takes either 0 or 1 argument. */ | |
1931 | ||
5b3fca71 | 1932 | cleanup = make_cleanup_freeargv (argv); |
2f61ca93 JB |
1933 | if (argv != NULL && argv[0] != NULL && argv[1] != NULL) |
1934 | error (_("Incorrect usage, too many arguments in command")); | |
1935 | ||
1936 | if (argv != NULL && argv[0] != NULL) | |
1937 | from = argv[0]; | |
1938 | ||
1939 | /* If the user asked for all the rules to be deleted, ask him | |
1940 | to confirm and give him a chance to abort before the action | |
1941 | is performed. */ | |
1942 | ||
1943 | if (from == NULL | |
1944 | && !query (_("Delete all source path substitution rules? "))) | |
1945 | error (_("Canceled")); | |
1946 | ||
1947 | /* Delete the rule matching the argument. No argument means that | |
1948 | all rules should be deleted. */ | |
1949 | ||
1950 | while (rule != NULL) | |
1951 | { | |
1952 | struct substitute_path_rule *next = rule->next; | |
1953 | ||
1954 | if (from == NULL || FILENAME_CMP (from, rule->from) == 0) | |
1955 | { | |
1956 | delete_substitute_path_rule (rule); | |
1957 | rule_found = 1; | |
1958 | } | |
1959 | ||
1960 | rule = next; | |
1961 | } | |
1962 | ||
1963 | /* If the user asked for a specific rule to be deleted but | |
1964 | we could not find it, then report an error. */ | |
1965 | ||
1966 | if (from != NULL && !rule_found) | |
1967 | error (_("No substitution rule defined for `%s'"), from); | |
c4e86dd4 DJ |
1968 | |
1969 | forget_cached_source_info (); | |
5b3fca71 TT |
1970 | |
1971 | do_cleanups (cleanup); | |
2f61ca93 JB |
1972 | } |
1973 | ||
1974 | /* Add a new source path substitution rule. */ | |
1975 | ||
1976 | static void | |
1977 | set_substitute_path_command (char *args, int from_tty) | |
1978 | { | |
2f61ca93 JB |
1979 | char **argv; |
1980 | struct substitute_path_rule *rule; | |
5b3fca71 | 1981 | struct cleanup *cleanup; |
2f61ca93 | 1982 | |
d1a41061 | 1983 | argv = gdb_buildargv (args); |
5b3fca71 | 1984 | cleanup = make_cleanup_freeargv (argv); |
2f61ca93 JB |
1985 | |
1986 | if (argv == NULL || argv[0] == NULL || argv [1] == NULL) | |
1987 | error (_("Incorrect usage, too few arguments in command")); | |
1988 | ||
1989 | if (argv[2] != NULL) | |
1990 | error (_("Incorrect usage, too many arguments in command")); | |
1991 | ||
1992 | if (*(argv[0]) == '\0') | |
1993 | error (_("First argument must be at least one character long")); | |
1994 | ||
1995 | /* Strip any trailing directory separator character in either FROM | |
1996 | or TO. The substitution rule already implicitly contains them. */ | |
1997 | strip_trailing_directory_separator (argv[0]); | |
1998 | strip_trailing_directory_separator (argv[1]); | |
1999 | ||
2000 | /* If a rule with the same "from" was previously defined, then | |
2001 | delete it. This new rule replaces it. */ | |
2002 | ||
2003 | rule = find_substitute_path_rule (argv[0]); | |
2004 | if (rule != NULL) | |
2005 | delete_substitute_path_rule (rule); | |
2006 | ||
2007 | /* Insert the new substitution rule. */ | |
2008 | ||
2009 | add_substitute_path_rule (argv[0], argv[1]); | |
c4e86dd4 | 2010 | forget_cached_source_info (); |
5b3fca71 TT |
2011 | |
2012 | do_cleanups (cleanup); | |
2f61ca93 JB |
2013 | } |
2014 | ||
c906108c SS |
2015 | \f |
2016 | void | |
fba45db2 | 2017 | _initialize_source (void) |
c906108c SS |
2018 | { |
2019 | struct cmd_list_element *c; | |
433759f7 | 2020 | |
c906108c SS |
2021 | current_source_symtab = 0; |
2022 | init_source_path (); | |
2023 | ||
2024 | /* The intention is to use POSIX Basic Regular Expressions. | |
2025 | Always use the GNU regex routine for consistency across all hosts. | |
2026 | Our current GNU regex.c does not have all the POSIX features, so this is | |
2027 | just an approximation. */ | |
2028 | re_set_syntax (RE_SYNTAX_GREP); | |
2029 | ||
1a966eab AC |
2030 | c = add_cmd ("directory", class_files, directory_command, _("\ |
2031 | Add directory DIR to beginning of search path for source files.\n\ | |
c906108c SS |
2032 | Forget cached info on source file locations and line positions.\n\ |
2033 | DIR can also be $cwd for the current working directory, or $cdir for the\n\ | |
2034 | directory in which the source file was compiled into object code.\n\ | |
1a966eab | 2035 | With no argument, reset the search path to $cdir:$cwd, the default."), |
c906108c SS |
2036 | &cmdlist); |
2037 | ||
2038 | if (dbx_commands) | |
c5aa993b | 2039 | add_com_alias ("use", "directory", class_files, 0); |
c906108c | 2040 | |
5ba2abeb | 2041 | set_cmd_completer (c, filename_completer); |
c906108c | 2042 | |
99e7ae30 DE |
2043 | add_setshow_optional_filename_cmd ("directories", |
2044 | class_files, | |
2045 | &source_path, | |
2046 | _("\ | |
2047 | Set the search path for finding source files."), | |
2048 | _("\ | |
2049 | Show the search path for finding source files."), | |
2050 | _("\ | |
c906108c | 2051 | $cwd in the path means the current working directory.\n\ |
99e7ae30 DE |
2052 | $cdir in the path means the compilation directory of the source file.\n\ |
2053 | GDB ensures the search path always ends with $cdir:$cwd by\n\ | |
2054 | appending these directories if necessary.\n\ | |
2055 | Setting the value to an empty string sets it to $cdir:$cwd, the default."), | |
2056 | set_directories_command, | |
2057 | show_directories_command, | |
2058 | &setlist, &showlist); | |
c906108c | 2059 | |
c906108c | 2060 | add_info ("source", source_info, |
1bedd215 | 2061 | _("Information about the current source file.")); |
c906108c | 2062 | |
1bedd215 AC |
2063 | add_info ("line", line_info, _("\ |
2064 | Core addresses of the code for a source line.\n\ | |
c906108c SS |
2065 | Line can be specified as\n\ |
2066 | LINENUM, to list around that line in current file,\n\ | |
2067 | FILE:LINENUM, to list around that line in that file,\n\ | |
2068 | FUNCTION, to list around beginning of that function,\n\ | |
2069 | FILE:FUNCTION, to distinguish among like-named static functions.\n\ | |
c906108c SS |
2070 | Default is to describe the last source line that was listed.\n\n\ |
2071 | This sets the default address for \"x\" to the line's first instruction\n\ | |
2072 | so that \"x/i\" suffices to start examining the machine code.\n\ | |
1bedd215 | 2073 | The address is also stored as the value of \"$_\".")); |
c906108c | 2074 | |
1bedd215 AC |
2075 | add_com ("forward-search", class_files, forward_search_command, _("\ |
2076 | Search for regular expression (see regex(3)) from last line listed.\n\ | |
2077 | The matching line number is also stored as the value of \"$_\".")); | |
c906108c | 2078 | add_com_alias ("search", "forward-search", class_files, 0); |
1e96de83 | 2079 | add_com_alias ("fo", "forward-search", class_files, 1); |
c906108c | 2080 | |
1bedd215 AC |
2081 | add_com ("reverse-search", class_files, reverse_search_command, _("\ |
2082 | Search backward for regular expression (see regex(3)) from last line listed.\n\ | |
2083 | The matching line number is also stored as the value of \"$_\".")); | |
dd304d53 | 2084 | add_com_alias ("rev", "reverse-search", class_files, 1); |
c906108c | 2085 | |
7f7cc265 | 2086 | add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\ |
35096d9d | 2087 | Set number of source lines gdb will list by default."), _("\ |
f81d1120 PA |
2088 | Show number of source lines gdb will list by default."), _("\ |
2089 | Use this to choose how many source lines the \"list\" displays (unless\n\ | |
2090 | the \"list\" argument explicitly specifies some other number).\n\ | |
2091 | A value of \"unlimited\", or zero, means there's no limit."), | |
7f7cc265 PA |
2092 | NULL, |
2093 | show_lines_to_list, | |
2094 | &setlist, &showlist); | |
2f61ca93 JB |
2095 | |
2096 | add_cmd ("substitute-path", class_files, set_substitute_path_command, | |
2097 | _("\ | |
7ef2b397 JB |
2098 | Usage: set substitute-path FROM TO\n\ |
2099 | Add a substitution rule replacing FROM into TO in source file names.\n\ | |
2100 | If a substitution rule was previously set for FROM, the old rule\n\ | |
2101 | is replaced by the new one."), | |
2102 | &setlist); | |
2f61ca93 JB |
2103 | |
2104 | add_cmd ("substitute-path", class_files, unset_substitute_path_command, | |
2105 | _("\ | |
7ef2b397 JB |
2106 | Usage: unset substitute-path [FROM]\n\ |
2107 | Delete the rule for substituting FROM in source file names. If FROM\n\ | |
2108 | is not specified, all substituting rules are deleted.\n\ | |
2109 | If the debugger cannot find a rule for FROM, it will display a warning."), | |
2f61ca93 JB |
2110 | &unsetlist); |
2111 | ||
2112 | add_cmd ("substitute-path", class_files, show_substitute_path_command, | |
7ef2b397 JB |
2113 | _("\ |
2114 | Usage: show substitute-path [FROM]\n\ | |
2115 | Print the rule for substituting FROM in source file names. If FROM\n\ | |
2116 | is not specified, print all substitution rules."), | |
2f61ca93 | 2117 | &showlist); |
1b56eb55 JK |
2118 | |
2119 | add_setshow_enum_cmd ("filename-display", class_files, | |
2120 | filename_display_kind_names, | |
2121 | &filename_display_string, _("\ | |
2122 | Set how to display filenames."), _("\ | |
2123 | Show how to display filenames."), _("\ | |
2124 | filename-display can be:\n\ | |
2125 | basename - display only basename of a filename\n\ | |
2126 | relative - display a filename relative to the compilation directory\n\ | |
2127 | absolute - display an absolute filename\n\ | |
2128 | By default, relative filenames are displayed."), | |
2129 | NULL, | |
2130 | show_filename_display_string, | |
2131 | &setlist, &showlist); | |
2132 | ||
c906108c | 2133 | } |