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 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);
196 /* If name not found as specified, see if adding ".c" helps. */
197 /* Why is this? Is it just a user convenience? (If so, it's pretty
198 questionable in the presence of C++, FORTRAN, etc.). It's not in
201 copy = (char *) alloca (strlen (name) + 3);
204 s = lookup_symtab_1 (copy);
207 /* We didn't find anything; die. */
211 /* Lookup the partial symbol table of a source file named NAME.
212 *If* there is no '/' in the name, a match after a '/'
213 in the psymtab filename will also work. */
215 struct partial_symtab *
216 lookup_partial_symtab (name)
219 register struct partial_symtab *pst;
220 register struct objfile *objfile;
222 ALL_PSYMTABS (objfile, pst)
224 if (STREQ (name, pst -> filename))
230 /* Now, search for a matching tail (only if name doesn't have any dirs) */
232 if (!strchr (name, '/'))
233 ALL_PSYMTABS (objfile, pst)
235 char *p = pst -> filename;
236 char *tail = strrchr (p, '/');
248 /* Demangle a GDB method stub type.
249 Note that this function is g++ specific. */
252 gdb_mangle_name (type, i, j)
256 int mangled_name_len;
258 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
259 struct fn_field *method = &f[j];
260 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
261 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
262 char *newname = type_name_no_tag (type);
264 int is_destructor = DESTRUCTOR_PREFIX_P (physname);
265 /* Need a new type prefix. */
266 char *const_prefix = method->is_const ? "C" : "";
267 char *volatile_prefix = method->is_volatile ? "V" : "";
269 int len = (newname == NULL ? 0 : strlen (newname));
272 is_constructor = newname && STREQ(field_name, newname);
274 is_constructor = (physname[0]=='_' && physname[1]=='_' &&
275 (isdigit(physname[2]) || physname[2]=='Q' || physname[2]=='t'));
277 is_constructor = (strncmp(physname, "__ct", 4) == 0);
279 is_destructor = (strncmp(physname, "__dt", 4) == 0);
281 #ifndef GCC_MANGLE_BUG
284 mangled_name = (char*) xmalloc(strlen(physname)+1);
285 strcpy(mangled_name, physname);
291 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
292 if (strcmp(buf, "__") == 0)
297 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
299 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
304 /* Only needed for GNU-mangled names. ANSI-mangled names
305 work with the normal mechanisms. */
306 if (OPNAME_PREFIX_P (field_name))
308 char *opname = cplus_mangle_opname (field_name + 3, 0);
310 error ("No mangling for \"%s\"", field_name);
311 mangled_name_len += strlen (opname);
312 mangled_name = (char *)xmalloc (mangled_name_len);
314 strncpy (mangled_name, field_name, 3);
315 mangled_name[3] = '\0';
316 strcat (mangled_name, opname);
320 mangled_name = (char *)xmalloc (mangled_name_len);
322 mangled_name[0] = '\0';
324 strcpy (mangled_name, field_name);
326 strcat (mangled_name, buf);
327 /* If the class doesn't have a name, i.e. newname NULL, then we just
328 mangle it using 0 for the length of the class. Thus it gets mangled
329 as something starting with `::' rather than `classname::'. */
331 strcat (mangled_name, newname);
341 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
344 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
345 + strlen (buf) + strlen (physname) + 1);
347 /* Only needed for GNU-mangled names. ANSI-mangled names
348 work with the normal mechanisms. */
349 if (OPNAME_PREFIX_P (field_name))
351 opname = cplus_mangle_opname (field_name + 3, 0);
354 error ("No mangling for \"%s\"", field_name);
356 mangled_name_len += strlen (opname);
357 mangled_name = (char *) xmalloc (mangled_name_len);
359 strncpy (mangled_name, field_name, 3);
360 strcpy (mangled_name + 3, opname);
364 mangled_name = (char *) xmalloc (mangled_name_len);
367 mangled_name[0] = '\0';
371 strcpy (mangled_name, field_name);
374 strcat (mangled_name, buf);
377 strcat (mangled_name, physname);
378 return (mangled_name);
382 /* Find which partial symtab on contains PC. Return 0 if none. */
384 struct partial_symtab *
386 register CORE_ADDR pc;
388 register struct partial_symtab *pst;
389 register struct objfile *objfile;
391 ALL_PSYMTABS (objfile, pst)
393 if (pc >= pst->textlow && pc < pst->texthigh)
399 /* Find which partial symbol within a psymtab contains PC. Return 0
400 if none. Check all psymtabs if PSYMTAB is 0. */
401 struct partial_symbol *
402 find_pc_psymbol (psymtab, pc)
403 struct partial_symtab *psymtab;
406 struct partial_symbol *best = NULL, *p;
410 psymtab = find_pc_psymtab (pc);
414 best_pc = psymtab->textlow - 1;
416 for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
417 (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
418 < psymtab->n_static_syms);
420 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
421 && SYMBOL_CLASS (p) == LOC_BLOCK
422 && pc >= SYMBOL_VALUE_ADDRESS (p)
423 && SYMBOL_VALUE_ADDRESS (p) > best_pc)
425 best_pc = SYMBOL_VALUE_ADDRESS (p);
428 if (best_pc == psymtab->textlow - 1)
434 /* Find the definition for a specified symbol name NAME
435 in namespace NAMESPACE, visible from lexical block BLOCK.
436 Returns the struct symbol pointer, or zero if no symbol is found.
437 If SYMTAB is non-NULL, store the symbol table in which the
438 symbol was found there, or NULL if not found.
439 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
440 NAME is a field of the current implied argument `this'. If so set
441 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
442 BLOCK_FOUND is set to the block in which NAME is found (in the case of
443 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
446 lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
448 register const struct block *block;
449 const enum namespace namespace;
450 int *is_a_field_of_this;
451 struct symtab **symtab;
453 register struct symbol *sym;
454 register struct symtab *s = NULL;
455 register struct partial_symtab *ps;
456 struct blockvector *bv;
457 register struct objfile *objfile;
458 register struct block *b;
459 register struct minimal_symbol *msymbol;
461 /* Search specified block and its superiors. */
465 sym = lookup_block_symbol (block, name, namespace);
471 /* Search the list of symtabs for one which contains the
472 address of the start of this block. */
473 ALL_SYMTABS (objfile, s)
475 bv = BLOCKVECTOR (s);
476 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
477 if (BLOCK_START (b) <= BLOCK_START (block)
478 && BLOCK_END (b) > BLOCK_START (block))
487 block = BLOCK_SUPERBLOCK (block);
490 /* FIXME: this code is never executed--block is always NULL at this
491 point. What is it trying to do, anyway? We already should have
492 checked the STATIC_BLOCK above (it is the superblock of top-level
493 blocks). Why is VAR_NAMESPACE special-cased? */
494 /* Don't need to mess with the psymtabs; if we have a block,
495 that file is read in. If we don't, then we deal later with
496 all the psymtab stuff that needs checking. */
497 if (namespace == VAR_NAMESPACE && block != NULL)
500 /* Find the right symtab. */
501 ALL_SYMTABS (objfile, s)
503 bv = BLOCKVECTOR (s);
504 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
505 if (BLOCK_START (b) <= BLOCK_START (block)
506 && BLOCK_END (b) > BLOCK_START (block))
508 sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
521 /* C++: If requested to do so by the caller,
522 check to see if NAME is a field of `this'. */
523 if (is_a_field_of_this)
525 struct value *v = value_of_this (0);
527 *is_a_field_of_this = 0;
528 if (v && check_field (v, name))
530 *is_a_field_of_this = 1;
537 /* Now search all global blocks. Do the symtab's first, then
538 check the psymtab's */
540 ALL_SYMTABS (objfile, s)
542 bv = BLOCKVECTOR (s);
543 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
544 sym = lookup_block_symbol (block, name, namespace);
554 /* Check for the possibility of the symbol being a global function
555 that is stored in one of the minimal symbol tables. Eventually, all
556 global symbols might be resolved in this way. */
558 if (namespace == VAR_NAMESPACE)
560 msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
563 s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
564 /* If S is NULL, there are no debug symbols for this file.
565 Skip this stuff and check for matching static symbols below. */
568 bv = BLOCKVECTOR (s);
569 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
570 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
572 /* We kept static functions in minimal symbol table as well as
573 in static scope. We want to find them in the symbol table. */
575 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
576 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
580 /* sym == 0 if symbol was found in the minimal symbol table
581 but not in the symtab.
582 Return 0 to use the msymbol definition of "foo_".
584 This happens for Fortran "foo_" symbols,
585 which are "foo" in the symtab.
587 This can also happen if "asm" is used to make a
588 regular symbol but not a debugging symbol, e.g.
600 ALL_PSYMTABS (objfile, ps)
602 if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
604 s = PSYMTAB_TO_SYMTAB(ps);
605 bv = BLOCKVECTOR (s);
606 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
607 sym = lookup_block_symbol (block, name, namespace);
609 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
616 /* Now search all per-file blocks.
617 Not strictly correct, but more useful than an error.
618 Do the symtabs first, then check the psymtabs */
620 ALL_SYMTABS (objfile, s)
622 bv = BLOCKVECTOR (s);
623 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
624 sym = lookup_block_symbol (block, name, namespace);
634 ALL_PSYMTABS (objfile, ps)
636 if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
638 s = PSYMTAB_TO_SYMTAB(ps);
639 bv = BLOCKVECTOR (s);
640 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
641 sym = lookup_block_symbol (block, name, namespace);
643 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
650 /* Now search all per-file blocks for static mangled symbols.
651 Do the symtabs first, then check the psymtabs. */
653 if (namespace == VAR_NAMESPACE)
655 ALL_SYMTABS (objfile, s)
657 bv = BLOCKVECTOR (s);
658 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
659 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
669 ALL_PSYMTABS (objfile, ps)
671 if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
673 s = PSYMTAB_TO_SYMTAB(ps);
674 bv = BLOCKVECTOR (s);
675 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
676 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
678 error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
691 /* Look, in partial_symtab PST, for symbol NAME. Check the global
692 symbols if GLOBAL, the static symbols if not */
694 static struct partial_symbol *
695 lookup_partial_symbol (pst, name, global, namespace)
696 struct partial_symtab *pst;
699 enum namespace namespace;
701 struct partial_symbol *start, *psym;
702 struct partial_symbol *top, *bottom, *center;
703 int length = (global ? pst->n_global_syms : pst->n_static_syms);
704 int do_linear_search = 1;
712 pst->objfile->global_psymbols.list + pst->globals_offset :
713 pst->objfile->static_psymbols.list + pst->statics_offset );
715 if (global) /* This means we can use a binary search. */
717 do_linear_search = 0;
719 /* Binary search. This search is guaranteed to end with center
720 pointing at the earliest partial symbol with the correct
721 name. At that point *all* partial symbols with that name
722 will be checked against the correct namespace. */
725 top = start + length - 1;
728 center = bottom + (top - bottom) / 2;
729 assert (center < top);
730 if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
732 do_linear_search = 1;
734 if (STRCMP (SYMBOL_NAME (center), name) >= 0)
743 assert (top == bottom);
744 while (STREQ (SYMBOL_NAME (top), name))
746 if (SYMBOL_NAMESPACE (top) == namespace)
754 /* Can't use a binary search or else we found during the binary search that
755 we should also do a linear search. */
757 if (do_linear_search)
759 for (psym = start; psym < start + length; psym++)
761 if (namespace == SYMBOL_NAMESPACE (psym))
763 if (SYMBOL_MATCHES_NAME (psym, name))
774 /* Find the psymtab containing main(). */
775 /* FIXME: What about languages without main() or specially linked
776 executables that have no main() ? */
778 struct partial_symtab *
781 register struct partial_symtab *pst;
782 register struct objfile *objfile;
784 ALL_PSYMTABS (objfile, pst)
786 if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
794 /* Search BLOCK for symbol NAME in NAMESPACE.
796 Note that if NAME is the demangled form of a C++ symbol, we will fail
797 to find a match during the binary search of the non-encoded names, but
798 for now we don't worry about the slight inefficiency of looking for
799 a match we'll never find, since it will go pretty quick. Once the
800 binary search terminates, we drop through and do a straight linear
801 search on the symbols. Each symbol which is marked as being a C++
802 symbol (language_cplus set) has both the encoded and non-encoded names
803 tested for a match. */
806 lookup_block_symbol (block, name, namespace)
807 register const struct block *block;
809 const enum namespace namespace;
811 register int bot, top, inc;
812 register struct symbol *sym;
813 register struct symbol *sym_found = NULL;
814 register int do_linear_search = 1;
816 /* If the blocks's symbols were sorted, start with a binary search. */
818 if (BLOCK_SHOULD_SORT (block))
820 /* Reset the linear search flag so if the binary search fails, we
821 won't do the linear search once unless we find some reason to
822 do so, such as finding a C++ symbol during the binary search.
823 Note that for C++ modules, ALL the symbols in a block should
824 end up marked as C++ symbols. */
826 do_linear_search = 0;
827 top = BLOCK_NSYMS (block);
830 /* Advance BOT to not far before the first symbol whose name is NAME. */
834 inc = (top - bot + 1);
835 /* No need to keep binary searching for the last few bits worth. */
840 inc = (inc >> 1) + bot;
841 sym = BLOCK_SYM (block, inc);
842 if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
844 do_linear_search = 1;
846 if (SYMBOL_NAME (sym)[0] < name[0])
850 else if (SYMBOL_NAME (sym)[0] > name[0])
854 else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
864 /* Now scan forward until we run out of symbols, find one whose
865 name is greater than NAME, or find one we want. If there is
866 more than one symbol with the right name and namespace, we
867 return the first one; I believe it is now impossible for us
868 to encounter two symbols with the same name and namespace
869 here, because blocks containing argument symbols are no
872 top = BLOCK_NSYMS (block);
875 sym = BLOCK_SYM (block, bot);
876 inc = SYMBOL_NAME (sym)[0] - name[0];
879 inc = STRCMP (SYMBOL_NAME (sym), name);
881 if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
893 /* Here if block isn't sorted, or we fail to find a match during the
894 binary search above. If during the binary search above, we find a
895 symbol which is a C++ symbol, then we have re-enabled the linear
896 search flag which was reset when starting the binary search.
898 This loop is equivalent to the loop above, but hacked greatly for speed.
900 Note that parameter symbols do not always show up last in the
901 list; this loop makes sure to take anything else other than
902 parameter symbols first; it only uses parameter symbols as a
903 last resort. Note that this only takes up extra computation
906 if (do_linear_search)
908 top = BLOCK_NSYMS (block);
912 sym = BLOCK_SYM (block, bot);
913 if (SYMBOL_NAMESPACE (sym) == namespace &&
914 SYMBOL_MATCHES_NAME (sym, name))
917 if (SYMBOL_CLASS (sym) != LOC_ARG &&
918 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
919 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
920 SYMBOL_CLASS (sym) != LOC_REGPARM &&
921 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
922 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
930 return (sym_found); /* Will be NULL if not found. */
934 /* Return the symbol for the function which contains a specified
935 lexical block, described by a struct block BL. */
941 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
942 bl = BLOCK_SUPERBLOCK (bl);
944 return BLOCK_FUNCTION (bl);
947 /* Find the symtab associated with PC. Look through the psymtabs and read in
948 another symtab if necessary. */
952 register CORE_ADDR pc;
954 register struct block *b;
955 struct blockvector *bv;
956 register struct symtab *s = NULL;
957 register struct symtab *best_s = NULL;
958 register struct partial_symtab *ps;
959 register struct objfile *objfile;
962 /* Search all symtabs for the one whose file contains our address, and which
963 is the smallest of all the ones containing the address. This is designed
964 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
965 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
966 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
967 This is said to happen for the mips; it might be swifter to create
968 several symtabs with the same name like xcoff does (I'm not sure). */
970 ALL_SYMTABS (objfile, s)
972 bv = BLOCKVECTOR (s);
973 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
974 if (BLOCK_START (b) <= pc
975 && BLOCK_END (b) > pc
977 || BLOCK_END (b) - BLOCK_START (b) < distance))
979 distance = BLOCK_END (b) - BLOCK_START (b);
988 ps = find_pc_psymtab (pc);
992 /* Might want to error() here (in case symtab is corrupt and
993 will cause a core dump), but maybe we can successfully
994 continue, so let's not. */
996 (Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n",
998 s = PSYMTAB_TO_SYMTAB (ps);
1003 /* Find the source file and line number for a given PC value.
1004 Return a structure containing a symtab pointer, a line number,
1005 and a pc range for the entire source line.
1006 The value's .pc field is NOT the specified pc.
1007 NOTCURRENT nonzero means, if specified pc is on a line boundary,
1008 use the line that ends there. Otherwise, in that case, the line
1009 that begins there is used. */
1011 /* The big complication here is that a line may start in one file, and end just
1012 before the start of another file. This usually occurs when you #include
1013 code in the middle of a subroutine. To properly find the end of a line's PC
1014 range, we must search all symtabs associated with this compilation unit, and
1015 find the one whose first PC is closer than that of the next line in this
1018 /* If it's worth the effort, we could be using a binary search. */
1020 struct symtab_and_line
1021 find_pc_line (pc, notcurrent)
1026 register struct linetable *l;
1029 register struct linetable_entry *item;
1030 struct symtab_and_line val;
1031 struct blockvector *bv;
1033 /* Info on best line seen so far, and where it starts, and its file. */
1035 struct linetable_entry *best = NULL;
1036 CORE_ADDR best_end = 0;
1037 struct symtab *best_symtab = 0;
1039 /* Store here the first line number
1040 of a file which contains the line at the smallest pc after PC.
1041 If we don't find a line whose range contains PC,
1042 we will use a line one less than this,
1043 with a range from the start of that file to the first line's pc. */
1044 struct linetable_entry *alt = NULL;
1045 struct symtab *alt_symtab = 0;
1047 /* Info on best line seen in this file. */
1049 struct linetable_entry *prev;
1051 /* If this pc is not from the current frame,
1052 it is the address of the end of a call instruction.
1053 Quite likely that is the start of the following statement.
1054 But what we want is the statement containing the instruction.
1055 Fudge the pc to make sure we get that. */
1057 if (notcurrent) pc -= 1;
1059 s = find_pc_symtab (pc);
1069 bv = BLOCKVECTOR (s);
1071 /* Look at all the symtabs that share this blockvector.
1072 They all have the same apriori range, that we found was right;
1073 but they have different line tables. */
1075 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
1077 /* Find the best line in this symtab. */
1084 /* I think len can be zero if the symtab lacks line numbers
1085 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
1086 I'm not sure which, and maybe it depends on the symbol
1092 item = l->item; /* Get first line info */
1094 /* Is this file's first line closer than the first lines of other files?
1095 If so, record this file, and its first line, as best alternate. */
1096 if (item->pc > pc && (!alt || item->pc < alt->pc))
1102 for (i = 0; i < len; i++, item++)
1104 /* Return the last line that did not start after PC. */
1111 /* At this point, prev points at the line whose start addr is <= pc, and
1112 item points at the next line. If we ran off the end of the linetable
1113 (pc >= start of the last line), then prev == item. If pc < start of
1114 the first line, prev will not be set. */
1116 /* Is this file's best line closer than the best in the other files?
1117 If so, record this file, and its best line, as best so far. */
1119 if (prev && (!best || prev->pc > best->pc))
1123 /* If another line is in the linetable, and its PC is closer
1124 than the best_end we currently have, take it as best_end. */
1125 if (i < len && (best_end == 0 || best_end > item->pc))
1126 best_end = item->pc;
1133 { /* If we didn't find any line # info, just
1142 val.symtab = alt_symtab;
1143 val.line = alt->line - 1;
1144 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1150 val.symtab = best_symtab;
1151 val.line = best->line;
1153 if (best_end && (!alt || best_end < alt->pc))
1158 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1163 static int find_line_symtab PARAMS ((struct symtab *, int, struct linetable **,
1166 /* Find line number LINE in any symtab whose name is the same as
1169 If found, return 1, set *LINETABLE to the linetable in which it was
1170 found, set *INDEX to the index in the linetable of the best entry
1171 found, and set *EXACT_MATCH nonzero if the value returned is an
1174 If not found, return 0. */
1177 find_line_symtab (symtab, line, linetable, index, exact_match)
1178 struct symtab *symtab;
1180 struct linetable **linetable;
1186 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
1190 struct linetable *best_linetable;
1192 /* First try looking it up in the given symtab. */
1193 best_linetable = LINETABLE (symtab);
1194 best_index = find_line_common (best_linetable, line, &exact);
1195 if (best_index < 0 || !exact)
1197 /* Didn't find an exact match. So we better keep looking for
1198 another symtab with the same name. In the case of xcoff,
1199 multiple csects for one source file (produced by IBM's FORTRAN
1200 compiler) produce multiple symtabs (this is unavoidable
1201 assuming csects can be at arbitrary places in memory and that
1202 the GLOBAL_BLOCK of a symtab has a begin and end address). */
1204 /* BEST is the smallest linenumber > LINE so far seen,
1205 or 0 if none has been seen so far.
1206 BEST_INDEX and BEST_LINETABLE identify the item for it. */
1209 struct objfile *objfile;
1212 if (best_index >= 0)
1213 best = best_linetable->item[best_index].line;
1217 ALL_SYMTABS (objfile, s)
1219 struct linetable *l;
1222 if (!STREQ (symtab->filename, s->filename))
1225 ind = find_line_common (l, line, &exact);
1234 if (best == 0 || l->item[ind].line < best)
1236 best = l->item[ind].line;
1248 *index = best_index;
1250 *linetable = best_linetable;
1252 *exact_match = exact;
1256 /* Find the PC value for a given source file and line number.
1257 Returns zero for invalid line number.
1258 The source file is specified with a struct symtab. */
1261 find_line_pc (symtab, line)
1262 struct symtab *symtab;
1265 struct linetable *l;
1270 if (find_line_symtab (symtab, line, &l, &ind, NULL))
1271 return l->item[ind].pc;
1276 /* Find the range of pc values in a line.
1277 Store the starting pc of the line into *STARTPTR
1278 and the ending pc (start of next line) into *ENDPTR.
1279 Returns 1 to indicate success.
1280 Returns 0 if could not find the specified line. */
1283 find_line_pc_range (symtab, thisline, startptr, endptr)
1284 struct symtab *symtab;
1286 CORE_ADDR *startptr, *endptr;
1288 struct linetable *l;
1290 int exact_match; /* did we get an exact linenumber match */
1295 if (find_line_symtab (symtab, thisline, &l, &ind, &exact_match))
1297 *startptr = l->item[ind].pc;
1298 /* If we have not seen an entry for the specified line,
1299 assume that means the specified line has zero bytes. */
1300 if (!exact_match || ind == l->nitems-1)
1301 *endptr = *startptr;
1303 /* Perhaps the following entry is for the following line.
1304 It's worth a try. */
1305 if (ind+1 < l->nitems
1306 && l->item[ind+1].line == thisline + 1)
1307 *endptr = l->item[ind+1].pc;
1309 *endptr = find_line_pc (symtab, thisline+1);
1316 /* Given a line table and a line number, return the index into the line
1317 table for the pc of the nearest line whose number is >= the specified one.
1318 Return -1 if none is found. The value is >= 0 if it is an index.
1320 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
1323 find_line_common (l, lineno, exact_match)
1324 register struct linetable *l;
1325 register int lineno;
1331 /* BEST is the smallest linenumber > LINENO so far seen,
1332 or 0 if none has been seen so far.
1333 BEST_INDEX identifies the item for it. */
1335 int best_index = -1;
1344 for (i = 0; i < len; i++)
1346 register struct linetable_entry *item = &(l->item[i]);
1348 if (item->line == lineno)
1350 /* Return the first (lowest address) entry which matches. */
1355 if (item->line > lineno && (best == 0 || item->line < best))
1362 /* If we got here, we didn't get an exact match. */
1369 find_pc_line_pc_range (pc, startptr, endptr)
1371 CORE_ADDR *startptr, *endptr;
1373 struct symtab_and_line sal;
1374 sal = find_pc_line (pc, 0);
1377 return sal.symtab != 0;
1380 /* If P is of the form "operator[ \t]+..." where `...' is
1381 some legitimate operator text, return a pointer to the
1382 beginning of the substring of the operator text.
1383 Otherwise, return "". */
1385 operator_chars (p, end)
1390 if (strncmp (p, "operator", 8))
1394 /* Don't get faked out by `operator' being part of a longer
1396 if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
1399 /* Allow some whitespace between `operator' and the operator symbol. */
1400 while (*p == ' ' || *p == '\t')
1403 /* Recognize 'operator TYPENAME'. */
1405 if (isalpha(*p) || *p == '_' || *p == '$')
1407 register char *q = p+1;
1408 while (isalnum(*q) || *q == '_' || *q == '$')
1433 if (p[1] == '=' || p[1] == p[0])
1444 error ("`operator ()' must be specified without whitespace in `()'");
1449 error ("`operator ?:' must be specified without whitespace in `?:'");
1454 error ("`operator []' must be specified without whitespace in `[]'");
1458 error ("`operator %s' not supported", p);
1465 /* Recursive helper function for decode_line_1.
1466 * Look for methods named NAME in type T.
1467 * Return number of matches.
1468 * Put matches in SYM_ARR (which better be big enough!).
1469 * These allocations seem to define "big enough":
1470 * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1471 * Note that this function is g++ specific.
1475 find_methods (t, name, sym_arr)
1478 struct symbol **sym_arr;
1482 struct symbol *sym_class;
1483 char *class_name = type_name_no_tag (t);
1484 /* Ignore this class if it doesn't have a name. This is ugly, but
1485 unless we figure out how to get the physname without the name of
1486 the class, then the loop can't do any good. */
1488 && (sym_class = lookup_symbol (class_name,
1489 (struct block *)NULL,
1492 (struct symtab **)NULL)))
1495 /* FIXME: Shouldn't this just be check_stub_type (t)? */
1496 t = SYMBOL_TYPE (sym_class);
1497 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1498 method_counter >= 0;
1502 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
1504 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1505 if (STREQ (name, method_name))
1506 /* Find all the fields with that name. */
1507 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
1512 if (TYPE_FN_FIELD_STUB (f, field_counter))
1513 check_stub_method (t, method_counter, field_counter);
1514 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1515 /* Destructor is handled by caller, dont add it to the list */
1516 if (DESTRUCTOR_PREFIX_P (phys_name))
1519 /* FIXME: Why are we looking this up in the
1520 SYMBOL_BLOCK_VALUE (sym_class)? It is intended as a hook
1521 for nested types? If so, it should probably hook to the
1522 type, not the symbol. mipsread.c is the only symbol
1523 reader which sets the SYMBOL_BLOCK_VALUE for types, and
1524 this is not documented in symtab.h. -26Aug93. */
1526 sym_arr[i1] = lookup_symbol (phys_name,
1527 SYMBOL_BLOCK_VALUE (sym_class),
1530 (struct symtab **) NULL);
1531 if (sym_arr[i1]) i1++;
1534 fputs_filtered("(Cannot find method ", stdout);
1535 fprintf_symbol_filtered (stdout, phys_name,
1536 language_cplus, DMGL_PARAMS);
1537 fputs_filtered(" - possibly inlined.)\n", stdout);
1543 /* Only search baseclasses if there is no match yet, since names in
1544 derived classes override those in baseclasses.
1546 FIXME: The above is not true; it is only true of member functions
1547 if they have the same number of arguments (??? - section 13.1 of the
1548 ARM says the function members are not in the same scope but doesn't
1549 really spell out the rules in a way I understand. In any case, if
1550 the number of arguments differ this is a case in which we can overload
1551 rather than hiding without any problem, and gcc 2.4.5 does overload
1552 rather than hiding in this case). */
1556 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1557 i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
1562 /* Helper function for decode_line_1.
1563 Build a canonical line spec in CANONICAL if it is non-NULL and if
1564 the SAL has a symtab.
1565 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
1566 If SYMNAME is NULL the line number from SAL is used and the canonical
1567 line spec is `filename:linenum'. */
1570 build_canonical_line_spec (sal, symname, canonical)
1571 struct symtab_and_line *sal;
1575 char **canonical_arr;
1576 char *canonical_name;
1578 struct symtab *s = sal->symtab;
1580 if (s == (struct symtab *)NULL
1581 || s->filename == (char *)NULL
1582 || canonical == (char ***)NULL)
1585 canonical_arr = (char **) xmalloc (sizeof (char *));
1586 *canonical = canonical_arr;
1588 filename = s->filename;
1589 if (symname != NULL)
1591 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
1592 sprintf (canonical_name, "%s:%s", filename, symname);
1596 canonical_name = xmalloc (strlen (filename) + 30);
1597 sprintf (canonical_name, "%s:%d", filename, sal->line);
1599 canonical_arr[0] = canonical_name;
1602 /* Parse a string that specifies a line number.
1603 Pass the address of a char * variable; that variable will be
1604 advanced over the characters actually parsed.
1608 LINENUM -- that line number in current file. PC returned is 0.
1609 FILE:LINENUM -- that line in that file. PC returned is 0.
1610 FUNCTION -- line number of openbrace of that function.
1611 PC returned is the start of the function.
1612 VARIABLE -- line number of definition of that variable.
1614 FILE:FUNCTION -- likewise, but prefer functions in that file.
1615 *EXPR -- line in which address EXPR appears.
1617 FUNCTION may be an undebuggable function found in minimal symbol table.
1619 If the argument FUNFIRSTLINE is nonzero, we want the first line
1620 of real code inside a function when a function is specified.
1622 DEFAULT_SYMTAB specifies the file to use if none is specified.
1623 It defaults to current_source_symtab.
1624 DEFAULT_LINE specifies the line number to use for relative
1625 line numbers (that start with signs). Defaults to current_source_line.
1626 If CANONICAL is non-NULL, store an array of strings containing the canonical
1627 line specs there if necessary. Currently overloaded member functions and
1628 line numbers or static functions without a filename yield a canonical
1629 line spec. The array and the line spec strings are allocated on the heap,
1630 it is the callers responsibility to free them.
1632 Note that it is possible to return zero for the symtab
1633 if no file is validly specified. Callers must check that.
1634 Also, the line number returned may be invalid. */
1636 struct symtabs_and_lines
1637 decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
1640 struct symtab *default_symtab;
1644 struct symtabs_and_lines values;
1645 #ifdef HPPA_COMPILER_BUG
1646 /* FIXME: The native HP 9000/700 compiler has a bug which appears
1647 when optimizing this file with target i960-vxworks. I haven't
1648 been able to construct a simple test case. The problem is that
1649 in the second call to SKIP_PROLOGUE below, the compiler somehow
1650 does not realize that the statement val = find_pc_line (...) will
1651 change the values of the fields of val. It extracts the elements
1652 into registers at the top of the block, and does not update the
1653 registers after the call to find_pc_line. You can check this by
1654 inserting a printf at the end of find_pc_line to show what values
1655 it is returning for val.pc and val.end and another printf after
1656 the call to see what values the function actually got (remember,
1657 this is compiling with cc -O, with this patch removed). You can
1658 also examine the assembly listing: search for the second call to
1659 skip_prologue; the LDO statement before the next call to
1660 find_pc_line loads the address of the structure which
1661 find_pc_line will return; if there is a LDW just before the LDO,
1662 which fetches an element of the structure, then the compiler
1665 Setting val to volatile avoids the problem. We must undef
1666 volatile, because the HPPA native compiler does not define
1667 __STDC__, although it does understand volatile, and so volatile
1668 will have been defined away in defs.h. */
1670 volatile struct symtab_and_line val;
1671 #define volatile /*nothing*/
1673 struct symtab_and_line val;
1675 register char *p, *p1;
1677 register struct symtab *s;
1679 register struct symbol *sym;
1680 /* The symtab that SYM was found in. */
1681 struct symtab *sym_symtab;
1683 register CORE_ADDR pc;
1684 register struct minimal_symbol *msymbol;
1686 struct symbol *sym_class;
1689 struct symbol **sym_arr;
1691 char *saved_arg = *argptr;
1692 extern char *gdb_completer_quote_characters;
1694 /* Defaults have defaults. */
1696 if (default_symtab == 0)
1698 default_symtab = current_source_symtab;
1699 default_line = current_source_line;
1702 /* See if arg is *PC */
1704 if (**argptr == '*')
1706 if (**argptr == '*')
1710 pc = parse_and_eval_address_1 (argptr);
1711 values.sals = (struct symtab_and_line *)
1712 xmalloc (sizeof (struct symtab_and_line));
1714 values.sals[0] = find_pc_line (pc, 0);
1715 values.sals[0].pc = pc;
1716 build_canonical_line_spec (values.sals, NULL, canonical);
1720 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
1723 is_quoted = (strchr (gdb_completer_quote_characters, **argptr) != NULL);
1725 for (p = *argptr; *p; p++)
1727 if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
1730 while (p[0] == ' ' || p[0] == '\t') p++;
1732 if ((p[0] == ':') && !is_quoted)
1738 /* Extract the class name. */
1740 while (p != *argptr && p[-1] == ' ') --p;
1741 copy = (char *) alloca (p - *argptr + 1);
1742 memcpy (copy, *argptr, p - *argptr);
1743 copy[p - *argptr] = 0;
1745 /* Discard the class name from the arg. */
1747 while (*p == ' ' || *p == '\t') p++;
1750 sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0,
1751 (struct symtab **)NULL);
1754 ( TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
1755 || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
1757 /* Arg token is not digits => try it as a function name
1758 Find the next token (everything up to end or next whitespace). */
1760 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p !=':') p++;
1761 q = operator_chars (*argptr, &q1);
1766 char *tmp = alloca (q1 - q + 1);
1767 memcpy (tmp, q, q1 - q);
1769 opname = cplus_mangle_opname (tmp, DMGL_ANSI);
1772 warning ("no mangling for \"%s\"", tmp);
1773 cplusplus_hint (saved_arg);
1774 return_to_top_level (RETURN_ERROR);
1776 copy = (char*) alloca (3 + strlen(opname));
1777 sprintf (copy, "__%s", opname);
1782 copy = (char *) alloca (p - *argptr + 1 + (q1 - q));
1783 memcpy (copy, *argptr, p - *argptr);
1784 copy[p - *argptr] = '\0';
1787 /* no line number may be specified */
1788 while (*p == ' ' || *p == '\t') p++;
1792 i1 = 0; /* counter for the symbol array */
1793 t = SYMBOL_TYPE (sym_class);
1794 sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1796 /* Cfront objects don't have fieldlists. */
1797 if (destructor_name_p (copy, t) && TYPE_FN_FIELDLISTS (t) != NULL)
1799 /* destructors are a special case. */
1800 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
1801 int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
1802 /* gcc 1.x puts destructor in last field,
1803 gcc 2.x puts destructor in first field. */
1804 char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
1805 if (!DESTRUCTOR_PREFIX_P (phys_name))
1807 phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
1808 if (!DESTRUCTOR_PREFIX_P (phys_name))
1812 lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
1813 VAR_NAMESPACE, 0, (struct symtab **)NULL);
1814 if (sym_arr[i1]) i1++;
1817 i1 = find_methods (t, copy, sym_arr);
1820 /* There is exactly one field with that name. */
1823 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1825 /* Arg is the name of a function */
1826 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
1829 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1831 values.sals[0] = find_pc_line (pc, 0);
1832 values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
1842 /* There is more than one field with that name
1843 (overloaded). Ask the user which one to use. */
1844 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1850 if (OPNAME_PREFIX_P (copy))
1852 tmp = (char *)alloca (strlen (copy+3) + 9);
1853 strcpy (tmp, "operator ");
1854 strcat (tmp, copy+3);
1859 warning ("the class `%s' does not have destructor defined",
1860 SYMBOL_SOURCE_NAME(sym_class));
1862 warning ("the class %s does not have any method named %s",
1863 SYMBOL_SOURCE_NAME(sym_class), tmp);
1864 cplusplus_hint (saved_arg);
1865 return_to_top_level (RETURN_ERROR);
1870 /* The quotes are important if copy is empty. */
1871 warning ("can't find class, struct, or union named \"%s\"",
1873 cplusplus_hint (saved_arg);
1874 return_to_top_level (RETURN_ERROR);
1880 /* Extract the file name. */
1882 while (p != *argptr && p[-1] == ' ') --p;
1883 copy = (char *) alloca (p - *argptr + 1);
1884 memcpy (copy, *argptr, p - *argptr);
1885 copy[p - *argptr] = 0;
1887 /* Find that file's data. */
1888 s = lookup_symtab (copy);
1891 if (!have_full_symbols () && !have_partial_symbols ())
1892 error (no_symtab_msg);
1893 error ("No source file named %s.", copy);
1896 /* Discard the file name from the arg. */
1898 while (*p == ' ' || *p == '\t') p++;
1902 /* S is specified file's symtab, or 0 if no file specified.
1903 arg no longer contains the file name. */
1905 /* Check whether arg is all digits (and sign) */
1908 if (*p == '-' || *p == '+') p++;
1909 while (*p >= '0' && *p <= '9')
1912 if (p != *argptr && (*p == 0 || *p == ' ' || *p == '\t' || *p == ','))
1914 /* We found a token consisting of all digits -- at least one digit. */
1915 enum sign {none, plus, minus} sign = none;
1917 /* We might need a canonical line spec if no file was specified. */
1918 int need_canonical = (s == 0) ? 1 : 0;
1920 /* This is where we need to make sure that we have good defaults.
1921 We must guarantee that this section of code is never executed
1922 when we are called with just a function name, since
1923 select_source_symtab calls us with such an argument */
1925 if (s == 0 && default_symtab == 0)
1927 select_source_symtab (0);
1928 default_symtab = current_source_symtab;
1929 default_line = current_source_line;
1932 if (**argptr == '+')
1933 sign = plus, (*argptr)++;
1934 else if (**argptr == '-')
1935 sign = minus, (*argptr)++;
1936 val.line = atoi (*argptr);
1943 val.line = default_line + val.line;
1949 val.line = default_line - val.line;
1954 break; /* No need to adjust val.line. */
1957 while (*p == ' ' || *p == '\t') p++;
1963 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1964 values.sals[0] = val;
1967 build_canonical_line_spec (values.sals, NULL, canonical);
1971 /* Arg token is not digits => try it as a variable name
1972 Find the next token (everything up to end or next whitespace). */
1974 p = skip_quoted (*argptr);
1975 if (is_quoted && p[-1] != '\'')
1976 error ("Unmatched single quote.");
1977 copy = (char *) alloca (p - *argptr + 1);
1978 memcpy (copy, *argptr, p - *argptr);
1979 copy[p - *argptr] = '\0';
1980 if ((copy[0] == copy [p - *argptr - 1])
1981 && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
1983 copy [p - *argptr - 1] = '\0';
1986 while (*p == ' ' || *p == '\t') p++;
1989 /* Look up that token as a variable.
1990 If file specified, use that file's per-file block to start with. */
1992 sym = lookup_symbol (copy,
1993 (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
1994 : get_selected_block ()),
1995 VAR_NAMESPACE, 0, &sym_symtab);
1999 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
2001 /* Arg is the name of a function */
2002 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
2005 val = find_pc_line (pc, 0);
2006 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
2007 /* Convex: no need to suppress code on first line, if any */
2010 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
2011 line is still part of the same function. */
2013 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= val.end
2014 && val.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
2016 /* First pc of next line */
2018 /* Recalculate the line number (might not be N+1). */
2019 val = find_pc_line (pc, 0);
2023 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2024 values.sals[0] = val;
2027 /* Don't use the SYMBOL_LINE; if used at all it points to
2028 the line containing the parameters or thereabouts, not
2029 the first line of code. */
2031 /* We might need a canonical line spec if it is a static
2035 struct blockvector *bv = BLOCKVECTOR (sym_symtab);
2036 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
2037 if (lookup_block_symbol (b, copy, VAR_NAMESPACE) != NULL)
2038 build_canonical_line_spec (values.sals, copy, canonical);
2042 else if (SYMBOL_LINE (sym) != 0)
2044 /* We know its line number. */
2045 values.sals = (struct symtab_and_line *)
2046 xmalloc (sizeof (struct symtab_and_line));
2048 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2049 values.sals[0].symtab = sym_symtab;
2050 values.sals[0].line = SYMBOL_LINE (sym);
2054 /* This can happen if it is compiled with a compiler which doesn't
2055 put out line numbers for variables. */
2056 /* FIXME: Shouldn't we just set .line and .symtab to zero and
2057 return? For example, "info line foo" could print the address. */
2058 error ("Line number not known for symbol \"%s\"", copy);
2061 msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
2062 if (msymbol != NULL)
2066 val.pc = SYMBOL_VALUE_ADDRESS (msymbol) + FUNCTION_START_OFFSET;
2068 SKIP_PROLOGUE (val.pc);
2069 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2070 values.sals[0] = val;
2075 if (!have_full_symbols () &&
2076 !have_partial_symbols () && !have_minimal_symbols ())
2077 error (no_symtab_msg);
2079 error ("Function \"%s\" not defined.", copy);
2080 return values; /* for lint */
2083 struct symtabs_and_lines
2084 decode_line_spec (string, funfirstline)
2088 struct symtabs_and_lines sals;
2090 error ("Empty line specification.");
2091 sals = decode_line_1 (&string, funfirstline,
2092 current_source_symtab, current_source_line,
2095 error ("Junk at end of line specification: %s", string);
2099 /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
2100 operate on (ask user if necessary).
2101 If CANONICAL is non-NULL return a corresponding array of mangled names
2102 as canonical line specs there. */
2104 static struct symtabs_and_lines
2105 decode_line_2 (sym_arr, nelts, funfirstline, canonical)
2106 struct symbol *sym_arr[];
2111 struct symtabs_and_lines values, return_values;
2112 register CORE_ADDR pc;
2117 struct cleanup *old_chain;
2118 char **canonical_arr = (char **)NULL;
2120 values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
2121 return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
2122 old_chain = make_cleanup (free, return_values.sals);
2126 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
2127 make_cleanup (free, canonical_arr);
2128 memset (canonical_arr, 0, nelts * sizeof (char *));
2129 *canonical = canonical_arr;
2133 printf("[0] cancel\n[1] all\n");
2136 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
2138 /* Arg is the name of a function */
2139 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i]))
2140 + FUNCTION_START_OFFSET;
2143 values.sals[i] = find_pc_line (pc, 0);
2144 values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
2145 values.sals[i].end : pc;
2146 printf("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
2147 values.sals[i].symtab->filename, values.sals[i].line);
2149 else printf ("?HERE\n");
2153 if ((prompt = getenv ("PS2")) == NULL)
2157 printf("%s ",prompt);
2160 args = command_line_input ((char *) NULL, 0);
2162 if (args == 0 || *args == 0)
2163 error_no_arg ("one or more choice numbers");
2171 while (*arg1 >= '0' && *arg1 <= '9') arg1++;
2172 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
2173 error ("Arguments must be choice numbers.");
2178 error ("cancelled");
2183 for (i = 0; i < nelts; i++)
2185 if (canonical_arr[i] == NULL)
2187 symname = SYMBOL_NAME (sym_arr[i]);
2188 canonical_arr[i] = savestring (symname, strlen (symname));
2192 memcpy (return_values.sals, values.sals,
2193 (nelts * sizeof(struct symtab_and_line)));
2194 return_values.nelts = nelts;
2195 discard_cleanups (old_chain);
2196 return return_values;
2199 if (num > nelts + 2)
2201 printf ("No choice number %d.\n", num);
2206 if (values.sals[num].pc)
2210 symname = SYMBOL_NAME (sym_arr[num]);
2211 make_cleanup (free, symname);
2212 canonical_arr[i] = savestring (symname, strlen (symname));
2214 return_values.sals[i++] = values.sals[num];
2215 values.sals[num].pc = 0;
2219 printf ("duplicate request for %d ignored.\n", num);
2224 while (*args == ' ' || *args == '\t') args++;
2226 return_values.nelts = i;
2227 discard_cleanups (old_chain);
2228 return return_values;
2232 /* Slave routine for sources_info. Force line breaks at ,'s.
2233 NAME is the name to print and *FIRST is nonzero if this is the first
2234 name printed. Set *FIRST to zero. */
2236 output_source_filename (name, first)
2240 /* Table of files printed so far. Since a single source file can
2241 result in several partial symbol tables, we need to avoid printing
2242 it more than once. Note: if some of the psymtabs are read in and
2243 some are not, it gets printed both under "Source files for which
2244 symbols have been read" and "Source files for which symbols will
2245 be read in on demand". I consider this a reasonable way to deal
2246 with the situation. I'm not sure whether this can also happen for
2247 symtabs; it doesn't hurt to check. */
2248 static char **tab = NULL;
2249 /* Allocated size of tab in elements.
2250 Start with one 256-byte block (when using GNU malloc.c).
2251 24 is the malloc overhead when range checking is in effect. */
2252 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2253 /* Current size of tab in elements. */
2254 static int tab_cur_size;
2261 tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
2265 /* Is NAME in tab? */
2266 for (p = tab; p < tab + tab_cur_size; p++)
2267 if (STREQ (*p, name))
2268 /* Yes; don't print it again. */
2270 /* No; add it to tab. */
2271 if (tab_cur_size == tab_alloc_size)
2273 tab_alloc_size *= 2;
2274 tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
2276 tab[tab_cur_size++] = name;
2284 printf_filtered (", ");
2288 fputs_filtered (name, stdout);
2292 sources_info (ignore, from_tty)
2296 register struct symtab *s;
2297 register struct partial_symtab *ps;
2298 register struct objfile *objfile;
2301 if (!have_full_symbols () && !have_partial_symbols ())
2303 error (no_symtab_msg);
2306 printf_filtered ("Source files for which symbols have been read in:\n\n");
2309 ALL_SYMTABS (objfile, s)
2311 output_source_filename (s -> filename, &first);
2313 printf_filtered ("\n\n");
2315 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2318 ALL_PSYMTABS (objfile, ps)
2322 output_source_filename (ps -> filename, &first);
2325 printf_filtered ("\n");
2328 /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
2329 If CLASS is zero, list all symbols except functions, type names, and
2331 If CLASS is 1, list only functions.
2332 If CLASS is 2, list only type names.
2333 If CLASS is 3, list only method names.
2335 BPT is non-zero if we should set a breakpoint at the functions
2339 list_symbols (regexp, class, bpt)
2344 register struct symtab *s;
2345 register struct partial_symtab *ps;
2346 register struct blockvector *bv;
2347 struct blockvector *prev_bv = 0;
2348 register struct block *b;
2350 register struct symbol *sym;
2351 struct partial_symbol *psym;
2352 struct objfile *objfile;
2353 struct minimal_symbol *msymbol;
2355 static char *classnames[]
2356 = {"variable", "function", "type", "method"};
2357 int found_in_file = 0;
2359 static enum minimal_symbol_type types[]
2360 = {mst_data, mst_text, mst_abs, mst_unknown};
2361 static enum minimal_symbol_type types2[]
2362 = {mst_bss, mst_text, mst_abs, mst_unknown};
2363 enum minimal_symbol_type ourtype = types[class];
2364 enum minimal_symbol_type ourtype2 = types2[class];
2368 /* Make sure spacing is right for C++ operators.
2369 This is just a courtesy to make the matching less sensitive
2370 to how many spaces the user leaves between 'operator'
2371 and <TYPENAME> or <OPERATOR>. */
2373 char *opname = operator_chars (regexp, &opend);
2376 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2377 if (isalpha(*opname) || *opname == '_' || *opname == '$')
2379 /* There should 1 space between 'operator' and 'TYPENAME'. */
2380 if (opname[-1] != ' ' || opname[-2] == ' ')
2385 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2386 if (opname[-1] == ' ')
2389 /* If wrong number of spaces, fix it. */
2392 char *tmp = (char*) alloca(opend-opname+10);
2393 sprintf(tmp, "operator%.*s%s", fix, " ", opname);
2398 if (0 != (val = re_comp (regexp)))
2399 error ("Invalid regexp (%s): %s", val, regexp);
2402 /* Search through the partial symtabs *first* for all symbols
2403 matching the regexp. That way we don't have to reproduce all of
2404 the machinery below. */
2406 ALL_PSYMTABS (objfile, ps)
2408 struct partial_symbol *bound, *gbound, *sbound;
2411 if (ps->readin) continue;
2413 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2414 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2417 /* Go through all of the symbols stored in a partial
2418 symtab in one loop. */
2419 psym = objfile->global_psymbols.list + ps->globals_offset;
2424 if (bound == gbound && ps->n_static_syms != 0)
2426 psym = objfile->static_psymbols.list + ps->statics_offset;
2437 /* If it would match (logic taken from loop below)
2438 load the file and go on to the next one */
2439 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
2440 && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
2441 && SYMBOL_CLASS (psym) != LOC_BLOCK)
2442 || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
2443 || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
2444 || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
2446 PSYMTAB_TO_SYMTAB(ps);
2454 /* Here, we search through the minimal symbol tables for functions that
2455 match, and call find_pc_symtab on them to force their symbols to
2456 be read. The symbol will then be found during the scan of symtabs
2457 below. If find_pc_symtab fails, set found_misc so that we will
2458 rescan to print any matching symbols without debug info. */
2462 ALL_MSYMBOLS (objfile, msymbol)
2464 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2465 MSYMBOL_TYPE (msymbol) == ourtype2)
2467 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2469 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2478 /* Printout here so as to get after the "Reading in symbols"
2479 messages which will be generated above. */
2481 printf_filtered (regexp
2482 ? "All %ss matching regular expression \"%s\":\n"
2483 : "All defined %ss:\n",
2487 ALL_SYMTABS (objfile, s)
2490 bv = BLOCKVECTOR (s);
2491 /* Often many files share a blockvector.
2492 Scan each blockvector only once so that
2493 we don't get every symbol many times.
2494 It happens that the first symtab in the list
2495 for any given blockvector is the main file. */
2497 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2499 b = BLOCKVECTOR_BLOCK (bv, i);
2500 /* Skip the sort if this block is always sorted. */
2501 if (!BLOCK_SHOULD_SORT (b))
2502 sort_block_syms (b);
2503 for (j = 0; j < BLOCK_NSYMS (b); j++)
2506 sym = BLOCK_SYM (b, j);
2507 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
2508 && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
2509 && SYMBOL_CLASS (sym) != LOC_BLOCK
2510 && SYMBOL_CLASS (sym) != LOC_CONST)
2511 || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
2512 || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2513 || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
2517 /* Set a breakpoint here, if it's a function */
2520 /* There may be more than one function with the
2521 same name but in different files. In order to
2522 set breakpoints on all of them, we must give
2523 both the file name and the function name to
2526 (char *) alloca (strlen (s->filename)
2527 + strlen (SYMBOL_NAME(sym))
2529 strcpy (string, s->filename);
2530 strcat (string, ":");
2531 strcat (string, SYMBOL_NAME(sym));
2532 break_command (string, 0);
2535 else if (!found_in_file)
2537 fputs_filtered ("\nFile ", stdout);
2538 fputs_filtered (s->filename, stdout);
2539 fputs_filtered (":\n", stdout);
2543 if (class != 2 && i == STATIC_BLOCK)
2544 printf_filtered ("static ");
2546 /* Typedef that is not a C++ class */
2548 && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
2549 c_typedef_print (SYMBOL_TYPE(sym), sym, stdout);
2550 /* variable, func, or typedef-that-is-c++-class */
2551 else if (class < 2 ||
2553 SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
2555 type_print (SYMBOL_TYPE (sym),
2556 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2557 ? "" : SYMBOL_SOURCE_NAME (sym)),
2560 printf_filtered (";\n");
2564 # if 0 /* FIXME, why is this zapped out? */
2566 c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
2568 c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
2570 sprintf (buf, " %s::", type_name_no_tag (t));
2571 cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
2581 /* If there are no eyes, avoid all contact. I mean, if there are
2582 no debug symbols, then print directly from the msymbol_vector. */
2584 if (found_misc || class != 1)
2587 ALL_MSYMBOLS (objfile, msymbol)
2589 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2590 MSYMBOL_TYPE (msymbol) == ourtype2)
2592 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2594 /* Functions: Look up by address. */
2596 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
2598 /* Variables/Absolutes: Look up by name */
2599 if (lookup_symbol (SYMBOL_NAME (msymbol),
2600 (struct block *) NULL, VAR_NAMESPACE,
2601 0, (struct symtab **) NULL) == NULL)
2605 printf_filtered ("\nNon-debugging symbols:\n");
2608 printf_filtered (" %08lx %s\n",
2609 (unsigned long) SYMBOL_VALUE_ADDRESS (msymbol),
2610 SYMBOL_SOURCE_NAME (msymbol));
2620 variables_info (regexp, from_tty)
2624 list_symbols (regexp, 0, 0);
2628 functions_info (regexp, from_tty)
2632 list_symbols (regexp, 1, 0);
2636 types_info (regexp, from_tty)
2640 list_symbols (regexp, 2, 0);
2644 /* Tiemann says: "info methods was never implemented." */
2646 methods_info (regexp)
2649 list_symbols (regexp, 3, 0);
2653 /* Breakpoint all functions matching regular expression. */
2655 rbreak_command (regexp, from_tty)
2659 list_symbols (regexp, 1, 1);
2663 /* Return Nonzero if block a is lexically nested within block b,
2664 or if a and b have the same pc range.
2665 Return zero otherwise. */
2668 struct block *a, *b;
2672 return BLOCK_START (a) >= BLOCK_START (b)
2673 && BLOCK_END (a) <= BLOCK_END (b);
2677 /* Helper routine for make_symbol_completion_list. */
2679 static int return_val_size;
2680 static int return_val_index;
2681 static char **return_val;
2683 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
2685 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
2686 /* Put only the mangled name on the list. */ \
2687 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
2688 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
2689 completion_list_add_name \
2690 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
2692 completion_list_add_name \
2693 (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
2696 /* Test to see if the symbol specified by SYMNAME (which is already
2697 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
2698 characters. If so, add it to the current completion list. */
2701 completion_list_add_name (symname, sym_text, sym_text_len, text, word)
2711 /* clip symbols that cannot match */
2713 if (strncmp (symname, sym_text, sym_text_len) != 0)
2718 /* Clip any symbol names that we've already considered. (This is a
2719 time optimization) */
2721 for (i = 0; i < return_val_index; ++i)
2723 if (STREQ (symname, return_val[i]))
2729 /* We have a match for a completion, so add SYMNAME to the current list
2730 of matches. Note that the name is moved to freshly malloc'd space. */
2734 if (word == sym_text)
2736 new = xmalloc (strlen (symname) + 5);
2737 strcpy (new, symname);
2739 else if (word > sym_text)
2741 /* Return some portion of symname. */
2742 new = xmalloc (strlen (symname) + 5);
2743 strcpy (new, symname + (word - sym_text));
2747 /* Return some of SYM_TEXT plus symname. */
2748 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
2749 strncpy (new, word, sym_text - word);
2750 new[sym_text - word] = '\0';
2751 strcat (new, symname);
2754 if (return_val_index + 3 > return_val_size)
2756 newsize = (return_val_size *= 2) * sizeof (char *);
2757 return_val = (char **) xrealloc ((char *) return_val, newsize);
2759 return_val[return_val_index++] = new;
2760 return_val[return_val_index] = NULL;
2764 /* Return a NULL terminated array of all symbols (regardless of class) which
2765 begin by matching TEXT. If the answer is no symbols, then the return value
2766 is an array which contains only a NULL pointer.
2768 Problem: All of the symbols have to be copied because readline frees them.
2769 I'm not going to worry about this; hopefully there won't be that many. */
2772 make_symbol_completion_list (text, word)
2776 register struct symbol *sym;
2777 register struct symtab *s;
2778 register struct partial_symtab *ps;
2779 register struct minimal_symbol *msymbol;
2780 register struct objfile *objfile;
2781 register struct block *b, *surrounding_static_block = 0;
2783 struct partial_symbol *psym;
2784 /* The symbol we are completing on. Points in same buffer as text. */
2786 /* Length of sym_text. */
2789 /* Now look for the symbol we are supposed to complete on.
2790 FIXME: This should be language-specific. */
2794 char *quote_pos = NULL;
2796 /* First see if this is a quoted string. */
2798 for (p = text; *p != '\0'; ++p)
2800 if (quote_found != '\0')
2802 if (*p == quote_found)
2803 /* Found close quote. */
2805 else if (*p == '\\' && p[1] == quote_found)
2806 /* A backslash followed by the quote character
2807 doesn't end the string. */
2810 else if (*p == '\'' || *p == '"')
2816 if (quote_found == '\'')
2817 /* A string within single quotes can be a symbol, so complete on it. */
2818 sym_text = quote_pos + 1;
2819 else if (quote_found == '"')
2820 /* A double-quoted string is never a symbol, nor does it make sense
2821 to complete it any other way. */
2825 /* It is not a quoted string. Break it based on the characters
2826 which are in symbols. */
2829 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
2838 sym_text_len = strlen (sym_text);
2840 return_val_size = 100;
2841 return_val_index = 0;
2842 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
2843 return_val[0] = NULL;
2845 /* Look through the partial symtabs for all symbols which begin
2846 by matching SYM_TEXT. Add each one that you find to the list. */
2848 ALL_PSYMTABS (objfile, ps)
2850 /* If the psymtab's been read in we'll get it when we search
2851 through the blockvector. */
2852 if (ps->readin) continue;
2854 for (psym = objfile->global_psymbols.list + ps->globals_offset;
2855 psym < (objfile->global_psymbols.list + ps->globals_offset
2856 + ps->n_global_syms);
2859 /* If interrupted, then quit. */
2861 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2864 for (psym = objfile->static_psymbols.list + ps->statics_offset;
2865 psym < (objfile->static_psymbols.list + ps->statics_offset
2866 + ps->n_static_syms);
2870 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2874 /* At this point scan through the misc symbol vectors and add each
2875 symbol you find to the list. Eventually we want to ignore
2876 anything that isn't a text symbol (everything else will be
2877 handled by the psymtab code above). */
2879 ALL_MSYMBOLS (objfile, msymbol)
2882 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
2885 /* Search upwards from currently selected frame (so that we can
2886 complete on local vars. */
2888 for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
2890 if (!BLOCK_SUPERBLOCK (b))
2892 surrounding_static_block = b; /* For elmin of dups */
2895 /* Also catch fields of types defined in this places which match our
2896 text string. Only complete on types visible from current context. */
2898 for (i = 0; i < BLOCK_NSYMS (b); i++)
2900 sym = BLOCK_SYM (b, i);
2901 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2902 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2904 struct type *t = SYMBOL_TYPE (sym);
2905 enum type_code c = TYPE_CODE (t);
2907 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
2909 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
2911 if (TYPE_FIELD_NAME (t, j))
2913 completion_list_add_name (TYPE_FIELD_NAME (t, j),
2914 sym_text, sym_text_len, text, word);
2922 /* Go through the symtabs and check the externs and statics for
2923 symbols which match. */
2925 ALL_SYMTABS (objfile, s)
2928 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
2929 for (i = 0; i < BLOCK_NSYMS (b); i++)
2931 sym = BLOCK_SYM (b, i);
2932 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2936 ALL_SYMTABS (objfile, s)
2939 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
2940 /* Don't do this block twice. */
2941 if (b == surrounding_static_block) continue;
2942 for (i = 0; i < BLOCK_NSYMS (b); i++)
2944 sym = BLOCK_SYM (b, i);
2945 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2949 return (return_val);
2954 /* Add the type of the symbol sym to the type of the current
2955 function whose block we are in (assumed). The type of
2956 this current function is contained in *TYPE.
2958 This basically works as follows: When we find a function
2959 symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
2960 a pointer to its type in the global in_function_type. Every
2961 time we come across a parameter symbol ('p' in its name), then
2962 this procedure adds the name and type of that parameter
2963 to the function type pointed to by *TYPE. (Which should correspond
2964 to in_function_type if it was called correctly).
2966 Note that since we are modifying a type, the result of
2967 lookup_function_type() should be memcpy()ed before calling
2968 this. When not in strict typing mode, the expression
2969 evaluator can choose to ignore this.
2971 Assumption: All of a function's parameter symbols will
2972 appear before another function symbol is found. The parameters
2973 appear in the same order in the argument list as they do in the
2977 add_param_to_type (type,sym)
2981 int num = ++(TYPE_NFIELDS(*type));
2983 if(TYPE_NFIELDS(*type)-1)
2984 TYPE_FIELDS(*type) = (struct field *)
2985 (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
2986 num*sizeof(struct field));
2988 TYPE_FIELDS(*type) = (struct field *)
2989 (*current_objfile->xmalloc) (num*sizeof(struct field));
2991 TYPE_FIELD_BITPOS(*type,num-1) = num-1;
2992 TYPE_FIELD_BITSIZE(*type,num-1) = 0;
2993 TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
2994 TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
2999 _initialize_symtab ()
3001 add_info ("variables", variables_info,
3002 "All global and static variable names, or those matching REGEXP.");
3003 add_info ("functions", functions_info,
3004 "All function names, or those matching REGEXP.");
3006 /* FIXME: This command has at least the following problems:
3007 1. It prints builtin types (in a very strange and confusing fashion).
3008 2. It doesn't print right, e.g. with
3009 typedef struct foo *FOO
3010 type_print prints "FOO" when we want to make it (in this situation)
3011 print "struct foo *".
3012 I also think "ptype" or "whatis" is more likely to be useful (but if
3013 there is much disagreement "info types" can be fixed). */
3014 add_info ("types", types_info,
3015 "All type names, or those matching REGEXP.");
3018 add_info ("methods", methods_info,
3019 "All method names, or those matching REGEXP::REGEXP.\n\
3020 If the class qualifier is omitted, it is assumed to be the current scope.\n\
3021 If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
3024 add_info ("sources", sources_info,
3025 "Source files in the program.");
3027 add_com ("rbreak", no_class, rbreak_command,
3028 "Set a breakpoint for all functions matching REGEXP.");
3030 /* Initialize the one built-in type that isn't language dependent... */
3031 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
3032 "<unknown type>", (struct objfile *) NULL);