mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 21:34:46 +08:00
bfd/
2005-06-06 H.J. Lu <hongjiu.lu@intel.com> PR 990 * bfd.c (bfd_find_line): New. * dwarf2.c (comp_unit): Add variable_table. (funcinfo): Add file, line, and sec. (varinfo): New. (lookup_symbol_in_function_table): New. (lookup_symbol_in_variable_table): New. (scan_unit_for_functions): Renamed to ... (scan_unit_for_symbols): This. Handle DW_TAG_entry_point and DW_TAG_variable. (comp_unit_find_nearest_line): Updated. (comp_unit_find_line): New. (_bfd_dwarf2_find_line): New. * elf-bfd.h (_bfd_elf_find_line): New. (_bfd_generic_find_line): New. Defined. * elf.c (_bfd_elf_find_line): New. * libbfd-in.h (_bfd_dwarf2_find_line): New. (_bfd_generic_find_line): New. * bfd-in2.h: Regenerated. * libbfd.h: Likewise. * libbfd.c (_bfd_generic_find_line): New. * targets.c (BFD_JUMP_TABLE_SYMBOLS): Initialize _bfd_find_line with _bfd_generic_find_line. (bfd_target): Add _bfd_find_line. binutils/ 2005-06-06 H.J. Lu <hongjiu.lu@intel.com> PR 990 * nm.c (print_symbol): Call bfd_find_line before bfd_find_nearest_line.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2005-06-06 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR 990
|
||||
* nm.c (print_symbol): Call bfd_find_line before
|
||||
bfd_find_nearest_line.
|
||||
|
||||
2005-06-06 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* NEWS: Mention new powerpc ld support.
|
||||
|
@ -905,9 +905,10 @@ print_symbol (bfd *abfd, asymbol *sym, bfd_vma ssize, bfd *archive_bfd)
|
||||
}
|
||||
else if (bfd_get_section (sym)->owner == abfd)
|
||||
{
|
||||
if (bfd_find_nearest_line (abfd, bfd_get_section (sym), syms,
|
||||
sym->value, &filename, &functionname,
|
||||
&lineno)
|
||||
if ((bfd_find_line (abfd, syms, sym, &filename, &lineno)
|
||||
|| bfd_find_nearest_line (abfd, bfd_get_section (sym),
|
||||
syms, sym->value, &filename,
|
||||
&functionname, &lineno))
|
||||
&& filename != NULL
|
||||
&& lineno != 0)
|
||||
printf ("\t%s:%u", filename, lineno);
|
||||
|
Reference in New Issue
Block a user