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