1999-05-03 15:29:11 +08:00
|
|
|
|
/* rddbg.c -- Read debugging information into a generic form.
|
2019-01-01 18:31:27 +08:00
|
|
|
|
Copyright (C) 1995-2019 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
Written by Ian Lance Taylor <ian@cygnus.com>.
|
|
|
|
|
|
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-06 00:54:46 +08:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-05-03 15:29:11 +08:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-08 22:17:41 +08:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2007-07-06 00:54:46 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
/* This file reads debugging information into a generic form. This
|
|
|
|
|
file knows how to dig the debugging information out of an object
|
|
|
|
|
file. */
|
|
|
|
|
|
2007-04-26 22:47:00 +08:00
|
|
|
|
#include "sysdep.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "libiberty.h"
|
2007-04-26 22:47:00 +08:00
|
|
|
|
#include "bucomm.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "budbg.h"
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
static bfd_boolean read_section_stabs_debugging_info
|
2003-09-14 20:20:17 +08:00
|
|
|
|
(bfd *, asymbol **, long, void *, bfd_boolean *);
|
2002-11-30 16:39:46 +08:00
|
|
|
|
static bfd_boolean read_symbol_stabs_debugging_info
|
2003-09-14 20:20:17 +08:00
|
|
|
|
(bfd *, asymbol **, long, void *, bfd_boolean *);
|
|
|
|
|
static void save_stab (int, int, bfd_vma, const char *);
|
|
|
|
|
static void stab_context (void);
|
|
|
|
|
static void free_saved_stabs (void);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* Read debugging information from a BFD. Returns a generic debugging
|
|
|
|
|
pointer. */
|
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
|
void *
|
2008-06-12 19:57:40 +08:00
|
|
|
|
read_debugging_info (bfd *abfd, asymbol **syms, long symcount, bfd_boolean no_messages)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2003-09-14 20:20:17 +08:00
|
|
|
|
void *dhandle;
|
2002-11-30 16:39:46 +08:00
|
|
|
|
bfd_boolean found;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
dhandle = debug_init ();
|
|
|
|
|
if (dhandle == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (! read_section_stabs_debugging_info (abfd, syms, symcount, dhandle,
|
|
|
|
|
&found))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (bfd_get_flavour (abfd) == bfd_target_aout_flavour)
|
|
|
|
|
{
|
|
|
|
|
if (! read_symbol_stabs_debugging_info (abfd, syms, symcount, dhandle,
|
|
|
|
|
&found))
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Try reading the COFF symbols if we didn't find any stabs in COFF
|
|
|
|
|
sections. */
|
|
|
|
|
if (! found
|
|
|
|
|
&& bfd_get_flavour (abfd) == bfd_target_coff_flavour
|
|
|
|
|
&& symcount > 0)
|
|
|
|
|
{
|
|
|
|
|
if (! parse_coff (abfd, syms, symcount, dhandle))
|
|
|
|
|
return NULL;
|
2002-11-30 16:39:46 +08:00
|
|
|
|
found = TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! found)
|
|
|
|
|
{
|
2008-06-12 19:57:40 +08:00
|
|
|
|
if (! no_messages)
|
|
|
|
|
non_fatal (_("%s: no recognized debugging information"),
|
|
|
|
|
bfd_get_filename (abfd));
|
1999-05-03 15:29:11 +08:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dhandle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read stabs in sections debugging information from a BFD. */
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
static bfd_boolean
|
2003-09-14 20:20:17 +08:00
|
|
|
|
read_section_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount,
|
|
|
|
|
void *dhandle, bfd_boolean *pfound)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
static struct
|
|
|
|
|
{
|
|
|
|
|
const char *secname;
|
|
|
|
|
const char *strsecname;
|
2005-12-23 02:11:09 +08:00
|
|
|
|
}
|
|
|
|
|
names[] =
|
|
|
|
|
{
|
|
|
|
|
{ ".stab", ".stabstr" },
|
|
|
|
|
{ "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr" },
|
|
|
|
|
{ "$GDB_SYMBOLS$", "$GDB_STRINGS$" }
|
|
|
|
|
};
|
1999-05-03 15:29:11 +08:00
|
|
|
|
unsigned int i;
|
2003-09-14 20:20:17 +08:00
|
|
|
|
void *shandle;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
*pfound = FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
shandle = NULL;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof names / sizeof names[0]; i++)
|
|
|
|
|
{
|
|
|
|
|
asection *sec, *strsec;
|
|
|
|
|
|
|
|
|
|
sec = bfd_get_section_by_name (abfd, names[i].secname);
|
|
|
|
|
strsec = bfd_get_section_by_name (abfd, names[i].strsecname);
|
|
|
|
|
if (sec != NULL && strsec != NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type stabsize, strsize;
|
|
|
|
|
bfd_byte *stabs, *strings;
|
|
|
|
|
bfd_byte *stab;
|
|
|
|
|
bfd_size_type stroff, next_stroff;
|
|
|
|
|
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 18:55:17 +08:00
|
|
|
|
stabsize = bfd_section_size (sec);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
stabs = (bfd_byte *) xmalloc (stabsize);
|
|
|
|
|
if (! bfd_get_section_contents (abfd, sec, stabs, 0, stabsize))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "%s: %s: %s\n",
|
|
|
|
|
bfd_get_filename (abfd), names[i].secname,
|
|
|
|
|
bfd_errmsg (bfd_get_error ()));
|
2018-07-25 17:56:45 +08:00
|
|
|
|
free (shandle);
|
|
|
|
|
free (stabs);
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
bfd_section_* macros
This large patch removes the unnecessary bfd parameter from various
bfd section macros and functions. The bfd is hardly ever used and if
needed for the bfd_set_section_* or bfd_rename_section functions can
be found via section->owner except for the com, und, abs, and ind
std_section special sections. Those sections shouldn't be modified
anyway.
The patch also removes various bfd_get_section_<field> macros,
replacing their use with bfd_section_<field>, and adds
bfd_set_section_lma. I've also fixed a minor bug in gas where
compressed section renaming was done directly rather than calling
bfd_rename_section. This would have broken bfd_get_section_by_name
and similar functions, but that hardly mattered at such a late stage
in gas processing.
bfd/
* bfd-in.h (bfd_get_section_name, bfd_get_section_vma),
(bfd_get_section_lma, bfd_get_section_alignment),
(bfd_get_section_size, bfd_get_section_flags),
(bfd_get_section_userdata): Delete.
(bfd_section_name, bfd_section_size, bfd_section_vma),
(bfd_section_lma, bfd_section_alignment): Lose bfd parameter.
(bfd_section_flags, bfd_section_userdata): New.
(bfd_is_com_section): Rename parameter.
* section.c (bfd_set_section_userdata, bfd_set_section_vma),
(bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section),
(bfd_set_section_size): Delete bfd parameter, rename section parameter.
(bfd_set_section_lma): New.
* bfd-in2.h: Regenerate.
* mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param,
update callers.
* aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c,
* coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h,
* elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c,
* elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c,
* elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c,
* elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c,
* elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c,
* elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c,
* elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c,
* elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c,
* elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c,
* elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c,
* elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c,
* elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c,
* elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c,
* mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c,
* peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c,
* xcofflink.c: Update throughout for bfd section macro and function
changes.
binutils/
* addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c,
* objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c,
* od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c,
* resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update
throughout for bfd section macro and function changes.
gas/
* as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c,
* read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c,
* config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c,
* config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c,
* config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c,
* config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c,
* config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c,
* config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c,
* config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c,
* config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c,
* config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c,
* config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c,
* config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c,
* config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c,
* config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c,
* config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c,
* config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c,
* config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for
bfd section macro and function changes.
* write.c (compress_debug): Use bfd_rename_section.
gdb/
* aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
* coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
* dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
* exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
* hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
* i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
* maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
* mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
* objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
* ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
* rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
* s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
* solib-spu.c, * solib-svr4.c, * solib-target.c,
* spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
* symmisc.c, * symtab.c, * target.c, * windows-nat.c,
* xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
* mi/mi-interp.c: Update throughout for bfd section macro and
function changes.
* gcore (gcore_create_callback): Use bfd_set_section_lma.
* spu-tdep.c (spu_overlay_new_objfile): Likewise.
gprof/
* corefile.c, * symtab.c: Update throughout for bfd section
macro and function changes.
ld/
* ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c,
* emultempl/aarch64elf.em, * emultempl/aix.em,
* emultempl/armcoff.em, * emultempl/armelf.em,
* emultempl/cr16elf.em, * emultempl/cskyelf.em,
* emultempl/m68hc1xelf.em, * emultempl/m68kelf.em,
* emultempl/mipself.em, * emultempl/mmix-elfnmmo.em,
* emultempl/mmo.em, * emultempl/msp430.em,
* emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em,
* emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update
throughout for bfd section macro and function changes.
libctf/
* ctf-open-bfd.c: Update throughout for bfd section macro changes.
opcodes/
* arc-ext.c: Update throughout for bfd section macro changes.
sim/
* common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c,
* erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c,
* m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c,
* rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c,
* rx/trace.c: Update throughout for bfd section macro changes.
2019-09-16 18:55:17 +08:00
|
|
|
|
strsize = bfd_section_size (strsec);
|
2014-11-13 06:39:58 +08:00
|
|
|
|
strings = (bfd_byte *) xmalloc (strsize + 1);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (! bfd_get_section_contents (abfd, strsec, strings, 0, strsize))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "%s: %s: %s\n",
|
|
|
|
|
bfd_get_filename (abfd), names[i].strsecname,
|
|
|
|
|
bfd_errmsg (bfd_get_error ()));
|
2018-07-25 17:56:45 +08:00
|
|
|
|
free (shandle);
|
|
|
|
|
free (strings);
|
|
|
|
|
free (stabs);
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
2014-11-13 06:39:58 +08:00
|
|
|
|
/* Zero terminate the strings table, just in case. */
|
|
|
|
|
strings [strsize] = 0;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (shandle == NULL)
|
|
|
|
|
{
|
2002-11-30 16:39:46 +08:00
|
|
|
|
shandle = start_stab (dhandle, abfd, TRUE, syms, symcount);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (shandle == NULL)
|
2018-07-25 17:56:45 +08:00
|
|
|
|
{
|
|
|
|
|
free (strings);
|
|
|
|
|
free (stabs);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
*pfound = TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
stroff = 0;
|
|
|
|
|
next_stroff = 0;
|
2014-11-13 06:39:58 +08:00
|
|
|
|
/* PR 17512: file: 078-60391-0.001:0.1. */
|
|
|
|
|
for (stab = stabs; stab <= (stabs + stabsize) - 12; stab += 12)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2000-04-07 12:34:50 +08:00
|
|
|
|
unsigned int strx;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
int type;
|
2010-04-09 22:40:18 +08:00
|
|
|
|
int other ATTRIBUTE_UNUSED;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
int desc;
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
|
|
|
|
|
/* This code presumes 32 bit values. */
|
|
|
|
|
|
|
|
|
|
strx = bfd_get_32 (abfd, stab);
|
|
|
|
|
type = bfd_get_8 (abfd, stab + 4);
|
|
|
|
|
other = bfd_get_8 (abfd, stab + 5);
|
|
|
|
|
desc = bfd_get_16 (abfd, stab + 6);
|
|
|
|
|
value = bfd_get_32 (abfd, stab + 8);
|
|
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Special type 0 stabs indicate the offset to the
|
2002-11-12 07:15:38 +08:00
|
|
|
|
next string table. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
stroff = next_stroff;
|
|
|
|
|
next_stroff += value;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-11-13 06:39:58 +08:00
|
|
|
|
size_t len;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
char *f, *s;
|
|
|
|
|
|
2014-11-13 06:39:58 +08:00
|
|
|
|
if (stroff + strx >= strsize)
|
2000-03-28 09:11:27 +08:00
|
|
|
|
{
|
2014-11-13 06:39:58 +08:00
|
|
|
|
fprintf (stderr, _("%s: %s: stab entry %ld is corrupt, strx = 0x%x, type = %d\n"),
|
2000-03-28 09:11:27 +08:00
|
|
|
|
bfd_get_filename (abfd), names[i].secname,
|
2003-02-04 22:31:04 +08:00
|
|
|
|
(long) (stab - stabs) / 12, strx, type);
|
2000-03-28 09:11:27 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2002-05-23 12:11:57 +08:00
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
|
s = (char *) strings + stroff + strx;
|
2014-11-13 06:39:58 +08:00
|
|
|
|
f = NULL;
|
2002-05-23 12:11:57 +08:00
|
|
|
|
|
2014-11-13 06:39:58 +08:00
|
|
|
|
/* PR 17512: file: 002-87578-0.001:0.1.
|
|
|
|
|
It is possible to craft a file where, without the 'strlen (s) > 0',
|
|
|
|
|
an attempt to read the byte before 'strings' would occur. */
|
|
|
|
|
while ((len = strlen (s)) > 0
|
|
|
|
|
&& s[len - 1] == '\\'
|
1999-05-03 15:29:11 +08:00
|
|
|
|
&& stab + 12 < stabs + stabsize)
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
stab += 12;
|
2014-11-13 06:39:58 +08:00
|
|
|
|
p = s + len - 1;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*p = '\0';
|
2014-11-13 06:39:58 +08:00
|
|
|
|
strx = stroff + bfd_get_32 (abfd, stab);
|
|
|
|
|
if (strx >= strsize)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: %s: stab entry %ld is corrupt\n"),
|
|
|
|
|
bfd_get_filename (abfd), names[i].secname,
|
|
|
|
|
(long) (stab - stabs) / 12);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-07-25 17:56:45 +08:00
|
|
|
|
|
|
|
|
|
s = concat (s, (char *) strings + strx,
|
|
|
|
|
(const char *) NULL);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
/* We have to restore the backslash, because, if
|
2002-11-12 07:15:38 +08:00
|
|
|
|
the linker is hashing stabs strings, we may
|
|
|
|
|
see the same string more than once. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
*p = '\\';
|
|
|
|
|
|
2018-07-25 17:56:45 +08:00
|
|
|
|
free (f);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
f = s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
save_stab (type, desc, value, s);
|
|
|
|
|
|
|
|
|
|
if (! parse_stab (dhandle, shandle, type, desc, value, s))
|
|
|
|
|
{
|
|
|
|
|
stab_context ();
|
|
|
|
|
free_saved_stabs ();
|
2018-07-25 17:56:45 +08:00
|
|
|
|
free (f);
|
|
|
|
|
free (shandle);
|
|
|
|
|
free (stabs);
|
|
|
|
|
free (strings);
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Don't free f, since I think the stabs code
|
2002-11-12 07:15:38 +08:00
|
|
|
|
expects strings to hang around. This should be
|
|
|
|
|
straightened out. FIXME. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free_saved_stabs ();
|
|
|
|
|
free (stabs);
|
|
|
|
|
|
|
|
|
|
/* Don't free strings, since I think the stabs code expects
|
2002-11-12 07:15:38 +08:00
|
|
|
|
the strings to hang around. This should be straightened
|
|
|
|
|
out. FIXME. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (shandle != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (! finish_stab (dhandle, shandle))
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read stabs in the symbol table. */
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
static bfd_boolean
|
2003-09-14 20:20:17 +08:00
|
|
|
|
read_symbol_stabs_debugging_info (bfd *abfd, asymbol **syms, long symcount,
|
|
|
|
|
void *dhandle, bfd_boolean *pfound)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
2003-09-14 20:20:17 +08:00
|
|
|
|
void *shandle;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
asymbol **ps, **symend;
|
|
|
|
|
|
|
|
|
|
shandle = NULL;
|
|
|
|
|
symend = syms + symcount;
|
|
|
|
|
for (ps = syms; ps < symend; ps++)
|
|
|
|
|
{
|
|
|
|
|
symbol_info i;
|
|
|
|
|
|
|
|
|
|
bfd_get_symbol_info (abfd, *ps, &i);
|
|
|
|
|
|
|
|
|
|
if (i.type == '-')
|
|
|
|
|
{
|
|
|
|
|
const char *s;
|
|
|
|
|
char *f;
|
|
|
|
|
|
|
|
|
|
if (shandle == NULL)
|
|
|
|
|
{
|
2002-11-30 16:39:46 +08:00
|
|
|
|
shandle = start_stab (dhandle, abfd, FALSE, syms, symcount);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
if (shandle == NULL)
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
*pfound = TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
|
|
s = i.name;
|
2017-02-14 22:17:09 +08:00
|
|
|
|
if (s == NULL || strlen (s) < 1)
|
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
f = NULL;
|
2017-02-14 22:17:09 +08:00
|
|
|
|
|
2017-07-24 20:49:22 +08:00
|
|
|
|
while (strlen (s) > 0
|
|
|
|
|
&& s[strlen (s) - 1] == '\\'
|
1999-05-03 15:29:11 +08:00
|
|
|
|
&& ps + 1 < symend)
|
|
|
|
|
{
|
|
|
|
|
char *sc, *n;
|
|
|
|
|
|
|
|
|
|
++ps;
|
|
|
|
|
sc = xstrdup (s);
|
|
|
|
|
sc[strlen (sc) - 1] = '\0';
|
|
|
|
|
n = concat (sc, bfd_asymbol_name (*ps), (const char *) NULL);
|
|
|
|
|
free (sc);
|
|
|
|
|
if (f != NULL)
|
|
|
|
|
free (f);
|
|
|
|
|
f = n;
|
|
|
|
|
s = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
save_stab (i.stab_type, i.stab_desc, i.value, s);
|
|
|
|
|
|
|
|
|
|
if (! parse_stab (dhandle, shandle, i.stab_type, i.stab_desc,
|
|
|
|
|
i.value, s))
|
|
|
|
|
{
|
|
|
|
|
stab_context ();
|
|
|
|
|
free_saved_stabs ();
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Don't free f, since I think the stabs code expects
|
|
|
|
|
strings to hang around. This should be straightened out.
|
|
|
|
|
FIXME. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free_saved_stabs ();
|
|
|
|
|
|
|
|
|
|
if (shandle != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (! finish_stab (dhandle, shandle))
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return FALSE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
|
return TRUE;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Record stabs strings, so that we can give some context for errors. */
|
|
|
|
|
|
|
|
|
|
#define SAVE_STABS_COUNT (16)
|
|
|
|
|
|
|
|
|
|
struct saved_stab
|
|
|
|
|
{
|
|
|
|
|
int type;
|
|
|
|
|
int desc;
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
char *string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct saved_stab saved_stabs[SAVE_STABS_COUNT];
|
|
|
|
|
static int saved_stabs_index;
|
|
|
|
|
|
|
|
|
|
/* Save a stabs string. */
|
|
|
|
|
|
|
|
|
|
static void
|
2003-09-14 20:20:17 +08:00
|
|
|
|
save_stab (int type, int desc, bfd_vma value, const char *string)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
if (saved_stabs[saved_stabs_index].string != NULL)
|
|
|
|
|
free (saved_stabs[saved_stabs_index].string);
|
|
|
|
|
saved_stabs[saved_stabs_index].type = type;
|
|
|
|
|
saved_stabs[saved_stabs_index].desc = desc;
|
|
|
|
|
saved_stabs[saved_stabs_index].value = value;
|
|
|
|
|
saved_stabs[saved_stabs_index].string = xstrdup (string);
|
|
|
|
|
saved_stabs_index = (saved_stabs_index + 1) % SAVE_STABS_COUNT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Provide context for an error. */
|
|
|
|
|
|
|
|
|
|
static void
|
2003-09-14 20:20:17 +08:00
|
|
|
|
stab_context (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
fprintf (stderr, _("Last stabs entries before error:\n"));
|
|
|
|
|
fprintf (stderr, "n_type n_desc n_value string\n");
|
|
|
|
|
|
|
|
|
|
i = saved_stabs_index;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
struct saved_stab *stabp;
|
|
|
|
|
|
|
|
|
|
stabp = saved_stabs + i;
|
|
|
|
|
if (stabp->string != NULL)
|
|
|
|
|
{
|
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
|
|
s = bfd_get_stab_name (stabp->type);
|
|
|
|
|
if (s != NULL)
|
|
|
|
|
fprintf (stderr, "%-6s", s);
|
|
|
|
|
else if (stabp->type == 0)
|
|
|
|
|
fprintf (stderr, "HdrSym");
|
|
|
|
|
else
|
|
|
|
|
fprintf (stderr, "%-6d", stabp->type);
|
|
|
|
|
fprintf (stderr, " %-6d ", stabp->desc);
|
|
|
|
|
fprintf_vma (stderr, stabp->value);
|
|
|
|
|
if (stabp->type != 0)
|
|
|
|
|
fprintf (stderr, " %s", stabp->string);
|
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
}
|
|
|
|
|
i = (i + 1) % SAVE_STABS_COUNT;
|
|
|
|
|
}
|
|
|
|
|
while (i != saved_stabs_index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Free the saved stab strings. */
|
|
|
|
|
|
|
|
|
|
static void
|
2003-09-14 20:20:17 +08:00
|
|
|
|
free_saved_stabs (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < SAVE_STABS_COUNT; i++)
|
|
|
|
|
{
|
|
|
|
|
if (saved_stabs[i].string != NULL)
|
|
|
|
|
{
|
|
|
|
|
free (saved_stabs[i].string);
|
|
|
|
|
saved_stabs[i].string = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
saved_stabs_index = 0;
|
|
|
|
|
}
|