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