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