1 /* Symbol table lookup for the GNU debugger, GDB.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
34 #include "call-cmds.h"
35 #include "gdb_regex.h"
36 #include "expression.h"
42 #include "filenames.h" /* for FILENAME_CMP */
43 #include "objc-lang.h"
48 #include "gdb_obstack.h"
50 #include "dictionary.h"
52 #include <sys/types.h>
54 #include "gdb_string.h"
59 #include "gdb_assert.h"
61 /* Prototypes for local functions */
63 static void completion_list_add_name (char *, char *, int, char *, char *);
65 static void rbreak_command (char *, int);
67 static void types_info (char *, int);
69 static void functions_info (char *, int);
71 static void variables_info (char *, int);
73 static void sources_info (char *, int);
75 static void output_source_filename (const char *, int *);
77 static int find_line_common (struct linetable *, int, int *);
79 /* This one is used by linespec.c */
81 char *operator_chars (char *p, char **end);
83 static struct symbol *lookup_symbol_aux (const char *name,
84 const char *linkage_name,
85 const struct block *block,
86 const domain_enum domain,
87 enum language language,
88 int *is_a_field_of_this,
89 struct symtab **symtab);
92 struct symbol *lookup_symbol_aux_local (const char *name,
93 const char *linkage_name,
94 const struct block *block,
95 const domain_enum domain,
96 struct symtab **symtab);
99 struct symbol *lookup_symbol_aux_symtabs (int block_index,
101 const char *linkage_name,
102 const domain_enum domain,
103 struct symtab **symtab);
106 struct symbol *lookup_symbol_aux_psymtabs (int block_index,
108 const char *linkage_name,
109 const domain_enum domain,
110 struct symtab **symtab);
114 struct symbol *lookup_symbol_aux_minsyms (const char *name,
115 const char *linkage_name,
116 const domain_enum domain,
117 int *is_a_field_of_this,
118 struct symtab **symtab);
121 /* This flag is used in hppa-tdep.c, and set in hp-symtab-read.c.
122 Signals the presence of objects compiled by HP compilers. */
123 int deprecated_hp_som_som_object_present = 0;
125 static void fixup_section (struct general_symbol_info *, struct objfile *);
127 static int file_matches (char *, char **, int);
129 static void print_symbol_info (domain_enum,
130 struct symtab *, struct symbol *, int, char *);
132 static void print_msymbol_info (struct minimal_symbol *);
134 static void symtab_symbol_info (char *, domain_enum, int);
136 void _initialize_symtab (void);
140 /* The single non-language-specific builtin type */
141 struct type *builtin_type_error;
143 /* Block in which the most recently searched-for symbol was found.
144 Might be better to make this a parameter to lookup_symbol and
147 const struct block *block_found;
149 /* Check for a symtab of a specific name; first in symtabs, then in
150 psymtabs. *If* there is no '/' in the name, a match after a '/'
151 in the symtab filename will also work. */
154 lookup_symtab (const char *name)
157 struct partial_symtab *ps;
158 struct objfile *objfile;
159 char *real_path = NULL;
160 char *full_path = NULL;
162 /* Here we are interested in canonicalizing an absolute path, not
163 absolutizing a relative path. */
164 if (IS_ABSOLUTE_PATH (name))
166 full_path = xfullpath (name);
167 make_cleanup (xfree, full_path);
168 real_path = gdb_realpath (name);
169 make_cleanup (xfree, real_path);
174 /* First, search for an exact match */
176 ALL_SYMTABS (objfile, s)
178 if (FILENAME_CMP (name, s->filename) == 0)
183 /* If the user gave us an absolute path, try to find the file in
184 this symtab and use its absolute path. */
186 if (full_path != NULL)
188 const char *fp = symtab_to_fullname (s);
189 if (fp != NULL && FILENAME_CMP (full_path, fp) == 0)
195 if (real_path != NULL)
197 char *fullname = symtab_to_fullname (s);
198 if (fullname != NULL)
200 char *rp = gdb_realpath (fullname);
201 make_cleanup (xfree, rp);
202 if (FILENAME_CMP (real_path, rp) == 0)
210 /* Now, search for a matching tail (only if name doesn't have any dirs) */
212 if (lbasename (name) == name)
213 ALL_SYMTABS (objfile, s)
215 if (FILENAME_CMP (lbasename (s->filename), name) == 0)
219 /* Same search rules as above apply here, but now we look thru the
222 ps = lookup_partial_symtab (name);
227 error (_("Internal: readin %s pst for `%s' found when no symtab found."),
230 s = PSYMTAB_TO_SYMTAB (ps);
235 /* At this point, we have located the psymtab for this file, but
236 the conversion to a symtab has failed. This usually happens
237 when we are looking up an include file. In this case,
238 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
239 been created. So, we need to run through the symtabs again in
240 order to find the file.
241 XXX - This is a crock, and should be fixed inside of the the
242 symbol parsing routines. */
246 /* Lookup the partial symbol table of a source file named NAME.
247 *If* there is no '/' in the name, a match after a '/'
248 in the psymtab filename will also work. */
250 struct partial_symtab *
251 lookup_partial_symtab (const char *name)
253 struct partial_symtab *pst;
254 struct objfile *objfile;
255 char *full_path = NULL;
256 char *real_path = NULL;
258 /* Here we are interested in canonicalizing an absolute path, not
259 absolutizing a relative path. */
260 if (IS_ABSOLUTE_PATH (name))
262 full_path = xfullpath (name);
263 make_cleanup (xfree, full_path);
264 real_path = gdb_realpath (name);
265 make_cleanup (xfree, real_path);
268 ALL_PSYMTABS (objfile, pst)
270 if (FILENAME_CMP (name, pst->filename) == 0)
275 /* If the user gave us an absolute path, try to find the file in
276 this symtab and use its absolute path. */
277 if (full_path != NULL)
279 psymtab_to_fullname (pst);
280 if (pst->fullname != NULL
281 && FILENAME_CMP (full_path, pst->fullname) == 0)
287 if (real_path != NULL)
290 psymtab_to_fullname (pst);
291 if (pst->fullname != NULL)
293 rp = gdb_realpath (pst->fullname);
294 make_cleanup (xfree, rp);
296 if (rp != NULL && FILENAME_CMP (real_path, rp) == 0)
303 /* Now, search for a matching tail (only if name doesn't have any dirs) */
305 if (lbasename (name) == name)
306 ALL_PSYMTABS (objfile, pst)
308 if (FILENAME_CMP (lbasename (pst->filename), name) == 0)
315 /* Mangle a GDB method stub type. This actually reassembles the pieces of the
316 full method name, which consist of the class name (from T), the unadorned
317 method name from METHOD_ID, and the signature for the specific overload,
318 specified by SIGNATURE_ID. Note that this function is g++ specific. */
321 gdb_mangle_name (struct type *type, int method_id, int signature_id)
323 int mangled_name_len;
325 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
326 struct fn_field *method = &f[signature_id];
327 char *field_name = TYPE_FN_FIELDLIST_NAME (type, method_id);
328 char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id);
329 char *newname = type_name_no_tag (type);
331 /* Does the form of physname indicate that it is the full mangled name
332 of a constructor (not just the args)? */
333 int is_full_physname_constructor;
336 int is_destructor = is_destructor_name (physname);
337 /* Need a new type prefix. */
338 char *const_prefix = method->is_const ? "C" : "";
339 char *volatile_prefix = method->is_volatile ? "V" : "";
341 int len = (newname == NULL ? 0 : strlen (newname));
343 /* Nothing to do if physname already contains a fully mangled v3 abi name
344 or an operator name. */
345 if ((physname[0] == '_' && physname[1] == 'Z')
346 || is_operator_name (field_name))
347 return xstrdup (physname);
349 is_full_physname_constructor = is_constructor_name (physname);
352 is_full_physname_constructor || (newname && strcmp (field_name, newname) == 0);
355 is_destructor = (strncmp (physname, "__dt", 4) == 0);
357 if (is_destructor || is_full_physname_constructor)
359 mangled_name = (char *) xmalloc (strlen (physname) + 1);
360 strcpy (mangled_name, physname);
366 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
368 else if (physname[0] == 't' || physname[0] == 'Q')
370 /* The physname for template and qualified methods already includes
372 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
378 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
380 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
381 + strlen (buf) + len + strlen (physname) + 1);
384 mangled_name = (char *) xmalloc (mangled_name_len);
386 mangled_name[0] = '\0';
388 strcpy (mangled_name, field_name);
390 strcat (mangled_name, buf);
391 /* If the class doesn't have a name, i.e. newname NULL, then we just
392 mangle it using 0 for the length of the class. Thus it gets mangled
393 as something starting with `::' rather than `classname::'. */
395 strcat (mangled_name, newname);
397 strcat (mangled_name, physname);
398 return (mangled_name);
402 /* Initialize the language dependent portion of a symbol
403 depending upon the language for the symbol. */
405 symbol_init_language_specific (struct general_symbol_info *gsymbol,
406 enum language language)
408 gsymbol->language = language;
409 if (gsymbol->language == language_cplus
410 || gsymbol->language == language_java
411 || gsymbol->language == language_objc)
413 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
417 memset (&gsymbol->language_specific, 0,
418 sizeof (gsymbol->language_specific));
422 /* Functions to initialize a symbol's mangled name. */
424 /* Create the hash table used for demangled names. Each hash entry is
425 a pair of strings; one for the mangled name and one for the demangled
426 name. The entry is hashed via just the mangled name. */
429 create_demangled_names_hash (struct objfile *objfile)
431 /* Choose 256 as the starting size of the hash table, somewhat arbitrarily.
432 The hash table code will round this up to the next prime number.
433 Choosing a much larger table size wastes memory, and saves only about
434 1% in symbol reading. */
436 objfile->demangled_names_hash = htab_create_alloc
437 (256, htab_hash_string, (int (*) (const void *, const void *)) streq,
438 NULL, xcalloc, xfree);
441 /* Try to determine the demangled name for a symbol, based on the
442 language of that symbol. If the language is set to language_auto,
443 it will attempt to find any demangling algorithm that works and
444 then set the language appropriately. The returned name is allocated
445 by the demangler and should be xfree'd. */
448 symbol_find_demangled_name (struct general_symbol_info *gsymbol,
451 char *demangled = NULL;
453 if (gsymbol->language == language_unknown)
454 gsymbol->language = language_auto;
456 if (gsymbol->language == language_objc
457 || gsymbol->language == language_auto)
460 objc_demangle (mangled, 0);
461 if (demangled != NULL)
463 gsymbol->language = language_objc;
467 if (gsymbol->language == language_cplus
468 || gsymbol->language == language_auto)
471 cplus_demangle (mangled, DMGL_PARAMS | DMGL_ANSI);
472 if (demangled != NULL)
474 gsymbol->language = language_cplus;
478 if (gsymbol->language == language_java)
481 cplus_demangle (mangled,
482 DMGL_PARAMS | DMGL_ANSI | DMGL_JAVA);
483 if (demangled != NULL)
485 gsymbol->language = language_java;
492 /* Set both the mangled and demangled (if any) names for GSYMBOL based
493 on LINKAGE_NAME and LEN. The hash table corresponding to OBJFILE
494 is used, and the memory comes from that objfile's objfile_obstack.
495 LINKAGE_NAME is copied, so the pointer can be discarded after
496 calling this function. */
498 /* We have to be careful when dealing with Java names: when we run
499 into a Java minimal symbol, we don't know it's a Java symbol, so it
500 gets demangled as a C++ name. This is unfortunate, but there's not
501 much we can do about it: but when demangling partial symbols and
502 regular symbols, we'd better not reuse the wrong demangled name.
503 (See PR gdb/1039.) We solve this by putting a distinctive prefix
504 on Java names when storing them in the hash table. */
506 /* FIXME: carlton/2003-03-13: This is an unfortunate situation. I
507 don't mind the Java prefix so much: different languages have
508 different demangling requirements, so it's only natural that we
509 need to keep language data around in our demangling cache. But
510 it's not good that the minimal symbol has the wrong demangled name.
511 Unfortunately, I can't think of any easy solution to that
514 #define JAVA_PREFIX "##JAVA$$"
515 #define JAVA_PREFIX_LEN 8
518 symbol_set_names (struct general_symbol_info *gsymbol,
519 const char *linkage_name, int len, struct objfile *objfile)
522 /* A 0-terminated copy of the linkage name. */
523 const char *linkage_name_copy;
524 /* A copy of the linkage name that might have a special Java prefix
525 added to it, for use when looking names up in the hash table. */
526 const char *lookup_name;
527 /* The length of lookup_name. */
530 if (objfile->demangled_names_hash == NULL)
531 create_demangled_names_hash (objfile);
533 /* The stabs reader generally provides names that are not
534 NUL-terminated; most of the other readers don't do this, so we
535 can just use the given copy, unless we're in the Java case. */
536 if (gsymbol->language == language_java)
539 lookup_len = len + JAVA_PREFIX_LEN;
541 alloc_name = alloca (lookup_len + 1);
542 memcpy (alloc_name, JAVA_PREFIX, JAVA_PREFIX_LEN);
543 memcpy (alloc_name + JAVA_PREFIX_LEN, linkage_name, len);
544 alloc_name[lookup_len] = '\0';
546 lookup_name = alloc_name;
547 linkage_name_copy = alloc_name + JAVA_PREFIX_LEN;
549 else if (linkage_name[len] != '\0')
554 alloc_name = alloca (lookup_len + 1);
555 memcpy (alloc_name, linkage_name, len);
556 alloc_name[lookup_len] = '\0';
558 lookup_name = alloc_name;
559 linkage_name_copy = alloc_name;
564 lookup_name = linkage_name;
565 linkage_name_copy = linkage_name;
568 slot = (char **) htab_find_slot (objfile->demangled_names_hash,
569 lookup_name, INSERT);
571 /* If this name is not in the hash table, add it. */
574 char *demangled_name = symbol_find_demangled_name (gsymbol,
576 int demangled_len = demangled_name ? strlen (demangled_name) : 0;
578 /* If there is a demangled name, place it right after the mangled name.
579 Otherwise, just place a second zero byte after the end of the mangled
581 *slot = obstack_alloc (&objfile->objfile_obstack,
582 lookup_len + demangled_len + 2);
583 memcpy (*slot, lookup_name, lookup_len + 1);
584 if (demangled_name != NULL)
586 memcpy (*slot + lookup_len + 1, demangled_name, demangled_len + 1);
587 xfree (demangled_name);
590 (*slot)[lookup_len + 1] = '\0';
593 gsymbol->name = *slot + lookup_len - len;
594 if ((*slot)[lookup_len + 1] != '\0')
595 gsymbol->language_specific.cplus_specific.demangled_name
596 = &(*slot)[lookup_len + 1];
598 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
601 /* Initialize the demangled name of GSYMBOL if possible. Any required space
602 to store the name is obtained from the specified obstack. The function
603 symbol_set_names, above, should be used instead where possible for more
604 efficient memory usage. */
607 symbol_init_demangled_name (struct general_symbol_info *gsymbol,
608 struct obstack *obstack)
610 char *mangled = gsymbol->name;
611 char *demangled = NULL;
613 demangled = symbol_find_demangled_name (gsymbol, mangled);
614 if (gsymbol->language == language_cplus
615 || gsymbol->language == language_java
616 || gsymbol->language == language_objc)
620 gsymbol->language_specific.cplus_specific.demangled_name
621 = obsavestring (demangled, strlen (demangled), obstack);
625 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
629 /* Unknown language; just clean up quietly. */
635 /* Return the source code name of a symbol. In languages where
636 demangling is necessary, this is the demangled name. */
639 symbol_natural_name (const struct general_symbol_info *gsymbol)
641 switch (gsymbol->language)
646 if (gsymbol->language_specific.cplus_specific.demangled_name != NULL)
647 return gsymbol->language_specific.cplus_specific.demangled_name;
650 if (gsymbol->language_specific.cplus_specific.demangled_name != NULL)
651 return gsymbol->language_specific.cplus_specific.demangled_name;
653 return ada_decode_symbol (gsymbol);
658 return gsymbol->name;
661 /* Return the demangled name for a symbol based on the language for
662 that symbol. If no demangled name exists, return NULL. */
664 symbol_demangled_name (struct general_symbol_info *gsymbol)
666 switch (gsymbol->language)
671 if (gsymbol->language_specific.cplus_specific.demangled_name != NULL)
672 return gsymbol->language_specific.cplus_specific.demangled_name;
675 if (gsymbol->language_specific.cplus_specific.demangled_name != NULL)
676 return gsymbol->language_specific.cplus_specific.demangled_name;
678 return ada_decode_symbol (gsymbol);
686 /* Return the search name of a symbol---generally the demangled or
687 linkage name of the symbol, depending on how it will be searched for.
688 If there is no distinct demangled name, then returns the same value
689 (same pointer) as SYMBOL_LINKAGE_NAME. */
691 symbol_search_name (const struct general_symbol_info *gsymbol)
693 if (gsymbol->language == language_ada)
694 return gsymbol->name;
696 return symbol_natural_name (gsymbol);
699 /* Initialize the structure fields to zero values. */
701 init_sal (struct symtab_and_line *sal)
711 /* Return 1 if the two sections are the same, or if they could
712 plausibly be copies of each other, one in an original object
713 file and another in a separated debug file. */
716 matching_bfd_sections (asection *first, asection *second)
720 /* If they're the same section, then they match. */
724 /* If either is NULL, give up. */
725 if (first == NULL || second == NULL)
728 /* This doesn't apply to absolute symbols. */
729 if (first->owner == NULL || second->owner == NULL)
732 /* If they're in the same object file, they must be different sections. */
733 if (first->owner == second->owner)
736 /* Check whether the two sections are potentially corresponding. They must
737 have the same size, address, and name. We can't compare section indexes,
738 which would be more reliable, because some sections may have been
740 if (bfd_get_section_size (first) != bfd_get_section_size (second))
743 /* In-memory addresses may start at a different offset, relativize them. */
744 if (bfd_get_section_vma (first->owner, first)
745 - bfd_get_start_address (first->owner)
746 != bfd_get_section_vma (second->owner, second)
747 - bfd_get_start_address (second->owner))
750 if (bfd_get_section_name (first->owner, first) == NULL
751 || bfd_get_section_name (second->owner, second) == NULL
752 || strcmp (bfd_get_section_name (first->owner, first),
753 bfd_get_section_name (second->owner, second)) != 0)
756 /* Otherwise check that they are in corresponding objfiles. */
759 if (obj->obfd == first->owner)
761 gdb_assert (obj != NULL);
763 if (obj->separate_debug_objfile != NULL
764 && obj->separate_debug_objfile->obfd == second->owner)
766 if (obj->separate_debug_objfile_backlink != NULL
767 && obj->separate_debug_objfile_backlink->obfd == second->owner)
773 /* Find which partial symtab contains PC and SECTION. Return 0 if
774 none. We return the psymtab that contains a symbol whose address
775 exactly matches PC, or, if we cannot find an exact match, the
776 psymtab that contains a symbol whose address is closest to PC. */
777 struct partial_symtab *
778 find_pc_sect_psymtab (CORE_ADDR pc, asection *section)
780 struct partial_symtab *pst;
781 struct objfile *objfile;
782 struct minimal_symbol *msymbol;
784 /* If we know that this is not a text address, return failure. This is
785 necessary because we loop based on texthigh and textlow, which do
786 not include the data ranges. */
787 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
789 && (msymbol->type == mst_data
790 || msymbol->type == mst_bss
791 || msymbol->type == mst_abs
792 || msymbol->type == mst_file_data
793 || msymbol->type == mst_file_bss))
796 ALL_PSYMTABS (objfile, pst)
798 if (pc >= pst->textlow && pc < pst->texthigh)
800 struct partial_symtab *tpst;
801 struct partial_symtab *best_pst = pst;
802 CORE_ADDR best_addr = pst->textlow;
804 /* An objfile that has its functions reordered might have
805 many partial symbol tables containing the PC, but
806 we want the partial symbol table that contains the
807 function containing the PC. */
808 if (!(objfile->flags & OBJF_REORDERED) &&
809 section == 0) /* can't validate section this way */
815 /* The code range of partial symtabs sometimes overlap, so, in
816 the loop below, we need to check all partial symtabs and
817 find the one that fits better for the given PC address. We
818 select the partial symtab that contains a symbol whose
819 address is closest to the PC address. By closest we mean
820 that find_pc_sect_symbol returns the symbol with address
821 that is closest and still less than the given PC. */
822 for (tpst = pst; tpst != NULL; tpst = tpst->next)
824 if (pc >= tpst->textlow && pc < tpst->texthigh)
826 struct partial_symbol *p;
829 /* NOTE: This assumes that every psymbol has a
830 corresponding msymbol, which is not necessarily
831 true; the debug info might be much richer than the
832 object's symbol table. */
833 p = find_pc_sect_psymbol (tpst, pc, section);
835 && SYMBOL_VALUE_ADDRESS (p)
836 == SYMBOL_VALUE_ADDRESS (msymbol))
839 /* Also accept the textlow value of a psymtab as a
840 "symbol", to provide some support for partial
841 symbol tables with line information but no debug
842 symbols (e.g. those produced by an assembler). */
844 this_addr = SYMBOL_VALUE_ADDRESS (p);
846 this_addr = tpst->textlow;
848 /* Check whether it is closer than our current
849 BEST_ADDR. Since this symbol address is
850 necessarily lower or equal to PC, the symbol closer
851 to PC is the symbol which address is the highest.
852 This way we return the psymtab which contains such
853 best match symbol. This can help in cases where the
854 symbol information/debuginfo is not complete, like
855 for instance on IRIX6 with gcc, where no debug info
856 is emitted for statics. (See also the nodebug.exp
858 if (this_addr > best_addr)
860 best_addr = this_addr;
871 /* Find which partial symtab contains PC. Return 0 if none.
872 Backward compatibility, no section */
874 struct partial_symtab *
875 find_pc_psymtab (CORE_ADDR pc)
877 return find_pc_sect_psymtab (pc, find_pc_mapped_section (pc));
880 /* Find which partial symbol within a psymtab matches PC and SECTION.
881 Return 0 if none. Check all psymtabs if PSYMTAB is 0. */
883 struct partial_symbol *
884 find_pc_sect_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc,
887 struct partial_symbol *best = NULL, *p, **pp;
891 psymtab = find_pc_sect_psymtab (pc, section);
895 /* Cope with programs that start at address 0 */
896 best_pc = (psymtab->textlow != 0) ? psymtab->textlow - 1 : 0;
898 /* Search the global symbols as well as the static symbols, so that
899 find_pc_partial_function doesn't use a minimal symbol and thus
900 cache a bad endaddr. */
901 for (pp = psymtab->objfile->global_psymbols.list + psymtab->globals_offset;
902 (pp - (psymtab->objfile->global_psymbols.list + psymtab->globals_offset)
903 < psymtab->n_global_syms);
907 if (SYMBOL_DOMAIN (p) == VAR_DOMAIN
908 && SYMBOL_CLASS (p) == LOC_BLOCK
909 && pc >= SYMBOL_VALUE_ADDRESS (p)
910 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
911 || (psymtab->textlow == 0
912 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
914 if (section) /* match on a specific section */
916 fixup_psymbol_section (p, psymtab->objfile);
917 if (!matching_bfd_sections (SYMBOL_BFD_SECTION (p), section))
920 best_pc = SYMBOL_VALUE_ADDRESS (p);
925 for (pp = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
926 (pp - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
927 < psymtab->n_static_syms);
931 if (SYMBOL_DOMAIN (p) == VAR_DOMAIN
932 && SYMBOL_CLASS (p) == LOC_BLOCK
933 && pc >= SYMBOL_VALUE_ADDRESS (p)
934 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
935 || (psymtab->textlow == 0
936 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
938 if (section) /* match on a specific section */
940 fixup_psymbol_section (p, psymtab->objfile);
941 if (!matching_bfd_sections (SYMBOL_BFD_SECTION (p), section))
944 best_pc = SYMBOL_VALUE_ADDRESS (p);
952 /* Find which partial symbol within a psymtab matches PC. Return 0 if none.
953 Check all psymtabs if PSYMTAB is 0. Backwards compatibility, no section. */
955 struct partial_symbol *
956 find_pc_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc)
958 return find_pc_sect_psymbol (psymtab, pc, find_pc_mapped_section (pc));
961 /* Debug symbols usually don't have section information. We need to dig that
962 out of the minimal symbols and stash that in the debug symbol. */
965 fixup_section (struct general_symbol_info *ginfo, struct objfile *objfile)
967 struct minimal_symbol *msym;
968 msym = lookup_minimal_symbol (ginfo->name, NULL, objfile);
972 ginfo->bfd_section = SYMBOL_BFD_SECTION (msym);
973 ginfo->section = SYMBOL_SECTION (msym);
977 /* Static, function-local variables do appear in the linker
978 (minimal) symbols, but are frequently given names that won't
979 be found via lookup_minimal_symbol(). E.g., it has been
980 observed in frv-uclinux (ELF) executables that a static,
981 function-local variable named "foo" might appear in the
982 linker symbols as "foo.6" or "foo.3". Thus, there is no
983 point in attempting to extend the lookup-by-name mechanism to
984 handle this case due to the fact that there can be multiple
987 So, instead, search the section table when lookup by name has
988 failed. The ``addr'' and ``endaddr'' fields may have already
989 been relocated. If so, the relocation offset (i.e. the
990 ANOFFSET value) needs to be subtracted from these values when
991 performing the comparison. We unconditionally subtract it,
992 because, when no relocation has been performed, the ANOFFSET
993 value will simply be zero.
995 The address of the symbol whose section we're fixing up HAS
996 NOT BEEN adjusted (relocated) yet. It can't have been since
997 the section isn't yet known and knowing the section is
998 necessary in order to add the correct relocation value. In
999 other words, we wouldn't even be in this function (attempting
1000 to compute the section) if it were already known.
1002 Note that it is possible to search the minimal symbols
1003 (subtracting the relocation value if necessary) to find the
1004 matching minimal symbol, but this is overkill and much less
1005 efficient. It is not necessary to find the matching minimal
1006 symbol, only its section.
1008 Note that this technique (of doing a section table search)
1009 can fail when unrelocated section addresses overlap. For
1010 this reason, we still attempt a lookup by name prior to doing
1011 a search of the section table. */
1014 struct obj_section *s;
1016 addr = ginfo->value.address;
1018 ALL_OBJFILE_OSECTIONS (objfile, s)
1020 int idx = s->the_bfd_section->index;
1021 CORE_ADDR offset = ANOFFSET (objfile->section_offsets, idx);
1023 if (s->addr - offset <= addr && addr < s->endaddr - offset)
1025 ginfo->bfd_section = s->the_bfd_section;
1026 ginfo->section = idx;
1034 fixup_symbol_section (struct symbol *sym, struct objfile *objfile)
1039 if (SYMBOL_BFD_SECTION (sym))
1042 fixup_section (&sym->ginfo, objfile);
1047 struct partial_symbol *
1048 fixup_psymbol_section (struct partial_symbol *psym, struct objfile *objfile)
1053 if (SYMBOL_BFD_SECTION (psym))
1056 fixup_section (&psym->ginfo, objfile);
1061 /* Find the definition for a specified symbol name NAME
1062 in domain DOMAIN, visible from lexical block BLOCK.
1063 Returns the struct symbol pointer, or zero if no symbol is found.
1064 If SYMTAB is non-NULL, store the symbol table in which the
1065 symbol was found there, or NULL if not found.
1066 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
1067 NAME is a field of the current implied argument `this'. If so set
1068 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
1069 BLOCK_FOUND is set to the block in which NAME is found (in the case of
1070 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
1072 /* This function has a bunch of loops in it and it would seem to be
1073 attractive to put in some QUIT's (though I'm not really sure
1074 whether it can run long enough to be really important). But there
1075 are a few calls for which it would appear to be bad news to quit
1076 out of here: find_proc_desc in alpha-tdep.c and mips-tdep.c. (Note
1077 that there is C++ code below which can error(), but that probably
1078 doesn't affect these calls since they are looking for a known
1079 variable and thus can probably assume it will never hit the C++
1083 lookup_symbol_in_language (const char *name, const struct block *block,
1084 const domain_enum domain, enum language lang,
1085 int *is_a_field_of_this,
1086 struct symtab **symtab)
1088 char *demangled_name = NULL;
1089 const char *modified_name = NULL;
1090 const char *mangled_name = NULL;
1091 int needtofreename = 0;
1092 struct symbol *returnval;
1094 modified_name = name;
1096 /* If we are using C++ or Java, demangle the name before doing a lookup, so
1097 we can always binary search. */
1098 if (lang == language_cplus)
1100 demangled_name = cplus_demangle (name, DMGL_ANSI | DMGL_PARAMS);
1103 mangled_name = name;
1104 modified_name = demangled_name;
1108 else if (lang == language_java)
1110 demangled_name = cplus_demangle (name,
1111 DMGL_ANSI | DMGL_PARAMS | DMGL_JAVA);
1114 mangled_name = name;
1115 modified_name = demangled_name;
1120 if (case_sensitivity == case_sensitive_off)
1125 len = strlen (name);
1126 copy = (char *) alloca (len + 1);
1127 for (i= 0; i < len; i++)
1128 copy[i] = tolower (name[i]);
1130 modified_name = copy;
1133 returnval = lookup_symbol_aux (modified_name, mangled_name, block,
1135 is_a_field_of_this, symtab);
1137 xfree (demangled_name);
1139 /* Override the returned symtab with the symbol's specific one. */
1140 if (returnval != NULL && symtab != NULL)
1141 *symtab = SYMBOL_SYMTAB (returnval);
1146 /* Behave like lookup_symbol_in_language, but performed with the
1147 current language. */
1150 lookup_symbol (const char *name, const struct block *block,
1151 domain_enum domain, int *is_a_field_of_this,
1152 struct symtab **symtab)
1154 return lookup_symbol_in_language (name, block, domain,
1155 current_language->la_language,
1156 is_a_field_of_this, symtab);
1159 /* Behave like lookup_symbol except that NAME is the natural name
1160 of the symbol that we're looking for and, if LINKAGE_NAME is
1161 non-NULL, ensure that the symbol's linkage name matches as
1164 static struct symbol *
1165 lookup_symbol_aux (const char *name, const char *linkage_name,
1166 const struct block *block, const domain_enum domain,
1167 enum language language,
1168 int *is_a_field_of_this, struct symtab **symtab)
1171 const struct language_defn *langdef;
1173 /* Make sure we do something sensible with is_a_field_of_this, since
1174 the callers that set this parameter to some non-null value will
1175 certainly use it later and expect it to be either 0 or 1.
1176 If we don't set it, the contents of is_a_field_of_this are
1178 if (is_a_field_of_this != NULL)
1179 *is_a_field_of_this = 0;
1181 /* Search specified block and its superiors. Don't search
1182 STATIC_BLOCK or GLOBAL_BLOCK. */
1184 sym = lookup_symbol_aux_local (name, linkage_name, block, domain,
1189 /* If requested to do so by the caller and if appropriate for LANGUAGE,
1190 check to see if NAME is a field of `this'. */
1192 langdef = language_def (language);
1194 if (langdef->la_value_of_this != NULL
1195 && is_a_field_of_this != NULL)
1197 struct value *v = langdef->la_value_of_this (0);
1199 if (v && check_field (v, name))
1201 *is_a_field_of_this = 1;
1208 /* Now do whatever is appropriate for LANGUAGE to look
1209 up static and global variables. */
1211 sym = langdef->la_lookup_symbol_nonlocal (name, linkage_name,
1212 block, domain, symtab);
1216 /* Now search all static file-level symbols. Not strictly correct,
1217 but more useful than an error. Do the symtabs first, then check
1218 the psymtabs. If a psymtab indicates the existence of the
1219 desired name as a file-level static, then do psymtab-to-symtab
1220 conversion on the fly and return the found symbol. */
1222 sym = lookup_symbol_aux_symtabs (STATIC_BLOCK, name, linkage_name,
1227 sym = lookup_symbol_aux_psymtabs (STATIC_BLOCK, name, linkage_name,
1237 /* Check to see if the symbol is defined in BLOCK or its superiors.
1238 Don't search STATIC_BLOCK or GLOBAL_BLOCK. */
1240 static struct symbol *
1241 lookup_symbol_aux_local (const char *name, const char *linkage_name,
1242 const struct block *block,
1243 const domain_enum domain,
1244 struct symtab **symtab)
1247 const struct block *static_block = block_static_block (block);
1249 /* Check if either no block is specified or it's a global block. */
1251 if (static_block == NULL)
1254 while (block != static_block)
1256 sym = lookup_symbol_aux_block (name, linkage_name, block, domain,
1260 block = BLOCK_SUPERBLOCK (block);
1263 /* We've reached the static block without finding a result. */
1268 /* Look up a symbol in a block; if found, locate its symtab, fixup the
1269 symbol, and set block_found appropriately. */
1272 lookup_symbol_aux_block (const char *name, const char *linkage_name,
1273 const struct block *block,
1274 const domain_enum domain,
1275 struct symtab **symtab)
1278 struct objfile *objfile = NULL;
1279 struct blockvector *bv;
1281 struct symtab *s = NULL;
1283 sym = lookup_block_symbol (block, name, linkage_name, domain);
1286 block_found = block;
1289 /* Search the list of symtabs for one which contains the
1290 address of the start of this block. */
1291 ALL_PRIMARY_SYMTABS (objfile, s)
1293 bv = BLOCKVECTOR (s);
1294 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1295 if (BLOCK_START (b) <= BLOCK_START (block)
1296 && BLOCK_END (b) > BLOCK_START (block))
1303 return fixup_symbol_section (sym, objfile);
1309 /* Check to see if the symbol is defined in one of the symtabs.
1310 BLOCK_INDEX should be either GLOBAL_BLOCK or STATIC_BLOCK,
1311 depending on whether or not we want to search global symbols or
1314 static struct symbol *
1315 lookup_symbol_aux_symtabs (int block_index,
1316 const char *name, const char *linkage_name,
1317 const domain_enum domain,
1318 struct symtab **symtab)
1321 struct objfile *objfile;
1322 struct blockvector *bv;
1323 const struct block *block;
1326 ALL_PRIMARY_SYMTABS (objfile, s)
1328 bv = BLOCKVECTOR (s);
1329 block = BLOCKVECTOR_BLOCK (bv, block_index);
1330 sym = lookup_block_symbol (block, name, linkage_name, domain);
1333 block_found = block;
1336 return fixup_symbol_section (sym, objfile);
1343 /* Check to see if the symbol is defined in one of the partial
1344 symtabs. BLOCK_INDEX should be either GLOBAL_BLOCK or
1345 STATIC_BLOCK, depending on whether or not we want to search global
1346 symbols or static symbols. */
1348 static struct symbol *
1349 lookup_symbol_aux_psymtabs (int block_index, const char *name,
1350 const char *linkage_name,
1351 const domain_enum domain,
1352 struct symtab **symtab)
1355 struct objfile *objfile;
1356 struct blockvector *bv;
1357 const struct block *block;
1358 struct partial_symtab *ps;
1360 const int psymtab_index = (block_index == GLOBAL_BLOCK ? 1 : 0);
1362 ALL_PSYMTABS (objfile, ps)
1365 && lookup_partial_symbol (ps, name, linkage_name,
1366 psymtab_index, domain))
1368 s = PSYMTAB_TO_SYMTAB (ps);
1369 bv = BLOCKVECTOR (s);
1370 block = BLOCKVECTOR_BLOCK (bv, block_index);
1371 sym = lookup_block_symbol (block, name, linkage_name, domain);
1374 /* This shouldn't be necessary, but as a last resort try
1375 looking in the statics even though the psymtab claimed
1376 the symbol was global, or vice-versa. It's possible
1377 that the psymtab gets it wrong in some cases. */
1379 /* FIXME: carlton/2002-09-30: Should we really do that?
1380 If that happens, isn't it likely to be a GDB error, in
1381 which case we should fix the GDB error rather than
1382 silently dealing with it here? So I'd vote for
1383 removing the check for the symbol in the other
1385 block = BLOCKVECTOR_BLOCK (bv,
1386 block_index == GLOBAL_BLOCK ?
1387 STATIC_BLOCK : GLOBAL_BLOCK);
1388 sym = lookup_block_symbol (block, name, linkage_name, domain);
1390 error (_("Internal: %s symbol `%s' found in %s psymtab but not in symtab.\n%s may be an inlined function, or may be a template function\n(if a template, try specifying an instantiation: %s<type>)."),
1391 block_index == GLOBAL_BLOCK ? "global" : "static",
1392 name, ps->filename, name, name);
1396 return fixup_symbol_section (sym, objfile);
1404 /* Check for the possibility of the symbol being a function or a
1405 mangled variable that is stored in one of the minimal symbol
1406 tables. Eventually, all global symbols might be resolved in this
1409 /* NOTE: carlton/2002-12-05: At one point, this function was part of
1410 lookup_symbol_aux, and what are now 'return' statements within
1411 lookup_symbol_aux_minsyms returned from lookup_symbol_aux, even if
1412 sym was NULL. As far as I can tell, this was basically accidental;
1413 it didn't happen every time that msymbol was non-NULL, but only if
1414 some additional conditions held as well, and it caused problems
1415 with HP-generated symbol tables. */
1417 /* NOTE: carlton/2003-05-14: This function was once used as part of
1418 lookup_symbol. It is currently unnecessary for correctness
1419 reasons, however, and using it doesn't seem to be any faster than
1420 using lookup_symbol_aux_psymtabs, so I'm commenting it out. */
1422 static struct symbol *
1423 lookup_symbol_aux_minsyms (const char *name,
1424 const char *linkage_name,
1425 const domain_enum domain,
1426 int *is_a_field_of_this,
1427 struct symtab **symtab)
1430 struct blockvector *bv;
1431 const struct block *block;
1432 struct minimal_symbol *msymbol;
1435 if (domain == VAR_DOMAIN)
1437 msymbol = lookup_minimal_symbol (name, NULL, NULL);
1439 if (msymbol != NULL)
1441 /* OK, we found a minimal symbol in spite of not finding any
1442 symbol. There are various possible explanations for
1443 this. One possibility is the symbol exists in code not
1444 compiled -g. Another possibility is that the 'psymtab'
1445 isn't doing its job. A third possibility, related to #2,
1446 is that we were confused by name-mangling. For instance,
1447 maybe the psymtab isn't doing its job because it only
1448 know about demangled names, but we were given a mangled
1451 /* We first use the address in the msymbol to try to locate
1452 the appropriate symtab. Note that find_pc_sect_symtab()
1453 has a side-effect of doing psymtab-to-symtab expansion,
1454 for the found symtab. */
1455 s = find_pc_sect_symtab (SYMBOL_VALUE_ADDRESS (msymbol),
1456 SYMBOL_BFD_SECTION (msymbol));
1459 /* This is a function which has a symtab for its address. */
1460 bv = BLOCKVECTOR (s);
1461 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1463 /* This call used to pass `SYMBOL_LINKAGE_NAME (msymbol)' as the
1464 `name' argument to lookup_block_symbol. But the name
1465 of a minimal symbol is always mangled, so that seems
1466 to be clearly the wrong thing to pass as the
1469 lookup_block_symbol (block, name, linkage_name, domain);
1470 /* We kept static functions in minimal symbol table as well as
1471 in static scope. We want to find them in the symbol table. */
1474 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1475 sym = lookup_block_symbol (block, name,
1476 linkage_name, domain);
1479 /* NOTE: carlton/2002-12-04: The following comment was
1480 taken from a time when two versions of this function
1481 were part of the body of lookup_symbol_aux: this
1482 comment was taken from the version of the function
1483 that was #ifdef HPUXHPPA, and the comment was right
1484 before the 'return NULL' part of lookup_symbol_aux.
1485 (Hence the "Fall through and return 0" comment.)
1486 Elena did some digging into the situation for
1487 Fortran, and she reports:
1489 "I asked around (thanks to Jeff Knaggs), and I think
1490 the story for Fortran goes like this:
1492 "Apparently, in older Fortrans, '_' was not part of
1493 the user namespace. g77 attached a final '_' to
1494 procedure names as the exported symbols for linkage
1495 (foo_) , but the symbols went in the debug info just
1496 like 'foo'. The rationale behind this is not
1497 completely clear, and maybe it was done to other
1498 symbols as well, not just procedures." */
1500 /* If we get here with sym == 0, the symbol was
1501 found in the minimal symbol table
1502 but not in the symtab.
1503 Fall through and return 0 to use the msymbol
1504 definition of "foo_".
1505 (Note that outer code generally follows up a call
1506 to this routine with a call to lookup_minimal_symbol(),
1507 so a 0 return means we'll just flow into that other routine).
1509 This happens for Fortran "foo_" symbols,
1510 which are "foo" in the symtab.
1512 This can also happen if "asm" is used to make a
1513 regular symbol but not a debugging symbol, e.g.
1514 asm(".globl _main");
1518 if (symtab != NULL && sym != NULL)
1520 return fixup_symbol_section (sym, s->objfile);
1529 /* A default version of lookup_symbol_nonlocal for use by languages
1530 that can't think of anything better to do. This implements the C
1534 basic_lookup_symbol_nonlocal (const char *name,
1535 const char *linkage_name,
1536 const struct block *block,
1537 const domain_enum domain,
1538 struct symtab **symtab)
1542 /* NOTE: carlton/2003-05-19: The comments below were written when
1543 this (or what turned into this) was part of lookup_symbol_aux;
1544 I'm much less worried about these questions now, since these
1545 decisions have turned out well, but I leave these comments here
1548 /* NOTE: carlton/2002-12-05: There is a question as to whether or
1549 not it would be appropriate to search the current global block
1550 here as well. (That's what this code used to do before the
1551 is_a_field_of_this check was moved up.) On the one hand, it's
1552 redundant with the lookup_symbol_aux_symtabs search that happens
1553 next. On the other hand, if decode_line_1 is passed an argument
1554 like filename:var, then the user presumably wants 'var' to be
1555 searched for in filename. On the third hand, there shouldn't be
1556 multiple global variables all of which are named 'var', and it's
1557 not like decode_line_1 has ever restricted its search to only
1558 global variables in a single filename. All in all, only
1559 searching the static block here seems best: it's correct and it's
1562 /* NOTE: carlton/2002-12-05: There's also a possible performance
1563 issue here: if you usually search for global symbols in the
1564 current file, then it would be slightly better to search the
1565 current global block before searching all the symtabs. But there
1566 are other factors that have a much greater effect on performance
1567 than that one, so I don't think we should worry about that for
1570 sym = lookup_symbol_static (name, linkage_name, block, domain, symtab);
1574 return lookup_symbol_global (name, linkage_name, domain, symtab);
1577 /* Lookup a symbol in the static block associated to BLOCK, if there
1578 is one; do nothing if BLOCK is NULL or a global block. */
1581 lookup_symbol_static (const char *name,
1582 const char *linkage_name,
1583 const struct block *block,
1584 const domain_enum domain,
1585 struct symtab **symtab)
1587 const struct block *static_block = block_static_block (block);
1589 if (static_block != NULL)
1590 return lookup_symbol_aux_block (name, linkage_name, static_block,
1596 /* Lookup a symbol in all files' global blocks (searching psymtabs if
1600 lookup_symbol_global (const char *name,
1601 const char *linkage_name,
1602 const domain_enum domain,
1603 struct symtab **symtab)
1607 sym = lookup_symbol_aux_symtabs (GLOBAL_BLOCK, name, linkage_name,
1612 return lookup_symbol_aux_psymtabs (GLOBAL_BLOCK, name, linkage_name,
1616 /* Look, in partial_symtab PST, for symbol whose natural name is NAME.
1617 If LINKAGE_NAME is non-NULL, check in addition that the symbol's
1618 linkage name matches it. Check the global symbols if GLOBAL, the
1619 static symbols if not */
1621 struct partial_symbol *
1622 lookup_partial_symbol (struct partial_symtab *pst, const char *name,
1623 const char *linkage_name, int global,
1626 struct partial_symbol *temp;
1627 struct partial_symbol **start, **psym;
1628 struct partial_symbol **top, **real_top, **bottom, **center;
1629 int length = (global ? pst->n_global_syms : pst->n_static_syms);
1630 int do_linear_search = 1;
1637 pst->objfile->global_psymbols.list + pst->globals_offset :
1638 pst->objfile->static_psymbols.list + pst->statics_offset);
1640 if (global) /* This means we can use a binary search. */
1642 do_linear_search = 0;
1644 /* Binary search. This search is guaranteed to end with center
1645 pointing at the earliest partial symbol whose name might be
1646 correct. At that point *all* partial symbols with an
1647 appropriate name will be checked against the correct
1651 top = start + length - 1;
1653 while (top > bottom)
1655 center = bottom + (top - bottom) / 2;
1656 if (!(center < top))
1657 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
1658 if (!do_linear_search
1659 && (SYMBOL_LANGUAGE (*center) == language_java))
1661 do_linear_search = 1;
1663 if (strcmp_iw_ordered (SYMBOL_SEARCH_NAME (*center), name) >= 0)
1669 bottom = center + 1;
1672 if (!(top == bottom))
1673 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
1675 while (top <= real_top
1676 && (linkage_name != NULL
1677 ? strcmp (SYMBOL_LINKAGE_NAME (*top), linkage_name) == 0
1678 : SYMBOL_MATCHES_SEARCH_NAME (*top,name)))
1680 if (SYMBOL_DOMAIN (*top) == domain)
1688 /* Can't use a binary search or else we found during the binary search that
1689 we should also do a linear search. */
1691 if (do_linear_search)
1693 for (psym = start; psym < start + length; psym++)
1695 if (domain == SYMBOL_DOMAIN (*psym))
1697 if (linkage_name != NULL
1698 ? strcmp (SYMBOL_LINKAGE_NAME (*psym), linkage_name) == 0
1699 : SYMBOL_MATCHES_SEARCH_NAME (*psym, name))
1710 /* Look up a type named NAME in the struct_domain. The type returned
1711 must not be opaque -- i.e., must have at least one field
1715 lookup_transparent_type (const char *name)
1717 return current_language->la_lookup_transparent_type (name);
1720 /* The standard implementation of lookup_transparent_type. This code
1721 was modeled on lookup_symbol -- the parts not relevant to looking
1722 up types were just left out. In particular it's assumed here that
1723 types are available in struct_domain and only at file-static or
1727 basic_lookup_transparent_type (const char *name)
1730 struct symtab *s = NULL;
1731 struct partial_symtab *ps;
1732 struct blockvector *bv;
1733 struct objfile *objfile;
1734 struct block *block;
1736 /* Now search all the global symbols. Do the symtab's first, then
1737 check the psymtab's. If a psymtab indicates the existence
1738 of the desired name as a global, then do psymtab-to-symtab
1739 conversion on the fly and return the found symbol. */
1741 ALL_PRIMARY_SYMTABS (objfile, s)
1743 bv = BLOCKVECTOR (s);
1744 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1745 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1746 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1748 return SYMBOL_TYPE (sym);
1752 ALL_PSYMTABS (objfile, ps)
1754 if (!ps->readin && lookup_partial_symbol (ps, name, NULL,
1757 s = PSYMTAB_TO_SYMTAB (ps);
1758 bv = BLOCKVECTOR (s);
1759 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1760 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1763 /* This shouldn't be necessary, but as a last resort
1764 * try looking in the statics even though the psymtab
1765 * claimed the symbol was global. It's possible that
1766 * the psymtab gets it wrong in some cases.
1768 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1769 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1771 error (_("Internal: global symbol `%s' found in %s psymtab but not in symtab.\n\
1772 %s may be an inlined function, or may be a template function\n\
1773 (if a template, try specifying an instantiation: %s<type>)."),
1774 name, ps->filename, name, name);
1776 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1777 return SYMBOL_TYPE (sym);
1781 /* Now search the static file-level symbols.
1782 Not strictly correct, but more useful than an error.
1783 Do the symtab's first, then
1784 check the psymtab's. If a psymtab indicates the existence
1785 of the desired name as a file-level static, then do psymtab-to-symtab
1786 conversion on the fly and return the found symbol.
1789 ALL_PRIMARY_SYMTABS (objfile, s)
1791 bv = BLOCKVECTOR (s);
1792 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1793 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1794 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1796 return SYMBOL_TYPE (sym);
1800 ALL_PSYMTABS (objfile, ps)
1802 if (!ps->readin && lookup_partial_symbol (ps, name, NULL, 0, STRUCT_DOMAIN))
1804 s = PSYMTAB_TO_SYMTAB (ps);
1805 bv = BLOCKVECTOR (s);
1806 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1807 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1810 /* This shouldn't be necessary, but as a last resort
1811 * try looking in the globals even though the psymtab
1812 * claimed the symbol was static. It's possible that
1813 * the psymtab gets it wrong in some cases.
1815 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1816 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
1818 error (_("Internal: static symbol `%s' found in %s psymtab but not in symtab.\n\
1819 %s may be an inlined function, or may be a template function\n\
1820 (if a template, try specifying an instantiation: %s<type>)."),
1821 name, ps->filename, name, name);
1823 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1824 return SYMBOL_TYPE (sym);
1827 return (struct type *) 0;
1831 /* Find the psymtab containing main(). */
1832 /* FIXME: What about languages without main() or specially linked
1833 executables that have no main() ? */
1835 struct partial_symtab *
1836 find_main_psymtab (void)
1838 struct partial_symtab *pst;
1839 struct objfile *objfile;
1841 ALL_PSYMTABS (objfile, pst)
1843 if (lookup_partial_symbol (pst, main_name (), NULL, 1, VAR_DOMAIN))
1851 /* Search BLOCK for symbol NAME in DOMAIN.
1853 Note that if NAME is the demangled form of a C++ symbol, we will fail
1854 to find a match during the binary search of the non-encoded names, but
1855 for now we don't worry about the slight inefficiency of looking for
1856 a match we'll never find, since it will go pretty quick. Once the
1857 binary search terminates, we drop through and do a straight linear
1858 search on the symbols. Each symbol which is marked as being a ObjC/C++
1859 symbol (language_cplus or language_objc set) has both the encoded and
1860 non-encoded names tested for a match.
1862 If LINKAGE_NAME is non-NULL, verify that any symbol we find has this
1863 particular mangled name.
1867 lookup_block_symbol (const struct block *block, const char *name,
1868 const char *linkage_name,
1869 const domain_enum domain)
1871 struct dict_iterator iter;
1874 if (!BLOCK_FUNCTION (block))
1876 for (sym = dict_iter_name_first (BLOCK_DICT (block), name, &iter);
1878 sym = dict_iter_name_next (name, &iter))
1880 if (SYMBOL_DOMAIN (sym) == domain
1881 && (linkage_name != NULL
1882 ? strcmp (SYMBOL_LINKAGE_NAME (sym), linkage_name) == 0 : 1))
1889 /* Note that parameter symbols do not always show up last in the
1890 list; this loop makes sure to take anything else other than
1891 parameter symbols first; it only uses parameter symbols as a
1892 last resort. Note that this only takes up extra computation
1895 struct symbol *sym_found = NULL;
1897 for (sym = dict_iter_name_first (BLOCK_DICT (block), name, &iter);
1899 sym = dict_iter_name_next (name, &iter))
1901 if (SYMBOL_DOMAIN (sym) == domain
1902 && (linkage_name != NULL
1903 ? strcmp (SYMBOL_LINKAGE_NAME (sym), linkage_name) == 0 : 1))
1906 if (SYMBOL_CLASS (sym) != LOC_ARG &&
1907 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
1908 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
1909 SYMBOL_CLASS (sym) != LOC_REGPARM &&
1910 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
1911 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG &&
1912 SYMBOL_CLASS (sym) != LOC_COMPUTED_ARG)
1918 return (sym_found); /* Will be NULL if not found. */
1922 /* Find the symtab associated with PC and SECTION. Look through the
1923 psymtabs and read in another symtab if necessary. */
1926 find_pc_sect_symtab (CORE_ADDR pc, asection *section)
1929 struct blockvector *bv;
1930 struct symtab *s = NULL;
1931 struct symtab *best_s = NULL;
1932 struct partial_symtab *ps;
1933 struct objfile *objfile;
1934 CORE_ADDR distance = 0;
1935 struct minimal_symbol *msymbol;
1937 /* If we know that this is not a text address, return failure. This is
1938 necessary because we loop based on the block's high and low code
1939 addresses, which do not include the data ranges, and because
1940 we call find_pc_sect_psymtab which has a similar restriction based
1941 on the partial_symtab's texthigh and textlow. */
1942 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
1944 && (msymbol->type == mst_data
1945 || msymbol->type == mst_bss
1946 || msymbol->type == mst_abs
1947 || msymbol->type == mst_file_data
1948 || msymbol->type == mst_file_bss))
1951 /* Search all symtabs for the one whose file contains our address, and which
1952 is the smallest of all the ones containing the address. This is designed
1953 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
1954 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
1955 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
1957 This happens for native ecoff format, where code from included files
1958 gets its own symtab. The symtab for the included file should have
1959 been read in already via the dependency mechanism.
1960 It might be swifter to create several symtabs with the same name
1961 like xcoff does (I'm not sure).
1963 It also happens for objfiles that have their functions reordered.
1964 For these, the symtab we are looking for is not necessarily read in. */
1966 ALL_PRIMARY_SYMTABS (objfile, s)
1968 bv = BLOCKVECTOR (s);
1969 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1971 if (BLOCK_START (b) <= pc
1972 && BLOCK_END (b) > pc
1974 || BLOCK_END (b) - BLOCK_START (b) < distance))
1976 /* For an objfile that has its functions reordered,
1977 find_pc_psymtab will find the proper partial symbol table
1978 and we simply return its corresponding symtab. */
1979 /* In order to better support objfiles that contain both
1980 stabs and coff debugging info, we continue on if a psymtab
1982 if ((objfile->flags & OBJF_REORDERED) && objfile->psymtabs)
1984 ps = find_pc_sect_psymtab (pc, section);
1986 return PSYMTAB_TO_SYMTAB (ps);
1990 struct dict_iterator iter;
1991 struct symbol *sym = NULL;
1993 ALL_BLOCK_SYMBOLS (b, iter, sym)
1995 fixup_symbol_section (sym, objfile);
1996 if (matching_bfd_sections (SYMBOL_BFD_SECTION (sym), section))
2000 continue; /* no symbol in this symtab matches section */
2002 distance = BLOCK_END (b) - BLOCK_START (b);
2011 ps = find_pc_sect_psymtab (pc, section);
2015 /* Might want to error() here (in case symtab is corrupt and
2016 will cause a core dump), but maybe we can successfully
2017 continue, so let's not. */
2019 (Internal error: pc 0x%s in read in psymtab, but not in symtab.)\n"),
2021 s = PSYMTAB_TO_SYMTAB (ps);
2026 /* Find the symtab associated with PC. Look through the psymtabs and
2027 read in another symtab if necessary. Backward compatibility, no section */
2030 find_pc_symtab (CORE_ADDR pc)
2032 return find_pc_sect_symtab (pc, find_pc_mapped_section (pc));
2036 /* Find the source file and line number for a given PC value and SECTION.
2037 Return a structure containing a symtab pointer, a line number,
2038 and a pc range for the entire source line.
2039 The value's .pc field is NOT the specified pc.
2040 NOTCURRENT nonzero means, if specified pc is on a line boundary,
2041 use the line that ends there. Otherwise, in that case, the line
2042 that begins there is used. */
2044 /* The big complication here is that a line may start in one file, and end just
2045 before the start of another file. This usually occurs when you #include
2046 code in the middle of a subroutine. To properly find the end of a line's PC
2047 range, we must search all symtabs associated with this compilation unit, and
2048 find the one whose first PC is closer than that of the next line in this
2051 /* If it's worth the effort, we could be using a binary search. */
2053 struct symtab_and_line
2054 find_pc_sect_line (CORE_ADDR pc, struct bfd_section *section, int notcurrent)
2057 struct linetable *l;
2060 struct linetable_entry *item;
2061 struct symtab_and_line val;
2062 struct blockvector *bv;
2063 struct minimal_symbol *msymbol;
2064 struct minimal_symbol *mfunsym;
2066 /* Info on best line seen so far, and where it starts, and its file. */
2068 struct linetable_entry *best = NULL;
2069 CORE_ADDR best_end = 0;
2070 struct symtab *best_symtab = 0;
2072 /* Store here the first line number
2073 of a file which contains the line at the smallest pc after PC.
2074 If we don't find a line whose range contains PC,
2075 we will use a line one less than this,
2076 with a range from the start of that file to the first line's pc. */
2077 struct linetable_entry *alt = NULL;
2078 struct symtab *alt_symtab = 0;
2080 /* Info on best line seen in this file. */
2082 struct linetable_entry *prev;
2084 /* If this pc is not from the current frame,
2085 it is the address of the end of a call instruction.
2086 Quite likely that is the start of the following statement.
2087 But what we want is the statement containing the instruction.
2088 Fudge the pc to make sure we get that. */
2090 init_sal (&val); /* initialize to zeroes */
2092 /* It's tempting to assume that, if we can't find debugging info for
2093 any function enclosing PC, that we shouldn't search for line
2094 number info, either. However, GAS can emit line number info for
2095 assembly files --- very helpful when debugging hand-written
2096 assembly code. In such a case, we'd have no debug info for the
2097 function, but we would have line info. */
2102 /* elz: added this because this function returned the wrong
2103 information if the pc belongs to a stub (import/export)
2104 to call a shlib function. This stub would be anywhere between
2105 two functions in the target, and the line info was erroneously
2106 taken to be the one of the line before the pc.
2108 /* RT: Further explanation:
2110 * We have stubs (trampolines) inserted between procedures.
2112 * Example: "shr1" exists in a shared library, and a "shr1" stub also
2113 * exists in the main image.
2115 * In the minimal symbol table, we have a bunch of symbols
2116 * sorted by start address. The stubs are marked as "trampoline",
2117 * the others appear as text. E.g.:
2119 * Minimal symbol table for main image
2120 * main: code for main (text symbol)
2121 * shr1: stub (trampoline symbol)
2122 * foo: code for foo (text symbol)
2124 * Minimal symbol table for "shr1" image:
2126 * shr1: code for shr1 (text symbol)
2129 * So the code below is trying to detect if we are in the stub
2130 * ("shr1" stub), and if so, find the real code ("shr1" trampoline),
2131 * and if found, do the symbolization from the real-code address
2132 * rather than the stub address.
2134 * Assumptions being made about the minimal symbol table:
2135 * 1. lookup_minimal_symbol_by_pc() will return a trampoline only
2136 * if we're really in the trampoline. If we're beyond it (say
2137 * we're in "foo" in the above example), it'll have a closer
2138 * symbol (the "foo" text symbol for example) and will not
2139 * return the trampoline.
2140 * 2. lookup_minimal_symbol_text() will find a real text symbol
2141 * corresponding to the trampoline, and whose address will
2142 * be different than the trampoline address. I put in a sanity
2143 * check for the address being the same, to avoid an
2144 * infinite recursion.
2146 msymbol = lookup_minimal_symbol_by_pc (pc);
2147 if (msymbol != NULL)
2148 if (MSYMBOL_TYPE (msymbol) == mst_solib_trampoline)
2150 mfunsym = lookup_minimal_symbol_text (SYMBOL_LINKAGE_NAME (msymbol),
2152 if (mfunsym == NULL)
2153 /* I eliminated this warning since it is coming out
2154 * in the following situation:
2155 * gdb shmain // test program with shared libraries
2156 * (gdb) break shr1 // function in shared lib
2157 * Warning: In stub for ...
2158 * In the above situation, the shared lib is not loaded yet,
2159 * so of course we can't find the real func/line info,
2160 * but the "break" still works, and the warning is annoying.
2161 * So I commented out the warning. RT */
2162 /* warning ("In stub for %s; unable to find real function/line info", SYMBOL_LINKAGE_NAME (msymbol)) */ ;
2164 else if (SYMBOL_VALUE (mfunsym) == SYMBOL_VALUE (msymbol))
2165 /* Avoid infinite recursion */
2166 /* See above comment about why warning is commented out */
2167 /* warning ("In stub for %s; unable to find real function/line info", SYMBOL_LINKAGE_NAME (msymbol)) */ ;
2170 return find_pc_line (SYMBOL_VALUE (mfunsym), 0);
2174 s = find_pc_sect_symtab (pc, section);
2177 /* if no symbol information, return previous pc */
2184 bv = BLOCKVECTOR (s);
2186 /* Look at all the symtabs that share this blockvector.
2187 They all have the same apriori range, that we found was right;
2188 but they have different line tables. */
2190 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
2192 /* Find the best line in this symtab. */
2199 /* I think len can be zero if the symtab lacks line numbers
2200 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
2201 I'm not sure which, and maybe it depends on the symbol
2207 item = l->item; /* Get first line info */
2209 /* Is this file's first line closer than the first lines of other files?
2210 If so, record this file, and its first line, as best alternate. */
2211 if (item->pc > pc && (!alt || item->pc < alt->pc))
2217 for (i = 0; i < len; i++, item++)
2219 /* Leave prev pointing to the linetable entry for the last line
2220 that started at or before PC. */
2227 /* At this point, prev points at the line whose start addr is <= pc, and
2228 item points at the next line. If we ran off the end of the linetable
2229 (pc >= start of the last line), then prev == item. If pc < start of
2230 the first line, prev will not be set. */
2232 /* Is this file's best line closer than the best in the other files?
2233 If so, record this file, and its best line, as best so far. Don't
2234 save prev if it represents the end of a function (i.e. line number
2235 0) instead of a real line. */
2237 if (prev && prev->line && (!best || prev->pc > best->pc))
2242 /* Discard BEST_END if it's before the PC of the current BEST. */
2243 if (best_end <= best->pc)
2247 /* If another line (denoted by ITEM) is in the linetable and its
2248 PC is after BEST's PC, but before the current BEST_END, then
2249 use ITEM's PC as the new best_end. */
2250 if (best && i < len && item->pc > best->pc
2251 && (best_end == 0 || best_end > item->pc))
2252 best_end = item->pc;
2257 /* If we didn't find any line number info, just return zeros.
2258 We used to return alt->line - 1 here, but that could be
2259 anywhere; if we don't have line number info for this PC,
2260 don't make some up. */
2263 else if (best->line == 0)
2265 /* If our best fit is in a range of PC's for which no line
2266 number info is available (line number is zero) then we didn't
2267 find any valid line information. */
2272 val.symtab = best_symtab;
2273 val.line = best->line;
2275 if (best_end && (!alt || best_end < alt->pc))
2280 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2282 val.section = section;
2286 /* Backward compatibility (no section) */
2288 struct symtab_and_line
2289 find_pc_line (CORE_ADDR pc, int notcurrent)
2293 section = find_pc_overlay (pc);
2294 if (pc_in_unmapped_range (pc, section))
2295 pc = overlay_mapped_address (pc, section);
2296 return find_pc_sect_line (pc, section, notcurrent);
2299 /* Find line number LINE in any symtab whose name is the same as
2302 If found, return the symtab that contains the linetable in which it was
2303 found, set *INDEX to the index in the linetable of the best entry
2304 found, and set *EXACT_MATCH nonzero if the value returned is an
2307 If not found, return NULL. */
2310 find_line_symtab (struct symtab *symtab, int line, int *index, int *exact_match)
2314 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
2318 struct linetable *best_linetable;
2319 struct symtab *best_symtab;
2321 /* First try looking it up in the given symtab. */
2322 best_linetable = LINETABLE (symtab);
2323 best_symtab = symtab;
2324 best_index = find_line_common (best_linetable, line, &exact);
2325 if (best_index < 0 || !exact)
2327 /* Didn't find an exact match. So we better keep looking for
2328 another symtab with the same name. In the case of xcoff,
2329 multiple csects for one source file (produced by IBM's FORTRAN
2330 compiler) produce multiple symtabs (this is unavoidable
2331 assuming csects can be at arbitrary places in memory and that
2332 the GLOBAL_BLOCK of a symtab has a begin and end address). */
2334 /* BEST is the smallest linenumber > LINE so far seen,
2335 or 0 if none has been seen so far.
2336 BEST_INDEX and BEST_LINETABLE identify the item for it. */
2339 struct objfile *objfile;
2342 if (best_index >= 0)
2343 best = best_linetable->item[best_index].line;
2347 ALL_SYMTABS (objfile, s)
2349 struct linetable *l;
2352 if (strcmp (symtab->filename, s->filename) != 0)
2355 ind = find_line_common (l, line, &exact);
2365 if (best == 0 || l->item[ind].line < best)
2367 best = l->item[ind].line;
2380 *index = best_index;
2382 *exact_match = exact;
2387 /* Set the PC value for a given source file and line number and return true.
2388 Returns zero for invalid line number (and sets the PC to 0).
2389 The source file is specified with a struct symtab. */
2392 find_line_pc (struct symtab *symtab, int line, CORE_ADDR *pc)
2394 struct linetable *l;
2401 symtab = find_line_symtab (symtab, line, &ind, NULL);
2404 l = LINETABLE (symtab);
2405 *pc = l->item[ind].pc;
2412 /* Find the range of pc values in a line.
2413 Store the starting pc of the line into *STARTPTR
2414 and the ending pc (start of next line) into *ENDPTR.
2415 Returns 1 to indicate success.
2416 Returns 0 if could not find the specified line. */
2419 find_line_pc_range (struct symtab_and_line sal, CORE_ADDR *startptr,
2422 CORE_ADDR startaddr;
2423 struct symtab_and_line found_sal;
2426 if (startaddr == 0 && !find_line_pc (sal.symtab, sal.line, &startaddr))
2429 /* This whole function is based on address. For example, if line 10 has
2430 two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
2431 "info line *0x123" should say the line goes from 0x100 to 0x200
2432 and "info line *0x355" should say the line goes from 0x300 to 0x400.
2433 This also insures that we never give a range like "starts at 0x134
2434 and ends at 0x12c". */
2436 found_sal = find_pc_sect_line (startaddr, sal.section, 0);
2437 if (found_sal.line != sal.line)
2439 /* The specified line (sal) has zero bytes. */
2440 *startptr = found_sal.pc;
2441 *endptr = found_sal.pc;
2445 *startptr = found_sal.pc;
2446 *endptr = found_sal.end;
2451 /* Given a line table and a line number, return the index into the line
2452 table for the pc of the nearest line whose number is >= the specified one.
2453 Return -1 if none is found. The value is >= 0 if it is an index.
2455 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
2458 find_line_common (struct linetable *l, int lineno,
2464 /* BEST is the smallest linenumber > LINENO so far seen,
2465 or 0 if none has been seen so far.
2466 BEST_INDEX identifies the item for it. */
2468 int best_index = -1;
2477 for (i = 0; i < len; i++)
2479 struct linetable_entry *item = &(l->item[i]);
2481 if (item->line == lineno)
2483 /* Return the first (lowest address) entry which matches. */
2488 if (item->line > lineno && (best == 0 || item->line < best))
2495 /* If we got here, we didn't get an exact match. */
2502 find_pc_line_pc_range (CORE_ADDR pc, CORE_ADDR *startptr, CORE_ADDR *endptr)
2504 struct symtab_and_line sal;
2505 sal = find_pc_line (pc, 0);
2508 return sal.symtab != 0;
2511 /* Given a function symbol SYM, find the symtab and line for the start
2513 If the argument FUNFIRSTLINE is nonzero, we want the first line
2514 of real code inside the function. */
2516 struct symtab_and_line
2517 find_function_start_sal (struct symbol *sym, int funfirstline)
2520 struct symtab_and_line sal;
2522 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
2523 fixup_symbol_section (sym, NULL);
2525 { /* skip "first line" of function (which is actually its prologue) */
2526 asection *section = SYMBOL_BFD_SECTION (sym);
2527 /* If function is in an unmapped overlay, use its unmapped LMA
2528 address, so that SKIP_PROLOGUE has something unique to work on */
2529 if (section_is_overlay (section) &&
2530 !section_is_mapped (section))
2531 pc = overlay_unmapped_address (pc, section);
2533 pc += DEPRECATED_FUNCTION_START_OFFSET;
2534 pc = SKIP_PROLOGUE (pc);
2536 /* For overlays, map pc back into its mapped VMA range */
2537 pc = overlay_mapped_address (pc, section);
2539 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2541 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
2542 line is still part of the same function. */
2544 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= sal.end
2545 && sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
2547 /* First pc of next line */
2549 /* Recalculate the line number (might not be N+1). */
2550 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2557 /* If P is of the form "operator[ \t]+..." where `...' is
2558 some legitimate operator text, return a pointer to the
2559 beginning of the substring of the operator text.
2560 Otherwise, return "". */
2562 operator_chars (char *p, char **end)
2565 if (strncmp (p, "operator", 8))
2569 /* Don't get faked out by `operator' being part of a longer
2571 if (isalpha (*p) || *p == '_' || *p == '$' || *p == '\0')
2574 /* Allow some whitespace between `operator' and the operator symbol. */
2575 while (*p == ' ' || *p == '\t')
2578 /* Recognize 'operator TYPENAME'. */
2580 if (isalpha (*p) || *p == '_' || *p == '$')
2583 while (isalnum (*q) || *q == '_' || *q == '$')
2592 case '\\': /* regexp quoting */
2595 if (p[2] == '=') /* 'operator\*=' */
2597 else /* 'operator\*' */
2601 else if (p[1] == '[')
2604 error (_("mismatched quoting on brackets, try 'operator\\[\\]'"));
2605 else if (p[2] == '\\' && p[3] == ']')
2607 *end = p + 4; /* 'operator\[\]' */
2611 error (_("nothing is allowed between '[' and ']'"));
2615 /* Gratuitous qoute: skip it and move on. */
2637 if (p[0] == '-' && p[1] == '>')
2639 /* Struct pointer member operator 'operator->'. */
2642 *end = p + 3; /* 'operator->*' */
2645 else if (p[2] == '\\')
2647 *end = p + 4; /* Hopefully 'operator->\*' */
2652 *end = p + 2; /* 'operator->' */
2656 if (p[1] == '=' || p[1] == p[0])
2667 error (_("`operator ()' must be specified without whitespace in `()'"));
2672 error (_("`operator ?:' must be specified without whitespace in `?:'"));
2677 error (_("`operator []' must be specified without whitespace in `[]'"));
2681 error (_("`operator %s' not supported"), p);
2690 /* If FILE is not already in the table of files, return zero;
2691 otherwise return non-zero. Optionally add FILE to the table if ADD
2692 is non-zero. If *FIRST is non-zero, forget the old table
2695 filename_seen (const char *file, int add, int *first)
2697 /* Table of files seen so far. */
2698 static const char **tab = NULL;
2699 /* Allocated size of tab in elements.
2700 Start with one 256-byte block (when using GNU malloc.c).
2701 24 is the malloc overhead when range checking is in effect. */
2702 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2703 /* Current size of tab in elements. */
2704 static int tab_cur_size;
2710 tab = (const char **) xmalloc (tab_alloc_size * sizeof (*tab));
2714 /* Is FILE in tab? */
2715 for (p = tab; p < tab + tab_cur_size; p++)
2716 if (strcmp (*p, file) == 0)
2719 /* No; maybe add it to tab. */
2722 if (tab_cur_size == tab_alloc_size)
2724 tab_alloc_size *= 2;
2725 tab = (const char **) xrealloc ((char *) tab,
2726 tab_alloc_size * sizeof (*tab));
2728 tab[tab_cur_size++] = file;
2734 /* Slave routine for sources_info. Force line breaks at ,'s.
2735 NAME is the name to print and *FIRST is nonzero if this is the first
2736 name printed. Set *FIRST to zero. */
2738 output_source_filename (const char *name, int *first)
2740 /* Since a single source file can result in several partial symbol
2741 tables, we need to avoid printing it more than once. Note: if
2742 some of the psymtabs are read in and some are not, it gets
2743 printed both under "Source files for which symbols have been
2744 read" and "Source files for which symbols will be read in on
2745 demand". I consider this a reasonable way to deal with the
2746 situation. I'm not sure whether this can also happen for
2747 symtabs; it doesn't hurt to check. */
2749 /* Was NAME already seen? */
2750 if (filename_seen (name, 1, first))
2752 /* Yes; don't print it again. */
2755 /* No; print it and reset *FIRST. */
2762 printf_filtered (", ");
2766 fputs_filtered (name, gdb_stdout);
2770 sources_info (char *ignore, int from_tty)
2773 struct partial_symtab *ps;
2774 struct objfile *objfile;
2777 if (!have_full_symbols () && !have_partial_symbols ())
2779 error (_("No symbol table is loaded. Use the \"file\" command."));
2782 printf_filtered ("Source files for which symbols have been read in:\n\n");
2785 ALL_SYMTABS (objfile, s)
2787 const char *fullname = symtab_to_fullname (s);
2788 output_source_filename (fullname ? fullname : s->filename, &first);
2790 printf_filtered ("\n\n");
2792 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2795 ALL_PSYMTABS (objfile, ps)
2799 const char *fullname = psymtab_to_fullname (ps);
2800 output_source_filename (fullname ? fullname : ps->filename, &first);
2803 printf_filtered ("\n");
2807 file_matches (char *file, char *files[], int nfiles)
2811 if (file != NULL && nfiles != 0)
2813 for (i = 0; i < nfiles; i++)
2815 if (strcmp (files[i], lbasename (file)) == 0)
2819 else if (nfiles == 0)
2824 /* Free any memory associated with a search. */
2826 free_search_symbols (struct symbol_search *symbols)
2828 struct symbol_search *p;
2829 struct symbol_search *next;
2831 for (p = symbols; p != NULL; p = next)
2839 do_free_search_symbols_cleanup (void *symbols)
2841 free_search_symbols (symbols);
2845 make_cleanup_free_search_symbols (struct symbol_search *symbols)
2847 return make_cleanup (do_free_search_symbols_cleanup, symbols);
2850 /* Helper function for sort_search_symbols and qsort. Can only
2851 sort symbols, not minimal symbols. */
2853 compare_search_syms (const void *sa, const void *sb)
2855 struct symbol_search **sym_a = (struct symbol_search **) sa;
2856 struct symbol_search **sym_b = (struct symbol_search **) sb;
2858 return strcmp (SYMBOL_PRINT_NAME ((*sym_a)->symbol),
2859 SYMBOL_PRINT_NAME ((*sym_b)->symbol));
2862 /* Sort the ``nfound'' symbols in the list after prevtail. Leave
2863 prevtail where it is, but update its next pointer to point to
2864 the first of the sorted symbols. */
2865 static struct symbol_search *
2866 sort_search_symbols (struct symbol_search *prevtail, int nfound)
2868 struct symbol_search **symbols, *symp, *old_next;
2871 symbols = (struct symbol_search **) xmalloc (sizeof (struct symbol_search *)
2873 symp = prevtail->next;
2874 for (i = 0; i < nfound; i++)
2879 /* Generally NULL. */
2882 qsort (symbols, nfound, sizeof (struct symbol_search *),
2883 compare_search_syms);
2886 for (i = 0; i < nfound; i++)
2888 symp->next = symbols[i];
2891 symp->next = old_next;
2897 /* Search the symbol table for matches to the regular expression REGEXP,
2898 returning the results in *MATCHES.
2900 Only symbols of KIND are searched:
2901 FUNCTIONS_DOMAIN - search all functions
2902 TYPES_DOMAIN - search all type names
2903 METHODS_DOMAIN - search all methods NOT IMPLEMENTED
2904 VARIABLES_DOMAIN - search all symbols, excluding functions, type names,
2905 and constants (enums)
2907 free_search_symbols should be called when *MATCHES is no longer needed.
2909 The results are sorted locally; each symtab's global and static blocks are
2910 separately alphabetized.
2913 search_symbols (char *regexp, domain_enum kind, int nfiles, char *files[],
2914 struct symbol_search **matches)
2917 struct partial_symtab *ps;
2918 struct blockvector *bv;
2921 struct dict_iterator iter;
2923 struct partial_symbol **psym;
2924 struct objfile *objfile;
2925 struct minimal_symbol *msymbol;
2928 static enum minimal_symbol_type types[]
2930 {mst_data, mst_text, mst_abs, mst_unknown};
2931 static enum minimal_symbol_type types2[]
2933 {mst_bss, mst_file_text, mst_abs, mst_unknown};
2934 static enum minimal_symbol_type types3[]
2936 {mst_file_data, mst_solib_trampoline, mst_abs, mst_unknown};
2937 static enum minimal_symbol_type types4[]
2939 {mst_file_bss, mst_text, mst_abs, mst_unknown};
2940 enum minimal_symbol_type ourtype;
2941 enum minimal_symbol_type ourtype2;
2942 enum minimal_symbol_type ourtype3;
2943 enum minimal_symbol_type ourtype4;
2944 struct symbol_search *sr;
2945 struct symbol_search *psr;
2946 struct symbol_search *tail;
2947 struct cleanup *old_chain = NULL;
2949 if (kind < VARIABLES_DOMAIN)
2950 error (_("must search on specific domain"));
2952 ourtype = types[(int) (kind - VARIABLES_DOMAIN)];
2953 ourtype2 = types2[(int) (kind - VARIABLES_DOMAIN)];
2954 ourtype3 = types3[(int) (kind - VARIABLES_DOMAIN)];
2955 ourtype4 = types4[(int) (kind - VARIABLES_DOMAIN)];
2957 sr = *matches = NULL;
2962 /* Make sure spacing is right for C++ operators.
2963 This is just a courtesy to make the matching less sensitive
2964 to how many spaces the user leaves between 'operator'
2965 and <TYPENAME> or <OPERATOR>. */
2967 char *opname = operator_chars (regexp, &opend);
2970 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2971 if (isalpha (*opname) || *opname == '_' || *opname == '$')
2973 /* There should 1 space between 'operator' and 'TYPENAME'. */
2974 if (opname[-1] != ' ' || opname[-2] == ' ')
2979 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2980 if (opname[-1] == ' ')
2983 /* If wrong number of spaces, fix it. */
2986 char *tmp = (char *) alloca (8 + fix + strlen (opname) + 1);
2987 sprintf (tmp, "operator%.*s%s", fix, " ", opname);
2992 if (0 != (val = re_comp (regexp)))
2993 error (_("Invalid regexp (%s): %s"), val, regexp);
2996 /* Search through the partial symtabs *first* for all symbols
2997 matching the regexp. That way we don't have to reproduce all of
2998 the machinery below. */
3000 ALL_PSYMTABS (objfile, ps)
3002 struct partial_symbol **bound, **gbound, **sbound;
3008 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
3009 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
3012 /* Go through all of the symbols stored in a partial
3013 symtab in one loop. */
3014 psym = objfile->global_psymbols.list + ps->globals_offset;
3019 if (bound == gbound && ps->n_static_syms != 0)
3021 psym = objfile->static_psymbols.list + ps->statics_offset;
3032 /* If it would match (logic taken from loop below)
3033 load the file and go on to the next one. We check the
3034 filename here, but that's a bit bogus: we don't know
3035 what file it really comes from until we have full
3036 symtabs. The symbol might be in a header file included by
3037 this psymtab. This only affects Insight. */
3038 if (file_matches (ps->filename, files, nfiles)
3040 || re_exec (SYMBOL_NATURAL_NAME (*psym)) != 0)
3041 && ((kind == VARIABLES_DOMAIN && SYMBOL_CLASS (*psym) != LOC_TYPEDEF
3042 && SYMBOL_CLASS (*psym) != LOC_BLOCK)
3043 || (kind == FUNCTIONS_DOMAIN && SYMBOL_CLASS (*psym) == LOC_BLOCK)
3044 || (kind == TYPES_DOMAIN && SYMBOL_CLASS (*psym) == LOC_TYPEDEF)
3045 || (kind == METHODS_DOMAIN && SYMBOL_CLASS (*psym) == LOC_BLOCK))))
3047 PSYMTAB_TO_SYMTAB (ps);
3055 /* Here, we search through the minimal symbol tables for functions
3056 and variables that match, and force their symbols to be read.
3057 This is in particular necessary for demangled variable names,
3058 which are no longer put into the partial symbol tables.
3059 The symbol will then be found during the scan of symtabs below.
3061 For functions, find_pc_symtab should succeed if we have debug info
3062 for the function, for variables we have to call lookup_symbol
3063 to determine if the variable has debug info.
3064 If the lookup fails, set found_misc so that we will rescan to print
3065 any matching symbols without debug info.
3068 if (nfiles == 0 && (kind == VARIABLES_DOMAIN || kind == FUNCTIONS_DOMAIN))
3070 ALL_MSYMBOLS (objfile, msymbol)
3072 if (MSYMBOL_TYPE (msymbol) == ourtype ||
3073 MSYMBOL_TYPE (msymbol) == ourtype2 ||
3074 MSYMBOL_TYPE (msymbol) == ourtype3 ||
3075 MSYMBOL_TYPE (msymbol) == ourtype4)
3078 || re_exec (SYMBOL_NATURAL_NAME (msymbol)) != 0)
3080 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
3082 /* FIXME: carlton/2003-02-04: Given that the
3083 semantics of lookup_symbol keeps on changing
3084 slightly, it would be a nice idea if we had a
3085 function lookup_symbol_minsym that found the
3086 symbol associated to a given minimal symbol (if
3088 if (kind == FUNCTIONS_DOMAIN
3089 || lookup_symbol (SYMBOL_LINKAGE_NAME (msymbol),
3090 (struct block *) NULL,
3092 0, (struct symtab **) NULL)
3101 ALL_PRIMARY_SYMTABS (objfile, s)
3103 bv = BLOCKVECTOR (s);
3104 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
3106 struct symbol_search *prevtail = tail;
3108 b = BLOCKVECTOR_BLOCK (bv, i);
3109 ALL_BLOCK_SYMBOLS (b, iter, sym)
3111 struct symtab *real_symtab = SYMBOL_SYMTAB (sym);
3114 if (file_matches (real_symtab->filename, files, nfiles)
3116 || re_exec (SYMBOL_NATURAL_NAME (sym)) != 0)
3117 && ((kind == VARIABLES_DOMAIN && SYMBOL_CLASS (sym) != LOC_TYPEDEF
3118 && SYMBOL_CLASS (sym) != LOC_BLOCK
3119 && SYMBOL_CLASS (sym) != LOC_CONST)
3120 || (kind == FUNCTIONS_DOMAIN && SYMBOL_CLASS (sym) == LOC_BLOCK)
3121 || (kind == TYPES_DOMAIN && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
3122 || (kind == METHODS_DOMAIN && SYMBOL_CLASS (sym) == LOC_BLOCK))))
3125 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
3127 psr->symtab = real_symtab;
3129 psr->msymbol = NULL;
3141 if (prevtail == NULL)
3143 struct symbol_search dummy;
3146 tail = sort_search_symbols (&dummy, nfound);
3149 old_chain = make_cleanup_free_search_symbols (sr);
3152 tail = sort_search_symbols (prevtail, nfound);
3157 /* If there are no eyes, avoid all contact. I mean, if there are
3158 no debug symbols, then print directly from the msymbol_vector. */
3160 if (found_misc || kind != FUNCTIONS_DOMAIN)
3162 ALL_MSYMBOLS (objfile, msymbol)
3164 if (MSYMBOL_TYPE (msymbol) == ourtype ||
3165 MSYMBOL_TYPE (msymbol) == ourtype2 ||
3166 MSYMBOL_TYPE (msymbol) == ourtype3 ||
3167 MSYMBOL_TYPE (msymbol) == ourtype4)
3170 || re_exec (SYMBOL_NATURAL_NAME (msymbol)) != 0)
3172 /* Functions: Look up by address. */
3173 if (kind != FUNCTIONS_DOMAIN ||
3174 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
3176 /* Variables/Absolutes: Look up by name */
3177 if (lookup_symbol (SYMBOL_LINKAGE_NAME (msymbol),
3178 (struct block *) NULL, VAR_DOMAIN,
3179 0, (struct symtab **) NULL) == NULL)
3182 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
3184 psr->msymbol = msymbol;
3191 old_chain = make_cleanup_free_search_symbols (sr);
3205 discard_cleanups (old_chain);
3208 /* Helper function for symtab_symbol_info, this function uses
3209 the data returned from search_symbols() to print information
3210 regarding the match to gdb_stdout.
3213 print_symbol_info (domain_enum kind, struct symtab *s, struct symbol *sym,
3214 int block, char *last)
3216 if (last == NULL || strcmp (last, s->filename) != 0)
3218 fputs_filtered ("\nFile ", gdb_stdout);
3219 fputs_filtered (s->filename, gdb_stdout);
3220 fputs_filtered (":\n", gdb_stdout);
3223 if (kind != TYPES_DOMAIN && block == STATIC_BLOCK)
3224 printf_filtered ("static ");
3226 /* Typedef that is not a C++ class */
3227 if (kind == TYPES_DOMAIN
3228 && SYMBOL_DOMAIN (sym) != STRUCT_DOMAIN)
3229 typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout);
3230 /* variable, func, or typedef-that-is-c++-class */
3231 else if (kind < TYPES_DOMAIN ||
3232 (kind == TYPES_DOMAIN &&
3233 SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN))
3235 type_print (SYMBOL_TYPE (sym),
3236 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3237 ? "" : SYMBOL_PRINT_NAME (sym)),
3240 printf_filtered (";\n");
3244 /* This help function for symtab_symbol_info() prints information
3245 for non-debugging symbols to gdb_stdout.
3248 print_msymbol_info (struct minimal_symbol *msymbol)
3252 if (TARGET_ADDR_BIT <= 32)
3253 tmp = hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol)
3254 & (CORE_ADDR) 0xffffffff,
3257 tmp = hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol),
3259 printf_filtered ("%s %s\n",
3260 tmp, SYMBOL_PRINT_NAME (msymbol));
3263 /* This is the guts of the commands "info functions", "info types", and
3264 "info variables". It calls search_symbols to find all matches and then
3265 print_[m]symbol_info to print out some useful information about the
3269 symtab_symbol_info (char *regexp, domain_enum kind, int from_tty)
3271 static char *classnames[]
3273 {"variable", "function", "type", "method"};
3274 struct symbol_search *symbols;
3275 struct symbol_search *p;
3276 struct cleanup *old_chain;
3277 char *last_filename = NULL;
3280 /* must make sure that if we're interrupted, symbols gets freed */
3281 search_symbols (regexp, kind, 0, (char **) NULL, &symbols);
3282 old_chain = make_cleanup_free_search_symbols (symbols);
3284 printf_filtered (regexp
3285 ? "All %ss matching regular expression \"%s\":\n"
3286 : "All defined %ss:\n",
3287 classnames[(int) (kind - VARIABLES_DOMAIN)], regexp);
3289 for (p = symbols; p != NULL; p = p->next)
3293 if (p->msymbol != NULL)
3297 printf_filtered ("\nNon-debugging symbols:\n");
3300 print_msymbol_info (p->msymbol);
3304 print_symbol_info (kind,
3309 last_filename = p->symtab->filename;
3313 do_cleanups (old_chain);
3317 variables_info (char *regexp, int from_tty)
3319 symtab_symbol_info (regexp, VARIABLES_DOMAIN, from_tty);
3323 functions_info (char *regexp, int from_tty)
3325 symtab_symbol_info (regexp, FUNCTIONS_DOMAIN, from_tty);
3330 types_info (char *regexp, int from_tty)
3332 symtab_symbol_info (regexp, TYPES_DOMAIN, from_tty);
3335 /* Breakpoint all functions matching regular expression. */
3338 rbreak_command_wrapper (char *regexp, int from_tty)
3340 rbreak_command (regexp, from_tty);
3344 rbreak_command (char *regexp, int from_tty)
3346 struct symbol_search *ss;
3347 struct symbol_search *p;
3348 struct cleanup *old_chain;
3350 search_symbols (regexp, FUNCTIONS_DOMAIN, 0, (char **) NULL, &ss);
3351 old_chain = make_cleanup_free_search_symbols (ss);
3353 for (p = ss; p != NULL; p = p->next)
3355 if (p->msymbol == NULL)
3357 char *string = alloca (strlen (p->symtab->filename)
3358 + strlen (SYMBOL_LINKAGE_NAME (p->symbol))
3360 strcpy (string, p->symtab->filename);
3361 strcat (string, ":'");
3362 strcat (string, SYMBOL_LINKAGE_NAME (p->symbol));
3363 strcat (string, "'");
3364 break_command (string, from_tty);
3365 print_symbol_info (FUNCTIONS_DOMAIN,
3369 p->symtab->filename);
3373 break_command (SYMBOL_LINKAGE_NAME (p->msymbol), from_tty);
3374 printf_filtered ("<function, no debug info> %s;\n",
3375 SYMBOL_PRINT_NAME (p->msymbol));
3379 do_cleanups (old_chain);
3383 /* Helper routine for make_symbol_completion_list. */
3385 static int return_val_size;
3386 static int return_val_index;
3387 static char **return_val;
3389 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
3390 completion_list_add_name \
3391 (SYMBOL_NATURAL_NAME (symbol), (sym_text), (len), (text), (word))
3393 /* Test to see if the symbol specified by SYMNAME (which is already
3394 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
3395 characters. If so, add it to the current completion list. */
3398 completion_list_add_name (char *symname, char *sym_text, int sym_text_len,
3399 char *text, char *word)
3404 /* clip symbols that cannot match */
3406 if (strncmp (symname, sym_text, sym_text_len) != 0)
3411 /* We have a match for a completion, so add SYMNAME to the current list
3412 of matches. Note that the name is moved to freshly malloc'd space. */
3416 if (word == sym_text)
3418 new = xmalloc (strlen (symname) + 5);
3419 strcpy (new, symname);
3421 else if (word > sym_text)
3423 /* Return some portion of symname. */
3424 new = xmalloc (strlen (symname) + 5);
3425 strcpy (new, symname + (word - sym_text));
3429 /* Return some of SYM_TEXT plus symname. */
3430 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
3431 strncpy (new, word, sym_text - word);
3432 new[sym_text - word] = '\0';
3433 strcat (new, symname);
3436 if (return_val_index + 3 > return_val_size)
3438 newsize = (return_val_size *= 2) * sizeof (char *);
3439 return_val = (char **) xrealloc ((char *) return_val, newsize);
3441 return_val[return_val_index++] = new;
3442 return_val[return_val_index] = NULL;
3446 /* ObjC: In case we are completing on a selector, look as the msymbol
3447 again and feed all the selectors into the mill. */
3450 completion_list_objc_symbol (struct minimal_symbol *msymbol, char *sym_text,
3451 int sym_text_len, char *text, char *word)
3453 static char *tmp = NULL;
3454 static unsigned int tmplen = 0;
3456 char *method, *category, *selector;
3459 method = SYMBOL_NATURAL_NAME (msymbol);
3461 /* Is it a method? */
3462 if ((method[0] != '-') && (method[0] != '+'))
3465 if (sym_text[0] == '[')
3466 /* Complete on shortened method method. */
3467 completion_list_add_name (method + 1, sym_text, sym_text_len, text, word);
3469 while ((strlen (method) + 1) >= tmplen)
3475 tmp = xrealloc (tmp, tmplen);
3477 selector = strchr (method, ' ');
3478 if (selector != NULL)
3481 category = strchr (method, '(');
3483 if ((category != NULL) && (selector != NULL))
3485 memcpy (tmp, method, (category - method));
3486 tmp[category - method] = ' ';
3487 memcpy (tmp + (category - method) + 1, selector, strlen (selector) + 1);
3488 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3489 if (sym_text[0] == '[')
3490 completion_list_add_name (tmp + 1, sym_text, sym_text_len, text, word);
3493 if (selector != NULL)
3495 /* Complete on selector only. */
3496 strcpy (tmp, selector);
3497 tmp2 = strchr (tmp, ']');
3501 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3505 /* Break the non-quoted text based on the characters which are in
3506 symbols. FIXME: This should probably be language-specific. */
3509 language_search_unquoted_string (char *text, char *p)
3511 for (; p > text; --p)
3513 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3517 if ((current_language->la_language == language_objc))
3519 if (p[-1] == ':') /* might be part of a method name */
3521 else if (p[-1] == '[' && (p[-2] == '-' || p[-2] == '+'))
3522 p -= 2; /* beginning of a method name */
3523 else if (p[-1] == ' ' || p[-1] == '(' || p[-1] == ')')
3524 { /* might be part of a method name */
3527 /* Seeing a ' ' or a '(' is not conclusive evidence
3528 that we are in the middle of a method name. However,
3529 finding "-[" or "+[" should be pretty un-ambiguous.
3530 Unfortunately we have to find it now to decide. */
3533 if (isalnum (t[-1]) || t[-1] == '_' ||
3534 t[-1] == ' ' || t[-1] == ':' ||
3535 t[-1] == '(' || t[-1] == ')')
3540 if (t[-1] == '[' && (t[-2] == '-' || t[-2] == '+'))
3541 p = t - 2; /* method name detected */
3542 /* else we leave with p unchanged */
3552 /* Return a NULL terminated array of all symbols (regardless of class)
3553 which begin by matching TEXT. If the answer is no symbols, then
3554 the return value is an array which contains only a NULL pointer.
3556 Problem: All of the symbols have to be copied because readline frees them.
3557 I'm not going to worry about this; hopefully there won't be that many. */
3560 make_symbol_completion_list (char *text, char *word)
3564 struct partial_symtab *ps;
3565 struct minimal_symbol *msymbol;
3566 struct objfile *objfile;
3567 struct block *b, *surrounding_static_block = 0;
3568 struct dict_iterator iter;
3570 struct partial_symbol **psym;
3571 /* The symbol we are completing on. Points in same buffer as text. */
3573 /* Length of sym_text. */
3576 /* Now look for the symbol we are supposed to complete on.
3577 FIXME: This should be language-specific. */
3581 char *quote_pos = NULL;
3583 /* First see if this is a quoted string. */
3585 for (p = text; *p != '\0'; ++p)
3587 if (quote_found != '\0')
3589 if (*p == quote_found)
3590 /* Found close quote. */
3592 else if (*p == '\\' && p[1] == quote_found)
3593 /* A backslash followed by the quote character
3594 doesn't end the string. */
3597 else if (*p == '\'' || *p == '"')
3603 if (quote_found == '\'')
3604 /* A string within single quotes can be a symbol, so complete on it. */
3605 sym_text = quote_pos + 1;
3606 else if (quote_found == '"')
3607 /* A double-quoted string is never a symbol, nor does it make sense
3608 to complete it any other way. */
3610 return_val = (char **) xmalloc (sizeof (char *));
3611 return_val[0] = NULL;
3616 /* It is not a quoted string. Break it based on the characters
3617 which are in symbols. */
3620 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3629 sym_text_len = strlen (sym_text);
3631 return_val_size = 100;
3632 return_val_index = 0;
3633 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3634 return_val[0] = NULL;
3636 /* Look through the partial symtabs for all symbols which begin
3637 by matching SYM_TEXT. Add each one that you find to the list. */
3639 ALL_PSYMTABS (objfile, ps)
3641 /* If the psymtab's been read in we'll get it when we search
3642 through the blockvector. */
3646 for (psym = objfile->global_psymbols.list + ps->globals_offset;
3647 psym < (objfile->global_psymbols.list + ps->globals_offset
3648 + ps->n_global_syms);
3651 /* If interrupted, then quit. */
3653 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3656 for (psym = objfile->static_psymbols.list + ps->statics_offset;
3657 psym < (objfile->static_psymbols.list + ps->statics_offset
3658 + ps->n_static_syms);
3662 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3666 /* At this point scan through the misc symbol vectors and add each
3667 symbol you find to the list. Eventually we want to ignore
3668 anything that isn't a text symbol (everything else will be
3669 handled by the psymtab code above). */
3671 ALL_MSYMBOLS (objfile, msymbol)
3674 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
3676 completion_list_objc_symbol (msymbol, sym_text, sym_text_len, text, word);
3679 /* Search upwards from currently selected frame (so that we can
3680 complete on local vars. */
3682 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
3684 if (!BLOCK_SUPERBLOCK (b))
3686 surrounding_static_block = b; /* For elmin of dups */
3689 /* Also catch fields of types defined in this places which match our
3690 text string. Only complete on types visible from current context. */
3692 ALL_BLOCK_SYMBOLS (b, iter, sym)
3695 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3696 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
3698 struct type *t = SYMBOL_TYPE (sym);
3699 enum type_code c = TYPE_CODE (t);
3701 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
3703 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
3705 if (TYPE_FIELD_NAME (t, j))
3707 completion_list_add_name (TYPE_FIELD_NAME (t, j),
3708 sym_text, sym_text_len, text, word);
3716 /* Go through the symtabs and check the externs and statics for
3717 symbols which match. */
3719 ALL_PRIMARY_SYMTABS (objfile, s)
3722 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3723 ALL_BLOCK_SYMBOLS (b, iter, sym)
3725 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3729 ALL_PRIMARY_SYMTABS (objfile, s)
3732 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
3733 /* Don't do this block twice. */
3734 if (b == surrounding_static_block)
3736 ALL_BLOCK_SYMBOLS (b, iter, sym)
3738 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3742 return (return_val);
3745 /* Like make_symbol_completion_list, but returns a list of symbols
3746 defined in a source file FILE. */
3749 make_file_symbol_completion_list (char *text, char *word, char *srcfile)
3754 struct dict_iterator iter;
3755 /* The symbol we are completing on. Points in same buffer as text. */
3757 /* Length of sym_text. */
3760 /* Now look for the symbol we are supposed to complete on.
3761 FIXME: This should be language-specific. */
3765 char *quote_pos = NULL;
3767 /* First see if this is a quoted string. */
3769 for (p = text; *p != '\0'; ++p)
3771 if (quote_found != '\0')
3773 if (*p == quote_found)
3774 /* Found close quote. */
3776 else if (*p == '\\' && p[1] == quote_found)
3777 /* A backslash followed by the quote character
3778 doesn't end the string. */
3781 else if (*p == '\'' || *p == '"')
3787 if (quote_found == '\'')
3788 /* A string within single quotes can be a symbol, so complete on it. */
3789 sym_text = quote_pos + 1;
3790 else if (quote_found == '"')
3791 /* A double-quoted string is never a symbol, nor does it make sense
3792 to complete it any other way. */
3794 return_val = (char **) xmalloc (sizeof (char *));
3795 return_val[0] = NULL;
3800 /* Not a quoted string. */
3801 sym_text = language_search_unquoted_string (text, p);
3805 sym_text_len = strlen (sym_text);
3807 return_val_size = 10;
3808 return_val_index = 0;
3809 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3810 return_val[0] = NULL;
3812 /* Find the symtab for SRCFILE (this loads it if it was not yet read
3814 s = lookup_symtab (srcfile);
3817 /* Maybe they typed the file with leading directories, while the
3818 symbol tables record only its basename. */
3819 const char *tail = lbasename (srcfile);
3822 s = lookup_symtab (tail);
3825 /* If we have no symtab for that file, return an empty list. */
3827 return (return_val);
3829 /* Go through this symtab and check the externs and statics for
3830 symbols which match. */
3832 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3833 ALL_BLOCK_SYMBOLS (b, iter, sym)
3835 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3838 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
3839 ALL_BLOCK_SYMBOLS (b, iter, sym)
3841 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3844 return (return_val);
3847 /* A helper function for make_source_files_completion_list. It adds
3848 another file name to a list of possible completions, growing the
3849 list as necessary. */
3852 add_filename_to_list (const char *fname, char *text, char *word,
3853 char ***list, int *list_used, int *list_alloced)
3856 size_t fnlen = strlen (fname);
3858 if (*list_used + 1 >= *list_alloced)
3861 *list = (char **) xrealloc ((char *) *list,
3862 *list_alloced * sizeof (char *));
3867 /* Return exactly fname. */
3868 new = xmalloc (fnlen + 5);
3869 strcpy (new, fname);
3871 else if (word > text)
3873 /* Return some portion of fname. */
3874 new = xmalloc (fnlen + 5);
3875 strcpy (new, fname + (word - text));
3879 /* Return some of TEXT plus fname. */
3880 new = xmalloc (fnlen + (text - word) + 5);
3881 strncpy (new, word, text - word);
3882 new[text - word] = '\0';
3883 strcat (new, fname);
3885 (*list)[*list_used] = new;
3886 (*list)[++*list_used] = NULL;
3890 not_interesting_fname (const char *fname)
3892 static const char *illegal_aliens[] = {
3893 "_globals_", /* inserted by coff_symtab_read */
3898 for (i = 0; illegal_aliens[i]; i++)
3900 if (strcmp (fname, illegal_aliens[i]) == 0)
3906 /* Return a NULL terminated array of all source files whose names
3907 begin with matching TEXT. The file names are looked up in the
3908 symbol tables of this program. If the answer is no matchess, then
3909 the return value is an array which contains only a NULL pointer. */
3912 make_source_files_completion_list (char *text, char *word)
3915 struct partial_symtab *ps;
3916 struct objfile *objfile;
3918 int list_alloced = 1;
3920 size_t text_len = strlen (text);
3921 char **list = (char **) xmalloc (list_alloced * sizeof (char *));
3922 const char *base_name;
3926 if (!have_full_symbols () && !have_partial_symbols ())
3929 ALL_SYMTABS (objfile, s)
3931 if (not_interesting_fname (s->filename))
3933 if (!filename_seen (s->filename, 1, &first)
3934 #if HAVE_DOS_BASED_FILE_SYSTEM
3935 && strncasecmp (s->filename, text, text_len) == 0
3937 && strncmp (s->filename, text, text_len) == 0
3941 /* This file matches for a completion; add it to the current
3943 add_filename_to_list (s->filename, text, word,
3944 &list, &list_used, &list_alloced);
3948 /* NOTE: We allow the user to type a base name when the
3949 debug info records leading directories, but not the other
3950 way around. This is what subroutines of breakpoint
3951 command do when they parse file names. */
3952 base_name = lbasename (s->filename);
3953 if (base_name != s->filename
3954 && !filename_seen (base_name, 1, &first)
3955 #if HAVE_DOS_BASED_FILE_SYSTEM
3956 && strncasecmp (base_name, text, text_len) == 0
3958 && strncmp (base_name, text, text_len) == 0
3961 add_filename_to_list (base_name, text, word,
3962 &list, &list_used, &list_alloced);
3966 ALL_PSYMTABS (objfile, ps)
3968 if (not_interesting_fname (ps->filename))
3972 if (!filename_seen (ps->filename, 1, &first)
3973 #if HAVE_DOS_BASED_FILE_SYSTEM
3974 && strncasecmp (ps->filename, text, text_len) == 0
3976 && strncmp (ps->filename, text, text_len) == 0
3980 /* This file matches for a completion; add it to the
3981 current list of matches. */
3982 add_filename_to_list (ps->filename, text, word,
3983 &list, &list_used, &list_alloced);
3988 base_name = lbasename (ps->filename);
3989 if (base_name != ps->filename
3990 && !filename_seen (base_name, 1, &first)
3991 #if HAVE_DOS_BASED_FILE_SYSTEM
3992 && strncasecmp (base_name, text, text_len) == 0
3994 && strncmp (base_name, text, text_len) == 0
3997 add_filename_to_list (base_name, text, word,
3998 &list, &list_used, &list_alloced);
4006 /* Determine if PC is in the prologue of a function. The prologue is the area
4007 between the first instruction of a function, and the first executable line.
4008 Returns 1 if PC *might* be in prologue, 0 if definately *not* in prologue.
4010 If non-zero, func_start is where we think the prologue starts, possibly
4011 by previous examination of symbol table information.
4015 in_prologue (CORE_ADDR pc, CORE_ADDR func_start)
4017 struct symtab_and_line sal;
4018 CORE_ADDR func_addr, func_end;
4020 /* We have several sources of information we can consult to figure
4022 - Compilers usually emit line number info that marks the prologue
4023 as its own "source line". So the ending address of that "line"
4024 is the end of the prologue. If available, this is the most
4026 - The minimal symbols and partial symbols, which can usually tell
4027 us the starting and ending addresses of a function.
4028 - If we know the function's start address, we can call the
4029 architecture-defined SKIP_PROLOGUE function to analyze the
4030 instruction stream and guess where the prologue ends.
4031 - Our `func_start' argument; if non-zero, this is the caller's
4032 best guess as to the function's entry point. At the time of
4033 this writing, handle_inferior_event doesn't get this right, so
4034 it should be our last resort. */
4036 /* Consult the partial symbol table, to find which function
4038 if (! find_pc_partial_function (pc, NULL, &func_addr, &func_end))
4040 CORE_ADDR prologue_end;
4042 /* We don't even have minsym information, so fall back to using
4043 func_start, if given. */
4045 return 1; /* We *might* be in a prologue. */
4047 prologue_end = SKIP_PROLOGUE (func_start);
4049 return func_start <= pc && pc < prologue_end;
4052 /* If we have line number information for the function, that's
4053 usually pretty reliable. */
4054 sal = find_pc_line (func_addr, 0);
4056 /* Now sal describes the source line at the function's entry point,
4057 which (by convention) is the prologue. The end of that "line",
4058 sal.end, is the end of the prologue.
4060 Note that, for functions whose source code is all on a single
4061 line, the line number information doesn't always end up this way.
4062 So we must verify that our purported end-of-prologue address is
4063 *within* the function, not at its start or end. */
4065 || sal.end <= func_addr
4066 || func_end <= sal.end)
4068 /* We don't have any good line number info, so use the minsym
4069 information, together with the architecture-specific prologue
4071 CORE_ADDR prologue_end = SKIP_PROLOGUE (func_addr);
4073 return func_addr <= pc && pc < prologue_end;
4076 /* We have line number info, and it looks good. */
4077 return func_addr <= pc && pc < sal.end;
4080 /* Given PC at the function's start address, attempt to find the
4081 prologue end using SAL information. Return zero if the skip fails.
4083 A non-optimized prologue traditionally has one SAL for the function
4084 and a second for the function body. A single line function has
4085 them both pointing at the same line.
4087 An optimized prologue is similar but the prologue may contain
4088 instructions (SALs) from the instruction body. Need to skip those
4089 while not getting into the function body.
4091 The functions end point and an increasing SAL line are used as
4092 indicators of the prologue's endpoint.
4094 This code is based on the function refine_prologue_limit (versions
4095 found in both ia64 and ppc). */
4098 skip_prologue_using_sal (CORE_ADDR func_addr)
4100 struct symtab_and_line prologue_sal;
4104 /* Get an initial range for the function. */
4105 find_pc_partial_function (func_addr, NULL, &start_pc, &end_pc);
4106 start_pc += DEPRECATED_FUNCTION_START_OFFSET;
4108 prologue_sal = find_pc_line (start_pc, 0);
4109 if (prologue_sal.line != 0)
4111 /* If there is only one sal that covers the entire function,
4112 then it is probably a single line function, like
4114 if (prologue_sal.end >= end_pc)
4116 while (prologue_sal.end < end_pc)
4118 struct symtab_and_line sal;
4120 sal = find_pc_line (prologue_sal.end, 0);
4123 /* Assume that a consecutive SAL for the same (or larger)
4124 line mark the prologue -> body transition. */
4125 if (sal.line >= prologue_sal.line)
4127 /* The case in which compiler's optimizer/scheduler has
4128 moved instructions into the prologue. We look ahead in
4129 the function looking for address ranges whose
4130 corresponding line number is less the first one that we
4131 found for the function. This is more conservative then
4132 refine_prologue_limit which scans a large number of SALs
4133 looking for any in the prologue */
4137 return prologue_sal.end;
4140 struct symtabs_and_lines
4141 decode_line_spec (char *string, int funfirstline)
4143 struct symtabs_and_lines sals;
4144 struct symtab_and_line cursal;
4147 error (_("Empty line specification."));
4149 /* We use whatever is set as the current source line. We do not try
4150 and get a default or it will recursively call us! */
4151 cursal = get_current_source_symtab_and_line ();
4153 sals = decode_line_1 (&string, funfirstline,
4154 cursal.symtab, cursal.line,
4155 (char ***) NULL, NULL);
4158 error (_("Junk at end of line specification: %s"), string);
4163 static char *name_of_main;
4166 set_main_name (const char *name)
4168 if (name_of_main != NULL)
4170 xfree (name_of_main);
4171 name_of_main = NULL;
4175 name_of_main = xstrdup (name);
4179 /* Deduce the name of the main procedure, and set NAME_OF_MAIN
4183 find_main_name (void)
4185 char *new_main_name;
4187 /* Try to see if the main procedure is in Ada. */
4188 /* FIXME: brobecker/2005-03-07: Another way of doing this would
4189 be to add a new method in the language vector, and call this
4190 method for each language until one of them returns a non-empty
4191 name. This would allow us to remove this hard-coded call to
4192 an Ada function. It is not clear that this is a better approach
4193 at this point, because all methods need to be written in a way
4194 such that false positives never be returned. For instance, it is
4195 important that a method does not return a wrong name for the main
4196 procedure if the main procedure is actually written in a different
4197 language. It is easy to guaranty this with Ada, since we use a
4198 special symbol generated only when the main in Ada to find the name
4199 of the main procedure. It is difficult however to see how this can
4200 be guarantied for languages such as C, for instance. This suggests
4201 that order of call for these methods becomes important, which means
4202 a more complicated approach. */
4203 new_main_name = ada_main_name ();
4204 if (new_main_name != NULL)
4206 set_main_name (new_main_name);
4210 /* The languages above didn't identify the name of the main procedure.
4211 Fallback to "main". */
4212 set_main_name ("main");
4218 if (name_of_main == NULL)
4221 return name_of_main;
4224 /* Handle ``executable_changed'' events for the symtab module. */
4227 symtab_observer_executable_changed (void *unused)
4229 /* NAME_OF_MAIN may no longer be the same, so reset it for now. */
4230 set_main_name (NULL);
4234 _initialize_symtab (void)
4236 add_info ("variables", variables_info, _("\
4237 All global and static variable names, or those matching REGEXP."));
4239 add_com ("whereis", class_info, variables_info, _("\
4240 All global and static variable names, or those matching REGEXP."));
4242 add_info ("functions", functions_info,
4243 _("All function names, or those matching REGEXP."));
4246 /* FIXME: This command has at least the following problems:
4247 1. It prints builtin types (in a very strange and confusing fashion).
4248 2. It doesn't print right, e.g. with
4249 typedef struct foo *FOO
4250 type_print prints "FOO" when we want to make it (in this situation)
4251 print "struct foo *".
4252 I also think "ptype" or "whatis" is more likely to be useful (but if
4253 there is much disagreement "info types" can be fixed). */
4254 add_info ("types", types_info,
4255 _("All type names, or those matching REGEXP."));
4257 add_info ("sources", sources_info,
4258 _("Source files in the program."));
4260 add_com ("rbreak", class_breakpoint, rbreak_command,
4261 _("Set a breakpoint for all functions matching REGEXP."));
4265 add_com ("lf", class_info, sources_info,
4266 _("Source files in the program"));
4267 add_com ("lg", class_info, variables_info, _("\
4268 All global and static variable names, or those matching REGEXP."));
4271 /* Initialize the one built-in type that isn't language dependent... */
4272 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
4273 "<unknown type>", (struct objfile *) NULL);
4275 observer_attach_executable_changed (symtab_observer_executable_changed);