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