mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 21:34:13 +08:00
* elf32-s390.c (elf_s390_relocate_section): Don't recalculate symbol
section for reloc output and subtract the output section's address from the addend when converting a relocation into one against a section symbol. * elf64-s390.c (elf_s390_relocate_section): Likewise.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2003-11-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
|
||||||
|
|
||||||
|
* elf32-s390.c (elf_s390_relocate_section): Don't recalculate symbol
|
||||||
|
section for reloc output and subtract the output section's address
|
||||||
|
from the addend when converting a relocation into one against a
|
||||||
|
section symbol.
|
||||||
|
* elf64-s390.c (elf_s390_relocate_section): Likewise.
|
||||||
|
|
||||||
2003-11-18 James E Wilson <wilson@specifixinc.com>
|
2003-11-18 James E Wilson <wilson@specifixinc.com>
|
||||||
|
|
||||||
* elfxx-ia64.c (get_fptr): For fptr_rel, use dynobj not abfd.
|
* elfxx-ia64.c (get_fptr): For fptr_rel, use dynobj not abfd.
|
||||||
|
@ -2627,26 +2627,17 @@ elf_s390_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* This symbol is local, or marked to become local. */
|
/* This symbol is local, or marked to become local. */
|
||||||
|
outrel.r_addend = relocation + rel->r_addend;
|
||||||
if (r_type == R_390_32)
|
if (r_type == R_390_32)
|
||||||
{
|
{
|
||||||
relocate = TRUE;
|
relocate = TRUE;
|
||||||
outrel.r_info = ELF32_R_INFO (0, R_390_RELATIVE);
|
outrel.r_info = ELF32_R_INFO (0, R_390_RELATIVE);
|
||||||
outrel.r_addend = relocation + rel->r_addend;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
long sindx;
|
long sindx;
|
||||||
|
|
||||||
if (h == NULL)
|
if (bfd_is_abs_section (sec))
|
||||||
sec = local_sections[r_symndx];
|
|
||||||
else
|
|
||||||
{
|
|
||||||
BFD_ASSERT (h->root.type == bfd_link_hash_defined
|
|
||||||
|| (h->root.type
|
|
||||||
== bfd_link_hash_defweak));
|
|
||||||
sec = h->root.u.def.section;
|
|
||||||
}
|
|
||||||
if (sec != NULL && bfd_is_abs_section (sec))
|
|
||||||
sindx = 0;
|
sindx = 0;
|
||||||
else if (sec == NULL || sec->owner == NULL)
|
else if (sec == NULL || sec->owner == NULL)
|
||||||
{
|
{
|
||||||
@ -2660,9 +2651,16 @@ elf_s390_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
osec = sec->output_section;
|
osec = sec->output_section;
|
||||||
sindx = elf_section_data (osec)->dynindx;
|
sindx = elf_section_data (osec)->dynindx;
|
||||||
BFD_ASSERT (sindx > 0);
|
BFD_ASSERT (sindx > 0);
|
||||||
|
|
||||||
|
/* We are turning this relocation into one
|
||||||
|
against a section symbol, so subtract out
|
||||||
|
the output section's address but not the
|
||||||
|
offset of the input section in the output
|
||||||
|
section. */
|
||||||
|
|
||||||
|
outrel.r_addend -= osec->vma;
|
||||||
}
|
}
|
||||||
outrel.r_info = ELF32_R_INFO (sindx, r_type);
|
outrel.r_info = ELF32_R_INFO (sindx, r_type);
|
||||||
outrel.r_addend = relocation + rel->r_addend;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2606,26 +2606,17 @@ elf_s390_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* This symbol is local, or marked to become local. */
|
/* This symbol is local, or marked to become local. */
|
||||||
|
outrel.r_addend = relocation + rel->r_addend;
|
||||||
if (r_type == R_390_64)
|
if (r_type == R_390_64)
|
||||||
{
|
{
|
||||||
relocate = TRUE;
|
relocate = TRUE;
|
||||||
outrel.r_info = ELF64_R_INFO (0, R_390_RELATIVE);
|
outrel.r_info = ELF64_R_INFO (0, R_390_RELATIVE);
|
||||||
outrel.r_addend = relocation + rel->r_addend;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
long sindx;
|
long sindx;
|
||||||
|
|
||||||
if (h == NULL)
|
if (bfd_is_abs_section (sec))
|
||||||
sec = local_sections[r_symndx];
|
|
||||||
else
|
|
||||||
{
|
|
||||||
BFD_ASSERT (h->root.type == bfd_link_hash_defined
|
|
||||||
|| (h->root.type
|
|
||||||
== bfd_link_hash_defweak));
|
|
||||||
sec = h->root.u.def.section;
|
|
||||||
}
|
|
||||||
if (sec != NULL && bfd_is_abs_section (sec))
|
|
||||||
sindx = 0;
|
sindx = 0;
|
||||||
else if (sec == NULL || sec->owner == NULL)
|
else if (sec == NULL || sec->owner == NULL)
|
||||||
{
|
{
|
||||||
@ -2639,9 +2630,16 @@ elf_s390_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
osec = sec->output_section;
|
osec = sec->output_section;
|
||||||
sindx = elf_section_data (osec)->dynindx;
|
sindx = elf_section_data (osec)->dynindx;
|
||||||
BFD_ASSERT (sindx > 0);
|
BFD_ASSERT (sindx > 0);
|
||||||
|
|
||||||
|
/* We are turning this relocation into one
|
||||||
|
against a section symbol, so subtract out
|
||||||
|
the output section's address but not the
|
||||||
|
offset of the input section in the output
|
||||||
|
section. */
|
||||||
|
|
||||||
|
outrel.r_addend -= osec->vma;
|
||||||
}
|
}
|
||||||
outrel.r_info = ELF64_R_INFO (sindx, r_type);
|
outrel.r_info = ELF64_R_INFO (sindx, r_type);
|
||||||
outrel.r_addend = relocation + rel->r_addend;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user