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