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