* Makefile.in (objfiles.o): Update.
[deliverable/binutils-gdb.git] / gdb / objfiles.c
CommitLineData
c906108c 1/* GDB routines for manipulating objfiles.
af5f3db6 2
6aba47ca 3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
9b254dd1 4 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
af5f3db6 5
c906108c
SS
6 Contributed by Cygnus Support, using pieces from other GDB modules.
7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
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
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
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.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
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"
af5f3db6 33#include "bcache.h"
5b123146 34#include "mdebugread.h"
9bdcbae7
DJ
35#include "expression.h"
36#include "parser-defs.h"
37
0d0e1a63 38#include "gdb_assert.h"
c906108c
SS
39#include <sys/types.h>
40#include "gdb_stat.h"
41#include <fcntl.h>
04ea0df1 42#include "gdb_obstack.h"
c906108c 43#include "gdb_string.h"
2de7ced7 44#include "hashtab.h"
c906108c 45
7a292a7a 46#include "breakpoint.h"
fe898f56 47#include "block.h"
de4f826b 48#include "dictionary.h"
cb5d864f 49#include "source.h"
801e3a5b 50#include "addrmap.h"
5e2b427d 51#include "arch-utils.h"
30510692 52#include "exec.h"
7a292a7a 53
c906108c
SS
54/* Prototypes for local functions */
55
0d0e1a63
MK
56static void objfile_alloc_data (struct objfile *objfile);
57static void objfile_free_data (struct objfile *objfile);
58
c906108c
SS
59/* Externally visible variables that are owned by this module.
60 See declarations in objfile.h for more info. */
61
c5aa993b 62struct objfile *object_files; /* Linked list of all objfiles */
c906108c
SS
63struct objfile *current_objfile; /* For symbol file being read in */
64struct objfile *symfile_objfile; /* Main symbol table loaded from */
65struct objfile *rt_common_objfile; /* For runtime common symbols */
66
c906108c
SS
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
96baa820
JM
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
c906108c 80static void
7be0c536
AC
81add_to_objfile_sections (struct bfd *abfd, struct bfd_section *asect,
82 void *objfile_p_char)
c906108c
SS
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
c5aa993b 90 if (!(aflag & SEC_ALLOC) && !(TARGET_KEEP_SECTION (asect)))
c906108c
SS
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);
8b92e4d5 101 obstack_grow (&objfile->objfile_obstack, (char *) &section, sizeof (section));
c906108c
SS
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
96baa820
JM
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. */
c906108c
SS
120
121int
fba45db2 122build_objfile_section_table (struct objfile *objfile)
c906108c
SS
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
8b92e4d5 127 can't free the old one (it's in the objfile_obstack). So we just
c906108c
SS
128 waste some memory. */
129
130 objfile->sections_end = 0;
c5aa993b 131 bfd_map_over_sections (objfile->obfd, add_to_objfile_sections, (char *) objfile);
c906108c 132 objfile->sections = (struct obj_section *)
8b92e4d5 133 obstack_finish (&objfile->objfile_obstack);
c906108c 134 objfile->sections_end = objfile->sections + (unsigned long) objfile->sections_end;
c5aa993b 135 return (0);
c906108c
SS
136}
137
2df3850c
JM
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.
c906108c 142
2df3850c 143 The FLAGS word contains various bits (OBJF_*) that can be taken as
78a4a9b9
AC
144 requests for specific operations. Other bits like OBJF_SHARED are
145 simply copied through to the new objfile flags member. */
c906108c 146
eb9a305d
DC
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
c906108c 156struct objfile *
fba45db2 157allocate_objfile (bfd *abfd, int flags)
c906108c
SS
158{
159 struct objfile *objfile = NULL;
160 struct objfile *last_one = NULL;
161
c906108c
SS
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));
c5aa993b 170 objfile->md = NULL;
af5f3db6
AC
171 objfile->psymbol_cache = bcache_xmalloc ();
172 objfile->macro_cache = bcache_xmalloc ();
1ab21617
EZ
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);
15831452 176 terminate_minimal_symbol_table (objfile);
c906108c
SS
177 }
178
0d0e1a63
MK
179 objfile_alloc_data (objfile);
180
c906108c
SS
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
c5aa993b
JM
185 objfile->obfd = abfd;
186 if (objfile->name != NULL)
c906108c 187 {
2dc74dc1 188 xfree (objfile->name);
c906108c
SS
189 }
190 if (abfd != NULL)
191 {
5e2b427d
UW
192 /* Look up the gdbarch associated with the BFD. */
193 objfile->gdbarch = gdbarch_from_bfd (abfd);
194
982526a1 195 objfile->name = xstrdup (bfd_get_filename (abfd));
c5aa993b 196 objfile->mtime = bfd_get_mtime (abfd);
c906108c
SS
197
198 /* Build section table. */
199
200 if (build_objfile_section_table (objfile))
201 {
8a3fe4f8 202 error (_("Can't find the file sections in `%s': %s"),
c5aa993b 203 objfile->name, bfd_errmsg (bfd_get_error ()));
c906108c
SS
204 }
205 }
eb9a305d
DC
206 else
207 {
982526a1 208 objfile->name = xstrdup ("<<anonymous objfile>>");
eb9a305d 209 }
c906108c 210
b8fbeb18
EZ
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
5c4e30ca
DC
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;
b8fbeb18 222
c906108c
SS
223 /* Add this file onto the tail of the linked list of other such files. */
224
c5aa993b 225 objfile->next = NULL;
c906108c
SS
226 if (object_files == NULL)
227 object_files = objfile;
228 else
229 {
230 for (last_one = object_files;
c5aa993b
JM
231 last_one->next;
232 last_one = last_one->next);
233 last_one->next = objfile;
c906108c
SS
234 }
235
2df3850c
JM
236 /* Save passed in flag bits. */
237 objfile->flags |= flags;
c906108c
SS
238
239 return (objfile);
240}
241
5e2b427d
UW
242/* Retrieve the gdbarch associated with OBJFILE. */
243struct gdbarch *
244get_objfile_arch (struct objfile *objfile)
245{
246 return objfile->gdbarch;
247}
248
9ab9195f
EZ
249/* Initialize entry point information for this objfile. */
250
251void
252init_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 }
574dffa2
DJ
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);
9ab9195f
EZ
269 else
270 {
271 /* Examination of non-executable.o files. Short-circuit this stuff. */
272 objfile->ei.entry_point = INVALID_ENTRY_POINT;
273 }
9ab9195f
EZ
274}
275
276/* Get current entry point address. */
277
278CORE_ADDR
279entry_point_address (void)
280{
281 return symfile_objfile ? symfile_objfile->ei.entry_point : 0;
282}
15831452
JB
283
284/* Create the terminating entry of OBJFILE's minimal symbol table.
285 If OBJFILE->msymbols is zero, allocate a single entry from
4a146b47 286 OBJFILE->objfile_obstack; otherwise, just initialize
15831452
JB
287 OBJFILE->msymbols[OBJFILE->minimal_symbol_count]. */
288void
289terminate_minimal_symbol_table (struct objfile *objfile)
290{
291 if (! objfile->msymbols)
292 objfile->msymbols = ((struct minimal_symbol *)
4a146b47 293 obstack_alloc (&objfile->objfile_obstack,
15831452
JB
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));
5bf0017e
EZ
301 /* Don't rely on these enumeration values being 0's. */
302 MSYMBOL_TYPE (m) = mst_unknown;
15831452
JB
303 SYMBOL_INIT_LANGUAGE_SPECIFIC (m, language_unknown);
304 }
305}
306
307
5b5d99cf
JB
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. */
311void
312put_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__,
e2e0b3e5 329 _("put_objfile_before: before objfile not in list"));
5b5d99cf
JB
330}
331
c906108c
SS
332/* Put OBJFILE at the front of the list. */
333
334void
fba45db2 335objfile_to_front (struct objfile *objfile)
c906108c
SS
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
365void
fba45db2 366unlink_objfile (struct objfile *objfile)
c906108c 367{
c5aa993b 368 struct objfile **objpp;
c906108c 369
c5aa993b 370 for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp)->next))
c906108c 371 {
c5aa993b 372 if (*objpp == objfile)
c906108c 373 {
c5aa993b
JM
374 *objpp = (*objpp)->next;
375 objfile->next = NULL;
07cd4b97 376 return;
c906108c
SS
377 }
378 }
07cd4b97 379
8e65ff28 380 internal_error (__FILE__, __LINE__,
e2e0b3e5 381 _("unlink_objfile: objfile already unlinked"));
c906108c
SS
382}
383
384
385/* Destroy an objfile and all the symtabs and psymtabs under it. Note
4a146b47
EZ
386 that as much as possible is allocated on the objfile_obstack
387 so that the memory can be efficiently freed.
c906108c
SS
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
c5aa993b 392 objfile -> sf
c906108c
SS
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
401void
fba45db2 402free_objfile (struct objfile *objfile)
c906108c 403{
5b5d99cf
JB
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
ae5a43e0
DJ
416 /* Remove any references to this objfile in the global value
417 lists. */
418 preserve_values (objfile);
419
c906108c
SS
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
c5aa993b 427 if (objfile->sf != NULL)
c906108c 428 {
c5aa993b 429 (*objfile->sf->sym_finish) (objfile);
c906108c
SS
430 }
431
432 /* We always close the bfd. */
433
c5aa993b 434 if (objfile->obfd != NULL)
c906108c
SS
435 {
436 char *name = bfd_get_filename (objfile->obfd);
c5aa993b 437 if (!bfd_close (objfile->obfd))
8a3fe4f8 438 warning (_("cannot close \"%s\": %s"),
c906108c 439 name, bfd_errmsg (bfd_get_error ()));
b8c9b27d 440 xfree (name);
c906108c
SS
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. */
c5aa993b 459
cb5d864f
FF
460 /* Not all our callers call clear_symtab_users (objfile_purge_solibs,
461 for example), so we need to call this here. */
c906108c
SS
462 clear_pc_function_cache ();
463
9bdcbae7
DJ
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
cb5d864f
FF
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
78a4a9b9 484 /* The last thing we do is free the objfile struct itself. */
c906108c 485
78a4a9b9
AC
486 objfile_free_data (objfile);
487 if (objfile->name != NULL)
c906108c 488 {
2dc74dc1 489 xfree (objfile->name);
c906108c 490 }
78a4a9b9 491 if (objfile->global_psymbols.list)
2dc74dc1 492 xfree (objfile->global_psymbols.list);
78a4a9b9 493 if (objfile->static_psymbols.list)
2dc74dc1 494 xfree (objfile->static_psymbols.list);
78a4a9b9
AC
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);
b99607ea 500 obstack_free (&objfile->objfile_obstack, 0);
2dc74dc1 501 xfree (objfile);
78a4a9b9 502 objfile = NULL;
c906108c
SS
503}
504
74b7792f
AC
505static void
506do_free_objfile_cleanup (void *obj)
507{
508 free_objfile (obj);
509}
510
511struct cleanup *
512make_cleanup_free_objfile (struct objfile *obj)
513{
514 return make_cleanup (do_free_objfile_cleanup, obj);
515}
c906108c
SS
516
517/* Free all the object files at once and clean up their users. */
518
519void
fba45db2 520free_all_objfiles (void)
c906108c
SS
521{
522 struct objfile *objfile, *temp;
523
524 ALL_OBJFILES_SAFE (objfile, temp)
c5aa993b
JM
525 {
526 free_objfile (objfile);
527 }
c906108c
SS
528 clear_symtab_users ();
529}
530\f
531/* Relocate OBJFILE to NEW_OFFSETS. There should be OBJFILE->NUM_SECTIONS
532 entries in new_offsets. */
533void
fba45db2 534objfile_relocate (struct objfile *objfile, struct section_offsets *new_offsets)
c906108c 535{
30510692 536 struct obj_section *s;
d4f3574e 537 struct section_offsets *delta =
a39a16c4
MM
538 ((struct section_offsets *)
539 alloca (SIZEOF_N_SECTION_OFFSETS (objfile->num_sections)));
c906108c
SS
540
541 {
542 int i;
543 int something_changed = 0;
544 for (i = 0; i < objfile->num_sections; ++i)
545 {
a4c8257b 546 delta->offsets[i] =
c906108c
SS
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)
c5aa993b
JM
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 }
c906108c 572
c5aa993b
JM
573 /* Don't relocate a shared blockvector more than once. */
574 if (!s->primary)
575 continue;
c906108c 576
c5aa993b
JM
577 bv = BLOCKVECTOR (s);
578 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); ++i)
579 {
580 struct block *b;
e88c90f2 581 struct symbol *sym;
de4f826b 582 struct dict_iterator iter;
c5aa993b
JM
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);
801e3a5b
JB
587 if (BLOCKVECTOR_MAP (bv))
588 addrmap_relocate (BLOCKVECTOR_MAP (bv),
589 ANOFFSET (delta, s->block_line_section));
c5aa993b 590
de4f826b 591 ALL_BLOCK_SYMBOLS (b, iter, sym)
c5aa993b 592 {
7a78d0ee
KB
593 fixup_symbol_section (sym, objfile);
594
c5aa993b 595 /* The RS6000 code from which this was taken skipped
176620f1 596 any symbols in STRUCT_DOMAIN or UNDEF_DOMAIN.
c5aa993b
JM
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 }
c5aa993b
JM
607 }
608 }
609 }
c906108c
SS
610 }
611
612 {
613 struct partial_symtab *p;
614
615 ALL_OBJFILE_PSYMTABS (objfile, p)
c5aa993b 616 {
b8fbeb18
EZ
617 p->textlow += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
618 p->texthigh += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
c5aa993b 619 }
c906108c
SS
620 }
621
622 {
623 struct partial_symbol **psym;
624
625 for (psym = objfile->global_psymbols.list;
626 psym < objfile->global_psymbols.next;
627 psym++)
7a78d0ee
KB
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 }
c906108c
SS
634 for (psym = objfile->static_psymbols.list;
635 psym < objfile->static_psymbols.next;
636 psym++)
7a78d0ee
KB
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 }
c906108c
SS
643 }
644
645 {
646 struct minimal_symbol *msym;
647 ALL_OBJFILE_MSYMBOLS (objfile, msym)
648 if (SYMBOL_SECTION (msym) >= 0)
c5aa993b 649 SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
c906108c
SS
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)
a4c8257b 658 (objfile->section_offsets)->offsets[i] = ANOFFSET (new_offsets, i);
c906108c
SS
659 }
660
36b0c0e0
PS
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
c906108c
SS
673 {
674 struct obj_section *s;
675 bfd *abfd;
676
677 abfd = objfile->obfd;
678
96baa820 679 ALL_OBJFILE_OSECTIONS (objfile, s)
c906108c 680 {
78f0949b
KB
681 int idx = s->the_bfd_section->index;
682
683 s->addr += ANOFFSET (delta, idx);
684 s->endaddr += ANOFFSET (delta, idx);
c906108c
SS
685 }
686 }
687
30510692
DJ
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
c906108c
SS
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
705int
fba45db2 706have_partial_symbols (void)
c906108c
SS
707{
708 struct objfile *ofp;
709
710 ALL_OBJFILES (ofp)
c5aa993b
JM
711 {
712 if (ofp->psymtabs != NULL)
713 {
714 return 1;
715 }
716 }
c906108c
SS
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
724int
fba45db2 725have_full_symbols (void)
c906108c
SS
726{
727 struct objfile *ofp;
728
729 ALL_OBJFILES (ofp)
c5aa993b
JM
730 {
731 if (ofp->symtabs != NULL)
732 {
733 return 1;
734 }
735 }
c906108c
SS
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.
c5aa993b 743 */
c906108c 744void
fba45db2 745objfile_purge_solibs (void)
c906108c 746{
c5aa993b
JM
747 struct objfile *objf;
748 struct objfile *temp;
c906108c
SS
749
750 ALL_OBJFILES_SAFE (objf, temp)
751 {
752 /* We assume that the solib package has been purged already, or will
753 be soon.
c5aa993b 754 */
2df3850c 755 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
c906108c
SS
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
765int
fba45db2 766have_minimal_symbols (void)
c906108c
SS
767{
768 struct objfile *ofp;
769
770 ALL_OBJFILES (ofp)
c5aa993b 771 {
15831452 772 if (ofp->minimal_symbol_count > 0)
c5aa993b
JM
773 {
774 return 1;
775 }
776 }
c906108c
SS
777 return 0;
778}
779
198beae2
AC
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". */
c906108c
SS
785
786struct obj_section *
198beae2 787find_pc_sect_section (CORE_ADDR pc, struct bfd_section *section)
c906108c
SS
788{
789 struct obj_section *s;
790 struct objfile *objfile;
c5aa993b 791
96baa820 792 ALL_OBJSECTIONS (objfile, s)
c5aa993b
JM
793 if ((section == 0 || section == s->the_bfd_section) &&
794 s->addr <= pc && pc < s->endaddr)
c5aa993b 795 return (s);
c906108c 796
c5aa993b 797 return (NULL);
c906108c
SS
798}
799
800/* Returns a section whose range includes PC or NULL if none found.
801 Backward compatibility, no section. */
802
803struct obj_section *
fba45db2 804find_pc_section (CORE_ADDR pc)
c906108c
SS
805{
806 return find_pc_sect_section (pc, find_pc_mapped_section (pc));
807}
c5aa993b 808
c906108c
SS
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
814int
fba45db2 815in_plt_section (CORE_ADDR pc, char *name)
c906108c
SS
816{
817 struct obj_section *s;
818 int retval = 0;
c5aa993b
JM
819
820 s = find_pc_section (pc);
821
c906108c
SS
822 retval = (s != NULL
823 && s->the_bfd_section->name != NULL
6314a349 824 && strcmp (s->the_bfd_section->name, ".plt") == 0);
c5aa993b 825 return (retval);
c906108c 826}
0d0e1a63
MK
827\f
828
829/* Keep a registry of per-objfile data-pointers required by other GDB
830 modules. */
831
832struct objfile_data
833{
834 unsigned index;
60c5725c 835 void (*cleanup) (struct objfile *, void *);
0d0e1a63
MK
836};
837
838struct objfile_data_registration
839{
840 struct objfile_data *data;
841 struct objfile_data_registration *next;
842};
843
844struct objfile_data_registry
845{
846 struct objfile_data_registration *registrations;
847 unsigned num_registrations;
848};
849
850static struct objfile_data_registry objfile_data_registry = { NULL, 0 };
851
852const struct objfile_data *
60c5725c 853register_objfile_data_with_cleanup (void (*cleanup) (struct objfile *, void *))
0d0e1a63
MK
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);
7be570e7 860
0d0e1a63
MK
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++;
60c5725c 865 (*curr)->data->cleanup = cleanup;
0d0e1a63
MK
866
867 return (*curr)->data;
868}
869
60c5725c
DJ
870const struct objfile_data *
871register_objfile_data (void)
872{
873 return register_objfile_data_with_cleanup (NULL);
874}
875
0d0e1a63
MK
876static void
877objfile_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
884static void
885objfile_free_data (struct objfile *objfile)
886{
887 gdb_assert (objfile->data != NULL);
60c5725c 888 clear_objfile_data (objfile);
0d0e1a63
MK
889 xfree (objfile->data);
890 objfile->data = NULL;
891}
892
7b097ae3
MK
893void
894clear_objfile_data (struct objfile *objfile)
895{
60c5725c
DJ
896 struct objfile_data_registration *registration;
897 int i;
898
7b097ae3 899 gdb_assert (objfile->data != NULL);
60c5725c
DJ
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
7b097ae3
MK
907 memset (objfile->data, 0, objfile->num_data * sizeof (void *));
908}
909
0d0e1a63
MK
910void
911set_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
918void *
919objfile_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.705982 seconds and 4 git commands to generate.