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