1 /* Partial symbol tables.
3 Copyright (C) 2009-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "filenames.h"
31 #include "readline/tilde.h"
32 #include "gdbsupport/gdb_regex.h"
33 #include "dictionary.h"
35 #include "cp-support.h"
39 #include "gdbsupport/buildargv.h"
41 static struct partial_symbol
*lookup_partial_symbol (struct objfile
*,
42 struct partial_symtab
*,
43 const lookup_name_info
&,
47 static const char *psymtab_to_fullname (struct partial_symtab
*ps
);
49 static struct partial_symbol
*find_pc_sect_psymbol (struct objfile
*,
50 struct partial_symtab
*,
52 struct obj_section
*);
54 static struct compunit_symtab
*psymtab_to_symtab (struct objfile
*objfile
,
55 struct partial_symtab
*pst
);
57 psymtab_storage::~psymtab_storage ()
59 partial_symtab
*iter
= psymtabs
;
60 while (iter
!= nullptr)
62 partial_symtab
*next
= iter
->next
;
71 psymtab_storage::install_psymtab (partial_symtab
*pst
)
79 /* Ensure that the partial symbols for OBJFILE have been loaded. This
80 will print a message when symbols are loaded. This function
81 returns a range adapter suitable for iterating over the psymtabs of
84 psymtab_storage::partial_symtab_range
85 psymbol_functions::require_partial_symbols (struct objfile
*objfile
)
87 objfile
->require_partial_symbols (true);
88 return m_partial_symtabs
->range ();
91 /* Find which partial symtab contains PC and SECTION starting at psymtab PST.
92 We may find a different psymtab than PST. See FIND_PC_SECT_PSYMTAB. */
94 static struct partial_symtab
*
95 find_pc_sect_psymtab_closer (struct objfile
*objfile
,
96 CORE_ADDR pc
, struct obj_section
*section
,
97 struct partial_symtab
*pst
,
98 struct bound_minimal_symbol msymbol
)
100 struct partial_symtab
*tpst
;
101 struct partial_symtab
*best_pst
= pst
;
102 CORE_ADDR best_addr
= pst
->text_low (objfile
);
104 gdb_assert (!pst
->psymtabs_addrmap_supported
);
106 /* An objfile that has its functions reordered might have
107 many partial symbol tables containing the PC, but
108 we want the partial symbol table that contains the
109 function containing the PC. */
110 if (!(objfile
->flags
& OBJF_REORDERED
)
111 && section
== NULL
) /* Can't validate section this way. */
114 if (msymbol
.minsym
== NULL
)
117 /* The code range of partial symtabs sometimes overlap, so, in
118 the loop below, we need to check all partial symtabs and
119 find the one that fits better for the given PC address. We
120 select the partial symtab that contains a symbol whose
121 address is closest to the PC address. By closest we mean
122 that find_pc_sect_symbol returns the symbol with address
123 that is closest and still less than the given PC. */
124 for (tpst
= pst
; tpst
!= NULL
; tpst
= tpst
->next
)
126 if (pc
>= tpst
->text_low (objfile
) && pc
< tpst
->text_high (objfile
))
128 struct partial_symbol
*p
;
131 /* NOTE: This assumes that every psymbol has a
132 corresponding msymbol, which is not necessarily
133 true; the debug info might be much richer than the
134 object's symbol table. */
135 p
= find_pc_sect_psymbol (objfile
, tpst
, pc
, section
);
137 && (p
->address (objfile
) == BMSYMBOL_VALUE_ADDRESS (msymbol
)))
140 /* Also accept the textlow value of a psymtab as a
141 "symbol", to provide some support for partial
142 symbol tables with line information but no debug
143 symbols (e.g. those produced by an assembler). */
145 this_addr
= p
->address (objfile
);
147 this_addr
= tpst
->text_low (objfile
);
149 /* Check whether it is closer than our current
150 BEST_ADDR. Since this symbol address is
151 necessarily lower or equal to PC, the symbol closer
152 to PC is the symbol which address is the highest.
153 This way we return the psymtab which contains such
154 best match symbol. This can help in cases where the
155 symbol information/debuginfo is not complete, like
156 for instance on IRIX6 with gcc, where no debug info
157 is emitted for statics. (See also the nodebug.exp
159 if (this_addr
> best_addr
)
161 best_addr
= this_addr
;
169 /* See psympriv.h. */
171 struct partial_symtab
*
172 psymbol_functions::find_pc_sect_psymtab (struct objfile
*objfile
,
174 struct obj_section
*section
,
175 struct bound_minimal_symbol msymbol
)
177 /* Try just the PSYMTABS_ADDRMAP mapping first as it has better
178 granularity than the later used TEXTLOW/TEXTHIGH one. However, we need
179 to take care as the PSYMTABS_ADDRMAP can hold things other than partial
180 symtabs in some cases.
182 This function should only be called for objfiles that are using partial
183 symtabs, not for objfiles that are using indexes (.gdb_index or
184 .debug_names), however 'maintenance print psymbols' calls this function
185 directly for all objfiles. If we assume that PSYMTABS_ADDRMAP contains
186 partial symtabs then we will end up returning a pointer to an object
187 that is not a partial_symtab, which doesn't end well. */
189 if (m_partial_symtabs
->psymtabs
!= NULL
190 && m_partial_symtabs
->psymtabs_addrmap
!= NULL
)
192 CORE_ADDR baseaddr
= objfile
->text_section_offset ();
194 struct partial_symtab
*pst
195 = ((struct partial_symtab
*)
196 addrmap_find (m_partial_symtabs
->psymtabs_addrmap
,
200 /* FIXME: addrmaps currently do not handle overlayed sections,
201 so fall back to the non-addrmap case if we're debugging
202 overlays and the addrmap returned the wrong section. */
203 if (overlay_debugging
&& msymbol
.minsym
!= NULL
&& section
!= NULL
)
205 struct partial_symbol
*p
;
207 /* NOTE: This assumes that every psymbol has a
208 corresponding msymbol, which is not necessarily
209 true; the debug info might be much richer than the
210 object's symbol table. */
211 p
= find_pc_sect_psymbol (objfile
, pst
, pc
, section
);
213 || (p
->address (objfile
)
214 != BMSYMBOL_VALUE_ADDRESS (msymbol
)))
218 /* We do not try to call FIND_PC_SECT_PSYMTAB_CLOSER as
219 PSYMTABS_ADDRMAP we used has already the best 1-byte
220 granularity and FIND_PC_SECT_PSYMTAB_CLOSER may mislead us into
221 a worse chosen section due to the TEXTLOW/TEXTHIGH ranges
230 /* Existing PSYMTABS_ADDRMAP mapping is present even for PARTIAL_SYMTABs
231 which still have no corresponding full SYMTABs read. But it is not
232 present for non-DWARF2 debug infos not supporting PSYMTABS_ADDRMAP in GDB
235 /* Check even OBJFILE with non-zero PSYMTABS_ADDRMAP as only several of
236 its CUs may be missing in PSYMTABS_ADDRMAP as they may be varying
237 debug info type in single OBJFILE. */
239 for (partial_symtab
*pst
: require_partial_symbols (objfile
))
240 if (!pst
->psymtabs_addrmap_supported
241 && pc
>= pst
->text_low (objfile
) && pc
< pst
->text_high (objfile
))
243 struct partial_symtab
*best_pst
;
245 best_pst
= find_pc_sect_psymtab_closer (objfile
, pc
, section
, pst
,
247 if (best_pst
!= NULL
)
254 /* Psymtab version of find_pc_sect_compunit_symtab. See its definition in
255 the definition of quick_symbol_functions in symfile.h. */
257 struct compunit_symtab
*
258 psymbol_functions::find_pc_sect_compunit_symtab
259 (struct objfile
*objfile
,
260 struct bound_minimal_symbol msymbol
,
262 struct obj_section
*section
,
265 struct partial_symtab
*ps
= find_pc_sect_psymtab (objfile
,
270 if (warn_if_readin
&& ps
->readin_p (objfile
))
271 /* Might want to error() here (in case symtab is corrupt and
272 will cause a core dump), but maybe we can successfully
273 continue, so let's not. */
275 (Internal error: pc %s in read in psymtab, but not in symtab.)\n"),
276 paddress (objfile
->arch (), pc
));
277 psymtab_to_symtab (objfile
, ps
);
278 return ps
->get_compunit_symtab (objfile
);
283 /* Find which partial symbol within a psymtab matches PC and SECTION.
284 Return NULL if none. */
286 static struct partial_symbol
*
287 find_pc_sect_psymbol (struct objfile
*objfile
,
288 struct partial_symtab
*psymtab
, CORE_ADDR pc
,
289 struct obj_section
*section
)
291 struct partial_symbol
*best
= NULL
;
293 const CORE_ADDR textlow
= psymtab
->text_low (objfile
);
295 gdb_assert (psymtab
!= NULL
);
297 /* Cope with programs that start at address 0. */
298 best_pc
= (textlow
!= 0) ? textlow
- 1 : 0;
300 /* Search the global symbols as well as the static symbols, so that
301 find_pc_partial_function doesn't use a minimal symbol and thus
302 cache a bad endaddr. */
303 for (partial_symbol
*p
: psymtab
->global_psymbols
)
305 if (p
->domain
== VAR_DOMAIN
306 && p
->aclass
== LOC_BLOCK
307 && pc
>= p
->address (objfile
)
308 && (p
->address (objfile
) > best_pc
309 || (psymtab
->text_low (objfile
) == 0
310 && best_pc
== 0 && p
->address (objfile
) == 0)))
312 if (section
!= NULL
) /* Match on a specific section. */
314 if (!matching_obj_sections (p
->obj_section (objfile
),
318 best_pc
= p
->address (objfile
);
323 for (partial_symbol
*p
: psymtab
->static_psymbols
)
325 if (p
->domain
== VAR_DOMAIN
326 && p
->aclass
== LOC_BLOCK
327 && pc
>= p
->address (objfile
)
328 && (p
->address (objfile
) > best_pc
329 || (psymtab
->text_low (objfile
) == 0
330 && best_pc
== 0 && p
->address (objfile
) == 0)))
332 if (section
!= NULL
) /* Match on a specific section. */
334 if (!matching_obj_sections (p
->obj_section (objfile
),
338 best_pc
= p
->address (objfile
);
346 /* Psymtab version of lookup_global_symbol_language. See its definition in
347 the definition of quick_symbol_functions in symfile.h. */
350 psymbol_functions::lookup_global_symbol_language (struct objfile
*objfile
,
353 bool *symbol_found_p
)
355 *symbol_found_p
= false;
356 if (objfile
->sf
== NULL
)
357 return language_unknown
;
359 lookup_name_info
lookup_name (name
, symbol_name_match_type::FULL
);
361 for (partial_symtab
*ps
: require_partial_symbols (objfile
))
363 struct partial_symbol
*psym
;
364 if (ps
->readin_p (objfile
))
367 psym
= lookup_partial_symbol (objfile
, ps
, lookup_name
, 1, domain
);
370 *symbol_found_p
= true;
371 return psym
->ginfo
.language ();
375 return language_unknown
;
378 /* Returns true if PSYM matches LOOKUP_NAME. */
381 psymbol_name_matches (partial_symbol
*psym
,
382 const lookup_name_info
&lookup_name
)
384 const language_defn
*lang
= language_def (psym
->ginfo
.language ());
385 symbol_name_matcher_ftype
*name_match
386 = lang
->get_symbol_name_matcher (lookup_name
);
387 return name_match (psym
->ginfo
.search_name (), lookup_name
, NULL
);
390 /* Look in PST for a symbol in DOMAIN whose name matches NAME. Search
391 the global block of PST if GLOBAL, and otherwise the static block.
392 MATCH is the comparison operation that returns true iff MATCH (s,
393 NAME), where s is a SYMBOL_SEARCH_NAME. If ORDERED_COMPARE is
394 non-null, the symbols in the block are assumed to be ordered
395 according to it (allowing binary search). It must be compatible
396 with MATCH. Returns the symbol, if found, and otherwise NULL. */
398 static struct partial_symbol
*
399 match_partial_symbol (struct objfile
*objfile
,
400 struct partial_symtab
*pst
, int global
,
401 const lookup_name_info
&name
, domain_enum domain
,
402 symbol_compare_ftype
*ordered_compare
)
404 struct partial_symbol
**start
, **psym
;
405 struct partial_symbol
**top
, **real_top
, **bottom
, **center
;
407 ? pst
->global_psymbols
.size ()
408 : pst
->static_psymbols
.size ());
409 int do_linear_search
= 1;
415 &pst
->global_psymbols
[0] :
416 &pst
->static_psymbols
[0]);
418 if (global
&& ordered_compare
) /* Can use a binary search. */
420 do_linear_search
= 0;
422 /* Binary search. This search is guaranteed to end with center
423 pointing at the earliest partial symbol whose name might be
424 correct. At that point *all* partial symbols with an
425 appropriate name will be checked against the correct
429 top
= start
+ length
- 1;
433 center
= bottom
+ (top
- bottom
) / 2;
434 gdb_assert (center
< top
);
436 enum language lang
= (*center
)->ginfo
.language ();
437 const char *lang_ln
= name
.language_lookup_name (lang
);
439 if (ordered_compare ((*center
)->ginfo
.search_name (),
445 gdb_assert (top
== bottom
);
447 while (top
<= real_top
448 && psymbol_name_matches (*top
, name
))
450 if (symbol_matches_domain ((*top
)->ginfo
.language (),
451 (*top
)->domain
, domain
))
457 /* Can't use a binary search or else we found during the binary search that
458 we should also do a linear search. */
460 if (do_linear_search
)
462 for (psym
= start
; psym
< start
+ length
; psym
++)
464 if (symbol_matches_domain ((*psym
)->ginfo
.language (),
465 (*psym
)->domain
, domain
)
466 && psymbol_name_matches (*psym
, name
))
474 /* Look, in partial_symtab PST, for symbol whose natural name is
475 LOOKUP_NAME. Check the global symbols if GLOBAL, the static
478 static struct partial_symbol
*
479 lookup_partial_symbol (struct objfile
*objfile
,
480 struct partial_symtab
*pst
,
481 const lookup_name_info
&lookup_name
,
482 int global
, domain_enum domain
)
484 struct partial_symbol
**start
, **psym
;
485 struct partial_symbol
**top
, **real_top
, **bottom
, **center
;
487 ? pst
->global_psymbols
.size ()
488 : pst
->static_psymbols
.size ());
489 int do_linear_search
= 1;
495 &pst
->global_psymbols
[0] :
496 &pst
->static_psymbols
[0]);
498 if (global
) /* This means we can use a binary search. */
500 do_linear_search
= 0;
502 /* Binary search. This search is guaranteed to end with center
503 pointing at the earliest partial symbol whose name might be
504 correct. At that point *all* partial symbols with an
505 appropriate name will be checked against the correct
509 top
= start
+ length
- 1;
513 center
= bottom
+ (top
- bottom
) / 2;
515 gdb_assert (center
< top
);
517 if (strcmp_iw_ordered ((*center
)->ginfo
.search_name (),
518 lookup_name
.c_str ()) >= 0)
528 gdb_assert (top
== bottom
);
530 /* For `case_sensitivity == case_sensitive_off' strcmp_iw_ordered will
531 search more exactly than what matches SYMBOL_MATCHES_SEARCH_NAME. */
532 while (top
>= start
&& symbol_matches_search_name (&(*top
)->ginfo
,
536 /* Fixup to have a symbol which matches SYMBOL_MATCHES_SEARCH_NAME. */
539 while (top
<= real_top
&& symbol_matches_search_name (&(*top
)->ginfo
,
542 if (symbol_matches_domain ((*top
)->ginfo
.language (),
543 (*top
)->domain
, domain
))
549 /* Can't use a binary search or else we found during the binary search that
550 we should also do a linear search. */
552 if (do_linear_search
)
554 for (psym
= start
; psym
< start
+ length
; psym
++)
556 if (symbol_matches_domain ((*psym
)->ginfo
.language (),
557 (*psym
)->domain
, domain
)
558 && symbol_matches_search_name (&(*psym
)->ginfo
, lookup_name
))
566 /* Get the symbol table that corresponds to a partial_symtab.
567 This is fast after the first time you do it.
568 The result will be NULL if the primary symtab has no symbols,
569 which can happen. Otherwise the result is the primary symtab
570 that contains PST. */
572 static struct compunit_symtab
*
573 psymtab_to_symtab (struct objfile
*objfile
, struct partial_symtab
*pst
)
575 /* If it is a shared psymtab, find an unshared psymtab that includes
576 it. Any such psymtab will do. */
577 while (pst
->user
!= NULL
)
580 /* If it's been looked up before, return it. */
581 if (pst
->get_compunit_symtab (objfile
))
582 return pst
->get_compunit_symtab (objfile
);
584 /* If it has not yet been read in, read it. */
585 if (!pst
->readin_p (objfile
))
587 scoped_restore decrementer
= increment_reading_symtab ();
591 gdb_printf (_("Reading in symbols for %s...\n"),
593 gdb_flush (gdb_stdout
);
596 pst
->read_symtab (objfile
);
599 return pst
->get_compunit_symtab (objfile
);
602 /* Psymtab version of find_last_source_symtab. See its definition in
603 the definition of quick_symbol_functions in symfile.h. */
606 psymbol_functions::find_last_source_symtab (struct objfile
*ofp
)
608 struct partial_symtab
*cs_pst
= NULL
;
610 for (partial_symtab
*ps
: require_partial_symbols (ofp
))
612 const char *name
= ps
->filename
;
613 int len
= strlen (name
);
615 if (!(len
> 2 && (strcmp (&name
[len
- 2], ".h") == 0
616 || strcmp (name
, "<<C++-namespaces>>") == 0)))
622 if (cs_pst
->readin_p (ofp
))
624 internal_error (__FILE__
, __LINE__
,
625 _("select_source_symtab: "
626 "readin pst found and no symtabs."));
630 struct compunit_symtab
*cust
= psymtab_to_symtab (ofp
, cs_pst
);
634 return cust
->primary_filetab ();
640 /* Psymtab version of forget_cached_source_info. See its definition in
641 the definition of quick_symbol_functions in symfile.h. */
644 psymbol_functions::forget_cached_source_info (struct objfile
*objfile
)
646 for (partial_symtab
*pst
: require_partial_symbols (objfile
))
648 if (pst
->fullname
!= NULL
)
650 xfree (pst
->fullname
);
651 pst
->fullname
= NULL
;
657 print_partial_symbols (struct gdbarch
*gdbarch
, struct objfile
*objfile
,
658 const std::vector
<partial_symbol
*> &symbols
,
659 const char *what
, struct ui_file
*outfile
)
661 gdb_printf (outfile
, " %s partial symbols:\n", what
);
662 for (partial_symbol
*p
: symbols
)
665 gdb_printf (outfile
, " `%s'", p
->ginfo
.linkage_name ());
666 if (p
->ginfo
.demangled_name () != NULL
)
668 gdb_printf (outfile
, " `%s'",
669 p
->ginfo
.demangled_name ());
671 gdb_puts (", ", outfile
);
675 gdb_puts ("undefined domain, ", outfile
);
678 /* This is the usual thing -- don't print it. */
681 gdb_puts ("struct domain, ", outfile
);
684 gdb_puts ("module domain, ", outfile
);
687 gdb_puts ("label domain, ", outfile
);
689 case COMMON_BLOCK_DOMAIN
:
690 gdb_puts ("common block domain, ", outfile
);
693 gdb_puts ("<invalid domain>, ", outfile
);
699 gdb_puts ("undefined", outfile
);
702 gdb_puts ("constant int", outfile
);
705 gdb_puts ("static", outfile
);
708 gdb_puts ("register", outfile
);
711 gdb_puts ("pass by value", outfile
);
714 gdb_puts ("pass by reference", outfile
);
716 case LOC_REGPARM_ADDR
:
717 gdb_puts ("register address parameter", outfile
);
720 gdb_puts ("stack parameter", outfile
);
723 gdb_puts ("type", outfile
);
726 gdb_puts ("label", outfile
);
729 gdb_puts ("function", outfile
);
731 case LOC_CONST_BYTES
:
732 gdb_puts ("constant bytes", outfile
);
735 gdb_puts ("unresolved", outfile
);
737 case LOC_OPTIMIZED_OUT
:
738 gdb_puts ("optimized out", outfile
);
741 gdb_puts ("computed at runtime", outfile
);
744 gdb_puts ("<invalid location>", outfile
);
747 gdb_puts (", ", outfile
);
748 gdb_puts (paddress (gdbarch
, p
->unrelocated_address ()), outfile
);
749 gdb_printf (outfile
, "\n");
754 dump_psymtab (struct objfile
*objfile
, struct partial_symtab
*psymtab
,
755 struct ui_file
*outfile
)
757 struct gdbarch
*gdbarch
= objfile
->arch ();
760 if (psymtab
->anonymous
)
762 gdb_printf (outfile
, "\nAnonymous partial symtab (%s) ",
767 gdb_printf (outfile
, "\nPartial symtab for source file %s ",
770 gdb_printf (outfile
, "(object %s)\n\n",
771 host_address_to_string (psymtab
));
772 gdb_printf (outfile
, " Read from object file %s (%s)\n",
773 objfile_name (objfile
),
774 host_address_to_string (objfile
));
776 if (psymtab
->readin_p (objfile
))
779 " Full symtab was read (at %s)\n",
780 host_address_to_string (psymtab
->get_compunit_symtab (objfile
)));
782 gdb_printf (outfile
, " Symbols cover text addresses ");
783 gdb_puts (paddress (gdbarch
, psymtab
->text_low (objfile
)), outfile
);
784 gdb_printf (outfile
, "-");
785 gdb_puts (paddress (gdbarch
, psymtab
->text_high (objfile
)), outfile
);
786 gdb_printf (outfile
, "\n");
787 gdb_printf (outfile
, " Address map supported - %s.\n",
788 psymtab
->psymtabs_addrmap_supported
? "yes" : "no");
789 gdb_printf (outfile
, " Depends on %d other partial symtabs.\n",
790 psymtab
->number_of_dependencies
);
791 for (i
= 0; i
< psymtab
->number_of_dependencies
; i
++)
792 gdb_printf (outfile
, " %d %s\n", i
,
793 host_address_to_string (psymtab
->dependencies
[i
]));
794 if (psymtab
->user
!= NULL
)
795 gdb_printf (outfile
, " Shared partial symtab with user %s\n",
796 host_address_to_string (psymtab
->user
));
797 if (!psymtab
->global_psymbols
.empty ())
799 print_partial_symbols
800 (gdbarch
, objfile
, psymtab
->global_psymbols
,
803 if (!psymtab
->static_psymbols
.empty ())
805 print_partial_symbols
806 (gdbarch
, objfile
, psymtab
->static_psymbols
,
809 gdb_printf (outfile
, "\n");
812 /* Count the number of partial symbols in OBJFILE. */
815 psymbol_functions::count_psyms ()
818 for (partial_symtab
*pst
: m_partial_symtabs
->range ())
820 count
+= pst
->global_psymbols
.size ();
821 count
+= pst
->static_psymbols
.size ();
826 /* Psymtab version of print_stats. See its definition in
827 the definition of quick_symbol_functions in symfile.h. */
830 psymbol_functions::print_stats (struct objfile
*objfile
, bool print_bcache
)
836 int n_psyms
= count_psyms ();
838 gdb_printf (_(" Number of \"partial\" symbols read: %d\n"),
842 for (partial_symtab
*ps
: require_partial_symbols (objfile
))
844 if (!ps
->readin_p (objfile
))
847 gdb_printf (_(" Number of psym tables (not yet expanded): %d\n"),
849 gdb_printf (_(" Total memory used for psymbol cache: %d\n"),
850 m_partial_symtabs
->psymbol_cache
.memory_used ());
854 gdb_printf (_("Psymbol byte cache statistics:\n"));
855 m_partial_symtabs
->psymbol_cache
.print_statistics
856 ("partial symbol cache");
860 /* Psymtab version of dump. See its definition in
861 the definition of quick_symbol_functions in symfile.h. */
864 psymbol_functions::dump (struct objfile
*objfile
)
866 struct partial_symtab
*psymtab
;
868 if (m_partial_symtabs
->psymtabs
)
870 gdb_printf ("Psymtabs:\n");
871 for (psymtab
= m_partial_symtabs
->psymtabs
;
873 psymtab
= psymtab
->next
)
874 gdb_printf ("%s at %s\n",
876 host_address_to_string (psymtab
));
881 /* Psymtab version of expand_all_symtabs. See its definition in
882 the definition of quick_symbol_functions in symfile.h. */
885 psymbol_functions::expand_all_symtabs (struct objfile
*objfile
)
887 for (partial_symtab
*psymtab
: require_partial_symbols (objfile
))
888 psymtab_to_symtab (objfile
, psymtab
);
891 /* Psymtab version of map_symbol_filenames. See its definition in
892 the definition of quick_symbol_functions in symfile.h. */
895 psymbol_functions::map_symbol_filenames
896 (struct objfile
*objfile
,
897 gdb::function_view
<symbol_filename_ftype
> fun
,
900 for (partial_symtab
*ps
: require_partial_symbols (objfile
))
902 const char *fullname
;
904 if (ps
->readin_p (objfile
))
907 /* We can skip shared psymtabs here, because any file name will be
908 attached to the unshared psymtab. */
909 if (ps
->user
!= NULL
)
912 /* Anonymous psymtabs don't have a file name. */
918 fullname
= psymtab_to_fullname (ps
);
921 fun (ps
->filename
, fullname
);
925 /* Finds the fullname that a partial_symtab represents.
927 If this functions finds the fullname, it will save it in ps->fullname
928 and it will also return the value.
930 If this function fails to find the file that this partial_symtab represents,
931 NULL will be returned and ps->fullname will be set to NULL. */
934 psymtab_to_fullname (struct partial_symtab
*ps
)
936 gdb_assert (!ps
->anonymous
);
938 /* Use cached copy if we have it.
939 We rely on forget_cached_source_info being called appropriately
940 to handle cases like the file being moved. */
941 if (ps
->fullname
== NULL
)
943 gdb::unique_xmalloc_ptr
<char> fullname
944 = find_source_or_rewrite (ps
->filename
, ps
->dirname
);
945 ps
->fullname
= fullname
.release ();
951 /* Psymtab version of expand_matching_symbols. See its definition in
952 the definition of quick_symbol_functions in symfile.h. */
955 psymbol_functions::expand_matching_symbols
956 (struct objfile
*objfile
,
957 const lookup_name_info
&name
, domain_enum domain
,
959 symbol_compare_ftype
*ordered_compare
)
961 for (partial_symtab
*ps
: require_partial_symbols (objfile
))
964 if (!ps
->readin_p (objfile
)
965 && match_partial_symbol (objfile
, ps
, global
, name
, domain
,
967 psymtab_to_symtab (objfile
, ps
);
971 /* A helper for psym_expand_symtabs_matching that handles searching
972 included psymtabs. This returns true if a symbol is found, and
973 false otherwise. It also updates the 'searched_flag' on the
974 various psymtabs that it searches. */
977 recursively_search_psymtabs
978 (struct partial_symtab
*ps
,
979 struct objfile
*objfile
,
980 block_search_flags search_flags
,
982 enum search_domain search
,
983 const lookup_name_info
&lookup_name
,
984 gdb::function_view
<expand_symtabs_symbol_matcher_ftype
> sym_matcher
)
987 enum psymtab_search_status result
= PST_SEARCHED_AND_NOT_FOUND
;
990 if (ps
->searched_flag
!= PST_NOT_SEARCHED
)
991 return ps
->searched_flag
== PST_SEARCHED_AND_FOUND
;
993 /* Recurse into shared psymtabs first, because they may have already
994 been searched, and this could save some time. */
995 for (i
= 0; i
< ps
->number_of_dependencies
; ++i
)
999 /* Skip non-shared dependencies, these are handled elsewhere. */
1000 if (ps
->dependencies
[i
]->user
== NULL
)
1003 r
= recursively_search_psymtabs (ps
->dependencies
[i
],
1004 objfile
, search_flags
, domain
, search
,
1005 lookup_name
, sym_matcher
);
1008 ps
->searched_flag
= PST_SEARCHED_AND_FOUND
;
1013 partial_symbol
**gbound
= (ps
->global_psymbols
.data ()
1014 + ps
->global_psymbols
.size ());
1015 partial_symbol
**sbound
= (ps
->static_psymbols
.data ()
1016 + ps
->static_psymbols
.size ());
1017 partial_symbol
**bound
= gbound
;
1019 /* Go through all of the symbols stored in a partial
1020 symtab in one loop. */
1021 partial_symbol
**psym
= ps
->global_psymbols
.data ();
1023 if ((search_flags
& SEARCH_GLOBAL_BLOCK
) == 0)
1025 if (ps
->static_psymbols
.empty ())
1029 psym
= ps
->static_psymbols
.data ();
1038 if (bound
== gbound
&& !ps
->static_psymbols
.empty ()
1039 && (search_flags
& SEARCH_STATIC_BLOCK
) != 0)
1041 psym
= ps
->static_psymbols
.data ();
1052 if ((domain
== UNDEF_DOMAIN
1053 || symbol_matches_domain ((*psym
)->ginfo
.language (),
1054 (*psym
)->domain
, domain
))
1055 && (search
== ALL_DOMAIN
1056 || (search
== MODULES_DOMAIN
1057 && (*psym
)->domain
== MODULE_DOMAIN
)
1058 || (search
== VARIABLES_DOMAIN
1059 && (*psym
)->aclass
!= LOC_TYPEDEF
1060 && (*psym
)->aclass
!= LOC_BLOCK
)
1061 || (search
== FUNCTIONS_DOMAIN
1062 && (*psym
)->aclass
== LOC_BLOCK
)
1063 || (search
== TYPES_DOMAIN
1064 && (*psym
)->aclass
== LOC_TYPEDEF
))
1065 && psymbol_name_matches (*psym
, lookup_name
)
1066 && (sym_matcher
== NULL
1067 || sym_matcher ((*psym
)->ginfo
.search_name ())))
1069 /* Found a match, so notify our caller. */
1070 result
= PST_SEARCHED_AND_FOUND
;
1077 ps
->searched_flag
= result
;
1078 return result
== PST_SEARCHED_AND_FOUND
;
1081 /* Psymtab version of expand_symtabs_matching. See its definition in
1082 the definition of quick_symbol_functions in symfile.h. */
1085 psymbol_functions::expand_symtabs_matching
1086 (struct objfile
*objfile
,
1087 gdb::function_view
<expand_symtabs_file_matcher_ftype
> file_matcher
,
1088 const lookup_name_info
*lookup_name
,
1089 gdb::function_view
<expand_symtabs_symbol_matcher_ftype
> symbol_matcher
,
1090 gdb::function_view
<expand_symtabs_exp_notify_ftype
> expansion_notify
,
1091 block_search_flags search_flags
,
1093 enum search_domain search
)
1095 /* Clear the search flags. */
1096 for (partial_symtab
*ps
: require_partial_symbols (objfile
))
1097 ps
->searched_flag
= PST_NOT_SEARCHED
;
1099 gdb::optional
<lookup_name_info
> psym_lookup_name
;
1100 if (lookup_name
!= nullptr)
1101 psym_lookup_name
= lookup_name
->make_ignore_params ();
1103 /* This invariant is documented in quick-functions.h. */
1104 gdb_assert (lookup_name
!= nullptr || symbol_matcher
== nullptr);
1106 for (partial_symtab
*ps
: m_partial_symtabs
->range ())
1110 if (ps
->readin_p (objfile
))
1120 match
= file_matcher (ps
->filename
, false);
1123 /* Before we invoke realpath, which can get expensive when many
1124 files are involved, do a quick comparison of the basenames. */
1125 if (basenames_may_differ
1126 || file_matcher (lbasename (ps
->filename
), true))
1127 match
= file_matcher (psymtab_to_fullname (ps
), false);
1133 if (lookup_name
== nullptr
1134 || recursively_search_psymtabs (ps
, objfile
, search_flags
,
1139 compunit_symtab
*cust
= psymtab_to_symtab (objfile
, ps
);
1141 if (cust
!= nullptr && expansion_notify
!= nullptr)
1142 if (!expansion_notify (cust
))
1150 /* Psymtab version of has_symbols. See its definition in
1151 the definition of quick_symbol_functions in symfile.h. */
1154 psymbol_functions::has_symbols (struct objfile
*objfile
)
1156 return m_partial_symtabs
->psymtabs
!= NULL
;
1159 /* See quick_symbol_functions::has_unexpanded_symtabs in quick-symbol.h. */
1162 psymbol_functions::has_unexpanded_symtabs (struct objfile
*objfile
)
1164 for (partial_symtab
*psymtab
: require_partial_symbols (objfile
))
1166 /* Is this already expanded? */
1167 if (psymtab
->readin_p (objfile
))
1170 /* It has not yet been expanded. */
1177 /* Helper function for psym_find_compunit_symtab_by_address that fills
1178 in m_psymbol_map for a given range of psymbols. */
1181 psymbol_functions::fill_psymbol_map
1182 (struct objfile
*objfile
,
1183 struct partial_symtab
*psymtab
,
1184 std::set
<CORE_ADDR
> *seen_addrs
,
1185 const std::vector
<partial_symbol
*> &symbols
)
1187 for (partial_symbol
*psym
: symbols
)
1189 if (psym
->aclass
== LOC_STATIC
)
1191 CORE_ADDR addr
= psym
->address (objfile
);
1192 if (seen_addrs
->find (addr
) == seen_addrs
->end ())
1194 seen_addrs
->insert (addr
);
1195 m_psymbol_map
.emplace_back (addr
, psymtab
);
1201 /* See find_compunit_symtab_by_address in quick_symbol_functions, in
1205 psymbol_functions::find_compunit_symtab_by_address (struct objfile
*objfile
,
1208 if (m_psymbol_map
.empty ())
1210 std::set
<CORE_ADDR
> seen_addrs
;
1212 for (partial_symtab
*pst
: require_partial_symbols (objfile
))
1214 fill_psymbol_map (objfile
, pst
,
1216 pst
->global_psymbols
);
1217 fill_psymbol_map (objfile
, pst
,
1219 pst
->static_psymbols
);
1222 m_psymbol_map
.shrink_to_fit ();
1224 std::sort (m_psymbol_map
.begin (), m_psymbol_map
.end (),
1225 [] (const std::pair
<CORE_ADDR
, partial_symtab
*> &a
,
1226 const std::pair
<CORE_ADDR
, partial_symtab
*> &b
)
1228 return a
.first
< b
.first
;
1232 auto iter
= std::lower_bound
1233 (m_psymbol_map
.begin (), m_psymbol_map
.end (), address
,
1234 [] (const std::pair
<CORE_ADDR
, partial_symtab
*> &a
,
1240 if (iter
== m_psymbol_map
.end () || iter
->first
!= address
)
1243 return psymtab_to_symtab (objfile
, iter
->second
);
1248 /* Partially fill a partial symtab. It will be completely filled at
1249 the end of the symbol list. */
1251 partial_symtab::partial_symtab (const char *filename
,
1252 psymtab_storage
*partial_symtabs
,
1253 objfile_per_bfd_storage
*objfile_per_bfd
,
1255 : partial_symtab (filename
, partial_symtabs
, objfile_per_bfd
)
1257 set_text_low (textlow
);
1258 set_text_high (raw_text_low ()); /* default */
1261 /* Perform "finishing up" operations of a partial symtab. */
1264 partial_symtab::end ()
1266 global_psymbols
.shrink_to_fit ();
1267 static_psymbols
.shrink_to_fit ();
1269 /* Sort the global list; don't sort the static list. */
1270 std::sort (global_psymbols
.begin (),
1271 global_psymbols
.end (),
1272 [] (partial_symbol
*s1
, partial_symbol
*s2
)
1274 return strcmp_iw_ordered (s1
->ginfo
.search_name (),
1275 s2
->ginfo
.search_name ()) < 0;
1279 /* See psymtab.h. */
1282 psymbol_bcache::hash (const void *addr
, int length
)
1284 unsigned long h
= 0;
1285 struct partial_symbol
*psymbol
= (struct partial_symbol
*) addr
;
1286 unsigned int lang
= psymbol
->ginfo
.language ();
1287 unsigned int domain
= psymbol
->domain
;
1288 unsigned int theclass
= psymbol
->aclass
;
1290 h
= fast_hash (&psymbol
->ginfo
.value
, sizeof (psymbol
->ginfo
.value
), h
);
1291 h
= fast_hash (&lang
, sizeof (unsigned int), h
);
1292 h
= fast_hash (&domain
, sizeof (unsigned int), h
);
1293 h
= fast_hash (&theclass
, sizeof (unsigned int), h
);
1294 /* Note that psymbol names are interned via compute_and_set_names, so
1295 there's no need to hash the contents of the name here. */
1296 h
= fast_hash (&psymbol
->ginfo
.m_name
, sizeof (psymbol
->ginfo
.m_name
), h
);
1301 /* See psymtab.h. */
1304 psymbol_bcache::compare (const void *addr1
, const void *addr2
, int length
)
1306 struct partial_symbol
*sym1
= (struct partial_symbol
*) addr1
;
1307 struct partial_symbol
*sym2
= (struct partial_symbol
*) addr2
;
1309 return (memcmp (&sym1
->ginfo
.value
, &sym2
->ginfo
.value
,
1310 sizeof (sym1
->ginfo
.value
)) == 0
1311 && sym1
->ginfo
.language () == sym2
->ginfo
.language ()
1312 && sym1
->domain
== sym2
->domain
1313 && sym1
->aclass
== sym2
->aclass
1314 /* Note that psymbol names are interned via
1315 compute_and_set_names, so there's no need to compare the
1316 contents of the name here. */
1317 && sym1
->ginfo
.linkage_name () == sym2
->ginfo
.linkage_name ());
1320 /* See psympriv.h. */
1323 partial_symtab::add_psymbol (const partial_symbol
&psymbol
,
1324 psymbol_placement where
,
1325 psymtab_storage
*partial_symtabs
,
1326 struct objfile
*objfile
)
1330 /* Stash the partial symbol away in the cache. */
1331 partial_symbol
*psym
1332 = ((struct partial_symbol
*)
1333 partial_symtabs
->psymbol_cache
.insert
1334 (&psymbol
, sizeof (struct partial_symbol
), &added
));
1336 /* Do not duplicate global partial symbols. */
1337 if (where
== psymbol_placement::GLOBAL
&& !added
)
1340 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
1341 std::vector
<partial_symbol
*> &list
1342 = (where
== psymbol_placement::STATIC
1345 list
.push_back (psym
);
1348 /* See psympriv.h. */
1351 partial_symtab::add_psymbol (gdb::string_view name
, bool copy_name
,
1353 enum address_class theclass
,
1355 psymbol_placement where
,
1357 enum language language
,
1358 psymtab_storage
*partial_symtabs
,
1359 struct objfile
*objfile
)
1361 struct partial_symbol psymbol
;
1362 memset (&psymbol
, 0, sizeof (psymbol
));
1364 psymbol
.set_unrelocated_address (coreaddr
);
1365 psymbol
.ginfo
.set_section_index (section
);
1366 psymbol
.domain
= domain
;
1367 psymbol
.aclass
= theclass
;
1368 psymbol
.ginfo
.set_language (language
, partial_symtabs
->obstack ());
1369 psymbol
.ginfo
.compute_and_set_names (name
, copy_name
, objfile
->per_bfd
);
1371 add_psymbol (psymbol
, where
, partial_symtabs
, objfile
);
1374 /* See psympriv.h. */
1376 partial_symtab::partial_symtab (const char *filename_
,
1377 psymtab_storage
*partial_symtabs
,
1378 objfile_per_bfd_storage
*objfile_per_bfd
)
1379 : searched_flag (PST_NOT_SEARCHED
),
1383 partial_symtabs
->install_psymtab (this);
1385 filename
= objfile_per_bfd
->intern (filename_
);
1387 if (symtab_create_debug
)
1389 /* Be a bit clever with debugging messages, and don't print objfile
1390 every time, only when it changes. */
1391 static std::string last_bfd_name
;
1392 const char *this_bfd_name
1393 = bfd_get_filename (objfile_per_bfd
->get_bfd ());
1395 if (last_bfd_name
.empty () || last_bfd_name
!= this_bfd_name
)
1397 last_bfd_name
= this_bfd_name
;
1398 gdb_printf (gdb_stdlog
,
1399 "Creating one or more psymtabs for %s ...\n",
1402 gdb_printf (gdb_stdlog
,
1403 "Created psymtab %s for module %s.\n",
1404 host_address_to_string (this), filename
);
1408 /* See psympriv.h. */
1411 partial_symtab::expand_dependencies (struct objfile
*objfile
)
1413 for (int i
= 0; i
< number_of_dependencies
; ++i
)
1415 if (!dependencies
[i
]->readin_p (objfile
)
1416 && dependencies
[i
]->user
== NULL
)
1418 /* Inform about additional files to be read in. */
1422 gdb_stdout
->wrap_here (0);
1424 gdb_stdout
->wrap_here (0);
1425 gdb_printf ("%s...", dependencies
[i
]->filename
);
1426 gdb_flush (gdb_stdout
);
1428 dependencies
[i
]->expand_psymtab (objfile
);
1435 psymtab_storage::discard_psymtab (struct partial_symtab
*pst
)
1437 struct partial_symtab
**prev_pst
;
1440 Empty psymtabs happen as a result of header files which don't
1441 have any symbols in them. There can be a lot of them. But this
1442 check is wrong, in that a psymtab with N_SLINE entries but
1443 nothing else is not empty, but we don't realize that. Fixing
1444 that without slowing things down might be tricky. */
1446 /* First, snip it out of the psymtab chain. */
1448 prev_pst
= &psymtabs
;
1449 while ((*prev_pst
) != pst
)
1450 prev_pst
= &((*prev_pst
)->next
);
1451 (*prev_pst
) = pst
->next
;
1457 /* Helper function for maintenance_print_psymbols to print the addrmap
1458 of PSYMTAB. If PSYMTAB is NULL print the entire addrmap. */
1461 dump_psymtab_addrmap (struct objfile
*objfile
,
1462 psymtab_storage
*partial_symtabs
,
1463 struct partial_symtab
*psymtab
,
1464 struct ui_file
*outfile
)
1466 if ((psymtab
== NULL
1467 || psymtab
->psymtabs_addrmap_supported
)
1468 && partial_symtabs
->psymtabs_addrmap
!= NULL
)
1470 if (psymtab
== nullptr)
1471 gdb_printf (outfile
, _("Entire address map:\n"));
1473 gdb_printf (outfile
, _("Address map:\n"));
1474 addrmap_dump (partial_symtabs
->psymtabs_addrmap
, outfile
, psymtab
);
1479 maintenance_print_psymbols (const char *args
, int from_tty
)
1481 struct ui_file
*outfile
= gdb_stdout
;
1482 char *address_arg
= NULL
, *source_arg
= NULL
, *objfile_arg
= NULL
;
1483 int i
, outfile_idx
, found
;
1485 struct obj_section
*section
= NULL
;
1489 gdb_argv
argv (args
);
1491 for (i
= 0; argv
!= NULL
&& argv
[i
] != NULL
; ++i
)
1493 if (strcmp (argv
[i
], "-pc") == 0)
1495 if (argv
[i
+ 1] == NULL
)
1496 error (_("Missing pc value"));
1497 address_arg
= argv
[++i
];
1499 else if (strcmp (argv
[i
], "-source") == 0)
1501 if (argv
[i
+ 1] == NULL
)
1502 error (_("Missing source file"));
1503 source_arg
= argv
[++i
];
1505 else if (strcmp (argv
[i
], "-objfile") == 0)
1507 if (argv
[i
+ 1] == NULL
)
1508 error (_("Missing objfile name"));
1509 objfile_arg
= argv
[++i
];
1511 else if (strcmp (argv
[i
], "--") == 0)
1513 /* End of options. */
1517 else if (argv
[i
][0] == '-')
1519 /* Future proofing: Don't allow OUTFILE to begin with "-". */
1520 error (_("Unknown option: %s"), argv
[i
]);
1527 if (address_arg
!= NULL
&& source_arg
!= NULL
)
1528 error (_("Must specify at most one of -pc and -source"));
1530 stdio_file arg_outfile
;
1532 if (argv
!= NULL
&& argv
[outfile_idx
] != NULL
)
1534 if (argv
[outfile_idx
+ 1] != NULL
)
1535 error (_("Junk at end of command"));
1536 gdb::unique_xmalloc_ptr
<char> outfile_name
1537 (tilde_expand (argv
[outfile_idx
]));
1538 if (!arg_outfile
.open (outfile_name
.get (), FOPEN_WT
))
1539 perror_with_name (outfile_name
.get ());
1540 outfile
= &arg_outfile
;
1543 if (address_arg
!= NULL
)
1545 pc
= parse_and_eval_address (address_arg
);
1546 /* If we fail to find a section, that's ok, try the lookup anyway. */
1547 section
= find_pc_section (pc
);
1551 for (objfile
*objfile
: current_program_space
->objfiles ())
1553 int printed_objfile_header
= 0;
1554 int print_for_objfile
= 1;
1557 if (objfile_arg
!= NULL
)
1559 = compare_filenames_for_search (objfile_name (objfile
),
1561 if (!print_for_objfile
)
1564 for (const auto &iter
: objfile
->qf
)
1566 psymbol_functions
*psf
1567 = dynamic_cast<psymbol_functions
*> (iter
.get ());
1571 psymtab_storage
*partial_symtabs
1572 = psf
->get_partial_symtabs ().get ();
1574 if (address_arg
!= NULL
)
1576 struct bound_minimal_symbol msymbol
;
1578 /* We don't assume each pc has a unique objfile (this is for
1580 struct partial_symtab
*ps
1581 = psf
->find_pc_sect_psymtab (objfile
, pc
, section
, msymbol
);
1584 if (!printed_objfile_header
)
1586 outfile
->printf ("\nPartial symtabs for objfile %s\n",
1587 objfile_name (objfile
));
1588 printed_objfile_header
= 1;
1590 dump_psymtab (objfile
, ps
, outfile
);
1591 dump_psymtab_addrmap (objfile
, partial_symtabs
, ps
, outfile
);
1597 for (partial_symtab
*ps
: psf
->require_partial_symbols (objfile
))
1599 int print_for_source
= 0;
1602 if (source_arg
!= NULL
)
1605 = compare_filenames_for_search (ps
->filename
, source_arg
);
1608 if (source_arg
== NULL
1609 || print_for_source
)
1611 if (!printed_objfile_header
)
1613 outfile
->printf ("\nPartial symtabs for objfile %s\n",
1614 objfile_name (objfile
));
1615 printed_objfile_header
= 1;
1617 dump_psymtab (objfile
, ps
, outfile
);
1618 dump_psymtab_addrmap (objfile
, partial_symtabs
, ps
,
1624 /* If we're printing all the objfile's symbols dump the full addrmap. */
1626 if (address_arg
== NULL
1627 && source_arg
== NULL
1628 && partial_symtabs
->psymtabs_addrmap
!= NULL
)
1630 outfile
->puts ("\n");
1631 dump_psymtab_addrmap (objfile
, partial_symtabs
, NULL
, outfile
);
1638 if (address_arg
!= NULL
)
1639 error (_("No partial symtab for address: %s"), address_arg
);
1640 if (source_arg
!= NULL
)
1641 error (_("No partial symtab for source file: %s"), source_arg
);
1645 /* List all the partial symbol tables whose names match REGEXP (optional). */
1648 maintenance_info_psymtabs (const char *regexp
, int from_tty
)
1653 for (struct program_space
*pspace
: program_spaces
)
1654 for (objfile
*objfile
: pspace
->objfiles ())
1656 struct gdbarch
*gdbarch
= objfile
->arch ();
1658 /* We don't want to print anything for this objfile until we
1659 actually find a symtab whose name matches. */
1660 int printed_objfile_start
= 0;
1662 for (const auto &iter
: objfile
->qf
)
1664 psymbol_functions
*psf
1665 = dynamic_cast<psymbol_functions
*> (iter
.get ());
1668 for (partial_symtab
*psymtab
: psf
->require_partial_symbols (objfile
))
1673 || re_exec (psymtab
->filename
))
1675 if (! printed_objfile_start
)
1677 gdb_printf ("{ objfile %s ", objfile_name (objfile
));
1678 gdb_stdout
->wrap_here (2);
1679 gdb_printf ("((struct objfile *) %s)\n",
1680 host_address_to_string (objfile
));
1681 printed_objfile_start
= 1;
1684 gdb_printf (" { psymtab %s ", psymtab
->filename
);
1685 gdb_stdout
->wrap_here (4);
1686 gdb_printf ("((struct partial_symtab *) %s)\n",
1687 host_address_to_string (psymtab
));
1689 gdb_printf (" readin %s\n",
1690 psymtab
->readin_p (objfile
) ? "yes" : "no");
1691 gdb_printf (" fullname %s\n",
1693 ? psymtab
->fullname
: "(null)");
1694 gdb_printf (" text addresses ");
1695 gdb_puts (paddress (gdbarch
,
1696 psymtab
->text_low (objfile
)));
1697 gdb_printf (" -- ");
1698 gdb_puts (paddress (gdbarch
,
1699 psymtab
->text_high (objfile
)));
1701 gdb_printf (" psymtabs_addrmap_supported %s\n",
1702 (psymtab
->psymtabs_addrmap_supported
1704 gdb_printf (" globals ");
1705 if (!psymtab
->global_psymbols
.empty ())
1707 ("(* (struct partial_symbol **) %s @ %d)\n",
1708 host_address_to_string (psymtab
->global_psymbols
.data ()),
1709 (int) psymtab
->global_psymbols
.size ());
1711 gdb_printf ("(none)\n");
1712 gdb_printf (" statics ");
1713 if (!psymtab
->static_psymbols
.empty ())
1715 ("(* (struct partial_symbol **) %s @ %d)\n",
1716 host_address_to_string (psymtab
->static_psymbols
.data ()),
1717 (int) psymtab
->static_psymbols
.size ());
1719 gdb_printf ("(none)\n");
1721 gdb_printf (" user %s "
1722 "((struct partial_symtab *) %s)\n",
1723 psymtab
->user
->filename
,
1724 host_address_to_string (psymtab
->user
));
1725 gdb_printf (" dependencies ");
1726 if (psymtab
->number_of_dependencies
)
1731 for (i
= 0; i
< psymtab
->number_of_dependencies
; i
++)
1733 struct partial_symtab
*dep
= psymtab
->dependencies
[i
];
1735 /* Note the string concatenation there --- no
1737 gdb_printf (" psymtab %s "
1738 "((struct partial_symtab *) %s)\n",
1740 host_address_to_string (dep
));
1742 gdb_printf (" }\n");
1745 gdb_printf ("(none)\n");
1746 gdb_printf (" }\n");
1751 if (printed_objfile_start
)
1756 /* Check consistency of currently expanded psymtabs vs symtabs. */
1759 maintenance_check_psymtabs (const char *ignore
, int from_tty
)
1762 struct compunit_symtab
*cust
= NULL
;
1763 const struct blockvector
*bv
;
1764 const struct block
*b
;
1766 for (objfile
*objfile
: current_program_space
->objfiles ())
1768 for (const auto &iter
: objfile
->qf
)
1770 psymbol_functions
*psf
1771 = dynamic_cast<psymbol_functions
*> (iter
.get ());
1775 for (partial_symtab
*ps
: psf
->require_partial_symbols (objfile
))
1777 struct gdbarch
*gdbarch
= objfile
->arch ();
1779 /* We don't call psymtab_to_symtab here because that may cause symtab
1780 expansion. When debugging a problem it helps if checkers leave
1781 things unchanged. */
1782 cust
= ps
->get_compunit_symtab (objfile
);
1784 /* First do some checks that don't require the associated symtab. */
1785 if (ps
->text_high (objfile
) < ps
->text_low (objfile
))
1787 gdb_printf ("Psymtab ");
1788 gdb_puts (ps
->filename
);
1789 gdb_printf (" covers bad range ");
1790 gdb_puts (paddress (gdbarch
, ps
->text_low (objfile
)));
1792 gdb_puts (paddress (gdbarch
, ps
->text_high (objfile
)));
1797 /* Now do checks requiring the associated symtab. */
1800 bv
= cust
->blockvector ();
1801 b
= BLOCKVECTOR_BLOCK (bv
, STATIC_BLOCK
);
1802 for (partial_symbol
*psym
: ps
->static_psymbols
)
1804 /* Skip symbols for inlined functions without address. These may
1805 or may not have a match in the full symtab. */
1806 if (psym
->aclass
== LOC_BLOCK
1807 && psym
->ginfo
.value
.address
== 0)
1810 sym
= block_lookup_symbol (b
, psym
->ginfo
.search_name (),
1811 symbol_name_match_type::SEARCH_NAME
,
1815 gdb_printf ("Static symbol `");
1816 gdb_puts (psym
->ginfo
.linkage_name ());
1817 gdb_printf ("' only found in ");
1818 gdb_puts (ps
->filename
);
1819 gdb_printf (" psymtab\n");
1822 b
= BLOCKVECTOR_BLOCK (bv
, GLOBAL_BLOCK
);
1823 for (partial_symbol
*psym
: ps
->global_psymbols
)
1825 sym
= block_lookup_symbol (b
, psym
->ginfo
.search_name (),
1826 symbol_name_match_type::SEARCH_NAME
,
1830 gdb_printf ("Global symbol `");
1831 gdb_puts (psym
->ginfo
.linkage_name ());
1832 gdb_printf ("' only found in ");
1833 gdb_puts (ps
->filename
);
1834 gdb_printf (" psymtab\n");
1837 if (ps
->raw_text_high () != 0
1838 && (ps
->text_low (objfile
) < BLOCK_START (b
)
1839 || ps
->text_high (objfile
) > BLOCK_END (b
)))
1841 gdb_printf ("Psymtab ");
1842 gdb_puts (ps
->filename
);
1843 gdb_printf (" covers ");
1844 gdb_puts (paddress (gdbarch
, ps
->text_low (objfile
)));
1846 gdb_puts (paddress (gdbarch
, ps
->text_high (objfile
)));
1847 gdb_printf (" but symtab covers only ");
1848 gdb_puts (paddress (gdbarch
, BLOCK_START (b
)));
1850 gdb_puts (paddress (gdbarch
, BLOCK_END (b
)));
1858 void _initialize_psymtab ();
1860 _initialize_psymtab ()
1862 add_cmd ("psymbols", class_maintenance
, maintenance_print_psymbols
, _("\
1863 Print dump of current partial symbol definitions.\n\
1864 Usage: mt print psymbols [-objfile OBJFILE] [-pc ADDRESS] [--] [OUTFILE]\n\
1865 mt print psymbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\
1866 Entries in the partial symbol table are dumped to file OUTFILE,\n\
1867 or the terminal if OUTFILE is unspecified.\n\
1868 If ADDRESS is provided, dump only the file for that address.\n\
1869 If SOURCE is provided, dump only that file's symbols.\n\
1870 If OBJFILE is provided, dump only that file's minimal symbols."),
1871 &maintenanceprintlist
);
1873 add_cmd ("psymtabs", class_maintenance
, maintenance_info_psymtabs
, _("\
1874 List the partial symbol tables for all object files.\n\
1875 This does not include information about individual partial symbols,\n\
1876 just the symbol table structures themselves."),
1877 &maintenanceinfolist
);
1879 add_cmd ("check-psymtabs", class_maintenance
, maintenance_check_psymtabs
,
1881 Check consistency of currently expanded psymtabs versus symtabs."),