1 /* List lines of source files for GDB, the GNU debugger.
2 Copyright 1986, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 1998
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "expression.h"
31 #include <sys/types.h>
32 #include "gdb_string.h"
39 #include "gnu-regex.h"
45 #ifdef CRLF_SOURCE_FILES
47 /* Define CRLF_SOURCE_FILES in an xm-*.h file if source files on the
48 host use \r\n rather than just \n. Defining CRLF_SOURCE_FILES is
49 much faster than defining LSEEK_NOT_LINEAR. */
55 #define OPEN_MODE (O_RDONLY | O_BINARY)
56 #define FDOPEN_MODE FOPEN_RB
58 #else /* ! defined (CRLF_SOURCE_FILES) */
60 #define OPEN_MODE O_RDONLY
61 #define FDOPEN_MODE FOPEN_RT
63 #endif /* ! defined (CRLF_SOURCE_FILES) */
65 /* Forward declarations */
67 int open_source_file PARAMS ((struct symtab *));
69 void find_source_lines PARAMS ((struct symtab *, int));
71 /* Prototypes for exported functions. */
73 void _initialize_source PARAMS ((void));
75 /* Prototypes for local functions. */
77 static int get_filename_and_charpos PARAMS ((struct symtab *, char **));
79 static void reverse_search_command PARAMS ((char *, int));
81 static void forward_search_command PARAMS ((char *, int));
83 static void line_info PARAMS ((char *, int));
85 static void list_command PARAMS ((char *, int));
87 static void ambiguous_line_spec PARAMS ((struct symtabs_and_lines *));
89 static void source_info PARAMS ((char *, int));
91 static void show_directories PARAMS ((char *, int));
93 /* Path of directories to search for source files.
94 Same format as the PATH environment variable's value. */
98 /* Symtab of default file for listing lines of. */
100 struct symtab *current_source_symtab;
102 /* Default next line to list. */
104 int current_source_line;
106 /* Default number of lines to print with commands like "list".
107 This is based on guessing how many long (i.e. more than chars_per_line
108 characters) lines there will be. To be completely correct, "list"
109 and friends should be rewritten to count characters and see where
110 things are wrapping, but that would be a fair amount of work. */
112 int lines_to_list = 10;
114 /* Line number of last line printed. Default for various commands.
115 current_source_line is usually, but not always, the same as this. */
117 static int last_line_listed;
119 /* First line number listed by last listing command. */
121 static int first_line_listed;
123 /* Saves the name of the last source file visited and a possible error code.
124 Used to prevent repeating annoying "No such file or directories" msgs */
126 static struct symtab *last_source_visited = NULL;
127 static int last_source_error = 0;
130 /* Set the source file default for the "list" command to be S.
132 If S is NULL, and we don't have a default, find one. This
133 should only be called when the user actually tries to use the
134 default, since we produce an error if we can't find a reasonable
135 default. Also, since this can cause symbols to be read, doing it
136 before we need to would make things slower than necessary. */
139 select_source_symtab (s)
140 register struct symtab *s;
142 struct symtabs_and_lines sals;
143 struct symtab_and_line sal;
144 struct partial_symtab *ps;
145 struct partial_symtab *cs_pst = 0;
150 current_source_symtab = s;
151 current_source_line = 1;
155 if (current_source_symtab)
158 /* Make the default place to list be the function `main'
160 if (lookup_symbol ("main", 0, VAR_NAMESPACE, 0, NULL))
162 sals = decode_line_spec ("main", 1);
165 current_source_symtab = sal.symtab;
166 current_source_line = max (sal.line - (lines_to_list - 1), 1);
167 if (current_source_symtab)
171 /* All right; find the last file in the symtab list (ignoring .h's). */
173 current_source_line = 1;
175 for (ofp = object_files; ofp != NULL; ofp = ofp->next)
177 for (s = ofp->symtabs; s; s = s->next)
179 char *name = s->filename;
180 int len = strlen (name);
181 if (!(len > 2 && (STREQ (&name[len - 2], ".h"))))
183 current_source_symtab = s;
187 if (current_source_symtab)
190 /* Howabout the partial symbol tables? */
192 for (ofp = object_files; ofp != NULL; ofp = ofp->next)
194 for (ps = ofp->psymtabs; ps != NULL; ps = ps->next)
196 char *name = ps->filename;
197 int len = strlen (name);
198 if (!(len > 2 && (STREQ (&name[len - 2], ".h"))))
208 internal_error ("select_source_symtab: readin pst found and no symtabs.");
212 current_source_symtab = PSYMTAB_TO_SYMTAB (cs_pst);
215 if (current_source_symtab)
218 error ("Can't find a default source file");
222 show_directories (ignore, from_tty)
226 puts_filtered ("Source directories searched: ");
227 puts_filtered (source_path);
228 puts_filtered ("\n");
231 /* Forget what we learned about line positions in source files, and
232 which directories contain them; must check again now since files
233 may be found in a different directory now. */
236 forget_cached_source_info ()
238 register struct symtab *s;
239 register struct objfile *objfile;
241 for (objfile = object_files; objfile != NULL; objfile = objfile->next)
243 for (s = objfile->symtabs; s != NULL; s = s->next)
245 if (s->line_charpos != NULL)
247 mfree (objfile->md, s->line_charpos);
248 s->line_charpos = NULL;
250 if (s->fullname != NULL)
252 mfree (objfile->md, s->fullname);
264 sprintf (buf, "$cdir%c$cwd", DIRNAME_SEPARATOR);
265 source_path = strsave (buf);
266 forget_cached_source_info ();
269 /* Add zero or more directories to the front of the source path. */
272 directory_command (dirname, from_tty)
277 /* FIXME, this goes to "delete dir"... */
280 if (from_tty && query ("Reinitialize source path to empty? "))
288 mod_path (dirname, &source_path);
289 last_source_visited = NULL;
292 show_directories ((char *) 0, from_tty);
293 forget_cached_source_info ();
296 /* Add zero or more directories to the front of an arbitrary path. */
299 mod_path (dirname, which_path)
303 char *old = *which_path;
309 dirname = strsave (dirname);
310 make_cleanup (free, dirname);
314 char *name = dirname;
319 char *separator = strchr (name, DIRNAME_SEPARATOR);
320 char *space = strchr (name, ' ');
321 char *tab = strchr (name, '\t');
323 if (separator == 0 && space == 0 && tab == 0)
324 p = dirname = name + strlen (name);
328 if (separator != 0 && (p == 0 || separator < p))
330 if (space != 0 && (p == 0 || space < p))
332 if (tab != 0 && (p == 0 || tab < p))
335 while (*dirname == DIRNAME_SEPARATOR
343 /* On win32 h:\ is different to h: */
345 /* Sigh. "foo/" => "foo" */
354 /* "." => getwd (). */
355 name = current_directory;
358 else if (SLASH_P (p[-2]))
368 /* "...foo/." => "...foo". */
379 name = tilde_expand (name);
380 else if (!ROOTED_P (name) && name[0] != '$')
381 name = concat (current_directory, SLASH_STRING, name, NULL);
383 name = savestring (name, p - name);
384 make_cleanup (free, name);
386 /* Unless it's a variable, check existence. */
389 /* These are warnings, not errors, since we don't want a
390 non-existent directory in a .gdbinit file to stop processing
391 of the .gdbinit file.
393 Whether they get added to the path is more debatable. Current
394 answer is yes, in case the user wants to go make the directory
395 or whatever. If the directory continues to not exist/not be
396 a directory/etc, then having them in the path should be
398 if (stat (name, &st) < 0)
400 int save_errno = errno;
401 fprintf_unfiltered (gdb_stderr, "Warning: ");
402 print_sys_errmsg (name, save_errno);
404 else if ((st.st_mode & S_IFMT) != S_IFDIR)
405 warning ("%s is not a directory.", name);
410 register unsigned int len = strlen (name);
415 if (!strncmp (p, name, len)
416 && (p[len] == '\0' || p[len] == DIRNAME_SEPARATOR))
418 /* Found it in the search path, remove old copy */
420 p--; /* Back over leading separator */
421 if (prefix > p - *which_path)
422 goto skip_dup; /* Same dir twice in one cmd */
423 strcpy (p, &p[len + 1]); /* Copy from next \0 or : */
425 p = strchr (p, DIRNAME_SEPARATOR);
435 tinybuf[0] = DIRNAME_SEPARATOR;
438 /* If we have already tacked on a name(s) in this command, be sure they stay on the front as we tack on some more. */
445 temp = concat (old, tinybuf, name, NULL);
447 *which_path = concat (temp, "", &old[prefix], NULL);
448 prefix = strlen (temp);
453 *which_path = concat (name, (old[0] ? tinybuf : old), old, NULL);
454 prefix = strlen (name);
462 while (*dirname != '\0');
467 source_info (ignore, from_tty)
471 register struct symtab *s = current_source_symtab;
475 printf_filtered ("No current source file.\n");
478 printf_filtered ("Current source file is %s\n", s->filename);
480 printf_filtered ("Compilation directory is %s\n", s->dirname);
482 printf_filtered ("Located in %s\n", s->fullname);
484 printf_filtered ("Contains %d line%s.\n", s->nlines,
485 s->nlines == 1 ? "" : "s");
487 printf_filtered ("Source language is %s.\n", language_str (s->language));
488 printf_filtered ("Compiled with %s debugging format.\n", s->debugformat);
493 /* Open a file named STRING, searching path PATH (dir names sep by some char)
494 using mode MODE and protection bits PROT in the calls to open.
496 If TRY_CWD_FIRST, try to open ./STRING before searching PATH.
497 (ie pretend the first element of PATH is "."). This also indicates
498 that a slash in STRING disables searching of the path (this is
499 so that "exec-file ./foo" or "symbol-file ./foo" insures that you
500 get that particular version of foo or an error message).
502 If FILENAMED_OPENED is non-null, set it to a newly allocated string naming
503 the actual file opened (this string will always start with a "/". We
504 have to take special pains to avoid doubling the "/" between the directory
505 and the file, sigh! Emacs gets confuzzed by this when we print the
508 If a file is found, return the descriptor.
509 Otherwise, return -1, with errno set for the last name we tried to open. */
511 /* >>>> This should only allow files of certain types,
512 >>>> eg executable, non-directory */
514 openp (path, try_cwd_first, string, mode, prot, filename_opened)
520 char **filename_opened;
523 register char *filename;
524 register char *p, *p1;
535 if (try_cwd_first || ROOTED_P (string))
539 fd = open (filename, mode, prot);
542 for (i = 0; string[i]; i++)
543 if (SLASH_P (string[i]))
548 while (string[0] == '.' && SLASH_P (string[1]))
551 alloclen = strlen (path) + strlen (string) + 2;
552 filename = (char *) alloca (alloclen);
554 for (p = path; p; p = p1 ? p1 + 1 : 0)
556 p1 = (char *) strchr (p, DIRNAME_SEPARATOR);
562 if (len == 4 && p[0] == '$' && p[1] == 'c'
563 && p[2] == 'w' && p[3] == 'd')
565 /* Name is $cwd -- insert current directory name instead. */
568 /* First, realloc the filename buffer if too short. */
569 len = strlen (current_directory);
570 newlen = len + strlen (string) + 2;
571 if (newlen > alloclen)
574 filename = (char *) alloca (alloclen);
576 strcpy (filename, current_directory);
580 /* Normal file name in path -- just use it. */
581 strncpy (filename, p, len);
585 /* Remove trailing slashes */
586 while (len > 0 && SLASH_P (filename[len - 1]))
589 strcat (filename + len, SLASH_STRING);
590 strcat (filename, string);
592 fd = open (filename, mode);
601 *filename_opened = (char *) 0;
602 else if (ROOTED_P (filename))
603 *filename_opened = savestring (filename, strlen (filename));
606 /* Beware the // my son, the Emacs barfs, the botch that catch... */
608 *filename_opened = concat (current_directory,
610 == current_directory[strlen (current_directory) - 1]
616 /* This is a debugging hack that can go away when all combinations
617 of Mac and Unix names are handled reasonably. */
619 extern int debug_openp;
623 printf ("openp on %s, path %s mode %d prot %d\n returned %d",
624 string, path, mode, prot, fd);
625 if (*filename_opened)
626 printf (" (filename is %s)", *filename_opened);
636 /* This is essentially a convenience, for clients that want the behaviour
637 of openp, using source_path, but that really don't want the file to be
638 opened but want instead just to know what the full pathname is (as
639 qualified against source_path).
641 The current working directory is searched first.
643 If the file was found, this function returns 1, and FULL_PATHNAME is
644 set to the fully-qualified pathname.
646 Else, this functions returns 0, and FULL_PATHNAME is set to NULL.
649 source_full_path_of (filename, full_pathname)
651 char **full_pathname;
655 fd = openp (source_path, 1, filename, O_RDONLY, 0, full_pathname);
658 *full_pathname = NULL;
667 /* Open a source file given a symtab S. Returns a file descriptor or
668 negative number for error. */
674 char *path = source_path;
679 /* Quick way out if we already know its full name */
682 result = open (s->fullname, OPEN_MODE);
685 /* Didn't work -- free old one, try again. */
686 mfree (s->objfile->md, s->fullname);
690 if (s->dirname != NULL)
692 /* Replace a path entry of $cdir with the compilation directory name */
694 /* We cast strstr's result in case an ANSIhole has made it const,
695 which produces a "required warning" when assigned to a nonconst. */
696 p = (char *) strstr (source_path, "$cdir");
697 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
698 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
703 alloca (strlen (source_path) + 1 + strlen (s->dirname) + 1);
704 len = p - source_path;
705 strncpy (path, source_path, len); /* Before $cdir */
706 strcpy (path + len, s->dirname); /* new stuff */
707 strcat (path + len, source_path + len + cdir_len); /* After $cdir */
711 result = openp (path, 0, s->filename, OPEN_MODE, 0, &s->fullname);
714 /* Didn't work. Try using just the basename. */
715 p = basename (s->filename);
716 if (p != s->filename)
717 result = openp (path, 0, p, OPEN_MODE, 0, &s->fullname);
722 /* Didn't work. Try using just the MPW basename. */
723 p = (char *) mpw_basename (s->filename);
724 if (p != s->filename)
725 result = openp (path, 0, p, OPEN_MODE, 0, &s->fullname);
729 /* Didn't work. Try using the mixed Unix/MPW basename. */
730 p = (char *) mpw_mixed_basename (s->filename);
731 if (p != s->filename)
732 result = openp (path, 0, p, OPEN_MODE, 0, &s->fullname);
738 fullname = s->fullname;
739 s->fullname = mstrsave (s->objfile->md, s->fullname);
745 /* Return the path to the source file associated with symtab. Returns NULL
749 symtab_to_filename (s)
757 /* If we've seen the file before, just return fullname. */
762 /* Try opening the file to setup fullname */
764 fd = open_source_file (s);
766 return s->filename; /* File not found. Just use short name */
768 /* Found the file. Cleanup and return the full name */
775 /* Create and initialize the table S->line_charpos that records
776 the positions of the lines in the source file, which is assumed
777 to be open on descriptor DESC.
778 All set S->nlines to the number of such lines. */
781 find_source_lines (s, desc)
786 register char *data, *p, *end;
788 int lines_allocated = 1000;
793 line_charpos = (int *) xmmalloc (s->objfile->md,
794 lines_allocated * sizeof (int));
795 if (fstat (desc, &st) < 0)
796 perror_with_name (s->filename);
798 if (s && s->objfile && s->objfile->obfd)
799 mtime = bfd_get_mtime (s->objfile->obfd);
801 mtime = bfd_get_mtime (exec_bfd);
803 if (mtime && mtime < st.st_mtime)
806 printf_filtered ("\n");
807 warning ("Source file is more recent than executable.\n");
810 #ifdef LSEEK_NOT_LINEAR
814 /* Have to read it byte by byte to find out where the chars live */
816 line_charpos[0] = lseek (desc, 0, SEEK_CUR);
818 while (myread (desc, &c, 1) > 0)
822 if (nlines == lines_allocated)
824 lines_allocated *= 2;
826 (int *) xmrealloc (s->objfile->md, (char *) line_charpos,
827 sizeof (int) * lines_allocated);
829 line_charpos[nlines++] = lseek (desc, 0, SEEK_CUR);
833 #else /* lseek linear. */
835 struct cleanup *old_cleanups;
837 /* st_size might be a large type, but we only support source files whose
838 size fits in an int. */
839 size = (int) st.st_size;
841 /* Use malloc, not alloca, because this may be pretty large, and we may
842 run into various kinds of limits on stack size. */
843 data = (char *) xmalloc (size);
844 old_cleanups = make_cleanup (free, data);
846 /* Reassign `size' to result of read for systems where \r\n -> \n. */
847 size = myread (desc, data, size);
849 perror_with_name (s->filename);
857 /* A newline at the end does not start a new line. */
860 if (nlines == lines_allocated)
862 lines_allocated *= 2;
864 (int *) xmrealloc (s->objfile->md, (char *) line_charpos,
865 sizeof (int) * lines_allocated);
867 line_charpos[nlines++] = p - data;
870 do_cleanups (old_cleanups);
872 #endif /* lseek linear. */
875 (int *) xmrealloc (s->objfile->md, (char *) line_charpos,
876 nlines * sizeof (int));
880 /* Return the character position of a line LINE in symtab S.
881 Return 0 if anything is invalid. */
883 #if 0 /* Currently unused */
886 source_line_charpos (s, line)
892 if (!s->line_charpos || line <= 0)
894 if (line > s->nlines)
896 return s->line_charpos[line - 1];
899 /* Return the line number of character position POS in symtab S. */
902 source_charpos_line (s, chr)
903 register struct symtab *s;
906 register int line = 0;
909 if (s == 0 || s->line_charpos == 0)
911 lnp = s->line_charpos;
912 /* Files are usually short, so sequential search is Ok */
913 while (line < s->nlines && *lnp <= chr)
918 if (line >= s->nlines)
926 /* Get full pathname and line number positions for a symtab.
927 Return nonzero if line numbers may have changed.
928 Set *FULLNAME to actual name of the file as found by `openp',
929 or to 0 if the file is not found. */
932 get_filename_and_charpos (s, fullname)
936 register int desc, linenums_changed = 0;
938 desc = open_source_file (s);
946 *fullname = s->fullname;
947 if (s->line_charpos == 0)
948 linenums_changed = 1;
949 if (linenums_changed)
950 find_source_lines (s, desc);
952 return linenums_changed;
955 /* Print text describing the full name of the source file S
956 and the line number LINE and its corresponding character position.
957 The text starts with two Ctrl-z so that the Emacs-GDB interface
960 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
962 Return 1 if successful, 0 if could not find the file. */
965 identify_source_line (s, line, mid_statement, pc)
971 if (s->line_charpos == 0)
972 get_filename_and_charpos (s, (char **) NULL);
973 if (s->fullname == 0)
975 if (line > s->nlines)
976 /* Don't index off the end of the line_charpos array. */
978 annotate_source (s->fullname, line, s->line_charpos[line - 1],
981 current_source_line = line;
982 first_line_listed = line;
983 last_line_listed = line;
984 current_source_symtab = s;
989 /* Print source lines from the file of symtab S,
990 starting with line number LINE and stopping before line number STOPLINE. */
992 static void print_source_lines_base PARAMS ((struct symtab * s, int line, int stopline, int noerror));
994 print_source_lines_base (s, line, stopline, noerror)
1002 register FILE *stream;
1003 int nlines = stopline - line;
1005 /* Regardless of whether we can open the file, set current_source_symtab. */
1006 current_source_symtab = s;
1007 current_source_line = line;
1008 first_line_listed = line;
1010 /* Only prints "No such file or directory" once */
1011 if ((s != last_source_visited) || (!last_source_error))
1013 last_source_visited = s;
1014 desc = open_source_file (s);
1018 desc = last_source_error;
1024 last_source_error = desc;
1028 char *name = alloca (strlen (s->filename) + 100);
1029 sprintf (name, "%d\t%s", line, s->filename);
1030 print_sys_errmsg (name, errno);
1033 printf_filtered ("%d\tin %s\n", line, s->filename);
1038 last_source_error = 0;
1040 if (s->line_charpos == 0)
1041 find_source_lines (s, desc);
1043 if (line < 1 || line > s->nlines)
1046 error ("Line number %d out of range; %s has %d lines.",
1047 line, s->filename, s->nlines);
1050 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1053 perror_with_name (s->filename);
1056 stream = fdopen (desc, FDOPEN_MODE);
1059 while (nlines-- > 0)
1064 last_line_listed = current_source_line;
1065 printf_filtered ("%d\t", current_source_line++);
1068 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1069 printf_filtered ("^%c", c + 0100);
1071 printf_filtered ("^?");
1072 #ifdef CRLF_SOURCE_FILES
1075 /* Just skip \r characters. */
1079 printf_filtered ("%c", c);
1081 while (c != '\n' && (c = fgetc (stream)) >= 0);
1087 /* Show source lines from the file of symtab S, starting with line
1088 number LINE and stopping before line number STOPLINE. If this is the
1089 not the command line version, then the source is shown in the source
1090 window otherwise it is simply printed */
1093 print_source_lines (s, line, stopline, noerror)
1095 int line, stopline, noerror;
1099 m_winPtrIsNull (srcWin) || !srcWin->generic.isVisible)
1100 print_source_lines_base (s, line, stopline, noerror);
1103 TuiGenWinInfoPtr locator = locatorWinInfoPtr ();
1104 extern void tui_vAddWinToLayout PARAMS ((va_list));
1105 extern void tui_vUpdateSourceWindowsWithLine PARAMS ((va_list));
1107 /* Regardless of whether we can open the file,
1108 set current_source_symtab. */
1109 current_source_symtab = s;
1110 current_source_line = line;
1111 first_line_listed = line;
1113 /* make sure that the source window is displayed */
1114 tuiDo ((TuiOpaqueFuncPtr) tui_vAddWinToLayout, SRC_WIN);
1116 tuiDo ((TuiOpaqueFuncPtr) tui_vUpdateSourceWindowsWithLine, s, line);
1117 tuiDo ((TuiOpaqueFuncPtr) tui_vUpdateLocatorFilename, s->filename);
1120 print_source_lines_base (s, line, stopline, noerror);
1126 /* Print a list of files and line numbers which a user may choose from
1127 in order to list a function which was specified ambiguously (as with
1128 `list classname::overloadedfuncname', for example). The vector in
1129 SALS provides the filenames and line numbers. */
1132 ambiguous_line_spec (sals)
1133 struct symtabs_and_lines *sals;
1137 for (i = 0; i < sals->nelts; ++i)
1138 printf_filtered ("file: \"%s\", line number: %d\n",
1139 sals->sals[i].symtab->filename, sals->sals[i].line);
1143 list_command (arg, from_tty)
1147 struct symtabs_and_lines sals, sals_end;
1148 struct symtab_and_line sal, sal_end;
1154 int linenum_beg = 0;
1157 if (!have_full_symbols () && !have_partial_symbols ())
1158 error ("No symbol table is loaded. Use the \"file\" command.");
1160 /* Pull in a current source symtab if necessary */
1161 if (current_source_symtab == 0 &&
1162 (arg == 0 || arg[0] == '+' || arg[0] == '-'))
1163 select_source_symtab (0);
1165 /* "l" or "l +" lists next ten lines. */
1167 if (arg == 0 || STREQ (arg, "+"))
1169 if (current_source_symtab == 0)
1170 error ("No default source file yet. Do \"help list\".");
1171 print_source_lines (current_source_symtab, current_source_line,
1172 current_source_line + lines_to_list, 0);
1176 /* "l -" lists previous ten lines, the ones before the ten just listed. */
1177 if (STREQ (arg, "-"))
1179 if (current_source_symtab == 0)
1180 error ("No default source file yet. Do \"help list\".");
1181 print_source_lines (current_source_symtab,
1182 max (first_line_listed - lines_to_list, 1),
1183 first_line_listed, 0);
1187 /* Now if there is only one argument, decode it in SAL
1189 If there are two arguments, decode them in SAL and SAL_END
1190 and clear NO_END; however, if one of the arguments is blank,
1191 set DUMMY_BEG or DUMMY_END to record that fact. */
1198 sals = decode_line_1 (&arg1, 0, 0, 0, 0);
1204 ambiguous_line_spec (&sals);
1213 /* Record whether the BEG arg is all digits. */
1215 for (p = arg; p != arg1 && *p >= '0' && *p <= '9'; p++);
1216 linenum_beg = (p == arg1);
1218 while (*arg1 == ' ' || *arg1 == '\t')
1224 while (*arg1 == ' ' || *arg1 == '\t')
1231 sals_end = decode_line_1 (&arg1, 0, 0, 0, 0);
1233 sals_end = decode_line_1 (&arg1, 0, sal.symtab, sal.line, 0);
1234 if (sals_end.nelts == 0)
1236 if (sals_end.nelts > 1)
1238 ambiguous_line_spec (&sals_end);
1239 free (sals_end.sals);
1242 sal_end = sals_end.sals[0];
1243 free (sals_end.sals);
1248 error ("Junk at end of line specification.");
1250 if (!no_end && !dummy_beg && !dummy_end
1251 && sal.symtab != sal_end.symtab)
1252 error ("Specified start and end are in different files.");
1253 if (dummy_beg && dummy_end)
1254 error ("Two empty args do not say what lines to list.");
1256 /* if line was specified by address,
1257 first print exactly which line, and which file.
1258 In this case, sal.symtab == 0 means address is outside
1259 of all known source files, not that user failed to give a filename. */
1262 if (sal.symtab == 0)
1263 /* FIXME-32x64--assumes sal.pc fits in long. */
1264 error ("No source file for address %s.",
1265 local_hex_string ((unsigned long) sal.pc));
1266 sym = find_pc_function (sal.pc);
1269 print_address_numeric (sal.pc, 1, gdb_stdout);
1270 printf_filtered (" is in ");
1271 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
1272 printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
1276 print_address_numeric (sal.pc, 1, gdb_stdout);
1277 printf_filtered (" is at %s:%d.\n",
1278 sal.symtab->filename, sal.line);
1282 /* If line was not specified by just a line number,
1283 and it does not imply a symtab, it must be an undebuggable symbol
1284 which means no source code. */
1286 if (!linenum_beg && sal.symtab == 0)
1287 error ("No line number known for %s.", arg);
1289 /* If this command is repeated with RET,
1290 turn it into the no-arg variant. */
1295 if (dummy_beg && sal_end.symtab == 0)
1296 error ("No default source file yet. Do \"help list\".");
1298 print_source_lines (sal_end.symtab,
1299 max (sal_end.line - (lines_to_list - 1), 1),
1300 sal_end.line + 1, 0);
1301 else if (sal.symtab == 0)
1302 error ("No default source file yet. Do \"help list\".");
1305 if (lines_to_list % 2 == 0)
1306 print_source_lines (sal.symtab,
1307 max (sal.line - (lines_to_list / 2), 1),
1308 sal.line + (lines_to_list / 2), 0);
1310 /* If lines_to_list is odd, then we round down in
1311 * one of the lines_to_list/2 computations, round up in
1312 * the other, so the total window size around the specified
1313 * line comes out right.
1315 print_source_lines (sal.symtab,
1316 max (sal.line - (lines_to_list / 2), 1),
1317 sal.line + ((1 + lines_to_list) / 2), 0);
1320 print_source_lines (sal.symtab, sal.line,
1322 ? sal.line + lines_to_list
1323 : sal_end.line + 1),
1327 /* Print info on range of pc's in a specified line. */
1330 line_info (arg, from_tty)
1334 struct symtabs_and_lines sals;
1335 struct symtab_and_line sal;
1336 CORE_ADDR start_pc, end_pc;
1339 INIT_SAL (&sal); /* initialize to zeroes */
1343 sal.symtab = current_source_symtab;
1344 sal.line = last_line_listed;
1346 sals.sals = (struct symtab_and_line *)
1347 xmalloc (sizeof (struct symtab_and_line));
1352 sals = decode_line_spec_1 (arg, 0);
1357 /* C++ More than one line may have been specified, as when the user
1358 specifies an overloaded function name. Print info on them all. */
1359 for (i = 0; i < sals.nelts; i++)
1363 if (sal.symtab == 0)
1365 printf_filtered ("No line number information available");
1368 /* This is useful for "info line *0x7f34". If we can't tell the
1369 user about a source line, at least let them have the symbolic
1371 printf_filtered (" for address ");
1373 print_address (sal.pc, gdb_stdout);
1376 printf_filtered (".");
1377 printf_filtered ("\n");
1379 else if (sal.line > 0
1380 && find_line_pc_range (sal, &start_pc, &end_pc))
1382 if (start_pc == end_pc)
1384 printf_filtered ("Line %d of \"%s\"",
1385 sal.line, sal.symtab->filename);
1387 printf_filtered (" is at address ");
1388 print_address (start_pc, gdb_stdout);
1390 printf_filtered (" but contains no code.\n");
1394 printf_filtered ("Line %d of \"%s\"",
1395 sal.line, sal.symtab->filename);
1397 printf_filtered (" starts at address ");
1398 print_address (start_pc, gdb_stdout);
1400 printf_filtered (" and ends at ");
1401 print_address (end_pc, gdb_stdout);
1402 printf_filtered (".\n");
1405 /* x/i should display this line's code. */
1406 set_next_address (start_pc);
1408 /* Repeating "info line" should do the following line. */
1409 last_line_listed = sal.line + 1;
1411 /* If this is the only line, show the source code. If it could
1412 not find the file, don't do anything special. */
1413 if (annotation_level && sals.nelts == 1)
1414 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1417 /* Is there any case in which we get here, and have an address
1418 which the user would want to see? If we have debugging symbols
1419 and no line numbers? */
1420 printf_filtered ("Line number %d is out of range for \"%s\".\n",
1421 sal.line, sal.symtab->filename);
1426 /* Commands to search the source file for a regexp. */
1430 forward_search_command (regex, from_tty)
1436 register FILE *stream;
1442 ** If this is the TUI, search from the first line displayed in
1443 ** the source window, otherwise, search from last_line_listed+1
1444 ** in current_source_symtab
1447 line = last_line_listed;
1450 if (srcWin->generic.isVisible && srcWin->generic.contentSize > 0)
1451 line = ((TuiWinContent)
1452 srcWin->generic.content)[0]->whichElement.source.lineOrAddr.lineNo;
1455 printf_filtered ("No source displayed.\nExpression not found.\n");
1461 line = last_line_listed + 1;
1464 msg = (char *) re_comp (regex);
1468 if (current_source_symtab == 0)
1469 select_source_symtab (0);
1471 desc = open_source_file (current_source_symtab);
1473 perror_with_name (current_source_symtab->filename);
1475 if (current_source_symtab->line_charpos == 0)
1476 find_source_lines (current_source_symtab, desc);
1478 if (line < 1 || line > current_source_symtab->nlines)
1481 error ("Expression not found");
1484 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1487 perror_with_name (current_source_symtab->filename);
1490 stream = fdopen (desc, FDOPEN_MODE);
1494 static char *buf = NULL;
1496 int cursize, newsize;
1499 buf = xmalloc (cursize);
1508 if (p - buf == cursize)
1510 newsize = cursize + cursize / 2;
1511 buf = xrealloc (buf, newsize);
1516 while (c != '\n' && (c = getc (stream)) >= 0);
1518 /* we now have a source line in buf, null terminate and match */
1520 if (re_exec (buf) > 0)
1525 print_source_lines_base (current_source_symtab, line, line + 1, 0);
1526 print_source_lines (current_source_symtab, line, line + 1, 0);
1527 set_internalvar (lookup_internalvar ("_"),
1528 value_from_longest (builtin_type_int,
1530 current_source_line = max (line - lines_to_list / 2, 1);
1536 printf_filtered ("Expression not found\n");
1542 reverse_search_command (regex, from_tty)
1548 register FILE *stream;
1553 ** If this is the TUI, search from the first line displayed in
1554 ** the source window, otherwise, search from last_line_listed-1
1555 ** in current_source_symtab
1558 line = last_line_listed;
1561 if (srcWin->generic.isVisible && srcWin->generic.contentSize > 0)
1562 line = ((TuiWinContent)
1563 srcWin->generic.content)[0]->whichElement.source.lineOrAddr.lineNo;
1566 printf_filtered ("No source displayed.\nExpression not found.\n");
1572 line = last_line_listed - 1;
1575 msg = (char *) re_comp (regex);
1579 if (current_source_symtab == 0)
1580 select_source_symtab (0);
1582 desc = open_source_file (current_source_symtab);
1584 perror_with_name (current_source_symtab->filename);
1586 if (current_source_symtab->line_charpos == 0)
1587 find_source_lines (current_source_symtab, desc);
1589 if (line < 1 || line > current_source_symtab->nlines)
1592 error ("Expression not found");
1595 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
1598 perror_with_name (current_source_symtab->filename);
1601 stream = fdopen (desc, FDOPEN_MODE);
1605 /* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1606 char buf[4096]; /* Should be reasonable??? */
1607 register char *p = buf;
1616 while (c != '\n' && (c = getc (stream)) >= 0);
1618 /* We now have a source line in buf; null terminate and match. */
1620 if (re_exec (buf) > 0)
1625 print_source_lines_base (current_source_symtab, line, line + 1, 0);
1626 print_source_lines (current_source_symtab, line, line + 1, 0);
1627 set_internalvar (lookup_internalvar ("_"),
1628 value_from_longest (builtin_type_int,
1630 current_source_line = max (line - lines_to_list / 2, 1);
1634 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1637 perror_with_name (current_source_symtab->filename);
1641 printf_filtered ("Expression not found\n");
1647 _initialize_source ()
1649 struct cmd_list_element *c;
1650 current_source_symtab = 0;
1651 init_source_path ();
1653 /* The intention is to use POSIX Basic Regular Expressions.
1654 Always use the GNU regex routine for consistency across all hosts.
1655 Our current GNU regex.c does not have all the POSIX features, so this is
1656 just an approximation. */
1657 re_set_syntax (RE_SYNTAX_GREP);
1659 c = add_cmd ("directory", class_files, directory_command,
1660 "Add directory DIR to beginning of search path for source files.\n\
1661 Forget cached info on source file locations and line positions.\n\
1662 DIR can also be $cwd for the current working directory, or $cdir for the\n\
1663 directory in which the source file was compiled into object code.\n\
1664 With no argument, reset the search path to $cdir:$cwd, the default.",
1668 add_com_alias ("use", "directory", class_files, 0);
1670 c->completer = filename_completer;
1672 add_cmd ("directories", no_class, show_directories,
1673 "Current search path for finding source files.\n\
1674 $cwd in the path means the current working directory.\n\
1675 $cdir in the path means the compilation directory of the source file.",
1680 add_com_alias ("D", "directory", class_files, 0);
1681 add_cmd ("ld", no_class, show_directories,
1682 "Current search path for finding source files.\n\
1683 $cwd in the path means the current working directory.\n\
1684 $cdir in the path means the compilation directory of the source file.",
1688 add_info ("source", source_info,
1689 "Information about the current source file.");
1691 add_info ("line", line_info,
1692 concat ("Core addresses of the code for a source line.\n\
1693 Line can be specified as\n\
1694 LINENUM, to list around that line in current file,\n\
1695 FILE:LINENUM, to list around that line in that file,\n\
1696 FUNCTION, to list around beginning of that function,\n\
1697 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1699 Default is to describe the last source line that was listed.\n\n\
1700 This sets the default address for \"x\" to the line's first instruction\n\
1701 so that \"x/i\" suffices to start examining the machine code.\n\
1702 The address is also stored as the value of \"$_\".", NULL));
1704 add_com ("forward-search", class_files, forward_search_command,
1705 "Search for regular expression (see regex(3)) from last line listed.\n\
1706 The matching line number is also stored as the value of \"$_\".");
1707 add_com_alias ("search", "forward-search", class_files, 0);
1709 add_com ("reverse-search", class_files, reverse_search_command,
1710 "Search backward for regular expression (see regex(3)) from last line listed.\n\
1711 The matching line number is also stored as the value of \"$_\".");
1715 add_com_alias ("/", "forward-search", class_files, 0);
1716 add_com_alias ("?", "reverse-search", class_files, 0);
1719 add_com ("list", class_files, list_command,
1720 concat ("List specified function or line.\n\
1721 With no argument, lists ten more lines after or around previous listing.\n\
1722 \"list -\" lists the ten lines before a previous ten-line listing.\n\
1723 One argument specifies a line, and ten lines are listed around that line.\n\
1724 Two arguments with comma between specify starting and ending lines to list.\n\
1726 Lines can be specified in these ways:\n\
1727 LINENUM, to list around that line in current file,\n\
1728 FILE:LINENUM, to list around that line in that file,\n\
1729 FUNCTION, to list around beginning of that function,\n\
1730 FILE:FUNCTION, to distinguish among like-named static functions.\n\
1731 *ADDRESS, to list around the line containing that address.\n\
1732 With two args if one is empty it stands for ten lines away from the other arg.", NULL));
1735 add_com_alias ("l", "list", class_files, 1);
1737 add_com_alias ("v", "list", class_files, 1);
1740 add_com_alias ("file", "list", class_files, 1);
1743 (add_set_cmd ("listsize", class_support, var_uinteger,
1744 (char *) &lines_to_list,
1745 "Set number of source lines gdb will list by default.",