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