]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/psymtab.c
Use function view in quick_symbol_functions::map_symbol_filenames
[thirdparty/binutils-gdb.git] / gdb / psymtab.c
1 /* Partial symbol tables.
2
3 Copyright (C) 2009-2021 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20 #include "defs.h"
21 #include "symtab.h"
22 #include "objfiles.h"
23 #include "psympriv.h"
24 #include "block.h"
25 #include "filenames.h"
26 #include "source.h"
27 #include "addrmap.h"
28 #include "gdbtypes.h"
29 #include "ui-out.h"
30 #include "command.h"
31 #include "readline/tilde.h"
32 #include "gdb_regex.h"
33 #include "dictionary.h"
34 #include "language.h"
35 #include "cp-support.h"
36 #include "gdbcmd.h"
37 #include <algorithm>
38 #include <set>
39
40 static struct partial_symbol *lookup_partial_symbol (struct objfile *,
41 struct partial_symtab *,
42 const lookup_name_info &,
43 int,
44 domain_enum);
45
46 static const char *psymtab_to_fullname (struct partial_symtab *ps);
47
48 static struct partial_symbol *find_pc_sect_psymbol (struct objfile *,
49 struct partial_symtab *,
50 CORE_ADDR,
51 struct obj_section *);
52
53 static struct compunit_symtab *psymtab_to_symtab (struct objfile *objfile,
54 struct partial_symtab *pst);
55
56 psymtab_storage::~psymtab_storage ()
57 {
58 partial_symtab *iter = psymtabs;
59 while (iter != nullptr)
60 {
61 partial_symtab *next = iter->next;
62 delete iter;
63 iter = next;
64 }
65 }
66
67 /* See psymtab.h. */
68
69 void
70 psymtab_storage::install_psymtab (partial_symtab *pst)
71 {
72 pst->next = psymtabs;
73 psymtabs = pst;
74 }
75
76 \f
77
78 /* Ensure that the partial symbols for OBJFILE have been loaded. This
79 will print a message when symbols are loaded. This function
80 returns a range adapter suitable for iterating over the psymtabs of
81 OBJFILE. */
82
83 psymtab_storage::partial_symtab_range
84 psymbol_functions::require_partial_symbols (struct objfile *objfile)
85 {
86 objfile->require_partial_symbols (true);
87 return m_partial_symtabs->range ();
88 }
89
90 /* Helper function for psym_map_symtabs_matching_filename that
91 expands the symtabs and calls the iterator. */
92
93 static bool
94 partial_map_expand_apply (struct objfile *objfile,
95 const char *name,
96 const char *real_path,
97 struct partial_symtab *pst,
98 gdb::function_view<bool (symtab *)> callback)
99 {
100 struct compunit_symtab *last_made = objfile->compunit_symtabs;
101
102 /* Shared psymtabs should never be seen here. Instead they should
103 be handled properly by the caller. */
104 gdb_assert (pst->user == NULL);
105
106 /* Don't visit already-expanded psymtabs. */
107 if (pst->readin_p (objfile))
108 return 0;
109
110 /* This may expand more than one symtab, and we want to iterate over
111 all of them. */
112 psymtab_to_symtab (objfile, pst);
113
114 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
115 last_made, callback);
116 }
117
118 /* Psymtab version of map_symtabs_matching_filename. See its definition in
119 the definition of quick_symbol_functions in symfile.h. */
120
121 bool
122 psymbol_functions::map_symtabs_matching_filename
123 (struct objfile *objfile,
124 const char *name,
125 const char *real_path,
126 gdb::function_view<bool (symtab *)> callback)
127 {
128 const char *name_basename = lbasename (name);
129
130 for (partial_symtab *pst : require_partial_symbols (objfile))
131 {
132 /* Anonymous psymtabs don't have a file name. */
133 if (pst->anonymous)
134 continue;
135
136 if (compare_filenames_for_search (pst->filename, name))
137 {
138 while (pst->user)
139 pst = pst->user;
140
141 if (partial_map_expand_apply (objfile, name, real_path,
142 pst, callback))
143 return true;
144 continue;
145 }
146
147 /* Before we invoke realpath, which can get expensive when many
148 files are involved, do a quick comparison of the basenames. */
149 if (! basenames_may_differ
150 && FILENAME_CMP (name_basename, lbasename (pst->filename)) != 0)
151 continue;
152
153 if (compare_filenames_for_search (psymtab_to_fullname (pst), name))
154 {
155 if (partial_map_expand_apply (objfile, name, real_path,
156 pst, callback))
157 return true;
158 continue;
159 }
160
161 /* If the user gave us an absolute path, try to find the file in
162 this symtab and use its absolute path. */
163 if (real_path != NULL)
164 {
165 gdb_assert (IS_ABSOLUTE_PATH (real_path));
166 gdb_assert (IS_ABSOLUTE_PATH (name));
167 if (filename_cmp (psymtab_to_fullname (pst), real_path) == 0)
168 {
169 if (partial_map_expand_apply (objfile, name, real_path,
170 pst, callback))
171 return true;
172 continue;
173 }
174 }
175 }
176
177 return false;
178 }
179
180 /* Find which partial symtab contains PC and SECTION starting at psymtab PST.
181 We may find a different psymtab than PST. See FIND_PC_SECT_PSYMTAB. */
182
183 static struct partial_symtab *
184 find_pc_sect_psymtab_closer (struct objfile *objfile,
185 CORE_ADDR pc, struct obj_section *section,
186 struct partial_symtab *pst,
187 struct bound_minimal_symbol msymbol)
188 {
189 struct partial_symtab *tpst;
190 struct partial_symtab *best_pst = pst;
191 CORE_ADDR best_addr = pst->text_low (objfile);
192
193 gdb_assert (!pst->psymtabs_addrmap_supported);
194
195 /* An objfile that has its functions reordered might have
196 many partial symbol tables containing the PC, but
197 we want the partial symbol table that contains the
198 function containing the PC. */
199 if (!(objfile->flags & OBJF_REORDERED)
200 && section == NULL) /* Can't validate section this way. */
201 return pst;
202
203 if (msymbol.minsym == NULL)
204 return pst;
205
206 /* The code range of partial symtabs sometimes overlap, so, in
207 the loop below, we need to check all partial symtabs and
208 find the one that fits better for the given PC address. We
209 select the partial symtab that contains a symbol whose
210 address is closest to the PC address. By closest we mean
211 that find_pc_sect_symbol returns the symbol with address
212 that is closest and still less than the given PC. */
213 for (tpst = pst; tpst != NULL; tpst = tpst->next)
214 {
215 if (pc >= tpst->text_low (objfile) && pc < tpst->text_high (objfile))
216 {
217 struct partial_symbol *p;
218 CORE_ADDR this_addr;
219
220 /* NOTE: This assumes that every psymbol has a
221 corresponding msymbol, which is not necessarily
222 true; the debug info might be much richer than the
223 object's symbol table. */
224 p = find_pc_sect_psymbol (objfile, tpst, pc, section);
225 if (p != NULL
226 && (p->address (objfile) == BMSYMBOL_VALUE_ADDRESS (msymbol)))
227 return tpst;
228
229 /* Also accept the textlow value of a psymtab as a
230 "symbol", to provide some support for partial
231 symbol tables with line information but no debug
232 symbols (e.g. those produced by an assembler). */
233 if (p != NULL)
234 this_addr = p->address (objfile);
235 else
236 this_addr = tpst->text_low (objfile);
237
238 /* Check whether it is closer than our current
239 BEST_ADDR. Since this symbol address is
240 necessarily lower or equal to PC, the symbol closer
241 to PC is the symbol which address is the highest.
242 This way we return the psymtab which contains such
243 best match symbol. This can help in cases where the
244 symbol information/debuginfo is not complete, like
245 for instance on IRIX6 with gcc, where no debug info
246 is emitted for statics. (See also the nodebug.exp
247 testcase.) */
248 if (this_addr > best_addr)
249 {
250 best_addr = this_addr;
251 best_pst = tpst;
252 }
253 }
254 }
255 return best_pst;
256 }
257
258 /* See psympriv.h. */
259
260 struct partial_symtab *
261 psymbol_functions::find_pc_sect_psymtab (struct objfile *objfile,
262 CORE_ADDR pc,
263 struct obj_section *section,
264 struct bound_minimal_symbol msymbol)
265 {
266 /* Try just the PSYMTABS_ADDRMAP mapping first as it has better
267 granularity than the later used TEXTLOW/TEXTHIGH one. However, we need
268 to take care as the PSYMTABS_ADDRMAP can hold things other than partial
269 symtabs in some cases.
270
271 This function should only be called for objfiles that are using partial
272 symtabs, not for objfiles that are using indexes (.gdb_index or
273 .debug_names), however 'maintenance print psymbols' calls this function
274 directly for all objfiles. If we assume that PSYMTABS_ADDRMAP contains
275 partial symtabs then we will end up returning a pointer to an object
276 that is not a partial_symtab, which doesn't end well. */
277
278 if (m_partial_symtabs->psymtabs != NULL
279 && m_partial_symtabs->psymtabs_addrmap != NULL)
280 {
281 CORE_ADDR baseaddr = objfile->text_section_offset ();
282
283 struct partial_symtab *pst
284 = ((struct partial_symtab *)
285 addrmap_find (m_partial_symtabs->psymtabs_addrmap,
286 pc - baseaddr));
287 if (pst != NULL)
288 {
289 /* FIXME: addrmaps currently do not handle overlayed sections,
290 so fall back to the non-addrmap case if we're debugging
291 overlays and the addrmap returned the wrong section. */
292 if (overlay_debugging && msymbol.minsym != NULL && section != NULL)
293 {
294 struct partial_symbol *p;
295
296 /* NOTE: This assumes that every psymbol has a
297 corresponding msymbol, which is not necessarily
298 true; the debug info might be much richer than the
299 object's symbol table. */
300 p = find_pc_sect_psymbol (objfile, pst, pc, section);
301 if (p == NULL
302 || (p->address (objfile)
303 != BMSYMBOL_VALUE_ADDRESS (msymbol)))
304 goto next;
305 }
306
307 /* We do not try to call FIND_PC_SECT_PSYMTAB_CLOSER as
308 PSYMTABS_ADDRMAP we used has already the best 1-byte
309 granularity and FIND_PC_SECT_PSYMTAB_CLOSER may mislead us into
310 a worse chosen section due to the TEXTLOW/TEXTHIGH ranges
311 overlap. */
312
313 return pst;
314 }
315 }
316
317 next:
318
319 /* Existing PSYMTABS_ADDRMAP mapping is present even for PARTIAL_SYMTABs
320 which still have no corresponding full SYMTABs read. But it is not
321 present for non-DWARF2 debug infos not supporting PSYMTABS_ADDRMAP in GDB
322 so far. */
323
324 /* Check even OBJFILE with non-zero PSYMTABS_ADDRMAP as only several of
325 its CUs may be missing in PSYMTABS_ADDRMAP as they may be varying
326 debug info type in single OBJFILE. */
327
328 for (partial_symtab *pst : require_partial_symbols (objfile))
329 if (!pst->psymtabs_addrmap_supported
330 && pc >= pst->text_low (objfile) && pc < pst->text_high (objfile))
331 {
332 struct partial_symtab *best_pst;
333
334 best_pst = find_pc_sect_psymtab_closer (objfile, pc, section, pst,
335 msymbol);
336 if (best_pst != NULL)
337 return best_pst;
338 }
339
340 return NULL;
341 }
342
343 /* Psymtab version of find_pc_sect_compunit_symtab. See its definition in
344 the definition of quick_symbol_functions in symfile.h. */
345
346 struct compunit_symtab *
347 psymbol_functions::find_pc_sect_compunit_symtab
348 (struct objfile *objfile,
349 struct bound_minimal_symbol msymbol,
350 CORE_ADDR pc,
351 struct obj_section *section,
352 int warn_if_readin)
353 {
354 struct partial_symtab *ps = find_pc_sect_psymtab (objfile,
355 pc, section,
356 msymbol);
357 if (ps != NULL)
358 {
359 if (warn_if_readin && ps->readin_p (objfile))
360 /* Might want to error() here (in case symtab is corrupt and
361 will cause a core dump), but maybe we can successfully
362 continue, so let's not. */
363 warning (_("\
364 (Internal error: pc %s in read in psymtab, but not in symtab.)\n"),
365 paddress (objfile->arch (), pc));
366 psymtab_to_symtab (objfile, ps);
367 return ps->get_compunit_symtab (objfile);
368 }
369 return NULL;
370 }
371
372 /* Find which partial symbol within a psymtab matches PC and SECTION.
373 Return NULL if none. */
374
375 static struct partial_symbol *
376 find_pc_sect_psymbol (struct objfile *objfile,
377 struct partial_symtab *psymtab, CORE_ADDR pc,
378 struct obj_section *section)
379 {
380 struct partial_symbol *best = NULL;
381 CORE_ADDR best_pc;
382 const CORE_ADDR textlow = psymtab->text_low (objfile);
383
384 gdb_assert (psymtab != NULL);
385
386 /* Cope with programs that start at address 0. */
387 best_pc = (textlow != 0) ? textlow - 1 : 0;
388
389 /* Search the global symbols as well as the static symbols, so that
390 find_pc_partial_function doesn't use a minimal symbol and thus
391 cache a bad endaddr. */
392 for (partial_symbol *p : psymtab->global_psymbols)
393 {
394 if (p->domain == VAR_DOMAIN
395 && p->aclass == LOC_BLOCK
396 && pc >= p->address (objfile)
397 && (p->address (objfile) > best_pc
398 || (psymtab->text_low (objfile) == 0
399 && best_pc == 0 && p->address (objfile) == 0)))
400 {
401 if (section != NULL) /* Match on a specific section. */
402 {
403 if (!matching_obj_sections (p->obj_section (objfile),
404 section))
405 continue;
406 }
407 best_pc = p->address (objfile);
408 best = p;
409 }
410 }
411
412 for (partial_symbol *p : psymtab->static_psymbols)
413 {
414 if (p->domain == VAR_DOMAIN
415 && p->aclass == LOC_BLOCK
416 && pc >= p->address (objfile)
417 && (p->address (objfile) > best_pc
418 || (psymtab->text_low (objfile) == 0
419 && best_pc == 0 && p->address (objfile) == 0)))
420 {
421 if (section != NULL) /* Match on a specific section. */
422 {
423 if (!matching_obj_sections (p->obj_section (objfile),
424 section))
425 continue;
426 }
427 best_pc = p->address (objfile);
428 best = p;
429 }
430 }
431
432 return best;
433 }
434
435 /* Psymtab version of lookup_symbol. See its definition in
436 the definition of quick_symbol_functions in symfile.h. */
437
438 struct compunit_symtab *
439 psymbol_functions::lookup_symbol (struct objfile *objfile,
440 block_enum block_index, const char *name,
441 const domain_enum domain)
442 {
443 const int psymtab_index = (block_index == GLOBAL_BLOCK ? 1 : 0);
444 struct compunit_symtab *stab_best = NULL;
445
446 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
447
448 lookup_name_info psym_lookup_name = lookup_name.make_ignore_params ();
449
450 for (partial_symtab *ps : require_partial_symbols (objfile))
451 {
452 if (!ps->readin_p (objfile)
453 && lookup_partial_symbol (objfile, ps, psym_lookup_name,
454 psymtab_index, domain))
455 {
456 struct symbol *sym, *with_opaque = NULL;
457 struct compunit_symtab *stab = psymtab_to_symtab (objfile, ps);
458 /* Note: While psymtab_to_symtab can return NULL if the
459 partial symtab is empty, we can assume it won't here
460 because lookup_partial_symbol succeeded. */
461 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
462 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
463
464 sym = block_find_symbol (block, name, domain,
465 block_find_non_opaque_type_preferred,
466 &with_opaque);
467
468 /* Some caution must be observed with overloaded functions
469 and methods, since the index will not contain any overload
470 information (but NAME might contain it). */
471
472 if (sym != NULL
473 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
474 return stab;
475 if (with_opaque != NULL
476 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
477 stab_best = stab;
478
479 /* Keep looking through other psymtabs. */
480 }
481 }
482
483 return stab_best;
484 }
485
486 /* Psymtab version of lookup_global_symbol_language. See its definition in
487 the definition of quick_symbol_functions in symfile.h. */
488
489 enum language
490 psymbol_functions::lookup_global_symbol_language (struct objfile *objfile,
491 const char *name,
492 domain_enum domain,
493 bool *symbol_found_p)
494 {
495 *symbol_found_p = false;
496 if (objfile->sf == NULL)
497 return language_unknown;
498
499 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
500
501 for (partial_symtab *ps : require_partial_symbols (objfile))
502 {
503 struct partial_symbol *psym;
504 if (ps->readin_p (objfile))
505 continue;
506
507 psym = lookup_partial_symbol (objfile, ps, lookup_name, 1, domain);
508 if (psym)
509 {
510 *symbol_found_p = true;
511 return psym->ginfo.language ();
512 }
513 }
514
515 return language_unknown;
516 }
517
518 /* Returns true if PSYM matches LOOKUP_NAME. */
519
520 static bool
521 psymbol_name_matches (partial_symbol *psym,
522 const lookup_name_info &lookup_name)
523 {
524 const language_defn *lang = language_def (psym->ginfo.language ());
525 symbol_name_matcher_ftype *name_match
526 = lang->get_symbol_name_matcher (lookup_name);
527 return name_match (psym->ginfo.search_name (), lookup_name, NULL);
528 }
529
530 /* Look in PST for a symbol in DOMAIN whose name matches NAME. Search
531 the global block of PST if GLOBAL, and otherwise the static block.
532 MATCH is the comparison operation that returns true iff MATCH (s,
533 NAME), where s is a SYMBOL_SEARCH_NAME. If ORDERED_COMPARE is
534 non-null, the symbols in the block are assumed to be ordered
535 according to it (allowing binary search). It must be compatible
536 with MATCH. Returns the symbol, if found, and otherwise NULL. */
537
538 static struct partial_symbol *
539 match_partial_symbol (struct objfile *objfile,
540 struct partial_symtab *pst, int global,
541 const lookup_name_info &name, domain_enum domain,
542 symbol_compare_ftype *ordered_compare)
543 {
544 struct partial_symbol **start, **psym;
545 struct partial_symbol **top, **real_top, **bottom, **center;
546 int length = (global
547 ? pst->global_psymbols.size ()
548 : pst->static_psymbols.size ());
549 int do_linear_search = 1;
550
551 if (length == 0)
552 return NULL;
553
554 start = (global ?
555 &pst->global_psymbols[0] :
556 &pst->static_psymbols[0]);
557
558 if (global && ordered_compare) /* Can use a binary search. */
559 {
560 do_linear_search = 0;
561
562 /* Binary search. This search is guaranteed to end with center
563 pointing at the earliest partial symbol whose name might be
564 correct. At that point *all* partial symbols with an
565 appropriate name will be checked against the correct
566 domain. */
567
568 bottom = start;
569 top = start + length - 1;
570 real_top = top;
571 while (top > bottom)
572 {
573 center = bottom + (top - bottom) / 2;
574 gdb_assert (center < top);
575
576 enum language lang = (*center)->ginfo.language ();
577 const char *lang_ln = name.language_lookup_name (lang);
578
579 if (ordered_compare ((*center)->ginfo.search_name (),
580 lang_ln) >= 0)
581 top = center;
582 else
583 bottom = center + 1;
584 }
585 gdb_assert (top == bottom);
586
587 while (top <= real_top
588 && psymbol_name_matches (*top, name))
589 {
590 if (symbol_matches_domain ((*top)->ginfo.language (),
591 (*top)->domain, domain))
592 return *top;
593 top++;
594 }
595 }
596
597 /* Can't use a binary search or else we found during the binary search that
598 we should also do a linear search. */
599
600 if (do_linear_search)
601 {
602 for (psym = start; psym < start + length; psym++)
603 {
604 if (symbol_matches_domain ((*psym)->ginfo.language (),
605 (*psym)->domain, domain)
606 && psymbol_name_matches (*psym, name))
607 return *psym;
608 }
609 }
610
611 return NULL;
612 }
613
614 /* Look, in partial_symtab PST, for symbol whose natural name is
615 LOOKUP_NAME. Check the global symbols if GLOBAL, the static
616 symbols if not. */
617
618 static struct partial_symbol *
619 lookup_partial_symbol (struct objfile *objfile,
620 struct partial_symtab *pst,
621 const lookup_name_info &lookup_name,
622 int global, domain_enum domain)
623 {
624 struct partial_symbol **start, **psym;
625 struct partial_symbol **top, **real_top, **bottom, **center;
626 int length = (global
627 ? pst->global_psymbols.size ()
628 : pst->static_psymbols.size ());
629 int do_linear_search = 1;
630
631 if (length == 0)
632 return NULL;
633
634 start = (global ?
635 &pst->global_psymbols[0] :
636 &pst->static_psymbols[0]);
637
638 if (global) /* This means we can use a binary search. */
639 {
640 do_linear_search = 0;
641
642 /* Binary search. This search is guaranteed to end with center
643 pointing at the earliest partial symbol whose name might be
644 correct. At that point *all* partial symbols with an
645 appropriate name will be checked against the correct
646 domain. */
647
648 bottom = start;
649 top = start + length - 1;
650 real_top = top;
651 while (top > bottom)
652 {
653 center = bottom + (top - bottom) / 2;
654
655 gdb_assert (center < top);
656
657 if (strcmp_iw_ordered ((*center)->ginfo.search_name (),
658 lookup_name.c_str ()) >= 0)
659 {
660 top = center;
661 }
662 else
663 {
664 bottom = center + 1;
665 }
666 }
667
668 gdb_assert (top == bottom);
669
670 /* For `case_sensitivity == case_sensitive_off' strcmp_iw_ordered will
671 search more exactly than what matches SYMBOL_MATCHES_SEARCH_NAME. */
672 while (top >= start && symbol_matches_search_name (&(*top)->ginfo,
673 lookup_name))
674 top--;
675
676 /* Fixup to have a symbol which matches SYMBOL_MATCHES_SEARCH_NAME. */
677 top++;
678
679 while (top <= real_top && symbol_matches_search_name (&(*top)->ginfo,
680 lookup_name))
681 {
682 if (symbol_matches_domain ((*top)->ginfo.language (),
683 (*top)->domain, domain))
684 return *top;
685 top++;
686 }
687 }
688
689 /* Can't use a binary search or else we found during the binary search that
690 we should also do a linear search. */
691
692 if (do_linear_search)
693 {
694 for (psym = start; psym < start + length; psym++)
695 {
696 if (symbol_matches_domain ((*psym)->ginfo.language (),
697 (*psym)->domain, domain)
698 && symbol_matches_search_name (&(*psym)->ginfo, lookup_name))
699 return *psym;
700 }
701 }
702
703 return NULL;
704 }
705
706 /* Get the symbol table that corresponds to a partial_symtab.
707 This is fast after the first time you do it.
708 The result will be NULL if the primary symtab has no symbols,
709 which can happen. Otherwise the result is the primary symtab
710 that contains PST. */
711
712 static struct compunit_symtab *
713 psymtab_to_symtab (struct objfile *objfile, struct partial_symtab *pst)
714 {
715 /* If it is a shared psymtab, find an unshared psymtab that includes
716 it. Any such psymtab will do. */
717 while (pst->user != NULL)
718 pst = pst->user;
719
720 /* If it's been looked up before, return it. */
721 if (pst->get_compunit_symtab (objfile))
722 return pst->get_compunit_symtab (objfile);
723
724 /* If it has not yet been read in, read it. */
725 if (!pst->readin_p (objfile))
726 {
727 scoped_restore decrementer = increment_reading_symtab ();
728
729 if (info_verbose)
730 {
731 printf_filtered (_("Reading in symbols for %s...\n"),
732 pst->filename);
733 gdb_flush (gdb_stdout);
734 }
735
736 pst->read_symtab (objfile);
737 }
738
739 return pst->get_compunit_symtab (objfile);
740 }
741
742 /* Psymtab version of find_last_source_symtab. See its definition in
743 the definition of quick_symbol_functions in symfile.h. */
744
745 struct symtab *
746 psymbol_functions::find_last_source_symtab (struct objfile *ofp)
747 {
748 struct partial_symtab *cs_pst = NULL;
749
750 for (partial_symtab *ps : require_partial_symbols (ofp))
751 {
752 const char *name = ps->filename;
753 int len = strlen (name);
754
755 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
756 || strcmp (name, "<<C++-namespaces>>") == 0)))
757 cs_pst = ps;
758 }
759
760 if (cs_pst)
761 {
762 if (cs_pst->readin_p (ofp))
763 {
764 internal_error (__FILE__, __LINE__,
765 _("select_source_symtab: "
766 "readin pst found and no symtabs."));
767 }
768 else
769 {
770 struct compunit_symtab *cust = psymtab_to_symtab (ofp, cs_pst);
771
772 if (cust == NULL)
773 return NULL;
774 return compunit_primary_filetab (cust);
775 }
776 }
777 return NULL;
778 }
779
780 /* Psymtab version of forget_cached_source_info. See its definition in
781 the definition of quick_symbol_functions in symfile.h. */
782
783 void
784 psymbol_functions::forget_cached_source_info (struct objfile *objfile)
785 {
786 for (partial_symtab *pst : require_partial_symbols (objfile))
787 {
788 if (pst->fullname != NULL)
789 {
790 xfree (pst->fullname);
791 pst->fullname = NULL;
792 }
793 }
794 }
795
796 static void
797 print_partial_symbols (struct gdbarch *gdbarch, struct objfile *objfile,
798 const std::vector<partial_symbol *> &symbols,
799 const char *what, struct ui_file *outfile)
800 {
801 fprintf_filtered (outfile, " %s partial symbols:\n", what);
802 for (partial_symbol *p : symbols)
803 {
804 QUIT;
805 fprintf_filtered (outfile, " `%s'", p->ginfo.linkage_name ());
806 if (p->ginfo.demangled_name () != NULL)
807 {
808 fprintf_filtered (outfile, " `%s'",
809 p->ginfo.demangled_name ());
810 }
811 fputs_filtered (", ", outfile);
812 switch (p->domain)
813 {
814 case UNDEF_DOMAIN:
815 fputs_filtered ("undefined domain, ", outfile);
816 break;
817 case VAR_DOMAIN:
818 /* This is the usual thing -- don't print it. */
819 break;
820 case STRUCT_DOMAIN:
821 fputs_filtered ("struct domain, ", outfile);
822 break;
823 case MODULE_DOMAIN:
824 fputs_filtered ("module domain, ", outfile);
825 break;
826 case LABEL_DOMAIN:
827 fputs_filtered ("label domain, ", outfile);
828 break;
829 case COMMON_BLOCK_DOMAIN:
830 fputs_filtered ("common block domain, ", outfile);
831 break;
832 default:
833 fputs_filtered ("<invalid domain>, ", outfile);
834 break;
835 }
836 switch (p->aclass)
837 {
838 case LOC_UNDEF:
839 fputs_filtered ("undefined", outfile);
840 break;
841 case LOC_CONST:
842 fputs_filtered ("constant int", outfile);
843 break;
844 case LOC_STATIC:
845 fputs_filtered ("static", outfile);
846 break;
847 case LOC_REGISTER:
848 fputs_filtered ("register", outfile);
849 break;
850 case LOC_ARG:
851 fputs_filtered ("pass by value", outfile);
852 break;
853 case LOC_REF_ARG:
854 fputs_filtered ("pass by reference", outfile);
855 break;
856 case LOC_REGPARM_ADDR:
857 fputs_filtered ("register address parameter", outfile);
858 break;
859 case LOC_LOCAL:
860 fputs_filtered ("stack parameter", outfile);
861 break;
862 case LOC_TYPEDEF:
863 fputs_filtered ("type", outfile);
864 break;
865 case LOC_LABEL:
866 fputs_filtered ("label", outfile);
867 break;
868 case LOC_BLOCK:
869 fputs_filtered ("function", outfile);
870 break;
871 case LOC_CONST_BYTES:
872 fputs_filtered ("constant bytes", outfile);
873 break;
874 case LOC_UNRESOLVED:
875 fputs_filtered ("unresolved", outfile);
876 break;
877 case LOC_OPTIMIZED_OUT:
878 fputs_filtered ("optimized out", outfile);
879 break;
880 case LOC_COMPUTED:
881 fputs_filtered ("computed at runtime", outfile);
882 break;
883 default:
884 fputs_filtered ("<invalid location>", outfile);
885 break;
886 }
887 fputs_filtered (", ", outfile);
888 fputs_filtered (paddress (gdbarch, p->unrelocated_address ()), outfile);
889 fprintf_filtered (outfile, "\n");
890 }
891 }
892
893 static void
894 dump_psymtab (struct objfile *objfile, struct partial_symtab *psymtab,
895 struct ui_file *outfile)
896 {
897 struct gdbarch *gdbarch = objfile->arch ();
898 int i;
899
900 if (psymtab->anonymous)
901 {
902 fprintf_filtered (outfile, "\nAnonymous partial symtab (%s) ",
903 psymtab->filename);
904 }
905 else
906 {
907 fprintf_filtered (outfile, "\nPartial symtab for source file %s ",
908 psymtab->filename);
909 }
910 fprintf_filtered (outfile, "(object ");
911 gdb_print_host_address (psymtab, outfile);
912 fprintf_filtered (outfile, ")\n\n");
913 fprintf_filtered (outfile, " Read from object file %s (",
914 objfile_name (objfile));
915 gdb_print_host_address (objfile, outfile);
916 fprintf_filtered (outfile, ")\n");
917
918 if (psymtab->readin_p (objfile))
919 {
920 fprintf_filtered (outfile,
921 " Full symtab was read (at ");
922 gdb_print_host_address (psymtab->get_compunit_symtab (objfile), outfile);
923 fprintf_filtered (outfile, ")\n");
924 }
925
926 fprintf_filtered (outfile, " Symbols cover text addresses ");
927 fputs_filtered (paddress (gdbarch, psymtab->text_low (objfile)), outfile);
928 fprintf_filtered (outfile, "-");
929 fputs_filtered (paddress (gdbarch, psymtab->text_high (objfile)), outfile);
930 fprintf_filtered (outfile, "\n");
931 fprintf_filtered (outfile, " Address map supported - %s.\n",
932 psymtab->psymtabs_addrmap_supported ? "yes" : "no");
933 fprintf_filtered (outfile, " Depends on %d other partial symtabs.\n",
934 psymtab->number_of_dependencies);
935 for (i = 0; i < psymtab->number_of_dependencies; i++)
936 {
937 fprintf_filtered (outfile, " %d ", i);
938 gdb_print_host_address (psymtab->dependencies[i], outfile);
939 fprintf_filtered (outfile, " %s\n",
940 psymtab->dependencies[i]->filename);
941 }
942 if (psymtab->user != NULL)
943 {
944 fprintf_filtered (outfile, " Shared partial symtab with user ");
945 gdb_print_host_address (psymtab->user, outfile);
946 fprintf_filtered (outfile, "\n");
947 }
948 if (!psymtab->global_psymbols.empty ())
949 {
950 print_partial_symbols
951 (gdbarch, objfile, psymtab->global_psymbols,
952 "Global", outfile);
953 }
954 if (!psymtab->static_psymbols.empty ())
955 {
956 print_partial_symbols
957 (gdbarch, objfile, psymtab->static_psymbols,
958 "Static", outfile);
959 }
960 fprintf_filtered (outfile, "\n");
961 }
962
963 /* Count the number of partial symbols in OBJFILE. */
964
965 int
966 psymbol_functions::count_psyms ()
967 {
968 int count = 0;
969 for (partial_symtab *pst : m_partial_symtabs->range ())
970 {
971 count += pst->global_psymbols.size ();
972 count += pst->static_psymbols.size ();
973 }
974 return count;
975 }
976
977 /* Psymtab version of print_stats. See its definition in
978 the definition of quick_symbol_functions in symfile.h. */
979
980 void
981 psymbol_functions::print_stats (struct objfile *objfile, bool print_bcache)
982 {
983 int i;
984
985 if (!print_bcache)
986 {
987 int n_psyms = count_psyms ();
988 if (n_psyms > 0)
989 printf_filtered (_(" Number of \"partial\" symbols read: %d\n"),
990 n_psyms);
991
992 i = 0;
993 for (partial_symtab *ps : require_partial_symbols (objfile))
994 {
995 if (!ps->readin_p (objfile))
996 i++;
997 }
998 printf_filtered (_(" Number of psym tables (not yet expanded): %d\n"),
999 i);
1000 printf_filtered (_(" Total memory used for psymbol cache: %d\n"),
1001 m_partial_symtabs->psymbol_cache.memory_used ());
1002 }
1003 else
1004 {
1005 printf_filtered (_("Psymbol byte cache statistics:\n"));
1006 m_partial_symtabs->psymbol_cache.print_statistics
1007 ("partial symbol cache");
1008 }
1009 }
1010
1011 /* Psymtab version of dump. See its definition in
1012 the definition of quick_symbol_functions in symfile.h. */
1013
1014 void
1015 psymbol_functions::dump (struct objfile *objfile)
1016 {
1017 struct partial_symtab *psymtab;
1018
1019 if (m_partial_symtabs->psymtabs)
1020 {
1021 printf_filtered ("Psymtabs:\n");
1022 for (psymtab = m_partial_symtabs->psymtabs;
1023 psymtab != NULL;
1024 psymtab = psymtab->next)
1025 {
1026 printf_filtered ("%s at ",
1027 psymtab->filename);
1028 gdb_print_host_address (psymtab, gdb_stdout);
1029 printf_filtered (", ");
1030 wrap_here (" ");
1031 }
1032 printf_filtered ("\n\n");
1033 }
1034 }
1035
1036 /* Psymtab version of expand_symtabs_for_function. See its definition in
1037 the definition of quick_symbol_functions in symfile.h. */
1038
1039 void
1040 psymbol_functions::expand_symtabs_for_function (struct objfile *objfile,
1041 const char *func_name)
1042 {
1043 lookup_name_info base_lookup (func_name, symbol_name_match_type::FULL);
1044 lookup_name_info lookup_name = base_lookup.make_ignore_params ();
1045
1046 for (partial_symtab *ps : require_partial_symbols (objfile))
1047 {
1048 if (ps->readin_p (objfile))
1049 continue;
1050
1051 if ((lookup_partial_symbol (objfile, ps, lookup_name, 1, VAR_DOMAIN)
1052 != NULL)
1053 || (lookup_partial_symbol (objfile, ps, lookup_name, 0, VAR_DOMAIN)
1054 != NULL))
1055 psymtab_to_symtab (objfile, ps);
1056 }
1057 }
1058
1059 /* Psymtab version of expand_all_symtabs. See its definition in
1060 the definition of quick_symbol_functions in symfile.h. */
1061
1062 void
1063 psymbol_functions::expand_all_symtabs (struct objfile *objfile)
1064 {
1065 for (partial_symtab *psymtab : require_partial_symbols (objfile))
1066 psymtab_to_symtab (objfile, psymtab);
1067 }
1068
1069 /* Psymtab version of expand_symtabs_with_fullname. See its definition in
1070 the definition of quick_symbol_functions in symfile.h. */
1071
1072 void
1073 psymbol_functions::expand_symtabs_with_fullname (struct objfile *objfile,
1074 const char *fullname)
1075 {
1076 for (partial_symtab *p : require_partial_symbols (objfile))
1077 {
1078 /* Anonymous psymtabs don't have a name of a source file. */
1079 if (p->anonymous)
1080 continue;
1081
1082 /* psymtab_to_fullname tries to open the file which is slow.
1083 Don't call it if we know the basenames don't match. */
1084 if ((basenames_may_differ
1085 || filename_cmp (lbasename (fullname), lbasename (p->filename)) == 0)
1086 && filename_cmp (fullname, psymtab_to_fullname (p)) == 0)
1087 psymtab_to_symtab (objfile, p);
1088 }
1089 }
1090
1091 /* Psymtab version of map_symbol_filenames. See its definition in
1092 the definition of quick_symbol_functions in symfile.h. */
1093
1094 void
1095 psymbol_functions::map_symbol_filenames
1096 (struct objfile *objfile,
1097 gdb::function_view<symbol_filename_ftype> fun,
1098 bool need_fullname)
1099 {
1100 for (partial_symtab *ps : require_partial_symbols (objfile))
1101 {
1102 const char *fullname;
1103
1104 if (ps->readin_p (objfile))
1105 continue;
1106
1107 /* We can skip shared psymtabs here, because any file name will be
1108 attached to the unshared psymtab. */
1109 if (ps->user != NULL)
1110 continue;
1111
1112 /* Anonymous psymtabs don't have a file name. */
1113 if (ps->anonymous)
1114 continue;
1115
1116 QUIT;
1117 if (need_fullname)
1118 fullname = psymtab_to_fullname (ps);
1119 else
1120 fullname = NULL;
1121 fun (ps->filename, fullname);
1122 }
1123 }
1124
1125 /* Finds the fullname that a partial_symtab represents.
1126
1127 If this functions finds the fullname, it will save it in ps->fullname
1128 and it will also return the value.
1129
1130 If this function fails to find the file that this partial_symtab represents,
1131 NULL will be returned and ps->fullname will be set to NULL. */
1132
1133 static const char *
1134 psymtab_to_fullname (struct partial_symtab *ps)
1135 {
1136 gdb_assert (!ps->anonymous);
1137
1138 /* Use cached copy if we have it.
1139 We rely on forget_cached_source_info being called appropriately
1140 to handle cases like the file being moved. */
1141 if (ps->fullname == NULL)
1142 {
1143 gdb::unique_xmalloc_ptr<char> fullname;
1144 scoped_fd fd = find_and_open_source (ps->filename, ps->dirname,
1145 &fullname);
1146 ps->fullname = fullname.release ();
1147
1148 if (fd.get () < 0)
1149 {
1150 /* rewrite_source_path would be applied by find_and_open_source, we
1151 should report the pathname where GDB tried to find the file. */
1152
1153 if (ps->dirname == NULL || IS_ABSOLUTE_PATH (ps->filename))
1154 fullname.reset (xstrdup (ps->filename));
1155 else
1156 fullname.reset (concat (ps->dirname, SLASH_STRING,
1157 ps->filename, (char *) NULL));
1158
1159 ps->fullname = rewrite_source_path (fullname.get ()).release ();
1160 if (ps->fullname == NULL)
1161 ps->fullname = fullname.release ();
1162 }
1163 }
1164
1165 return ps->fullname;
1166 }
1167
1168 /* Psymtab version of map_matching_symbols. See its definition in
1169 the definition of quick_symbol_functions in symfile.h. */
1170
1171 void
1172 psymbol_functions::map_matching_symbols
1173 (struct objfile *objfile,
1174 const lookup_name_info &name, domain_enum domain,
1175 int global,
1176 gdb::function_view<symbol_found_callback_ftype> callback,
1177 symbol_compare_ftype *ordered_compare)
1178 {
1179 const int block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
1180
1181 for (partial_symtab *ps : require_partial_symbols (objfile))
1182 {
1183 QUIT;
1184 if (ps->readin_p (objfile)
1185 || match_partial_symbol (objfile, ps, global, name, domain,
1186 ordered_compare))
1187 {
1188 struct compunit_symtab *cust = psymtab_to_symtab (objfile, ps);
1189 const struct block *block;
1190
1191 if (cust == NULL)
1192 continue;
1193 block = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), block_kind);
1194 if (!iterate_over_symbols_terminated (block, name,
1195 domain, callback))
1196 return;
1197 }
1198 }
1199 }
1200
1201 /* A helper for psym_expand_symtabs_matching that handles searching
1202 included psymtabs. This returns true if a symbol is found, and
1203 false otherwise. It also updates the 'searched_flag' on the
1204 various psymtabs that it searches. */
1205
1206 static bool
1207 recursively_search_psymtabs
1208 (struct partial_symtab *ps,
1209 struct objfile *objfile,
1210 enum search_domain domain,
1211 const lookup_name_info &lookup_name,
1212 gdb::function_view<expand_symtabs_symbol_matcher_ftype> sym_matcher)
1213 {
1214 int keep_going = 1;
1215 enum psymtab_search_status result = PST_SEARCHED_AND_NOT_FOUND;
1216 int i;
1217
1218 if (ps->searched_flag != PST_NOT_SEARCHED)
1219 return ps->searched_flag == PST_SEARCHED_AND_FOUND;
1220
1221 /* Recurse into shared psymtabs first, because they may have already
1222 been searched, and this could save some time. */
1223 for (i = 0; i < ps->number_of_dependencies; ++i)
1224 {
1225 int r;
1226
1227 /* Skip non-shared dependencies, these are handled elsewhere. */
1228 if (ps->dependencies[i]->user == NULL)
1229 continue;
1230
1231 r = recursively_search_psymtabs (ps->dependencies[i],
1232 objfile, domain, lookup_name,
1233 sym_matcher);
1234 if (r != 0)
1235 {
1236 ps->searched_flag = PST_SEARCHED_AND_FOUND;
1237 return true;
1238 }
1239 }
1240
1241 partial_symbol **gbound = (ps->global_psymbols.data ()
1242 + ps->global_psymbols.size ());
1243 partial_symbol **sbound = (ps->static_psymbols.data ()
1244 + ps->static_psymbols.size ());
1245 partial_symbol **bound = gbound;
1246
1247 /* Go through all of the symbols stored in a partial
1248 symtab in one loop. */
1249 partial_symbol **psym = ps->global_psymbols.data ();
1250 while (keep_going)
1251 {
1252 if (psym >= bound)
1253 {
1254 if (bound == gbound && !ps->static_psymbols.empty ())
1255 {
1256 psym = ps->static_psymbols.data ();
1257 bound = sbound;
1258 }
1259 else
1260 keep_going = 0;
1261 continue;
1262 }
1263 else
1264 {
1265 QUIT;
1266
1267 if ((domain == ALL_DOMAIN
1268 || (domain == MODULES_DOMAIN
1269 && (*psym)->domain == MODULE_DOMAIN)
1270 || (domain == VARIABLES_DOMAIN
1271 && (*psym)->aclass != LOC_TYPEDEF
1272 && (*psym)->aclass != LOC_BLOCK)
1273 || (domain == FUNCTIONS_DOMAIN
1274 && (*psym)->aclass == LOC_BLOCK)
1275 || (domain == TYPES_DOMAIN
1276 && (*psym)->aclass == LOC_TYPEDEF))
1277 && psymbol_name_matches (*psym, lookup_name)
1278 && (sym_matcher == NULL
1279 || sym_matcher ((*psym)->ginfo.search_name ())))
1280 {
1281 /* Found a match, so notify our caller. */
1282 result = PST_SEARCHED_AND_FOUND;
1283 keep_going = 0;
1284 }
1285 }
1286 psym++;
1287 }
1288
1289 ps->searched_flag = result;
1290 return result == PST_SEARCHED_AND_FOUND;
1291 }
1292
1293 /* Psymtab version of expand_symtabs_matching. See its definition in
1294 the definition of quick_symbol_functions in symfile.h. */
1295
1296 void
1297 psymbol_functions::expand_symtabs_matching
1298 (struct objfile *objfile,
1299 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
1300 const lookup_name_info *lookup_name,
1301 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
1302 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
1303 enum search_domain domain)
1304 {
1305 /* Clear the search flags. */
1306 for (partial_symtab *ps : require_partial_symbols (objfile))
1307 ps->searched_flag = PST_NOT_SEARCHED;
1308
1309 gdb::optional<lookup_name_info> psym_lookup_name;
1310 if (lookup_name != nullptr)
1311 psym_lookup_name = lookup_name->make_ignore_params ();
1312
1313 for (partial_symtab *ps : m_partial_symtabs->range ())
1314 {
1315 QUIT;
1316
1317 if (ps->readin_p (objfile))
1318 continue;
1319
1320 if (file_matcher)
1321 {
1322 bool match;
1323
1324 if (ps->anonymous)
1325 continue;
1326
1327 match = file_matcher (ps->filename, false);
1328 if (!match)
1329 {
1330 /* Before we invoke realpath, which can get expensive when many
1331 files are involved, do a quick comparison of the basenames. */
1332 if (basenames_may_differ
1333 || file_matcher (lbasename (ps->filename), true))
1334 match = file_matcher (psymtab_to_fullname (ps), false);
1335 }
1336 if (!match)
1337 continue;
1338 }
1339
1340 if ((symbol_matcher == NULL && lookup_name == NULL)
1341 || recursively_search_psymtabs (ps, objfile, domain,
1342 *psym_lookup_name,
1343 symbol_matcher))
1344 {
1345 struct compunit_symtab *symtab =
1346 psymtab_to_symtab (objfile, ps);
1347
1348 if (expansion_notify != NULL)
1349 expansion_notify (symtab);
1350 }
1351 }
1352 }
1353
1354 /* Psymtab version of has_symbols. See its definition in
1355 the definition of quick_symbol_functions in symfile.h. */
1356
1357 bool
1358 psymbol_functions::has_symbols (struct objfile *objfile)
1359 {
1360 return m_partial_symtabs->psymtabs != NULL;
1361 }
1362
1363 /* Helper function for psym_find_compunit_symtab_by_address that fills
1364 in m_psymbol_map for a given range of psymbols. */
1365
1366 void
1367 psymbol_functions::fill_psymbol_map
1368 (struct objfile *objfile,
1369 struct partial_symtab *psymtab,
1370 std::set<CORE_ADDR> *seen_addrs,
1371 const std::vector<partial_symbol *> &symbols)
1372 {
1373 for (partial_symbol *psym : symbols)
1374 {
1375 if (psym->aclass == LOC_STATIC)
1376 {
1377 CORE_ADDR addr = psym->address (objfile);
1378 if (seen_addrs->find (addr) == seen_addrs->end ())
1379 {
1380 seen_addrs->insert (addr);
1381 m_psymbol_map.emplace_back (addr, psymtab);
1382 }
1383 }
1384 }
1385 }
1386
1387 /* See find_compunit_symtab_by_address in quick_symbol_functions, in
1388 symfile.h. */
1389
1390 compunit_symtab *
1391 psymbol_functions::find_compunit_symtab_by_address (struct objfile *objfile,
1392 CORE_ADDR address)
1393 {
1394 if (m_psymbol_map.empty ())
1395 {
1396 std::set<CORE_ADDR> seen_addrs;
1397
1398 for (partial_symtab *pst : require_partial_symbols (objfile))
1399 {
1400 fill_psymbol_map (objfile, pst,
1401 &seen_addrs,
1402 pst->global_psymbols);
1403 fill_psymbol_map (objfile, pst,
1404 &seen_addrs,
1405 pst->static_psymbols);
1406 }
1407
1408 m_psymbol_map.shrink_to_fit ();
1409
1410 std::sort (m_psymbol_map.begin (), m_psymbol_map.end (),
1411 [] (const std::pair<CORE_ADDR, partial_symtab *> &a,
1412 const std::pair<CORE_ADDR, partial_symtab *> &b)
1413 {
1414 return a.first < b.first;
1415 });
1416 }
1417
1418 auto iter = std::lower_bound
1419 (m_psymbol_map.begin (), m_psymbol_map.end (), address,
1420 [] (const std::pair<CORE_ADDR, partial_symtab *> &a,
1421 CORE_ADDR b)
1422 {
1423 return a.first < b;
1424 });
1425
1426 if (iter == m_psymbol_map.end () || iter->first != address)
1427 return NULL;
1428
1429 return psymtab_to_symtab (objfile, iter->second);
1430 }
1431
1432 \f
1433
1434 /* Partially fill a partial symtab. It will be completely filled at
1435 the end of the symbol list. */
1436
1437 partial_symtab::partial_symtab (const char *filename,
1438 psymtab_storage *partial_symtabs,
1439 struct objfile *objfile,
1440 CORE_ADDR textlow)
1441 : partial_symtab (filename, partial_symtabs, objfile)
1442 {
1443 set_text_low (textlow);
1444 set_text_high (raw_text_low ()); /* default */
1445 }
1446
1447 /* Perform "finishing up" operations of a partial symtab. */
1448
1449 void
1450 partial_symtab::end ()
1451 {
1452 global_psymbols.shrink_to_fit ();
1453 static_psymbols.shrink_to_fit ();
1454
1455 /* Sort the global list; don't sort the static list. */
1456 std::sort (global_psymbols.begin (),
1457 global_psymbols.end (),
1458 [] (partial_symbol *s1, partial_symbol *s2)
1459 {
1460 return strcmp_iw_ordered (s1->ginfo.search_name (),
1461 s2->ginfo.search_name ()) < 0;
1462 });
1463 }
1464
1465 /* See psymtab.h. */
1466
1467 unsigned long
1468 psymbol_bcache::hash (const void *addr, int length)
1469 {
1470 unsigned long h = 0;
1471 struct partial_symbol *psymbol = (struct partial_symbol *) addr;
1472 unsigned int lang = psymbol->ginfo.language ();
1473 unsigned int domain = psymbol->domain;
1474 unsigned int theclass = psymbol->aclass;
1475
1476 h = fast_hash (&psymbol->ginfo.value, sizeof (psymbol->ginfo.value), h);
1477 h = fast_hash (&lang, sizeof (unsigned int), h);
1478 h = fast_hash (&domain, sizeof (unsigned int), h);
1479 h = fast_hash (&theclass, sizeof (unsigned int), h);
1480 /* Note that psymbol names are interned via compute_and_set_names, so
1481 there's no need to hash the contents of the name here. */
1482 h = fast_hash (&psymbol->ginfo.m_name, sizeof (psymbol->ginfo.m_name), h);
1483
1484 return h;
1485 }
1486
1487 /* See psymtab.h. */
1488
1489 int
1490 psymbol_bcache::compare (const void *addr1, const void *addr2, int length)
1491 {
1492 struct partial_symbol *sym1 = (struct partial_symbol *) addr1;
1493 struct partial_symbol *sym2 = (struct partial_symbol *) addr2;
1494
1495 return (memcmp (&sym1->ginfo.value, &sym2->ginfo.value,
1496 sizeof (sym1->ginfo.value)) == 0
1497 && sym1->ginfo.language () == sym2->ginfo.language ()
1498 && sym1->domain == sym2->domain
1499 && sym1->aclass == sym2->aclass
1500 /* Note that psymbol names are interned via
1501 compute_and_set_names, so there's no need to compare the
1502 contents of the name here. */
1503 && sym1->ginfo.linkage_name () == sym2->ginfo.linkage_name ());
1504 }
1505
1506 /* See psympriv.h. */
1507
1508 void
1509 partial_symtab::add_psymbol (const partial_symbol &psymbol,
1510 psymbol_placement where,
1511 psymtab_storage *partial_symtabs,
1512 struct objfile *objfile)
1513 {
1514 bool added;
1515
1516 /* Stash the partial symbol away in the cache. */
1517 partial_symbol *psym
1518 = ((struct partial_symbol *)
1519 partial_symtabs->psymbol_cache.insert
1520 (&psymbol, sizeof (struct partial_symbol), &added));
1521
1522 /* Do not duplicate global partial symbols. */
1523 if (where == psymbol_placement::GLOBAL && !added)
1524 return;
1525
1526 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
1527 std::vector<partial_symbol *> &list
1528 = (where == psymbol_placement::STATIC
1529 ? static_psymbols
1530 : global_psymbols);
1531 list.push_back (psym);
1532 }
1533
1534 /* See psympriv.h. */
1535
1536 void
1537 partial_symtab::add_psymbol (gdb::string_view name, bool copy_name,
1538 domain_enum domain,
1539 enum address_class theclass,
1540 short section,
1541 psymbol_placement where,
1542 CORE_ADDR coreaddr,
1543 enum language language,
1544 psymtab_storage *partial_symtabs,
1545 struct objfile *objfile)
1546 {
1547 struct partial_symbol psymbol;
1548 memset (&psymbol, 0, sizeof (psymbol));
1549
1550 psymbol.set_unrelocated_address (coreaddr);
1551 psymbol.ginfo.set_section_index (section);
1552 psymbol.domain = domain;
1553 psymbol.aclass = theclass;
1554 psymbol.ginfo.set_language (language, partial_symtabs->obstack ());
1555 psymbol.ginfo.compute_and_set_names (name, copy_name, objfile->per_bfd);
1556
1557 add_psymbol (psymbol, where, partial_symtabs, objfile);
1558 }
1559
1560 /* See psympriv.h. */
1561
1562 partial_symtab::partial_symtab (const char *filename_,
1563 psymtab_storage *partial_symtabs,
1564 struct objfile *objfile)
1565 : searched_flag (PST_NOT_SEARCHED),
1566 text_low_valid (0),
1567 text_high_valid (0)
1568 {
1569 partial_symtabs->install_psymtab (this);
1570
1571 filename = objfile->intern (filename_);
1572
1573 if (symtab_create_debug)
1574 {
1575 /* Be a bit clever with debugging messages, and don't print objfile
1576 every time, only when it changes. */
1577 static char *last_objfile_name = NULL;
1578
1579 if (last_objfile_name == NULL
1580 || strcmp (last_objfile_name, objfile_name (objfile)) != 0)
1581 {
1582 xfree (last_objfile_name);
1583 last_objfile_name = xstrdup (objfile_name (objfile));
1584 fprintf_filtered (gdb_stdlog,
1585 "Creating one or more psymtabs for objfile %s ...\n",
1586 last_objfile_name);
1587 }
1588 fprintf_filtered (gdb_stdlog,
1589 "Created psymtab %s for module %s.\n",
1590 host_address_to_string (this), filename);
1591 }
1592 }
1593
1594 /* See psympriv.h. */
1595
1596 void
1597 partial_symtab::expand_dependencies (struct objfile *objfile)
1598 {
1599 for (int i = 0; i < number_of_dependencies; ++i)
1600 {
1601 if (!dependencies[i]->readin_p (objfile)
1602 && dependencies[i]->user == NULL)
1603 {
1604 /* Inform about additional files to be read in. */
1605 if (info_verbose)
1606 {
1607 fputs_filtered (" ", gdb_stdout);
1608 wrap_here ("");
1609 fputs_filtered ("and ", gdb_stdout);
1610 wrap_here ("");
1611 printf_filtered ("%s...", dependencies[i]->filename);
1612 wrap_here (""); /* Flush output */
1613 gdb_flush (gdb_stdout);
1614 }
1615 dependencies[i]->expand_psymtab (objfile);
1616 }
1617 }
1618 }
1619
1620
1621 void
1622 psymtab_storage::discard_psymtab (struct partial_symtab *pst)
1623 {
1624 struct partial_symtab **prev_pst;
1625
1626 /* From dbxread.c:
1627 Empty psymtabs happen as a result of header files which don't
1628 have any symbols in them. There can be a lot of them. But this
1629 check is wrong, in that a psymtab with N_SLINE entries but
1630 nothing else is not empty, but we don't realize that. Fixing
1631 that without slowing things down might be tricky. */
1632
1633 /* First, snip it out of the psymtab chain. */
1634
1635 prev_pst = &psymtabs;
1636 while ((*prev_pst) != pst)
1637 prev_pst = &((*prev_pst)->next);
1638 (*prev_pst) = pst->next;
1639 delete pst;
1640 }
1641
1642 \f
1643
1644 /* We need to pass a couple of items to the addrmap_foreach function,
1645 so use a struct. */
1646
1647 struct dump_psymtab_addrmap_data
1648 {
1649 struct objfile *objfile;
1650 struct partial_symtab *psymtab;
1651 struct ui_file *outfile;
1652
1653 /* Non-zero if the previously printed addrmap entry was for PSYMTAB.
1654 If so, we want to print the next one as well (since the next addrmap
1655 entry defines the end of the range). */
1656 int previous_matched;
1657 };
1658
1659 /* Helper function for dump_psymtab_addrmap to print an addrmap entry. */
1660
1661 static int
1662 dump_psymtab_addrmap_1 (void *datap, CORE_ADDR start_addr, void *obj)
1663 {
1664 struct dump_psymtab_addrmap_data *data
1665 = (struct dump_psymtab_addrmap_data *) datap;
1666 struct gdbarch *gdbarch = data->objfile->arch ();
1667 struct partial_symtab *addrmap_psymtab = (struct partial_symtab *) obj;
1668 const char *psymtab_address_or_end = NULL;
1669
1670 QUIT;
1671
1672 if (data->psymtab == NULL
1673 || data->psymtab == addrmap_psymtab)
1674 psymtab_address_or_end = host_address_to_string (addrmap_psymtab);
1675 else if (data->previous_matched)
1676 psymtab_address_or_end = "<ends here>";
1677
1678 if (data->psymtab == NULL
1679 || data->psymtab == addrmap_psymtab
1680 || data->previous_matched)
1681 {
1682 fprintf_filtered (data->outfile, " %s%s %s\n",
1683 data->psymtab != NULL ? " " : "",
1684 paddress (gdbarch, start_addr),
1685 psymtab_address_or_end);
1686 }
1687
1688 data->previous_matched = (data->psymtab == NULL
1689 || data->psymtab == addrmap_psymtab);
1690
1691 return 0;
1692 }
1693
1694 /* Helper function for maintenance_print_psymbols to print the addrmap
1695 of PSYMTAB. If PSYMTAB is NULL print the entire addrmap. */
1696
1697 static void
1698 dump_psymtab_addrmap (struct objfile *objfile,
1699 psymtab_storage *partial_symtabs,
1700 struct partial_symtab *psymtab,
1701 struct ui_file *outfile)
1702 {
1703 struct dump_psymtab_addrmap_data addrmap_dump_data;
1704
1705 if ((psymtab == NULL
1706 || psymtab->psymtabs_addrmap_supported)
1707 && partial_symtabs->psymtabs_addrmap != NULL)
1708 {
1709 addrmap_dump_data.objfile = objfile;
1710 addrmap_dump_data.psymtab = psymtab;
1711 addrmap_dump_data.outfile = outfile;
1712 addrmap_dump_data.previous_matched = 0;
1713 fprintf_filtered (outfile, "%sddress map:\n",
1714 psymtab == NULL ? "Entire a" : " A");
1715 addrmap_foreach (partial_symtabs->psymtabs_addrmap,
1716 dump_psymtab_addrmap_1, &addrmap_dump_data);
1717 }
1718 }
1719
1720 static void
1721 maintenance_print_psymbols (const char *args, int from_tty)
1722 {
1723 struct ui_file *outfile = gdb_stdout;
1724 char *address_arg = NULL, *source_arg = NULL, *objfile_arg = NULL;
1725 int i, outfile_idx, found;
1726 CORE_ADDR pc = 0;
1727 struct obj_section *section = NULL;
1728
1729 dont_repeat ();
1730
1731 gdb_argv argv (args);
1732
1733 for (i = 0; argv != NULL && argv[i] != NULL; ++i)
1734 {
1735 if (strcmp (argv[i], "-pc") == 0)
1736 {
1737 if (argv[i + 1] == NULL)
1738 error (_("Missing pc value"));
1739 address_arg = argv[++i];
1740 }
1741 else if (strcmp (argv[i], "-source") == 0)
1742 {
1743 if (argv[i + 1] == NULL)
1744 error (_("Missing source file"));
1745 source_arg = argv[++i];
1746 }
1747 else if (strcmp (argv[i], "-objfile") == 0)
1748 {
1749 if (argv[i + 1] == NULL)
1750 error (_("Missing objfile name"));
1751 objfile_arg = argv[++i];
1752 }
1753 else if (strcmp (argv[i], "--") == 0)
1754 {
1755 /* End of options. */
1756 ++i;
1757 break;
1758 }
1759 else if (argv[i][0] == '-')
1760 {
1761 /* Future proofing: Don't allow OUTFILE to begin with "-". */
1762 error (_("Unknown option: %s"), argv[i]);
1763 }
1764 else
1765 break;
1766 }
1767 outfile_idx = i;
1768
1769 if (address_arg != NULL && source_arg != NULL)
1770 error (_("Must specify at most one of -pc and -source"));
1771
1772 stdio_file arg_outfile;
1773
1774 if (argv != NULL && argv[outfile_idx] != NULL)
1775 {
1776 if (argv[outfile_idx + 1] != NULL)
1777 error (_("Junk at end of command"));
1778 gdb::unique_xmalloc_ptr<char> outfile_name
1779 (tilde_expand (argv[outfile_idx]));
1780 if (!arg_outfile.open (outfile_name.get (), FOPEN_WT))
1781 perror_with_name (outfile_name.get ());
1782 outfile = &arg_outfile;
1783 }
1784
1785 if (address_arg != NULL)
1786 {
1787 pc = parse_and_eval_address (address_arg);
1788 /* If we fail to find a section, that's ok, try the lookup anyway. */
1789 section = find_pc_section (pc);
1790 }
1791
1792 found = 0;
1793 for (objfile *objfile : current_program_space->objfiles ())
1794 {
1795 int printed_objfile_header = 0;
1796 int print_for_objfile = 1;
1797
1798 QUIT;
1799 if (objfile_arg != NULL)
1800 print_for_objfile
1801 = compare_filenames_for_search (objfile_name (objfile),
1802 objfile_arg);
1803 if (!print_for_objfile)
1804 continue;
1805
1806 for (const auto &iter : objfile->qf)
1807 {
1808 psymbol_functions *psf
1809 = dynamic_cast<psymbol_functions *> (iter.get ());
1810 if (psf == nullptr)
1811 continue;
1812
1813 psymtab_storage *partial_symtabs
1814 = psf->get_partial_symtabs ().get ();
1815
1816 if (address_arg != NULL)
1817 {
1818 struct bound_minimal_symbol msymbol = { NULL, NULL };
1819
1820 /* We don't assume each pc has a unique objfile (this is for
1821 debugging). */
1822 struct partial_symtab *ps
1823 = psf->find_pc_sect_psymtab (objfile, pc, section, msymbol);
1824 if (ps != NULL)
1825 {
1826 if (!printed_objfile_header)
1827 {
1828 outfile->printf ("\nPartial symtabs for objfile %s\n",
1829 objfile_name (objfile));
1830 printed_objfile_header = 1;
1831 }
1832 dump_psymtab (objfile, ps, outfile);
1833 dump_psymtab_addrmap (objfile, partial_symtabs, ps, outfile);
1834 found = 1;
1835 }
1836 }
1837 else
1838 {
1839 for (partial_symtab *ps : psf->require_partial_symbols (objfile))
1840 {
1841 int print_for_source = 0;
1842
1843 QUIT;
1844 if (source_arg != NULL)
1845 {
1846 print_for_source
1847 = compare_filenames_for_search (ps->filename, source_arg);
1848 found = 1;
1849 }
1850 if (source_arg == NULL
1851 || print_for_source)
1852 {
1853 if (!printed_objfile_header)
1854 {
1855 outfile->printf ("\nPartial symtabs for objfile %s\n",
1856 objfile_name (objfile));
1857 printed_objfile_header = 1;
1858 }
1859 dump_psymtab (objfile, ps, outfile);
1860 dump_psymtab_addrmap (objfile, partial_symtabs, ps,
1861 outfile);
1862 }
1863 }
1864 }
1865
1866 /* If we're printing all the objfile's symbols dump the full addrmap. */
1867
1868 if (address_arg == NULL
1869 && source_arg == NULL
1870 && partial_symtabs->psymtabs_addrmap != NULL)
1871 {
1872 outfile->puts ("\n");
1873 dump_psymtab_addrmap (objfile, partial_symtabs, NULL, outfile);
1874 }
1875 }
1876 }
1877
1878 if (!found)
1879 {
1880 if (address_arg != NULL)
1881 error (_("No partial symtab for address: %s"), address_arg);
1882 if (source_arg != NULL)
1883 error (_("No partial symtab for source file: %s"), source_arg);
1884 }
1885 }
1886
1887 /* List all the partial symbol tables whose names match REGEXP (optional). */
1888
1889 static void
1890 maintenance_info_psymtabs (const char *regexp, int from_tty)
1891 {
1892 if (regexp)
1893 re_comp (regexp);
1894
1895 for (struct program_space *pspace : program_spaces)
1896 for (objfile *objfile : pspace->objfiles ())
1897 {
1898 struct gdbarch *gdbarch = objfile->arch ();
1899
1900 /* We don't want to print anything for this objfile until we
1901 actually find a symtab whose name matches. */
1902 int printed_objfile_start = 0;
1903
1904 for (const auto &iter : objfile->qf)
1905 {
1906 psymbol_functions *psf
1907 = dynamic_cast<psymbol_functions *> (iter.get ());
1908 if (psf == nullptr)
1909 continue;
1910 for (partial_symtab *psymtab : psf->require_partial_symbols (objfile))
1911 {
1912 QUIT;
1913
1914 if (! regexp
1915 || re_exec (psymtab->filename))
1916 {
1917 if (! printed_objfile_start)
1918 {
1919 printf_filtered ("{ objfile %s ", objfile_name (objfile));
1920 wrap_here (" ");
1921 printf_filtered ("((struct objfile *) %s)\n",
1922 host_address_to_string (objfile));
1923 printed_objfile_start = 1;
1924 }
1925
1926 printf_filtered (" { psymtab %s ", psymtab->filename);
1927 wrap_here (" ");
1928 printf_filtered ("((struct partial_symtab *) %s)\n",
1929 host_address_to_string (psymtab));
1930
1931 printf_filtered (" readin %s\n",
1932 psymtab->readin_p (objfile) ? "yes" : "no");
1933 printf_filtered (" fullname %s\n",
1934 psymtab->fullname
1935 ? psymtab->fullname : "(null)");
1936 printf_filtered (" text addresses ");
1937 fputs_filtered (paddress (gdbarch,
1938 psymtab->text_low (objfile)),
1939 gdb_stdout);
1940 printf_filtered (" -- ");
1941 fputs_filtered (paddress (gdbarch,
1942 psymtab->text_high (objfile)),
1943 gdb_stdout);
1944 printf_filtered ("\n");
1945 printf_filtered (" psymtabs_addrmap_supported %s\n",
1946 (psymtab->psymtabs_addrmap_supported
1947 ? "yes" : "no"));
1948 printf_filtered (" globals ");
1949 if (!psymtab->global_psymbols.empty ())
1950 printf_filtered
1951 ("(* (struct partial_symbol **) %s @ %d)\n",
1952 host_address_to_string (psymtab->global_psymbols.data ()),
1953 (int) psymtab->global_psymbols.size ());
1954 else
1955 printf_filtered ("(none)\n");
1956 printf_filtered (" statics ");
1957 if (!psymtab->static_psymbols.empty ())
1958 printf_filtered
1959 ("(* (struct partial_symbol **) %s @ %d)\n",
1960 host_address_to_string (psymtab->static_psymbols.data ()),
1961 (int) psymtab->static_psymbols.size ());
1962 else
1963 printf_filtered ("(none)\n");
1964 if (psymtab->user)
1965 printf_filtered (" user %s "
1966 "((struct partial_symtab *) %s)\n",
1967 psymtab->user->filename,
1968 host_address_to_string (psymtab->user));
1969 printf_filtered (" dependencies ");
1970 if (psymtab->number_of_dependencies)
1971 {
1972 int i;
1973
1974 printf_filtered ("{\n");
1975 for (i = 0; i < psymtab->number_of_dependencies; i++)
1976 {
1977 struct partial_symtab *dep = psymtab->dependencies[i];
1978
1979 /* Note the string concatenation there --- no
1980 comma. */
1981 printf_filtered (" psymtab %s "
1982 "((struct partial_symtab *) %s)\n",
1983 dep->filename,
1984 host_address_to_string (dep));
1985 }
1986 printf_filtered (" }\n");
1987 }
1988 else
1989 printf_filtered ("(none)\n");
1990 printf_filtered (" }\n");
1991 }
1992 }
1993 }
1994
1995 if (printed_objfile_start)
1996 printf_filtered ("}\n");
1997 }
1998 }
1999
2000 /* Check consistency of currently expanded psymtabs vs symtabs. */
2001
2002 static void
2003 maintenance_check_psymtabs (const char *ignore, int from_tty)
2004 {
2005 struct symbol *sym;
2006 struct compunit_symtab *cust = NULL;
2007 const struct blockvector *bv;
2008 const struct block *b;
2009
2010 for (objfile *objfile : current_program_space->objfiles ())
2011 {
2012 for (const auto &iter : objfile->qf)
2013 {
2014 psymbol_functions *psf
2015 = dynamic_cast<psymbol_functions *> (iter.get ());
2016 if (psf == nullptr)
2017 continue;
2018
2019 for (partial_symtab *ps : psf->require_partial_symbols (objfile))
2020 {
2021 struct gdbarch *gdbarch = objfile->arch ();
2022
2023 /* We don't call psymtab_to_symtab here because that may cause symtab
2024 expansion. When debugging a problem it helps if checkers leave
2025 things unchanged. */
2026 cust = ps->get_compunit_symtab (objfile);
2027
2028 /* First do some checks that don't require the associated symtab. */
2029 if (ps->text_high (objfile) < ps->text_low (objfile))
2030 {
2031 printf_filtered ("Psymtab ");
2032 puts_filtered (ps->filename);
2033 printf_filtered (" covers bad range ");
2034 fputs_filtered (paddress (gdbarch, ps->text_low (objfile)),
2035 gdb_stdout);
2036 printf_filtered (" - ");
2037 fputs_filtered (paddress (gdbarch, ps->text_high (objfile)),
2038 gdb_stdout);
2039 printf_filtered ("\n");
2040 continue;
2041 }
2042
2043 /* Now do checks requiring the associated symtab. */
2044 if (cust == NULL)
2045 continue;
2046 bv = COMPUNIT_BLOCKVECTOR (cust);
2047 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
2048 for (partial_symbol *psym : ps->static_psymbols)
2049 {
2050 /* Skip symbols for inlined functions without address. These may
2051 or may not have a match in the full symtab. */
2052 if (psym->aclass == LOC_BLOCK
2053 && psym->ginfo.value.address == 0)
2054 continue;
2055
2056 sym = block_lookup_symbol (b, psym->ginfo.search_name (),
2057 symbol_name_match_type::SEARCH_NAME,
2058 psym->domain);
2059 if (!sym)
2060 {
2061 printf_filtered ("Static symbol `");
2062 puts_filtered (psym->ginfo.linkage_name ());
2063 printf_filtered ("' only found in ");
2064 puts_filtered (ps->filename);
2065 printf_filtered (" psymtab\n");
2066 }
2067 }
2068 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
2069 for (partial_symbol *psym : ps->global_psymbols)
2070 {
2071 sym = block_lookup_symbol (b, psym->ginfo.search_name (),
2072 symbol_name_match_type::SEARCH_NAME,
2073 psym->domain);
2074 if (!sym)
2075 {
2076 printf_filtered ("Global symbol `");
2077 puts_filtered (psym->ginfo.linkage_name ());
2078 printf_filtered ("' only found in ");
2079 puts_filtered (ps->filename);
2080 printf_filtered (" psymtab\n");
2081 }
2082 }
2083 if (ps->raw_text_high () != 0
2084 && (ps->text_low (objfile) < BLOCK_START (b)
2085 || ps->text_high (objfile) > BLOCK_END (b)))
2086 {
2087 printf_filtered ("Psymtab ");
2088 puts_filtered (ps->filename);
2089 printf_filtered (" covers ");
2090 fputs_filtered (paddress (gdbarch, ps->text_low (objfile)),
2091 gdb_stdout);
2092 printf_filtered (" - ");
2093 fputs_filtered (paddress (gdbarch, ps->text_high (objfile)),
2094 gdb_stdout);
2095 printf_filtered (" but symtab covers only ");
2096 fputs_filtered (paddress (gdbarch, BLOCK_START (b)), gdb_stdout);
2097 printf_filtered (" - ");
2098 fputs_filtered (paddress (gdbarch, BLOCK_END (b)), gdb_stdout);
2099 printf_filtered ("\n");
2100 }
2101 }
2102 }
2103 }
2104 }
2105
2106 void _initialize_psymtab ();
2107 void
2108 _initialize_psymtab ()
2109 {
2110 add_cmd ("psymbols", class_maintenance, maintenance_print_psymbols, _("\
2111 Print dump of current partial symbol definitions.\n\
2112 Usage: mt print psymbols [-objfile OBJFILE] [-pc ADDRESS] [--] [OUTFILE]\n\
2113 mt print psymbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\
2114 Entries in the partial symbol table are dumped to file OUTFILE,\n\
2115 or the terminal if OUTFILE is unspecified.\n\
2116 If ADDRESS is provided, dump only the file for that address.\n\
2117 If SOURCE is provided, dump only that file's symbols.\n\
2118 If OBJFILE is provided, dump only that file's minimal symbols."),
2119 &maintenanceprintlist);
2120
2121 add_cmd ("psymtabs", class_maintenance, maintenance_info_psymtabs, _("\
2122 List the partial symbol tables for all object files.\n\
2123 This does not include information about individual partial symbols,\n\
2124 just the symbol table structures themselves."),
2125 &maintenanceinfolist);
2126
2127 add_cmd ("check-psymtabs", class_maintenance, maintenance_check_psymtabs,
2128 _("\
2129 Check consistency of currently expanded psymtabs versus symtabs."),
2130 &maintenancelist);
2131 }