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