* Makefile.in (VERSION): Bump to 4.7.4.
[deliverable/binutils-gdb.git] / gdb / elfread.c
CommitLineData
35f5886e 1/* Read ELF (Executable and Linking Format) object files for GDB.
c2e4669f 2 Copyright 1991, 1992 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
21/************************************************************************
22 * *
23 * NOTICE *
24 * *
25 * This file is still under construction. When it is complete, this *
26 * notice will be removed. Until then, direct any questions or changes *
c2e4669f 27 * to Fred Fish at Cygnus Support (fnf@cygnus.com) *
35f5886e
FF
28 * *
29 * FIXME Still needs support for shared libraries. *
30 * FIXME Still needs support for core files. *
31 * FIXME The ".debug" and ".line" section names are hardwired. *
35f5886e
FF
32 * *
33 ************************************************************************/
34
35f5886e 35#include "defs.h"
f5f0679a
SC
36#include "elf/common.h"
37#include "elf/external.h"
38#include "elf/internal.h"
35f5886e 39#include "bfd.h"
f70be3e4 40#include "libbfd.h" /* For bfd_elf_find_section */
35f5886e 41#include "symtab.h"
1ab3bf1b 42#include "symfile.h"
5e2e79f8 43#include "objfiles.h"
be772100 44#include "buildsym.h"
2670f34d 45#include "gdb-stabs.h"
51b80b00 46#include "complaints.h"
740b7efa 47#include <string.h>
2670f34d 48
35f5886e
FF
49#define STREQ(a,b) (strcmp((a),(b))==0)
50
2670f34d
JG
51/* The struct elfinfo is available only during ELF symbol table and
52 psymtab reading. It is destroyed at the complation of psymtab-reading.
53 It's local to elf_symfile_read. */
54
35f5886e 55struct elfinfo {
d5931d79 56 file_ptr dboffset; /* Offset to dwarf debug section */
35f5886e 57 unsigned int dbsize; /* Size of dwarf debug section */
d5931d79 58 file_ptr lnoffset; /* Offset to dwarf line number section */
35f5886e 59 unsigned int lnsize; /* Size of dwarf line number section */
346168a2
JG
60 asection *stabsect; /* Section pointer for .stab section */
61 asection *stabindexsect; /* Section pointer for .stab.index section */
35f5886e
FF
62};
63
2670f34d
JG
64/* Various things we might complain about... */
65
66struct complaint section_info_complaint =
67 {"elf/stab section information %s without a preceding file symbol", 0, 0};
68
69struct complaint section_info_dup_complaint =
70 {"duplicated elf/stab section information for %s", 0, 0};
71
72struct complaint stab_info_mismatch_complaint =
73 {"elf/stab section information missing for %s", 0, 0};
74
75struct complaint stab_info_questionable_complaint =
76 {"elf/stab section information questionable for %s", 0, 0};
77
1ab3bf1b 78static void
80d68b1d 79elf_symfile_init PARAMS ((struct objfile *));
1ab3bf1b
JG
80
81static void
80d68b1d 82elf_new_init PARAMS ((struct objfile *));
1ab3bf1b
JG
83
84static void
2670f34d 85elf_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
80d68b1d
FF
86
87static void
88elf_symfile_finish PARAMS ((struct objfile *));
1ab3bf1b
JG
89
90static void
be772100 91elf_symtab_read PARAMS ((bfd *, CORE_ADDR, struct objfile *));
1ab3bf1b 92
2670f34d
JG
93static void
94free_elfinfo PARAMS ((PTR));
95
96static struct section_offsets *
97elf_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR));
98
51b57ded 99#if 0
1ab3bf1b
JG
100static void
101record_minimal_symbol PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type,
102 struct objfile *));
51b57ded
FF
103#endif
104
105static void
106record_minimal_symbol_and_info PARAMS ((char *, CORE_ADDR,
107 enum minimal_symbol_type, char *,
108 struct objfile *));
1ab3bf1b
JG
109
110static void
111elf_locate_sections PARAMS ((bfd *, asection *, PTR));
112
35f5886e
FF
113/* We are called once per section from elf_symfile_read. We
114 need to examine each section we are passed, check to see
115 if it is something we are interested in processing, and
116 if so, stash away some access information for the section.
117
118 For now we recognize the dwarf debug information sections and
119 line number sections from matching their section names. The
120 ELF definition is no real help here since it has no direct
121 knowledge of DWARF (by design, so any debugging format can be
122 used).
123
346168a2
JG
124 We also recognize the ".stab" sections used by the Sun compilers
125 released with Solaris 2.
126
35f5886e
FF
127 FIXME: The section names should not be hardwired strings. */
128
129static void
be772100
JG
130elf_locate_sections (ignore_abfd, sectp, eip)
131 bfd *ignore_abfd;
1ab3bf1b
JG
132 asection *sectp;
133 PTR eip;
35f5886e 134{
1ab3bf1b
JG
135 register struct elfinfo *ei;
136
137 ei = (struct elfinfo *) eip;
35f5886e
FF
138 if (STREQ (sectp -> name, ".debug"))
139 {
140 ei -> dboffset = sectp -> filepos;
e5849334 141 ei -> dbsize = bfd_get_section_size_before_reloc (sectp);
35f5886e
FF
142 }
143 else if (STREQ (sectp -> name, ".line"))
144 {
145 ei -> lnoffset = sectp -> filepos;
e5849334 146 ei -> lnsize = bfd_get_section_size_before_reloc (sectp);
35f5886e 147 }
346168a2
JG
148 else if (STREQ (sectp -> name, ".stab"))
149 {
150 ei -> stabsect = sectp;
151 }
152 else if (STREQ (sectp -> name, ".stab.index"))
153 {
154 ei -> stabindexsect = sectp;
155 }
35f5886e
FF
156}
157
1ab3bf1b
JG
158#if 0 /* Currently unused */
159
f8b76e70 160char *
1ab3bf1b
JG
161elf_interpreter (abfd)
162 bfd *abfd;
f8b76e70
FF
163{
164 sec_ptr interp_sec;
165 unsigned size;
166 char *interp = NULL;
167
168 interp_sec = bfd_get_section_by_name (abfd, ".interp");
169 if (interp_sec)
170 {
171 size = bfd_section_size (abfd, interp_sec);
172 interp = alloca (size);
173 if (bfd_get_section_contents (abfd, interp_sec, interp, (file_ptr)0,
174 size))
175 {
176 interp = savestring (interp, size - 1);
177 }
178 else
179 {
180 interp = NULL;
181 }
182 }
183 return (interp);
184}
185
1ab3bf1b
JG
186#endif
187
a7446af6
FF
188/*
189
190LOCAL FUNCTION
191
1ab3bf1b 192 record_minimal_symbol -- add entry to minimal symbol table
a7446af6
FF
193
194SYNOPSIS
195
1ab3bf1b 196 static void record_minimal_symbol (char *name, CORE_ADDR address)
a7446af6
FF
197
198DESCRIPTION
199
200 Given a pointer to the name of a symbol that should be added to the
1ab3bf1b
JG
201 minimal symbol table and the address associated with that symbol, records
202 this information for later use in building the minimal symbol table.
a7446af6 203
a7446af6
FF
204 */
205
51b57ded
FF
206#if 0 /* FIXME: Unused */
207
a7446af6 208static void
1ab3bf1b
JG
209record_minimal_symbol (name, address, ms_type, objfile)
210 char *name;
211 CORE_ADDR address;
212 enum minimal_symbol_type ms_type;
213 struct objfile *objfile;
a7446af6 214{
1ab3bf1b
JG
215 name = obsavestring (name, strlen (name), &objfile -> symbol_obstack);
216 prim_record_minimal_symbol (name, address, ms_type);
a7446af6
FF
217}
218
51b57ded
FF
219#endif
220
346168a2
JG
221static void
222record_minimal_symbol_and_info (name, address, ms_type, info, objfile)
223 char *name;
224 CORE_ADDR address;
225 enum minimal_symbol_type ms_type;
226 char *info; /* FIXME, is this really char *? */
227 struct objfile *objfile;
228{
229 name = obsavestring (name, strlen (name), &objfile -> symbol_obstack);
230 prim_record_minimal_symbol_and_info (name, address, ms_type, info);
231}
232
f8b76e70
FF
233/*
234
235LOCAL FUNCTION
236
237 elf_symtab_read -- read the symbol table of an ELF file
238
239SYNOPSIS
240
be772100 241 void elf_symtab_read (bfd *abfd, CORE_ADDR addr,
1ab3bf1b 242 struct objfile *objfile)
f8b76e70
FF
243
244DESCRIPTION
245
246 Given an open bfd, a base address to relocate symbols to, and a
247 flag that specifies whether or not this bfd is for an executable
248 or not (may be shared library for example), add all the global
1ab3bf1b 249 function and data symbols to the minimal symbol table.
f8b76e70 250
2670f34d
JG
251 In stabs-in-ELF, as implemented by Sun, there are some local symbols
252 defined in the ELF symbol table, which can be used to locate
253 the beginnings of sections from each ".o" file that was linked to
254 form the executable objfile. We gather any such info and record it
255 in data structures hung off the objfile's private data.
256
f8b76e70
FF
257*/
258
a7446af6 259static void
be772100 260elf_symtab_read (abfd, addr, objfile)
1ab3bf1b
JG
261 bfd *abfd;
262 CORE_ADDR addr;
1ab3bf1b 263 struct objfile *objfile;
a7446af6
FF
264{
265 unsigned int storage_needed;
266 asymbol *sym;
267 asymbol **symbol_table;
268 unsigned int number_of_symbols;
269 unsigned int i;
2670f34d 270 int index;
a7446af6 271 struct cleanup *back_to;
f8b76e70 272 CORE_ADDR symaddr;
1ab3bf1b 273 enum minimal_symbol_type ms_type;
2670f34d
JG
274 /* If sectinfo is nonzero, it contains section info that should end up
275 filed in the objfile. */
276 struct stab_section_info *sectinfo = 0;
277 /* If filesym is nonzero, it points to a file symbol, but we haven't
278 seen any section info for it yet. */
279 asymbol *filesym = 0;
280 struct dbx_symfile_info *dbx = (struct dbx_symfile_info *)
281 objfile->sym_private;
a7446af6
FF
282
283 storage_needed = get_symtab_upper_bound (abfd);
284
285 if (storage_needed > 0)
286 {
3b0b9220 287 symbol_table = (asymbol **) xmalloc (storage_needed);
a7446af6
FF
288 back_to = make_cleanup (free, symbol_table);
289 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
290
291 for (i = 0; i < number_of_symbols; i++)
292 {
2670f34d 293 sym = symbol_table[i];
d35bf52d
FF
294 /* Select global/weak symbols that are defined in a specific section.
295 Note that bfd now puts abs symbols in their own section, so
296 all symbols we are interested in will have a section. */
297 if ((sym -> flags & (BSF_GLOBAL | BSF_WEAK))
298 && (sym -> section != NULL))
a7446af6 299 {
f8b76e70 300 symaddr = sym -> value;
c2e4669f
JG
301 /* Relocate all non-absolute symbols by base address. */
302 if (sym -> section != &bfd_abs_section)
2670f34d
JG
303 symaddr += addr;
304
f8b76e70
FF
305 /* For non-absolute symbols, use the type of the section
306 they are relative to, to intuit text/data. Bfd provides
307 no way of figuring this out for absolute symbols. */
d35bf52d 308 if (sym -> section -> flags & SEC_CODE)
f8b76e70 309 {
1ab3bf1b 310 ms_type = mst_text;
f8b76e70 311 }
d35bf52d 312 else if (sym -> section -> flags & SEC_DATA)
f8b76e70 313 {
1ab3bf1b 314 ms_type = mst_data;
f8b76e70
FF
315 }
316 else
317 {
4c7c6bab
JG
318 /* FIXME: Solaris2 shared libraries include lots of
319 odd "absolute" and "undefined" symbols, that play
320 hob with actions like finding what function the PC
321 is in. Ignore them if they aren't text or data. */
322 /* ms_type = mst_unknown; */
323 continue; /* Skip this symbol. */
f8b76e70 324 }
346168a2
JG
325 /* Pass symbol size field in via BFD. FIXME!!! */
326 record_minimal_symbol_and_info ((char *) sym -> name,
327 symaddr, ms_type, sym->udata, objfile);
a7446af6 328 }
2670f34d
JG
329
330 /* See if this is a debugging symbol that helps Solaris
331 stabs-in-elf debugging. */
332
333 else if (sym->flags & BSF_FILE)
334 {
335 /* Chain any old one onto the objfile; remember new sym. */
336 if (sectinfo)
337 {
338 sectinfo->next = dbx->stab_section_info;
339 dbx->stab_section_info = sectinfo;
340 sectinfo = 0;
341 }
342 filesym = sym;
343 }
344 else if ((sym->flags & BSF_LOCAL) &&
345 (sym->section) &&
346 (sym->section->flags & SEC_DATA) &&
347 (sym->name))
348 {
349 /* Named Local variable in a Data section. Check its name. */
350 index = -1;
351 switch (sym->name[1])
352 {
353 case 'b':
354 if (!strcmp ("Bbss.bss", sym->name))
355 index = SECT_OFF_BSS;
356 break;
357 case 'd':
358 if (!strcmp ("Ddata.data", sym->name))
359 index = SECT_OFF_DATA;
360 break;
361 case 'r':
362 if (!strcmp ("Drodata.rodata", sym->name))
363 index = SECT_OFF_RODATA;
364 break;
365 }
366 if (index > 0)
367 {
368 /* We have some new info. Allocate a sectinfo, if
369 needed, and fill it in. */
370 if (!sectinfo)
371 {
372 sectinfo = (struct stab_section_info *)
373 xmmalloc (objfile -> md,
374 sizeof (*sectinfo));
375 memset ((PTR) sectinfo, 0, sizeof (*sectinfo));
376 if (!filesym)
51b80b00 377 complain (&section_info_complaint, sym->name);
2670f34d
JG
378 else
379 sectinfo->filename = (char *)filesym->name;
380 }
381 if (sectinfo->sections[index])
51b80b00 382 complain (&section_info_dup_complaint, sectinfo->filename);
2670f34d
JG
383
384 symaddr = sym -> value;
385 /* Relocate all non-absolute symbols by base address. */
386 if (sym -> section != &bfd_abs_section)
387 symaddr += addr;
388 sectinfo->sections[index] = symaddr;
389 }
390 }
a7446af6
FF
391 }
392 do_cleanups (back_to);
393 }
394}
395
35f5886e
FF
396/* Scan and build partial symbols for a symbol file.
397 We have been initialized by a call to elf_symfile_init, which
398 currently does nothing.
399
2670f34d
JG
400 SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
401 in each section. We simplify it down to a single offset for all
402 symbols. FIXME.
35f5886e
FF
403
404 MAINLINE is true if we are reading the main symbol
405 table (as opposed to a shared lib or dynamically loaded file).
406
407 This function only does the minimum work necessary for letting the
408 user "name" things symbolically; it does not read the entire symtab.
409 Instead, it reads the external and static symbols and puts them in partial
410 symbol tables. When more extensive information is requested of a
411 file, the corresponding partial symbol table is mutated into a full
412 fledged symbol table by going back and reading the symbols
346168a2
JG
413 for real.
414
415 We look for sections with specific names, to tell us what debug
416 format to look for: FIXME!!!
417
418 dwarf_build_psymtabs() builds psymtabs for DWARF symbols;
419 elfstab_build_psymtabs() handles STABS symbols.
a7446af6
FF
420
421 Note that ELF files have a "minimal" symbol table, which looks a lot
422 like a COFF symbol table, but has only the minimal information necessary
346168a2
JG
423 for linking. We process this also, and use the information to
424 build gdb's minimal symbol table. This gives us some minimal debugging
425 capability even for files compiled without -g. */
35f5886e
FF
426
427static void
2670f34d 428elf_symfile_read (objfile, section_offsets, mainline)
80d68b1d 429 struct objfile *objfile;
2670f34d 430 struct section_offsets *section_offsets;
1ab3bf1b 431 int mainline;
35f5886e 432{
80d68b1d 433 bfd *abfd = objfile->obfd;
35f5886e 434 struct elfinfo ei;
a7446af6 435 struct cleanup *back_to;
346168a2 436 CORE_ADDR offset;
35f5886e 437
1ab3bf1b
JG
438 init_minimal_symbol_collection ();
439 back_to = make_cleanup (discard_minimal_symbols, 0);
a7446af6 440
2670f34d 441 memset ((char *) &ei, 0, sizeof (ei));
6b801388 442
2670f34d
JG
443 /* Allocate struct to keep track of the symfile */
444 objfile->sym_private = (PTR)
445 xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
446 memset ((char *) objfile->sym_private, 0, sizeof (struct dbx_symfile_info));
447 make_cleanup (free_elfinfo, (PTR) objfile);
6b801388 448
2670f34d
JG
449 /* Process the normal ELF symbol table first. This may write some
450 chain of info into the dbx_symfile_info in objfile->sym_private,
451 which can later be used by elfstab_offset_sections. */
a7446af6 452
2670f34d
JG
453 /* FIXME, should take a section_offsets param, not just an offset. */
454 offset = ANOFFSET (section_offsets, 0);
346168a2 455 elf_symtab_read (abfd, offset, objfile);
a7446af6 456
346168a2 457 /* Now process debugging information, which is contained in
a7446af6
FF
458 special ELF sections. We first have to find them... */
459
1ab3bf1b 460 bfd_map_over_sections (abfd, elf_locate_sections, (PTR) &ei);
35f5886e
FF
461 if (ei.dboffset && ei.lnoffset)
462 {
346168a2 463 /* DWARF sections */
d5931d79 464 dwarf_build_psymtabs (objfile,
2670f34d 465 section_offsets, mainline,
35f5886e 466 ei.dboffset, ei.dbsize,
d5931d79 467 ei.lnoffset, ei.lnsize);
35f5886e 468 }
346168a2
JG
469 if (ei.stabsect)
470 {
471 /* STABS sections */
472
473 /* FIXME: Sun didn't really know how to implement this well.
474 They made .stab sections that don't point to the .stabstr
475 section with the sh_link field. BFD doesn't make string table
476 sections visible to the caller. So we have to search the
477 ELF section table, not the BFD section table, for the string
478 table. */
f70be3e4 479 struct elf_internal_shdr *elf_sect;
346168a2 480
f70be3e4 481 elf_sect = bfd_elf_find_section (abfd, ".stabstr");
346168a2
JG
482 if (elf_sect)
483 elfstab_build_psymtabs (objfile,
2670f34d 484 section_offsets,
346168a2
JG
485 mainline,
486 ei.stabsect->filepos, /* .stab offset */
487 bfd_get_section_size_before_reloc (ei.stabsect),/* .stab size */
d5931d79 488 (file_ptr) elf_sect->sh_offset, /* .stabstr offset */
346168a2
JG
489 elf_sect->sh_size); /* .stabstr size */
490 }
a7446af6 491
1ab3bf1b 492 if (!have_partial_symbols ())
35f5886e
FF
493 {
494 wrap_here ("");
495 printf_filtered ("(no debugging symbols found)...");
496 wrap_here ("");
497 }
a7446af6 498
1ab3bf1b
JG
499 /* Install any minimal symbols that have been collected as the current
500 minimal symbols for this objfile. */
501
80d68b1d 502 install_minimal_symbols (objfile);
1ab3bf1b 503
a7446af6 504 do_cleanups (back_to);
35f5886e
FF
505}
506
2670f34d
JG
507/* This cleans up the objfile's sym_private pointer, and the chain of
508 stab_section_info's, that might be dangling from it. */
509
510static void
511free_elfinfo (objp)
512 PTR objp;
513{
514 struct objfile *objfile = (struct objfile *)objp;
515 struct dbx_symfile_info *dbxinfo = (struct dbx_symfile_info *)
516 objfile->sym_private;
517 struct stab_section_info *ssi, *nssi;
518
519 ssi = dbxinfo->stab_section_info;
520 while (ssi)
521 {
522 nssi = ssi->next;
523 mfree (objfile->md, ssi);
524 ssi = nssi;
525 }
526
527 dbxinfo->stab_section_info = 0; /* Just say No mo info about this. */
528}
529
530
35f5886e
FF
531/* Initialize anything that needs initializing when a completely new symbol
532 file is specified (not just adding some symbols from another file, e.g. a
533 shared library).
534
346168a2 535 We reinitialize buildsym, since we may be reading stabs from an ELF file. */
35f5886e
FF
536
537static void
be772100
JG
538elf_new_init (ignore)
539 struct objfile *ignore;
80d68b1d 540{
d07734e3 541 stabsread_new_init ();
80d68b1d
FF
542 buildsym_new_init ();
543}
544
545/* Perform any local cleanups required when we are done with a particular
546 objfile. I.E, we are in the process of discarding all symbol information
547 for an objfile, freeing up all memory held for it, and unlinking the
548 objfile struct from the global list of known objfiles. */
549
550static void
551elf_symfile_finish (objfile)
552 struct objfile *objfile;
35f5886e 553{
80d68b1d
FF
554 if (objfile -> sym_private != NULL)
555 {
556 mfree (objfile -> md, objfile -> sym_private);
557 }
35f5886e
FF
558}
559
560/* ELF specific initialization routine for reading symbols.
561
562 It is passed a pointer to a struct sym_fns which contains, among other
563 things, the BFD for the file whose symbols are being read, and a slot for
564 a pointer to "private data" which we can fill with goodies.
565
566 For now at least, we have nothing in particular to do, so this function is
567 just a stub. */
568
569static void
be772100
JG
570elf_symfile_init (ignore)
571 struct objfile *ignore;
35f5886e
FF
572{
573}
574
2670f34d
JG
575/* ELF specific parsing routine for section offsets.
576
577 Plain and simple for now. */
578
579static
580struct section_offsets *
581elf_symfile_offsets (objfile, addr)
582 struct objfile *objfile;
583 CORE_ADDR addr;
584{
585 struct section_offsets *section_offsets;
586 int i;
587
588 section_offsets = (struct section_offsets *)
589 obstack_alloc (&objfile -> psymbol_obstack,
590 sizeof (struct section_offsets) +
591 sizeof (section_offsets->offsets) * (SECT_OFF_MAX-1));
592
593 for (i = 0; i < SECT_OFF_MAX; i++)
594 ANOFFSET (section_offsets, i) = addr;
595
596 return section_offsets;
597}
598\f
599/* When handling an ELF file that contains Sun STABS debug info,
600 some of the debug info is relative to the particular chunk of the
601 section that was generated in its individual .o file. E.g.
602 offsets to static variables are relative to the start of the data
603 segment *for that module before linking*. This information is
604 painfully squirreled away in the ELF symbol table as local symbols
605 with wierd names. Go get 'em when needed. */
606
607void
608elfstab_offset_sections (objfile, pst)
609 struct objfile *objfile;
610 struct partial_symtab *pst;
611{
612 char *filename = pst->filename;
613 struct dbx_symfile_info *dbx = (struct dbx_symfile_info *)
614 objfile->sym_private;
615 struct stab_section_info *maybe = dbx->stab_section_info;
616 struct stab_section_info *questionable = 0;
617 int i;
618 char *p;
619
620 /* The ELF symbol info doesn't include path names, so strip the path
621 (if any) from the psymtab filename. */
622 while (0 != (p = strchr (filename, '/')))
623 filename = p+1;
624
625 /* FIXME: This linear search could speed up significantly
626 if it was chained in the right order to match how we search it,
627 and if we unchained when we found a match. */
628 for (; maybe; maybe = maybe->next)
629 {
630 if (filename[0] == maybe->filename[0]
631 && !strcmp (filename, maybe->filename))
632 {
633 /* We found a match. But there might be several source files
634 (from different directories) with the same name. */
635 if (0 == maybe->found)
636 break;
637 questionable = maybe; /* Might use it later. */
638 }
639 }
640
641 if (maybe == 0 && questionable != 0)
642 {
643 complain (&stab_info_questionable_complaint, filename);
644 maybe = questionable;
645 }
646
647 if (maybe)
648 {
649 /* Found it! Allocate a new psymtab struct, and fill it in. */
650 maybe->found++;
651 pst->section_offsets = (struct section_offsets *)
652 obstack_alloc (&objfile -> psymbol_obstack,
653 sizeof (struct section_offsets) +
654 sizeof (pst->section_offsets->offsets) * (SECT_OFF_MAX-1));
655
656 for (i = 0; i < SECT_OFF_MAX; i++)
657 ANOFFSET (pst->section_offsets, i) = maybe->sections[i];
658 return;
659 }
660
661 /* We were unable to find any offsets for this file. Complain. */
662 if (dbx->stab_section_info) /* If there *is* any info, */
663 complain (&stab_info_mismatch_complaint, filename);
664}
35f5886e
FF
665\f
666/* Register that we are able to handle ELF object file formats and DWARF
667 debugging formats.
668
669 Unlike other object file formats, where the debugging information format
670 is implied by the object file format, the ELF object file format and the
671 DWARF debugging information format are two distinct, and potentially
672 separate entities. I.E. it is perfectly possible to have ELF objects
673 with debugging formats other than DWARF. And it is conceivable that the
674 DWARF debugging format might be used with another object file format,
675 like COFF, by simply using COFF's custom section feature.
676
677 GDB, and to a lesser extent BFD, should support the notion of separate
678 object file formats and debugging information formats. For now, we just
679 use "elf" in the same sense as "a.out" or "coff", to imply both the ELF
680 object file format and the DWARF debugging format. */
681
80d68b1d
FF
682static struct sym_fns elf_sym_fns =
683{
35f5886e
FF
684 "elf", /* sym_name: name or name prefix of BFD target type */
685 3, /* sym_namelen: number of significant sym_name chars */
686 elf_new_init, /* sym_new_init: init anything gbl to entire symtab */
687 elf_symfile_init, /* sym_init: read initial info, setup for sym_read() */
688 elf_symfile_read, /* sym_read: read a symbol file into symtab */
80d68b1d 689 elf_symfile_finish, /* sym_finish: finished with file, cleanup */
2670f34d 690 elf_symfile_offsets, /* sym_offsets: Translate ext. to int. relocation */
35f5886e
FF
691 NULL /* next: pointer to next struct sym_fns */
692};
693
694void
1ab3bf1b 695_initialize_elfread ()
35f5886e
FF
696{
697 add_symtab_fns (&elf_sym_fns);
698}
This page took 0.090635 seconds and 4 git commands to generate.