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