diff options
author | Tom de Vries <tdevries@suse.de> | 2024-12-09 18:19:36 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-12-09 18:19:36 +0100 |
commit | 7b46460a619a9b5719d1e79226bf371bbf29c7d2 (patch) | |
tree | 534841a2739c5860513c12601f22ecbcbd8f6821 | |
parent | 4f719a08a8a7c80dbac0854311516e299de178a6 (diff) | |
download | binutils-7b46460a619a9b5719d1e79226bf371bbf29c7d2.zip binutils-7b46460a619a9b5719d1e79226bf371bbf29c7d2.tar.gz binutils-7b46460a619a9b5719d1e79226bf371bbf29c7d2.tar.bz2 |
[gdb/symtab] Apply workaround for PR gas/31115 a bit more
In commit 8a61ee551ce ("[gdb/symtab] Workaround PR gas/31115"), I applied a
workaround for PR gas/31115 in read_func_scope, fixing test-case
gdb.arch/pr25124.exp.
Recently I noticed that the test-case is failing again.
Fix this by factoring out the workaround into a new function fixup_low_high_pc
and applying it in dwarf2_die_base_address.
While we're at it, do the same in dwarf2_record_block_ranges.
Tested on arm-linux with target boards unix/-marm and unix/-mthumb.
Reviewed-By: Alexandra Petlanova Hajkova <ahajkova@redhat.com>
-rw-r--r-- | gdb/dwarf2/read.c | 41 |
1 files changed, 31 insertions, 10 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 5a5e27f..1ae56d3 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -9989,6 +9989,30 @@ check_ada_pragma_import (struct die_info *die, struct dwarf2_cu *cu) return true; } +/* Apply fixups to LOW_PC and HIGH_PC due to an incorrect DIE in CU. */ + +static void +fixup_low_high_pc (struct dwarf2_cu *cu, struct die_info *die, CORE_ADDR *low_pc, + CORE_ADDR *high_pc) +{ + if (die->tag != DW_TAG_subprogram) + return; + + dwarf2_per_objfile *per_objfile = cu->per_objfile; + struct objfile *objfile = per_objfile->objfile; + struct gdbarch *gdbarch = objfile->arch (); + + if (gdbarch_bfd_arch_info (gdbarch)->arch == bfd_arch_arm + && producer_is_gas_ge_2_39 (cu)) + { + /* Gas version 2.39 produces DWARF for a Thumb subprogram with a low_pc + attribute with the thumb bit set (PR gas/31115). Work around this. */ + *low_pc = gdbarch_addr_bits_remove (gdbarch, *low_pc); + if (high_pc != nullptr) + *high_pc = gdbarch_addr_bits_remove (gdbarch, *high_pc); + } +} + static void read_func_scope (struct die_info *die, struct dwarf2_cu *cu) { @@ -10068,15 +10092,7 @@ read_func_scope (struct die_info *die, struct dwarf2_cu *cu) lowpc = per_objfile->relocate (unrel_low); highpc = per_objfile->relocate (unrel_high); - - if (gdbarch_bfd_arch_info (gdbarch)->arch == bfd_arch_arm - && producer_is_gas_ge_2_39 (cu)) - { - /* Gas version 2.39 produces DWARF for a Thumb subprogram with a low_pc - attribute with the thumb bit set (PR gas/31115). Work around this. */ - lowpc = gdbarch_addr_bits_remove (gdbarch, lowpc); - highpc = gdbarch_addr_bits_remove (gdbarch, highpc); - } + fixup_low_high_pc (cu, die, &lowpc, &highpc); /* If we have any template arguments, then we must allocate a different sort of symbol. */ @@ -11336,7 +11352,11 @@ dwarf2_die_base_address (struct die_info *die, struct block *block, struct attribute *attr = dwarf2_attr (die, DW_AT_low_pc, cu); if (attr != nullptr) - return per_objfile->relocate (attr->as_address ()); + { + CORE_ADDR res = per_objfile->relocate (attr->as_address ()); + fixup_low_high_pc (cu, die, &res, nullptr); + return res; + } else if (block->ranges ().size () > 0) return block->ranges ()[0].start (); @@ -11480,6 +11500,7 @@ dwarf2_record_block_ranges (struct die_info *die, struct block *block, CORE_ADDR low = per_objfile->relocate (unrel_low); CORE_ADDR high = per_objfile->relocate (unrel_high); + fixup_low_high_pc (cu, die, &low, &high); cu->get_builder ()->record_block_range (block, low, high - 1); } |