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