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