]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/source.c
update copyright year range in GDB files
[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 exported functions. */
c906108c 52
a14ed312 53void _initialize_source (void);
c906108c 54
c378eb4e 55/* Prototypes for local functions. */
c906108c 56
a14ed312 57static int get_filename_and_charpos (struct symtab *, char **);
c906108c 58
a14ed312 59static void reverse_search_command (char *, int);
c906108c 60
a14ed312 61static void forward_search_command (char *, int);
c906108c 62
a14ed312 63static void line_info (char *, int);
c906108c 64
a14ed312 65static 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
70char *source_path;
71
2f61ca93
JB
72/* Support for source path substitution commands. */
73
74struct substitute_path_rule
75{
76 char *from;
77 char *to;
78 struct substitute_path_rule *next;
79};
80
81static struct substitute_path_rule *substitute_path_rules = NULL;
82
c906108c
SS
83/* Symtab of default file for listing lines of. */
84
0378c332 85static struct symtab *current_source_symtab;
c906108c
SS
86
87/* Default next line to list. */
88
0378c332 89static int current_source_line;
c906108c 90
6c95b8df
PA
91static 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 99static int lines_to_list = 10;
920d2a44
AC
100static void
101show_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'. */
111static const char filename_display_basename[] = "basename";
112static const char filename_display_relative[] = "relative";
113static const char filename_display_absolute[] = "absolute";
114
115static const char *const filename_display_kind_names[] = {
116 filename_display_basename,
117 filename_display_relative,
118 filename_display_absolute,
119 NULL
120};
121
122static const char *filename_display_string = filename_display_relative;
123
124static void
125show_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
134static 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
140static 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
145static struct symtab *last_source_visited = NULL;
146static 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
152int
153get_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
161static void
162clear_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
173int
174get_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
182struct symtab_and_line
183get_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
204void
205set_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
220struct symtab_and_line
53cb0458 221set_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
243void
244clear_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
258void
aa1ee363 259select_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
330static void
331set_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 352static void
99e7ae30 353show_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
362static void
363show_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
372void
373forget_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
400void
fba45db2 401forget_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
415void
fba45db2 416init_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 427static void
fba45db2 428directory_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
452void
453directory_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
460void
fba45db2 461mod_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
472void
473add_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
655static void
fba45db2 656source_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 693static int
a55411b9 694is_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 755int
014d698b 756openp (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, &reg_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, &reg_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 913done:
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 941int
24f81874 942source_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
962static int
963substitute_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
991static struct substitute_path_rule *
992get_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 1009char *
2f61ca93
JB
1010rewrite_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 1031int
e2357892 1032find_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
1140int
1141open_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 1158const char *
57c22c6c 1159symtab_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
1198const char *
1199symtab_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
1216void
fba45db2 1217find_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
1292static int
fba45db2 1293get_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
1325int
fba45db2
KB
1326identify_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
1349static void
dfaae886 1350print_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;
52f0bd74 1356 FILE *stream;
c906108c 1357 int nlines = stopline - line;
7c8a8b04 1358 struct cleanup *cleanup;
79a45e25 1359 struct ui_out *uiout = current_uiout;
c906108c 1360
c378eb4e 1361 /* Regardless of whether we can open the file, set current_source_symtab. */
c906108c
SS
1362 current_source_symtab = s;
1363 current_source_line = line;
1364 first_line_listed = line;
1365
3e43a32a 1366 /* If printing of source lines is disabled, just print file and line
c378eb4e 1367 number. */
112e8700 1368 if (uiout->test_flags (ui_source_list))
8b93c638 1369 {
c378eb4e 1370 /* Only prints "No such file or directory" once. */
c5aa993b
JM
1371 if ((s != last_source_visited) || (!last_source_error))
1372 {
1373 last_source_visited = s;
1374 desc = open_source_file (s);
1375 }
1376 else
1377 {
1378 desc = last_source_error;
dfaae886 1379 flags |= PRINT_SOURCE_LINES_NOERROR;
c5aa993b 1380 }
8b93c638
JM
1381 }
1382 else
1383 {
f4dfd9c0 1384 desc = last_source_error;
8d297bbf 1385 flags |= PRINT_SOURCE_LINES_NOERROR;
f4dfd9c0 1386 noprint = 1;
8b93c638 1387 }
c906108c 1388
f4dfd9c0 1389 if (desc < 0 || noprint)
c906108c
SS
1390 {
1391 last_source_error = desc;
1392
dfaae886 1393 if (!(flags & PRINT_SOURCE_LINES_NOERROR))
c5aa993b 1394 {
05cba821
JK
1395 const char *filename = symtab_to_filename_for_display (s);
1396 int len = strlen (filename) + 100;
224c3ddb 1397 char *name = (char *) alloca (len);
08850b56 1398
05cba821 1399 xsnprintf (name, len, "%d\t%s", line, filename);
c906108c
SS
1400 print_sys_errmsg (name, errno);
1401 }
1402 else
fc0ae648 1403 {
112e8700
SM
1404 uiout->field_int ("line", line);
1405 uiout->text ("\tin ");
56d397a3 1406
23eb71e4
JK
1407 /* CLI expects only the "file" field. TUI expects only the
1408 "fullname" field (and TUI does break if "file" is printed).
1409 MI expects both fields. ui_source_list is set only for CLI,
1410 not for TUI. */
112e8700
SM
1411 if (uiout->is_mi_like_p () || uiout->test_flags (ui_source_list))
1412 uiout->field_string ("file", symtab_to_filename_for_display (s));
1413 if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list))
8f1b8b82
JK
1414 {
1415 const char *s_fullname = symtab_to_fullname (s);
1416 char *local_fullname;
1417
1418 /* ui_out_field_string may free S_FULLNAME by calling
1419 open_source_file for it again. See e.g.,
1420 tui_field_string->tui_show_source. */
224c3ddb 1421 local_fullname = (char *) alloca (strlen (s_fullname) + 1);
8f1b8b82
JK
1422 strcpy (local_fullname, s_fullname);
1423
112e8700 1424 uiout->field_string ("fullname", local_fullname);
8f1b8b82 1425 }
23eb71e4 1426
112e8700 1427 uiout->text ("\n");
fc0ae648 1428 }
c906108c
SS
1429
1430 return;
1431 }
1432
1433 last_source_error = 0;
1434
1435 if (s->line_charpos == 0)
1436 find_source_lines (s, desc);
1437
1438 if (line < 1 || line > s->nlines)
1439 {
1440 close (desc);
8a3fe4f8 1441 error (_("Line number %d out of range; %s has %d lines."),
05cba821 1442 line, symtab_to_filename_for_display (s), s->nlines);
c906108c
SS
1443 }
1444
1445 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1446 {
1447 close (desc);
05cba821 1448 perror_with_name (symtab_to_filename_for_display (s));
c906108c
SS
1449 }
1450
1451 stream = fdopen (desc, FDOPEN_MODE);
1452 clearerr (stream);
7c8a8b04 1453 cleanup = make_cleanup_fclose (stream);
c906108c
SS
1454
1455 while (nlines-- > 0)
1456 {
8b93c638
JM
1457 char buf[20];
1458
1459 c = fgetc (stream);
1460 if (c == EOF)
1461 break;
1462 last_line_listed = current_source_line;
4cd29721
MM
1463 if (flags & PRINT_SOURCE_LINES_FILENAME)
1464 {
112e8700
SM
1465 uiout->text (symtab_to_filename_for_display (s));
1466 uiout->text (":");
4cd29721 1467 }
08850b56 1468 xsnprintf (buf, sizeof (buf), "%d\t", current_source_line++);
112e8700 1469 uiout->text (buf);
8b93c638
JM
1470 do
1471 {
1472 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1473 {
08850b56 1474 xsnprintf (buf, sizeof (buf), "^%c", c + 0100);
112e8700 1475 uiout->text (buf);
8b93c638
JM
1476 }
1477 else if (c == 0177)
112e8700 1478 uiout->text ("^?");
8b93c638
JM
1479 else if (c == '\r')
1480 {
1481 /* Skip a \r character, but only before a \n. */
1482 int c1 = fgetc (stream);
1483
1484 if (c1 != '\n')
1485 printf_filtered ("^%c", c + 0100);
1486 if (c1 != EOF)
1487 ungetc (c1, stream);
1488 }
8b93c638
JM
1489 else
1490 {
08850b56 1491 xsnprintf (buf, sizeof (buf), "%c", c);
112e8700 1492 uiout->text (buf);
8b93c638
JM
1493 }
1494 }
1495 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c
SS
1496 }
1497
7c8a8b04 1498 do_cleanups (cleanup);
c906108c
SS
1499}
1500\f
1501/* Show source lines from the file of symtab S, starting with line
f132ba9d 1502 number LINE and stopping before line number STOPLINE. If this is
c906108c 1503 not the command line version, then the source is shown in the source
c378eb4e 1504 window otherwise it is simply printed. */
c906108c 1505
c5aa993b 1506void
dfaae886 1507print_source_lines (struct symtab *s, int line, int stopline,
8d297bbf 1508 print_source_lines_flags flags)
c906108c 1509{
dfaae886 1510 print_source_lines_base (s, line, stopline, flags);
c906108c
SS
1511}
1512\f
c906108c
SS
1513/* Print info on range of pc's in a specified line. */
1514
1515static void
fba45db2 1516line_info (char *arg, int from_tty)
c906108c
SS
1517{
1518 struct symtabs_and_lines sals;
1519 struct symtab_and_line sal;
1520 CORE_ADDR start_pc, end_pc;
1521 int i;
f8eba3c6 1522 struct cleanup *cleanups;
c906108c 1523
fe39c653 1524 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
1525
1526 if (arg == 0)
1527 {
1528 sal.symtab = current_source_symtab;
f8eba3c6 1529 sal.pspace = current_program_space;
5166082f
PA
1530 if (last_line_listed != 0)
1531 sal.line = last_line_listed;
1532 else
1533 sal.line = current_source_line;
1534
c906108c 1535 sals.nelts = 1;
8d749320 1536 sals.sals = XNEW (struct symtab_and_line);
c906108c
SS
1537 sals.sals[0] = sal;
1538 }
1539 else
1540 {
39cf75f7 1541 sals = decode_line_with_last_displayed (arg, DECODE_LINE_LIST_MODE);
c5aa993b 1542
c906108c
SS
1543 dont_repeat ();
1544 }
1545
f8eba3c6
TT
1546 cleanups = make_cleanup (xfree, sals.sals);
1547
c906108c 1548 /* C++ More than one line may have been specified, as when the user
c378eb4e 1549 specifies an overloaded function name. Print info on them all. */
c906108c
SS
1550 for (i = 0; i < sals.nelts; i++)
1551 {
1552 sal = sals.sals[i];
f8eba3c6
TT
1553 if (sal.pspace != current_program_space)
1554 continue;
c5aa993b 1555
c906108c
SS
1556 if (sal.symtab == 0)
1557 {
5af949e3
UW
1558 struct gdbarch *gdbarch = get_current_arch ();
1559
a3f17187 1560 printf_filtered (_("No line number information available"));
c906108c
SS
1561 if (sal.pc != 0)
1562 {
1563 /* This is useful for "info line *0x7f34". If we can't tell the
c5aa993b
JM
1564 user about a source line, at least let them have the symbolic
1565 address. */
c906108c
SS
1566 printf_filtered (" for address ");
1567 wrap_here (" ");
5af949e3 1568 print_address (gdbarch, sal.pc, gdb_stdout);
c906108c
SS
1569 }
1570 else
1571 printf_filtered (".");
1572 printf_filtered ("\n");
1573 }
1574 else if (sal.line > 0
1575 && find_line_pc_range (sal, &start_pc, &end_pc))
1576 {
eb822aa6
DE
1577 struct gdbarch *gdbarch
1578 = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
5af949e3 1579
c906108c
SS
1580 if (start_pc == end_pc)
1581 {
1582 printf_filtered ("Line %d of \"%s\"",
05cba821
JK
1583 sal.line,
1584 symtab_to_filename_for_display (sal.symtab));
c906108c
SS
1585 wrap_here (" ");
1586 printf_filtered (" is at address ");
5af949e3 1587 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1588 wrap_here (" ");
1589 printf_filtered (" but contains no code.\n");
1590 }
1591 else
1592 {
1593 printf_filtered ("Line %d of \"%s\"",
05cba821
JK
1594 sal.line,
1595 symtab_to_filename_for_display (sal.symtab));
c906108c
SS
1596 wrap_here (" ");
1597 printf_filtered (" starts at address ");
5af949e3 1598 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1599 wrap_here (" ");
1600 printf_filtered (" and ends at ");
5af949e3 1601 print_address (gdbarch, end_pc, gdb_stdout);
c906108c
SS
1602 printf_filtered (".\n");
1603 }
1604
1605 /* x/i should display this line's code. */
5af949e3 1606 set_next_address (gdbarch, start_pc);
c906108c
SS
1607
1608 /* Repeating "info line" should do the following line. */
1609 last_line_listed = sal.line + 1;
1610
1611 /* If this is the only line, show the source code. If it could
1612 not find the file, don't do anything special. */
1613 if (annotation_level && sals.nelts == 1)
1614 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1615 }
1616 else
1617 /* Is there any case in which we get here, and have an address
1618 which the user would want to see? If we have debugging symbols
1619 and no line numbers? */
a3f17187 1620 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
05cba821 1621 sal.line, symtab_to_filename_for_display (sal.symtab));
c906108c 1622 }
f8eba3c6 1623 do_cleanups (cleanups);
c906108c
SS
1624}
1625\f
1626/* Commands to search the source file for a regexp. */
1627
c906108c 1628static void
fba45db2 1629forward_search_command (char *regex, int from_tty)
c906108c 1630{
52f0bd74
AC
1631 int c;
1632 int desc;
1633 FILE *stream;
c906108c
SS
1634 int line;
1635 char *msg;
9fe4a216 1636 struct cleanup *cleanups;
c906108c 1637
c906108c 1638 line = last_line_listed + 1;
c906108c
SS
1639
1640 msg = (char *) re_comp (regex);
1641 if (msg)
8a3fe4f8 1642 error (("%s"), msg);
c906108c
SS
1643
1644 if (current_source_symtab == 0)
1645 select_source_symtab (0);
1646
1647 desc = open_source_file (current_source_symtab);
1648 if (desc < 0)
05cba821 1649 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
9fe4a216 1650 cleanups = make_cleanup_close (desc);
c906108c
SS
1651
1652 if (current_source_symtab->line_charpos == 0)
1653 find_source_lines (current_source_symtab, desc);
1654
1655 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1656 error (_("Expression not found"));
c906108c
SS
1657
1658 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
05cba821 1659 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
c906108c 1660
9fe4a216 1661 discard_cleanups (cleanups);
c906108c
SS
1662 stream = fdopen (desc, FDOPEN_MODE);
1663 clearerr (stream);
9fe4a216 1664 cleanups = make_cleanup_fclose (stream);
c5aa993b
JM
1665 while (1)
1666 {
1667 static char *buf = NULL;
aa1ee363 1668 char *p;
c5aa993b
JM
1669 int cursize, newsize;
1670
1671 cursize = 256;
224c3ddb 1672 buf = (char *) xmalloc (cursize);
c5aa993b
JM
1673 p = buf;
1674
40aea477 1675 c = fgetc (stream);
c5aa993b
JM
1676 if (c == EOF)
1677 break;
1678 do
c906108c 1679 {
c5aa993b
JM
1680 *p++ = c;
1681 if (p - buf == cursize)
1682 {
1683 newsize = cursize + cursize / 2;
224c3ddb 1684 buf = (char *) xrealloc (buf, newsize);
c5aa993b
JM
1685 p = buf + cursize;
1686 cursize = newsize;
1687 }
c906108c 1688 }
40aea477 1689 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c 1690
7be570e7
JM
1691 /* Remove the \r, if any, at the end of the line, otherwise
1692 regular expressions that end with $ or \n won't work. */
1693 if (p - buf > 1 && p[-2] == '\r')
1694 {
1695 p--;
1696 p[-1] = '\n';
1697 }
7be570e7 1698
c378eb4e 1699 /* We now have a source line in buf, null terminate and match. */
c5aa993b
JM
1700 *p = 0;
1701 if (re_exec (buf) > 0)
1702 {
c378eb4e 1703 /* Match! */
e681b284 1704 do_cleanups (cleanups);
c5aa993b 1705 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1706 set_internalvar_integer (lookup_internalvar ("_"), line);
325fac50 1707 current_source_line = std::max (line - lines_to_list / 2, 1);
c5aa993b
JM
1708 return;
1709 }
1710 line++;
1711 }
c906108c 1712
a3f17187 1713 printf_filtered (_("Expression not found\n"));
9fe4a216 1714 do_cleanups (cleanups);
c906108c
SS
1715}
1716
c906108c 1717static void
fba45db2 1718reverse_search_command (char *regex, int from_tty)
c906108c 1719{
52f0bd74
AC
1720 int c;
1721 int desc;
1722 FILE *stream;
c906108c
SS
1723 int line;
1724 char *msg;
9fe4a216 1725 struct cleanup *cleanups;
063190b6 1726
c906108c 1727 line = last_line_listed - 1;
c906108c
SS
1728
1729 msg = (char *) re_comp (regex);
1730 if (msg)
8a3fe4f8 1731 error (("%s"), msg);
c906108c
SS
1732
1733 if (current_source_symtab == 0)
1734 select_source_symtab (0);
1735
1736 desc = open_source_file (current_source_symtab);
1737 if (desc < 0)
05cba821 1738 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
9fe4a216 1739 cleanups = make_cleanup_close (desc);
c906108c
SS
1740
1741 if (current_source_symtab->line_charpos == 0)
1742 find_source_lines (current_source_symtab, desc);
1743
1744 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1745 error (_("Expression not found"));
c906108c
SS
1746
1747 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
05cba821 1748 perror_with_name (symtab_to_filename_for_display (current_source_symtab));
c906108c 1749
9fe4a216 1750 discard_cleanups (cleanups);
c906108c
SS
1751 stream = fdopen (desc, FDOPEN_MODE);
1752 clearerr (stream);
9fe4a216 1753 cleanups = make_cleanup_fclose (stream);
c906108c
SS
1754 while (line > 1)
1755 {
c378eb4e
MS
1756/* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1757 char buf[4096]; /* Should be reasonable??? */
aa1ee363 1758 char *p = buf;
c906108c 1759
40aea477 1760 c = fgetc (stream);
c906108c
SS
1761 if (c == EOF)
1762 break;
c5aa993b
JM
1763 do
1764 {
1765 *p++ = c;
1766 }
40aea477 1767 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c 1768
7be570e7
JM
1769 /* Remove the \r, if any, at the end of the line, otherwise
1770 regular expressions that end with $ or \n won't work. */
1771 if (p - buf > 1 && p[-2] == '\r')
1772 {
1773 p--;
1774 p[-1] = '\n';
1775 }
7be570e7 1776
c906108c
SS
1777 /* We now have a source line in buf; null terminate and match. */
1778 *p = 0;
1779 if (re_exec (buf) > 0)
1780 {
c378eb4e 1781 /* Match! */
e681b284 1782 do_cleanups (cleanups);
c5aa993b 1783 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1784 set_internalvar_integer (lookup_internalvar ("_"), line);
325fac50 1785 current_source_line = std::max (line - lines_to_list / 2, 1);
c906108c
SS
1786 return;
1787 }
1788 line--;
1789 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1790 {
05cba821
JK
1791 const char *filename;
1792
e681b284 1793 do_cleanups (cleanups);
05cba821
JK
1794 filename = symtab_to_filename_for_display (current_source_symtab);
1795 perror_with_name (filename);
c906108c
SS
1796 }
1797 }
1798
a3f17187 1799 printf_filtered (_("Expression not found\n"));
9fe4a216 1800 do_cleanups (cleanups);
c906108c
SS
1801 return;
1802}
2f61ca93
JB
1803
1804/* If the last character of PATH is a directory separator, then strip it. */
1805
1806static void
1807strip_trailing_directory_separator (char *path)
1808{
1809 const int last = strlen (path) - 1;
1810
1811 if (last < 0)
1812 return; /* No stripping is needed if PATH is the empty string. */
1813
1814 if (IS_DIR_SEPARATOR (path[last]))
1815 path[last] = '\0';
1816}
1817
1818/* Return the path substitution rule that matches FROM.
1819 Return NULL if no rule matches. */
1820
1821static struct substitute_path_rule *
1822find_substitute_path_rule (const char *from)
1823{
1824 struct substitute_path_rule *rule = substitute_path_rules;
1825
1826 while (rule != NULL)
1827 {
1828 if (FILENAME_CMP (rule->from, from) == 0)
1829 return rule;
1830 rule = rule->next;
1831 }
1832
1833 return NULL;
1834}
1835
1836/* Add a new substitute-path rule at the end of the current list of rules.
1837 The new rule will replace FROM into TO. */
1838
29b0e8a2 1839void
2f61ca93
JB
1840add_substitute_path_rule (char *from, char *to)
1841{
1842 struct substitute_path_rule *rule;
8d749320 1843 struct substitute_path_rule *new_rule = XNEW (struct substitute_path_rule);
2f61ca93 1844
2f61ca93
JB
1845 new_rule->from = xstrdup (from);
1846 new_rule->to = xstrdup (to);
1847 new_rule->next = NULL;
1848
1849 /* If the list of rules are empty, then insert the new rule
1850 at the head of the list. */
1851
1852 if (substitute_path_rules == NULL)
1853 {
1854 substitute_path_rules = new_rule;
1855 return;
1856 }
1857
1858 /* Otherwise, skip to the last rule in our list and then append
1859 the new rule. */
1860
1861 rule = substitute_path_rules;
1862 while (rule->next != NULL)
1863 rule = rule->next;
1864
1865 rule->next = new_rule;
1866}
1867
1868/* Remove the given source path substitution rule from the current list
1869 of rules. The memory allocated for that rule is also deallocated. */
1870
1871static void
1872delete_substitute_path_rule (struct substitute_path_rule *rule)
1873{
1874 if (rule == substitute_path_rules)
1875 substitute_path_rules = rule->next;
1876 else
1877 {
1878 struct substitute_path_rule *prev = substitute_path_rules;
1879
1880 while (prev != NULL && prev->next != rule)
1881 prev = prev->next;
1882
1883 gdb_assert (prev != NULL);
1884
1885 prev->next = rule->next;
1886 }
1887
1888 xfree (rule->from);
1889 xfree (rule->to);
1890 xfree (rule);
1891}
1892
1893/* Implement the "show substitute-path" command. */
1894
1895static void
1896show_substitute_path_command (char *args, int from_tty)
1897{
1898 struct substitute_path_rule *rule = substitute_path_rules;
1899 char **argv;
1900 char *from = NULL;
5b3fca71 1901 struct cleanup *cleanup;
2f61ca93 1902
d1a41061 1903 argv = gdb_buildargv (args);
5b3fca71 1904 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1905
1906 /* We expect zero or one argument. */
1907
1908 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1909 error (_("Too many arguments in command"));
1910
1911 if (argv != NULL && argv[0] != NULL)
1912 from = argv[0];
1913
1914 /* Print the substitution rules. */
1915
1916 if (from != NULL)
1917 printf_filtered
1918 (_("Source path substitution rule matching `%s':\n"), from);
1919 else
1920 printf_filtered (_("List of all source path substitution rules:\n"));
1921
1922 while (rule != NULL)
1923 {
1e2ccb61 1924 if (from == NULL || substitute_path_rule_matches (rule, from) != 0)
2f61ca93
JB
1925 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1926 rule = rule->next;
1927 }
5b3fca71
TT
1928
1929 do_cleanups (cleanup);
2f61ca93
JB
1930}
1931
1932/* Implement the "unset substitute-path" command. */
1933
1934static void
1935unset_substitute_path_command (char *args, int from_tty)
1936{
1937 struct substitute_path_rule *rule = substitute_path_rules;
d1a41061 1938 char **argv = gdb_buildargv (args);
2f61ca93
JB
1939 char *from = NULL;
1940 int rule_found = 0;
5b3fca71 1941 struct cleanup *cleanup;
2f61ca93
JB
1942
1943 /* This function takes either 0 or 1 argument. */
1944
5b3fca71 1945 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1946 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1947 error (_("Incorrect usage, too many arguments in command"));
1948
1949 if (argv != NULL && argv[0] != NULL)
1950 from = argv[0];
1951
1952 /* If the user asked for all the rules to be deleted, ask him
1953 to confirm and give him a chance to abort before the action
1954 is performed. */
1955
1956 if (from == NULL
1957 && !query (_("Delete all source path substitution rules? ")))
1958 error (_("Canceled"));
1959
1960 /* Delete the rule matching the argument. No argument means that
1961 all rules should be deleted. */
1962
1963 while (rule != NULL)
1964 {
1965 struct substitute_path_rule *next = rule->next;
1966
1967 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1968 {
1969 delete_substitute_path_rule (rule);
1970 rule_found = 1;
1971 }
1972
1973 rule = next;
1974 }
1975
1976 /* If the user asked for a specific rule to be deleted but
1977 we could not find it, then report an error. */
1978
1979 if (from != NULL && !rule_found)
1980 error (_("No substitution rule defined for `%s'"), from);
c4e86dd4
DJ
1981
1982 forget_cached_source_info ();
5b3fca71
TT
1983
1984 do_cleanups (cleanup);
2f61ca93
JB
1985}
1986
1987/* Add a new source path substitution rule. */
1988
1989static void
1990set_substitute_path_command (char *args, int from_tty)
1991{
2f61ca93
JB
1992 char **argv;
1993 struct substitute_path_rule *rule;
5b3fca71 1994 struct cleanup *cleanup;
2f61ca93 1995
d1a41061 1996 argv = gdb_buildargv (args);
5b3fca71 1997 cleanup = make_cleanup_freeargv (argv);
2f61ca93
JB
1998
1999 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
2000 error (_("Incorrect usage, too few arguments in command"));
2001
2002 if (argv[2] != NULL)
2003 error (_("Incorrect usage, too many arguments in command"));
2004
2005 if (*(argv[0]) == '\0')
2006 error (_("First argument must be at least one character long"));
2007
2008 /* Strip any trailing directory separator character in either FROM
2009 or TO. The substitution rule already implicitly contains them. */
2010 strip_trailing_directory_separator (argv[0]);
2011 strip_trailing_directory_separator (argv[1]);
2012
2013 /* If a rule with the same "from" was previously defined, then
2014 delete it. This new rule replaces it. */
2015
2016 rule = find_substitute_path_rule (argv[0]);
2017 if (rule != NULL)
2018 delete_substitute_path_rule (rule);
2019
2020 /* Insert the new substitution rule. */
2021
2022 add_substitute_path_rule (argv[0], argv[1]);
c4e86dd4 2023 forget_cached_source_info ();
5b3fca71
TT
2024
2025 do_cleanups (cleanup);
2f61ca93
JB
2026}
2027
c906108c
SS
2028\f
2029void
fba45db2 2030_initialize_source (void)
c906108c
SS
2031{
2032 struct cmd_list_element *c;
433759f7 2033
c906108c
SS
2034 current_source_symtab = 0;
2035 init_source_path ();
2036
2037 /* The intention is to use POSIX Basic Regular Expressions.
2038 Always use the GNU regex routine for consistency across all hosts.
2039 Our current GNU regex.c does not have all the POSIX features, so this is
2040 just an approximation. */
2041 re_set_syntax (RE_SYNTAX_GREP);
2042
1a966eab
AC
2043 c = add_cmd ("directory", class_files, directory_command, _("\
2044Add directory DIR to beginning of search path for source files.\n\
c906108c
SS
2045Forget cached info on source file locations and line positions.\n\
2046DIR can also be $cwd for the current working directory, or $cdir for the\n\
2047directory in which the source file was compiled into object code.\n\
1a966eab 2048With no argument, reset the search path to $cdir:$cwd, the default."),
c906108c
SS
2049 &cmdlist);
2050
2051 if (dbx_commands)
c5aa993b 2052 add_com_alias ("use", "directory", class_files, 0);
c906108c 2053
5ba2abeb 2054 set_cmd_completer (c, filename_completer);
c906108c 2055
99e7ae30
DE
2056 add_setshow_optional_filename_cmd ("directories",
2057 class_files,
2058 &source_path,
2059 _("\
2060Set the search path for finding source files."),
2061 _("\
2062Show the search path for finding source files."),
2063 _("\
c906108c 2064$cwd in the path means the current working directory.\n\
99e7ae30
DE
2065$cdir in the path means the compilation directory of the source file.\n\
2066GDB ensures the search path always ends with $cdir:$cwd by\n\
2067appending these directories if necessary.\n\
2068Setting the value to an empty string sets it to $cdir:$cwd, the default."),
2069 set_directories_command,
2070 show_directories_command,
2071 &setlist, &showlist);
c906108c 2072
c906108c 2073 add_info ("source", source_info,
1bedd215 2074 _("Information about the current source file."));
c906108c 2075
1bedd215
AC
2076 add_info ("line", line_info, _("\
2077Core addresses of the code for a source line.\n\
c906108c
SS
2078Line can be specified as\n\
2079 LINENUM, to list around that line in current file,\n\
2080 FILE:LINENUM, to list around that line in that file,\n\
2081 FUNCTION, to list around beginning of that function,\n\
2082 FILE:FUNCTION, to distinguish among like-named static functions.\n\
c906108c
SS
2083Default is to describe the last source line that was listed.\n\n\
2084This sets the default address for \"x\" to the line's first instruction\n\
2085so that \"x/i\" suffices to start examining the machine code.\n\
1bedd215 2086The address is also stored as the value of \"$_\"."));
c906108c 2087
1bedd215
AC
2088 add_com ("forward-search", class_files, forward_search_command, _("\
2089Search for regular expression (see regex(3)) from last line listed.\n\
2090The matching line number is also stored as the value of \"$_\"."));
c906108c 2091 add_com_alias ("search", "forward-search", class_files, 0);
1e96de83 2092 add_com_alias ("fo", "forward-search", class_files, 1);
c906108c 2093
1bedd215
AC
2094 add_com ("reverse-search", class_files, reverse_search_command, _("\
2095Search backward for regular expression (see regex(3)) from last line listed.\n\
2096The matching line number is also stored as the value of \"$_\"."));
dd304d53 2097 add_com_alias ("rev", "reverse-search", class_files, 1);
c906108c 2098
7f7cc265 2099 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
35096d9d 2100Set number of source lines gdb will list by default."), _("\
f81d1120
PA
2101Show number of source lines gdb will list by default."), _("\
2102Use this to choose how many source lines the \"list\" displays (unless\n\
2103the \"list\" argument explicitly specifies some other number).\n\
2104A value of \"unlimited\", or zero, means there's no limit."),
7f7cc265
PA
2105 NULL,
2106 show_lines_to_list,
2107 &setlist, &showlist);
2f61ca93
JB
2108
2109 add_cmd ("substitute-path", class_files, set_substitute_path_command,
2110 _("\
7ef2b397
JB
2111Usage: set substitute-path FROM TO\n\
2112Add a substitution rule replacing FROM into TO in source file names.\n\
2113If a substitution rule was previously set for FROM, the old rule\n\
2114is replaced by the new one."),
2115 &setlist);
2f61ca93
JB
2116
2117 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
2118 _("\
7ef2b397
JB
2119Usage: unset substitute-path [FROM]\n\
2120Delete the rule for substituting FROM in source file names. If FROM\n\
2121is not specified, all substituting rules are deleted.\n\
2122If the debugger cannot find a rule for FROM, it will display a warning."),
2f61ca93
JB
2123 &unsetlist);
2124
2125 add_cmd ("substitute-path", class_files, show_substitute_path_command,
7ef2b397
JB
2126 _("\
2127Usage: show substitute-path [FROM]\n\
2128Print the rule for substituting FROM in source file names. If FROM\n\
2129is not specified, print all substitution rules."),
2f61ca93 2130 &showlist);
1b56eb55
JK
2131
2132 add_setshow_enum_cmd ("filename-display", class_files,
2133 filename_display_kind_names,
2134 &filename_display_string, _("\
2135Set how to display filenames."), _("\
2136Show how to display filenames."), _("\
2137filename-display can be:\n\
2138 basename - display only basename of a filename\n\
2139 relative - display a filename relative to the compilation directory\n\
2140 absolute - display an absolute filename\n\
2141By default, relative filenames are displayed."),
2142 NULL,
2143 show_filename_display_string,
2144 &setlist, &showlist);
2145
c906108c 2146}