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