summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2004-09-24 07:07:19 +0000
committerAlan Modra <amodra@bigpond.net.au>2004-09-24 07:07:19 +0000
commit756b0c73ca12f78127658ba739a662a89da178c8 (patch)
tree4a7b2043572935706ec725fc7cfa8dfa7aa34b37
parentfe137abc5ad2eb6bb1f7c628f50c39507bff4e39 (diff)
downloadgdb-756b0c73ca12f78127658ba739a662a89da178c8.tar.gz
bfd/
* dwarf2.c (_bfd_dwarf2_find_nearest_line): Add output section vma and output offset to address. * simple.c (simple_save_output_info): Only set output section and offset for debug sections, or those not already set up by the linker. (bfd_simple_get_relocated_section_contents): Update comment. ld/testsuite/ * ld-elfvsb/elfvsb.exp: Remove file name from "undefined ref" string.
-rw-r--r--bfd/ChangeLog9
-rw-r--r--bfd/dwarf2.c10
-rw-r--r--bfd/simple.c13
3 files changed, 24 insertions, 8 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 8537513db6b..1d9635288d6 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,14 @@
2004-09-24 Alan Modra <amodra@bigpond.net.au>
+ * dwarf2.c (_bfd_dwarf2_find_nearest_line): Add output section
+ vma and output offset to address.
+ * simple.c (simple_save_output_info): Only set output section
+ and offset for debug sections, or those not already set up by
+ the linker.
+ (bfd_simple_get_relocated_section_contents): Update comment.
+
+2004-09-24 Alan Modra <amodra@bigpond.net.au>
+
* elf.c (IS_LOADED): Delete.
(assign_file_positions_for_segments): Just test SEC_LOAD instead.
Restore SEC_HAS_CONTENTS test to the one place it was used prior
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c
index a09265755a0..b1f4ea68854 100644
--- a/bfd/dwarf2.c
+++ b/bfd/dwarf2.c
@@ -1703,13 +1703,19 @@ _bfd_dwarf2_find_nearest_line (bfd *abfd,
We keep a list of all the previously read compilation units, and
a pointer to the next un-read compilation unit. Check the
previously read units before reading more. */
- struct dwarf2_debug *stash = *pinfo;
+ struct dwarf2_debug *stash;
/* What address are we looking for? */
- bfd_vma addr = offset + section->vma;
+ bfd_vma addr;
struct comp_unit* each;
+ stash = *pinfo;
+ addr = offset;
+ if (section->output_section)
+ addr += section->output_section->vma + section->output_offset;
+ else
+ addr += section->vma;
*filename_ptr = NULL;
*functionname_ptr = NULL;
*linenumber_ptr = 0;
diff --git a/bfd/simple.c b/bfd/simple.c
index 5039911dcfd..41aa950955a 100644
--- a/bfd/simple.c
+++ b/bfd/simple.c
@@ -92,8 +92,12 @@ simple_save_output_info (bfd *abfd ATTRIBUTE_UNUSED,
struct saved_output_info *output_info = ptr;
output_info[section->index].offset = section->output_offset;
output_info[section->index].section = section->output_section;
- section->output_offset = 0;
- section->output_section = section;
+ if ((section->flags & SEC_DEBUGGING) != 0
+ || section->output_section == NULL)
+ {
+ section->output_offset = 0;
+ section->output_section = section;
+ }
}
static void
@@ -117,13 +121,10 @@ SYNOPSIS
DESCRIPTION
Returns the relocated contents of section @var{sec}. The symbols in
@var{symbol_table} will be used, or the symbols from @var{abfd} if
- @var{symbol_table} is NULL. The output offsets for all sections will
+ @var{symbol_table} is NULL. The output offsets for debug sections will
be temporarily reset to 0. The result will be stored at @var{outbuf}
or allocated with @code{bfd_malloc} if @var{outbuf} is @code{NULL}.
- Generally all sections in @var{abfd} should have their
- @code{output_section} pointing back to the original section.
-
Returns @code{NULL} on a fatal error; ignores errors applying
particular relocations.
*/