1 /* Symbol table lookup for the GNU debugger, GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
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_unfiltered ("Hint: try '%s<TAB> or '%s<ESC-?>\n", name, name);
115 printf_unfiltered ("(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 ps = lookup_partial_symtab (name);
164 error ("Internal: readin %s pst for `%s' found when no symtab found.",
165 ps -> filename, name);
167 s = PSYMTAB_TO_SYMTAB (ps);
172 /* At this point, we have located the psymtab for this file, but
173 the conversion to a symtab has failed. This usually happens
174 when we are looking up an include file. In this case,
175 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
176 been created. So, we need to run through the symtabs again in
177 order to find the file.
178 XXX - This is a crock, and should be fixed inside of the the
179 symbol parsing routines. */
183 /* Lookup the symbol table of a source file named NAME. Try a couple
184 of variations if the first lookup doesn't work. */
190 register struct symtab *s;
193 s = lookup_symtab_1 (name);
197 /* This screws c-exp.y:yylex if there is both a type "tree" and a symtab
200 /* If name not found as specified, see if adding ".c" helps. */
201 /* Why is this? Is it just a user convenience? (If so, it's pretty
202 questionable in the presence of C++, FORTRAN, etc.). It's not in
205 copy = (char *) alloca (strlen (name) + 3);
208 s = lookup_symtab_1 (copy);
212 /* We didn't find anything; die. */
216 /* Lookup the partial symbol table of a source file named NAME.
217 *If* there is no '/' in the name, a match after a '/'
218 in the psymtab filename will also work. */
220 struct partial_symtab *
221 lookup_partial_symtab (name)
224 register struct partial_symtab *pst;
225 register struct objfile *objfile;
227 ALL_PSYMTABS (objfile, pst)
229 if (STREQ (name, pst -> filename))
235 /* Now, search for a matching tail (only if name doesn't have any dirs) */
237 if (!strchr (name, '/'))
238 ALL_PSYMTABS (objfile, pst)
240 char *p = pst -> filename;
241 char *tail = strrchr (p, '/');
253 /* Demangle a GDB method stub type.
254 Note that this function is g++ specific. */
257 gdb_mangle_name (type, i, j)
261 int mangled_name_len;
263 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
264 struct fn_field *method = &f[j];
265 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
266 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
267 char *newname = type_name_no_tag (type);
269 /* Does the form of physname indicate that it is the full mangled name
270 of a constructor (not just the args)? */
271 int is_full_physname_constructor;
274 int is_destructor = DESTRUCTOR_PREFIX_P (physname);
275 /* Need a new type prefix. */
276 char *const_prefix = method->is_const ? "C" : "";
277 char *volatile_prefix = method->is_volatile ? "V" : "";
279 int len = (newname == NULL ? 0 : strlen (newname));
281 is_full_physname_constructor =
282 ((physname[0]=='_' && physname[1]=='_' &&
283 (isdigit(physname[2]) || physname[2]=='Q' || physname[2]=='t'))
284 || (strncmp(physname, "__ct", 4) == 0));
287 is_full_physname_constructor || (newname && STREQ(field_name, newname));
290 is_destructor = (strncmp(physname, "__dt", 4) == 0);
292 #ifndef GCC_MANGLE_BUG
293 if (is_destructor || is_full_physname_constructor)
295 mangled_name = (char*) xmalloc(strlen(physname)+1);
296 strcpy(mangled_name, physname);
302 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
303 if (strcmp(buf, "__") == 0)
308 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
310 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
315 /* Only needed for GNU-mangled names. ANSI-mangled names
316 work with the normal mechanisms. */
317 if (OPNAME_PREFIX_P (field_name))
319 char *opname = cplus_mangle_opname (field_name + 3, 0);
321 error ("No mangling for \"%s\"", field_name);
322 mangled_name_len += strlen (opname);
323 mangled_name = (char *)xmalloc (mangled_name_len);
325 strncpy (mangled_name, field_name, 3);
326 mangled_name[3] = '\0';
327 strcat (mangled_name, opname);
331 mangled_name = (char *)xmalloc (mangled_name_len);
333 mangled_name[0] = '\0';
335 strcpy (mangled_name, field_name);
337 strcat (mangled_name, buf);
338 /* If the class doesn't have a name, i.e. newname NULL, then we just
339 mangle it using 0 for the length of the class. Thus it gets mangled
340 as something starting with `::' rather than `classname::'. */
342 strcat (mangled_name, newname);
352 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
355 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
356 + strlen (buf) + strlen (physname) + 1);
358 /* Only needed for GNU-mangled names. ANSI-mangled names
359 work with the normal mechanisms. */
360 if (OPNAME_PREFIX_P (field_name))
363 opname = cplus_mangle_opname (field_name + 3, 0);
366 error ("No mangling for \"%s\"", field_name);
368 mangled_name_len += strlen (opname);
369 mangled_name = (char *) xmalloc (mangled_name_len);
371 strncpy (mangled_name, field_name, 3);
372 strcpy (mangled_name + 3, opname);
376 mangled_name = (char *) xmalloc (mangled_name_len);
379 mangled_name[0] = '\0';
383 strcpy (mangled_name, field_name);
386 strcat (mangled_name, buf);
389 strcat (mangled_name, physname);
390 return (mangled_name);
394 /* Find which partial symtab on contains PC. Return 0 if none. */
396 struct partial_symtab *
398 register CORE_ADDR pc;
400 register struct partial_symtab *pst;
401 register struct objfile *objfile;
403 ALL_PSYMTABS (objfile, pst)
405 if (pc >= pst->textlow && pc < pst->texthigh)
411 /* Find which partial symbol within a psymtab contains PC. Return 0
412 if none. Check all psymtabs if PSYMTAB is 0. */
413 struct partial_symbol *
414 find_pc_psymbol (psymtab, pc)
415 struct partial_symtab *psymtab;
418 struct partial_symbol *best = NULL, *p;
422 psymtab = find_pc_psymtab (pc);
426 best_pc = psymtab->textlow - 1;
428 /* Search the global symbols as well as the static symbols, so that
429 find_pc_partial_function doesn't use a minimal symbol and thus
430 cache a bad endaddr. */
431 for (p = psymtab->objfile->global_psymbols.list + psymtab->globals_offset;
432 (p - (psymtab->objfile->global_psymbols.list + psymtab->globals_offset)
433 < psymtab->n_global_syms);
435 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
436 && SYMBOL_CLASS (p) == LOC_BLOCK
437 && pc >= SYMBOL_VALUE_ADDRESS (p)
438 && SYMBOL_VALUE_ADDRESS (p) > best_pc)
440 best_pc = SYMBOL_VALUE_ADDRESS (p);
443 for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
444 (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
445 < psymtab->n_static_syms);
447 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
448 && SYMBOL_CLASS (p) == LOC_BLOCK
449 && pc >= SYMBOL_VALUE_ADDRESS (p)
450 && SYMBOL_VALUE_ADDRESS (p) > best_pc)
452 best_pc = SYMBOL_VALUE_ADDRESS (p);
455 if (best_pc == psymtab->textlow - 1)
461 /* Find the definition for a specified symbol name NAME
462 in namespace NAMESPACE, visible from lexical block BLOCK.
463 Returns the struct symbol pointer, or zero if no symbol is found.
464 If SYMTAB is non-NULL, store the symbol table in which the
465 symbol was found there, or NULL if not found.
466 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
467 NAME is a field of the current implied argument `this'. If so set
468 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
469 BLOCK_FOUND is set to the block in which NAME is found (in the case of
470 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
472 /* This function has a bunch of loops in it and it would seem to be
473 attractive to put in some QUIT's (though I'm not really sure
474 whether it can run long enough to be really important). But there
475 are a few calls for which it would appear to be bad news to quit
476 out of here: find_proc_desc in alpha-tdep.c and mips-tdep.c, and
477 nindy_frame_chain_valid in nindy-tdep.c. (Note that there is C++
478 code below which can error(), but that probably doesn't affect
479 these calls since they are looking for a known variable and thus
480 can probably assume it will never hit the C++ code). */
483 lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
485 register const struct block *block;
486 const enum namespace namespace;
487 int *is_a_field_of_this;
488 struct symtab **symtab;
490 register struct symbol *sym;
491 register struct symtab *s = NULL;
492 register struct partial_symtab *ps;
493 struct blockvector *bv;
494 register struct objfile *objfile;
495 register struct block *b;
496 register struct minimal_symbol *msymbol;
498 /* Search specified block and its superiors. */
502 sym = lookup_block_symbol (block, name, namespace);
508 /* Search the list of symtabs for one which contains the
509 address of the start of this block. */
510 ALL_SYMTABS (objfile, s)
512 bv = BLOCKVECTOR (s);
513 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
514 if (BLOCK_START (b) <= BLOCK_START (block)
515 && BLOCK_END (b) > BLOCK_START (block))
524 block = BLOCK_SUPERBLOCK (block);
527 /* FIXME: this code is never executed--block is always NULL at this
528 point. What is it trying to do, anyway? We already should have
529 checked the STATIC_BLOCK above (it is the superblock of top-level
530 blocks). Why is VAR_NAMESPACE special-cased? */
531 /* Don't need to mess with the psymtabs; if we have a block,
532 that file is read in. If we don't, then we deal later with
533 all the psymtab stuff that needs checking. */
534 if (namespace == VAR_NAMESPACE && block != NULL)
537 /* Find the right symtab. */
538 ALL_SYMTABS (objfile, s)
540 bv = BLOCKVECTOR (s);
541 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
542 if (BLOCK_START (b) <= BLOCK_START (block)
543 && BLOCK_END (b) > BLOCK_START (block))
545 sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
558 /* C++: If requested to do so by the caller,
559 check to see if NAME is a field of `this'. */
560 if (is_a_field_of_this)
562 struct value *v = value_of_this (0);
564 *is_a_field_of_this = 0;
565 if (v && check_field (v, name))
567 *is_a_field_of_this = 1;
574 /* Now search all global blocks. Do the symtab's first, then
575 check the psymtab's */
577 ALL_SYMTABS (objfile, s)
579 bv = BLOCKVECTOR (s);
580 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
581 sym = lookup_block_symbol (block, name, namespace);
591 /* Check for the possibility of the symbol being a global function
592 that is stored in one of the minimal symbol tables. Eventually, all
593 global symbols might be resolved in this way. */
595 if (namespace == VAR_NAMESPACE)
597 msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
600 s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
601 /* If S is NULL, there are no debug symbols for this file.
602 Skip this stuff and check for matching static symbols below. */
605 bv = BLOCKVECTOR (s);
606 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
607 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
609 /* We kept static functions in minimal symbol table as well as
610 in static scope. We want to find them in the symbol table. */
612 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
613 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
617 /* sym == 0 if symbol was found in the minimal symbol table
618 but not in the symtab.
619 Return 0 to use the msymbol definition of "foo_".
621 This happens for Fortran "foo_" symbols,
622 which are "foo" in the symtab.
624 This can also happen if "asm" is used to make a
625 regular symbol but not a debugging symbol, e.g.
637 ALL_PSYMTABS (objfile, ps)
639 if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
641 s = PSYMTAB_TO_SYMTAB(ps);
642 bv = BLOCKVECTOR (s);
643 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
644 sym = lookup_block_symbol (block, name, namespace);
646 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
653 /* Now search all per-file blocks.
654 Not strictly correct, but more useful than an error.
655 Do the symtabs first, then check the psymtabs */
657 ALL_SYMTABS (objfile, s)
659 bv = BLOCKVECTOR (s);
660 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
661 sym = lookup_block_symbol (block, name, namespace);
671 ALL_PSYMTABS (objfile, ps)
673 if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
675 s = PSYMTAB_TO_SYMTAB(ps);
676 bv = BLOCKVECTOR (s);
677 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
678 sym = lookup_block_symbol (block, name, namespace);
680 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
687 /* Now search all per-file blocks for static mangled symbols.
688 Do the symtabs first, then check the psymtabs. */
690 if (namespace == VAR_NAMESPACE)
692 ALL_SYMTABS (objfile, s)
694 bv = BLOCKVECTOR (s);
695 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
696 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
706 ALL_PSYMTABS (objfile, ps)
708 if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
710 s = PSYMTAB_TO_SYMTAB(ps);
711 bv = BLOCKVECTOR (s);
712 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
713 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
715 error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
728 /* Look, in partial_symtab PST, for symbol NAME. Check the global
729 symbols if GLOBAL, the static symbols if not */
731 static struct partial_symbol *
732 lookup_partial_symbol (pst, name, global, namespace)
733 struct partial_symtab *pst;
736 enum namespace namespace;
738 struct partial_symbol *start, *psym;
739 struct partial_symbol *top, *bottom, *center;
740 int length = (global ? pst->n_global_syms : pst->n_static_syms);
741 int do_linear_search = 1;
749 pst->objfile->global_psymbols.list + pst->globals_offset :
750 pst->objfile->static_psymbols.list + pst->statics_offset );
752 if (global) /* This means we can use a binary search. */
754 do_linear_search = 0;
756 /* Binary search. This search is guaranteed to end with center
757 pointing at the earliest partial symbol with the correct
758 name. At that point *all* partial symbols with that name
759 will be checked against the correct namespace. */
762 top = start + length - 1;
765 center = bottom + (top - bottom) / 2;
766 assert (center < top);
767 if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
769 do_linear_search = 1;
771 if (STRCMP (SYMBOL_NAME (center), name) >= 0)
780 assert (top == bottom);
781 while (STREQ (SYMBOL_NAME (top), name))
783 if (SYMBOL_NAMESPACE (top) == namespace)
791 /* Can't use a binary search or else we found during the binary search that
792 we should also do a linear search. */
794 if (do_linear_search)
796 for (psym = start; psym < start + length; psym++)
798 if (namespace == SYMBOL_NAMESPACE (psym))
800 if (SYMBOL_MATCHES_NAME (psym, name))
811 /* Find the psymtab containing main(). */
812 /* FIXME: What about languages without main() or specially linked
813 executables that have no main() ? */
815 struct partial_symtab *
818 register struct partial_symtab *pst;
819 register struct objfile *objfile;
821 ALL_PSYMTABS (objfile, pst)
823 if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
831 /* Search BLOCK for symbol NAME in NAMESPACE.
833 Note that if NAME is the demangled form of a C++ symbol, we will fail
834 to find a match during the binary search of the non-encoded names, but
835 for now we don't worry about the slight inefficiency of looking for
836 a match we'll never find, since it will go pretty quick. Once the
837 binary search terminates, we drop through and do a straight linear
838 search on the symbols. Each symbol which is marked as being a C++
839 symbol (language_cplus set) has both the encoded and non-encoded names
840 tested for a match. */
843 lookup_block_symbol (block, name, namespace)
844 register const struct block *block;
846 const enum namespace namespace;
848 register int bot, top, inc;
849 register struct symbol *sym;
850 register struct symbol *sym_found = NULL;
851 register int do_linear_search = 1;
853 /* If the blocks's symbols were sorted, start with a binary search. */
855 if (BLOCK_SHOULD_SORT (block))
857 /* Reset the linear search flag so if the binary search fails, we
858 won't do the linear search once unless we find some reason to
859 do so, such as finding a C++ symbol during the binary search.
860 Note that for C++ modules, ALL the symbols in a block should
861 end up marked as C++ symbols. */
863 do_linear_search = 0;
864 top = BLOCK_NSYMS (block);
867 /* Advance BOT to not far before the first symbol whose name is NAME. */
871 inc = (top - bot + 1);
872 /* No need to keep binary searching for the last few bits worth. */
877 inc = (inc >> 1) + bot;
878 sym = BLOCK_SYM (block, inc);
879 if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
881 do_linear_search = 1;
883 if (SYMBOL_NAME (sym)[0] < name[0])
887 else if (SYMBOL_NAME (sym)[0] > name[0])
891 else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
901 /* Now scan forward until we run out of symbols, find one whose
902 name is greater than NAME, or find one we want. If there is
903 more than one symbol with the right name and namespace, we
904 return the first one; I believe it is now impossible for us
905 to encounter two symbols with the same name and namespace
906 here, because blocks containing argument symbols are no
909 top = BLOCK_NSYMS (block);
912 sym = BLOCK_SYM (block, bot);
913 inc = SYMBOL_NAME (sym)[0] - name[0];
916 inc = STRCMP (SYMBOL_NAME (sym), name);
918 if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
930 /* Here if block isn't sorted, or we fail to find a match during the
931 binary search above. If during the binary search above, we find a
932 symbol which is a C++ symbol, then we have re-enabled the linear
933 search flag which was reset when starting the binary search.
935 This loop is equivalent to the loop above, but hacked greatly for speed.
937 Note that parameter symbols do not always show up last in the
938 list; this loop makes sure to take anything else other than
939 parameter symbols first; it only uses parameter symbols as a
940 last resort. Note that this only takes up extra computation
943 if (do_linear_search)
945 top = BLOCK_NSYMS (block);
949 sym = BLOCK_SYM (block, bot);
950 if (SYMBOL_NAMESPACE (sym) == namespace &&
951 SYMBOL_MATCHES_NAME (sym, name))
954 if (SYMBOL_CLASS (sym) != LOC_ARG &&
955 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
956 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
957 SYMBOL_CLASS (sym) != LOC_REGPARM &&
958 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
959 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
967 return (sym_found); /* Will be NULL if not found. */
971 /* Return the symbol for the function which contains a specified
972 lexical block, described by a struct block BL. */
978 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
979 bl = BLOCK_SUPERBLOCK (bl);
981 return BLOCK_FUNCTION (bl);
984 /* Find the symtab associated with PC. Look through the psymtabs and read in
985 another symtab if necessary. */
989 register CORE_ADDR pc;
991 register struct block *b;
992 struct blockvector *bv;
993 register struct symtab *s = NULL;
994 register struct symtab *best_s = NULL;
995 register struct partial_symtab *ps;
996 register struct objfile *objfile;
999 /* Search all symtabs for the one whose file contains our address, and which
1000 is the smallest of all the ones containing the address. This is designed
1001 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
1002 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
1003 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
1004 This is said to happen for the mips; it might be swifter to create
1005 several symtabs with the same name like xcoff does (I'm not sure). */
1007 ALL_SYMTABS (objfile, s)
1009 bv = BLOCKVECTOR (s);
1010 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1011 if (BLOCK_START (b) <= pc
1012 && BLOCK_END (b) > pc
1014 || BLOCK_END (b) - BLOCK_START (b) < distance))
1016 distance = BLOCK_END (b) - BLOCK_START (b);
1025 ps = find_pc_psymtab (pc);
1029 /* Might want to error() here (in case symtab is corrupt and
1030 will cause a core dump), but maybe we can successfully
1031 continue, so let's not. */
1033 (Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n",
1034 (unsigned long) pc);
1035 s = PSYMTAB_TO_SYMTAB (ps);
1040 /* Find the closest symbol value (of any sort -- function or variable)
1041 for a given address value. Slow but complete. */
1044 find_addr_symbol (addr, symtabp, symaddrp)
1046 struct symtab **symtabp;
1047 CORE_ADDR *symaddrp;
1049 struct symtab *symtab, *best_symtab;
1050 struct objfile *objfile;
1051 register int bot, top;
1052 register struct symbol *sym;
1053 register CORE_ADDR sym_addr;
1054 struct block *block;
1057 /* Info on best symbol seen so far */
1059 register CORE_ADDR best_sym_addr = 0;
1060 struct symbol *best_sym = 0;
1062 /* FIXME -- we should pull in all the psymtabs, too! */
1063 ALL_SYMTABS (objfile, symtab)
1065 /* Search the global and static blocks in this symtab for
1066 the closest symbol-address to the desired address. */
1068 for (blocknum = GLOBAL_BLOCK; blocknum <= STATIC_BLOCK; blocknum++)
1071 block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), blocknum);
1072 top = BLOCK_NSYMS (block);
1073 for (bot = 0; bot < top; bot++)
1075 sym = BLOCK_SYM (block, bot);
1076 switch (SYMBOL_CLASS (sym))
1080 sym_addr = SYMBOL_VALUE_ADDRESS (sym);
1084 sym_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1091 if (sym_addr <= addr)
1092 if (sym_addr > best_sym_addr)
1094 /* Quit if we found an exact match. */
1096 best_sym_addr = sym_addr;
1097 best_symtab = symtab;
1098 if (sym_addr == addr)
1107 *symtabp = best_symtab;
1109 *symaddrp = best_sym_addr;
1114 /* Find the source file and line number for a given PC value.
1115 Return a structure containing a symtab pointer, a line number,
1116 and a pc range for the entire source line.
1117 The value's .pc field is NOT the specified pc.
1118 NOTCURRENT nonzero means, if specified pc is on a line boundary,
1119 use the line that ends there. Otherwise, in that case, the line
1120 that begins there is used. */
1122 /* The big complication here is that a line may start in one file, and end just
1123 before the start of another file. This usually occurs when you #include
1124 code in the middle of a subroutine. To properly find the end of a line's PC
1125 range, we must search all symtabs associated with this compilation unit, and
1126 find the one whose first PC is closer than that of the next line in this
1129 /* If it's worth the effort, we could be using a binary search. */
1131 struct symtab_and_line
1132 find_pc_line (pc, notcurrent)
1137 register struct linetable *l;
1140 register struct linetable_entry *item;
1141 struct symtab_and_line val;
1142 struct blockvector *bv;
1144 /* Info on best line seen so far, and where it starts, and its file. */
1146 struct linetable_entry *best = NULL;
1147 CORE_ADDR best_end = 0;
1148 struct symtab *best_symtab = 0;
1150 /* Store here the first line number
1151 of a file which contains the line at the smallest pc after PC.
1152 If we don't find a line whose range contains PC,
1153 we will use a line one less than this,
1154 with a range from the start of that file to the first line's pc. */
1155 struct linetable_entry *alt = NULL;
1156 struct symtab *alt_symtab = 0;
1158 /* Info on best line seen in this file. */
1160 struct linetable_entry *prev;
1162 /* If this pc is not from the current frame,
1163 it is the address of the end of a call instruction.
1164 Quite likely that is the start of the following statement.
1165 But what we want is the statement containing the instruction.
1166 Fudge the pc to make sure we get that. */
1168 if (notcurrent) pc -= 1;
1170 s = find_pc_symtab (pc);
1180 bv = BLOCKVECTOR (s);
1182 /* Look at all the symtabs that share this blockvector.
1183 They all have the same apriori range, that we found was right;
1184 but they have different line tables. */
1186 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
1188 /* Find the best line in this symtab. */
1195 /* I think len can be zero if the symtab lacks line numbers
1196 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
1197 I'm not sure which, and maybe it depends on the symbol
1203 item = l->item; /* Get first line info */
1205 /* Is this file's first line closer than the first lines of other files?
1206 If so, record this file, and its first line, as best alternate. */
1207 if (item->pc > pc && (!alt || item->pc < alt->pc))
1213 for (i = 0; i < len; i++, item++)
1215 /* Return the last line that did not start after PC. */
1222 /* At this point, prev points at the line whose start addr is <= pc, and
1223 item points at the next line. If we ran off the end of the linetable
1224 (pc >= start of the last line), then prev == item. If pc < start of
1225 the first line, prev will not be set. */
1227 /* Is this file's best line closer than the best in the other files?
1228 If so, record this file, and its best line, as best so far. */
1230 if (prev && (!best || prev->pc > best->pc))
1234 /* If another line is in the linetable, and its PC is closer
1235 than the best_end we currently have, take it as best_end. */
1236 if (i < len && (best_end == 0 || best_end > item->pc))
1237 best_end = item->pc;
1244 { /* If we didn't find any line # info, just
1253 val.symtab = alt_symtab;
1254 val.line = alt->line - 1;
1255 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1261 val.symtab = best_symtab;
1262 val.line = best->line;
1264 if (best_end && (!alt || best_end < alt->pc))
1269 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1274 static int find_line_symtab PARAMS ((struct symtab *, int, struct linetable **,
1277 /* Find line number LINE in any symtab whose name is the same as
1280 If found, return 1, set *LINETABLE to the linetable in which it was
1281 found, set *INDEX to the index in the linetable of the best entry
1282 found, and set *EXACT_MATCH nonzero if the value returned is an
1285 If not found, return 0. */
1288 find_line_symtab (symtab, line, linetable, index, exact_match)
1289 struct symtab *symtab;
1291 struct linetable **linetable;
1297 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
1301 struct linetable *best_linetable;
1303 /* First try looking it up in the given symtab. */
1304 best_linetable = LINETABLE (symtab);
1305 best_index = find_line_common (best_linetable, line, &exact);
1306 if (best_index < 0 || !exact)
1308 /* Didn't find an exact match. So we better keep looking for
1309 another symtab with the same name. In the case of xcoff,
1310 multiple csects for one source file (produced by IBM's FORTRAN
1311 compiler) produce multiple symtabs (this is unavoidable
1312 assuming csects can be at arbitrary places in memory and that
1313 the GLOBAL_BLOCK of a symtab has a begin and end address). */
1315 /* BEST is the smallest linenumber > LINE so far seen,
1316 or 0 if none has been seen so far.
1317 BEST_INDEX and BEST_LINETABLE identify the item for it. */
1320 struct objfile *objfile;
1323 if (best_index >= 0)
1324 best = best_linetable->item[best_index].line;
1328 ALL_SYMTABS (objfile, s)
1330 struct linetable *l;
1333 if (!STREQ (symtab->filename, s->filename))
1336 ind = find_line_common (l, line, &exact);
1345 if (best == 0 || l->item[ind].line < best)
1347 best = l->item[ind].line;
1359 *index = best_index;
1361 *linetable = best_linetable;
1363 *exact_match = exact;
1367 /* Find the PC value for a given source file and line number.
1368 Returns zero for invalid line number.
1369 The source file is specified with a struct symtab. */
1372 find_line_pc (symtab, line)
1373 struct symtab *symtab;
1376 struct linetable *l;
1381 if (find_line_symtab (symtab, line, &l, &ind, NULL))
1382 return l->item[ind].pc;
1387 /* Find the range of pc values in a line.
1388 Store the starting pc of the line into *STARTPTR
1389 and the ending pc (start of next line) into *ENDPTR.
1390 Returns 1 to indicate success.
1391 Returns 0 if could not find the specified line. */
1394 find_line_pc_range (sal, startptr, endptr)
1395 struct symtab_and_line sal;
1396 CORE_ADDR *startptr, *endptr;
1398 CORE_ADDR startaddr;
1399 struct symtab_and_line found_sal;
1404 startaddr = find_line_pc (sal.symtab, sal.line);
1409 /* This whole function is based on address. For example, if line 10 has
1410 two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
1411 "info line *0x123" should say the line goes from 0x100 to 0x200
1412 and "info line *0x355" should say the line goes from 0x300 to 0x400.
1413 This also insures that we never give a range like "starts at 0x134
1414 and ends at 0x12c". */
1416 found_sal = find_pc_line (startaddr, 0);
1417 if (found_sal.line != sal.line)
1419 /* The specified line (sal) has zero bytes. */
1420 *startptr = found_sal.pc;
1421 *endptr = found_sal.pc;
1425 *startptr = found_sal.pc;
1426 *endptr = found_sal.end;
1431 /* Given a line table and a line number, return the index into the line
1432 table for the pc of the nearest line whose number is >= the specified one.
1433 Return -1 if none is found. The value is >= 0 if it is an index.
1435 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
1438 find_line_common (l, lineno, exact_match)
1439 register struct linetable *l;
1440 register int lineno;
1446 /* BEST is the smallest linenumber > LINENO so far seen,
1447 or 0 if none has been seen so far.
1448 BEST_INDEX identifies the item for it. */
1450 int best_index = -1;
1459 for (i = 0; i < len; i++)
1461 register struct linetable_entry *item = &(l->item[i]);
1463 if (item->line == lineno)
1465 /* Return the first (lowest address) entry which matches. */
1470 if (item->line > lineno && (best == 0 || item->line < best))
1477 /* If we got here, we didn't get an exact match. */
1484 find_pc_line_pc_range (pc, startptr, endptr)
1486 CORE_ADDR *startptr, *endptr;
1488 struct symtab_and_line sal;
1489 sal = find_pc_line (pc, 0);
1492 return sal.symtab != 0;
1495 /* If P is of the form "operator[ \t]+..." where `...' is
1496 some legitimate operator text, return a pointer to the
1497 beginning of the substring of the operator text.
1498 Otherwise, return "". */
1500 operator_chars (p, end)
1505 if (strncmp (p, "operator", 8))
1509 /* Don't get faked out by `operator' being part of a longer
1511 if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
1514 /* Allow some whitespace between `operator' and the operator symbol. */
1515 while (*p == ' ' || *p == '\t')
1518 /* Recognize 'operator TYPENAME'. */
1520 if (isalpha(*p) || *p == '_' || *p == '$')
1522 register char *q = p+1;
1523 while (isalnum(*q) || *q == '_' || *q == '$')
1548 if (p[1] == '=' || p[1] == p[0])
1559 error ("`operator ()' must be specified without whitespace in `()'");
1564 error ("`operator ?:' must be specified without whitespace in `?:'");
1569 error ("`operator []' must be specified without whitespace in `[]'");
1573 error ("`operator %s' not supported", p);
1580 /* Recursive helper function for decode_line_1.
1581 * Look for methods named NAME in type T.
1582 * Return number of matches.
1583 * Put matches in SYM_ARR (which better be big enough!).
1584 * These allocations seem to define "big enough":
1585 * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1586 * Note that this function is g++ specific.
1590 find_methods (t, name, sym_arr)
1593 struct symbol **sym_arr;
1597 struct symbol *sym_class;
1598 char *class_name = type_name_no_tag (t);
1599 /* Ignore this class if it doesn't have a name. This is ugly, but
1600 unless we figure out how to get the physname without the name of
1601 the class, then the loop can't do any good. */
1603 && (sym_class = lookup_symbol (class_name,
1604 (struct block *)NULL,
1607 (struct symtab **)NULL)))
1610 /* FIXME: Shouldn't this just be check_stub_type (t)? */
1611 t = SYMBOL_TYPE (sym_class);
1612 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1613 method_counter >= 0;
1617 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
1618 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1619 char dem_opname[64];
1621 if (strncmp(method_name, "__", 2)==0 ||
1622 strncmp(method_name, "op", 2)==0 ||
1623 strncmp(method_name, "type", 4)==0 )
1625 if (cplus_demangle_opname(method_name, dem_opname, DMGL_ANSI))
1626 method_name = dem_opname;
1627 else if (cplus_demangle_opname(method_name, dem_opname, 0))
1628 method_name = dem_opname;
1630 if (STREQ (name, method_name))
1631 /* Find all the fields with that name. */
1632 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
1637 if (TYPE_FN_FIELD_STUB (f, field_counter))
1638 check_stub_method (t, method_counter, field_counter);
1639 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1640 /* Destructor is handled by caller, dont add it to the list */
1641 if (DESTRUCTOR_PREFIX_P (phys_name))
1644 /* FIXME: Why are we looking this up in the
1645 SYMBOL_BLOCK_VALUE (sym_class)? It is intended as a hook
1646 for nested types? If so, it should probably hook to the
1647 type, not the symbol. mipsread.c is the only symbol
1648 reader which sets the SYMBOL_BLOCK_VALUE for types, and
1649 this is not documented in symtab.h. -26Aug93. */
1651 sym_arr[i1] = lookup_symbol (phys_name,
1652 SYMBOL_BLOCK_VALUE (sym_class),
1655 (struct symtab **) NULL);
1656 if (sym_arr[i1]) i1++;
1659 fputs_filtered("(Cannot find method ", gdb_stdout);
1660 fprintf_symbol_filtered (gdb_stdout, phys_name,
1662 DMGL_PARAMS | DMGL_ANSI);
1663 fputs_filtered(" - possibly inlined.)\n", gdb_stdout);
1669 /* Only search baseclasses if there is no match yet, since names in
1670 derived classes override those in baseclasses.
1672 FIXME: The above is not true; it is only true of member functions
1673 if they have the same number of arguments (??? - section 13.1 of the
1674 ARM says the function members are not in the same scope but doesn't
1675 really spell out the rules in a way I understand. In any case, if
1676 the number of arguments differ this is a case in which we can overload
1677 rather than hiding without any problem, and gcc 2.4.5 does overload
1678 rather than hiding in this case). */
1682 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1683 i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
1688 /* Helper function for decode_line_1.
1689 Build a canonical line spec in CANONICAL if it is non-NULL and if
1690 the SAL has a symtab.
1691 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
1692 If SYMNAME is NULL the line number from SAL is used and the canonical
1693 line spec is `filename:linenum'. */
1696 build_canonical_line_spec (sal, symname, canonical)
1697 struct symtab_and_line *sal;
1701 char **canonical_arr;
1702 char *canonical_name;
1704 struct symtab *s = sal->symtab;
1706 if (s == (struct symtab *)NULL
1707 || s->filename == (char *)NULL
1708 || canonical == (char ***)NULL)
1711 canonical_arr = (char **) xmalloc (sizeof (char *));
1712 *canonical = canonical_arr;
1714 filename = s->filename;
1715 if (symname != NULL)
1717 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
1718 sprintf (canonical_name, "%s:%s", filename, symname);
1722 canonical_name = xmalloc (strlen (filename) + 30);
1723 sprintf (canonical_name, "%s:%d", filename, sal->line);
1725 canonical_arr[0] = canonical_name;
1728 /* Parse a string that specifies a line number.
1729 Pass the address of a char * variable; that variable will be
1730 advanced over the characters actually parsed.
1734 LINENUM -- that line number in current file. PC returned is 0.
1735 FILE:LINENUM -- that line in that file. PC returned is 0.
1736 FUNCTION -- line number of openbrace of that function.
1737 PC returned is the start of the function.
1738 VARIABLE -- line number of definition of that variable.
1740 FILE:FUNCTION -- likewise, but prefer functions in that file.
1741 *EXPR -- line in which address EXPR appears.
1743 FUNCTION may be an undebuggable function found in minimal symbol table.
1745 If the argument FUNFIRSTLINE is nonzero, we want the first line
1746 of real code inside a function when a function is specified.
1748 DEFAULT_SYMTAB specifies the file to use if none is specified.
1749 It defaults to current_source_symtab.
1750 DEFAULT_LINE specifies the line number to use for relative
1751 line numbers (that start with signs). Defaults to current_source_line.
1752 If CANONICAL is non-NULL, store an array of strings containing the canonical
1753 line specs there if necessary. Currently overloaded member functions and
1754 line numbers or static functions without a filename yield a canonical
1755 line spec. The array and the line spec strings are allocated on the heap,
1756 it is the callers responsibility to free them.
1758 Note that it is possible to return zero for the symtab
1759 if no file is validly specified. Callers must check that.
1760 Also, the line number returned may be invalid. */
1762 /* We allow single quotes in various places. This is a hideous
1763 kludge, which exists because the completer can't yet deal with the
1764 lack of single quotes. FIXME: write a linespec_completer which we
1765 can use as appropriate instead of make_symbol_completion_list. */
1767 struct symtabs_and_lines
1768 decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
1771 struct symtab *default_symtab;
1775 struct symtabs_and_lines values;
1776 #ifdef HPPA_COMPILER_BUG
1777 /* FIXME: The native HP 9000/700 compiler has a bug which appears
1778 when optimizing this file with target i960-vxworks. I haven't
1779 been able to construct a simple test case. The problem is that
1780 in the second call to SKIP_PROLOGUE below, the compiler somehow
1781 does not realize that the statement val = find_pc_line (...) will
1782 change the values of the fields of val. It extracts the elements
1783 into registers at the top of the block, and does not update the
1784 registers after the call to find_pc_line. You can check this by
1785 inserting a printf at the end of find_pc_line to show what values
1786 it is returning for val.pc and val.end and another printf after
1787 the call to see what values the function actually got (remember,
1788 this is compiling with cc -O, with this patch removed). You can
1789 also examine the assembly listing: search for the second call to
1790 skip_prologue; the LDO statement before the next call to
1791 find_pc_line loads the address of the structure which
1792 find_pc_line will return; if there is a LDW just before the LDO,
1793 which fetches an element of the structure, then the compiler
1796 Setting val to volatile avoids the problem. We must undef
1797 volatile, because the HPPA native compiler does not define
1798 __STDC__, although it does understand volatile, and so volatile
1799 will have been defined away in defs.h. */
1801 volatile struct symtab_and_line val;
1802 #define volatile /*nothing*/
1804 struct symtab_and_line val;
1806 register char *p, *p1;
1808 register struct symtab *s;
1810 register struct symbol *sym;
1811 /* The symtab that SYM was found in. */
1812 struct symtab *sym_symtab;
1814 register CORE_ADDR pc;
1815 register struct minimal_symbol *msymbol;
1817 struct symbol *sym_class;
1819 int is_quoted, has_parens;
1820 struct symbol **sym_arr;
1822 char *saved_arg = *argptr;
1823 extern char *gdb_completer_quote_characters;
1825 /* Defaults have defaults. */
1827 if (default_symtab == 0)
1829 default_symtab = current_source_symtab;
1830 default_line = current_source_line;
1833 /* See if arg is *PC */
1835 if (**argptr == '*')
1837 if (**argptr == '*')
1841 pc = parse_and_eval_address_1 (argptr);
1842 values.sals = (struct symtab_and_line *)
1843 xmalloc (sizeof (struct symtab_and_line));
1845 values.sals[0] = find_pc_line (pc, 0);
1846 values.sals[0].pc = pc;
1847 build_canonical_line_spec (values.sals, NULL, canonical);
1851 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
1854 is_quoted = (strchr(gdb_completer_quote_characters, **argptr) != NULL);
1855 has_parens = (( pp = strchr(*argptr, '(')) != NULL &&
1856 (pp = strchr(pp, ')')) != NULL);
1858 for (p = *argptr; *p; p++)
1862 while(!++p && *p != '>');
1865 /* FIXME: Why warning() and then return_to_top_level?
1866 What's wrong with error()? */
1867 warning("non-matching '<' and '>' in command");
1868 return_to_top_level (RETURN_ERROR);
1871 if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
1874 while (p[0] == ' ' || p[0] == '\t') p++;
1876 if ((p[0] == ':') && !has_parens)
1880 if (is_quoted) *argptr = *argptr+1;
1883 /* Extract the class name. */
1885 while (p != *argptr && p[-1] == ' ') --p;
1886 copy = (char *) alloca (p - *argptr + 1);
1887 memcpy (copy, *argptr, p - *argptr);
1888 copy[p - *argptr] = 0;
1890 /* Discard the class name from the arg. */
1892 while (*p == ' ' || *p == '\t') p++;
1895 sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0,
1896 (struct symtab **)NULL);
1899 ( TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
1900 || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
1902 /* Arg token is not digits => try it as a function name
1903 Find the next token(everything up to end or next blank). */
1904 if (strchr(gdb_completer_quote_characters, **argptr) != NULL)
1906 p = skip_quoted(*argptr);
1907 *argptr = *argptr + 1;
1912 while (*p && *p!=' ' && *p!='\t' && *p!=',' && *p!=':') p++;
1915 q = operator_chars (*argptr, &q1);
1919 char *tmp = alloca (q1 - q + 1);
1920 memcpy (tmp, q, q1 - q);
1922 opname = cplus_mangle_opname (tmp, DMGL_ANSI);
1925 warning ("no mangling for \"%s\"", tmp);
1926 cplusplus_hint (saved_arg);
1927 return_to_top_level (RETURN_ERROR);
1929 copy = (char*) alloca (3 + strlen(opname));
1930 sprintf (copy, "__%s", opname);
1936 copy = (char *) alloca (p - *argptr + 1 );
1937 memcpy (copy, *argptr, p - *argptr);
1938 copy[p - *argptr] = '\0';
1939 if (strchr(gdb_completer_quote_characters, copy[p-*argptr-1]) != NULL)
1940 copy[p - *argptr -1] = '\0';
1943 /* no line number may be specified */
1944 while (*p == ' ' || *p == '\t') p++;
1948 i1 = 0; /* counter for the symbol array */
1949 t = SYMBOL_TYPE (sym_class);
1950 sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1952 /* Cfront objects don't have fieldlists. */
1953 if (destructor_name_p (copy, t) && TYPE_FN_FIELDLISTS (t) != NULL)
1955 /* destructors are a special case. */
1956 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
1957 int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
1958 /* gcc 1.x puts destructor in last field,
1959 gcc 2.x puts destructor in first field. */
1960 char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
1961 if (!DESTRUCTOR_PREFIX_P (phys_name))
1963 phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
1964 if (!DESTRUCTOR_PREFIX_P (phys_name))
1968 lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
1969 VAR_NAMESPACE, 0, (struct symtab **)NULL);
1970 if (sym_arr[i1]) i1++;
1973 i1 = find_methods (t, copy, sym_arr);
1976 /* There is exactly one field with that name. */
1979 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1981 /* Arg is the name of a function */
1982 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
1985 pc += FUNCTION_START_OFFSET;
1988 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1990 values.sals[0] = find_pc_line (pc, 0);
1991 values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
2001 /* There is more than one field with that name
2002 (overloaded). Ask the user which one to use. */
2003 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
2009 if (OPNAME_PREFIX_P (copy))
2011 tmp = (char *)alloca (strlen (copy+3) + 9);
2012 strcpy (tmp, "operator ");
2013 strcat (tmp, copy+3);
2018 warning ("the class `%s' does not have destructor defined",
2019 SYMBOL_SOURCE_NAME(sym_class));
2021 warning ("the class %s does not have any method named %s",
2022 SYMBOL_SOURCE_NAME(sym_class), tmp);
2023 cplusplus_hint (saved_arg);
2024 return_to_top_level (RETURN_ERROR);
2029 /* The quotes are important if copy is empty. */
2030 warning ("can't find class, struct, or union named \"%s\"",
2032 cplusplus_hint (saved_arg);
2033 return_to_top_level (RETURN_ERROR);
2039 /* Extract the file name. */
2041 while (p != *argptr && p[-1] == ' ') --p;
2042 copy = (char *) alloca (p - *argptr + 1);
2043 memcpy (copy, *argptr, p - *argptr);
2044 copy[p - *argptr] = 0;
2046 /* Find that file's data. */
2047 s = lookup_symtab (copy);
2050 if (!have_full_symbols () && !have_partial_symbols ())
2051 error (no_symtab_msg);
2052 error ("No source file named %s.", copy);
2055 /* Discard the file name from the arg. */
2057 while (*p == ' ' || *p == '\t') p++;
2061 /* S is specified file's symtab, or 0 if no file specified.
2062 arg no longer contains the file name. */
2064 /* Check whether arg is all digits (and sign) */
2067 if (*q == '-' || *q == '+') q++;
2068 while (*q >= '0' && *q <= '9')
2071 if (q != *argptr && (*q == 0 || *q == ' ' || *q == '\t' || *q == ','))
2073 /* We found a token consisting of all digits -- at least one digit. */
2074 enum sign {none, plus, minus} sign = none;
2076 /* We might need a canonical line spec if no file was specified. */
2077 int need_canonical = (s == 0) ? 1 : 0;
2079 /* This is where we need to make sure that we have good defaults.
2080 We must guarantee that this section of code is never executed
2081 when we are called with just a function name, since
2082 select_source_symtab calls us with such an argument */
2084 if (s == 0 && default_symtab == 0)
2086 select_source_symtab (0);
2087 default_symtab = current_source_symtab;
2088 default_line = current_source_line;
2091 if (**argptr == '+')
2092 sign = plus, (*argptr)++;
2093 else if (**argptr == '-')
2094 sign = minus, (*argptr)++;
2095 val.line = atoi (*argptr);
2102 val.line = default_line + val.line;
2108 val.line = default_line - val.line;
2113 break; /* No need to adjust val.line. */
2116 while (*q == ' ' || *q == '\t') q++;
2122 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2123 values.sals[0] = val;
2126 build_canonical_line_spec (values.sals, NULL, canonical);
2130 /* Arg token is not digits => try it as a variable name
2131 Find the next token (everything up to end or next whitespace). */
2135 p = skip_quoted (*argptr);
2137 error ("Unmatched single quote.");
2139 else if (has_parens)
2145 p = skip_quoted(*argptr);
2148 copy = (char *) alloca (p - *argptr + 1);
2149 memcpy (copy, *argptr, p - *argptr);
2150 copy[p - *argptr] = '\0';
2151 if ((copy[0] == copy [p - *argptr - 1])
2152 && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
2154 copy [p - *argptr - 1] = '\0';
2157 while (*p == ' ' || *p == '\t') p++;
2160 /* Look up that token as a variable.
2161 If file specified, use that file's per-file block to start with. */
2163 sym = lookup_symbol (copy,
2164 (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
2165 : get_selected_block ()),
2166 VAR_NAMESPACE, 0, &sym_symtab);
2170 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
2172 /* Arg is the name of a function */
2173 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
2176 pc += FUNCTION_START_OFFSET;
2179 val = find_pc_line (pc, 0);
2180 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
2181 /* Convex: no need to suppress code on first line, if any */
2184 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
2185 line is still part of the same function. */
2187 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= val.end
2188 && val.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
2190 /* First pc of next line */
2192 /* Recalculate the line number (might not be N+1). */
2193 val = find_pc_line (pc, 0);
2197 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2198 values.sals[0] = val;
2201 /* Don't use the SYMBOL_LINE; if used at all it points to
2202 the line containing the parameters or thereabouts, not
2203 the first line of code. */
2205 /* We might need a canonical line spec if it is a static
2209 struct blockvector *bv = BLOCKVECTOR (sym_symtab);
2210 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
2211 if (lookup_block_symbol (b, copy, VAR_NAMESPACE) != NULL)
2212 build_canonical_line_spec (values.sals, copy, canonical);
2216 else if (SYMBOL_LINE (sym) != 0)
2218 /* We know its line number. */
2219 values.sals = (struct symtab_and_line *)
2220 xmalloc (sizeof (struct symtab_and_line));
2222 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2223 values.sals[0].symtab = sym_symtab;
2224 values.sals[0].line = SYMBOL_LINE (sym);
2228 /* This can happen if it is compiled with a compiler which doesn't
2229 put out line numbers for variables. */
2230 /* FIXME: Shouldn't we just set .line and .symtab to zero and
2231 return? For example, "info line foo" could print the address. */
2232 error ("Line number not known for symbol \"%s\"", copy);
2235 msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
2236 if (msymbol != NULL)
2240 val.pc = SYMBOL_VALUE_ADDRESS (msymbol);
2243 val.pc += FUNCTION_START_OFFSET;
2244 SKIP_PROLOGUE (val.pc);
2246 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2247 values.sals[0] = val;
2252 if (!have_full_symbols () &&
2253 !have_partial_symbols () && !have_minimal_symbols ())
2254 error (no_symtab_msg);
2256 error ("Function \"%s\" not defined.", copy);
2257 return values; /* for lint */
2260 struct symtabs_and_lines
2261 decode_line_spec (string, funfirstline)
2265 struct symtabs_and_lines sals;
2267 error ("Empty line specification.");
2268 sals = decode_line_1 (&string, funfirstline,
2269 current_source_symtab, current_source_line,
2272 error ("Junk at end of line specification: %s", string);
2276 /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
2277 operate on (ask user if necessary).
2278 If CANONICAL is non-NULL return a corresponding array of mangled names
2279 as canonical line specs there. */
2281 static struct symtabs_and_lines
2282 decode_line_2 (sym_arr, nelts, funfirstline, canonical)
2283 struct symbol *sym_arr[];
2288 struct symtabs_and_lines values, return_values;
2289 register CORE_ADDR pc;
2294 struct cleanup *old_chain;
2295 char **canonical_arr = (char **)NULL;
2297 values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
2298 return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
2299 old_chain = make_cleanup (free, return_values.sals);
2303 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
2304 make_cleanup (free, canonical_arr);
2305 memset (canonical_arr, 0, nelts * sizeof (char *));
2306 *canonical = canonical_arr;
2310 printf_unfiltered("[0] cancel\n[1] all\n");
2313 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
2315 /* Arg is the name of a function */
2316 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i]));
2319 pc += FUNCTION_START_OFFSET;
2322 values.sals[i] = find_pc_line (pc, 0);
2323 values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
2324 values.sals[i].end : pc;
2325 printf_unfiltered("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
2326 values.sals[i].symtab->filename, values.sals[i].line);
2328 else printf_unfiltered ("?HERE\n");
2332 if ((prompt = getenv ("PS2")) == NULL)
2336 printf_unfiltered("%s ",prompt);
2337 gdb_flush(gdb_stdout);
2339 args = command_line_input ((char *) NULL, 0);
2341 if (args == 0 || *args == 0)
2342 error_no_arg ("one or more choice numbers");
2350 while (*arg1 >= '0' && *arg1 <= '9') arg1++;
2351 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
2352 error ("Arguments must be choice numbers.");
2357 error ("cancelled");
2362 for (i = 0; i < nelts; i++)
2364 if (canonical_arr[i] == NULL)
2366 symname = SYMBOL_NAME (sym_arr[i]);
2367 canonical_arr[i] = savestring (symname, strlen (symname));
2371 memcpy (return_values.sals, values.sals,
2372 (nelts * sizeof(struct symtab_and_line)));
2373 return_values.nelts = nelts;
2374 discard_cleanups (old_chain);
2375 return return_values;
2378 if (num > nelts + 2)
2380 printf_unfiltered ("No choice number %d.\n", num);
2385 if (values.sals[num].pc)
2389 symname = SYMBOL_NAME (sym_arr[num]);
2390 make_cleanup (free, symname);
2391 canonical_arr[i] = savestring (symname, strlen (symname));
2393 return_values.sals[i++] = values.sals[num];
2394 values.sals[num].pc = 0;
2398 printf_unfiltered ("duplicate request for %d ignored.\n", num);
2403 while (*args == ' ' || *args == '\t') args++;
2405 return_values.nelts = i;
2406 discard_cleanups (old_chain);
2407 return return_values;
2411 /* Slave routine for sources_info. Force line breaks at ,'s.
2412 NAME is the name to print and *FIRST is nonzero if this is the first
2413 name printed. Set *FIRST to zero. */
2415 output_source_filename (name, first)
2419 /* Table of files printed so far. Since a single source file can
2420 result in several partial symbol tables, we need to avoid printing
2421 it more than once. Note: if some of the psymtabs are read in and
2422 some are not, it gets printed both under "Source files for which
2423 symbols have been read" and "Source files for which symbols will
2424 be read in on demand". I consider this a reasonable way to deal
2425 with the situation. I'm not sure whether this can also happen for
2426 symtabs; it doesn't hurt to check. */
2427 static char **tab = NULL;
2428 /* Allocated size of tab in elements.
2429 Start with one 256-byte block (when using GNU malloc.c).
2430 24 is the malloc overhead when range checking is in effect. */
2431 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2432 /* Current size of tab in elements. */
2433 static int tab_cur_size;
2440 tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
2444 /* Is NAME in tab? */
2445 for (p = tab; p < tab + tab_cur_size; p++)
2446 if (STREQ (*p, name))
2447 /* Yes; don't print it again. */
2449 /* No; add it to tab. */
2450 if (tab_cur_size == tab_alloc_size)
2452 tab_alloc_size *= 2;
2453 tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
2455 tab[tab_cur_size++] = name;
2463 printf_filtered (", ");
2467 fputs_filtered (name, gdb_stdout);
2471 sources_info (ignore, from_tty)
2475 register struct symtab *s;
2476 register struct partial_symtab *ps;
2477 register struct objfile *objfile;
2480 if (!have_full_symbols () && !have_partial_symbols ())
2482 error (no_symtab_msg);
2485 printf_filtered ("Source files for which symbols have been read in:\n\n");
2488 ALL_SYMTABS (objfile, s)
2490 output_source_filename (s -> filename, &first);
2492 printf_filtered ("\n\n");
2494 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2497 ALL_PSYMTABS (objfile, ps)
2501 output_source_filename (ps -> filename, &first);
2504 printf_filtered ("\n");
2507 /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
2508 If CLASS is zero, list all symbols except functions, type names, and
2510 If CLASS is 1, list only functions.
2511 If CLASS is 2, list only type names.
2512 If CLASS is 3, list only method names.
2514 BPT is non-zero if we should set a breakpoint at the functions
2518 list_symbols (regexp, class, bpt)
2523 register struct symtab *s;
2524 register struct partial_symtab *ps;
2525 register struct blockvector *bv;
2526 struct blockvector *prev_bv = 0;
2527 register struct block *b;
2529 register struct symbol *sym;
2530 struct partial_symbol *psym;
2531 struct objfile *objfile;
2532 struct minimal_symbol *msymbol;
2534 static char *classnames[]
2535 = {"variable", "function", "type", "method"};
2536 int found_in_file = 0;
2538 static enum minimal_symbol_type types[]
2539 = {mst_data, mst_text, mst_abs, mst_unknown};
2540 static enum minimal_symbol_type types2[]
2541 = {mst_bss, mst_text, mst_abs, mst_unknown};
2542 enum minimal_symbol_type ourtype = types[class];
2543 enum minimal_symbol_type ourtype2 = types2[class];
2547 /* Make sure spacing is right for C++ operators.
2548 This is just a courtesy to make the matching less sensitive
2549 to how many spaces the user leaves between 'operator'
2550 and <TYPENAME> or <OPERATOR>. */
2552 char *opname = operator_chars (regexp, &opend);
2555 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2556 if (isalpha(*opname) || *opname == '_' || *opname == '$')
2558 /* There should 1 space between 'operator' and 'TYPENAME'. */
2559 if (opname[-1] != ' ' || opname[-2] == ' ')
2564 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2565 if (opname[-1] == ' ')
2568 /* If wrong number of spaces, fix it. */
2571 char *tmp = (char*) alloca(opend-opname+10);
2572 sprintf(tmp, "operator%.*s%s", fix, " ", opname);
2577 if (0 != (val = re_comp (regexp)))
2578 error ("Invalid regexp (%s): %s", val, regexp);
2581 /* Search through the partial symtabs *first* for all symbols
2582 matching the regexp. That way we don't have to reproduce all of
2583 the machinery below. */
2585 ALL_PSYMTABS (objfile, ps)
2587 struct partial_symbol *bound, *gbound, *sbound;
2590 if (ps->readin) continue;
2592 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2593 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2596 /* Go through all of the symbols stored in a partial
2597 symtab in one loop. */
2598 psym = objfile->global_psymbols.list + ps->globals_offset;
2603 if (bound == gbound && ps->n_static_syms != 0)
2605 psym = objfile->static_psymbols.list + ps->statics_offset;
2616 /* If it would match (logic taken from loop below)
2617 load the file and go on to the next one */
2618 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
2619 && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
2620 && SYMBOL_CLASS (psym) != LOC_BLOCK)
2621 || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
2622 || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
2623 || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
2625 PSYMTAB_TO_SYMTAB(ps);
2633 /* Here, we search through the minimal symbol tables for functions that
2634 match, and call find_pc_symtab on them to force their symbols to
2635 be read. The symbol will then be found during the scan of symtabs
2636 below. If find_pc_symtab fails, set found_misc so that we will
2637 rescan to print any matching symbols without debug info. */
2641 ALL_MSYMBOLS (objfile, msymbol)
2643 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2644 MSYMBOL_TYPE (msymbol) == ourtype2)
2646 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2648 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2657 /* Printout here so as to get after the "Reading in symbols"
2658 messages which will be generated above. */
2660 printf_filtered (regexp
2661 ? "All %ss matching regular expression \"%s\":\n"
2662 : "All defined %ss:\n",
2666 ALL_SYMTABS (objfile, s)
2669 bv = BLOCKVECTOR (s);
2670 /* Often many files share a blockvector.
2671 Scan each blockvector only once so that
2672 we don't get every symbol many times.
2673 It happens that the first symtab in the list
2674 for any given blockvector is the main file. */
2676 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2678 b = BLOCKVECTOR_BLOCK (bv, i);
2679 /* Skip the sort if this block is always sorted. */
2680 if (!BLOCK_SHOULD_SORT (b))
2681 sort_block_syms (b);
2682 for (j = 0; j < BLOCK_NSYMS (b); j++)
2685 sym = BLOCK_SYM (b, j);
2686 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
2687 && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
2688 && SYMBOL_CLASS (sym) != LOC_BLOCK
2689 && SYMBOL_CLASS (sym) != LOC_CONST)
2690 || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
2691 || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2692 || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
2696 /* Set a breakpoint here, if it's a function */
2699 /* There may be more than one function with the
2700 same name but in different files. In order to
2701 set breakpoints on all of them, we must give
2702 both the file name and the function name to
2705 (char *) alloca (strlen (s->filename)
2706 + strlen (SYMBOL_NAME(sym))
2708 strcpy (string, s->filename);
2709 strcat (string, ":");
2710 strcat (string, SYMBOL_NAME(sym));
2711 break_command (string, 0);
2714 else if (!found_in_file)
2716 fputs_filtered ("\nFile ", gdb_stdout);
2717 fputs_filtered (s->filename, gdb_stdout);
2718 fputs_filtered (":\n", gdb_stdout);
2722 if (class != 2 && i == STATIC_BLOCK)
2723 printf_filtered ("static ");
2725 /* Typedef that is not a C++ class */
2727 && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
2728 c_typedef_print (SYMBOL_TYPE(sym), sym, gdb_stdout);
2729 /* variable, func, or typedef-that-is-c++-class */
2730 else if (class < 2 ||
2732 SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
2734 type_print (SYMBOL_TYPE (sym),
2735 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2736 ? "" : SYMBOL_SOURCE_NAME (sym)),
2739 printf_filtered (";\n");
2743 # if 0 /* FIXME, why is this zapped out? */
2745 c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
2747 c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
2749 sprintf (buf, " %s::", type_name_no_tag (t));
2750 cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
2751 buf, name, gdb_stdout);
2760 /* If there are no eyes, avoid all contact. I mean, if there are
2761 no debug symbols, then print directly from the msymbol_vector. */
2763 if (found_misc || class != 1)
2766 ALL_MSYMBOLS (objfile, msymbol)
2768 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2769 MSYMBOL_TYPE (msymbol) == ourtype2)
2771 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2773 /* Functions: Look up by address. */
2775 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
2777 /* Variables/Absolutes: Look up by name */
2778 if (lookup_symbol (SYMBOL_NAME (msymbol),
2779 (struct block *) NULL, VAR_NAMESPACE,
2780 0, (struct symtab **) NULL) == NULL)
2784 printf_filtered ("\nNon-debugging symbols:\n");
2787 printf_filtered (" %08lx %s\n",
2788 (unsigned long) SYMBOL_VALUE_ADDRESS (msymbol),
2789 SYMBOL_SOURCE_NAME (msymbol));
2799 variables_info (regexp, from_tty)
2803 list_symbols (regexp, 0, 0);
2807 functions_info (regexp, from_tty)
2811 list_symbols (regexp, 1, 0);
2815 types_info (regexp, from_tty)
2819 list_symbols (regexp, 2, 0);
2823 /* Tiemann says: "info methods was never implemented." */
2825 methods_info (regexp)
2828 list_symbols (regexp, 3, 0);
2832 /* Breakpoint all functions matching regular expression. */
2834 rbreak_command (regexp, from_tty)
2838 list_symbols (regexp, 1, 1);
2842 /* Return Nonzero if block a is lexically nested within block b,
2843 or if a and b have the same pc range.
2844 Return zero otherwise. */
2847 struct block *a, *b;
2851 return BLOCK_START (a) >= BLOCK_START (b)
2852 && BLOCK_END (a) <= BLOCK_END (b);
2856 /* Helper routine for make_symbol_completion_list. */
2858 static int return_val_size;
2859 static int return_val_index;
2860 static char **return_val;
2862 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
2864 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
2865 /* Put only the mangled name on the list. */ \
2866 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
2867 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
2868 completion_list_add_name \
2869 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
2871 completion_list_add_name \
2872 (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
2875 /* Test to see if the symbol specified by SYMNAME (which is already
2876 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
2877 characters. If so, add it to the current completion list. */
2880 completion_list_add_name (symname, sym_text, sym_text_len, text, word)
2890 /* clip symbols that cannot match */
2892 if (strncmp (symname, sym_text, sym_text_len) != 0)
2897 /* Clip any symbol names that we've already considered. (This is a
2898 time optimization) */
2900 for (i = 0; i < return_val_index; ++i)
2902 if (STREQ (symname, return_val[i]))
2908 /* We have a match for a completion, so add SYMNAME to the current list
2909 of matches. Note that the name is moved to freshly malloc'd space. */
2913 if (word == sym_text)
2915 new = xmalloc (strlen (symname) + 5);
2916 strcpy (new, symname);
2918 else if (word > sym_text)
2920 /* Return some portion of symname. */
2921 new = xmalloc (strlen (symname) + 5);
2922 strcpy (new, symname + (word - sym_text));
2926 /* Return some of SYM_TEXT plus symname. */
2927 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
2928 strncpy (new, word, sym_text - word);
2929 new[sym_text - word] = '\0';
2930 strcat (new, symname);
2933 if (return_val_index + 3 > return_val_size)
2935 newsize = (return_val_size *= 2) * sizeof (char *);
2936 return_val = (char **) xrealloc ((char *) return_val, newsize);
2938 return_val[return_val_index++] = new;
2939 return_val[return_val_index] = NULL;
2943 /* Return a NULL terminated array of all symbols (regardless of class) which
2944 begin by matching TEXT. If the answer is no symbols, then the return value
2945 is an array which contains only a NULL pointer.
2947 Problem: All of the symbols have to be copied because readline frees them.
2948 I'm not going to worry about this; hopefully there won't be that many. */
2951 make_symbol_completion_list (text, word)
2955 register struct symbol *sym;
2956 register struct symtab *s;
2957 register struct partial_symtab *ps;
2958 register struct minimal_symbol *msymbol;
2959 register struct objfile *objfile;
2960 register struct block *b, *surrounding_static_block = 0;
2962 struct partial_symbol *psym;
2963 /* The symbol we are completing on. Points in same buffer as text. */
2965 /* Length of sym_text. */
2968 /* Now look for the symbol we are supposed to complete on.
2969 FIXME: This should be language-specific. */
2973 char *quote_pos = NULL;
2975 /* First see if this is a quoted string. */
2977 for (p = text; *p != '\0'; ++p)
2979 if (quote_found != '\0')
2981 if (*p == quote_found)
2982 /* Found close quote. */
2984 else if (*p == '\\' && p[1] == quote_found)
2985 /* A backslash followed by the quote character
2986 doesn't end the string. */
2989 else if (*p == '\'' || *p == '"')
2995 if (quote_found == '\'')
2996 /* A string within single quotes can be a symbol, so complete on it. */
2997 sym_text = quote_pos + 1;
2998 else if (quote_found == '"')
2999 /* A double-quoted string is never a symbol, nor does it make sense
3000 to complete it any other way. */
3004 /* It is not a quoted string. Break it based on the characters
3005 which are in symbols. */
3008 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3017 sym_text_len = strlen (sym_text);
3019 return_val_size = 100;
3020 return_val_index = 0;
3021 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3022 return_val[0] = NULL;
3024 /* Look through the partial symtabs for all symbols which begin
3025 by matching SYM_TEXT. Add each one that you find to the list. */
3027 ALL_PSYMTABS (objfile, ps)
3029 /* If the psymtab's been read in we'll get it when we search
3030 through the blockvector. */
3031 if (ps->readin) continue;
3033 for (psym = objfile->global_psymbols.list + ps->globals_offset;
3034 psym < (objfile->global_psymbols.list + ps->globals_offset
3035 + ps->n_global_syms);
3038 /* If interrupted, then quit. */
3040 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
3043 for (psym = objfile->static_psymbols.list + ps->statics_offset;
3044 psym < (objfile->static_psymbols.list + ps->statics_offset
3045 + ps->n_static_syms);
3049 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
3053 /* At this point scan through the misc symbol vectors and add each
3054 symbol you find to the list. Eventually we want to ignore
3055 anything that isn't a text symbol (everything else will be
3056 handled by the psymtab code above). */
3058 ALL_MSYMBOLS (objfile, msymbol)
3061 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
3064 /* Search upwards from currently selected frame (so that we can
3065 complete on local vars. */
3067 for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
3069 if (!BLOCK_SUPERBLOCK (b))
3071 surrounding_static_block = b; /* For elmin of dups */
3074 /* Also catch fields of types defined in this places which match our
3075 text string. Only complete on types visible from current context. */
3077 for (i = 0; i < BLOCK_NSYMS (b); i++)
3079 sym = BLOCK_SYM (b, i);
3080 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3081 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
3083 struct type *t = SYMBOL_TYPE (sym);
3084 enum type_code c = TYPE_CODE (t);
3086 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
3088 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
3090 if (TYPE_FIELD_NAME (t, j))
3092 completion_list_add_name (TYPE_FIELD_NAME (t, j),
3093 sym_text, sym_text_len, text, word);
3101 /* Go through the symtabs and check the externs and statics for
3102 symbols which match. */
3104 ALL_SYMTABS (objfile, s)
3107 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3108 for (i = 0; i < BLOCK_NSYMS (b); i++)
3110 sym = BLOCK_SYM (b, i);
3111 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3115 ALL_SYMTABS (objfile, s)
3118 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
3119 /* Don't do this block twice. */
3120 if (b == surrounding_static_block) continue;
3121 for (i = 0; i < BLOCK_NSYMS (b); i++)
3123 sym = BLOCK_SYM (b, i);
3124 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3128 return (return_val);
3133 /* Add the type of the symbol sym to the type of the current
3134 function whose block we are in (assumed). The type of
3135 this current function is contained in *TYPE.
3137 This basically works as follows: When we find a function
3138 symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
3139 a pointer to its type in the global in_function_type. Every
3140 time we come across a parameter symbol ('p' in its name), then
3141 this procedure adds the name and type of that parameter
3142 to the function type pointed to by *TYPE. (Which should correspond
3143 to in_function_type if it was called correctly).
3145 Note that since we are modifying a type, the result of
3146 lookup_function_type() should be memcpy()ed before calling
3147 this. When not in strict typing mode, the expression
3148 evaluator can choose to ignore this.
3150 Assumption: All of a function's parameter symbols will
3151 appear before another function symbol is found. The parameters
3152 appear in the same order in the argument list as they do in the
3156 add_param_to_type (type,sym)
3160 int num = ++(TYPE_NFIELDS(*type));
3162 if(TYPE_NFIELDS(*type)-1)
3163 TYPE_FIELDS(*type) = (struct field *)
3164 (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
3165 num*sizeof(struct field));
3167 TYPE_FIELDS(*type) = (struct field *)
3168 (*current_objfile->xmalloc) (num*sizeof(struct field));
3170 TYPE_FIELD_BITPOS(*type,num-1) = num-1;
3171 TYPE_FIELD_BITSIZE(*type,num-1) = 0;
3172 TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
3173 TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
3178 _initialize_symtab ()
3180 add_info ("variables", variables_info,
3181 "All global and static variable names, or those matching REGEXP.");
3182 add_info ("functions", functions_info,
3183 "All function names, or those matching REGEXP.");
3185 /* FIXME: This command has at least the following problems:
3186 1. It prints builtin types (in a very strange and confusing fashion).
3187 2. It doesn't print right, e.g. with
3188 typedef struct foo *FOO
3189 type_print prints "FOO" when we want to make it (in this situation)
3190 print "struct foo *".
3191 I also think "ptype" or "whatis" is more likely to be useful (but if
3192 there is much disagreement "info types" can be fixed). */
3193 add_info ("types", types_info,
3194 "All type names, or those matching REGEXP.");
3197 add_info ("methods", methods_info,
3198 "All method names, or those matching REGEXP::REGEXP.\n\
3199 If the class qualifier is omitted, it is assumed to be the current scope.\n\
3200 If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
3203 add_info ("sources", sources_info,
3204 "Source files in the program.");
3206 add_com ("rbreak", no_class, rbreak_command,
3207 "Set a breakpoint for all functions matching REGEXP.");
3209 /* Initialize the one built-in type that isn't language dependent... */
3210 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
3211 "<unknown type>", (struct objfile *) NULL);