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