Simplify use of map_matching_symbols in ada-lang.c
[deliverable/binutils-gdb.git] / gdb / psymtab.c
CommitLineData
ccefe4c4 1/* Partial symbol tables.
95cf5869 2
3666a048 3 Copyright (C) 2009-2021 Free Software Foundation, Inc.
ccefe4c4
TT
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"
ccefe4c4 22#include "objfiles.h"
b22a7c6a 23#include "psympriv.h"
ccefe4c4
TT
24#include "block.h"
25#include "filenames.h"
26#include "source.h"
27#include "addrmap.h"
28#include "gdbtypes.h"
ccefe4c4
TT
29#include "ui-out.h"
30#include "command.h"
e0eac551 31#include "readline/tilde.h"
ccefe4c4 32#include "gdb_regex.h"
40658b94 33#include "dictionary.h"
c00f8484
KS
34#include "language.h"
35#include "cp-support.h"
dfc7bb5b 36#include "gdbcmd.h"
af5bf4ad 37#include <algorithm>
71a3c369 38#include <set>
ccefe4c4 39
5c80ed9d
TT
40static struct partial_symbol *lookup_partial_symbol (struct objfile *,
41 struct partial_symtab *,
8c072cb6
TT
42 const lookup_name_info &,
43 int,
ccefe4c4
TT
44 domain_enum);
45
da5132d3 46static const char *psymtab_to_fullname (struct partial_symtab *ps);
ccefe4c4 47
5c80ed9d
TT
48static struct partial_symbol *find_pc_sect_psymbol (struct objfile *,
49 struct partial_symtab *,
ccefe4c4
TT
50 CORE_ADDR,
51 struct obj_section *);
52
43f3e411
DE
53static struct compunit_symtab *psymtab_to_symtab (struct objfile *objfile,
54 struct partial_symtab *pst);
ccefe4c4 55
d320c2b5
TT
56psymtab_storage::~psymtab_storage ()
57{
6f17252b
TT
58 partial_symtab *iter = psymtabs;
59 while (iter != nullptr)
60 {
61 partial_symtab *next = iter->next;
62 delete iter;
63 iter = next;
64 }
d320c2b5
TT
65}
66
b596a3c7
TT
67/* See psymtab.h. */
68
abaa2f23
TT
69void
70psymtab_storage::install_psymtab (partial_symtab *pst)
b596a3c7 71{
abaa2f23
TT
72 pst->next = psymtabs;
73 psymtabs = pst;
b596a3c7
TT
74}
75
d320c2b5
TT
76\f
77
d1eef86d
TT
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. */
b11896a5 82
3aa31ce7
TT
83psymtab_storage::partial_symtab_range
84psymbol_functions::require_partial_symbols (struct objfile *objfile)
b11896a5 85{
d1eef86d 86 objfile->require_partial_symbols (true);
3aa31ce7 87 return m_partial_symtabs->range ();
b11896a5
TT
88}
89
83827540 90/* Helper function for psym_map_symtabs_matching_filename that
f8eba3c6 91 expands the symtabs and calls the iterator. */
ccefe4c4 92
14bc53a8 93static bool
f8eba3c6
TT
94partial_map_expand_apply (struct objfile *objfile,
95 const char *name,
f8eba3c6
TT
96 const char *real_path,
97 struct partial_symtab *pst,
14bc53a8 98 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 99{
43f3e411 100 struct compunit_symtab *last_made = objfile->compunit_symtabs;
f8eba3c6 101
9439a077
TT
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
f8eba3c6 106 /* Don't visit already-expanded psymtabs. */
5717c425 107 if (pst->readin_p (objfile))
f8eba3c6
TT
108 return 0;
109
110 /* This may expand more than one symtab, and we want to iterate over
111 all of them. */
5c80ed9d 112 psymtab_to_symtab (objfile, pst);
f8eba3c6 113
14bc53a8
PA
114 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
115 last_made, callback);
f8eba3c6
TT
116}
117
83827540
DE
118/* Psymtab version of map_symtabs_matching_filename. See its definition in
119 the definition of quick_symbol_functions in symfile.h. */
f8eba3c6 120
39298a5d
TT
121bool
122psymbol_functions::map_symtabs_matching_filename
14bc53a8
PA
123 (struct objfile *objfile,
124 const char *name,
125 const char *real_path,
126 gdb::function_view<bool (symtab *)> callback)
ccefe4c4 127{
c011a4f4 128 const char *name_basename = lbasename (name);
ccefe4c4 129
d1eef86d 130 for (partial_symtab *pst : require_partial_symbols (objfile))
b22a7c6a 131 {
b22a7c6a
TT
132 /* Anonymous psymtabs don't have a file name. */
133 if (pst->anonymous)
288e77a7 134 continue;
ccefe4c4 135
b22a7c6a
TT
136 if (compare_filenames_for_search (pst->filename, name))
137 {
eea9e357
TV
138 while (pst->user)
139 pst = pst->user;
140
b22a7c6a
TT
141 if (partial_map_expand_apply (objfile, name, real_path,
142 pst, callback))
143 return true;
144 continue;
145 }
c011a4f4 146
b22a7c6a
TT
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)
288e77a7 151 continue;
05cba821 152
b22a7c6a
TT
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 }
ccefe4c4 176
14bc53a8 177 return false;
ccefe4c4
TT
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
183static struct partial_symtab *
5c80ed9d
TT
184find_pc_sect_psymtab_closer (struct objfile *objfile,
185 CORE_ADDR pc, struct obj_section *section,
ccefe4c4 186 struct partial_symtab *pst,
77e371c0 187 struct bound_minimal_symbol msymbol)
ccefe4c4 188{
ccefe4c4
TT
189 struct partial_symtab *tpst;
190 struct partial_symtab *best_pst = pst;
79748972 191 CORE_ADDR best_addr = pst->text_low (objfile);
ccefe4c4 192
9750bca9
JK
193 gdb_assert (!pst->psymtabs_addrmap_supported);
194
ccefe4c4
TT
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. */
95cf5869
DE
199 if (!(objfile->flags & OBJF_REORDERED)
200 && section == NULL) /* Can't validate section this way. */
ccefe4c4
TT
201 return pst;
202
77e371c0 203 if (msymbol.minsym == NULL)
95cf5869 204 return pst;
ccefe4c4
TT
205
206 /* The code range of partial symtabs sometimes overlap, so, in
207 the loop below, we need to check all partial symtabs and
0df8b418 208 find the one that fits better for the given PC address. We
ccefe4c4
TT
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 {
79748972 215 if (pc >= tpst->text_low (objfile) && pc < tpst->text_high (objfile))
ccefe4c4
TT
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. */
5c80ed9d 224 p = find_pc_sect_psymbol (objfile, tpst, pc, section);
ccefe4c4 225 if (p != NULL
02e9e7f7 226 && (p->address (objfile) == BMSYMBOL_VALUE_ADDRESS (msymbol)))
ccefe4c4
TT
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)
02e9e7f7 234 this_addr = p->address (objfile);
ccefe4c4 235 else
79748972 236 this_addr = tpst->text_low (objfile);
ccefe4c4
TT
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
0df8b418 243 best match symbol. This can help in cases where the
ccefe4c4
TT
244 symbol information/debuginfo is not complete, like
245 for instance on IRIX6 with gcc, where no debug info
0df8b418
MS
246 is emitted for statics. (See also the nodebug.exp
247 testcase.) */
ccefe4c4
TT
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
3aa31ce7 258/* See psympriv.h. */
95cf5869 259
3aa31ce7
TT
260struct partial_symtab *
261psymbol_functions::find_pc_sect_psymtab (struct objfile *objfile,
262 CORE_ADDR pc,
263 struct obj_section *section,
264 struct bound_minimal_symbol msymbol)
ccefe4c4 265{
3dd9bb46
AB
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
3aa31ce7
TT
278 if (m_partial_symtabs->psymtabs != NULL
279 && m_partial_symtabs->psymtabs_addrmap != NULL)
ccefe4c4 280 {
b3b3bada 281 CORE_ADDR baseaddr = objfile->text_section_offset ();
3dd9bb46 282
b22a7c6a
TT
283 struct partial_symtab *pst
284 = ((struct partial_symtab *)
3aa31ce7 285 addrmap_find (m_partial_symtabs->psymtabs_addrmap,
d320c2b5 286 pc - baseaddr));
ccefe4c4
TT
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. */
95cf5869 292 if (overlay_debugging && msymbol.minsym != NULL && section != NULL)
ccefe4c4
TT
293 {
294 struct partial_symbol *p;
ad3bbd48 295
ccefe4c4
TT
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. */
5c80ed9d 300 p = find_pc_sect_psymbol (objfile, pst, pc, section);
95cf5869 301 if (p == NULL
02e9e7f7
TT
302 || (p->address (objfile)
303 != BMSYMBOL_VALUE_ADDRESS (msymbol)))
ccefe4c4
TT
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
d1eef86d 328 for (partial_symtab *pst : require_partial_symbols (objfile))
9750bca9 329 if (!pst->psymtabs_addrmap_supported
79748972 330 && pc >= pst->text_low (objfile) && pc < pst->text_high (objfile))
ccefe4c4
TT
331 {
332 struct partial_symtab *best_pst;
333
5c80ed9d
TT
334 best_pst = find_pc_sect_psymtab_closer (objfile, pc, section, pst,
335 msymbol);
ccefe4c4
TT
336 if (best_pst != NULL)
337 return best_pst;
338 }
339
340 return NULL;
341}
342
95cf5869
DE
343/* Psymtab version of find_pc_sect_compunit_symtab. See its definition in
344 the definition of quick_symbol_functions in symfile.h. */
83827540 345
39298a5d
TT
346struct compunit_symtab *
347psymbol_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)
ccefe4c4 353{
17d66340 354 struct partial_symtab *ps = find_pc_sect_psymtab (objfile,
17d66340 355 pc, section,
ccefe4c4 356 msymbol);
95cf5869 357 if (ps != NULL)
ccefe4c4 358 {
5717c425 359 if (warn_if_readin && ps->readin_p (objfile))
ccefe4c4
TT
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"),
08feed99 365 paddress (objfile->arch (), pc));
5c80ed9d 366 psymtab_to_symtab (objfile, ps);
5717c425 367 return ps->get_compunit_symtab (objfile);
ccefe4c4
TT
368 }
369 return NULL;
370}
371
372/* Find which partial symbol within a psymtab matches PC and SECTION.
95cf5869 373 Return NULL if none. */
ccefe4c4
TT
374
375static struct partial_symbol *
5c80ed9d
TT
376find_pc_sect_psymbol (struct objfile *objfile,
377 struct partial_symtab *psymtab, CORE_ADDR pc,
ccefe4c4
TT
378 struct obj_section *section)
379{
af5bf4ad 380 struct partial_symbol *best = NULL;
ccefe4c4 381 CORE_ADDR best_pc;
79748972 382 const CORE_ADDR textlow = psymtab->text_low (objfile);
ccefe4c4
TT
383
384 gdb_assert (psymtab != NULL);
385
0df8b418 386 /* Cope with programs that start at address 0. */
79748972 387 best_pc = (textlow != 0) ? textlow - 1 : 0;
ccefe4c4
TT
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. */
932539d7 392 for (partial_symbol *p : psymtab->global_psymbols)
ccefe4c4 393 {
8a6d4234
TT
394 if (p->domain == VAR_DOMAIN
395 && p->aclass == LOC_BLOCK
02e9e7f7
TT
396 && pc >= p->address (objfile)
397 && (p->address (objfile) > best_pc
79748972 398 || (psymtab->text_low (objfile) == 0
02e9e7f7 399 && best_pc == 0 && p->address (objfile) == 0)))
ccefe4c4 400 {
95cf5869 401 if (section != NULL) /* Match on a specific section. */
ccefe4c4 402 {
8a6d4234 403 if (!matching_obj_sections (p->obj_section (objfile),
e27d198c 404 section))
ccefe4c4
TT
405 continue;
406 }
02e9e7f7 407 best_pc = p->address (objfile);
ccefe4c4
TT
408 best = p;
409 }
410 }
411
932539d7 412 for (partial_symbol *p : psymtab->static_psymbols)
ccefe4c4 413 {
8a6d4234
TT
414 if (p->domain == VAR_DOMAIN
415 && p->aclass == LOC_BLOCK
02e9e7f7
TT
416 && pc >= p->address (objfile)
417 && (p->address (objfile) > best_pc
79748972 418 || (psymtab->text_low (objfile) == 0
02e9e7f7 419 && best_pc == 0 && p->address (objfile) == 0)))
ccefe4c4 420 {
95cf5869 421 if (section != NULL) /* Match on a specific section. */
ccefe4c4 422 {
8a6d4234 423 if (!matching_obj_sections (p->obj_section (objfile),
e27d198c 424 section))
ccefe4c4
TT
425 continue;
426 }
02e9e7f7 427 best_pc = p->address (objfile);
ccefe4c4
TT
428 best = p;
429 }
430 }
431
432 return best;
433}
434
95cf5869
DE
435/* Psymtab version of lookup_symbol. See its definition in
436 the definition of quick_symbol_functions in symfile.h. */
83827540 437
39298a5d
TT
438struct compunit_symtab *
439psymbol_functions::lookup_symbol (struct objfile *objfile,
440 block_enum block_index, const char *name,
441 const domain_enum domain)
ccefe4c4 442{
ccefe4c4 443 const int psymtab_index = (block_index == GLOBAL_BLOCK ? 1 : 0);
43f3e411 444 struct compunit_symtab *stab_best = NULL;
ccefe4c4 445
b5ec771e
PA
446 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
447
8c072cb6
TT
448 lookup_name_info psym_lookup_name = lookup_name.make_ignore_params ();
449
d1eef86d 450 for (partial_symtab *ps : require_partial_symbols (objfile))
b22a7c6a 451 {
5717c425
TT
452 if (!ps->readin_p (objfile)
453 && lookup_partial_symbol (objfile, ps, psym_lookup_name,
454 psymtab_index, domain))
b22a7c6a
TT
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);
582942f4 462 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
b22a7c6a
TT
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 }
ccefe4c4 482
bfb05775 483 return stab_best;
ccefe4c4
TT
484}
485
d3214198
TV
486/* Psymtab version of lookup_global_symbol_language. See its definition in
487 the definition of quick_symbol_functions in symfile.h. */
488
39298a5d
TT
489enum language
490psymbol_functions::lookup_global_symbol_language (struct objfile *objfile,
491 const char *name,
492 domain_enum domain,
493 bool *symbol_found_p)
d3214198
TV
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
d1eef86d 501 for (partial_symtab *ps : require_partial_symbols (objfile))
d3214198
TV
502 {
503 struct partial_symbol *psym;
5717c425 504 if (ps->readin_p (objfile))
d3214198
TV
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
b5ec771e
PA
518/* Returns true if PSYM matches LOOKUP_NAME. */
519
520static bool
521psymbol_name_matches (partial_symbol *psym,
522 const lookup_name_info &lookup_name)
523{
c1b5c1eb 524 const language_defn *lang = language_def (psym->ginfo.language ());
b5ec771e 525 symbol_name_matcher_ftype *name_match
c9debfb9 526 = lang->get_symbol_name_matcher (lookup_name);
c9d95fa3 527 return name_match (psym->ginfo.search_name (), lookup_name, NULL);
b5ec771e
PA
528}
529
40658b94
PH
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
538static struct partial_symbol *
5c80ed9d
TT
539match_partial_symbol (struct objfile *objfile,
540 struct partial_symtab *pst, int global,
b054970d 541 const lookup_name_info &name, domain_enum domain,
2edb89d3 542 symbol_compare_ftype *ordered_compare)
40658b94
PH
543{
544 struct partial_symbol **start, **psym;
545 struct partial_symbol **top, **real_top, **bottom, **center;
932539d7
TT
546 int length = (global
547 ? pst->global_psymbols.size ()
548 : pst->static_psymbols.size ());
40658b94
PH
549 int do_linear_search = 1;
550
551 if (length == 0)
b5ec771e
PA
552 return NULL;
553
40658b94 554 start = (global ?
932539d7
TT
555 &pst->global_psymbols[0] :
556 &pst->static_psymbols[0]);
40658b94
PH
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
dda83cd7
SM
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. */
40658b94
PH
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);
b5ec771e 575
c1b5c1eb 576 enum language lang = (*center)->ginfo.language ();
e0802d59 577 const char *lang_ln = name.language_lookup_name (lang);
b5ec771e 578
c9d95fa3 579 if (ordered_compare ((*center)->ginfo.search_name (),
af97b416 580 lang_ln) >= 0)
40658b94
PH
581 top = center;
582 else
583 bottom = center + 1;
584 }
585 gdb_assert (top == bottom);
586
587 while (top <= real_top
b054970d 588 && psymbol_name_matches (*top, name))
40658b94 589 {
c1b5c1eb 590 if (symbol_matches_domain ((*top)->ginfo.language (),
8a6d4234 591 (*top)->domain, domain))
40658b94
PH
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 {
c1b5c1eb 604 if (symbol_matches_domain ((*psym)->ginfo.language (),
8a6d4234 605 (*psym)->domain, domain)
b054970d 606 && psymbol_name_matches (*psym, name))
40658b94
PH
607 return *psym;
608 }
609 }
610
611 return NULL;
612}
613
8c072cb6
TT
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. */
ccefe4c4 617
18430289 618static struct partial_symbol *
5c80ed9d 619lookup_partial_symbol (struct objfile *objfile,
8c072cb6
TT
620 struct partial_symtab *pst,
621 const lookup_name_info &lookup_name,
ccefe4c4
TT
622 int global, domain_enum domain)
623{
ccefe4c4
TT
624 struct partial_symbol **start, **psym;
625 struct partial_symbol **top, **real_top, **bottom, **center;
932539d7
TT
626 int length = (global
627 ? pst->global_psymbols.size ()
628 : pst->static_psymbols.size ());
ccefe4c4
TT
629 int do_linear_search = 1;
630
631 if (length == 0)
95cf5869 632 return NULL;
c00f8484 633
ccefe4c4 634 start = (global ?
932539d7
TT
635 &pst->global_psymbols[0] :
636 &pst->static_psymbols[0]);
ccefe4c4 637
0df8b418 638 if (global) /* This means we can use a binary search. */
ccefe4c4
TT
639 {
640 do_linear_search = 0;
641
642 /* Binary search. This search is guaranteed to end with center
dda83cd7
SM
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. */
ccefe4c4
TT
647
648 bottom = start;
649 top = start + length - 1;
650 real_top = top;
651 while (top > bottom)
652 {
653 center = bottom + (top - bottom) / 2;
e2ff18a0
SM
654
655 gdb_assert (center < top);
656
c9d95fa3 657 if (strcmp_iw_ordered ((*center)->ginfo.search_name (),
e0802d59 658 lookup_name.c_str ()) >= 0)
ccefe4c4
TT
659 {
660 top = center;
661 }
662 else
663 {
664 bottom = center + 1;
665 }
666 }
e2ff18a0
SM
667
668 gdb_assert (top == bottom);
ccefe4c4 669
559a7a62
JK
670 /* For `case_sensitivity == case_sensitive_off' strcmp_iw_ordered will
671 search more exactly than what matches SYMBOL_MATCHES_SEARCH_NAME. */
af97b416
TT
672 while (top >= start && symbol_matches_search_name (&(*top)->ginfo,
673 lookup_name))
559a7a62
JK
674 top--;
675
676 /* Fixup to have a symbol which matches SYMBOL_MATCHES_SEARCH_NAME. */
677 top++;
678
af97b416
TT
679 while (top <= real_top && symbol_matches_search_name (&(*top)->ginfo,
680 lookup_name))
ccefe4c4 681 {
c1b5c1eb 682 if (symbol_matches_domain ((*top)->ginfo.language (),
8a6d4234 683 (*top)->domain, domain))
56f37645 684 return *top;
ccefe4c4
TT
685 top++;
686 }
687 }
688
689 /* Can't use a binary search or else we found during the binary search that
40658b94 690 we should also do a linear search. */
ccefe4c4
TT
691
692 if (do_linear_search)
693 {
694 for (psym = start; psym < start + length; psym++)
695 {
c1b5c1eb 696 if (symbol_matches_domain ((*psym)->ginfo.language (),
8a6d4234 697 (*psym)->domain, domain)
af97b416 698 && symbol_matches_search_name (&(*psym)->ginfo, lookup_name))
56f37645 699 return *psym;
ccefe4c4
TT
700 }
701 }
702
95cf5869 703 return NULL;
ccefe4c4
TT
704}
705
706/* Get the symbol table that corresponds to a partial_symtab.
f194fefb
DE
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. */
ccefe4c4 711
43f3e411 712static struct compunit_symtab *
5c80ed9d 713psymtab_to_symtab (struct objfile *objfile, struct partial_symtab *pst)
ccefe4c4 714{
9439a077
TT
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
0df8b418 720 /* If it's been looked up before, return it. */
5717c425
TT
721 if (pst->get_compunit_symtab (objfile))
722 return pst->get_compunit_symtab (objfile);
ccefe4c4
TT
723
724 /* If it has not yet been read in, read it. */
5717c425 725 if (!pst->readin_p (objfile))
ccefe4c4 726 {
c83dd867 727 scoped_restore decrementer = increment_reading_symtab ();
ad3bbd48 728
077cbab2
TT
729 if (info_verbose)
730 {
fd760e79 731 printf_filtered (_("Reading in symbols for %s...\n"),
077cbab2
TT
732 pst->filename);
733 gdb_flush (gdb_stdout);
734 }
735
891813be 736 pst->read_symtab (objfile);
ccefe4c4
TT
737 }
738
5717c425 739 return pst->get_compunit_symtab (objfile);
ccefe4c4
TT
740}
741
95cf5869
DE
742/* Psymtab version of find_last_source_symtab. See its definition in
743 the definition of quick_symbol_functions in symfile.h. */
83827540 744
39298a5d
TT
745struct symtab *
746psymbol_functions::find_last_source_symtab (struct objfile *ofp)
ccefe4c4 747{
95cf5869 748 struct partial_symtab *cs_pst = NULL;
ccefe4c4 749
d1eef86d 750 for (partial_symtab *ps : require_partial_symbols (ofp))
ccefe4c4
TT
751 {
752 const char *name = ps->filename;
753 int len = strlen (name);
ad3bbd48 754
ccefe4c4
TT
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 {
5717c425 762 if (cs_pst->readin_p (ofp))
ccefe4c4
TT
763 {
764 internal_error (__FILE__, __LINE__,
765 _("select_source_symtab: "
766 "readin pst found and no symtabs."));
767 }
768 else
43f3e411
DE
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 }
ccefe4c4
TT
776 }
777 return NULL;
778}
779
95cf5869
DE
780/* Psymtab version of forget_cached_source_info. See its definition in
781 the definition of quick_symbol_functions in symfile.h. */
83827540 782
39298a5d
TT
783void
784psymbol_functions::forget_cached_source_info (struct objfile *objfile)
ccefe4c4 785{
d1eef86d 786 for (partial_symtab *pst : require_partial_symbols (objfile))
ccefe4c4
TT
787 {
788 if (pst->fullname != NULL)
789 {
790 xfree (pst->fullname);
791 pst->fullname = NULL;
792 }
793 }
794}
795
796static void
02e9e7f7 797print_partial_symbols (struct gdbarch *gdbarch, struct objfile *objfile,
932539d7
TT
798 const std::vector<partial_symbol *> &symbols,
799 const char *what, struct ui_file *outfile)
ccefe4c4
TT
800{
801 fprintf_filtered (outfile, " %s partial symbols:\n", what);
932539d7 802 for (partial_symbol *p : symbols)
ccefe4c4 803 {
27618ce4 804 QUIT;
932539d7
TT
805 fprintf_filtered (outfile, " `%s'", p->ginfo.linkage_name ());
806 if (p->ginfo.demangled_name () != NULL)
ccefe4c4 807 {
af97b416 808 fprintf_filtered (outfile, " `%s'",
932539d7 809 p->ginfo.demangled_name ());
ccefe4c4
TT
810 }
811 fputs_filtered (", ", outfile);
932539d7 812 switch (p->domain)
ccefe4c4
TT
813 {
814 case UNDEF_DOMAIN:
815 fputs_filtered ("undefined domain, ", outfile);
816 break;
817 case VAR_DOMAIN:
0df8b418 818 /* This is the usual thing -- don't print it. */
ccefe4c4
TT
819 break;
820 case STRUCT_DOMAIN:
821 fputs_filtered ("struct domain, ", outfile);
822 break;
06ff036e
AB
823 case MODULE_DOMAIN:
824 fputs_filtered ("module domain, ", outfile);
825 break;
ccefe4c4
TT
826 case LABEL_DOMAIN:
827 fputs_filtered ("label domain, ", outfile);
828 break;
06ff036e
AB
829 case COMMON_BLOCK_DOMAIN:
830 fputs_filtered ("common block domain, ", outfile);
831 break;
ccefe4c4
TT
832 default:
833 fputs_filtered ("<invalid domain>, ", outfile);
834 break;
835 }
932539d7 836 switch (p->aclass)
ccefe4c4
TT
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);
932539d7 888 fputs_filtered (paddress (gdbarch, p->unrelocated_address ()), outfile);
ccefe4c4 889 fprintf_filtered (outfile, "\n");
ccefe4c4
TT
890 }
891}
892
893static void
894dump_psymtab (struct objfile *objfile, struct partial_symtab *psymtab,
895 struct ui_file *outfile)
896{
08feed99 897 struct gdbarch *gdbarch = objfile->arch ();
ccefe4c4
TT
898 int i;
899
b4c41fc7
DE
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 }
ccefe4c4
TT
910 fprintf_filtered (outfile, "(object ");
911 gdb_print_host_address (psymtab, outfile);
912 fprintf_filtered (outfile, ")\n\n");
22068491
TT
913 fprintf_filtered (outfile, " Read from object file %s (",
914 objfile_name (objfile));
ccefe4c4 915 gdb_print_host_address (objfile, outfile);
22068491 916 fprintf_filtered (outfile, ")\n");
ccefe4c4 917
5717c425 918 if (psymtab->readin_p (objfile))
ccefe4c4
TT
919 {
920 fprintf_filtered (outfile,
921 " Full symtab was read (at ");
5717c425 922 gdb_print_host_address (psymtab->get_compunit_symtab (objfile), outfile);
ccefe4c4
TT
923 fprintf_filtered (outfile, ")\n");
924 }
925
ccefe4c4 926 fprintf_filtered (outfile, " Symbols cover text addresses ");
79748972 927 fputs_filtered (paddress (gdbarch, psymtab->text_low (objfile)), outfile);
ccefe4c4 928 fprintf_filtered (outfile, "-");
79748972 929 fputs_filtered (paddress (gdbarch, psymtab->text_high (objfile)), outfile);
ccefe4c4 930 fprintf_filtered (outfile, "\n");
9750bca9
JK
931 fprintf_filtered (outfile, " Address map supported - %s.\n",
932 psymtab->psymtabs_addrmap_supported ? "yes" : "no");
ccefe4c4
TT
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 }
9439a077
TT
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 }
932539d7 948 if (!psymtab->global_psymbols.empty ())
ccefe4c4 949 {
d320c2b5 950 print_partial_symbols
932539d7
TT
951 (gdbarch, objfile, psymtab->global_psymbols,
952 "Global", outfile);
ccefe4c4 953 }
932539d7 954 if (!psymtab->static_psymbols.empty ())
ccefe4c4 955 {
d320c2b5 956 print_partial_symbols
932539d7
TT
957 (gdbarch, objfile, psymtab->static_psymbols,
958 "Static", outfile);
ccefe4c4
TT
959 }
960 fprintf_filtered (outfile, "\n");
961}
962
4829711b
TT
963/* Count the number of partial symbols in OBJFILE. */
964
caf8c1e5
TT
965int
966psymbol_functions::count_psyms ()
4829711b
TT
967{
968 int count = 0;
caf8c1e5 969 for (partial_symtab *pst : m_partial_symtabs->range ())
4829711b
TT
970 {
971 count += pst->global_psymbols.size ();
972 count += pst->static_psymbols.size ();
973 }
974 return count;
975}
976
95cf5869
DE
977/* Psymtab version of print_stats. See its definition in
978 the definition of quick_symbol_functions in symfile.h. */
83827540 979
39298a5d 980void
4829711b 981psymbol_functions::print_stats (struct objfile *objfile, bool print_bcache)
ccefe4c4
TT
982{
983 int i;
ad3bbd48 984
4829711b
TT
985 if (!print_bcache)
986 {
caf8c1e5 987 int n_psyms = count_psyms ();
4829711b
TT
988 if (n_psyms > 0)
989 printf_filtered (_(" Number of \"partial\" symbols read: %d\n"),
990 n_psyms);
991
992 i = 0;
d1eef86d 993 for (partial_symtab *ps : require_partial_symbols (objfile))
4829711b
TT
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"),
17d66340 1001 m_partial_symtabs->psymbol_cache.memory_used ());
4829711b
TT
1002 }
1003 else
ccefe4c4 1004 {
4829711b 1005 printf_filtered (_("Psymbol byte cache statistics:\n"));
17d66340 1006 m_partial_symtabs->psymbol_cache.print_statistics
4829711b 1007 ("partial symbol cache");
ccefe4c4 1008 }
ccefe4c4
TT
1009}
1010
95cf5869
DE
1011/* Psymtab version of dump. See its definition in
1012 the definition of quick_symbol_functions in symfile.h. */
83827540 1013
39298a5d
TT
1014void
1015psymbol_functions::dump (struct objfile *objfile)
ccefe4c4
TT
1016{
1017 struct partial_symtab *psymtab;
1018
17d66340 1019 if (m_partial_symtabs->psymtabs)
ccefe4c4
TT
1020 {
1021 printf_filtered ("Psymtabs:\n");
17d66340 1022 for (psymtab = m_partial_symtabs->psymtabs;
ccefe4c4
TT
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 (", ");
ccefe4c4
TT
1030 wrap_here (" ");
1031 }
1032 printf_filtered ("\n\n");
1033 }
1034}
1035
95cf5869
DE
1036/* Psymtab version of expand_symtabs_for_function. See its definition in
1037 the definition of quick_symbol_functions in symfile.h. */
ccefe4c4 1038
39298a5d
TT
1039void
1040psymbol_functions::expand_symtabs_for_function (struct objfile *objfile,
1041 const char *func_name)
ccefe4c4 1042{
8c072cb6
TT
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
d1eef86d 1046 for (partial_symtab *ps : require_partial_symbols (objfile))
b22a7c6a 1047 {
5717c425 1048 if (ps->readin_p (objfile))
b22a7c6a 1049 continue;
ccefe4c4 1050
8c072cb6 1051 if ((lookup_partial_symbol (objfile, ps, lookup_name, 1, VAR_DOMAIN)
b22a7c6a 1052 != NULL)
8c072cb6 1053 || (lookup_partial_symbol (objfile, ps, lookup_name, 0, VAR_DOMAIN)
b22a7c6a
TT
1054 != NULL))
1055 psymtab_to_symtab (objfile, ps);
1056 }
ccefe4c4
TT
1057}
1058
95cf5869
DE
1059/* Psymtab version of expand_all_symtabs. See its definition in
1060 the definition of quick_symbol_functions in symfile.h. */
83827540 1061
39298a5d
TT
1062void
1063psymbol_functions::expand_all_symtabs (struct objfile *objfile)
ccefe4c4 1064{
d1eef86d 1065 for (partial_symtab *psymtab : require_partial_symbols (objfile))
b22a7c6a 1066 psymtab_to_symtab (objfile, psymtab);
ccefe4c4
TT
1067}
1068
95cf5869
DE
1069/* Psymtab version of expand_symtabs_with_fullname. See its definition in
1070 the definition of quick_symbol_functions in symfile.h. */
83827540 1071
39298a5d
TT
1072void
1073psymbol_functions::expand_symtabs_with_fullname (struct objfile *objfile,
1074 const char *fullname)
ccefe4c4 1075{
d1eef86d 1076 for (partial_symtab *p : require_partial_symbols (objfile))
ccefe4c4 1077 {
b4c41fc7
DE
1078 /* Anonymous psymtabs don't have a name of a source file. */
1079 if (p->anonymous)
1080 continue;
1081
5ff888ce
DE
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)
5c80ed9d 1087 psymtab_to_symtab (objfile, p);
ccefe4c4
TT
1088 }
1089}
1090
95cf5869
DE
1091/* Psymtab version of map_symbol_filenames. See its definition in
1092 the definition of quick_symbol_functions in symfile.h. */
83827540 1093
39298a5d
TT
1094void
1095psymbol_functions::map_symbol_filenames (struct objfile *objfile,
1096 symbol_filename_ftype *fun,
1097 void *data,
1098 int need_fullname)
ccefe4c4 1099{
d1eef86d 1100 for (partial_symtab *ps : require_partial_symbols (objfile))
ccefe4c4
TT
1101 {
1102 const char *fullname;
1103
5717c425 1104 if (ps->readin_p (objfile))
ccefe4c4
TT
1105 continue;
1106
f80c6f3f
DE
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
b4c41fc7
DE
1112 /* Anonymous psymtabs don't have a file name. */
1113 if (ps->anonymous)
1114 continue;
1115
821296b7 1116 QUIT;
74e2f255
DE
1117 if (need_fullname)
1118 fullname = psymtab_to_fullname (ps);
1119 else
1120 fullname = NULL;
2837d59e 1121 (*fun) (ps->filename, fullname, data);
ccefe4c4
TT
1122 }
1123}
1124
ccefe4c4
TT
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. */
256f06f3 1132
da5132d3 1133static const char *
ccefe4c4
TT
1134psymtab_to_fullname (struct partial_symtab *ps)
1135{
fbd9ab74 1136 gdb_assert (!ps->anonymous);
ccefe4c4 1137
256f06f3
DE
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. */
fbd9ab74
JK
1141 if (ps->fullname == NULL)
1142 {
e0cc99a6 1143 gdb::unique_xmalloc_ptr<char> fullname;
2179fbc3
TT
1144 scoped_fd fd = find_and_open_source (ps->filename, ps->dirname,
1145 &fullname);
e0cc99a6 1146 ps->fullname = fullname.release ();
256f06f3 1147
2179fbc3 1148 if (fd.get () < 0)
fbd9ab74 1149 {
fbd9ab74
JK
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. */
ccefe4c4 1152
fbd9ab74 1153 if (ps->dirname == NULL || IS_ABSOLUTE_PATH (ps->filename))
0b581c69 1154 fullname.reset (xstrdup (ps->filename));
fbd9ab74 1155 else
0b581c69
TT
1156 fullname.reset (concat (ps->dirname, SLASH_STRING,
1157 ps->filename, (char *) NULL));
fbd9ab74 1158
0b581c69 1159 ps->fullname = rewrite_source_path (fullname.get ()).release ();
fbd9ab74 1160 if (ps->fullname == NULL)
0b581c69 1161 ps->fullname = fullname.release ();
fbd9ab74 1162 }
95cf5869 1163 }
fbd9ab74
JK
1164
1165 return ps->fullname;
ccefe4c4
TT
1166}
1167
95cf5869
DE
1168/* Psymtab version of map_matching_symbols. See its definition in
1169 the definition of quick_symbol_functions in symfile.h. */
40658b94 1170
39298a5d
TT
1171void
1172psymbol_functions::map_matching_symbols
199b4314 1173 (struct objfile *objfile,
b054970d 1174 const lookup_name_info &name, domain_enum domain,
199b4314
TT
1175 int global,
1176 gdb::function_view<symbol_found_callback_ftype> callback,
199b4314 1177 symbol_compare_ftype *ordered_compare)
ccefe4c4 1178{
40658b94 1179 const int block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
ccefe4c4 1180
d1eef86d 1181 for (partial_symtab *ps : require_partial_symbols (objfile))
ccefe4c4
TT
1182 {
1183 QUIT;
5717c425 1184 if (ps->readin_p (objfile)
b054970d 1185 || match_partial_symbol (objfile, ps, global, name, domain,
40658b94 1186 ordered_compare))
ccefe4c4 1187 {
43f3e411 1188 struct compunit_symtab *cust = psymtab_to_symtab (objfile, ps);
582942f4 1189 const struct block *block;
ad3bbd48 1190
43f3e411 1191 if (cust == NULL)
ccefe4c4 1192 continue;
43f3e411 1193 block = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), block_kind);
b054970d 1194 if (!iterate_over_symbols_terminated (block, name,
6a3dbf1b 1195 domain, callback))
40658b94 1196 return;
ccefe4c4
TT
1197 }
1198 }
95cf5869 1199}
ccefe4c4 1200
14bc53a8
PA
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
9439a077
TT
1204 various psymtabs that it searches. */
1205
14bc53a8
PA
1206static bool
1207recursively_search_psymtabs
d2f7dcb2
JB
1208 (struct partial_symtab *ps,
1209 struct objfile *objfile,
1210 enum search_domain domain,
b5ec771e 1211 const lookup_name_info &lookup_name,
14bc53a8 1212 gdb::function_view<expand_symtabs_symbol_matcher_ftype> sym_matcher)
9439a077 1213{
9439a077 1214 int keep_going = 1;
f486487f 1215 enum psymtab_search_status result = PST_SEARCHED_AND_NOT_FOUND;
9439a077
TT
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],
b5ec771e
PA
1232 objfile, domain, lookup_name,
1233 sym_matcher);
9439a077
TT
1234 if (r != 0)
1235 {
1236 ps->searched_flag = PST_SEARCHED_AND_FOUND;
14bc53a8 1237 return true;
9439a077
TT
1238 }
1239 }
1240
932539d7
TT
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 ());
af5bf4ad 1245 partial_symbol **bound = gbound;
9439a077
TT
1246
1247 /* Go through all of the symbols stored in a partial
1248 symtab in one loop. */
932539d7 1249 partial_symbol **psym = ps->global_psymbols.data ();
9439a077
TT
1250 while (keep_going)
1251 {
1252 if (psym >= bound)
1253 {
932539d7 1254 if (bound == gbound && !ps->static_psymbols.empty ())
9439a077 1255 {
932539d7 1256 psym = ps->static_psymbols.data ();
9439a077
TT
1257 bound = sbound;
1258 }
1259 else
1260 keep_going = 0;
1261 continue;
1262 }
1263 else
1264 {
1265 QUIT;
1266
b5ec771e 1267 if ((domain == ALL_DOMAIN
59c35742
AB
1268 || (domain == MODULES_DOMAIN
1269 && (*psym)->domain == MODULE_DOMAIN)
b5ec771e 1270 || (domain == VARIABLES_DOMAIN
8a6d4234
TT
1271 && (*psym)->aclass != LOC_TYPEDEF
1272 && (*psym)->aclass != LOC_BLOCK)
b5ec771e 1273 || (domain == FUNCTIONS_DOMAIN
8a6d4234 1274 && (*psym)->aclass == LOC_BLOCK)
b5ec771e 1275 || (domain == TYPES_DOMAIN
8a6d4234 1276 && (*psym)->aclass == LOC_TYPEDEF))
b5ec771e 1277 && psymbol_name_matches (*psym, lookup_name)
af97b416 1278 && (sym_matcher == NULL
c9d95fa3 1279 || sym_matcher ((*psym)->ginfo.search_name ())))
9439a077
TT
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
95cf5869
DE
1293/* Psymtab version of expand_symtabs_matching. See its definition in
1294 the definition of quick_symbol_functions in symfile.h. */
83827540 1295
39298a5d
TT
1296void
1297psymbol_functions::expand_symtabs_matching
f8eba3c6 1298 (struct objfile *objfile,
14bc53a8 1299 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
c1a66c06 1300 const lookup_name_info *lookup_name,
14bc53a8
PA
1301 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
1302 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
b5ec771e 1303 enum search_domain domain)
ccefe4c4 1304{
9439a077 1305 /* Clear the search flags. */
d1eef86d 1306 for (partial_symtab *ps : require_partial_symbols (objfile))
b22a7c6a 1307 ps->searched_flag = PST_NOT_SEARCHED;
ccefe4c4 1308
e2cd5ca4
TT
1309 gdb::optional<lookup_name_info> psym_lookup_name;
1310 if (lookup_name != nullptr)
1311 psym_lookup_name = lookup_name->make_ignore_params ();
1312
17d66340 1313 for (partial_symtab *ps : m_partial_symtabs->range ())
9439a077 1314 {
30b3dd9d
DE
1315 QUIT;
1316
5717c425 1317 if (ps->readin_p (objfile))
ccefe4c4
TT
1318 continue;
1319
b4c41fc7
DE
1320 if (file_matcher)
1321 {
14bc53a8 1322 bool match;
680d1742 1323
b4c41fc7
DE
1324 if (ps->anonymous)
1325 continue;
fbd9ab74 1326
14bc53a8 1327 match = file_matcher (ps->filename, false);
680d1742
DE
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
14bc53a8
PA
1333 || file_matcher (lbasename (ps->filename), true))
1334 match = file_matcher (psymtab_to_fullname (ps), false);
680d1742
DE
1335 }
1336 if (!match)
b4c41fc7
DE
1337 continue;
1338 }
ccefe4c4 1339
c1a66c06
TV
1340 if ((symbol_matcher == NULL && lookup_name == NULL)
1341 || recursively_search_psymtabs (ps, objfile, domain,
e2cd5ca4 1342 *psym_lookup_name,
c1a66c06 1343 symbol_matcher))
276d885b
GB
1344 {
1345 struct compunit_symtab *symtab =
1346 psymtab_to_symtab (objfile, ps);
1347
1348 if (expansion_notify != NULL)
14bc53a8 1349 expansion_notify (symtab);
276d885b 1350 }
ccefe4c4
TT
1351 }
1352}
1353
95cf5869
DE
1354/* Psymtab version of has_symbols. See its definition in
1355 the definition of quick_symbol_functions in symfile.h. */
83827540 1356
39298a5d
TT
1357bool
1358psymbol_functions::has_symbols (struct objfile *objfile)
ccefe4c4 1359{
17d66340 1360 return m_partial_symtabs->psymtabs != NULL;
ccefe4c4
TT
1361}
1362
71a3c369 1363/* Helper function for psym_find_compunit_symtab_by_address that fills
75336a5a 1364 in m_psymbol_map for a given range of psymbols. */
71a3c369 1365
75336a5a
TT
1366void
1367psymbol_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)
71a3c369 1372{
932539d7 1373 for (partial_symbol *psym : symbols)
71a3c369 1374 {
8a6d4234 1375 if (psym->aclass == LOC_STATIC)
71a3c369 1376 {
02e9e7f7 1377 CORE_ADDR addr = psym->address (objfile);
71a3c369
TT
1378 if (seen_addrs->find (addr) == seen_addrs->end ())
1379 {
1380 seen_addrs->insert (addr);
75336a5a 1381 m_psymbol_map.emplace_back (addr, psymtab);
71a3c369
TT
1382 }
1383 }
1384 }
1385}
1386
1387/* See find_compunit_symtab_by_address in quick_symbol_functions, in
1388 symfile.h. */
1389
39298a5d
TT
1390compunit_symtab *
1391psymbol_functions::find_compunit_symtab_by_address (struct objfile *objfile,
1392 CORE_ADDR address)
71a3c369 1393{
75336a5a 1394 if (m_psymbol_map.empty ())
71a3c369 1395 {
71a3c369
TT
1396 std::set<CORE_ADDR> seen_addrs;
1397
d1eef86d 1398 for (partial_symtab *pst : require_partial_symbols (objfile))
b22a7c6a 1399 {
75336a5a
TT
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);
b22a7c6a 1406 }
71a3c369 1407
75336a5a 1408 m_psymbol_map.shrink_to_fit ();
71a3c369 1409
75336a5a 1410 std::sort (m_psymbol_map.begin (), m_psymbol_map.end (),
71a3c369
TT
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
75336a5a 1419 (m_psymbol_map.begin (), m_psymbol_map.end (), address,
71a3c369
TT
1420 [] (const std::pair<CORE_ADDR, partial_symtab *> &a,
1421 CORE_ADDR b)
1422 {
1423 return a.first < b;
1424 });
1425
75336a5a 1426 if (iter == m_psymbol_map.end () || iter->first != address)
71a3c369
TT
1427 return NULL;
1428
1429 return psymtab_to_symtab (objfile, iter->second);
1430}
1431
ccefe4c4
TT
1432\f
1433
c3693a1d
TT
1434/* Partially fill a partial symtab. It will be completely filled at
1435 the end of the symbol list. */
ccefe4c4 1436
c3693a1d 1437partial_symtab::partial_symtab (const char *filename,
7b249e47 1438 psymtab_storage *partial_symtabs,
c3693a1d
TT
1439 struct objfile *objfile,
1440 CORE_ADDR textlow)
7b249e47 1441 : partial_symtab (filename, partial_symtabs, objfile)
ccefe4c4 1442{
c3693a1d
TT
1443 set_text_low (textlow);
1444 set_text_high (raw_text_low ()); /* default */
ccefe4c4
TT
1445}
1446
8763cede
DE
1447/* Perform "finishing up" operations of a partial symtab. */
1448
1449void
ae7754b2 1450partial_symtab::end ()
8763cede 1451{
ae7754b2
TT
1452 global_psymbols.shrink_to_fit ();
1453 static_psymbols.shrink_to_fit ();
8763cede 1454
ae7754b2
TT
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 });
8763cede
DE
1463}
1464
89806626 1465/* See psymtab.h. */
cbd70537 1466
89806626
SM
1467unsigned long
1468psymbol_bcache::hash (const void *addr, int length)
cbd70537
SW
1469{
1470 unsigned long h = 0;
1471 struct partial_symbol *psymbol = (struct partial_symbol *) addr;
c1b5c1eb 1472 unsigned int lang = psymbol->ginfo.language ();
8a6d4234
TT
1473 unsigned int domain = psymbol->domain;
1474 unsigned int theclass = psymbol->aclass;
cbd70537 1475
4cbd39b2
CB
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);
4d4eaa30 1480 /* Note that psymbol names are interned via compute_and_set_names, so
e793c052 1481 there's no need to hash the contents of the name here. */
4d4eaa30 1482 h = fast_hash (&psymbol->ginfo.m_name, sizeof (psymbol->ginfo.m_name), h);
cbd70537
SW
1483
1484 return h;
1485}
1486
89806626 1487/* See psymtab.h. */
cbd70537 1488
89806626
SM
1489int
1490psymbol_bcache::compare (const void *addr1, const void *addr2, int length)
cbd70537
SW
1491{
1492 struct partial_symbol *sym1 = (struct partial_symbol *) addr1;
1493 struct partial_symbol *sym2 = (struct partial_symbol *) addr2;
1494
af97b416 1495 return (memcmp (&sym1->ginfo.value, &sym2->ginfo.value,
dda83cd7 1496 sizeof (sym1->ginfo.value)) == 0
c1b5c1eb 1497 && sym1->ginfo.language () == sym2->ginfo.language ()
dda83cd7
SM
1498 && sym1->domain == sym2->domain
1499 && sym1->aclass == sym2->aclass
e793c052 1500 /* Note that psymbol names are interned via
4d4eaa30 1501 compute_and_set_names, so there's no need to compare the
e793c052 1502 contents of the name here. */
dda83cd7 1503 && sym1->ginfo.linkage_name () == sym2->ginfo.linkage_name ());
cbd70537
SW
1504}
1505
703a86c2 1506/* See psympriv.h. */
ccefe4c4 1507
7dc25483 1508void
932539d7
TT
1509partial_symtab::add_psymbol (const partial_symbol &psymbol,
1510 psymbol_placement where,
7b249e47 1511 psymtab_storage *partial_symtabs,
932539d7 1512 struct objfile *objfile)
ccefe4c4 1513{
ef5e5b0b 1514 bool added;
ccefe4c4 1515
0df8b418 1516 /* Stash the partial symbol away in the cache. */
7b249e47
TT
1517 partial_symbol *psym
1518 = ((struct partial_symbol *)
1519 partial_symtabs->psymbol_cache.insert
1520 (&psymbol, sizeof (struct partial_symbol), &added));
ccefe4c4
TT
1521
1522 /* Do not duplicate global partial symbols. */
75aedd27 1523 if (where == psymbol_placement::GLOBAL && !added)
7dc25483 1524 return;
ccefe4c4 1525
0df8b418 1526 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
932539d7 1527 std::vector<partial_symbol *> &list
75aedd27 1528 = (where == psymbol_placement::STATIC
932539d7
TT
1529 ? static_psymbols
1530 : global_psymbols);
0684bb51 1531 list.push_back (psym);
ccefe4c4
TT
1532}
1533
6eee24ce 1534/* See psympriv.h. */
ccefe4c4 1535
2467f4f6 1536void
932539d7
TT
1537partial_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,
7b249e47
TT
1543 enum language language,
1544 psymtab_storage *partial_symtabs,
1545 struct objfile *objfile)
2467f4f6
TT
1546{
1547 struct partial_symbol psymbol;
1548 memset (&psymbol, 0, sizeof (psymbol));
1549
1550 psymbol.set_unrelocated_address (coreaddr);
a52d653e 1551 psymbol.ginfo.set_section_index (section);
2467f4f6
TT
1552 psymbol.domain = domain;
1553 psymbol.aclass = theclass;
7b249e47 1554 psymbol.ginfo.set_language (language, partial_symtabs->obstack ());
2467f4f6
TT
1555 psymbol.ginfo.compute_and_set_names (name, copy_name, objfile->per_bfd);
1556
7b249e47 1557 add_psymbol (psymbol, where, partial_symtabs, objfile);
2467f4f6
TT
1558}
1559
1560/* See psympriv.h. */
1561
7b249e47
TT
1562partial_symtab::partial_symtab (const char *filename_,
1563 psymtab_storage *partial_symtabs,
1564 struct objfile *objfile)
32caafd0
TT
1565 : searched_flag (PST_NOT_SEARCHED),
1566 text_low_valid (0),
1567 text_high_valid (0)
ccefe4c4 1568{
7b249e47 1569 partial_symtabs->install_psymtab (this);
ccefe4c4 1570
be1e3d3e 1571 filename = objfile->intern (filename_);
ccefe4c4 1572
45cfd468
DE
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
4262abfb 1580 || strcmp (last_objfile_name, objfile_name (objfile)) != 0)
45cfd468
DE
1581 {
1582 xfree (last_objfile_name);
4262abfb 1583 last_objfile_name = xstrdup (objfile_name (objfile));
22068491
TT
1584 fprintf_filtered (gdb_stdlog,
1585 "Creating one or more psymtabs for objfile %s ...\n",
1586 last_objfile_name);
45cfd468 1587 }
22068491
TT
1588 fprintf_filtered (gdb_stdlog,
1589 "Created psymtab %s for module %s.\n",
32caafd0 1590 host_address_to_string (this), filename);
45cfd468 1591 }
ccefe4c4
TT
1592}
1593
0494dbec
TT
1594/* See psympriv.h. */
1595
1596void
48993951 1597partial_symtab::expand_dependencies (struct objfile *objfile)
0494dbec
TT
1598{
1599 for (int i = 0; i < number_of_dependencies; ++i)
1600 {
5717c425 1601 if (!dependencies[i]->readin_p (objfile)
1eb73179 1602 && dependencies[i]->user == NULL)
0494dbec
TT
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
ccefe4c4 1621void
d320c2b5 1622psymtab_storage::discard_psymtab (struct partial_symtab *pst)
ccefe4c4
TT
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
0df8b418 1633 /* First, snip it out of the psymtab chain. */
ccefe4c4 1634
d320c2b5 1635 prev_pst = &psymtabs;
ccefe4c4
TT
1636 while ((*prev_pst) != pst)
1637 prev_pst = &((*prev_pst)->next);
1638 (*prev_pst) = pst->next;
6f17252b 1639 delete pst;
ccefe4c4
TT
1640}
1641
ccefe4c4
TT
1642\f
1643
372405a5
DE
1644/* We need to pass a couple of items to the addrmap_foreach function,
1645 so use a struct. */
1646
1647struct 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
1661static int
1662dump_psymtab_addrmap_1 (void *datap, CORE_ADDR start_addr, void *obj)
1663{
709b5518
PA
1664 struct dump_psymtab_addrmap_data *data
1665 = (struct dump_psymtab_addrmap_data *) datap;
08feed99 1666 struct gdbarch *gdbarch = data->objfile->arch ();
709b5518 1667 struct partial_symtab *addrmap_psymtab = (struct partial_symtab *) obj;
372405a5
DE
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
1697static void
17d66340
TT
1698dump_psymtab_addrmap (struct objfile *objfile,
1699 psymtab_storage *partial_symtabs,
1700 struct partial_symtab *psymtab,
372405a5
DE
1701 struct ui_file *outfile)
1702{
1703 struct dump_psymtab_addrmap_data addrmap_dump_data;
1704
34c41c68
DE
1705 if ((psymtab == NULL
1706 || psymtab->psymtabs_addrmap_supported)
17d66340 1707 && partial_symtabs->psymtabs_addrmap != NULL)
372405a5
DE
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");
17d66340 1715 addrmap_foreach (partial_symtabs->psymtabs_addrmap,
d320c2b5 1716 dump_psymtab_addrmap_1, &addrmap_dump_data);
372405a5
DE
1717 }
1718}
1719
dfc7bb5b 1720static void
990b9f9f 1721maintenance_print_psymbols (const char *args, int from_tty)
ccefe4c4 1722{
34c41c68 1723 struct ui_file *outfile = gdb_stdout;
34c41c68 1724 char *address_arg = NULL, *source_arg = NULL, *objfile_arg = NULL;
34c41c68
DE
1725 int i, outfile_idx, found;
1726 CORE_ADDR pc = 0;
1727 struct obj_section *section = NULL;
ccefe4c4
TT
1728
1729 dont_repeat ();
1730
773a1edc 1731 gdb_argv argv (args);
ccefe4c4 1732
99e8a4f9 1733 for (i = 0; argv != NULL && argv[i] != NULL; ++i)
ccefe4c4 1734 {
34c41c68
DE
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] == '-')
ccefe4c4 1760 {
34c41c68
DE
1761 /* Future proofing: Don't allow OUTFILE to begin with "-". */
1762 error (_("Unknown option: %s"), argv[i]);
ccefe4c4 1763 }
34c41c68
DE
1764 else
1765 break;
ccefe4c4 1766 }
34c41c68 1767 outfile_idx = i;
ccefe4c4 1768
34c41c68
DE
1769 if (address_arg != NULL && source_arg != NULL)
1770 error (_("Must specify at most one of -pc and -source"));
ccefe4c4 1771
d7e74731
PA
1772 stdio_file arg_outfile;
1773
99e8a4f9 1774 if (argv != NULL && argv[outfile_idx] != NULL)
34c41c68 1775 {
34c41c68
DE
1776 if (argv[outfile_idx + 1] != NULL)
1777 error (_("Junk at end of command"));
ee0c3293
TT
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 ());
d7e74731 1782 outfile = &arg_outfile;
34c41c68 1783 }
ccefe4c4 1784
34c41c68
DE
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 }
372405a5 1791
34c41c68 1792 found = 0;
2030c079 1793 for (objfile *objfile : current_program_space->objfiles ())
27618ce4 1794 {
34c41c68
DE
1795 int printed_objfile_header = 0;
1796 int print_for_objfile = 1;
1797
27618ce4 1798 QUIT;
34c41c68
DE
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
e1114590 1806 for (const auto &iter : objfile->qf)
34c41c68 1807 {
e1114590
TT
1808 psymbol_functions *psf
1809 = dynamic_cast<psymbol_functions *> (iter.get ());
1810 if (psf == nullptr)
1811 continue;
34c41c68 1812
e1114590
TT
1813 psymtab_storage *partial_symtabs
1814 = psf->get_partial_symtabs ().get ();
1815
1816 if (address_arg != NULL)
34c41c68 1817 {
e1114590 1818 struct bound_minimal_symbol msymbol = { NULL, NULL };
34c41c68 1819
e1114590
TT
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)
34c41c68
DE
1825 {
1826 if (!printed_objfile_header)
1827 {
d7e74731
PA
1828 outfile->printf ("\nPartial symtabs for objfile %s\n",
1829 objfile_name (objfile));
34c41c68
DE
1830 printed_objfile_header = 1;
1831 }
1832 dump_psymtab (objfile, ps, outfile);
e1114590
TT
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 }
34c41c68
DE
1863 }
1864 }
34c41c68 1865
e1114590 1866 /* If we're printing all the objfile's symbols dump the full addrmap. */
34c41c68 1867
e1114590
TT
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 }
372405a5 1875 }
27618ce4 1876 }
372405a5 1877
34c41c68
DE
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 }
ccefe4c4
TT
1885}
1886
1887/* List all the partial symbol tables whose names match REGEXP (optional). */
95cf5869 1888
dfc7bb5b 1889static void
990b9f9f 1890maintenance_info_psymtabs (const char *regexp, int from_tty)
ccefe4c4 1891{
ccefe4c4
TT
1892 if (regexp)
1893 re_comp (regexp);
1894
94c93c35 1895 for (struct program_space *pspace : program_spaces)
2030c079 1896 for (objfile *objfile : pspace->objfiles ())
99d89cde 1897 {
08feed99 1898 struct gdbarch *gdbarch = objfile->arch ();
ccefe4c4 1899
99d89cde
TT
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;
ccefe4c4 1903
e1114590 1904 for (const auto &iter : objfile->qf)
99d89cde 1905 {
e1114590
TT
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))
99d89cde 1911 {
e1114590 1912 QUIT;
99d89cde 1913
e1114590
TT
1914 if (! regexp
1915 || re_exec (psymtab->filename))
99d89cde 1916 {
e1114590
TT
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 }
99d89cde 1925
e1114590
TT
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)
99d89cde 1971 {
e1114590
TT
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");
99d89cde 1987 }
e1114590
TT
1988 else
1989 printf_filtered ("(none)\n");
1990 printf_filtered (" }\n");
99d89cde 1991 }
99d89cde
TT
1992 }
1993 }
ccefe4c4 1994
99d89cde
TT
1995 if (printed_objfile_start)
1996 printf_filtered ("}\n");
1997 }
ccefe4c4
TT
1998}
1999
7d0c9981 2000/* Check consistency of currently expanded psymtabs vs symtabs. */
ccefe4c4 2001
dfc7bb5b 2002static void
990b9f9f 2003maintenance_check_psymtabs (const char *ignore, int from_tty)
ccefe4c4
TT
2004{
2005 struct symbol *sym;
43f3e411 2006 struct compunit_symtab *cust = NULL;
346d1dfe 2007 const struct blockvector *bv;
582942f4 2008 const struct block *b;
ccefe4c4 2009
2030c079 2010 for (objfile *objfile : current_program_space->objfiles ())
3aa31ce7 2011 {
e1114590 2012 for (const auto &iter : objfile->qf)
3aa31ce7 2013 {
e1114590
TT
2014 psymbol_functions *psf
2015 = dynamic_cast<psymbol_functions *> (iter.get ());
2016 if (psf == nullptr)
2017 continue;
aed57c53 2018
e1114590 2019 for (partial_symtab *ps : psf->require_partial_symbols (objfile))
3aa31ce7 2020 {
e1114590 2021 struct gdbarch *gdbarch = objfile->arch ();
5707e24b 2022
e1114590
TT
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);
3aa31ce7 2027
e1114590
TT
2028 /* First do some checks that don't require the associated symtab. */
2029 if (ps->text_high (objfile) < ps->text_low (objfile))
3aa31ce7 2030 {
e1114590 2031 printf_filtered ("Psymtab ");
3aa31ce7 2032 puts_filtered (ps->filename);
e1114590
TT
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;
3aa31ce7 2041 }
e1114590
TT
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)))
3aa31ce7 2086 {
e1114590 2087 printf_filtered ("Psymtab ");
3aa31ce7 2088 puts_filtered (ps->filename);
e1114590
TT
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");
3aa31ce7
TT
2100 }
2101 }
3aa31ce7
TT
2102 }
2103 }
ccefe4c4
TT
2104}
2105
6c265988 2106void _initialize_psymtab ();
dfc7bb5b 2107void
6c265988 2108_initialize_psymtab ()
dfc7bb5b
YQ
2109{
2110 add_cmd ("psymbols", class_maintenance, maintenance_print_psymbols, _("\
2111Print dump of current partial symbol definitions.\n\
48c5e7e2
TT
2112Usage: mt print psymbols [-objfile OBJFILE] [-pc ADDRESS] [--] [OUTFILE]\n\
2113 mt print psymbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\
34c41c68
DE
2114Entries in the partial symbol table are dumped to file OUTFILE,\n\
2115or the terminal if OUTFILE is unspecified.\n\
2116If ADDRESS is provided, dump only the file for that address.\n\
2117If SOURCE is provided, dump only that file's symbols.\n\
2118If OBJFILE is provided, dump only that file's minimal symbols."),
dfc7bb5b
YQ
2119 &maintenanceprintlist);
2120
2121 add_cmd ("psymtabs", class_maintenance, maintenance_info_psymtabs, _("\
2122List the partial symbol tables for all object files.\n\
2123This does not include information about individual partial symbols,\n\
2124just the symbol table structures themselves."),
2125 &maintenanceinfolist);
2126
7d0c9981
DE
2127 add_cmd ("check-psymtabs", class_maintenance, maintenance_check_psymtabs,
2128 _("\
2129Check consistency of currently expanded psymtabs versus symtabs."),
dfc7bb5b
YQ
2130 &maintenancelist);
2131}
This page took 2.071153 seconds and 4 git commands to generate.