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