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