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