1 /* GDB routines for manipulating objfiles.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
6 Contributed by Cygnus Support, using pieces from other GDB modules.
8 This file is part of GDB.
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.
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.
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
22 Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA. */
25 /* This file contains support routines for creating, manipulating, and
26 destroying objfile structures. */
29 #include "bfd.h" /* Binary File Description */
33 #include "gdb-stabs.h"
36 #include "mdebugread.h"
37 #include "gdb_assert.h"
38 #include <sys/types.h>
41 #include "gdb_obstack.h"
42 #include "gdb_string.h"
45 #include "breakpoint.h"
47 #include "dictionary.h"
50 /* Prototypes for local functions */
52 static void objfile_alloc_data (struct objfile
*objfile
);
53 static void objfile_free_data (struct objfile
*objfile
);
55 /* Externally visible variables that are owned by this module.
56 See declarations in objfile.h for more info. */
58 struct objfile
*object_files
; /* Linked list of all objfiles */
59 struct objfile
*current_objfile
; /* For symbol file being read in */
60 struct objfile
*symfile_objfile
; /* Main symbol table loaded from */
61 struct objfile
*rt_common_objfile
; /* For runtime common symbols */
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. */
67 #ifndef TARGET_KEEP_SECTION
68 #define TARGET_KEEP_SECTION(ASECT) 0
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). */
77 add_to_objfile_sections (struct bfd
*abfd
, struct bfd_section
*asect
,
80 struct objfile
*objfile
= (struct objfile
*) objfile_p_char
;
81 struct obj_section section
;
84 aflag
= bfd_get_section_flags (abfd
, asect
);
86 if (!(aflag
& SEC_ALLOC
) && !(TARGET_KEEP_SECTION (asect
)))
89 if (0 == bfd_section_size (abfd
, asect
))
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
);
97 obstack_grow (&objfile
->objfile_obstack
, (char *) §ion
, sizeof (section
));
98 objfile
->sections_end
= (struct obj_section
*) (((unsigned long) objfile
->sections_end
) + 1);
101 /* Builds a section table for OBJFILE.
102 Returns 0 if OK, 1 on error (in which case bfd_error contains the
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.
111 Also note that the OFFSET and OVLY_MAPPED in each table entry
112 are initialized to zero.
114 Also note that if anything else writes to the psymbol obstack while
115 we are building the table, we're pretty much hosed. */
118 build_objfile_section_table (struct objfile
*objfile
)
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
123 can't free the old one (it's in the objfile_obstack). So we just
124 waste some memory. */
126 objfile
->sections_end
= 0;
127 bfd_map_over_sections (objfile
->obfd
, add_to_objfile_sections
, (char *) objfile
);
128 objfile
->sections
= (struct obj_section
*)
129 obstack_finish (&objfile
->objfile_obstack
);
130 objfile
->sections_end
= objfile
->sections
+ (unsigned long) objfile
->sections_end
;
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
139 The FLAGS word contains various bits (OBJF_*) that can be taken as
140 requests for specific operations. Other bits like OBJF_SHARED are
141 simply copied through to the new objfile flags member. */
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. */
153 allocate_objfile (bfd
*abfd
, int flags
)
155 struct objfile
*objfile
= NULL
;
156 struct objfile
*last_one
= NULL
;
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. */
164 objfile
= (struct objfile
*) xmalloc (sizeof (struct objfile
));
165 memset (objfile
, 0, sizeof (struct objfile
));
167 objfile
->psymbol_cache
= bcache_xmalloc ();
168 objfile
->macro_cache
= bcache_xmalloc ();
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
);
172 terminate_minimal_symbol_table (objfile
);
175 objfile_alloc_data (objfile
);
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
181 objfile
->obfd
= abfd
;
182 if (objfile
->name
!= NULL
)
184 xfree (objfile
->name
);
188 objfile
->name
= xstrdup (bfd_get_filename (abfd
));
189 objfile
->mtime
= bfd_get_mtime (abfd
);
191 /* Build section table. */
193 if (build_objfile_section_table (objfile
))
195 error (_("Can't find the file sections in `%s': %s"),
196 objfile
->name
, bfd_errmsg (bfd_get_error ()));
201 objfile
->name
= xstrdup ("<<anonymous objfile>>");
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. */
207 objfile
->sect_index_text
= -1;
208 objfile
->sect_index_data
= -1;
209 objfile
->sect_index_bss
= -1;
210 objfile
->sect_index_rodata
= -1;
212 /* We don't yet have a C++-specific namespace symtab. */
214 objfile
->cp_namespace_symtab
= NULL
;
216 /* Add this file onto the tail of the linked list of other such files. */
218 objfile
->next
= NULL
;
219 if (object_files
== NULL
)
220 object_files
= objfile
;
223 for (last_one
= object_files
;
225 last_one
= last_one
->next
);
226 last_one
->next
= objfile
;
229 /* Save passed in flag bits. */
230 objfile
->flags
|= flags
;
235 /* Initialize entry point information for this objfile. */
238 init_entry_point_info (struct objfile
*objfile
)
240 /* Save startup file's range of PC addresses to help blockframe.c
241 decide where the bottom of the stack is. */
243 if (bfd_get_file_flags (objfile
->obfd
) & EXEC_P
)
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
);
251 /* Examination of non-executable.o files. Short-circuit this stuff. */
252 objfile
->ei
.entry_point
= INVALID_ENTRY_POINT
;
256 /* Get current entry point address. */
259 entry_point_address (void)
261 return symfile_objfile
? symfile_objfile
->ei
.entry_point
: 0;
264 /* Create the terminating entry of OBJFILE's minimal symbol table.
265 If OBJFILE->msymbols is zero, allocate a single entry from
266 OBJFILE->objfile_obstack; otherwise, just initialize
267 OBJFILE->msymbols[OBJFILE->minimal_symbol_count]. */
269 terminate_minimal_symbol_table (struct objfile
*objfile
)
271 if (! objfile
->msymbols
)
272 objfile
->msymbols
= ((struct minimal_symbol
*)
273 obstack_alloc (&objfile
->objfile_obstack
,
274 sizeof (objfile
->msymbols
[0])));
277 struct minimal_symbol
*m
278 = &objfile
->msymbols
[objfile
->minimal_symbol_count
];
280 memset (m
, 0, sizeof (*m
));
281 /* Don't rely on these enumeration values being 0's. */
282 MSYMBOL_TYPE (m
) = mst_unknown
;
283 SYMBOL_INIT_LANGUAGE_SPECIFIC (m
, language_unknown
);
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. */
292 put_objfile_before (struct objfile
*objfile
, struct objfile
*before_this
)
294 struct objfile
**objp
;
296 unlink_objfile (objfile
);
298 for (objp
= &object_files
; *objp
!= NULL
; objp
= &((*objp
)->next
))
300 if (*objp
== before_this
)
302 objfile
->next
= *objp
;
308 internal_error (__FILE__
, __LINE__
,
309 _("put_objfile_before: before objfile not in list"));
312 /* Put OBJFILE at the front of the list. */
315 objfile_to_front (struct objfile
*objfile
)
317 struct objfile
**objp
;
318 for (objp
= &object_files
; *objp
!= NULL
; objp
= &((*objp
)->next
))
320 if (*objp
== objfile
)
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
;
332 /* Unlink OBJFILE from the list of known objfiles, if it is found in the
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.
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. */
346 unlink_objfile (struct objfile
*objfile
)
348 struct objfile
**objpp
;
350 for (objpp
= &object_files
; *objpp
!= NULL
; objpp
= &((*objpp
)->next
))
352 if (*objpp
== objfile
)
354 *objpp
= (*objpp
)->next
;
355 objfile
->next
= NULL
;
360 internal_error (__FILE__
, __LINE__
,
361 _("unlink_objfile: objfile already unlinked"));
365 /* Destroy an objfile and all the symtabs and psymtabs under it. Note
366 that as much as possible is allocated on the objfile_obstack
367 so that the memory can be efficiently freed.
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:
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. */
382 free_objfile (struct objfile
*objfile
)
384 if (objfile
->separate_debug_objfile
)
386 free_objfile (objfile
->separate_debug_objfile
);
389 if (objfile
->separate_debug_objfile_backlink
)
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
;
396 /* Remove any references to this objfile in the global value
398 preserve_values (objfile
);
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. */
407 if (objfile
->sf
!= NULL
)
409 (*objfile
->sf
->sym_finish
) (objfile
);
412 /* We always close the bfd. */
414 if (objfile
->obfd
!= NULL
)
416 char *name
= bfd_get_filename (objfile
->obfd
);
417 if (!bfd_close (objfile
->obfd
))
418 warning (_("cannot close \"%s\": %s"),
419 name
, bfd_errmsg (bfd_get_error ()));
423 /* Remove it from the chain of all objfiles. */
425 unlink_objfile (objfile
);
427 /* If we are going to free the runtime common objfile, mark it
430 if (objfile
== rt_common_objfile
)
431 rt_common_objfile
= NULL
;
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. */
440 /* Not all our callers call clear_symtab_users (objfile_purge_solibs,
441 for example), so we need to call this here. */
442 clear_pc_function_cache ();
444 /* Check to see if the current_source_symtab belongs to this objfile,
445 and if so, call clear_current_source_symtab_and_line. */
448 struct symtab_and_line cursal
= get_current_source_symtab_and_line ();
451 ALL_OBJFILE_SYMTABS (objfile
, s
)
453 if (s
== cursal
.symtab
)
454 clear_current_source_symtab_and_line ();
458 /* The last thing we do is free the objfile struct itself. */
460 objfile_free_data (objfile
);
461 if (objfile
->name
!= NULL
)
463 xfree (objfile
->name
);
465 if (objfile
->global_psymbols
.list
)
466 xfree (objfile
->global_psymbols
.list
);
467 if (objfile
->static_psymbols
.list
)
468 xfree (objfile
->static_psymbols
.list
);
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
);
474 obstack_free (&objfile
->objfile_obstack
, 0);
480 do_free_objfile_cleanup (void *obj
)
486 make_cleanup_free_objfile (struct objfile
*obj
)
488 return make_cleanup (do_free_objfile_cleanup
, obj
);
491 /* Free all the object files at once and clean up their users. */
494 free_all_objfiles (void)
496 struct objfile
*objfile
, *temp
;
498 ALL_OBJFILES_SAFE (objfile
, temp
)
500 free_objfile (objfile
);
502 clear_symtab_users ();
505 /* Relocate OBJFILE to NEW_OFFSETS. There should be OBJFILE->NUM_SECTIONS
506 entries in new_offsets. */
508 objfile_relocate (struct objfile
*objfile
, struct section_offsets
*new_offsets
)
510 struct section_offsets
*delta
=
511 ((struct section_offsets
*)
512 alloca (SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
)));
516 int something_changed
= 0;
517 for (i
= 0; i
< objfile
->num_sections
; ++i
)
520 ANOFFSET (new_offsets
, i
) - ANOFFSET (objfile
->section_offsets
, i
);
521 if (ANOFFSET (delta
, i
) != 0)
522 something_changed
= 1;
524 if (!something_changed
)
528 /* OK, get all the symtabs. */
532 ALL_OBJFILE_SYMTABS (objfile
, s
)
535 struct blockvector
*bv
;
538 /* First the line table. */
542 for (i
= 0; i
< l
->nitems
; ++i
)
543 l
->item
[i
].pc
+= ANOFFSET (delta
, s
->block_line_section
);
546 /* Don't relocate a shared blockvector more than once. */
550 bv
= BLOCKVECTOR (s
);
551 for (i
= 0; i
< BLOCKVECTOR_NBLOCKS (bv
); ++i
)
555 struct dict_iterator iter
;
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
);
561 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
563 fixup_symbol_section (sym
, objfile
);
565 /* The RS6000 code from which this was taken skipped
566 any symbols in STRUCT_DOMAIN or UNDEF_DOMAIN.
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)
574 SYMBOL_VALUE_ADDRESS (sym
) +=
575 ANOFFSET (delta
, SYMBOL_SECTION (sym
));
583 struct partial_symtab
*p
;
585 ALL_OBJFILE_PSYMTABS (objfile
, p
)
587 p
->textlow
+= ANOFFSET (delta
, SECT_OFF_TEXT (objfile
));
588 p
->texthigh
+= ANOFFSET (delta
, SECT_OFF_TEXT (objfile
));
593 struct partial_symbol
**psym
;
595 for (psym
= objfile
->global_psymbols
.list
;
596 psym
< objfile
->global_psymbols
.next
;
599 fixup_psymbol_section (*psym
, objfile
);
600 if (SYMBOL_SECTION (*psym
) >= 0)
601 SYMBOL_VALUE_ADDRESS (*psym
) += ANOFFSET (delta
,
602 SYMBOL_SECTION (*psym
));
604 for (psym
= objfile
->static_psymbols
.list
;
605 psym
< objfile
->static_psymbols
.next
;
608 fixup_psymbol_section (*psym
, objfile
);
609 if (SYMBOL_SECTION (*psym
) >= 0)
610 SYMBOL_VALUE_ADDRESS (*psym
) += ANOFFSET (delta
,
611 SYMBOL_SECTION (*psym
));
616 struct minimal_symbol
*msym
;
617 ALL_OBJFILE_MSYMBOLS (objfile
, msym
)
618 if (SYMBOL_SECTION (msym
) >= 0)
619 SYMBOL_VALUE_ADDRESS (msym
) += ANOFFSET (delta
, SYMBOL_SECTION (msym
));
621 /* Relocating different sections by different amounts may cause the symbols
622 to be out of order. */
623 msymbols_sort (objfile
);
627 for (i
= 0; i
< objfile
->num_sections
; ++i
)
628 (objfile
->section_offsets
)->offsets
[i
] = ANOFFSET (new_offsets
, i
);
631 if (objfile
->ei
.entry_point
!= ~(CORE_ADDR
) 0)
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
);
638 objfile
->ei
.entry_point
+= ANOFFSET (delta
, s
->the_bfd_section
->index
);
640 objfile
->ei
.entry_point
+= ANOFFSET (delta
, SECT_OFF_TEXT (objfile
));
644 struct obj_section
*s
;
647 abfd
= objfile
->obfd
;
649 ALL_OBJFILE_OSECTIONS (objfile
, s
)
651 int idx
= s
->the_bfd_section
->index
;
653 s
->addr
+= ANOFFSET (delta
, idx
);
654 s
->endaddr
+= ANOFFSET (delta
, idx
);
658 /* Relocate breakpoints as necessary, after things are relocated. */
659 breakpoint_re_set ();
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. */
667 have_partial_symbols (void)
673 if (ofp
->psymtabs
!= NULL
)
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. */
686 have_full_symbols (void)
692 if (ofp
->symtabs
!= NULL
)
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
706 objfile_purge_solibs (void)
708 struct objfile
*objf
;
709 struct objfile
*temp
;
711 ALL_OBJFILES_SAFE (objf
, temp
)
713 /* We assume that the solib package has been purged already, or will
716 if (!(objf
->flags
& OBJF_USERLOADED
) && (objf
->flags
& OBJF_SHARED
))
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. */
727 have_minimal_symbols (void)
733 if (ofp
->minimal_symbol_count
> 0)
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". */
748 find_pc_sect_section (CORE_ADDR pc
, struct bfd_section
*section
)
750 struct obj_section
*s
;
751 struct objfile
*objfile
;
753 ALL_OBJSECTIONS (objfile
, s
)
754 if ((section
== 0 || section
== s
->the_bfd_section
) &&
755 s
->addr
<= pc
&& pc
< s
->endaddr
)
761 /* Returns a section whose range includes PC or NULL if none found.
762 Backward compatibility, no section. */
765 find_pc_section (CORE_ADDR pc
)
767 return find_pc_sect_section (pc
, find_pc_mapped_section (pc
));
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
776 in_plt_section (CORE_ADDR pc
, char *name
)
778 struct obj_section
*s
;
781 s
= find_pc_section (pc
);
784 && s
->the_bfd_section
->name
!= NULL
785 && strcmp (s
->the_bfd_section
->name
, ".plt") == 0);
789 /* Return nonzero if NAME is in the import list of OBJFILE. Else
793 is_in_import_list (char *name
, struct objfile
*objfile
)
797 if (!objfile
|| !name
|| !*name
)
800 for (i
= 0; i
< objfile
->import_list_size
; i
++)
801 if (objfile
->import_list
[i
] && DEPRECATED_STREQ (name
, objfile
->import_list
[i
]))
807 /* Keep a registry of per-objfile data-pointers required by other GDB
815 struct objfile_data_registration
817 struct objfile_data
*data
;
818 struct objfile_data_registration
*next
;
821 struct objfile_data_registry
823 struct objfile_data_registration
*registrations
;
824 unsigned num_registrations
;
827 static struct objfile_data_registry objfile_data_registry
= { NULL
, 0 };
829 const struct objfile_data
*
830 register_objfile_data (void)
832 struct objfile_data_registration
**curr
;
834 /* Append new registration. */
835 for (curr
= &objfile_data_registry
.registrations
;
836 *curr
!= NULL
; curr
= &(*curr
)->next
);
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
++;
843 return (*curr
)->data
;
847 objfile_alloc_data (struct objfile
*objfile
)
849 gdb_assert (objfile
->data
== NULL
);
850 objfile
->num_data
= objfile_data_registry
.num_registrations
;
851 objfile
->data
= XCALLOC (objfile
->num_data
, void *);
855 objfile_free_data (struct objfile
*objfile
)
857 gdb_assert (objfile
->data
!= NULL
);
858 xfree (objfile
->data
);
859 objfile
->data
= NULL
;
863 clear_objfile_data (struct objfile
*objfile
)
865 gdb_assert (objfile
->data
!= NULL
);
866 memset (objfile
->data
, 0, objfile
->num_data
* sizeof (void *));
870 set_objfile_data (struct objfile
*objfile
, const struct objfile_data
*data
,
873 gdb_assert (data
->index
< objfile
->num_data
);
874 objfile
->data
[data
->index
] = value
;
878 objfile_data (struct objfile
*objfile
, const struct objfile_data
*data
)
880 gdb_assert (data
->index
< objfile
->num_data
);
881 return objfile
->data
[data
->index
];