import gdb-1999-05-25 snapshot
[deliverable/binutils-gdb.git] / gdb / elfread.c
1 /* Read ELF (Executable and Linking Format) object files for GDB.
2 Copyright 1991, 92, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
3 Written by Fred Fish at Cygnus Support.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "defs.h"
22 #include "bfd.h"
23 #include "gdb_string.h"
24 #include "elf-bfd.h"
25 #include "elf/mips.h"
26 #include "symtab.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29 #include "buildsym.h"
30 #include "stabsread.h"
31 #include "gdb-stabs.h"
32 #include "complaints.h"
33 #include "demangle.h"
34
35 extern void _initialize_elfread PARAMS ((void));
36
37 /* The struct elfinfo is available only during ELF symbol table and
38 psymtab reading. It is destroyed at the complation of psymtab-reading.
39 It's local to elf_symfile_read. */
40
41 struct elfinfo {
42 file_ptr dboffset; /* Offset to dwarf debug section */
43 unsigned int dbsize; /* Size of dwarf debug section */
44 file_ptr lnoffset; /* Offset to dwarf line number section */
45 unsigned int lnsize; /* Size of dwarf line number section */
46 asection *stabsect; /* Section pointer for .stab section */
47 asection *stabindexsect; /* Section pointer for .stab.index section */
48 asection *mdebugsect; /* Section pointer for .mdebug section */
49 };
50
51 /* Various things we might complain about... */
52
53 struct complaint section_info_complaint =
54 {"elf/stab section information %s without a preceding file symbol", 0, 0};
55
56 struct complaint section_info_dup_complaint =
57 {"duplicated elf/stab section information for %s", 0, 0};
58
59 struct complaint stab_info_mismatch_complaint =
60 {"elf/stab section information missing for %s", 0, 0};
61
62 struct complaint stab_info_questionable_complaint =
63 {"elf/stab section information questionable for %s", 0, 0};
64
65 static void
66 elf_symfile_init PARAMS ((struct objfile *));
67
68 static void
69 elf_new_init PARAMS ((struct objfile *));
70
71 static void
72 elf_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
73
74 static void
75 elf_symfile_finish PARAMS ((struct objfile *));
76
77 static void
78 elf_symtab_read PARAMS ((bfd *, CORE_ADDR, struct objfile *, int));
79
80 static void
81 free_elfinfo PARAMS ((void *));
82
83 static struct minimal_symbol *
84 record_minimal_symbol_and_info PARAMS ((char *, CORE_ADDR,
85 enum minimal_symbol_type, char *,
86 asection *bfd_section,
87 struct objfile *));
88
89 static void
90 elf_locate_sections PARAMS ((bfd *, asection *, void *));
91
92 /* We are called once per section from elf_symfile_read. We
93 need to examine each section we are passed, check to see
94 if it is something we are interested in processing, and
95 if so, stash away some access information for the section.
96
97 For now we recognize the dwarf debug information sections and
98 line number sections from matching their section names. The
99 ELF definition is no real help here since it has no direct
100 knowledge of DWARF (by design, so any debugging format can be
101 used).
102
103 We also recognize the ".stab" sections used by the Sun compilers
104 released with Solaris 2.
105
106 FIXME: The section names should not be hardwired strings (what
107 should they be? I don't think most object file formats have enough
108 section flags to specify what kind of debug section it is
109 -kingdon). */
110
111 static void
112 elf_locate_sections (ignore_abfd, sectp, eip)
113 bfd *ignore_abfd;
114 asection *sectp;
115 PTR eip;
116 {
117 register struct elfinfo *ei;
118
119 ei = (struct elfinfo *) eip;
120 if (STREQ (sectp -> name, ".debug"))
121 {
122 ei -> dboffset = sectp -> filepos;
123 ei -> dbsize = bfd_get_section_size_before_reloc (sectp);
124 }
125 else if (STREQ (sectp -> name, ".line"))
126 {
127 ei -> lnoffset = sectp -> filepos;
128 ei -> lnsize = bfd_get_section_size_before_reloc (sectp);
129 }
130 else if (STREQ (sectp -> name, ".stab"))
131 {
132 ei -> stabsect = sectp;
133 }
134 else if (STREQ (sectp -> name, ".stab.index"))
135 {
136 ei -> stabindexsect = sectp;
137 }
138 else if (STREQ (sectp -> name, ".mdebug"))
139 {
140 ei -> mdebugsect = sectp;
141 }
142 }
143
144 #if 0 /* Currently unused */
145
146 char *
147 elf_interpreter (abfd)
148 bfd *abfd;
149 {
150 sec_ptr interp_sec;
151 unsigned size;
152 char *interp = NULL;
153
154 interp_sec = bfd_get_section_by_name (abfd, ".interp");
155 if (interp_sec)
156 {
157 size = bfd_section_size (abfd, interp_sec);
158 interp = alloca (size);
159 if (bfd_get_section_contents (abfd, interp_sec, interp, (file_ptr)0,
160 size))
161 {
162 interp = savestring (interp, size - 1);
163 }
164 else
165 {
166 interp = NULL;
167 }
168 }
169 return (interp);
170 }
171
172 #endif
173
174 static struct minimal_symbol *
175 record_minimal_symbol_and_info (name, address, ms_type, info, bfd_section,
176 objfile)
177 char *name;
178 CORE_ADDR address;
179 enum minimal_symbol_type ms_type;
180 char *info; /* FIXME, is this really char *? */
181 asection *bfd_section;
182 struct objfile *objfile;
183 {
184 int section;
185
186 /* Guess the section from the type. This is likely to be wrong in
187 some cases. */
188 switch (ms_type)
189 {
190 case mst_text:
191 case mst_file_text:
192 section = SECT_OFF_TEXT;
193 #ifdef SMASH_TEXT_ADDRESS
194 SMASH_TEXT_ADDRESS (address);
195 #endif
196 break;
197 case mst_data:
198 case mst_file_data:
199 section = SECT_OFF_DATA;
200 break;
201 case mst_bss:
202 case mst_file_bss:
203 section = SECT_OFF_BSS;
204 break;
205 default:
206 section = -1;
207 break;
208 }
209
210 return prim_record_minimal_symbol_and_info
211 (name, address, ms_type, info, section, bfd_section, objfile);
212 }
213
214 /*
215
216 LOCAL FUNCTION
217
218 elf_symtab_read -- read the symbol table of an ELF file
219
220 SYNOPSIS
221
222 void elf_symtab_read (bfd *abfd, CORE_ADDR addr,
223 struct objfile *objfile, int dynamic)
224
225 DESCRIPTION
226
227 Given an open bfd, a base address to relocate symbols to, and a
228 flag that specifies whether or not this bfd is for an executable
229 or not (may be shared library for example), add all the global
230 function and data symbols to the minimal symbol table.
231
232 In stabs-in-ELF, as implemented by Sun, there are some local symbols
233 defined in the ELF symbol table, which can be used to locate
234 the beginnings of sections from each ".o" file that was linked to
235 form the executable objfile. We gather any such info and record it
236 in data structures hung off the objfile's private data.
237
238 */
239
240 static void
241 elf_symtab_read (abfd, addr, objfile, dynamic)
242 bfd *abfd;
243 CORE_ADDR addr;
244 struct objfile *objfile;
245 int dynamic;
246 {
247 long storage_needed;
248 asymbol *sym;
249 asymbol **symbol_table;
250 long number_of_symbols;
251 long i;
252 int index;
253 struct cleanup *back_to;
254 CORE_ADDR symaddr;
255 enum minimal_symbol_type ms_type;
256 /* If sectinfo is nonNULL, it contains section info that should end up
257 filed in the objfile. */
258 struct stab_section_info *sectinfo = NULL;
259 /* If filesym is nonzero, it points to a file symbol, but we haven't
260 seen any section info for it yet. */
261 asymbol *filesym = 0;
262 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
263 /* Name of filesym, as saved on the symbol_obstack. */
264 char *filesymname = obsavestring ("", 0, &objfile->symbol_obstack);
265 #endif
266 struct dbx_symfile_info *dbx = objfile->sym_stab_info;
267 unsigned long size;
268 int stripped = (bfd_get_symcount (abfd) == 0);
269
270 if (dynamic)
271 {
272 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
273
274 /* Nothing to be done if there is no dynamic symtab. */
275 if (storage_needed < 0)
276 return;
277 }
278 else
279 {
280 storage_needed = bfd_get_symtab_upper_bound (abfd);
281 if (storage_needed < 0)
282 error ("Can't read symbols from %s: %s", bfd_get_filename (abfd),
283 bfd_errmsg (bfd_get_error ()));
284 }
285 if (storage_needed > 0)
286 {
287 symbol_table = (asymbol **) xmalloc (storage_needed);
288 back_to = make_cleanup (free, symbol_table);
289 if (dynamic)
290 number_of_symbols = bfd_canonicalize_dynamic_symtab (abfd,
291 symbol_table);
292 else
293 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
294 if (number_of_symbols < 0)
295 error ("Can't read symbols from %s: %s", bfd_get_filename (abfd),
296 bfd_errmsg (bfd_get_error ()));
297 for (i = 0; i < number_of_symbols; i++)
298 {
299 sym = symbol_table[i];
300 if (sym -> name == NULL || *sym -> name == '\0')
301 {
302 /* Skip names that don't exist (shouldn't happen), or names
303 that are null strings (may happen). */
304 continue;
305 }
306
307 if (dynamic
308 && sym -> section == &bfd_und_section
309 && (sym -> flags & BSF_FUNCTION))
310 {
311 struct minimal_symbol *msym;
312
313 /* Symbol is a reference to a function defined in
314 a shared library.
315 If its value is non zero then it is usually the address
316 of the corresponding entry in the procedure linkage table,
317 relative to the base address.
318 If its value is zero then the dynamic linker has to resolve
319 the symbol. We are unable to find any meaningful address
320 for this symbol in the executable file, so we skip it. */
321 symaddr = sym -> value;
322 if (symaddr == 0)
323 continue;
324 symaddr += addr;
325 msym = record_minimal_symbol_and_info
326 ((char *) sym -> name, symaddr,
327 mst_solib_trampoline, NULL, sym -> section, objfile);
328 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
329 if (msym != NULL)
330 msym->filename = filesymname;
331 #endif
332 continue;
333 }
334
335 /* If it is a nonstripped executable, do not enter dynamic
336 symbols, as the dynamic symbol table is usually a subset
337 of the main symbol table. */
338 if (dynamic && !stripped)
339 continue;
340 if (sym -> flags & BSF_FILE)
341 {
342 /* STT_FILE debugging symbol that helps stabs-in-elf debugging.
343 Chain any old one onto the objfile; remember new sym. */
344 if (sectinfo != NULL)
345 {
346 sectinfo -> next = dbx -> stab_section_info;
347 dbx -> stab_section_info = sectinfo;
348 sectinfo = NULL;
349 }
350 filesym = sym;
351 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
352 filesymname =
353 obsavestring ((char *)filesym->name, strlen (filesym->name),
354 &objfile->symbol_obstack);
355 #endif
356 }
357 else if (sym -> flags & (BSF_GLOBAL | BSF_LOCAL | BSF_WEAK))
358 {
359 struct minimal_symbol *msym;
360
361 /* Select global/local/weak symbols. Note that bfd puts abs
362 symbols in their own section, so all symbols we are
363 interested in will have a section. */
364 /* Bfd symbols are section relative. */
365 symaddr = sym -> value + sym -> section -> vma;
366 /* Relocate all non-absolute symbols by base address. */
367 if (sym -> section != &bfd_abs_section)
368 {
369 symaddr += addr;
370 }
371 /* For non-absolute symbols, use the type of the section
372 they are relative to, to intuit text/data. Bfd provides
373 no way of figuring this out for absolute symbols. */
374 if (sym -> section == &bfd_abs_section)
375 {
376 /* This is a hack to get the minimal symbol type
377 right for Irix 5, which has absolute adresses
378 with special section indices for dynamic symbols. */
379 unsigned short shndx =
380 ((elf_symbol_type *) sym)->internal_elf_sym.st_shndx;
381
382 switch (shndx)
383 {
384 case SHN_MIPS_TEXT:
385 ms_type = mst_text;
386 break;
387 case SHN_MIPS_DATA:
388 ms_type = mst_data;
389 break;
390 case SHN_MIPS_ACOMMON:
391 ms_type = mst_bss;
392 break;
393 default:
394 ms_type = mst_abs;
395 }
396
397 /* If it is an Irix dynamic symbol, skip section name
398 symbols, relocate all others. */
399 if (ms_type != mst_abs)
400 {
401 if (sym->name[0] == '.')
402 continue;
403 symaddr += addr;
404 }
405 }
406 else if (sym -> section -> flags & SEC_CODE)
407 {
408 if (sym -> flags & BSF_GLOBAL)
409 {
410 ms_type = mst_text;
411 }
412 else if ((sym->name[0] == '.' && sym->name[1] == 'L')
413 || ((sym -> flags & BSF_LOCAL)
414 && sym->name[0] == '$'
415 && sym->name[1] == 'L'))
416 /* Looks like a compiler-generated label. Skip it.
417 The assembler should be skipping these (to keep
418 executables small), but apparently with gcc on the
419 delta m88k SVR4, it loses. So to have us check too
420 should be harmless (but I encourage people to fix this
421 in the assembler instead of adding checks here). */
422 continue;
423 #ifdef HARRIS_TARGET
424 else if (sym->name[0] == '.' && sym->name[1] == '.')
425 {
426 /* Looks like a Harris compiler generated label for the
427 purpose of marking instructions that are relevant to
428 DWARF dies. The assembler can't get rid of these
429 because they are relocatable addresses that the
430 linker needs to resolve. */
431 continue;
432 }
433 #endif
434 else
435 {
436 ms_type = mst_file_text;
437 }
438 }
439 else if (sym -> section -> flags & SEC_ALLOC)
440 {
441 if (sym -> flags & BSF_GLOBAL)
442 {
443 if (sym -> section -> flags & SEC_LOAD)
444 {
445 ms_type = mst_data;
446 }
447 else
448 {
449 ms_type = mst_bss;
450 }
451 }
452 else if (sym -> flags & BSF_LOCAL)
453 {
454 /* Named Local variable in a Data section. Check its
455 name for stabs-in-elf. The STREQ macro checks the
456 first character inline, so we only actually do a
457 strcmp function call on names that start with 'B'
458 or 'D' */
459 index = SECT_OFF_MAX;
460 if (STREQ ("Bbss.bss", sym -> name))
461 {
462 index = SECT_OFF_BSS;
463 }
464 else if (STREQ ("Ddata.data", sym -> name))
465 {
466 index = SECT_OFF_DATA;
467 }
468 else if (STREQ ("Drodata.rodata", sym -> name))
469 {
470 index = SECT_OFF_RODATA;
471 }
472 if (index != SECT_OFF_MAX)
473 {
474 /* Found a special local symbol. Allocate a
475 sectinfo, if needed, and fill it in. */
476 if (sectinfo == NULL)
477 {
478 sectinfo = (struct stab_section_info *)
479 xmmalloc (objfile -> md, sizeof (*sectinfo));
480 memset ((PTR) sectinfo, 0, sizeof (*sectinfo));
481 if (filesym == NULL)
482 {
483 complain (&section_info_complaint,
484 sym -> name);
485 }
486 else
487 {
488 sectinfo -> filename =
489 (char *) filesym -> name;
490 }
491 }
492 if (sectinfo -> sections[index] != 0)
493 {
494 complain (&section_info_dup_complaint,
495 sectinfo -> filename);
496 }
497 /* Bfd symbols are section relative. */
498 symaddr = sym -> value + sym -> section -> vma;
499 /* Relocate non-absolute symbols by base address. */
500 if (sym -> section != &bfd_abs_section)
501 {
502 symaddr += addr;
503 }
504 sectinfo -> sections[index] = symaddr;
505 /* The special local symbols don't go in the
506 minimal symbol table, so ignore this one. */
507 continue;
508 }
509 /* Not a special stabs-in-elf symbol, do regular
510 symbol processing. */
511 if (sym -> section -> flags & SEC_LOAD)
512 {
513 ms_type = mst_file_data;
514 }
515 else
516 {
517 ms_type = mst_file_bss;
518 }
519 }
520 else
521 {
522 ms_type = mst_unknown;
523 }
524 }
525 else
526 {
527 /* FIXME: Solaris2 shared libraries include lots of
528 odd "absolute" and "undefined" symbols, that play
529 hob with actions like finding what function the PC
530 is in. Ignore them if they aren't text, data, or bss. */
531 /* ms_type = mst_unknown; */
532 continue; /* Skip this symbol. */
533 }
534 /* Pass symbol size field in via BFD. FIXME!!! */
535 size = ((elf_symbol_type *) sym) -> internal_elf_sym.st_size;
536 msym = record_minimal_symbol_and_info
537 ((char *) sym -> name, symaddr,
538 ms_type, (PTR) size, sym -> section, objfile);
539 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
540 if (msym != NULL)
541 msym->filename = filesymname;
542 #endif
543 #ifdef ELF_MAKE_MSYMBOL_SPECIAL
544 ELF_MAKE_MSYMBOL_SPECIAL(sym,msym);
545 #endif
546 }
547 }
548 do_cleanups (back_to);
549 }
550 }
551
552 /* Scan and build partial symbols for a symbol file.
553 We have been initialized by a call to elf_symfile_init, which
554 currently does nothing.
555
556 SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
557 in each section. We simplify it down to a single offset for all
558 symbols. FIXME.
559
560 MAINLINE is true if we are reading the main symbol
561 table (as opposed to a shared lib or dynamically loaded file).
562
563 This function only does the minimum work necessary for letting the
564 user "name" things symbolically; it does not read the entire symtab.
565 Instead, it reads the external and static symbols and puts them in partial
566 symbol tables. When more extensive information is requested of a
567 file, the corresponding partial symbol table is mutated into a full
568 fledged symbol table by going back and reading the symbols
569 for real.
570
571 We look for sections with specific names, to tell us what debug
572 format to look for: FIXME!!!
573
574 dwarf_build_psymtabs() builds psymtabs for DWARF symbols;
575 elfstab_build_psymtabs() handles STABS symbols;
576 mdebug_build_psymtabs() handles ECOFF debugging information.
577
578 Note that ELF files have a "minimal" symbol table, which looks a lot
579 like a COFF symbol table, but has only the minimal information necessary
580 for linking. We process this also, and use the information to
581 build gdb's minimal symbol table. This gives us some minimal debugging
582 capability even for files compiled without -g. */
583
584 static void
585 elf_symfile_read (objfile, section_offsets, mainline)
586 struct objfile *objfile;
587 struct section_offsets *section_offsets;
588 int mainline;
589 {
590 bfd *abfd = objfile->obfd;
591 struct elfinfo ei;
592 struct cleanup *back_to;
593 CORE_ADDR offset;
594
595 init_minimal_symbol_collection ();
596 back_to = make_cleanup ((make_cleanup_func) discard_minimal_symbols, 0);
597
598 memset ((char *) &ei, 0, sizeof (ei));
599
600 /* Allocate struct to keep track of the symfile */
601 objfile->sym_stab_info = (struct dbx_symfile_info *)
602 xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
603 memset ((char *) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
604 make_cleanup (free_elfinfo, (PTR) objfile);
605
606 /* Process the normal ELF symbol table first. This may write some
607 chain of info into the dbx_symfile_info in objfile->sym_stab_info,
608 which can later be used by elfstab_offset_sections. */
609
610 /* FIXME, should take a section_offsets param, not just an offset. */
611 offset = ANOFFSET (section_offsets, 0);
612 elf_symtab_read (abfd, offset, objfile, 0);
613
614 /* Add the dynamic symbols. */
615
616 elf_symtab_read (abfd, offset, objfile, 1);
617
618 /* Now process debugging information, which is contained in
619 special ELF sections. */
620
621 /* If we are reinitializing, or if we have never loaded syms yet,
622 set table to empty. MAINLINE is cleared so that *_read_psymtab
623 functions do not all also re-initialize the psymbol table. */
624 if (mainline)
625 {
626 init_psymbol_list (objfile, 0);
627 mainline = 0;
628 }
629
630 /* We first have to find them... */
631 bfd_map_over_sections (abfd, elf_locate_sections, (PTR) &ei);
632
633 /* ELF debugging information is inserted into the psymtab in the
634 order of least informative first - most informative last. Since
635 the psymtab table is searched `most recent insertion first' this
636 increases the probability that more detailed debug information
637 for a section is found.
638
639 For instance, an object file might contain both .mdebug (XCOFF)
640 and .debug_info (DWARF2) sections then .mdebug is inserted first
641 (searched last) and DWARF2 is inserted last (searched first). If
642 we don't do this then the XCOFF info is found first - for code in
643 an included file XCOFF info is useless. */
644
645 if (ei.mdebugsect)
646 {
647 const struct ecoff_debug_swap *swap;
648
649 /* .mdebug section, presumably holding ECOFF debugging
650 information. */
651 swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
652 if (swap)
653 elfmdebug_build_psymtabs (objfile, swap, ei.mdebugsect,
654 section_offsets);
655 }
656 if (ei.stabsect)
657 {
658 asection *str_sect;
659
660 /* Stab sections have an associated string table that looks like
661 a separate section. */
662 str_sect = bfd_get_section_by_name (abfd, ".stabstr");
663
664 /* FIXME should probably warn about a stab section without a stabstr. */
665 if (str_sect)
666 elfstab_build_psymtabs (objfile,
667 section_offsets,
668 mainline,
669 ei.stabsect->filepos,
670 bfd_section_size (abfd, ei.stabsect),
671 str_sect->filepos,
672 bfd_section_size (abfd, str_sect));
673 }
674 if (dwarf2_has_info (abfd))
675 {
676 /* DWARF 2 sections */
677 dwarf2_build_psymtabs (objfile, section_offsets, mainline);
678 }
679 else if (ei.dboffset && ei.lnoffset)
680 {
681 /* DWARF sections */
682 dwarf_build_psymtabs (objfile,
683 section_offsets, mainline,
684 ei.dboffset, ei.dbsize,
685 ei.lnoffset, ei.lnsize);
686 }
687
688 /* Install any minimal symbols that have been collected as the current
689 minimal symbols for this objfile. */
690
691 install_minimal_symbols (objfile);
692
693 do_cleanups (back_to);
694 }
695
696 /* This cleans up the objfile's sym_stab_info pointer, and the chain of
697 stab_section_info's, that might be dangling from it. */
698
699 static void
700 free_elfinfo (objp)
701 PTR objp;
702 {
703 struct objfile *objfile = (struct objfile *)objp;
704 struct dbx_symfile_info *dbxinfo = objfile->sym_stab_info;
705 struct stab_section_info *ssi, *nssi;
706
707 ssi = dbxinfo->stab_section_info;
708 while (ssi)
709 {
710 nssi = ssi->next;
711 mfree (objfile->md, ssi);
712 ssi = nssi;
713 }
714
715 dbxinfo->stab_section_info = 0; /* Just say No mo info about this. */
716 }
717
718
719 /* Initialize anything that needs initializing when a completely new symbol
720 file is specified (not just adding some symbols from another file, e.g. a
721 shared library).
722
723 We reinitialize buildsym, since we may be reading stabs from an ELF file. */
724
725 static void
726 elf_new_init (ignore)
727 struct objfile *ignore;
728 {
729 stabsread_new_init ();
730 buildsym_new_init ();
731 }
732
733 /* Perform any local cleanups required when we are done with a particular
734 objfile. I.E, we are in the process of discarding all symbol information
735 for an objfile, freeing up all memory held for it, and unlinking the
736 objfile struct from the global list of known objfiles. */
737
738 static void
739 elf_symfile_finish (objfile)
740 struct objfile *objfile;
741 {
742 if (objfile -> sym_stab_info != NULL)
743 {
744 mfree (objfile -> md, objfile -> sym_stab_info);
745 }
746 }
747
748 /* ELF specific initialization routine for reading symbols.
749
750 It is passed a pointer to a struct sym_fns which contains, among other
751 things, the BFD for the file whose symbols are being read, and a slot for
752 a pointer to "private data" which we can fill with goodies.
753
754 For now at least, we have nothing in particular to do, so this function is
755 just a stub. */
756
757 static void
758 elf_symfile_init (objfile)
759 struct objfile *objfile;
760 {
761 /* ELF objects may be reordered, so set OBJF_REORDERED. If we
762 find this causes a significant slowdown in gdb then we could
763 set it in the debug symbol readers only when necessary. */
764 objfile->flags |= OBJF_REORDERED;
765 }
766
767 /* When handling an ELF file that contains Sun STABS debug info,
768 some of the debug info is relative to the particular chunk of the
769 section that was generated in its individual .o file. E.g.
770 offsets to static variables are relative to the start of the data
771 segment *for that module before linking*. This information is
772 painfully squirreled away in the ELF symbol table as local symbols
773 with wierd names. Go get 'em when needed. */
774
775 void
776 elfstab_offset_sections (objfile, pst)
777 struct objfile *objfile;
778 struct partial_symtab *pst;
779 {
780 char *filename = pst->filename;
781 struct dbx_symfile_info *dbx = objfile->sym_stab_info;
782 struct stab_section_info *maybe = dbx->stab_section_info;
783 struct stab_section_info *questionable = 0;
784 int i;
785 char *p;
786
787 /* The ELF symbol info doesn't include path names, so strip the path
788 (if any) from the psymtab filename. */
789 while (0 != (p = strchr (filename, '/')))
790 filename = p+1;
791
792 /* FIXME: This linear search could speed up significantly
793 if it was chained in the right order to match how we search it,
794 and if we unchained when we found a match. */
795 for (; maybe; maybe = maybe->next)
796 {
797 if (filename[0] == maybe->filename[0]
798 && STREQ (filename, maybe->filename))
799 {
800 /* We found a match. But there might be several source files
801 (from different directories) with the same name. */
802 if (0 == maybe->found)
803 break;
804 questionable = maybe; /* Might use it later. */
805 }
806 }
807
808 if (maybe == 0 && questionable != 0)
809 {
810 complain (&stab_info_questionable_complaint, filename);
811 maybe = questionable;
812 }
813
814 if (maybe)
815 {
816 /* Found it! Allocate a new psymtab struct, and fill it in. */
817 maybe->found++;
818 pst->section_offsets = (struct section_offsets *)
819 obstack_alloc (&objfile -> psymbol_obstack,
820 sizeof (struct section_offsets) +
821 sizeof (pst->section_offsets->offsets) * (SECT_OFF_MAX-1));
822
823 for (i = 0; i < SECT_OFF_MAX; i++)
824 ANOFFSET (pst->section_offsets, i) = maybe->sections[i];
825 return;
826 }
827
828 /* We were unable to find any offsets for this file. Complain. */
829 if (dbx->stab_section_info) /* If there *is* any info, */
830 complain (&stab_info_mismatch_complaint, filename);
831 }
832 \f
833 /* Register that we are able to handle ELF object file formats. */
834
835 static struct sym_fns elf_sym_fns =
836 {
837 bfd_target_elf_flavour,
838 elf_new_init, /* sym_new_init: init anything gbl to entire symtab */
839 elf_symfile_init, /* sym_init: read initial info, setup for sym_read() */
840 elf_symfile_read, /* sym_read: read a symbol file into symtab */
841 elf_symfile_finish, /* sym_finish: finished with file, cleanup */
842 default_symfile_offsets,
843 /* sym_offsets: Translate ext. to int. relocation */
844 NULL /* next: pointer to next struct sym_fns */
845 };
846
847 void
848 _initialize_elfread ()
849 {
850 add_symtab_fns (&elf_sym_fns);
851 }
This page took 0.046936 seconds and 4 git commands to generate.