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