diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-06-04 05:58:34 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-06-04 05:58:47 -0700 |
commit | c4b126b87a6cd842e567136b07ac1adca98c660f (patch) | |
tree | d2fc43aad5eabf1e5389b8136c98d2042ec52225 /ld | |
parent | 1cf67587a0980e5fee20cad75f2c1fe01af6e808 (diff) | |
download | gdb-c4b126b87a6cd842e567136b07ac1adca98c660f.zip gdb-c4b126b87a6cd842e567136b07ac1adca98c660f.tar.gz gdb-c4b126b87a6cd842e567136b07ac1adca98c660f.tar.bz2 |
ELF: Don't check relocations in non-loaded, non-alloced sections
Don't do anything special with non-loaded, non-alloced sections.
In particular, any relocs in such sections should not affect GOT
and PLT reference counting (ie. we don't allow them to create GOT
or PLT entries), there's no possibility or desire to optimize TLS
relocs, and there's not much point in propagating relocs to shared
libs that the dynamic linker won't relocate.
Since check_relocs is no longer called on non-loaded, non-alloced
sections, remove SEC_ALLOC check. Resolve relocation in debug section
against symbol defined in shared library to 0.
bfd/
PR ld/26080
* elf-m10300.c (mn10300_elf_relocate_section): Resolve relocation
in debug section against symbol defined in shared library to 0.
* elf32-i386.c (elf_i386_check_relocs): Remove SEC_ALLOC check.
* elf32-lm32.c (lm32_elf_check_relocs): Likewise.
* elf32-m32r.c (m32r_elf_check_relocs): Likewise.
* elf32-nds32.c (nds32_elf_check_relocs): Likewise.
* elf32-nios2.c (nios2_elf32_check_relocs): Likewise.
* elf32-or1k.c (or1k_elf_check_relocs): Likewise.
* elf32-ppc.c (ppc_elf_check_relocs): Likewise.
* elf32-sh.c (sh_elf_check_relocs): Likewise.
* elf32-xtensa.c (elf_xtensa_check_relocs): Likewise.
* elf64-alpha.c (elf64_alpha_check_relocs): Likewise.
* elf64-ppc.c (ppc64_elf_check_relocs): Likewise.
* elf64-x86-64.c (elf_x86_64_check_relocs): Likewise.
* elfxx-mips.c (_bfd_mips_elf_check_relocs): Likewise.
* elf32-vax.c (elf_vax_check_relocs): Set non_got_ref for non-GOT
reference.
(elf_vax_adjust_dynamic_symbol): Generate a copy reloc only if
there is non-GOT reference.
* elflink.c (_bfd_elf_link_check_relocs): Skip non-loaded,
non-alloced sections.
ld/
PR ld/26080
* testsuite/ld-elf/comm-data.exp: Remove copy_reloc.
* testsuite/ld-elf/comm-data2r.rd: Removed.
* testsuite/ld-elf/comm-data2r.sd: Likewise.
* testsuite/ld-elf/comm-data2r.xd: Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 8 | ||||
-rw-r--r-- | ld/testsuite/ld-elf/comm-data.exp | 15 | ||||
-rw-r--r-- | ld/testsuite/ld-elf/comm-data2r.rd | 3 | ||||
-rw-r--r-- | ld/testsuite/ld-elf/comm-data2r.sd | 10 | ||||
-rw-r--r-- | ld/testsuite/ld-elf/comm-data2r.xd | 2 |
5 files changed, 11 insertions, 27 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index d8e7e00..00066c5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,11 @@ +2020-06-04 H.J. Lu <hongjiu.lu@intel.com> + + PR ld/26080 + * testsuite/ld-elf/comm-data.exp: Remove copy_reloc. + * testsuite/ld-elf/comm-data2r.rd: Removed. + * testsuite/ld-elf/comm-data2r.sd: Likewise. + * testsuite/ld-elf/comm-data2r.xd: Likewise. + 2020-06-04 Alan Modra <amodra@gmail.com> * testsuite/config/default.exp: Remove global directive outside diff --git a/ld/testsuite/ld-elf/comm-data.exp b/ld/testsuite/ld-elf/comm-data.exp index a53a771..c735fe2 100644 --- a/ld/testsuite/ld-elf/comm-data.exp +++ b/ld/testsuite/ld-elf/comm-data.exp @@ -79,12 +79,6 @@ setup_xfail "bfin-*-*" setup_xfail "arm*-*-*" "ld/13802" -# List targets here that keep copy relocs rather than eliminating -# them where possible in favour to dynamic relocs in the relevant -# loadable sections; see also the "-z nocopyreloc" command-line -# option and the ELIMINATE_COPY_RELOCS macro some backends use. -set copy_reloc [expr [istarget mn10300-*-*] || [istarget vax-*-*]] - # Verify that a common symbol has been converted to an undefined # reference to the global symbol of the same name defined above # and that the debug reference has been dropped. @@ -95,12 +89,9 @@ run_ld_link_tests [list \ "$AFLAGS" \ { comm-data2.s } \ [list \ - [list readelf -s \ - [expr { $copy_reloc ? "comm-data2r.sd" : "comm-data2.sd"}]] \ - [list readelf -r \ - [expr { $copy_reloc ? "comm-data2r.rd" : "comm-data2.rd"}]] \ - [list readelf "-x .debug_foo" \ - [expr { $copy_reloc ? "comm-data2r.xd" : "comm-data2.xd"}]]] \ + [list readelf -s comm-data2.sd] \ + [list readelf -r comm-data2.rd] \ + [list readelf "-x .debug_foo" comm-data2.xd]] \ "comm-data" \ ] \ [list \ diff --git a/ld/testsuite/ld-elf/comm-data2r.rd b/ld/testsuite/ld-elf/comm-data2r.rd deleted file mode 100644 index 64c0396..0000000 --- a/ld/testsuite/ld-elf/comm-data2r.rd +++ /dev/null @@ -1,3 +0,0 @@ -Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 1 entry: - +Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend -0*12340000 +[0-9a-f]+ +R_.*_COPY +0*12340000 +foo \+ 0 diff --git a/ld/testsuite/ld-elf/comm-data2r.sd b/ld/testsuite/ld-elf/comm-data2r.sd deleted file mode 100644 index 685b0be..0000000 --- a/ld/testsuite/ld-elf/comm-data2r.sd +++ /dev/null @@ -1,10 +0,0 @@ -Symbol table '\.dynsym' contains [0-9]+ entries: - +Num: +Value +Size +Type +Bind +Vis +Ndx +Name -#... - +[0-9]+: +0*12340000 +4 +OBJECT +GLOBAL +DEFAULT +[0-9]+ +foo -#... -Symbol table '\.symtab' contains [0-9]+ entries: - +Num: +Value +Size +Type +Bind +Vis +Ndx +Name -#... - +[0-9]+: +0*12340000 +4 +OBJECT +GLOBAL +DEFAULT +[0-9]+ +foo -#pass diff --git a/ld/testsuite/ld-elf/comm-data2r.xd b/ld/testsuite/ld-elf/comm-data2r.xd deleted file mode 100644 index 58f6f2a..0000000 --- a/ld/testsuite/ld-elf/comm-data2r.xd +++ /dev/null @@ -1,2 +0,0 @@ -Hex dump of section '\.debug_foo': - +0x0*76540000 (?:12340000 00000000|00003412 00000000|00000000 00003412) 00000000 00000000 .* |