* valprint.c (val_print): Add new language parameter and use it
[deliverable/binutils-gdb.git] / gdb / objfiles.c
1 /* GDB routines for manipulating objfiles.
2
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
5
6 Contributed by Cygnus Support, using pieces from other GDB modules.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 /* This file contains support routines for creating, manipulating, and
24 destroying objfile structures. */
25
26 #include "defs.h"
27 #include "bfd.h" /* Binary File Description */
28 #include "symtab.h"
29 #include "symfile.h"
30 #include "objfiles.h"
31 #include "gdb-stabs.h"
32 #include "target.h"
33 #include "bcache.h"
34 #include "mdebugread.h"
35 #include "expression.h"
36 #include "parser-defs.h"
37
38 #include "gdb_assert.h"
39 #include <sys/types.h>
40 #include "gdb_stat.h"
41 #include <fcntl.h>
42 #include "gdb_obstack.h"
43 #include "gdb_string.h"
44 #include "hashtab.h"
45
46 #include "breakpoint.h"
47 #include "block.h"
48 #include "dictionary.h"
49 #include "source.h"
50 #include "addrmap.h"
51 #include "arch-utils.h"
52 #include "exec.h"
53
54 /* Prototypes for local functions */
55
56 static void objfile_alloc_data (struct objfile *objfile);
57 static void objfile_free_data (struct objfile *objfile);
58
59 /* Externally visible variables that are owned by this module.
60 See declarations in objfile.h for more info. */
61
62 struct objfile *object_files; /* Linked list of all objfiles */
63 struct objfile *current_objfile; /* For symbol file being read in */
64 struct objfile *symfile_objfile; /* Main symbol table loaded from */
65 struct objfile *rt_common_objfile; /* For runtime common symbols */
66
67 /* Locate all mappable sections of a BFD file.
68 objfile_p_char is a char * to get it through
69 bfd_map_over_sections; we cast it back to its proper type. */
70
71 #ifndef TARGET_KEEP_SECTION
72 #define TARGET_KEEP_SECTION(ASECT) 0
73 #endif
74
75 /* Called via bfd_map_over_sections to build up the section table that
76 the objfile references. The objfile contains pointers to the start
77 of the table (objfile->sections) and to the first location after
78 the end of the table (objfile->sections_end). */
79
80 static void
81 add_to_objfile_sections (struct bfd *abfd, struct bfd_section *asect,
82 void *objfile_p_char)
83 {
84 struct objfile *objfile = (struct objfile *) objfile_p_char;
85 struct obj_section section;
86 flagword aflag;
87
88 aflag = bfd_get_section_flags (abfd, asect);
89
90 if (!(aflag & SEC_ALLOC) && !(TARGET_KEEP_SECTION (asect)))
91 return;
92
93 if (0 == bfd_section_size (abfd, asect))
94 return;
95 section.offset = 0;
96 section.objfile = objfile;
97 section.the_bfd_section = asect;
98 section.ovly_mapped = 0;
99 section.addr = bfd_section_vma (abfd, asect);
100 section.endaddr = section.addr + bfd_section_size (abfd, asect);
101 obstack_grow (&objfile->objfile_obstack, (char *) &section, sizeof (section));
102 objfile->sections_end = (struct obj_section *) (((unsigned long) objfile->sections_end) + 1);
103 }
104
105 /* Builds a section table for OBJFILE.
106 Returns 0 if OK, 1 on error (in which case bfd_error contains the
107 error).
108
109 Note that while we are building the table, which goes into the
110 psymbol obstack, we hijack the sections_end pointer to instead hold
111 a count of the number of sections. When bfd_map_over_sections
112 returns, this count is used to compute the pointer to the end of
113 the sections table, which then overwrites the count.
114
115 Also note that the OFFSET and OVLY_MAPPED in each table entry
116 are initialized to zero.
117
118 Also note that if anything else writes to the psymbol obstack while
119 we are building the table, we're pretty much hosed. */
120
121 int
122 build_objfile_section_table (struct objfile *objfile)
123 {
124 /* objfile->sections can be already set when reading a mapped symbol
125 file. I believe that we do need to rebuild the section table in
126 this case (we rebuild other things derived from the bfd), but we
127 can't free the old one (it's in the objfile_obstack). So we just
128 waste some memory. */
129
130 objfile->sections_end = 0;
131 bfd_map_over_sections (objfile->obfd, add_to_objfile_sections, (char *) objfile);
132 objfile->sections = (struct obj_section *)
133 obstack_finish (&objfile->objfile_obstack);
134 objfile->sections_end = objfile->sections + (unsigned long) objfile->sections_end;
135 return (0);
136 }
137
138 /* Given a pointer to an initialized bfd (ABFD) and some flag bits
139 allocate a new objfile struct, fill it in as best we can, link it
140 into the list of all known objfiles, and return a pointer to the
141 new objfile struct.
142
143 The FLAGS word contains various bits (OBJF_*) that can be taken as
144 requests for specific operations. Other bits like OBJF_SHARED are
145 simply copied through to the new objfile flags member. */
146
147 /* NOTE: carlton/2003-02-04: This function is called with args NULL, 0
148 by jv-lang.c, to create an artificial objfile used to hold
149 information about dynamically-loaded Java classes. Unfortunately,
150 that branch of this function doesn't get tested very frequently, so
151 it's prone to breakage. (E.g. at one time the name was set to NULL
152 in that situation, which broke a loop over all names in the dynamic
153 library loader.) If you change this function, please try to leave
154 things in a consistent state even if abfd is NULL. */
155
156 struct objfile *
157 allocate_objfile (bfd *abfd, int flags)
158 {
159 struct objfile *objfile = NULL;
160 struct objfile *last_one = NULL;
161
162 /* If we don't support mapped symbol files, didn't ask for the file to be
163 mapped, or failed to open the mapped file for some reason, then revert
164 back to an unmapped objfile. */
165
166 if (objfile == NULL)
167 {
168 objfile = (struct objfile *) xmalloc (sizeof (struct objfile));
169 memset (objfile, 0, sizeof (struct objfile));
170 objfile->md = NULL;
171 objfile->psymbol_cache = bcache_xmalloc ();
172 objfile->macro_cache = bcache_xmalloc ();
173 /* We could use obstack_specify_allocation here instead, but
174 gdb_obstack.h specifies the alloc/dealloc functions. */
175 obstack_init (&objfile->objfile_obstack);
176 terminate_minimal_symbol_table (objfile);
177 }
178
179 objfile_alloc_data (objfile);
180
181 /* Update the per-objfile information that comes from the bfd, ensuring
182 that any data that is reference is saved in the per-objfile data
183 region. */
184
185 objfile->obfd = abfd;
186 if (objfile->name != NULL)
187 {
188 xfree (objfile->name);
189 }
190 if (abfd != NULL)
191 {
192 /* Look up the gdbarch associated with the BFD. */
193 objfile->gdbarch = gdbarch_from_bfd (abfd);
194
195 objfile->name = xstrdup (bfd_get_filename (abfd));
196 objfile->mtime = bfd_get_mtime (abfd);
197
198 /* Build section table. */
199
200 if (build_objfile_section_table (objfile))
201 {
202 error (_("Can't find the file sections in `%s': %s"),
203 objfile->name, bfd_errmsg (bfd_get_error ()));
204 }
205 }
206 else
207 {
208 objfile->name = xstrdup ("<<anonymous objfile>>");
209 }
210
211 /* Initialize the section indexes for this objfile, so that we can
212 later detect if they are used w/o being properly assigned to. */
213
214 objfile->sect_index_text = -1;
215 objfile->sect_index_data = -1;
216 objfile->sect_index_bss = -1;
217 objfile->sect_index_rodata = -1;
218
219 /* We don't yet have a C++-specific namespace symtab. */
220
221 objfile->cp_namespace_symtab = NULL;
222
223 /* Add this file onto the tail of the linked list of other such files. */
224
225 objfile->next = NULL;
226 if (object_files == NULL)
227 object_files = objfile;
228 else
229 {
230 for (last_one = object_files;
231 last_one->next;
232 last_one = last_one->next);
233 last_one->next = objfile;
234 }
235
236 /* Save passed in flag bits. */
237 objfile->flags |= flags;
238
239 return (objfile);
240 }
241
242 /* Retrieve the gdbarch associated with OBJFILE. */
243 struct gdbarch *
244 get_objfile_arch (struct objfile *objfile)
245 {
246 return objfile->gdbarch;
247 }
248
249 /* Initialize entry point information for this objfile. */
250
251 void
252 init_entry_point_info (struct objfile *objfile)
253 {
254 /* Save startup file's range of PC addresses to help blockframe.c
255 decide where the bottom of the stack is. */
256
257 if (bfd_get_file_flags (objfile->obfd) & EXEC_P)
258 {
259 /* Executable file -- record its entry point so we'll recognize
260 the startup file because it contains the entry point. */
261 objfile->ei.entry_point = bfd_get_start_address (objfile->obfd);
262 }
263 else if (bfd_get_file_flags (objfile->obfd) & DYNAMIC
264 && bfd_get_start_address (objfile->obfd) != 0)
265 /* Some shared libraries may have entry points set and be
266 runnable. There's no clear way to indicate this, so just check
267 for values other than zero. */
268 objfile->ei.entry_point = bfd_get_start_address (objfile->obfd);
269 else
270 {
271 /* Examination of non-executable.o files. Short-circuit this stuff. */
272 objfile->ei.entry_point = INVALID_ENTRY_POINT;
273 }
274 }
275
276 /* Get current entry point address. */
277
278 CORE_ADDR
279 entry_point_address (void)
280 {
281 return symfile_objfile ? symfile_objfile->ei.entry_point : 0;
282 }
283
284 /* Create the terminating entry of OBJFILE's minimal symbol table.
285 If OBJFILE->msymbols is zero, allocate a single entry from
286 OBJFILE->objfile_obstack; otherwise, just initialize
287 OBJFILE->msymbols[OBJFILE->minimal_symbol_count]. */
288 void
289 terminate_minimal_symbol_table (struct objfile *objfile)
290 {
291 if (! objfile->msymbols)
292 objfile->msymbols = ((struct minimal_symbol *)
293 obstack_alloc (&objfile->objfile_obstack,
294 sizeof (objfile->msymbols[0])));
295
296 {
297 struct minimal_symbol *m
298 = &objfile->msymbols[objfile->minimal_symbol_count];
299
300 memset (m, 0, sizeof (*m));
301 /* Don't rely on these enumeration values being 0's. */
302 MSYMBOL_TYPE (m) = mst_unknown;
303 SYMBOL_INIT_LANGUAGE_SPECIFIC (m, language_unknown);
304 }
305 }
306
307
308 /* Put one object file before a specified on in the global list.
309 This can be used to make sure an object file is destroyed before
310 another when using ALL_OBJFILES_SAFE to free all objfiles. */
311 void
312 put_objfile_before (struct objfile *objfile, struct objfile *before_this)
313 {
314 struct objfile **objp;
315
316 unlink_objfile (objfile);
317
318 for (objp = &object_files; *objp != NULL; objp = &((*objp)->next))
319 {
320 if (*objp == before_this)
321 {
322 objfile->next = *objp;
323 *objp = objfile;
324 return;
325 }
326 }
327
328 internal_error (__FILE__, __LINE__,
329 _("put_objfile_before: before objfile not in list"));
330 }
331
332 /* Put OBJFILE at the front of the list. */
333
334 void
335 objfile_to_front (struct objfile *objfile)
336 {
337 struct objfile **objp;
338 for (objp = &object_files; *objp != NULL; objp = &((*objp)->next))
339 {
340 if (*objp == objfile)
341 {
342 /* Unhook it from where it is. */
343 *objp = objfile->next;
344 /* Put it in the front. */
345 objfile->next = object_files;
346 object_files = objfile;
347 break;
348 }
349 }
350 }
351
352 /* Unlink OBJFILE from the list of known objfiles, if it is found in the
353 list.
354
355 It is not a bug, or error, to call this function if OBJFILE is not known
356 to be in the current list. This is done in the case of mapped objfiles,
357 for example, just to ensure that the mapped objfile doesn't appear twice
358 in the list. Since the list is threaded, linking in a mapped objfile
359 twice would create a circular list.
360
361 If OBJFILE turns out to be in the list, we zap it's NEXT pointer after
362 unlinking it, just to ensure that we have completely severed any linkages
363 between the OBJFILE and the list. */
364
365 void
366 unlink_objfile (struct objfile *objfile)
367 {
368 struct objfile **objpp;
369
370 for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp)->next))
371 {
372 if (*objpp == objfile)
373 {
374 *objpp = (*objpp)->next;
375 objfile->next = NULL;
376 return;
377 }
378 }
379
380 internal_error (__FILE__, __LINE__,
381 _("unlink_objfile: objfile already unlinked"));
382 }
383
384
385 /* Destroy an objfile and all the symtabs and psymtabs under it. Note
386 that as much as possible is allocated on the objfile_obstack
387 so that the memory can be efficiently freed.
388
389 Things which we do NOT free because they are not in malloc'd memory
390 or not in memory specific to the objfile include:
391
392 objfile -> sf
393
394 FIXME: If the objfile is using reusable symbol information (via mmalloc),
395 then we need to take into account the fact that more than one process
396 may be using the symbol information at the same time (when mmalloc is
397 extended to support cooperative locking). When more than one process
398 is using the mapped symbol info, we need to be more careful about when
399 we free objects in the reusable area. */
400
401 void
402 free_objfile (struct objfile *objfile)
403 {
404 if (objfile->separate_debug_objfile)
405 {
406 free_objfile (objfile->separate_debug_objfile);
407 }
408
409 if (objfile->separate_debug_objfile_backlink)
410 {
411 /* We freed the separate debug file, make sure the base objfile
412 doesn't reference it. */
413 objfile->separate_debug_objfile_backlink->separate_debug_objfile = NULL;
414 }
415
416 /* Remove any references to this objfile in the global value
417 lists. */
418 preserve_values (objfile);
419
420 /* First do any symbol file specific actions required when we are
421 finished with a particular symbol file. Note that if the objfile
422 is using reusable symbol information (via mmalloc) then each of
423 these routines is responsible for doing the correct thing, either
424 freeing things which are valid only during this particular gdb
425 execution, or leaving them to be reused during the next one. */
426
427 if (objfile->sf != NULL)
428 {
429 (*objfile->sf->sym_finish) (objfile);
430 }
431
432 /* We always close the bfd. */
433
434 if (objfile->obfd != NULL)
435 {
436 char *name = bfd_get_filename (objfile->obfd);
437 if (!bfd_close (objfile->obfd))
438 warning (_("cannot close \"%s\": %s"),
439 name, bfd_errmsg (bfd_get_error ()));
440 xfree (name);
441 }
442
443 /* Remove it from the chain of all objfiles. */
444
445 unlink_objfile (objfile);
446
447 /* If we are going to free the runtime common objfile, mark it
448 as unallocated. */
449
450 if (objfile == rt_common_objfile)
451 rt_common_objfile = NULL;
452
453 /* Before the symbol table code was redone to make it easier to
454 selectively load and remove information particular to a specific
455 linkage unit, gdb used to do these things whenever the monolithic
456 symbol table was blown away. How much still needs to be done
457 is unknown, but we play it safe for now and keep each action until
458 it is shown to be no longer needed. */
459
460 /* Not all our callers call clear_symtab_users (objfile_purge_solibs,
461 for example), so we need to call this here. */
462 clear_pc_function_cache ();
463
464 /* Clear globals which might have pointed into a removed objfile.
465 FIXME: It's not clear which of these are supposed to persist
466 between expressions and which ought to be reset each time. */
467 expression_context_block = NULL;
468 innermost_block = NULL;
469
470 /* Check to see if the current_source_symtab belongs to this objfile,
471 and if so, call clear_current_source_symtab_and_line. */
472
473 {
474 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
475 struct symtab *s;
476
477 ALL_OBJFILE_SYMTABS (objfile, s)
478 {
479 if (s == cursal.symtab)
480 clear_current_source_symtab_and_line ();
481 }
482 }
483
484 /* The last thing we do is free the objfile struct itself. */
485
486 objfile_free_data (objfile);
487 if (objfile->name != NULL)
488 {
489 xfree (objfile->name);
490 }
491 if (objfile->global_psymbols.list)
492 xfree (objfile->global_psymbols.list);
493 if (objfile->static_psymbols.list)
494 xfree (objfile->static_psymbols.list);
495 /* Free the obstacks for non-reusable objfiles */
496 bcache_xfree (objfile->psymbol_cache);
497 bcache_xfree (objfile->macro_cache);
498 if (objfile->demangled_names_hash)
499 htab_delete (objfile->demangled_names_hash);
500 obstack_free (&objfile->objfile_obstack, 0);
501 xfree (objfile);
502 objfile = NULL;
503 }
504
505 static void
506 do_free_objfile_cleanup (void *obj)
507 {
508 free_objfile (obj);
509 }
510
511 struct cleanup *
512 make_cleanup_free_objfile (struct objfile *obj)
513 {
514 return make_cleanup (do_free_objfile_cleanup, obj);
515 }
516
517 /* Free all the object files at once and clean up their users. */
518
519 void
520 free_all_objfiles (void)
521 {
522 struct objfile *objfile, *temp;
523
524 ALL_OBJFILES_SAFE (objfile, temp)
525 {
526 free_objfile (objfile);
527 }
528 clear_symtab_users ();
529 }
530 \f
531 /* Relocate OBJFILE to NEW_OFFSETS. There should be OBJFILE->NUM_SECTIONS
532 entries in new_offsets. */
533 void
534 objfile_relocate (struct objfile *objfile, struct section_offsets *new_offsets)
535 {
536 struct obj_section *s;
537 struct section_offsets *delta =
538 ((struct section_offsets *)
539 alloca (SIZEOF_N_SECTION_OFFSETS (objfile->num_sections)));
540
541 {
542 int i;
543 int something_changed = 0;
544 for (i = 0; i < objfile->num_sections; ++i)
545 {
546 delta->offsets[i] =
547 ANOFFSET (new_offsets, i) - ANOFFSET (objfile->section_offsets, i);
548 if (ANOFFSET (delta, i) != 0)
549 something_changed = 1;
550 }
551 if (!something_changed)
552 return;
553 }
554
555 /* OK, get all the symtabs. */
556 {
557 struct symtab *s;
558
559 ALL_OBJFILE_SYMTABS (objfile, s)
560 {
561 struct linetable *l;
562 struct blockvector *bv;
563 int i;
564
565 /* First the line table. */
566 l = LINETABLE (s);
567 if (l)
568 {
569 for (i = 0; i < l->nitems; ++i)
570 l->item[i].pc += ANOFFSET (delta, s->block_line_section);
571 }
572
573 /* Don't relocate a shared blockvector more than once. */
574 if (!s->primary)
575 continue;
576
577 bv = BLOCKVECTOR (s);
578 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); ++i)
579 {
580 struct block *b;
581 struct symbol *sym;
582 struct dict_iterator iter;
583
584 b = BLOCKVECTOR_BLOCK (bv, i);
585 BLOCK_START (b) += ANOFFSET (delta, s->block_line_section);
586 BLOCK_END (b) += ANOFFSET (delta, s->block_line_section);
587 if (BLOCKVECTOR_MAP (bv))
588 addrmap_relocate (BLOCKVECTOR_MAP (bv),
589 ANOFFSET (delta, s->block_line_section));
590
591 ALL_BLOCK_SYMBOLS (b, iter, sym)
592 {
593 fixup_symbol_section (sym, objfile);
594
595 /* The RS6000 code from which this was taken skipped
596 any symbols in STRUCT_DOMAIN or UNDEF_DOMAIN.
597 But I'm leaving out that test, on the theory that
598 they can't possibly pass the tests below. */
599 if ((SYMBOL_CLASS (sym) == LOC_LABEL
600 || SYMBOL_CLASS (sym) == LOC_STATIC
601 || SYMBOL_CLASS (sym) == LOC_INDIRECT)
602 && SYMBOL_SECTION (sym) >= 0)
603 {
604 SYMBOL_VALUE_ADDRESS (sym) +=
605 ANOFFSET (delta, SYMBOL_SECTION (sym));
606 }
607 }
608 }
609 }
610 }
611
612 {
613 struct partial_symtab *p;
614
615 ALL_OBJFILE_PSYMTABS (objfile, p)
616 {
617 p->textlow += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
618 p->texthigh += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
619 }
620 }
621
622 {
623 struct partial_symbol **psym;
624
625 for (psym = objfile->global_psymbols.list;
626 psym < objfile->global_psymbols.next;
627 psym++)
628 {
629 fixup_psymbol_section (*psym, objfile);
630 if (SYMBOL_SECTION (*psym) >= 0)
631 SYMBOL_VALUE_ADDRESS (*psym) += ANOFFSET (delta,
632 SYMBOL_SECTION (*psym));
633 }
634 for (psym = objfile->static_psymbols.list;
635 psym < objfile->static_psymbols.next;
636 psym++)
637 {
638 fixup_psymbol_section (*psym, objfile);
639 if (SYMBOL_SECTION (*psym) >= 0)
640 SYMBOL_VALUE_ADDRESS (*psym) += ANOFFSET (delta,
641 SYMBOL_SECTION (*psym));
642 }
643 }
644
645 {
646 struct minimal_symbol *msym;
647 ALL_OBJFILE_MSYMBOLS (objfile, msym)
648 if (SYMBOL_SECTION (msym) >= 0)
649 SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
650 }
651 /* Relocating different sections by different amounts may cause the symbols
652 to be out of order. */
653 msymbols_sort (objfile);
654
655 {
656 int i;
657 for (i = 0; i < objfile->num_sections; ++i)
658 (objfile->section_offsets)->offsets[i] = ANOFFSET (new_offsets, i);
659 }
660
661 if (objfile->ei.entry_point != ~(CORE_ADDR) 0)
662 {
663 /* Relocate ei.entry_point with its section offset, use SECT_OFF_TEXT
664 only as a fallback. */
665 struct obj_section *s;
666 s = find_pc_section (objfile->ei.entry_point);
667 if (s)
668 objfile->ei.entry_point += ANOFFSET (delta, s->the_bfd_section->index);
669 else
670 objfile->ei.entry_point += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
671 }
672
673 {
674 struct obj_section *s;
675 bfd *abfd;
676
677 abfd = objfile->obfd;
678
679 ALL_OBJFILE_OSECTIONS (objfile, s)
680 {
681 int idx = s->the_bfd_section->index;
682
683 s->addr += ANOFFSET (delta, idx);
684 s->endaddr += ANOFFSET (delta, idx);
685 }
686 }
687
688 /* Update the table in exec_ops, used to read memory. */
689 ALL_OBJFILE_OSECTIONS (objfile, s)
690 {
691 int idx = s->the_bfd_section->index;
692
693 exec_set_section_address (bfd_get_filename (objfile->obfd), idx,
694 s->addr);
695 }
696
697 /* Relocate breakpoints as necessary, after things are relocated. */
698 breakpoint_re_set ();
699 }
700 \f
701 /* Many places in gdb want to test just to see if we have any partial
702 symbols available. This function returns zero if none are currently
703 available, nonzero otherwise. */
704
705 int
706 have_partial_symbols (void)
707 {
708 struct objfile *ofp;
709
710 ALL_OBJFILES (ofp)
711 {
712 if (ofp->psymtabs != NULL)
713 {
714 return 1;
715 }
716 }
717 return 0;
718 }
719
720 /* Many places in gdb want to test just to see if we have any full
721 symbols available. This function returns zero if none are currently
722 available, nonzero otherwise. */
723
724 int
725 have_full_symbols (void)
726 {
727 struct objfile *ofp;
728
729 ALL_OBJFILES (ofp)
730 {
731 if (ofp->symtabs != NULL)
732 {
733 return 1;
734 }
735 }
736 return 0;
737 }
738
739
740 /* This operations deletes all objfile entries that represent solibs that
741 weren't explicitly loaded by the user, via e.g., the add-symbol-file
742 command.
743 */
744 void
745 objfile_purge_solibs (void)
746 {
747 struct objfile *objf;
748 struct objfile *temp;
749
750 ALL_OBJFILES_SAFE (objf, temp)
751 {
752 /* We assume that the solib package has been purged already, or will
753 be soon.
754 */
755 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
756 free_objfile (objf);
757 }
758 }
759
760
761 /* Many places in gdb want to test just to see if we have any minimal
762 symbols available. This function returns zero if none are currently
763 available, nonzero otherwise. */
764
765 int
766 have_minimal_symbols (void)
767 {
768 struct objfile *ofp;
769
770 ALL_OBJFILES (ofp)
771 {
772 if (ofp->minimal_symbol_count > 0)
773 {
774 return 1;
775 }
776 }
777 return 0;
778 }
779
780 /* Returns a section whose range includes PC and SECTION, or NULL if
781 none found. Note the distinction between the return type, struct
782 obj_section (which is defined in gdb), and the input type "struct
783 bfd_section" (which is a bfd-defined data type). The obj_section
784 contains a pointer to the "struct bfd_section". */
785
786 struct obj_section *
787 find_pc_sect_section (CORE_ADDR pc, struct bfd_section *section)
788 {
789 struct obj_section *s;
790 struct objfile *objfile;
791
792 ALL_OBJSECTIONS (objfile, s)
793 if ((section == 0 || section == s->the_bfd_section) &&
794 s->addr <= pc && pc < s->endaddr)
795 return (s);
796
797 return (NULL);
798 }
799
800 /* Returns a section whose range includes PC or NULL if none found.
801 Backward compatibility, no section. */
802
803 struct obj_section *
804 find_pc_section (CORE_ADDR pc)
805 {
806 return find_pc_sect_section (pc, find_pc_mapped_section (pc));
807 }
808
809
810 /* In SVR4, we recognize a trampoline by it's section name.
811 That is, if the pc is in a section named ".plt" then we are in
812 a trampoline. */
813
814 int
815 in_plt_section (CORE_ADDR pc, char *name)
816 {
817 struct obj_section *s;
818 int retval = 0;
819
820 s = find_pc_section (pc);
821
822 retval = (s != NULL
823 && s->the_bfd_section->name != NULL
824 && strcmp (s->the_bfd_section->name, ".plt") == 0);
825 return (retval);
826 }
827 \f
828
829 /* Keep a registry of per-objfile data-pointers required by other GDB
830 modules. */
831
832 struct objfile_data
833 {
834 unsigned index;
835 void (*cleanup) (struct objfile *, void *);
836 };
837
838 struct objfile_data_registration
839 {
840 struct objfile_data *data;
841 struct objfile_data_registration *next;
842 };
843
844 struct objfile_data_registry
845 {
846 struct objfile_data_registration *registrations;
847 unsigned num_registrations;
848 };
849
850 static struct objfile_data_registry objfile_data_registry = { NULL, 0 };
851
852 const struct objfile_data *
853 register_objfile_data_with_cleanup (void (*cleanup) (struct objfile *, void *))
854 {
855 struct objfile_data_registration **curr;
856
857 /* Append new registration. */
858 for (curr = &objfile_data_registry.registrations;
859 *curr != NULL; curr = &(*curr)->next);
860
861 *curr = XMALLOC (struct objfile_data_registration);
862 (*curr)->next = NULL;
863 (*curr)->data = XMALLOC (struct objfile_data);
864 (*curr)->data->index = objfile_data_registry.num_registrations++;
865 (*curr)->data->cleanup = cleanup;
866
867 return (*curr)->data;
868 }
869
870 const struct objfile_data *
871 register_objfile_data (void)
872 {
873 return register_objfile_data_with_cleanup (NULL);
874 }
875
876 static void
877 objfile_alloc_data (struct objfile *objfile)
878 {
879 gdb_assert (objfile->data == NULL);
880 objfile->num_data = objfile_data_registry.num_registrations;
881 objfile->data = XCALLOC (objfile->num_data, void *);
882 }
883
884 static void
885 objfile_free_data (struct objfile *objfile)
886 {
887 gdb_assert (objfile->data != NULL);
888 clear_objfile_data (objfile);
889 xfree (objfile->data);
890 objfile->data = NULL;
891 }
892
893 void
894 clear_objfile_data (struct objfile *objfile)
895 {
896 struct objfile_data_registration *registration;
897 int i;
898
899 gdb_assert (objfile->data != NULL);
900
901 for (registration = objfile_data_registry.registrations, i = 0;
902 i < objfile->num_data;
903 registration = registration->next, i++)
904 if (objfile->data[i] != NULL && registration->data->cleanup)
905 registration->data->cleanup (objfile, objfile->data[i]);
906
907 memset (objfile->data, 0, objfile->num_data * sizeof (void *));
908 }
909
910 void
911 set_objfile_data (struct objfile *objfile, const struct objfile_data *data,
912 void *value)
913 {
914 gdb_assert (data->index < objfile->num_data);
915 objfile->data[data->index] = value;
916 }
917
918 void *
919 objfile_data (struct objfile *objfile, const struct objfile_data *data)
920 {
921 gdb_assert (data->index < objfile->num_data);
922 return objfile->data[data->index];
923 }
This page took 0.048163 seconds and 4 git commands to generate.