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