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