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