diff options
author | Alan Modra <amodra@gmail.com> | 2014-12-09 14:32:22 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-12-10 09:55:31 +1030 |
commit | 28dbcedc7b1282b93c3f25c4e42ae71b44e8e2a8 (patch) | |
tree | 6aaf117e0769bdcf3eb2c5a989116b7543928344 /bfd/elfxx-mips.c | |
parent | 4e3272393ff1ab2c07d9fa209d2ae82954f7954c (diff) | |
download | gdb-28dbcedc7b1282b93c3f25c4e42ae71b44e8e2a8.zip gdb-28dbcedc7b1282b93c3f25c4e42ae71b44e8e2a8.tar.gz gdb-28dbcedc7b1282b93c3f25c4e42ae71b44e8e2a8.tar.bz2 |
Don't sort ld -r relocs for mips
HI16/LO16 are deliberately put adjacent, which might mean relocs are
then not sorted by r_offset. See tc-mips.c:mips_frob_file. Don't undo
the HI16/LO16 sorting.
PR 17666
* elf-bfd.h (struct elf_backend_data): Add sort_relocs_p.
* elfxx-target.h (elf_backend_sort_relocs_p): Define.
(elfNN_bed): Init new field.
* elflink.c (elf_link_adjust_relocs): Conditionally sort.
(bfd_elf_final_link): Control sorting of relocs.
* elfxx-mips.c (_bfd_mips_elf_sort_relocs_p): New function.
* elfxx-mips.h (_bfd_mips_elf_sort_relocs_p): Declare.
* elf32-mips.c (elf_backend_sort_relocs_p): Define.
* elf64-mips.c (elf_backend_sort_relocs_p): Define.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 4cf4ac0..8112849 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -11912,6 +11912,18 @@ mips_set_isa_flags (bfd *abfd) } +/* Whether to sort relocs output by ld -r or ld --emit-relocs, by r_offset. + Don't do so for code sections. We want to keep ordering of HI16/LO16 + as is. On the other hand, elf-eh-frame.c processing requires .eh_frame + relocs to be sorted. */ + +bfd_boolean +_bfd_mips_elf_sort_relocs_p (asection *sec) +{ + return (sec->flags & SEC_CODE) == 0; +} + + /* The final processing done just before writing out a MIPS ELF object file. This gets the MIPS architecture right based on the machine number. This is used by both the 32-bit and the 64-bit ABI. */ |