Use ptid_t.tid to store thread ids instead of ptid_t.pid.
[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
0bb4e8c4 600 || SYMBOL_CLASS (sym) == LOC_STATIC)
c5aa993b
JM
601 && SYMBOL_SECTION (sym) >= 0)
602 {
603 SYMBOL_VALUE_ADDRESS (sym) +=
604 ANOFFSET (delta, SYMBOL_SECTION (sym));
605 }
c5aa993b
JM
606 }
607 }
608 }
c906108c
SS
609 }
610
611 {
612 struct partial_symtab *p;
613
614 ALL_OBJFILE_PSYMTABS (objfile, p)
c5aa993b 615 {
b8fbeb18
EZ
616 p->textlow += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
617 p->texthigh += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
c5aa993b 618 }
c906108c
SS
619 }
620
621 {
622 struct partial_symbol **psym;
623
624 for (psym = objfile->global_psymbols.list;
625 psym < objfile->global_psymbols.next;
626 psym++)
7a78d0ee
KB
627 {
628 fixup_psymbol_section (*psym, objfile);
629 if (SYMBOL_SECTION (*psym) >= 0)
630 SYMBOL_VALUE_ADDRESS (*psym) += ANOFFSET (delta,
631 SYMBOL_SECTION (*psym));
632 }
c906108c
SS
633 for (psym = objfile->static_psymbols.list;
634 psym < objfile->static_psymbols.next;
635 psym++)
7a78d0ee
KB
636 {
637 fixup_psymbol_section (*psym, objfile);
638 if (SYMBOL_SECTION (*psym) >= 0)
639 SYMBOL_VALUE_ADDRESS (*psym) += ANOFFSET (delta,
640 SYMBOL_SECTION (*psym));
641 }
c906108c
SS
642 }
643
644 {
645 struct minimal_symbol *msym;
646 ALL_OBJFILE_MSYMBOLS (objfile, msym)
647 if (SYMBOL_SECTION (msym) >= 0)
c5aa993b 648 SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
c906108c
SS
649 }
650 /* Relocating different sections by different amounts may cause the symbols
651 to be out of order. */
652 msymbols_sort (objfile);
653
654 {
655 int i;
656 for (i = 0; i < objfile->num_sections; ++i)
a4c8257b 657 (objfile->section_offsets)->offsets[i] = ANOFFSET (new_offsets, i);
c906108c
SS
658 }
659
36b0c0e0
PS
660 if (objfile->ei.entry_point != ~(CORE_ADDR) 0)
661 {
662 /* Relocate ei.entry_point with its section offset, use SECT_OFF_TEXT
663 only as a fallback. */
664 struct obj_section *s;
665 s = find_pc_section (objfile->ei.entry_point);
666 if (s)
667 objfile->ei.entry_point += ANOFFSET (delta, s->the_bfd_section->index);
668 else
669 objfile->ei.entry_point += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
670 }
671
c906108c
SS
672 {
673 struct obj_section *s;
674 bfd *abfd;
675
676 abfd = objfile->obfd;
677
96baa820 678 ALL_OBJFILE_OSECTIONS (objfile, s)
c906108c 679 {
78f0949b
KB
680 int idx = s->the_bfd_section->index;
681
682 s->addr += ANOFFSET (delta, idx);
683 s->endaddr += ANOFFSET (delta, idx);
c906108c
SS
684 }
685 }
686
30510692
DJ
687 /* Update the table in exec_ops, used to read memory. */
688 ALL_OBJFILE_OSECTIONS (objfile, s)
689 {
690 int idx = s->the_bfd_section->index;
691
692 exec_set_section_address (bfd_get_filename (objfile->obfd), idx,
693 s->addr);
694 }
695
c906108c
SS
696 /* Relocate breakpoints as necessary, after things are relocated. */
697 breakpoint_re_set ();
698}
699\f
700/* Many places in gdb want to test just to see if we have any partial
701 symbols available. This function returns zero if none are currently
702 available, nonzero otherwise. */
703
704int
fba45db2 705have_partial_symbols (void)
c906108c
SS
706{
707 struct objfile *ofp;
708
709 ALL_OBJFILES (ofp)
c5aa993b
JM
710 {
711 if (ofp->psymtabs != NULL)
712 {
713 return 1;
714 }
715 }
c906108c
SS
716 return 0;
717}
718
719/* Many places in gdb want to test just to see if we have any full
720 symbols available. This function returns zero if none are currently
721 available, nonzero otherwise. */
722
723int
fba45db2 724have_full_symbols (void)
c906108c
SS
725{
726 struct objfile *ofp;
727
728 ALL_OBJFILES (ofp)
c5aa993b
JM
729 {
730 if (ofp->symtabs != NULL)
731 {
732 return 1;
733 }
734 }
c906108c
SS
735 return 0;
736}
737
738
739/* This operations deletes all objfile entries that represent solibs that
740 weren't explicitly loaded by the user, via e.g., the add-symbol-file
741 command.
c5aa993b 742 */
c906108c 743void
fba45db2 744objfile_purge_solibs (void)
c906108c 745{
c5aa993b
JM
746 struct objfile *objf;
747 struct objfile *temp;
c906108c
SS
748
749 ALL_OBJFILES_SAFE (objf, temp)
750 {
751 /* We assume that the solib package has been purged already, or will
752 be soon.
c5aa993b 753 */
2df3850c 754 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
c906108c
SS
755 free_objfile (objf);
756 }
757}
758
759
760/* Many places in gdb want to test just to see if we have any minimal
761 symbols available. This function returns zero if none are currently
762 available, nonzero otherwise. */
763
764int
fba45db2 765have_minimal_symbols (void)
c906108c
SS
766{
767 struct objfile *ofp;
768
769 ALL_OBJFILES (ofp)
c5aa993b 770 {
15831452 771 if (ofp->minimal_symbol_count > 0)
c5aa993b
JM
772 {
773 return 1;
774 }
775 }
c906108c
SS
776 return 0;
777}
778
198beae2
AC
779/* Returns a section whose range includes PC and SECTION, or NULL if
780 none found. Note the distinction between the return type, struct
781 obj_section (which is defined in gdb), and the input type "struct
782 bfd_section" (which is a bfd-defined data type). The obj_section
783 contains a pointer to the "struct bfd_section". */
c906108c
SS
784
785struct obj_section *
198beae2 786find_pc_sect_section (CORE_ADDR pc, struct bfd_section *section)
c906108c
SS
787{
788 struct obj_section *s;
789 struct objfile *objfile;
c5aa993b 790
96baa820 791 ALL_OBJSECTIONS (objfile, s)
c5aa993b
JM
792 if ((section == 0 || section == s->the_bfd_section) &&
793 s->addr <= pc && pc < s->endaddr)
c5aa993b 794 return (s);
c906108c 795
c5aa993b 796 return (NULL);
c906108c
SS
797}
798
799/* Returns a section whose range includes PC or NULL if none found.
800 Backward compatibility, no section. */
801
802struct obj_section *
fba45db2 803find_pc_section (CORE_ADDR pc)
c906108c
SS
804{
805 return find_pc_sect_section (pc, find_pc_mapped_section (pc));
806}
c5aa993b 807
c906108c
SS
808
809/* In SVR4, we recognize a trampoline by it's section name.
810 That is, if the pc is in a section named ".plt" then we are in
811 a trampoline. */
812
813int
fba45db2 814in_plt_section (CORE_ADDR pc, char *name)
c906108c
SS
815{
816 struct obj_section *s;
817 int retval = 0;
c5aa993b
JM
818
819 s = find_pc_section (pc);
820
c906108c
SS
821 retval = (s != NULL
822 && s->the_bfd_section->name != NULL
6314a349 823 && strcmp (s->the_bfd_section->name, ".plt") == 0);
c5aa993b 824 return (retval);
c906108c 825}
0d0e1a63
MK
826\f
827
828/* Keep a registry of per-objfile data-pointers required by other GDB
829 modules. */
830
831struct objfile_data
832{
833 unsigned index;
60c5725c 834 void (*cleanup) (struct objfile *, void *);
0d0e1a63
MK
835};
836
837struct objfile_data_registration
838{
839 struct objfile_data *data;
840 struct objfile_data_registration *next;
841};
842
843struct objfile_data_registry
844{
845 struct objfile_data_registration *registrations;
846 unsigned num_registrations;
847};
848
849static struct objfile_data_registry objfile_data_registry = { NULL, 0 };
850
851const struct objfile_data *
60c5725c 852register_objfile_data_with_cleanup (void (*cleanup) (struct objfile *, void *))
0d0e1a63
MK
853{
854 struct objfile_data_registration **curr;
855
856 /* Append new registration. */
857 for (curr = &objfile_data_registry.registrations;
858 *curr != NULL; curr = &(*curr)->next);
7be570e7 859
0d0e1a63
MK
860 *curr = XMALLOC (struct objfile_data_registration);
861 (*curr)->next = NULL;
862 (*curr)->data = XMALLOC (struct objfile_data);
863 (*curr)->data->index = objfile_data_registry.num_registrations++;
60c5725c 864 (*curr)->data->cleanup = cleanup;
0d0e1a63
MK
865
866 return (*curr)->data;
867}
868
60c5725c
DJ
869const struct objfile_data *
870register_objfile_data (void)
871{
872 return register_objfile_data_with_cleanup (NULL);
873}
874
0d0e1a63
MK
875static void
876objfile_alloc_data (struct objfile *objfile)
877{
878 gdb_assert (objfile->data == NULL);
879 objfile->num_data = objfile_data_registry.num_registrations;
880 objfile->data = XCALLOC (objfile->num_data, void *);
881}
882
883static void
884objfile_free_data (struct objfile *objfile)
885{
886 gdb_assert (objfile->data != NULL);
60c5725c 887 clear_objfile_data (objfile);
0d0e1a63
MK
888 xfree (objfile->data);
889 objfile->data = NULL;
890}
891
7b097ae3
MK
892void
893clear_objfile_data (struct objfile *objfile)
894{
60c5725c
DJ
895 struct objfile_data_registration *registration;
896 int i;
897
7b097ae3 898 gdb_assert (objfile->data != NULL);
60c5725c
DJ
899
900 for (registration = objfile_data_registry.registrations, i = 0;
901 i < objfile->num_data;
902 registration = registration->next, i++)
903 if (objfile->data[i] != NULL && registration->data->cleanup)
904 registration->data->cleanup (objfile, objfile->data[i]);
905
7b097ae3
MK
906 memset (objfile->data, 0, objfile->num_data * sizeof (void *));
907}
908
0d0e1a63
MK
909void
910set_objfile_data (struct objfile *objfile, const struct objfile_data *data,
911 void *value)
912{
913 gdb_assert (data->index < objfile->num_data);
914 objfile->data[data->index] = value;
915}
916
917void *
918objfile_data (struct objfile *objfile, const struct objfile_data *data)
919{
920 gdb_assert (data->index < objfile->num_data);
921 return objfile->data[data->index];
922}
This page took 0.766294 seconds and 4 git commands to generate.