mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 04:27:46 +08:00
* dwarf.c (init_dwarf_regnames_i386, init_dwarf_regnames_x86_64): New.
(init_dwarf_regnames): Use them. * dwarf.h: Declare them. * objdump.c (dump_dwarf): Use bfd_get_arch + bfd_get_mach to set up the regnames, rather than using elf_machine_code.
This commit is contained in:
@ -2349,10 +2349,24 @@ dump_dwarf (bfd *abfd)
|
||||
else
|
||||
abort ();
|
||||
|
||||
if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
||||
switch (bfd_get_arch (abfd))
|
||||
{
|
||||
const struct elf_backend_data *bed = get_elf_backend_data (abfd);
|
||||
init_dwarf_regnames (bed->elf_machine_code);
|
||||
case bfd_arch_i386:
|
||||
switch (bfd_get_mach (abfd))
|
||||
{
|
||||
case bfd_mach_x86_64:
|
||||
case bfd_mach_x86_64_intel_syntax:
|
||||
init_dwarf_regnames_x86_64 ();
|
||||
break;
|
||||
|
||||
default:
|
||||
init_dwarf_regnames_i386 ();
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
bfd_map_over_sections (abfd, dump_dwarf_section, NULL);
|
||||
|
Reference in New Issue
Block a user