*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / source.c
CommitLineData
c906108c 1/* List lines of source files for GDB, the GNU debugger.
a752853e 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
5e987968 3 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
a752853e 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "symtab.h"
25#include "expression.h"
26#include "language.h"
27#include "command.h"
c2c6d25f 28#include "source.h"
c906108c
SS
29#include "gdbcmd.h"
30#include "frame.h"
31#include "value.h"
32
33#include <sys/types.h>
34#include "gdb_string.h"
35#include "gdb_stat.h"
36#include <fcntl.h>
c906108c 37#include "gdbcore.h"
88987551 38#include "gdb_regex.h"
c906108c
SS
39#include "symfile.h"
40#include "objfiles.h"
41#include "annotate.h"
42#include "gdbtypes.h"
c5f0f3d0 43#include "linespec.h"
fe4e3eb8 44#include "filenames.h" /* for DOSish file names */
d75b5104 45#include "completer.h"
8b93c638 46#include "ui-out.h"
dbda9972 47#include "readline/readline.h"
c906108c 48
3e3a28f1
MK
49#ifndef O_BINARY
50#define O_BINARY 0
51#endif
52
c906108c
SS
53#define OPEN_MODE (O_RDONLY | O_BINARY)
54#define FDOPEN_MODE FOPEN_RB
55
c906108c
SS
56/* Prototypes for exported functions. */
57
a14ed312 58void _initialize_source (void);
c906108c
SS
59
60/* Prototypes for local functions. */
61
a14ed312 62static int get_filename_and_charpos (struct symtab *, char **);
c906108c 63
a14ed312 64static void reverse_search_command (char *, int);
c906108c 65
a14ed312 66static void forward_search_command (char *, int);
c906108c 67
a14ed312 68static void line_info (char *, int);
c906108c 69
a14ed312 70static void source_info (char *, int);
c906108c 71
a14ed312 72static void show_directories (char *, int);
c906108c
SS
73
74/* Path of directories to search for source files.
75 Same format as the PATH environment variable's value. */
76
77char *source_path;
78
79/* Symtab of default file for listing lines of. */
80
0378c332 81static struct symtab *current_source_symtab;
c906108c
SS
82
83/* Default next line to list. */
84
0378c332 85static int current_source_line;
c906108c
SS
86
87/* Default number of lines to print with commands like "list".
88 This is based on guessing how many long (i.e. more than chars_per_line
89 characters) lines there will be. To be completely correct, "list"
90 and friends should be rewritten to count characters and see where
91 things are wrapping, but that would be a fair amount of work. */
92
93int lines_to_list = 10;
94
95/* Line number of last line printed. Default for various commands.
96 current_source_line is usually, but not always, the same as this. */
97
98static int last_line_listed;
99
100/* First line number listed by last listing command. */
101
102static int first_line_listed;
103
104/* Saves the name of the last source file visited and a possible error code.
105 Used to prevent repeating annoying "No such file or directories" msgs */
106
107static struct symtab *last_source_visited = NULL;
108static int last_source_error = 0;
c906108c 109\f
0378c332
FN
110/* Return the first line listed by print_source_lines.
111 Used by command interpreters to request listing from
112 a previous point. */
113
114int
115get_first_line_listed (void)
116{
117 return first_line_listed;
118}
119
120/* Return the default number of lines to print with commands like the
121 cli "list". The caller of print_source_lines must use this to
122 calculate the end line and use it in the call to print_source_lines
123 as it does not automatically use this value. */
124
125int
126get_lines_to_list (void)
127{
128 return lines_to_list;
129}
130
131/* Return the current source file for listing and next line to list.
132 NOTE: The returned sal pc and end fields are not valid. */
133
134struct symtab_and_line
135get_current_source_symtab_and_line (void)
136{
137 struct symtab_and_line cursal;
138
139 cursal.symtab = current_source_symtab;
140 cursal.line = current_source_line;
53cb0458
FN
141 cursal.pc = 0;
142 cursal.end = 0;
0378c332
FN
143
144 return cursal;
145}
146
53cb0458
FN
147/* If the current source file for listing is not set, try and get a default.
148 Usually called before get_current_source_symtab_and_line() is called.
0378c332 149 It may err out if a default cannot be determined.
53cb0458
FN
150 We must be cautious about where it is called, as it can recurse as the
151 process of determining a new default may call the caller!
152 Use get_current_source_symtab_and_line only to get whatever
153 we have without erroring out or trying to get a default. */
0378c332 154
53cb0458
FN
155void
156set_default_source_symtab_and_line (void)
0378c332
FN
157{
158 struct symtab_and_line cursal;
159
160 if (!have_full_symbols () && !have_partial_symbols ())
161 error ("No symbol table is loaded. Use the \"file\" command.");
162
163 /* Pull in a current source symtab if necessary */
164 if (current_source_symtab == 0)
165 select_source_symtab (0);
0378c332
FN
166}
167
168/* Return the current default file for listing and next line to list
169 (the returned sal pc and end fields are not valid.)
53cb0458
FN
170 and set the current default to whatever is in SAL.
171 NOTE: The returned sal pc and end fields are not valid. */
0378c332
FN
172
173struct symtab_and_line
53cb0458 174set_current_source_symtab_and_line (const struct symtab_and_line *sal)
0378c332
FN
175{
176 struct symtab_and_line cursal;
177
178 cursal.symtab = current_source_symtab;
179 cursal.line = current_source_line;
180
181 current_source_symtab = sal->symtab;
182 current_source_line = sal->line;
c214a6fd
FN
183 cursal.pc = 0;
184 cursal.end = 0;
0378c332
FN
185
186 return cursal;
187}
188
189/* Reset any information stored about a default file and line to print. */
190
191void
192clear_current_source_symtab_and_line (void)
193{
194 current_source_symtab = 0;
195 current_source_line = 0;
196}
c5aa993b 197
c906108c
SS
198/* Set the source file default for the "list" command to be S.
199
200 If S is NULL, and we don't have a default, find one. This
201 should only be called when the user actually tries to use the
202 default, since we produce an error if we can't find a reasonable
203 default. Also, since this can cause symbols to be read, doing it
204 before we need to would make things slower than necessary. */
205
206void
aa1ee363 207select_source_symtab (struct symtab *s)
c906108c
SS
208{
209 struct symtabs_and_lines sals;
210 struct symtab_and_line sal;
211 struct partial_symtab *ps;
212 struct partial_symtab *cs_pst = 0;
213 struct objfile *ofp;
c5aa993b 214
c906108c
SS
215 if (s)
216 {
217 current_source_symtab = s;
218 current_source_line = 1;
219 return;
220 }
221
222 if (current_source_symtab)
223 return;
224
225 /* Make the default place to list be the function `main'
226 if one exists. */
176620f1 227 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0, NULL))
c906108c 228 {
51cc5b07 229 sals = decode_line_spec (main_name (), 1);
c906108c 230 sal = sals.sals[0];
b8c9b27d 231 xfree (sals.sals);
c906108c
SS
232 current_source_symtab = sal.symtab;
233 current_source_line = max (sal.line - (lines_to_list - 1), 1);
234 if (current_source_symtab)
c5aa993b 235 return;
c906108c 236 }
c5aa993b 237
c906108c
SS
238 /* All right; find the last file in the symtab list (ignoring .h's). */
239
240 current_source_line = 1;
241
c5aa993b 242 for (ofp = object_files; ofp != NULL; ofp = ofp->next)
c906108c 243 {
c5aa993b 244 for (s = ofp->symtabs; s; s = s->next)
c906108c 245 {
c5aa993b 246 char *name = s->filename;
c906108c 247 int len = strlen (name);
cb137aa5 248 if (!(len > 2 && (DEPRECATED_STREQ (&name[len - 2], ".h"))))
c906108c
SS
249 {
250 current_source_symtab = s;
251 }
252 }
253 }
254 if (current_source_symtab)
255 return;
256
257 /* Howabout the partial symbol tables? */
258
c5aa993b 259 for (ofp = object_files; ofp != NULL; ofp = ofp->next)
c906108c 260 {
c5aa993b 261 for (ps = ofp->psymtabs; ps != NULL; ps = ps->next)
c906108c 262 {
c5aa993b 263 char *name = ps->filename;
c906108c 264 int len = strlen (name);
cb137aa5 265 if (!(len > 2 && (DEPRECATED_STREQ (&name[len - 2], ".h"))))
c906108c
SS
266 {
267 cs_pst = ps;
268 }
269 }
270 }
271 if (cs_pst)
272 {
c5aa993b 273 if (cs_pst->readin)
c906108c 274 {
8e65ff28
AC
275 internal_error (__FILE__, __LINE__,
276 "select_source_symtab: "
277 "readin pst found and no symtabs.");
c906108c
SS
278 }
279 else
280 {
281 current_source_symtab = PSYMTAB_TO_SYMTAB (cs_pst);
282 }
283 }
284 if (current_source_symtab)
285 return;
286
287 error ("Can't find a default source file");
288}
289\f
290static void
fba45db2 291show_directories (char *ignore, int from_tty)
c906108c
SS
292{
293 puts_filtered ("Source directories searched: ");
294 puts_filtered (source_path);
295 puts_filtered ("\n");
296}
297
298/* Forget what we learned about line positions in source files, and
299 which directories contain them; must check again now since files
300 may be found in a different directory now. */
301
302void
fba45db2 303forget_cached_source_info (void)
c906108c 304{
52f0bd74
AC
305 struct symtab *s;
306 struct objfile *objfile;
58d370e0 307 struct partial_symtab *pst;
c906108c 308
c5aa993b 309 for (objfile = object_files; objfile != NULL; objfile = objfile->next)
c906108c 310 {
c5aa993b 311 for (s = objfile->symtabs; s != NULL; s = s->next)
c906108c 312 {
c5aa993b 313 if (s->line_charpos != NULL)
c906108c 314 {
2dc74dc1 315 xfree (s->line_charpos);
c5aa993b 316 s->line_charpos = NULL;
c906108c 317 }
c5aa993b 318 if (s->fullname != NULL)
c906108c 319 {
2dc74dc1 320 xfree (s->fullname);
c5aa993b 321 s->fullname = NULL;
c906108c
SS
322 }
323 }
58d370e0
TT
324
325 ALL_OBJFILE_PSYMTABS (objfile, pst)
326 {
327 if (pst->fullname != NULL)
328 {
329 xfree (pst->fullname);
330 pst->fullname = NULL;
331 }
332 }
c906108c
SS
333 }
334}
335
336void
fba45db2 337init_source_path (void)
c906108c
SS
338{
339 char buf[20];
340
341 sprintf (buf, "$cdir%c$cwd", DIRNAME_SEPARATOR);
4fcf66da 342 source_path = xstrdup (buf);
c906108c
SS
343 forget_cached_source_info ();
344}
345
c04e0a08
JJ
346void
347init_last_source_visited (void)
348{
349 last_source_visited = NULL;
350}
351
c906108c 352/* Add zero or more directories to the front of the source path. */
c5aa993b 353
c906108c 354void
fba45db2 355directory_command (char *dirname, int from_tty)
c906108c
SS
356{
357 dont_repeat ();
358 /* FIXME, this goes to "delete dir"... */
359 if (dirname == 0)
360 {
43ff13b4 361 if (from_tty && query ("Reinitialize source path to empty? "))
c906108c 362 {
b8c9b27d 363 xfree (source_path);
c906108c
SS
364 init_source_path ();
365 }
366 }
367 else
368 {
369 mod_path (dirname, &source_path);
370 last_source_visited = NULL;
371 }
372 if (from_tty)
c5aa993b 373 show_directories ((char *) 0, from_tty);
c906108c
SS
374 forget_cached_source_info ();
375}
376
377/* Add zero or more directories to the front of an arbitrary path. */
378
379void
fba45db2 380mod_path (char *dirname, char **which_path)
c04e0a08
JJ
381{
382 add_path (dirname, which_path, 1);
383}
384
385/* Workhorse of mod_path. Takes an extra argument to determine
386 if dirname should be parsed for separators that indicate multiple
387 directories. This allows for interfaces that pre-parse the dirname
388 and allow specification of traditional separator characters such
389 as space or tab. */
390
391void
392add_path (char *dirname, char **which_path, int parse_separators)
c906108c
SS
393{
394 char *old = *which_path;
395 int prefix = 0;
396
397 if (dirname == 0)
398 return;
399
4fcf66da 400 dirname = xstrdup (dirname);
b8c9b27d 401 make_cleanup (xfree, dirname);
c906108c
SS
402
403 do
404 {
405 char *name = dirname;
aa1ee363 406 char *p;
c906108c
SS
407 struct stat st;
408
409 {
c04e0a08
JJ
410 char *separator = NULL;
411 char *space = NULL;
412 char *tab = NULL;
413
414 if (parse_separators)
415 {
416 separator = strchr (name, DIRNAME_SEPARATOR);
417 space = strchr (name, ' ');
418 tab = strchr (name, '\t');
419 }
c906108c 420
c5aa993b 421 if (separator == 0 && space == 0 && tab == 0)
c906108c
SS
422 p = dirname = name + strlen (name);
423 else
424 {
425 p = 0;
426 if (separator != 0 && (p == 0 || separator < p))
427 p = separator;
428 if (space != 0 && (p == 0 || space < p))
429 p = space;
430 if (tab != 0 && (p == 0 || tab < p))
431 p = tab;
432 dirname = p + 1;
433 while (*dirname == DIRNAME_SEPARATOR
434 || *dirname == ' '
435 || *dirname == '\t')
436 ++dirname;
437 }
438 }
439
fe4e3eb8 440 if (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
c3690141 441#ifdef HAVE_DOS_BASED_FILE_SYSTEM
7be570e7 442 /* On MS-DOS and MS-Windows, h:\ is different from h: */
fe4e3eb8 443 && !(p == name + 3 && name[1] == ':') /* "d:/" */
7be570e7 444#endif
fe4e3eb8 445 && IS_DIR_SEPARATOR (p[-1]))
c906108c
SS
446 /* Sigh. "foo/" => "foo" */
447 --p;
c906108c
SS
448 *p = '\0';
449
7be570e7 450 while (p > name && p[-1] == '.')
c906108c
SS
451 {
452 if (p - name == 1)
453 {
454 /* "." => getwd (). */
455 name = current_directory;
456 goto append;
457 }
fe4e3eb8 458 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
c906108c
SS
459 {
460 if (p - name == 2)
461 {
462 /* "/." => "/". */
463 *--p = '\0';
464 goto append;
465 }
466 else
467 {
468 /* "...foo/." => "...foo". */
469 p -= 2;
470 *p = '\0';
471 continue;
472 }
473 }
474 else
475 break;
476 }
477
478 if (name[0] == '~')
479 name = tilde_expand (name);
c3690141 480#ifdef HAVE_DOS_BASED_FILE_SYSTEM
fe4e3eb8 481 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
7be570e7
JM
482 name = concat (name, ".", NULL);
483#endif
fe4e3eb8 484 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
c5aa993b 485 name = concat (current_directory, SLASH_STRING, name, NULL);
c906108c
SS
486 else
487 name = savestring (name, p - name);
b8c9b27d 488 make_cleanup (xfree, name);
c906108c
SS
489
490 /* Unless it's a variable, check existence. */
c5aa993b
JM
491 if (name[0] != '$')
492 {
493 /* These are warnings, not errors, since we don't want a
494 non-existent directory in a .gdbinit file to stop processing
495 of the .gdbinit file.
496
497 Whether they get added to the path is more debatable. Current
498 answer is yes, in case the user wants to go make the directory
499 or whatever. If the directory continues to not exist/not be
500 a directory/etc, then having them in the path should be
501 harmless. */
502 if (stat (name, &st) < 0)
503 {
504 int save_errno = errno;
505 fprintf_unfiltered (gdb_stderr, "Warning: ");
506 print_sys_errmsg (name, save_errno);
507 }
508 else if ((st.st_mode & S_IFMT) != S_IFDIR)
509 warning ("%s is not a directory.", name);
510 }
c906108c
SS
511
512 append:
513 {
aa1ee363 514 unsigned int len = strlen (name);
c906108c
SS
515
516 p = *which_path;
517 while (1)
518 {
7be570e7
JM
519 /* FIXME: strncmp loses in interesting ways on MS-DOS and
520 MS-Windows because of case-insensitivity and two different
521 but functionally identical slash characters. We need a
522 special filesystem-dependent file-name comparison function.
523
524 Actually, even on Unix I would use realpath() or its work-
525 alike before comparing. Then all the code above which
526 removes excess slashes and dots could simply go away. */
c906108c
SS
527 if (!strncmp (p, name, len)
528 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
529 {
530 /* Found it in the search path, remove old copy */
531 if (p > *which_path)
c5aa993b 532 p--; /* Back over leading separator */
c906108c
SS
533 if (prefix > p - *which_path)
534 goto skip_dup; /* Same dir twice in one cmd */
c5aa993b 535 strcpy (p, &p[len + 1]); /* Copy from next \0 or : */
c906108c
SS
536 }
537 p = strchr (p, DIRNAME_SEPARATOR);
538 if (p != 0)
539 ++p;
540 else
541 break;
542 }
543 if (p == 0)
544 {
545 char tinybuf[2];
546
547 tinybuf[0] = DIRNAME_SEPARATOR;
548 tinybuf[1] = '\0';
549
c04e0a08
JJ
550 /* If we have already tacked on a name(s) in this command, be sure they stay
551 on the front as we tack on some more. */
c906108c
SS
552 if (prefix)
553 {
554 char *temp, c;
555
556 c = old[prefix];
557 old[prefix] = '\0';
558 temp = concat (old, tinybuf, name, NULL);
559 old[prefix] = c;
560 *which_path = concat (temp, "", &old[prefix], NULL);
561 prefix = strlen (temp);
b8c9b27d 562 xfree (temp);
c906108c
SS
563 }
564 else
565 {
566 *which_path = concat (name, (old[0] ? tinybuf : old), old, NULL);
567 prefix = strlen (name);
568 }
b8c9b27d 569 xfree (old);
c906108c
SS
570 old = *which_path;
571 }
572 }
c5aa993b
JM
573 skip_dup:;
574 }
575 while (*dirname != '\0');
c906108c
SS
576}
577
578
579static void
fba45db2 580source_info (char *ignore, int from_tty)
c906108c 581{
52f0bd74 582 struct symtab *s = current_source_symtab;
c906108c
SS
583
584 if (!s)
585 {
c5aa993b 586 printf_filtered ("No current source file.\n");
c906108c
SS
587 return;
588 }
589 printf_filtered ("Current source file is %s\n", s->filename);
590 if (s->dirname)
591 printf_filtered ("Compilation directory is %s\n", s->dirname);
592 if (s->fullname)
593 printf_filtered ("Located in %s\n", s->fullname);
594 if (s->nlines)
595 printf_filtered ("Contains %d line%s.\n", s->nlines,
596 s->nlines == 1 ? "" : "s");
597
598 printf_filtered ("Source language is %s.\n", language_str (s->language));
599 printf_filtered ("Compiled with %s debugging format.\n", s->debugformat);
919d772c
JB
600 printf_filtered ("%s preprocessor macro info.\n",
601 s->macro_table ? "Includes" : "Does not include");
c906108c 602}
c5aa993b 603\f
c906108c 604
1da1a192
JB
605/* Return True if the file NAME exists and is a regular file */
606static int
607is_regular_file (const char *name)
608{
609 struct stat st;
610 const int status = stat (name, &st);
611
612 /* Stat should never fail except when the file does not exist.
613 If stat fails, analyze the source of error and return True
614 unless the file does not exist, to avoid returning false results
615 on obscure systems where stat does not work as expected.
616 */
617 if (status != 0)
618 return (errno != ENOENT);
619
620 return S_ISREG (st.st_mode);
621}
c906108c 622
c906108c
SS
623/* Open a file named STRING, searching path PATH (dir names sep by some char)
624 using mode MODE and protection bits PROT in the calls to open.
625
014d698b
EZ
626 OPTS specifies the function behaviour in specific cases.
627
628 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
c906108c
SS
629 (ie pretend the first element of PATH is "."). This also indicates
630 that a slash in STRING disables searching of the path (this is
631 so that "exec-file ./foo" or "symbol-file ./foo" insures that you
632 get that particular version of foo or an error message).
633
014d698b
EZ
634 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
635 searched in path (we usually want this for source files but not for
636 executables).
637
e7a8479f 638 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
a89f66e4 639 the actual file opened (this string will always start with a "/"). We
c906108c
SS
640 have to take special pains to avoid doubling the "/" between the directory
641 and the file, sigh! Emacs gets confuzzed by this when we print the
642 source file name!!!
643
644 If a file is found, return the descriptor.
645 Otherwise, return -1, with errno set for the last name we tried to open. */
646
647/* >>>> This should only allow files of certain types,
f2172603 648 >>>> eg executable, non-directory */
c906108c 649int
014d698b 650openp (const char *path, int opts, const char *string,
1f8cc6db 651 int mode, int prot,
fba45db2 652 char **filename_opened)
c906108c 653{
52f0bd74
AC
654 int fd;
655 char *filename;
1f8cc6db
AC
656 const char *p;
657 const char *p1;
52f0bd74 658 int len;
c906108c
SS
659 int alloclen;
660
661 if (!path)
662 path = ".";
663
c906108c 664 mode |= O_BINARY;
c906108c 665
014d698b 666 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
c906108c
SS
667 {
668 int i;
072b1022
DJ
669
670 if (is_regular_file (string))
671 {
672 filename = alloca (strlen (string) + 1);
673 strcpy (filename, string);
674 fd = open (filename, mode, prot);
675 if (fd >= 0)
676 goto done;
677 }
678 else
3f565f1e
DJ
679 {
680 filename = NULL;
681 fd = -1;
682 }
072b1022 683
014d698b
EZ
684 if (!(opts & OPF_SEARCH_IN_PATH))
685 for (i = 0; string[i]; i++)
686 if (IS_DIR_SEPARATOR (string[i]))
687 goto done;
c906108c
SS
688 }
689
014d698b
EZ
690 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
691 while (IS_DIR_SEPARATOR(string[0]))
692 string++;
693
c906108c 694 /* ./foo => foo */
fe4e3eb8 695 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
c906108c
SS
696 string += 2;
697
698 alloclen = strlen (path) + strlen (string) + 2;
1f8cc6db 699 filename = alloca (alloclen);
c906108c
SS
700 fd = -1;
701 for (p = path; p; p = p1 ? p1 + 1 : 0)
702 {
1f8cc6db 703 p1 = strchr (p, DIRNAME_SEPARATOR);
c906108c
SS
704 if (p1)
705 len = p1 - p;
706 else
707 len = strlen (p);
708
709 if (len == 4 && p[0] == '$' && p[1] == 'c'
c5aa993b
JM
710 && p[2] == 'w' && p[3] == 'd')
711 {
712 /* Name is $cwd -- insert current directory name instead. */
713 int newlen;
714
715 /* First, realloc the filename buffer if too short. */
716 len = strlen (current_directory);
717 newlen = len + strlen (string) + 2;
718 if (newlen > alloclen)
719 {
720 alloclen = newlen;
1f8cc6db 721 filename = alloca (alloclen);
c5aa993b
JM
722 }
723 strcpy (filename, current_directory);
724 }
725 else
726 {
727 /* Normal file name in path -- just use it. */
728 strncpy (filename, p, len);
729 filename[len] = 0;
c906108c 730 }
c906108c
SS
731
732 /* Remove trailing slashes */
fe4e3eb8 733 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
c906108c
SS
734 filename[--len] = 0;
735
c5aa993b 736 strcat (filename + len, SLASH_STRING);
c906108c
SS
737 strcat (filename, string);
738
1da1a192 739 if (is_regular_file (filename))
5e987968
AS
740 {
741 fd = open (filename, mode);
742 if (fd >= 0)
743 break;
744 }
c906108c
SS
745 }
746
c5aa993b 747done:
c906108c
SS
748 if (filename_opened)
749 {
a89f66e4
JB
750 /* If a file was opened, canonicalize its filename. Use xfullpath
751 rather than gdb_realpath to avoid resolving the basename part
752 of filenames when the associated file is a symbolic link. This
753 fixes a potential inconsistency between the filenames known to
754 GDB and the filenames it prints in the annotations. */
c906108c 755 if (fd < 0)
1f8cc6db 756 *filename_opened = NULL;
fe4e3eb8 757 else if (IS_ABSOLUTE_PATH (filename))
a89f66e4 758 *filename_opened = xfullpath (filename);
c906108c
SS
759 else
760 {
761 /* Beware the // my son, the Emacs barfs, the botch that catch... */
c5aa993b 762
58d370e0 763 char *f = concat (current_directory,
5e987968
AS
764 IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1])
765 ? "" : SLASH_STRING,
766 filename, NULL);
a89f66e4 767 *filename_opened = xfullpath (f);
58d370e0 768 xfree (f);
c5aa993b 769 }
c906108c 770 }
c906108c
SS
771
772 return fd;
773}
774
c5aa993b 775
c906108c
SS
776/* This is essentially a convenience, for clients that want the behaviour
777 of openp, using source_path, but that really don't want the file to be
778 opened but want instead just to know what the full pathname is (as
779 qualified against source_path).
780
781 The current working directory is searched first.
782
783 If the file was found, this function returns 1, and FULL_PATHNAME is
784 set to the fully-qualified pathname.
785
5e987968 786 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
c906108c 787int
fba45db2 788source_full_path_of (char *filename, char **full_pathname)
c906108c 789{
c5aa993b 790 int fd;
c906108c 791
014d698b
EZ
792 fd = openp (source_path, OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH, filename,
793 O_RDONLY, 0, full_pathname);
c906108c
SS
794 if (fd < 0)
795 {
796 *full_pathname = NULL;
797 return 0;
798 }
799
800 close (fd);
801 return 1;
802}
803
57c22c6c
BR
804/* This function is capable of finding the absolute path to a
805 source file, and opening it, provided you give it an
806 OBJFILE and FILENAME. Both the DIRNAME and FULLNAME are only
807 added suggestions on where to find the file.
808
809 OBJFILE should be the objfile associated with a psymtab or symtab.
810 FILENAME should be the filename to open.
811 DIRNAME is the compilation directory of a particular source file.
812 Only some debug formats provide this info.
813 FULLNAME can be the last known absolute path to the file in question.
814
815 On Success
816 A valid file descriptor is returned. ( the return value is positive )
817 FULLNAME is set to the absolute path to the file just opened.
818
819 On Failure
820 A non valid file descriptor is returned. ( the return value is negitive )
821 FULLNAME is set to NULL. */
c906108c 822int
57c22c6c 823find_and_open_source (struct objfile *objfile,
5e987968
AS
824 const char *filename,
825 const char *dirname,
826 char **fullname)
c906108c
SS
827{
828 char *path = source_path;
31889e00 829 const char *p;
c906108c 830 int result;
c906108c
SS
831
832 /* Quick way out if we already know its full name */
57c22c6c 833 if (*fullname)
c906108c 834 {
57c22c6c 835 result = open (*fullname, OPEN_MODE);
c906108c 836 if (result >= 0)
c5aa993b 837 return result;
c906108c 838 /* Didn't work -- free old one, try again. */
2dc74dc1 839 xfree (*fullname);
57c22c6c 840 *fullname = NULL;
c906108c
SS
841 }
842
57c22c6c 843 if (dirname != NULL)
c906108c
SS
844 {
845 /* Replace a path entry of $cdir with the compilation directory name */
846#define cdir_len 5
847 /* We cast strstr's result in case an ANSIhole has made it const,
c5aa993b
JM
848 which produces a "required warning" when assigned to a nonconst. */
849 p = (char *) strstr (source_path, "$cdir");
c906108c 850 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
c5aa993b 851 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
c906108c
SS
852 {
853 int len;
854
855 path = (char *)
57c22c6c 856 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
c906108c 857 len = p - source_path;
c5aa993b 858 strncpy (path, source_path, len); /* Before $cdir */
57c22c6c 859 strcpy (path + len, dirname); /* new stuff */
c5aa993b 860 strcat (path + len, source_path + len + cdir_len); /* After $cdir */
c906108c
SS
861 }
862 }
863
014d698b 864 result = openp (path, OPF_SEARCH_IN_PATH, filename, OPEN_MODE, 0, fullname);
c906108c
SS
865 if (result < 0)
866 {
867 /* Didn't work. Try using just the basename. */
57c22c6c
BR
868 p = lbasename (filename);
869 if (p != filename)
014d698b 870 result = openp (path, OPF_SEARCH_IN_PATH, p, OPEN_MODE, 0, fullname);
c906108c 871 }
c906108c
SS
872
873 if (result >= 0)
874 {
57c22c6c
BR
875 char *tmp_fullname;
876 tmp_fullname = *fullname;
982526a1 877 *fullname = xstrdup (tmp_fullname);
57c22c6c 878 xfree (tmp_fullname);
c906108c
SS
879 }
880 return result;
881}
882
57c22c6c
BR
883/* Open a source file given a symtab S. Returns a file descriptor or
884 negative number for error.
885
886 This function is a convience function to find_and_open_source. */
887
888int
889open_source_file (struct symtab *s)
890{
5e987968
AS
891 if (!s)
892 return -1;
57c22c6c
BR
893
894 return find_and_open_source (s->objfile, s->filename, s->dirname,
5e987968 895 &s->fullname);
57c22c6c
BR
896}
897
898/* Finds the fullname that a symtab represents.
c906108c 899
57c22c6c
BR
900 If this functions finds the fullname, it will save it in ps->fullname
901 and it will also return the value.
902
903 If this function fails to find the file that this symtab represents,
904 NULL will be returned and ps->fullname will be set to NULL. */
c906108c 905char *
57c22c6c 906symtab_to_fullname (struct symtab *s)
c906108c 907{
57c22c6c 908 int r;
c906108c
SS
909
910 if (!s)
911 return NULL;
912
57c22c6c
BR
913 /* Don't check s->fullname here, the file could have been
914 deleted/moved/..., look for it again */
5e987968
AS
915 r = find_and_open_source (s->objfile, s->filename, s->dirname,
916 &s->fullname);
c906108c 917
57c22c6c 918 if (r)
5e987968
AS
919 {
920 close (r);
921 return s->fullname;
922 }
c906108c 923
57c22c6c
BR
924 return NULL;
925}
c906108c 926
57c22c6c 927/* Finds the fullname that a partial_symtab represents.
c906108c 928
57c22c6c
BR
929 If this functions finds the fullname, it will save it in ps->fullname
930 and it will also return the value.
c906108c 931
57c22c6c
BR
932 If this function fails to find the file that this partial_symtab represents,
933 NULL will be returned and ps->fullname will be set to NULL. */
934char *
935psymtab_to_fullname (struct partial_symtab *ps)
936{
937 int r;
938
939 if (!ps)
940 return NULL;
941
942 /* Don't check ps->fullname here, the file could have been
943 deleted/moved/..., look for it again */
5e987968
AS
944 r = find_and_open_source (ps->objfile, ps->filename, ps->dirname,
945 &ps->fullname);
57c22c6c
BR
946
947 if (r)
5e987968
AS
948 {
949 close (r);
950 return ps->fullname;
951 }
952
57c22c6c
BR
953 return NULL;
954}
5e987968 955\f
c906108c
SS
956/* Create and initialize the table S->line_charpos that records
957 the positions of the lines in the source file, which is assumed
958 to be open on descriptor DESC.
959 All set S->nlines to the number of such lines. */
960
961void
fba45db2 962find_source_lines (struct symtab *s, int desc)
c906108c
SS
963{
964 struct stat st;
52f0bd74 965 char *data, *p, *end;
c906108c
SS
966 int nlines = 0;
967 int lines_allocated = 1000;
968 int *line_charpos;
969 long mtime = 0;
970 int size;
971
7936743b 972 line_charpos = (int *) xmalloc (lines_allocated * sizeof (int));
c906108c
SS
973 if (fstat (desc, &st) < 0)
974 perror_with_name (s->filename);
975
976 if (s && s->objfile && s->objfile->obfd)
c5aa993b 977 mtime = bfd_get_mtime (s->objfile->obfd);
c906108c 978 else if (exec_bfd)
c5aa993b 979 mtime = bfd_get_mtime (exec_bfd);
c906108c
SS
980
981 if (mtime && mtime < st.st_mtime)
982 {
c5aa993b 983 warning ("Source file is more recent than executable.\n");
c906108c
SS
984 }
985
986#ifdef LSEEK_NOT_LINEAR
987 {
988 char c;
989
990 /* Have to read it byte by byte to find out where the chars live */
991
992 line_charpos[0] = lseek (desc, 0, SEEK_CUR);
993 nlines = 1;
c5aa993b 994 while (myread (desc, &c, 1) > 0)
c906108c 995 {
c5aa993b 996 if (c == '\n')
c906108c 997 {
c5aa993b 998 if (nlines == lines_allocated)
c906108c
SS
999 {
1000 lines_allocated *= 2;
1001 line_charpos =
0efffb96
AC
1002 (int *) xrealloc ((char *) line_charpos,
1003 sizeof (int) * lines_allocated);
c906108c
SS
1004 }
1005 line_charpos[nlines++] = lseek (desc, 0, SEEK_CUR);
1006 }
1007 }
1008 }
1009#else /* lseek linear. */
1010 {
1011 struct cleanup *old_cleanups;
1012
1013 /* st_size might be a large type, but we only support source files whose
1014 size fits in an int. */
1015 size = (int) st.st_size;
1016
1017 /* Use malloc, not alloca, because this may be pretty large, and we may
1018 run into various kinds of limits on stack size. */
1019 data = (char *) xmalloc (size);
b8c9b27d 1020 old_cleanups = make_cleanup (xfree, data);
c906108c
SS
1021
1022 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1023 size = myread (desc, data, size);
1024 if (size < 0)
1025 perror_with_name (s->filename);
1026 end = data + size;
1027 p = data;
1028 line_charpos[0] = 0;
1029 nlines = 1;
1030 while (p != end)
1031 {
1032 if (*p++ == '\n'
c5aa993b 1033 /* A newline at the end does not start a new line. */
c906108c
SS
1034 && p != end)
1035 {
1036 if (nlines == lines_allocated)
1037 {
1038 lines_allocated *= 2;
1039 line_charpos =
0efffb96
AC
1040 (int *) xrealloc ((char *) line_charpos,
1041 sizeof (int) * lines_allocated);
c906108c
SS
1042 }
1043 line_charpos[nlines++] = p - data;
1044 }
1045 }
1046 do_cleanups (old_cleanups);
1047 }
1048#endif /* lseek linear. */
1049 s->nlines = nlines;
1050 s->line_charpos =
0efffb96 1051 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
c906108c
SS
1052
1053}
1054
1055/* Return the character position of a line LINE in symtab S.
1056 Return 0 if anything is invalid. */
1057
c5aa993b 1058#if 0 /* Currently unused */
c906108c
SS
1059
1060int
fba45db2 1061source_line_charpos (struct symtab *s, int line)
c906108c 1062{
c5aa993b
JM
1063 if (!s)
1064 return 0;
1065 if (!s->line_charpos || line <= 0)
1066 return 0;
c906108c
SS
1067 if (line > s->nlines)
1068 line = s->nlines;
1069 return s->line_charpos[line - 1];
1070}
1071
1072/* Return the line number of character position POS in symtab S. */
1073
1074int
aa1ee363 1075source_charpos_line (struct symtab *s, int chr)
c906108c 1076{
52f0bd74
AC
1077 int line = 0;
1078 int *lnp;
c5aa993b
JM
1079
1080 if (s == 0 || s->line_charpos == 0)
1081 return 0;
c906108c
SS
1082 lnp = s->line_charpos;
1083 /* Files are usually short, so sequential search is Ok */
c5aa993b 1084 while (line < s->nlines && *lnp <= chr)
c906108c
SS
1085 {
1086 line++;
1087 lnp++;
1088 }
1089 if (line >= s->nlines)
1090 line = s->nlines;
1091 return line;
1092}
1093
c5aa993b 1094#endif /* 0 */
c906108c 1095\f
c5aa993b 1096
c906108c
SS
1097/* Get full pathname and line number positions for a symtab.
1098 Return nonzero if line numbers may have changed.
1099 Set *FULLNAME to actual name of the file as found by `openp',
1100 or to 0 if the file is not found. */
1101
1102static int
fba45db2 1103get_filename_and_charpos (struct symtab *s, char **fullname)
c906108c 1104{
52f0bd74 1105 int desc, linenums_changed = 0;
c5aa993b 1106
c906108c
SS
1107 desc = open_source_file (s);
1108 if (desc < 0)
1109 {
1110 if (fullname)
1111 *fullname = NULL;
1112 return 0;
c5aa993b 1113 }
c906108c
SS
1114 if (fullname)
1115 *fullname = s->fullname;
c5aa993b
JM
1116 if (s->line_charpos == 0)
1117 linenums_changed = 1;
1118 if (linenums_changed)
1119 find_source_lines (s, desc);
c906108c
SS
1120 close (desc);
1121 return linenums_changed;
1122}
1123
1124/* Print text describing the full name of the source file S
1125 and the line number LINE and its corresponding character position.
1126 The text starts with two Ctrl-z so that the Emacs-GDB interface
1127 can easily find it.
1128
1129 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1130
1131 Return 1 if successful, 0 if could not find the file. */
1132
1133int
fba45db2
KB
1134identify_source_line (struct symtab *s, int line, int mid_statement,
1135 CORE_ADDR pc)
c906108c
SS
1136{
1137 if (s->line_charpos == 0)
c5aa993b 1138 get_filename_and_charpos (s, (char **) NULL);
c906108c
SS
1139 if (s->fullname == 0)
1140 return 0;
1141 if (line > s->nlines)
1142 /* Don't index off the end of the line_charpos array. */
1143 return 0;
1144 annotate_source (s->fullname, line, s->line_charpos[line - 1],
1145 mid_statement, pc);
1146
1147 current_source_line = line;
1148 first_line_listed = line;
1149 last_line_listed = line;
1150 current_source_symtab = s;
1151 return 1;
1152}
c906108c 1153\f
c5aa993b 1154
c906108c
SS
1155/* Print source lines from the file of symtab S,
1156 starting with line number LINE and stopping before line number STOPLINE. */
1157
a14ed312
KB
1158static void print_source_lines_base (struct symtab *s, int line, int stopline,
1159 int noerror);
c906108c 1160static void
fba45db2 1161print_source_lines_base (struct symtab *s, int line, int stopline, int noerror)
c906108c 1162{
52f0bd74
AC
1163 int c;
1164 int desc;
1165 FILE *stream;
c906108c
SS
1166 int nlines = stopline - line;
1167
1168 /* Regardless of whether we can open the file, set current_source_symtab. */
1169 current_source_symtab = s;
1170 current_source_line = line;
1171 first_line_listed = line;
1172
8b93c638
JM
1173 /* If printing of source lines is disabled, just print file and line number */
1174 if (ui_out_test_flags (uiout, ui_source_list))
1175 {
c5aa993b
JM
1176 /* Only prints "No such file or directory" once */
1177 if ((s != last_source_visited) || (!last_source_error))
1178 {
1179 last_source_visited = s;
1180 desc = open_source_file (s);
1181 }
1182 else
1183 {
1184 desc = last_source_error;
1185 noerror = 1;
1186 }
8b93c638
JM
1187 }
1188 else
1189 {
1190 desc = -1;
1191 noerror = 1;
1192 }
c906108c
SS
1193
1194 if (desc < 0)
1195 {
1196 last_source_error = desc;
1197
c5aa993b
JM
1198 if (!noerror)
1199 {
c906108c
SS
1200 char *name = alloca (strlen (s->filename) + 100);
1201 sprintf (name, "%d\t%s", line, s->filename);
1202 print_sys_errmsg (name, errno);
1203 }
1204 else
8b93c638
JM
1205 ui_out_field_int (uiout, "line", line);
1206 ui_out_text (uiout, "\tin ");
1207 ui_out_field_string (uiout, "file", s->filename);
1208 ui_out_text (uiout, "\n");
c906108c
SS
1209
1210 return;
1211 }
1212
1213 last_source_error = 0;
1214
1215 if (s->line_charpos == 0)
1216 find_source_lines (s, desc);
1217
1218 if (line < 1 || line > s->nlines)
1219 {
1220 close (desc);
1221 error ("Line number %d out of range; %s has %d lines.",
1222 line, s->filename, s->nlines);
1223 }
1224
1225 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1226 {
1227 close (desc);
1228 perror_with_name (s->filename);
1229 }
1230
1231 stream = fdopen (desc, FDOPEN_MODE);
1232 clearerr (stream);
1233
1234 while (nlines-- > 0)
1235 {
8b93c638
JM
1236 char buf[20];
1237
1238 c = fgetc (stream);
1239 if (c == EOF)
1240 break;
1241 last_line_listed = current_source_line;
1242 sprintf (buf, "%d\t", current_source_line++);
1243 ui_out_text (uiout, buf);
1244 do
1245 {
1246 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1247 {
1248 sprintf (buf, "^%c", c + 0100);
1249 ui_out_text (uiout, buf);
1250 }
1251 else if (c == 0177)
1252 ui_out_text (uiout, "^?");
8b93c638
JM
1253 else if (c == '\r')
1254 {
1255 /* Skip a \r character, but only before a \n. */
1256 int c1 = fgetc (stream);
1257
1258 if (c1 != '\n')
1259 printf_filtered ("^%c", c + 0100);
1260 if (c1 != EOF)
1261 ungetc (c1, stream);
1262 }
8b93c638
JM
1263 else
1264 {
1265 sprintf (buf, "%c", c);
1266 ui_out_text (uiout, buf);
1267 }
1268 }
1269 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c
SS
1270 }
1271
1272 fclose (stream);
1273}
1274\f
1275/* Show source lines from the file of symtab S, starting with line
1276 number LINE and stopping before line number STOPLINE. If this is the
1277 not the command line version, then the source is shown in the source
1278 window otherwise it is simply printed */
1279
c5aa993b 1280void
fba45db2 1281print_source_lines (struct symtab *s, int line, int stopline, int noerror)
c906108c 1282{
c5aa993b 1283 print_source_lines_base (s, line, stopline, noerror);
c906108c
SS
1284}
1285\f
c906108c
SS
1286/* Print info on range of pc's in a specified line. */
1287
1288static void
fba45db2 1289line_info (char *arg, int from_tty)
c906108c
SS
1290{
1291 struct symtabs_and_lines sals;
1292 struct symtab_and_line sal;
1293 CORE_ADDR start_pc, end_pc;
1294 int i;
1295
fe39c653 1296 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
1297
1298 if (arg == 0)
1299 {
1300 sal.symtab = current_source_symtab;
1301 sal.line = last_line_listed;
1302 sals.nelts = 1;
1303 sals.sals = (struct symtab_and_line *)
1304 xmalloc (sizeof (struct symtab_and_line));
1305 sals.sals[0] = sal;
1306 }
1307 else
1308 {
1309 sals = decode_line_spec_1 (arg, 0);
c5aa993b 1310
c906108c
SS
1311 dont_repeat ();
1312 }
1313
1314 /* C++ More than one line may have been specified, as when the user
1315 specifies an overloaded function name. Print info on them all. */
1316 for (i = 0; i < sals.nelts; i++)
1317 {
1318 sal = sals.sals[i];
c5aa993b 1319
c906108c
SS
1320 if (sal.symtab == 0)
1321 {
1322 printf_filtered ("No line number information available");
1323 if (sal.pc != 0)
1324 {
1325 /* This is useful for "info line *0x7f34". If we can't tell the
c5aa993b
JM
1326 user about a source line, at least let them have the symbolic
1327 address. */
c906108c
SS
1328 printf_filtered (" for address ");
1329 wrap_here (" ");
1330 print_address (sal.pc, gdb_stdout);
1331 }
1332 else
1333 printf_filtered (".");
1334 printf_filtered ("\n");
1335 }
1336 else if (sal.line > 0
1337 && find_line_pc_range (sal, &start_pc, &end_pc))
1338 {
1339 if (start_pc == end_pc)
1340 {
1341 printf_filtered ("Line %d of \"%s\"",
1342 sal.line, sal.symtab->filename);
1343 wrap_here (" ");
1344 printf_filtered (" is at address ");
1345 print_address (start_pc, gdb_stdout);
1346 wrap_here (" ");
1347 printf_filtered (" but contains no code.\n");
1348 }
1349 else
1350 {
1351 printf_filtered ("Line %d of \"%s\"",
1352 sal.line, sal.symtab->filename);
1353 wrap_here (" ");
1354 printf_filtered (" starts at address ");
1355 print_address (start_pc, gdb_stdout);
1356 wrap_here (" ");
1357 printf_filtered (" and ends at ");
1358 print_address (end_pc, gdb_stdout);
1359 printf_filtered (".\n");
1360 }
1361
1362 /* x/i should display this line's code. */
1363 set_next_address (start_pc);
1364
1365 /* Repeating "info line" should do the following line. */
1366 last_line_listed = sal.line + 1;
1367
1368 /* If this is the only line, show the source code. If it could
1369 not find the file, don't do anything special. */
1370 if (annotation_level && sals.nelts == 1)
1371 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1372 }
1373 else
1374 /* Is there any case in which we get here, and have an address
1375 which the user would want to see? If we have debugging symbols
1376 and no line numbers? */
1377 printf_filtered ("Line number %d is out of range for \"%s\".\n",
1378 sal.line, sal.symtab->filename);
1379 }
b8c9b27d 1380 xfree (sals.sals);
c906108c
SS
1381}
1382\f
1383/* Commands to search the source file for a regexp. */
1384
c906108c 1385static void
fba45db2 1386forward_search_command (char *regex, int from_tty)
c906108c 1387{
52f0bd74
AC
1388 int c;
1389 int desc;
1390 FILE *stream;
c906108c
SS
1391 int line;
1392 char *msg;
1393
c906108c 1394 line = last_line_listed + 1;
c906108c
SS
1395
1396 msg = (char *) re_comp (regex);
1397 if (msg)
306d9ac5 1398 error ("%s", msg);
c906108c
SS
1399
1400 if (current_source_symtab == 0)
1401 select_source_symtab (0);
1402
1403 desc = open_source_file (current_source_symtab);
1404 if (desc < 0)
1405 perror_with_name (current_source_symtab->filename);
1406
1407 if (current_source_symtab->line_charpos == 0)
1408 find_source_lines (current_source_symtab, desc);
1409
1410 if (line < 1 || line > current_source_symtab->nlines)
1411 {
1412 close (desc);
1413 error ("Expression not found");
1414 }
1415
1416 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1417 {
1418 close (desc);
1419 perror_with_name (current_source_symtab->filename);
1420 }
1421
1422 stream = fdopen (desc, FDOPEN_MODE);
1423 clearerr (stream);
c5aa993b
JM
1424 while (1)
1425 {
1426 static char *buf = NULL;
aa1ee363 1427 char *p;
c5aa993b
JM
1428 int cursize, newsize;
1429
1430 cursize = 256;
1431 buf = xmalloc (cursize);
1432 p = buf;
1433
1434 c = getc (stream);
1435 if (c == EOF)
1436 break;
1437 do
c906108c 1438 {
c5aa993b
JM
1439 *p++ = c;
1440 if (p - buf == cursize)
1441 {
1442 newsize = cursize + cursize / 2;
1443 buf = xrealloc (buf, newsize);
1444 p = buf + cursize;
1445 cursize = newsize;
1446 }
c906108c 1447 }
c5aa993b 1448 while (c != '\n' && (c = getc (stream)) >= 0);
c906108c 1449
7be570e7
JM
1450 /* Remove the \r, if any, at the end of the line, otherwise
1451 regular expressions that end with $ or \n won't work. */
1452 if (p - buf > 1 && p[-2] == '\r')
1453 {
1454 p--;
1455 p[-1] = '\n';
1456 }
7be570e7 1457
c5aa993b
JM
1458 /* we now have a source line in buf, null terminate and match */
1459 *p = 0;
1460 if (re_exec (buf) > 0)
1461 {
1462 /* Match! */
1463 fclose (stream);
c5aa993b
JM
1464 print_source_lines (current_source_symtab, line, line + 1, 0);
1465 set_internalvar (lookup_internalvar ("_"),
1466 value_from_longest (builtin_type_int,
1467 (LONGEST) line));
1468 current_source_line = max (line - lines_to_list / 2, 1);
1469 return;
1470 }
1471 line++;
1472 }
c906108c
SS
1473
1474 printf_filtered ("Expression not found\n");
1475 fclose (stream);
1476}
1477
c906108c 1478static void
fba45db2 1479reverse_search_command (char *regex, int from_tty)
c906108c 1480{
52f0bd74
AC
1481 int c;
1482 int desc;
1483 FILE *stream;
c906108c
SS
1484 int line;
1485 char *msg;
063190b6 1486
c906108c 1487 line = last_line_listed - 1;
c906108c
SS
1488
1489 msg = (char *) re_comp (regex);
1490 if (msg)
306d9ac5 1491 error ("%s", msg);
c906108c
SS
1492
1493 if (current_source_symtab == 0)
1494 select_source_symtab (0);
1495
1496 desc = open_source_file (current_source_symtab);
1497 if (desc < 0)
1498 perror_with_name (current_source_symtab->filename);
1499
1500 if (current_source_symtab->line_charpos == 0)
1501 find_source_lines (current_source_symtab, desc);
1502
1503 if (line < 1 || line > current_source_symtab->nlines)
1504 {
1505 close (desc);
1506 error ("Expression not found");
1507 }
1508
1509 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1510 {
1511 close (desc);
1512 perror_with_name (current_source_symtab->filename);
1513 }
1514
1515 stream = fdopen (desc, FDOPEN_MODE);
1516 clearerr (stream);
1517 while (line > 1)
1518 {
1519/* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1520 char buf[4096]; /* Should be reasonable??? */
aa1ee363 1521 char *p = buf;
c906108c
SS
1522
1523 c = getc (stream);
1524 if (c == EOF)
1525 break;
c5aa993b
JM
1526 do
1527 {
1528 *p++ = c;
1529 }
1530 while (c != '\n' && (c = getc (stream)) >= 0);
c906108c 1531
7be570e7
JM
1532 /* Remove the \r, if any, at the end of the line, otherwise
1533 regular expressions that end with $ or \n won't work. */
1534 if (p - buf > 1 && p[-2] == '\r')
1535 {
1536 p--;
1537 p[-1] = '\n';
1538 }
7be570e7 1539
c906108c
SS
1540 /* We now have a source line in buf; null terminate and match. */
1541 *p = 0;
1542 if (re_exec (buf) > 0)
1543 {
1544 /* Match! */
1545 fclose (stream);
c5aa993b 1546 print_source_lines (current_source_symtab, line, line + 1, 0);
c906108c
SS
1547 set_internalvar (lookup_internalvar ("_"),
1548 value_from_longest (builtin_type_int,
1549 (LONGEST) line));
1550 current_source_line = max (line - lines_to_list / 2, 1);
1551 return;
1552 }
1553 line--;
1554 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1555 {
1556 fclose (stream);
1557 perror_with_name (current_source_symtab->filename);
1558 }
1559 }
1560
1561 printf_filtered ("Expression not found\n");
1562 fclose (stream);
1563 return;
1564}
1565\f
1566void
fba45db2 1567_initialize_source (void)
c906108c
SS
1568{
1569 struct cmd_list_element *c;
1570 current_source_symtab = 0;
1571 init_source_path ();
1572
1573 /* The intention is to use POSIX Basic Regular Expressions.
1574 Always use the GNU regex routine for consistency across all hosts.
1575 Our current GNU regex.c does not have all the POSIX features, so this is
1576 just an approximation. */
1577 re_set_syntax (RE_SYNTAX_GREP);
1578
1579 c = add_cmd ("directory", class_files, directory_command,
c5aa993b 1580 "Add directory DIR to beginning of search path for source files.\n\
c906108c
SS
1581Forget cached info on source file locations and line positions.\n\
1582DIR can also be $cwd for the current working directory, or $cdir for the\n\
1583directory in which the source file was compiled into object code.\n\
1584With no argument, reset the search path to $cdir:$cwd, the default.",
1585 &cmdlist);
1586
1587 if (dbx_commands)
c5aa993b 1588 add_com_alias ("use", "directory", class_files, 0);
c906108c 1589
5ba2abeb 1590 set_cmd_completer (c, filename_completer);
c906108c
SS
1591
1592 add_cmd ("directories", no_class, show_directories,
1593 "Current search path for finding source files.\n\
1594$cwd in the path means the current working directory.\n\
1595$cdir in the path means the compilation directory of the source file.",
1596 &showlist);
1597
1598 if (xdb_commands)
1599 {
c5aa993b 1600 add_com_alias ("D", "directory", class_files, 0);
c906108c 1601 add_cmd ("ld", no_class, show_directories,
c5aa993b 1602 "Current search path for finding source files.\n\
c906108c
SS
1603$cwd in the path means the current working directory.\n\
1604$cdir in the path means the compilation directory of the source file.",
c5aa993b 1605 &cmdlist);
c906108c
SS
1606 }
1607
1608 add_info ("source", source_info,
1609 "Information about the current source file.");
1610
1611 add_info ("line", line_info,
1612 concat ("Core addresses of the code for a source line.\n\
1613Line can be specified as\n\
1614 LINENUM, to list around that line in current file,\n\
1615 FILE:LINENUM, to list around that line in that file,\n\
1616 FUNCTION, to list around beginning of that function,\n\
1617 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1618", "\
1619Default is to describe the last source line that was listed.\n\n\
1620This sets the default address for \"x\" to the line's first instruction\n\
1621so that \"x/i\" suffices to start examining the machine code.\n\
1622The address is also stored as the value of \"$_\".", NULL));
1623
1624 add_com ("forward-search", class_files, forward_search_command,
1625 "Search for regular expression (see regex(3)) from last line listed.\n\
1626The matching line number is also stored as the value of \"$_\".");
1627 add_com_alias ("search", "forward-search", class_files, 0);
1628
1629 add_com ("reverse-search", class_files, reverse_search_command,
1630 "Search backward for regular expression (see regex(3)) from last line listed.\n\
1631The matching line number is also stored as the value of \"$_\".");
1632
1633 if (xdb_commands)
1634 {
c5aa993b
JM
1635 add_com_alias ("/", "forward-search", class_files, 0);
1636 add_com_alias ("?", "reverse-search", class_files, 0);
c906108c
SS
1637 }
1638
cb1a6d5f 1639 deprecated_add_show_from_set
c906108c 1640 (add_set_cmd ("listsize", class_support, var_uinteger,
c5aa993b
JM
1641 (char *) &lines_to_list,
1642 "Set number of source lines gdb will list by default.",
c906108c
SS
1643 &setlist),
1644 &showlist);
1645}
This page took 0.562271 seconds and 4 git commands to generate.