aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-10-30 11:40:28 +0000
committerNick Clifton <nickc@redhat.com>2001-10-30 11:40:28 +0000
commitf5ffc9190a633d0f8eb1632a64a28eda75206b55 (patch)
tree00b3b1b0fe4b5a0f8c0b772539f536b28e97a61c
parente0e8c97fe9c3fbbadba39b18b433cb84aa7ac8fc (diff)
downloadfsf-binutils-gdb-f5ffc9190a633d0f8eb1632a64a28eda75206b55.zip
fsf-binutils-gdb-f5ffc9190a633d0f8eb1632a64a28eda75206b55.tar.gz
fsf-binutils-gdb-f5ffc9190a633d0f8eb1632a64a28eda75206b55.tar.bz2
If the LMA for a segment is known, use it for matching sections to segments.
Use the LMA when adjusting for inter-section alignment padding.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/elf.c23
2 files changed, 17 insertions, 10 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 0a131cf..2e4a5d1 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -2,6 +2,10 @@
* elf.c (_bfd_elf_make_section_from_shdr): Set the LMA based on the
p_paddr of the segment that contains it.
+ (copy_private_bfd_data): If the LMA for a segment is known, use it
+ for matching sections to segments.
+ (assign_file_positions_for_segments): Use the LMA when adjusting
+ for inter-section alignment padding.
2001-10-29 Kazu Hirata <kazu@hxi.com>
diff --git a/bfd/elf.c b/bfd/elf.c
index cf51607..c03bd4a 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -3262,10 +3262,10 @@ assign_file_positions_for_segments (abfd)
/* The section may have artificial alignment forced by a
link script. Notice this case by the gap between the
- cumulative phdr vma and the section's vma. */
- if (p->p_vaddr + p->p_memsz < sec->vma)
+ cumulative phdr lma and the section's lma. */
+ if (p->p_paddr + p->p_memsz < sec->lma)
{
- bfd_vma adjust = sec->vma - (p->p_vaddr + p->p_memsz);
+ bfd_vma adjust = sec->lma - (p->p_paddr + p->p_memsz);
p->p_memsz += adjust;
off += adjust;
@@ -3994,16 +3994,19 @@ copy_private_bfd_data (ibfd, obfd)
/* Decide if the given section should be included in the given segment.
A section will be included if:
- 1. It is within the address space of the segment,
+ 1. It is within the address space of the segment -- we use the LMA
+ if that is set for the segment and the VMA otherwise,
2. It is an allocated segment,
3. There is an output section associated with it,
4. The section has not already been allocated to a previous segment. */
-#define INCLUDE_SECTION_IN_SEGMENT(section, segment) \
- ((((IS_CONTAINED_BY_VMA (section, segment) \
- || IS_SOLARIS_PT_INTERP (segment, section)) \
- && (section->flags & SEC_ALLOC) != 0) \
- || IS_COREFILE_NOTE (segment, section)) \
- && section->output_section != NULL \
+#define INCLUDE_SECTION_IN_SEGMENT(section, segment) \
+ (((((segment->p_paddr \
+ ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
+ : IS_CONTAINED_BY_VMA (section, segment)) \
+ || IS_SOLARIS_PT_INTERP (segment, section)) \
+ && (section->flags & SEC_ALLOC) != 0) \
+ || IS_COREFILE_NOTE (segment, section)) \
+ && section->output_section != NULL \
&& section->segment_mark == false)
/* Returns true iff seg1 starts after the end of seg2. */