1 /* Symbol table lookup for the GNU debugger, GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
31 #include "call-cmds.h"
33 #include "expression.h"
40 #include <sys/types.h>
46 /* Prototypes for local functions */
49 find_methods PARAMS ((struct type *, char *, struct symbol **));
52 completion_list_add_name PARAMS ((char *, char *, int, char *, char *));
55 build_canonical_line_spec PARAMS ((struct symtab_and_line *, char *, char ***));
57 static struct symtabs_and_lines
58 decode_line_2 PARAMS ((struct symbol *[], int, int, char ***));
61 rbreak_command PARAMS ((char *, int));
64 types_info PARAMS ((char *, int));
67 functions_info PARAMS ((char *, int));
70 variables_info PARAMS ((char *, int));
73 sources_info PARAMS ((char *, int));
76 list_symbols PARAMS ((char *, int, int));
79 output_source_filename PARAMS ((char *, int *));
82 operator_chars PARAMS ((char *, char **));
84 static int find_line_common PARAMS ((struct linetable *, int, int *));
86 static struct partial_symbol *
87 lookup_partial_symbol PARAMS ((struct partial_symtab *, const char *,
88 int, enum namespace));
90 static struct symtab *
91 lookup_symtab_1 PARAMS ((char *));
95 /* The single non-language-specific builtin type */
96 struct type *builtin_type_error;
98 /* Block in which the most recently searched-for symbol was found.
99 Might be better to make this a parameter to lookup_symbol and
102 const struct block *block_found;
104 char no_symtab_msg[] = "No symbol table is loaded. Use the \"file\" command.";
106 /* While the C++ support is still in flux, issue a possibly helpful hint on
107 using the new command completion feature on single quoted demangled C++
108 symbols. Remove when loose ends are cleaned up. FIXME -fnf */
111 cplusplus_hint (name)
114 printf ("Hint: try '%s<TAB> or '%s<ESC-?>\n", name, name);
115 printf ("(Note leading single quote.)\n");
118 /* Check for a symtab of a specific name; first in symtabs, then in
119 psymtabs. *If* there is no '/' in the name, a match after a '/'
120 in the symtab filename will also work. */
122 static struct symtab *
123 lookup_symtab_1 (name)
126 register struct symtab *s;
127 register struct partial_symtab *ps;
128 register char *slash;
129 register struct objfile *objfile;
133 /* First, search for an exact match */
135 ALL_SYMTABS (objfile, s)
136 if (STREQ (name, s->filename))
139 slash = strchr (name, '/');
141 /* Now, search for a matching tail (only if name doesn't have any dirs) */
144 ALL_SYMTABS (objfile, s)
146 char *p = s -> filename;
147 char *tail = strrchr (p, '/');
156 /* Same search rules as above apply here, but now we look thru the
159 ALL_PSYMTABS (objfile, ps)
160 if (STREQ (name, ps -> filename))
164 ALL_PSYMTABS (objfile, ps)
166 char *p = ps -> filename;
167 char *tail = strrchr (p, '/');
181 error ("Internal: readin %s pst for `%s' found when no symtab found.",
182 ps -> filename, name);
184 s = PSYMTAB_TO_SYMTAB (ps);
189 /* At this point, we have located the psymtab for this file, but
190 the conversion to a symtab has failed. This usually happens
191 when we are looking up an include file. In this case,
192 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
193 been created. So, we need to run through the symtabs again in
194 order to find the file.
195 XXX - This is a crock, and should be fixed inside of the the
196 symbol parsing routines. */
200 /* Lookup the symbol table of a source file named NAME. Try a couple
201 of variations if the first lookup doesn't work. */
207 register struct symtab *s;
210 s = lookup_symtab_1 (name);
213 /* If name not found as specified, see if adding ".c" helps. */
215 copy = (char *) alloca (strlen (name) + 3);
218 s = lookup_symtab_1 (copy);
221 /* We didn't find anything; die. */
225 /* Lookup the partial symbol table of a source file named NAME. This
226 only returns true on an exact match (ie. this semantics are
227 different from lookup_symtab. */
229 struct partial_symtab *
230 lookup_partial_symtab (name)
233 register struct partial_symtab *pst;
234 register struct objfile *objfile;
236 ALL_PSYMTABS (objfile, pst)
238 if (STREQ (name, pst -> filename))
246 /* Demangle a GDB method stub type.
247 Note that this function is g++ specific. */
250 gdb_mangle_name (type, i, j)
254 int mangled_name_len;
256 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
257 struct fn_field *method = &f[j];
258 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
259 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
260 char *newname = type_name_no_tag (type);
261 int is_constructor = newname != NULL && STREQ (field_name, newname);
262 int is_destructor = is_constructor && DESTRUCTOR_PREFIX_P (physname);
263 /* Need a new type prefix. */
264 char *const_prefix = method->is_const ? "C" : "";
265 char *volatile_prefix = method->is_volatile ? "V" : "";
267 #ifndef GCC_MANGLE_BUG
268 int len = newname == NULL ? 0 : strlen (newname);
272 mangled_name = (char*) xmalloc(strlen(physname)+1);
273 strcpy(mangled_name, physname);
277 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
278 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
283 /* Only needed for GNU-mangled names. ANSI-mangled names
284 work with the normal mechanisms. */
285 if (OPNAME_PREFIX_P (field_name))
287 char *opname = cplus_mangle_opname (field_name + 3, 0);
289 error ("No mangling for \"%s\"", field_name);
290 mangled_name_len += strlen (opname);
291 mangled_name = (char *)xmalloc (mangled_name_len);
293 strncpy (mangled_name, field_name, 3);
294 mangled_name[3] = '\0';
295 strcat (mangled_name, opname);
299 mangled_name = (char *)xmalloc (mangled_name_len);
301 mangled_name[0] = '\0';
303 strcpy (mangled_name, field_name);
305 strcat (mangled_name, buf);
306 /* If the class doesn't have a name, i.e. newname NULL, then we just
307 mangle it using 0 for the length of the class. Thus it gets mangled
308 as something starting with `::' rather than `classname::'. */
310 strcat (mangled_name, newname);
320 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
323 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
324 + strlen (buf) + strlen (physname) + 1);
326 /* Only needed for GNU-mangled names. ANSI-mangled names
327 work with the normal mechanisms. */
328 if (OPNAME_PREFIX_P (field_name))
330 opname = cplus_mangle_opname (field_name + 3, 0);
333 error ("No mangling for \"%s\"", field_name);
335 mangled_name_len += strlen (opname);
336 mangled_name = (char *) xmalloc (mangled_name_len);
338 strncpy (mangled_name, field_name, 3);
339 strcpy (mangled_name + 3, opname);
343 mangled_name = (char *) xmalloc (mangled_name_len);
346 mangled_name[0] = '\0';
350 strcpy (mangled_name, field_name);
353 strcat (mangled_name, buf);
356 strcat (mangled_name, physname);
357 return (mangled_name);
361 /* Find which partial symtab on contains PC. Return 0 if none. */
363 struct partial_symtab *
365 register CORE_ADDR pc;
367 register struct partial_symtab *pst;
368 register struct objfile *objfile;
370 ALL_PSYMTABS (objfile, pst)
372 if (pc >= pst->textlow && pc < pst->texthigh)
378 /* Find which partial symbol within a psymtab contains PC. Return 0
379 if none. Check all psymtabs if PSYMTAB is 0. */
380 struct partial_symbol *
381 find_pc_psymbol (psymtab, pc)
382 struct partial_symtab *psymtab;
385 struct partial_symbol *best = NULL, *p;
389 psymtab = find_pc_psymtab (pc);
393 best_pc = psymtab->textlow - 1;
395 for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
396 (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
397 < psymtab->n_static_syms);
399 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
400 && SYMBOL_CLASS (p) == LOC_BLOCK
401 && pc >= SYMBOL_VALUE_ADDRESS (p)
402 && SYMBOL_VALUE_ADDRESS (p) > best_pc)
404 best_pc = SYMBOL_VALUE_ADDRESS (p);
407 if (best_pc == psymtab->textlow - 1)
413 /* Find the definition for a specified symbol name NAME
414 in namespace NAMESPACE, visible from lexical block BLOCK.
415 Returns the struct symbol pointer, or zero if no symbol is found.
416 If SYMTAB is non-NULL, store the symbol table in which the
417 symbol was found there, or NULL if not found.
418 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
419 NAME is a field of the current implied argument `this'. If so set
420 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
421 BLOCK_FOUND is set to the block in which NAME is found (in the case of
422 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
425 lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
427 register const struct block *block;
428 const enum namespace namespace;
429 int *is_a_field_of_this;
430 struct symtab **symtab;
432 register struct symbol *sym;
433 register struct symtab *s = NULL;
434 register struct partial_symtab *ps;
435 struct blockvector *bv;
436 register struct objfile *objfile;
437 register struct block *b;
438 register struct minimal_symbol *msymbol;
440 /* Search specified block and its superiors. */
444 sym = lookup_block_symbol (block, name, namespace);
450 /* Search the list of symtabs for one which contains the
451 address of the start of this block. */
452 ALL_SYMTABS (objfile, s)
454 bv = BLOCKVECTOR (s);
455 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
456 if (BLOCK_START (b) <= BLOCK_START (block)
457 && BLOCK_END (b) > BLOCK_START (block))
466 block = BLOCK_SUPERBLOCK (block);
469 /* FIXME: this code is never executed--block is always NULL at this
470 point. What is it trying to do, anyway? We already should have
471 checked the STATIC_BLOCK above (it is the superblock of top-level
472 blocks). Why is VAR_NAMESPACE special-cased? */
473 /* Don't need to mess with the psymtabs; if we have a block,
474 that file is read in. If we don't, then we deal later with
475 all the psymtab stuff that needs checking. */
476 if (namespace == VAR_NAMESPACE && block != NULL)
479 /* Find the right symtab. */
480 ALL_SYMTABS (objfile, s)
482 bv = BLOCKVECTOR (s);
483 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
484 if (BLOCK_START (b) <= BLOCK_START (block)
485 && BLOCK_END (b) > BLOCK_START (block))
487 sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
500 /* C++: If requested to do so by the caller,
501 check to see if NAME is a field of `this'. */
502 if (is_a_field_of_this)
504 struct value *v = value_of_this (0);
506 *is_a_field_of_this = 0;
507 if (v && check_field (v, name))
509 *is_a_field_of_this = 1;
516 /* Now search all global blocks. Do the symtab's first, then
517 check the psymtab's */
519 ALL_SYMTABS (objfile, s)
521 bv = BLOCKVECTOR (s);
522 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
523 sym = lookup_block_symbol (block, name, namespace);
533 /* Check for the possibility of the symbol being a global function
534 that is stored in one of the minimal symbol tables. Eventually, all
535 global symbols might be resolved in this way. */
537 if (namespace == VAR_NAMESPACE)
539 msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
542 s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
543 /* If S is NULL, there are no debug symbols for this file.
544 Skip this stuff and check for matching static symbols below. */
547 bv = BLOCKVECTOR (s);
548 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
549 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
551 /* We kept static functions in minimal symbol table as well as
552 in static scope. We want to find them in the symbol table. */
554 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
555 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
559 /* sym == 0 if symbol was found in the minimal symbol table
560 but not in the symtab.
561 Return 0 to use the msymbol definition of "foo_".
563 This happens for Fortran "foo_" symbols,
564 which are "foo" in the symtab.
566 This can also happen if "asm" is used to make a
567 regular symbol but not a debugging symbol, e.g.
579 ALL_PSYMTABS (objfile, ps)
581 if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
583 s = PSYMTAB_TO_SYMTAB(ps);
584 bv = BLOCKVECTOR (s);
585 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
586 sym = lookup_block_symbol (block, name, namespace);
588 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
595 /* Now search all per-file blocks.
596 Not strictly correct, but more useful than an error.
597 Do the symtabs first, then check the psymtabs */
599 ALL_SYMTABS (objfile, s)
601 bv = BLOCKVECTOR (s);
602 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
603 sym = lookup_block_symbol (block, name, namespace);
613 ALL_PSYMTABS (objfile, ps)
615 if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
617 s = PSYMTAB_TO_SYMTAB(ps);
618 bv = BLOCKVECTOR (s);
619 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
620 sym = lookup_block_symbol (block, name, namespace);
622 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
629 /* Now search all per-file blocks for static mangled symbols.
630 Do the symtabs first, then check the psymtabs. */
632 if (namespace == VAR_NAMESPACE)
634 ALL_SYMTABS (objfile, s)
636 bv = BLOCKVECTOR (s);
637 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
638 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
648 ALL_PSYMTABS (objfile, ps)
650 if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
652 s = PSYMTAB_TO_SYMTAB(ps);
653 bv = BLOCKVECTOR (s);
654 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
655 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
657 error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
670 /* Look, in partial_symtab PST, for symbol NAME. Check the global
671 symbols if GLOBAL, the static symbols if not */
673 static struct partial_symbol *
674 lookup_partial_symbol (pst, name, global, namespace)
675 struct partial_symtab *pst;
678 enum namespace namespace;
680 struct partial_symbol *start, *psym;
681 struct partial_symbol *top, *bottom, *center;
682 int length = (global ? pst->n_global_syms : pst->n_static_syms);
683 int do_linear_search = 1;
691 pst->objfile->global_psymbols.list + pst->globals_offset :
692 pst->objfile->static_psymbols.list + pst->statics_offset );
694 if (global) /* This means we can use a binary search. */
696 do_linear_search = 0;
698 /* Binary search. This search is guaranteed to end with center
699 pointing at the earliest partial symbol with the correct
700 name. At that point *all* partial symbols with that name
701 will be checked against the correct namespace. */
704 top = start + length - 1;
707 center = bottom + (top - bottom) / 2;
708 assert (center < top);
709 if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
711 do_linear_search = 1;
713 if (STRCMP (SYMBOL_NAME (center), name) >= 0)
722 assert (top == bottom);
723 while (STREQ (SYMBOL_NAME (top), name))
725 if (SYMBOL_NAMESPACE (top) == namespace)
733 /* Can't use a binary search or else we found during the binary search that
734 we should also do a linear search. */
736 if (do_linear_search)
738 for (psym = start; psym < start + length; psym++)
740 if (namespace == SYMBOL_NAMESPACE (psym))
742 if (SYMBOL_MATCHES_NAME (psym, name))
753 /* Find the psymtab containing main(). */
754 /* FIXME: What about languages without main() or specially linked
755 executables that have no main() ? */
757 struct partial_symtab *
760 register struct partial_symtab *pst;
761 register struct objfile *objfile;
763 ALL_PSYMTABS (objfile, pst)
765 if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
773 /* Search BLOCK for symbol NAME in NAMESPACE.
775 Note that if NAME is the demangled form of a C++ symbol, we will fail
776 to find a match during the binary search of the non-encoded names, but
777 for now we don't worry about the slight inefficiency of looking for
778 a match we'll never find, since it will go pretty quick. Once the
779 binary search terminates, we drop through and do a straight linear
780 search on the symbols. Each symbol which is marked as being a C++
781 symbol (language_cplus set) has both the encoded and non-encoded names
782 tested for a match. */
785 lookup_block_symbol (block, name, namespace)
786 register const struct block *block;
788 const enum namespace namespace;
790 register int bot, top, inc;
791 register struct symbol *sym;
792 register struct symbol *sym_found = NULL;
793 register int do_linear_search = 1;
795 /* If the blocks's symbols were sorted, start with a binary search. */
797 if (BLOCK_SHOULD_SORT (block))
799 /* Reset the linear search flag so if the binary search fails, we
800 won't do the linear search once unless we find some reason to
801 do so, such as finding a C++ symbol during the binary search.
802 Note that for C++ modules, ALL the symbols in a block should
803 end up marked as C++ symbols. */
805 do_linear_search = 0;
806 top = BLOCK_NSYMS (block);
809 /* Advance BOT to not far before the first symbol whose name is NAME. */
813 inc = (top - bot + 1);
814 /* No need to keep binary searching for the last few bits worth. */
819 inc = (inc >> 1) + bot;
820 sym = BLOCK_SYM (block, inc);
821 if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
823 do_linear_search = 1;
825 if (SYMBOL_NAME (sym)[0] < name[0])
829 else if (SYMBOL_NAME (sym)[0] > name[0])
833 else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
843 /* Now scan forward until we run out of symbols, find one whose
844 name is greater than NAME, or find one we want. If there is
845 more than one symbol with the right name and namespace, we
846 return the first one; I believe it is now impossible for us
847 to encounter two symbols with the same name and namespace
848 here, because blocks containing argument symbols are no
851 top = BLOCK_NSYMS (block);
854 sym = BLOCK_SYM (block, bot);
855 inc = SYMBOL_NAME (sym)[0] - name[0];
858 inc = STRCMP (SYMBOL_NAME (sym), name);
860 if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
872 /* Here if block isn't sorted, or we fail to find a match during the
873 binary search above. If during the binary search above, we find a
874 symbol which is a C++ symbol, then we have re-enabled the linear
875 search flag which was reset when starting the binary search.
877 This loop is equivalent to the loop above, but hacked greatly for speed.
879 Note that parameter symbols do not always show up last in the
880 list; this loop makes sure to take anything else other than
881 parameter symbols first; it only uses parameter symbols as a
882 last resort. Note that this only takes up extra computation
885 if (do_linear_search)
887 top = BLOCK_NSYMS (block);
891 sym = BLOCK_SYM (block, bot);
892 if (SYMBOL_NAMESPACE (sym) == namespace &&
893 SYMBOL_MATCHES_NAME (sym, name))
896 if (SYMBOL_CLASS (sym) != LOC_ARG &&
897 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
898 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
899 SYMBOL_CLASS (sym) != LOC_REGPARM &&
900 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
901 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
909 return (sym_found); /* Will be NULL if not found. */
913 /* Return the symbol for the function which contains a specified
914 lexical block, described by a struct block BL. */
920 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
921 bl = BLOCK_SUPERBLOCK (bl);
923 return BLOCK_FUNCTION (bl);
926 /* Find the symtab associated with PC. Look through the psymtabs and read in
927 another symtab if necessary. */
931 register CORE_ADDR pc;
933 register struct block *b;
934 struct blockvector *bv;
935 register struct symtab *s = NULL;
936 register struct symtab *best_s = NULL;
937 register struct partial_symtab *ps;
938 register struct objfile *objfile;
941 /* Search all symtabs for the one whose file contains our address, and which
942 is the smallest of all the ones containing the address. This is designed
943 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
944 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
945 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
946 This is said to happen for the mips; it might be swifter to create
947 several symtabs with the same name like xcoff does (I'm not sure). */
949 ALL_SYMTABS (objfile, s)
951 bv = BLOCKVECTOR (s);
952 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
953 if (BLOCK_START (b) <= pc
954 && BLOCK_END (b) > pc
956 || BLOCK_END (b) - BLOCK_START (b) < distance))
958 distance = BLOCK_END (b) - BLOCK_START (b);
967 ps = find_pc_psymtab (pc);
971 /* Might want to error() here (in case symtab is corrupt and
972 will cause a core dump), but maybe we can successfully
973 continue, so let's not. */
975 (Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n",
977 s = PSYMTAB_TO_SYMTAB (ps);
982 /* Find the source file and line number for a given PC value.
983 Return a structure containing a symtab pointer, a line number,
984 and a pc range for the entire source line.
985 The value's .pc field is NOT the specified pc.
986 NOTCURRENT nonzero means, if specified pc is on a line boundary,
987 use the line that ends there. Otherwise, in that case, the line
988 that begins there is used. */
990 /* The big complication here is that a line may start in one file, and end just
991 before the start of another file. This usually occurs when you #include
992 code in the middle of a subroutine. To properly find the end of a line's PC
993 range, we must search all symtabs associated with this compilation unit, and
994 find the one whose first PC is closer than that of the next line in this
997 /* If it's worth the effort, we could be using a binary search. */
999 struct symtab_and_line
1000 find_pc_line (pc, notcurrent)
1005 register struct linetable *l;
1008 register struct linetable_entry *item;
1009 struct symtab_and_line val;
1010 struct blockvector *bv;
1012 /* Info on best line seen so far, and where it starts, and its file. */
1014 struct linetable_entry *best = NULL;
1015 CORE_ADDR best_end = 0;
1016 struct symtab *best_symtab = 0;
1018 /* Store here the first line number
1019 of a file which contains the line at the smallest pc after PC.
1020 If we don't find a line whose range contains PC,
1021 we will use a line one less than this,
1022 with a range from the start of that file to the first line's pc. */
1023 struct linetable_entry *alt = NULL;
1024 struct symtab *alt_symtab = 0;
1026 /* Info on best line seen in this file. */
1028 struct linetable_entry *prev;
1030 /* If this pc is not from the current frame,
1031 it is the address of the end of a call instruction.
1032 Quite likely that is the start of the following statement.
1033 But what we want is the statement containing the instruction.
1034 Fudge the pc to make sure we get that. */
1036 if (notcurrent) pc -= 1;
1038 s = find_pc_symtab (pc);
1048 bv = BLOCKVECTOR (s);
1050 /* Look at all the symtabs that share this blockvector.
1051 They all have the same apriori range, that we found was right;
1052 but they have different line tables. */
1054 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
1056 /* Find the best line in this symtab. */
1063 /* I think len can be zero if the symtab lacks line numbers
1064 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
1065 I'm not sure which, and maybe it depends on the symbol
1071 item = l->item; /* Get first line info */
1073 /* Is this file's first line closer than the first lines of other files?
1074 If so, record this file, and its first line, as best alternate. */
1075 if (item->pc > pc && (!alt || item->pc < alt->pc))
1081 for (i = 0; i < len; i++, item++)
1083 /* Return the last line that did not start after PC. */
1090 /* At this point, prev points at the line whose start addr is <= pc, and
1091 item points at the next line. If we ran off the end of the linetable
1092 (pc >= start of the last line), then prev == item. If pc < start of
1093 the first line, prev will not be set. */
1095 /* Is this file's best line closer than the best in the other files?
1096 If so, record this file, and its best line, as best so far. */
1098 if (prev && (!best || prev->pc > best->pc))
1102 /* If another line is in the linetable, and its PC is closer
1103 than the best_end we currently have, take it as best_end. */
1104 if (i < len && (best_end == 0 || best_end > item->pc))
1105 best_end = item->pc;
1112 { /* If we didn't find any line # info, just
1121 val.symtab = alt_symtab;
1122 val.line = alt->line - 1;
1123 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1129 val.symtab = best_symtab;
1130 val.line = best->line;
1132 if (best_end && (!alt || best_end < alt->pc))
1137 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1142 static int find_line_symtab PARAMS ((struct symtab *, int, struct linetable **,
1145 /* Find line number LINE in any symtab whose name is the same as
1148 If found, return 1, set *LINETABLE to the linetable in which it was
1149 found, set *INDEX to the index in the linetable of the best entry
1150 found, and set *EXACT_MATCH nonzero if the value returned is an
1153 If not found, return 0. */
1156 find_line_symtab (symtab, line, linetable, index, exact_match)
1157 struct symtab *symtab;
1159 struct linetable **linetable;
1165 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
1169 struct linetable *best_linetable;
1171 /* First try looking it up in the given symtab. */
1172 best_linetable = LINETABLE (symtab);
1173 best_index = find_line_common (best_linetable, line, &exact);
1174 if (best_index < 0 || !exact)
1176 /* Didn't find an exact match. So we better keep looking for
1177 another symtab with the same name. In the case of xcoff,
1178 multiple csects for one source file (produced by IBM's FORTRAN
1179 compiler) produce multiple symtabs (this is unavoidable
1180 assuming csects can be at arbitrary places in memory and that
1181 the GLOBAL_BLOCK of a symtab has a begin and end address). */
1183 /* BEST is the smallest linenumber > LINE so far seen,
1184 or 0 if none has been seen so far.
1185 BEST_INDEX and BEST_LINETABLE identify the item for it. */
1188 struct objfile *objfile;
1191 if (best_index >= 0)
1192 best = best_linetable->item[best_index].line;
1196 ALL_SYMTABS (objfile, s)
1198 struct linetable *l;
1201 if (!STREQ (symtab->filename, s->filename))
1204 ind = find_line_common (l, line, &exact);
1213 if (best == 0 || l->item[ind].line < best)
1215 best = l->item[ind].line;
1227 *index = best_index;
1229 *linetable = best_linetable;
1231 *exact_match = exact;
1235 /* Find the PC value for a given source file and line number.
1236 Returns zero for invalid line number.
1237 The source file is specified with a struct symtab. */
1240 find_line_pc (symtab, line)
1241 struct symtab *symtab;
1244 struct linetable *l;
1249 if (find_line_symtab (symtab, line, &l, &ind, NULL))
1250 return l->item[ind].pc;
1255 /* Find the range of pc values in a line.
1256 Store the starting pc of the line into *STARTPTR
1257 and the ending pc (start of next line) into *ENDPTR.
1258 Returns 1 to indicate success.
1259 Returns 0 if could not find the specified line. */
1262 find_line_pc_range (symtab, thisline, startptr, endptr)
1263 struct symtab *symtab;
1265 CORE_ADDR *startptr, *endptr;
1267 struct linetable *l;
1269 int exact_match; /* did we get an exact linenumber match */
1274 if (find_line_symtab (symtab, thisline, &l, &ind, &exact_match))
1276 *startptr = l->item[ind].pc;
1277 /* If we have not seen an entry for the specified line,
1278 assume that means the specified line has zero bytes. */
1279 if (!exact_match || ind == l->nitems-1)
1280 *endptr = *startptr;
1282 /* Perhaps the following entry is for the following line.
1283 It's worth a try. */
1284 if (ind+1 < l->nitems
1285 && l->item[ind+1].line == thisline + 1)
1286 *endptr = l->item[ind+1].pc;
1288 *endptr = find_line_pc (symtab, thisline+1);
1295 /* Given a line table and a line number, return the index into the line
1296 table for the pc of the nearest line whose number is >= the specified one.
1297 Return -1 if none is found. The value is >= 0 if it is an index.
1299 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
1302 find_line_common (l, lineno, exact_match)
1303 register struct linetable *l;
1304 register int lineno;
1310 /* BEST is the smallest linenumber > LINENO so far seen,
1311 or 0 if none has been seen so far.
1312 BEST_INDEX identifies the item for it. */
1314 int best_index = -1;
1323 for (i = 0; i < len; i++)
1325 register struct linetable_entry *item = &(l->item[i]);
1327 if (item->line == lineno)
1329 /* Return the first (lowest address) entry which matches. */
1334 if (item->line > lineno && (best == 0 || item->line < best))
1341 /* If we got here, we didn't get an exact match. */
1348 find_pc_line_pc_range (pc, startptr, endptr)
1350 CORE_ADDR *startptr, *endptr;
1352 struct symtab_and_line sal;
1353 sal = find_pc_line (pc, 0);
1356 return sal.symtab != 0;
1359 /* If P is of the form "operator[ \t]+..." where `...' is
1360 some legitimate operator text, return a pointer to the
1361 beginning of the substring of the operator text.
1362 Otherwise, return "". */
1364 operator_chars (p, end)
1369 if (strncmp (p, "operator", 8))
1373 /* Don't get faked out by `operator' being part of a longer
1375 if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
1378 /* Allow some whitespace between `operator' and the operator symbol. */
1379 while (*p == ' ' || *p == '\t')
1382 /* Recognize 'operator TYPENAME'. */
1384 if (isalpha(*p) || *p == '_' || *p == '$')
1386 register char *q = p+1;
1387 while (isalnum(*q) || *q == '_' || *q == '$')
1412 if (p[1] == '=' || p[1] == p[0])
1423 error ("`operator ()' must be specified without whitespace in `()'");
1428 error ("`operator ?:' must be specified without whitespace in `?:'");
1433 error ("`operator []' must be specified without whitespace in `[]'");
1437 error ("`operator %s' not supported", p);
1444 /* Recursive helper function for decode_line_1.
1445 * Look for methods named NAME in type T.
1446 * Return number of matches.
1447 * Put matches in SYM_ARR (which better be big enough!).
1448 * These allocations seem to define "big enough":
1449 * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1450 * Note that this function is g++ specific.
1454 find_methods (t, name, sym_arr)
1457 struct symbol **sym_arr;
1461 struct symbol *sym_class;
1462 char *class_name = type_name_no_tag (t);
1463 /* Ignore this class if it doesn't have a name. This is ugly, but
1464 unless we figure out how to get the physname without the name of
1465 the class, then the loop can't do any good. */
1467 && (sym_class = lookup_symbol (class_name,
1468 (struct block *)NULL,
1471 (struct symtab **)NULL)))
1474 /* FIXME: Shouldn't this just be check_stub_type (t)? */
1475 t = SYMBOL_TYPE (sym_class);
1476 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1477 method_counter >= 0;
1481 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
1483 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1484 if (STREQ (name, method_name))
1485 /* Find all the fields with that name. */
1486 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
1491 if (TYPE_FN_FIELD_STUB (f, field_counter))
1492 check_stub_method (t, method_counter, field_counter);
1493 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1494 /* Destructor is handled by caller, dont add it to the list */
1495 if (DESTRUCTOR_PREFIX_P (phys_name))
1498 /* FIXME: Why are we looking this up in the
1499 SYMBOL_BLOCK_VALUE (sym_class)? It is intended as a hook
1500 for nested types? If so, it should probably hook to the
1501 type, not the symbol. mipsread.c is the only symbol
1502 reader which sets the SYMBOL_BLOCK_VALUE for types, and
1503 this is not documented in symtab.h. -26Aug93. */
1505 sym_arr[i1] = lookup_symbol (phys_name,
1506 SYMBOL_BLOCK_VALUE (sym_class),
1509 (struct symtab **) NULL);
1510 if (sym_arr[i1]) i1++;
1513 fputs_filtered("(Cannot find method ", stdout);
1514 fprintf_symbol_filtered (stdout, phys_name,
1515 language_cplus, DMGL_PARAMS);
1516 fputs_filtered(" - possibly inlined.)\n", stdout);
1522 /* Only search baseclasses if there is no match yet, since names in
1523 derived classes override those in baseclasses.
1525 FIXME: The above is not true; it is only true of member functions
1526 if they have the same number of arguments (??? - section 13.1 of the
1527 ARM says the function members are not in the same scope but doesn't
1528 really spell out the rules in a way I understand. In any case, if
1529 the number of arguments differ this is a case in which we can overload
1530 rather than hiding without any problem, and gcc 2.4.5 does overload
1531 rather than hiding in this case). */
1535 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1536 i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
1541 /* Helper function for decode_line_1.
1542 Build a canonical line spec in CANONICAL if it is non-NULL and if
1543 the SAL has a symtab.
1544 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
1545 If SYMNAME is NULL the line number from SAL is used and the canonical
1546 line spec is `filename:linenum'. */
1549 build_canonical_line_spec (sal, symname, canonical)
1550 struct symtab_and_line *sal;
1554 char **canonical_arr;
1555 char *canonical_name;
1557 struct symtab *s = sal->symtab;
1559 if (s == (struct symtab *)NULL
1560 || s->filename == (char *)NULL
1561 || canonical == (char ***)NULL)
1564 canonical_arr = (char **) xmalloc (sizeof (char *));
1565 *canonical = canonical_arr;
1567 filename = s->filename;
1568 if (symname != NULL)
1570 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
1571 sprintf (canonical_name, "%s:%s", filename, symname);
1575 canonical_name = xmalloc (strlen (filename) + 30);
1576 sprintf (canonical_name, "%s:%d", filename, sal->line);
1578 canonical_arr[0] = canonical_name;
1581 /* Parse a string that specifies a line number.
1582 Pass the address of a char * variable; that variable will be
1583 advanced over the characters actually parsed.
1587 LINENUM -- that line number in current file. PC returned is 0.
1588 FILE:LINENUM -- that line in that file. PC returned is 0.
1589 FUNCTION -- line number of openbrace of that function.
1590 PC returned is the start of the function.
1591 VARIABLE -- line number of definition of that variable.
1593 FILE:FUNCTION -- likewise, but prefer functions in that file.
1594 *EXPR -- line in which address EXPR appears.
1596 FUNCTION may be an undebuggable function found in minimal symbol table.
1598 If the argument FUNFIRSTLINE is nonzero, we want the first line
1599 of real code inside a function when a function is specified.
1601 DEFAULT_SYMTAB specifies the file to use if none is specified.
1602 It defaults to current_source_symtab.
1603 DEFAULT_LINE specifies the line number to use for relative
1604 line numbers (that start with signs). Defaults to current_source_line.
1605 If CANONICAL is non-NULL, store an array of strings containing the canonical
1606 line specs there if necessary. Currently overloaded member functions and
1607 line numbers or static functions without a filename yield a canonical
1608 line spec. The array and the line spec strings are allocated on the heap,
1609 it is the callers responsibility to free them.
1611 Note that it is possible to return zero for the symtab
1612 if no file is validly specified. Callers must check that.
1613 Also, the line number returned may be invalid. */
1615 struct symtabs_and_lines
1616 decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
1619 struct symtab *default_symtab;
1623 struct symtabs_and_lines values;
1624 #ifdef HPPA_COMPILER_BUG
1625 /* FIXME: The native HP 9000/700 compiler has a bug which appears
1626 when optimizing this file with target i960-vxworks. I haven't
1627 been able to construct a simple test case. The problem is that
1628 in the second call to SKIP_PROLOGUE below, the compiler somehow
1629 does not realize that the statement val = find_pc_line (...) will
1630 change the values of the fields of val. It extracts the elements
1631 into registers at the top of the block, and does not update the
1632 registers after the call to find_pc_line. You can check this by
1633 inserting a printf at the end of find_pc_line to show what values
1634 it is returning for val.pc and val.end and another printf after
1635 the call to see what values the function actually got (remember,
1636 this is compiling with cc -O, with this patch removed). You can
1637 also examine the assembly listing: search for the second call to
1638 skip_prologue; the LDO statement before the next call to
1639 find_pc_line loads the address of the structure which
1640 find_pc_line will return; if there is a LDW just before the LDO,
1641 which fetches an element of the structure, then the compiler
1644 Setting val to volatile avoids the problem. We must undef
1645 volatile, because the HPPA native compiler does not define
1646 __STDC__, although it does understand volatile, and so volatile
1647 will have been defined away in defs.h. */
1649 volatile struct symtab_and_line val;
1650 #define volatile /*nothing*/
1652 struct symtab_and_line val;
1654 register char *p, *p1;
1656 register struct symtab *s;
1658 register struct symbol *sym;
1659 /* The symtab that SYM was found in. */
1660 struct symtab *sym_symtab;
1662 register CORE_ADDR pc;
1663 register struct minimal_symbol *msymbol;
1665 struct symbol *sym_class;
1668 struct symbol **sym_arr;
1670 char *saved_arg = *argptr;
1671 extern char *gdb_completer_quote_characters;
1673 /* Defaults have defaults. */
1675 if (default_symtab == 0)
1677 default_symtab = current_source_symtab;
1678 default_line = current_source_line;
1681 /* See if arg is *PC */
1683 if (**argptr == '*')
1685 if (**argptr == '*')
1689 pc = parse_and_eval_address_1 (argptr);
1690 values.sals = (struct symtab_and_line *)
1691 xmalloc (sizeof (struct symtab_and_line));
1693 values.sals[0] = find_pc_line (pc, 0);
1694 values.sals[0].pc = pc;
1695 build_canonical_line_spec (values.sals, NULL, canonical);
1699 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
1702 is_quoted = (strchr (gdb_completer_quote_characters, **argptr) != NULL);
1704 for (p = *argptr; *p; p++)
1706 if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
1709 while (p[0] == ' ' || p[0] == '\t') p++;
1711 if ((p[0] == ':') && !is_quoted)
1717 /* Extract the class name. */
1719 while (p != *argptr && p[-1] == ' ') --p;
1720 copy = (char *) alloca (p - *argptr + 1);
1721 memcpy (copy, *argptr, p - *argptr);
1722 copy[p - *argptr] = 0;
1724 /* Discard the class name from the arg. */
1726 while (*p == ' ' || *p == '\t') p++;
1729 sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0,
1730 (struct symtab **)NULL);
1733 ( TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
1734 || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
1736 /* Arg token is not digits => try it as a function name
1737 Find the next token (everything up to end or next whitespace). */
1739 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p !=':') p++;
1740 q = operator_chars (*argptr, &q1);
1745 char *tmp = alloca (q1 - q + 1);
1746 memcpy (tmp, q, q1 - q);
1748 opname = cplus_mangle_opname (tmp, DMGL_ANSI);
1751 warning ("no mangling for \"%s\"", tmp);
1752 cplusplus_hint (saved_arg);
1753 return_to_top_level (RETURN_ERROR);
1755 copy = (char*) alloca (3 + strlen(opname));
1756 sprintf (copy, "__%s", opname);
1761 copy = (char *) alloca (p - *argptr + 1 + (q1 - q));
1762 memcpy (copy, *argptr, p - *argptr);
1763 copy[p - *argptr] = '\0';
1766 /* no line number may be specified */
1767 while (*p == ' ' || *p == '\t') p++;
1771 i1 = 0; /* counter for the symbol array */
1772 t = SYMBOL_TYPE (sym_class);
1773 sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1775 /* Cfront objects don't have fieldlists. */
1776 if (destructor_name_p (copy, t) && TYPE_FN_FIELDLISTS (t) != NULL)
1778 /* destructors are a special case. */
1779 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
1780 int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
1781 /* gcc 1.x puts destructor in last field,
1782 gcc 2.x puts destructor in first field. */
1783 char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
1784 if (!DESTRUCTOR_PREFIX_P (phys_name))
1786 phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
1787 if (!DESTRUCTOR_PREFIX_P (phys_name))
1791 lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
1792 VAR_NAMESPACE, 0, (struct symtab **)NULL);
1793 if (sym_arr[i1]) i1++;
1796 i1 = find_methods (t, copy, sym_arr);
1799 /* There is exactly one field with that name. */
1802 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1804 /* Arg is the name of a function */
1805 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
1808 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1810 values.sals[0] = find_pc_line (pc, 0);
1811 values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
1821 /* There is more than one field with that name
1822 (overloaded). Ask the user which one to use. */
1823 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1829 if (OPNAME_PREFIX_P (copy))
1831 tmp = (char *)alloca (strlen (copy+3) + 9);
1832 strcpy (tmp, "operator ");
1833 strcat (tmp, copy+3);
1838 warning ("the class `%s' does not have destructor defined",
1839 SYMBOL_SOURCE_NAME(sym_class));
1841 warning ("the class %s does not have any method named %s",
1842 SYMBOL_SOURCE_NAME(sym_class), tmp);
1843 cplusplus_hint (saved_arg);
1844 return_to_top_level (RETURN_ERROR);
1849 /* The quotes are important if copy is empty. */
1850 warning ("can't find class, struct, or union named \"%s\"",
1852 cplusplus_hint (saved_arg);
1853 return_to_top_level (RETURN_ERROR);
1859 /* Extract the file name. */
1861 while (p != *argptr && p[-1] == ' ') --p;
1862 copy = (char *) alloca (p - *argptr + 1);
1863 memcpy (copy, *argptr, p - *argptr);
1864 copy[p - *argptr] = 0;
1866 /* Find that file's data. */
1867 s = lookup_symtab (copy);
1870 if (!have_full_symbols () && !have_partial_symbols ())
1871 error (no_symtab_msg);
1872 error ("No source file named %s.", copy);
1875 /* Discard the file name from the arg. */
1877 while (*p == ' ' || *p == '\t') p++;
1881 /* S is specified file's symtab, or 0 if no file specified.
1882 arg no longer contains the file name. */
1884 /* Check whether arg is all digits (and sign) */
1887 if (*p == '-' || *p == '+') p++;
1888 while (*p >= '0' && *p <= '9')
1891 if (p != *argptr && (*p == 0 || *p == ' ' || *p == '\t' || *p == ','))
1893 /* We found a token consisting of all digits -- at least one digit. */
1894 enum sign {none, plus, minus} sign = none;
1896 /* We might need a canonical line spec if no file was specified. */
1897 int need_canonical = (s == 0) ? 1 : 0;
1899 /* This is where we need to make sure that we have good defaults.
1900 We must guarantee that this section of code is never executed
1901 when we are called with just a function name, since
1902 select_source_symtab calls us with such an argument */
1904 if (s == 0 && default_symtab == 0)
1906 select_source_symtab (0);
1907 default_symtab = current_source_symtab;
1908 default_line = current_source_line;
1911 if (**argptr == '+')
1912 sign = plus, (*argptr)++;
1913 else if (**argptr == '-')
1914 sign = minus, (*argptr)++;
1915 val.line = atoi (*argptr);
1922 val.line = default_line + val.line;
1928 val.line = default_line - val.line;
1933 break; /* No need to adjust val.line. */
1936 while (*p == ' ' || *p == '\t') p++;
1942 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1943 values.sals[0] = val;
1946 build_canonical_line_spec (values.sals, NULL, canonical);
1950 /* Arg token is not digits => try it as a variable name
1951 Find the next token (everything up to end or next whitespace). */
1953 p = skip_quoted (*argptr);
1954 if (is_quoted && p[-1] != '\'')
1955 error ("Unmatched single quote.");
1956 copy = (char *) alloca (p - *argptr + 1);
1957 memcpy (copy, *argptr, p - *argptr);
1958 copy[p - *argptr] = '\0';
1959 if ((copy[0] == copy [p - *argptr - 1])
1960 && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
1962 copy [p - *argptr - 1] = '\0';
1965 while (*p == ' ' || *p == '\t') p++;
1968 /* Look up that token as a variable.
1969 If file specified, use that file's per-file block to start with. */
1971 sym = lookup_symbol (copy,
1972 (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
1973 : get_selected_block ()),
1974 VAR_NAMESPACE, 0, &sym_symtab);
1978 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1980 /* Arg is the name of a function */
1981 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
1984 val = find_pc_line (pc, 0);
1985 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1986 /* Convex: no need to suppress code on first line, if any */
1989 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
1990 line is still part of the same function. */
1992 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= val.end
1993 && val.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
1995 /* First pc of next line */
1997 /* Recalculate the line number (might not be N+1). */
1998 val = find_pc_line (pc, 0);
2002 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2003 values.sals[0] = val;
2006 /* I think this is always the same as the line that
2007 we calculate above, but the general principle is
2008 "trust the symbols more than stuff like
2010 if (SYMBOL_LINE (sym) != 0)
2011 values.sals[0].line = SYMBOL_LINE (sym);
2013 /* We might need a canonical line spec if it is a static function. */
2016 struct blockvector *bv = BLOCKVECTOR (sym_symtab);
2017 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
2018 if (lookup_block_symbol (b, copy, VAR_NAMESPACE) != NULL)
2019 build_canonical_line_spec (values.sals, copy, canonical);
2023 else if (SYMBOL_LINE (sym) != 0)
2025 /* We know its line number. */
2026 values.sals = (struct symtab_and_line *)
2027 xmalloc (sizeof (struct symtab_and_line));
2029 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2030 values.sals[0].symtab = sym_symtab;
2031 values.sals[0].line = SYMBOL_LINE (sym);
2035 /* This can happen if it is compiled with a compiler which doesn't
2036 put out line numbers for variables. */
2037 /* FIXME: Shouldn't we just set .line and .symtab to zero and
2038 return? For example, "info line foo" could print the address. */
2039 error ("Line number not known for symbol \"%s\"", copy);
2042 msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
2043 if (msymbol != NULL)
2047 val.pc = SYMBOL_VALUE_ADDRESS (msymbol) + FUNCTION_START_OFFSET;
2049 SKIP_PROLOGUE (val.pc);
2050 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2051 values.sals[0] = val;
2056 if (!have_full_symbols () &&
2057 !have_partial_symbols () && !have_minimal_symbols ())
2058 error (no_symtab_msg);
2060 error ("Function \"%s\" not defined.", copy);
2061 return values; /* for lint */
2064 struct symtabs_and_lines
2065 decode_line_spec (string, funfirstline)
2069 struct symtabs_and_lines sals;
2071 error ("Empty line specification.");
2072 sals = decode_line_1 (&string, funfirstline,
2073 current_source_symtab, current_source_line,
2076 error ("Junk at end of line specification: %s", string);
2080 /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
2081 operate on (ask user if necessary).
2082 If CANONICAL is non-NULL return a corresponding array of mangled names
2083 as canonical line specs there. */
2085 static struct symtabs_and_lines
2086 decode_line_2 (sym_arr, nelts, funfirstline, canonical)
2087 struct symbol *sym_arr[];
2092 struct symtabs_and_lines values, return_values;
2093 register CORE_ADDR pc;
2098 struct cleanup *old_chain;
2099 char **canonical_arr = (char **)NULL;
2101 values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
2102 return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
2103 old_chain = make_cleanup (free, return_values.sals);
2107 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
2108 make_cleanup (free, canonical_arr);
2109 memset (canonical_arr, 0, nelts * sizeof (char *));
2110 *canonical = canonical_arr;
2114 printf("[0] cancel\n[1] all\n");
2117 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
2119 /* Arg is the name of a function */
2120 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i]))
2121 + FUNCTION_START_OFFSET;
2124 values.sals[i] = find_pc_line (pc, 0);
2125 values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
2126 values.sals[i].end : pc;
2127 printf("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
2128 values.sals[i].symtab->filename, values.sals[i].line);
2130 else printf ("?HERE\n");
2134 if ((prompt = getenv ("PS2")) == NULL)
2138 printf("%s ",prompt);
2141 args = command_line_input ((char *) NULL, 0);
2143 if (args == 0 || *args == 0)
2144 error_no_arg ("one or more choice numbers");
2152 while (*arg1 >= '0' && *arg1 <= '9') arg1++;
2153 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
2154 error ("Arguments must be choice numbers.");
2159 error ("cancelled");
2164 for (i = 0; i < nelts; i++)
2166 if (canonical_arr[i] == NULL)
2168 symname = SYMBOL_NAME (sym_arr[i]);
2169 canonical_arr[i] = savestring (symname, strlen (symname));
2173 memcpy (return_values.sals, values.sals,
2174 (nelts * sizeof(struct symtab_and_line)));
2175 return_values.nelts = nelts;
2176 discard_cleanups (old_chain);
2177 return return_values;
2180 if (num > nelts + 2)
2182 printf ("No choice number %d.\n", num);
2187 if (values.sals[num].pc)
2191 symname = SYMBOL_NAME (sym_arr[num]);
2192 make_cleanup (free, symname);
2193 canonical_arr[i] = savestring (symname, strlen (symname));
2195 return_values.sals[i++] = values.sals[num];
2196 values.sals[num].pc = 0;
2200 printf ("duplicate request for %d ignored.\n", num);
2205 while (*args == ' ' || *args == '\t') args++;
2207 return_values.nelts = i;
2208 discard_cleanups (old_chain);
2209 return return_values;
2213 /* Slave routine for sources_info. Force line breaks at ,'s.
2214 NAME is the name to print and *FIRST is nonzero if this is the first
2215 name printed. Set *FIRST to zero. */
2217 output_source_filename (name, first)
2221 /* Table of files printed so far. Since a single source file can
2222 result in several partial symbol tables, we need to avoid printing
2223 it more than once. Note: if some of the psymtabs are read in and
2224 some are not, it gets printed both under "Source files for which
2225 symbols have been read" and "Source files for which symbols will
2226 be read in on demand". I consider this a reasonable way to deal
2227 with the situation. I'm not sure whether this can also happen for
2228 symtabs; it doesn't hurt to check. */
2229 static char **tab = NULL;
2230 /* Allocated size of tab in elements.
2231 Start with one 256-byte block (when using GNU malloc.c).
2232 24 is the malloc overhead when range checking is in effect. */
2233 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2234 /* Current size of tab in elements. */
2235 static int tab_cur_size;
2242 tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
2246 /* Is NAME in tab? */
2247 for (p = tab; p < tab + tab_cur_size; p++)
2248 if (STREQ (*p, name))
2249 /* Yes; don't print it again. */
2251 /* No; add it to tab. */
2252 if (tab_cur_size == tab_alloc_size)
2254 tab_alloc_size *= 2;
2255 tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
2257 tab[tab_cur_size++] = name;
2265 printf_filtered (", ");
2269 fputs_filtered (name, stdout);
2273 sources_info (ignore, from_tty)
2277 register struct symtab *s;
2278 register struct partial_symtab *ps;
2279 register struct objfile *objfile;
2282 if (!have_full_symbols () && !have_partial_symbols ())
2284 error (no_symtab_msg);
2287 printf_filtered ("Source files for which symbols have been read in:\n\n");
2290 ALL_SYMTABS (objfile, s)
2292 output_source_filename (s -> filename, &first);
2294 printf_filtered ("\n\n");
2296 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2299 ALL_PSYMTABS (objfile, ps)
2303 output_source_filename (ps -> filename, &first);
2306 printf_filtered ("\n");
2309 /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
2310 If CLASS is zero, list all symbols except functions, type names, and
2312 If CLASS is 1, list only functions.
2313 If CLASS is 2, list only type names.
2314 If CLASS is 3, list only method names.
2316 BPT is non-zero if we should set a breakpoint at the functions
2320 list_symbols (regexp, class, bpt)
2325 register struct symtab *s;
2326 register struct partial_symtab *ps;
2327 register struct blockvector *bv;
2328 struct blockvector *prev_bv = 0;
2329 register struct block *b;
2331 register struct symbol *sym;
2332 struct partial_symbol *psym;
2333 struct objfile *objfile;
2334 struct minimal_symbol *msymbol;
2336 static char *classnames[]
2337 = {"variable", "function", "type", "method"};
2338 int found_in_file = 0;
2340 static enum minimal_symbol_type types[]
2341 = {mst_data, mst_text, mst_abs, mst_unknown};
2342 static enum minimal_symbol_type types2[]
2343 = {mst_bss, mst_text, mst_abs, mst_unknown};
2344 enum minimal_symbol_type ourtype = types[class];
2345 enum minimal_symbol_type ourtype2 = types2[class];
2349 /* Make sure spacing is right for C++ operators.
2350 This is just a courtesy to make the matching less sensitive
2351 to how many spaces the user leaves between 'operator'
2352 and <TYPENAME> or <OPERATOR>. */
2354 char *opname = operator_chars (regexp, &opend);
2357 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2358 if (isalpha(*opname) || *opname == '_' || *opname == '$')
2360 /* There should 1 space between 'operator' and 'TYPENAME'. */
2361 if (opname[-1] != ' ' || opname[-2] == ' ')
2366 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2367 if (opname[-1] == ' ')
2370 /* If wrong number of spaces, fix it. */
2373 char *tmp = (char*) alloca(opend-opname+10);
2374 sprintf(tmp, "operator%.*s%s", fix, " ", opname);
2379 if (0 != (val = re_comp (regexp)))
2380 error ("Invalid regexp (%s): %s", val, regexp);
2383 /* Search through the partial symtabs *first* for all symbols
2384 matching the regexp. That way we don't have to reproduce all of
2385 the machinery below. */
2387 ALL_PSYMTABS (objfile, ps)
2389 struct partial_symbol *bound, *gbound, *sbound;
2392 if (ps->readin) continue;
2394 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2395 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2398 /* Go through all of the symbols stored in a partial
2399 symtab in one loop. */
2400 psym = objfile->global_psymbols.list + ps->globals_offset;
2405 if (bound == gbound && ps->n_static_syms != 0)
2407 psym = objfile->static_psymbols.list + ps->statics_offset;
2418 /* If it would match (logic taken from loop below)
2419 load the file and go on to the next one */
2420 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
2421 && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
2422 && SYMBOL_CLASS (psym) != LOC_BLOCK)
2423 || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
2424 || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
2425 || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
2427 PSYMTAB_TO_SYMTAB(ps);
2435 /* Here, we search through the minimal symbol tables for functions that
2436 match, and call find_pc_symtab on them to force their symbols to
2437 be read. The symbol will then be found during the scan of symtabs
2438 below. If find_pc_symtab fails, set found_misc so that we will
2439 rescan to print any matching symbols without debug info. */
2443 ALL_MSYMBOLS (objfile, msymbol)
2445 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2446 MSYMBOL_TYPE (msymbol) == ourtype2)
2448 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2450 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2459 /* Printout here so as to get after the "Reading in symbols"
2460 messages which will be generated above. */
2462 printf_filtered (regexp
2463 ? "All %ss matching regular expression \"%s\":\n"
2464 : "All defined %ss:\n",
2468 ALL_SYMTABS (objfile, s)
2471 bv = BLOCKVECTOR (s);
2472 /* Often many files share a blockvector.
2473 Scan each blockvector only once so that
2474 we don't get every symbol many times.
2475 It happens that the first symtab in the list
2476 for any given blockvector is the main file. */
2478 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2480 b = BLOCKVECTOR_BLOCK (bv, i);
2481 /* Skip the sort if this block is always sorted. */
2482 if (!BLOCK_SHOULD_SORT (b))
2483 sort_block_syms (b);
2484 for (j = 0; j < BLOCK_NSYMS (b); j++)
2487 sym = BLOCK_SYM (b, j);
2488 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
2489 && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
2490 && SYMBOL_CLASS (sym) != LOC_BLOCK
2491 && SYMBOL_CLASS (sym) != LOC_CONST)
2492 || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
2493 || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2494 || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
2498 /* Set a breakpoint here, if it's a function */
2501 /* There may be more than one function with the
2502 same name but in different files. In order to
2503 set breakpoints on all of them, we must give
2504 both the file name and the function name to
2507 (char *) alloca (strlen (s->filename)
2508 + strlen (SYMBOL_NAME(sym))
2510 strcpy (string, s->filename);
2511 strcat (string, ":");
2512 strcat (string, SYMBOL_NAME(sym));
2513 break_command (string, 0);
2516 else if (!found_in_file)
2518 fputs_filtered ("\nFile ", stdout);
2519 fputs_filtered (s->filename, stdout);
2520 fputs_filtered (":\n", stdout);
2524 if (class != 2 && i == STATIC_BLOCK)
2525 printf_filtered ("static ");
2527 /* Typedef that is not a C++ class */
2529 && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
2530 c_typedef_print (SYMBOL_TYPE(sym), sym, stdout);
2531 /* variable, func, or typedef-that-is-c++-class */
2532 else if (class < 2 ||
2534 SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
2536 type_print (SYMBOL_TYPE (sym),
2537 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2538 ? "" : SYMBOL_SOURCE_NAME (sym)),
2541 printf_filtered (";\n");
2545 # if 0 /* FIXME, why is this zapped out? */
2547 c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
2549 c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
2551 sprintf (buf, " %s::", type_name_no_tag (t));
2552 cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
2562 /* If there are no eyes, avoid all contact. I mean, if there are
2563 no debug symbols, then print directly from the msymbol_vector. */
2565 if (found_misc || class != 1)
2568 ALL_MSYMBOLS (objfile, msymbol)
2570 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2571 MSYMBOL_TYPE (msymbol) == ourtype2)
2573 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2575 /* Functions: Look up by address. */
2577 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
2579 /* Variables/Absolutes: Look up by name */
2580 if (lookup_symbol (SYMBOL_NAME (msymbol),
2581 (struct block *) NULL, VAR_NAMESPACE,
2582 0, (struct symtab **) NULL) == NULL)
2586 printf_filtered ("\nNon-debugging symbols:\n");
2589 printf_filtered (" %08lx %s\n",
2590 (unsigned long) SYMBOL_VALUE_ADDRESS (msymbol),
2591 SYMBOL_SOURCE_NAME (msymbol));
2601 variables_info (regexp, from_tty)
2605 list_symbols (regexp, 0, 0);
2609 functions_info (regexp, from_tty)
2613 list_symbols (regexp, 1, 0);
2617 types_info (regexp, from_tty)
2621 list_symbols (regexp, 2, 0);
2625 /* Tiemann says: "info methods was never implemented." */
2627 methods_info (regexp)
2630 list_symbols (regexp, 3, 0);
2634 /* Breakpoint all functions matching regular expression. */
2636 rbreak_command (regexp, from_tty)
2640 list_symbols (regexp, 1, 1);
2644 /* Return Nonzero if block a is lexically nested within block b,
2645 or if a and b have the same pc range.
2646 Return zero otherwise. */
2649 struct block *a, *b;
2653 return BLOCK_START (a) >= BLOCK_START (b)
2654 && BLOCK_END (a) <= BLOCK_END (b);
2658 /* Helper routine for make_symbol_completion_list. */
2660 static int return_val_size;
2661 static int return_val_index;
2662 static char **return_val;
2664 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
2666 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
2667 /* Put only the mangled name on the list. */ \
2668 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
2669 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
2670 completion_list_add_name \
2671 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
2673 completion_list_add_name \
2674 (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
2677 /* Test to see if the symbol specified by SYMNAME (which is already
2678 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
2679 characters. If so, add it to the current completion list. */
2682 completion_list_add_name (symname, sym_text, sym_text_len, text, word)
2692 /* clip symbols that cannot match */
2694 if (strncmp (symname, sym_text, sym_text_len) != 0)
2699 /* Clip any symbol names that we've already considered. (This is a
2700 time optimization) */
2702 for (i = 0; i < return_val_index; ++i)
2704 if (STREQ (symname, return_val[i]))
2710 /* We have a match for a completion, so add SYMNAME to the current list
2711 of matches. Note that the name is moved to freshly malloc'd space. */
2715 if (word == sym_text)
2717 new = xmalloc (strlen (symname) + 5);
2718 strcpy (new, symname);
2720 else if (word > sym_text)
2722 /* Return some portion of symname. */
2723 new = xmalloc (strlen (symname) + 5);
2724 strcpy (new, symname + (word - sym_text));
2728 /* Return some of SYM_TEXT plus symname. */
2729 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
2730 strncpy (new, word, sym_text - word);
2731 new[sym_text - word] = '\0';
2732 strcat (new, symname);
2735 if (return_val_index + 3 > return_val_size)
2737 newsize = (return_val_size *= 2) * sizeof (char *);
2738 return_val = (char **) xrealloc ((char *) return_val, newsize);
2740 return_val[return_val_index++] = new;
2741 return_val[return_val_index] = NULL;
2745 /* Return a NULL terminated array of all symbols (regardless of class) which
2746 begin by matching TEXT. If the answer is no symbols, then the return value
2747 is an array which contains only a NULL pointer.
2749 Problem: All of the symbols have to be copied because readline frees them.
2750 I'm not going to worry about this; hopefully there won't be that many. */
2753 make_symbol_completion_list (text, word)
2757 register struct symbol *sym;
2758 register struct symtab *s;
2759 register struct partial_symtab *ps;
2760 register struct minimal_symbol *msymbol;
2761 register struct objfile *objfile;
2762 register struct block *b, *surrounding_static_block = 0;
2764 struct partial_symbol *psym;
2765 /* The symbol we are completing on. Points in same buffer as text. */
2767 /* Length of sym_text. */
2770 /* Now look for the symbol we are supposed to complete on.
2771 FIXME: This should be language-specific. */
2775 char *quote_pos = NULL;
2777 /* First see if this is a quoted string. */
2779 for (p = text; *p != '\0'; ++p)
2781 if (quote_found != '\0')
2783 if (*p == quote_found)
2784 /* Found close quote. */
2786 else if (*p == '\\' && p[1] == quote_found)
2787 /* A backslash followed by the quote character
2788 doesn't end the string. */
2791 else if (*p == '\'' || *p == '"')
2797 if (quote_found == '\'')
2798 /* A string within single quotes can be a symbol, so complete on it. */
2799 sym_text = quote_pos + 1;
2800 else if (quote_found == '"')
2801 /* A double-quoted string is never a symbol, nor does it make sense
2802 to complete it any other way. */
2806 /* It is not a quoted string. Break it based on the characters
2807 which are in symbols. */
2810 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
2819 sym_text_len = strlen (sym_text);
2821 return_val_size = 100;
2822 return_val_index = 0;
2823 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
2824 return_val[0] = NULL;
2826 /* Look through the partial symtabs for all symbols which begin
2827 by matching SYM_TEXT. Add each one that you find to the list. */
2829 ALL_PSYMTABS (objfile, ps)
2831 /* If the psymtab's been read in we'll get it when we search
2832 through the blockvector. */
2833 if (ps->readin) continue;
2835 for (psym = objfile->global_psymbols.list + ps->globals_offset;
2836 psym < (objfile->global_psymbols.list + ps->globals_offset
2837 + ps->n_global_syms);
2840 /* If interrupted, then quit. */
2842 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2845 for (psym = objfile->static_psymbols.list + ps->statics_offset;
2846 psym < (objfile->static_psymbols.list + ps->statics_offset
2847 + ps->n_static_syms);
2851 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2855 /* At this point scan through the misc symbol vectors and add each
2856 symbol you find to the list. Eventually we want to ignore
2857 anything that isn't a text symbol (everything else will be
2858 handled by the psymtab code above). */
2860 ALL_MSYMBOLS (objfile, msymbol)
2863 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
2866 /* Search upwards from currently selected frame (so that we can
2867 complete on local vars. */
2869 for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
2871 if (!BLOCK_SUPERBLOCK (b))
2873 surrounding_static_block = b; /* For elmin of dups */
2876 /* Also catch fields of types defined in this places which match our
2877 text string. Only complete on types visible from current context. */
2879 for (i = 0; i < BLOCK_NSYMS (b); i++)
2881 sym = BLOCK_SYM (b, i);
2882 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2883 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2885 struct type *t = SYMBOL_TYPE (sym);
2886 enum type_code c = TYPE_CODE (t);
2888 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
2890 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
2892 if (TYPE_FIELD_NAME (t, j))
2894 completion_list_add_name (TYPE_FIELD_NAME (t, j),
2895 sym_text, sym_text_len, text, word);
2903 /* Go through the symtabs and check the externs and statics for
2904 symbols which match. */
2906 ALL_SYMTABS (objfile, s)
2909 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
2910 for (i = 0; i < BLOCK_NSYMS (b); i++)
2912 sym = BLOCK_SYM (b, i);
2913 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2917 ALL_SYMTABS (objfile, s)
2920 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
2921 /* Don't do this block twice. */
2922 if (b == surrounding_static_block) continue;
2923 for (i = 0; i < BLOCK_NSYMS (b); i++)
2925 sym = BLOCK_SYM (b, i);
2926 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2930 return (return_val);
2935 /* Add the type of the symbol sym to the type of the current
2936 function whose block we are in (assumed). The type of
2937 this current function is contained in *TYPE.
2939 This basically works as follows: When we find a function
2940 symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
2941 a pointer to its type in the global in_function_type. Every
2942 time we come across a parameter symbol ('p' in its name), then
2943 this procedure adds the name and type of that parameter
2944 to the function type pointed to by *TYPE. (Which should correspond
2945 to in_function_type if it was called correctly).
2947 Note that since we are modifying a type, the result of
2948 lookup_function_type() should be memcpy()ed before calling
2949 this. When not in strict typing mode, the expression
2950 evaluator can choose to ignore this.
2952 Assumption: All of a function's parameter symbols will
2953 appear before another function symbol is found. The parameters
2954 appear in the same order in the argument list as they do in the
2958 add_param_to_type (type,sym)
2962 int num = ++(TYPE_NFIELDS(*type));
2964 if(TYPE_NFIELDS(*type)-1)
2965 TYPE_FIELDS(*type) = (struct field *)
2966 (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
2967 num*sizeof(struct field));
2969 TYPE_FIELDS(*type) = (struct field *)
2970 (*current_objfile->xmalloc) (num*sizeof(struct field));
2972 TYPE_FIELD_BITPOS(*type,num-1) = num-1;
2973 TYPE_FIELD_BITSIZE(*type,num-1) = 0;
2974 TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
2975 TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
2980 _initialize_symtab ()
2982 add_info ("variables", variables_info,
2983 "All global and static variable names, or those matching REGEXP.");
2984 add_info ("functions", functions_info,
2985 "All function names, or those matching REGEXP.");
2987 /* FIXME: This command has at least the following problems:
2988 1. It prints builtin types (in a very strange and confusing fashion).
2989 2. It doesn't print right, e.g. with
2990 typedef struct foo *FOO
2991 type_print prints "FOO" when we want to make it (in this situation)
2992 print "struct foo *".
2993 I also think "ptype" or "whatis" is more likely to be useful (but if
2994 there is much disagreement "info types" can be fixed). */
2995 add_info ("types", types_info,
2996 "All type names, or those matching REGEXP.");
2999 add_info ("methods", methods_info,
3000 "All method names, or those matching REGEXP::REGEXP.\n\
3001 If the class qualifier is omitted, it is assumed to be the current scope.\n\
3002 If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
3005 add_info ("sources", sources_info,
3006 "Source files in the program.");
3008 add_com ("rbreak", no_class, rbreak_command,
3009 "Set a breakpoint for all functions matching REGEXP.");
3011 /* Initialize the one built-in type that isn't language dependent... */
3012 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
3013 "<unknown type>", (struct objfile *) NULL);