2017-02-16 22:36:09 +08:00
|
|
|
# REQUIRES: x86
|
2020-02-26 08:39:31 +08:00
|
|
|
## Test that input SHT_REL[A] retained by --emit-relocs are not matched by input section descriptions.
|
|
|
|
|
2017-02-16 22:36:09 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
|
|
# RUN: echo "SECTIONS { .rela.dyn : { *(.rela.data) } }" > %t.script
|
2017-10-06 17:37:44 +08:00
|
|
|
# RUN: ld.lld --hash-style=sysv -T %t.script --emit-relocs %t.o -o %t.so -shared
|
2017-02-16 22:36:09 +08:00
|
|
|
# RUN: llvm-readobj -r %t.so | FileCheck %s
|
|
|
|
|
2020-02-26 08:39:31 +08:00
|
|
|
## .rela.data is not listed, but don't error.
|
|
|
|
# RUN: echo 'SECTIONS { \
|
|
|
|
# RUN: .dynsym : { *(.dynsym) } \
|
|
|
|
# RUN: .gnu.hash : { *(.gnu.hash) } \
|
|
|
|
# RUN: .hash : { *(.hash) } \
|
|
|
|
# RUN: .dynstr : { *(.dynstr) } \
|
|
|
|
# RUN: .dynamic : { *(.dynamic) } \
|
|
|
|
# RUN: .rela.dyn : { *(.rela.dyn) } \
|
|
|
|
# RUN: .text : { *(.text) } \
|
|
|
|
# RUN: .data : { *(.data) } \
|
|
|
|
# RUN: .comment : { *(.comment) } \
|
|
|
|
# RUN: .symtab : { *(.symtab) } \
|
|
|
|
# RUN: .shstrtab : { *(.shstrtab) } \
|
|
|
|
# RUN: .strtab : { *(.strtab) } \
|
|
|
|
# RUN: }' > %t1.script
|
|
|
|
# RUN: ld.lld -T %t1.script -shared --emit-relocs %t.o --orphan-handling=error -o /dev/null
|
|
|
|
|
2017-02-16 22:36:09 +08:00
|
|
|
.data
|
|
|
|
.quad .foo
|
|
|
|
|
|
|
|
# CHECK: Relocations [
|
|
|
|
# CHECK-NEXT: Section ({{.*}}) .rela.dyn {
|
[ELF] Simplify RelRo, TLS, NOBITS section ranks and make RW PT_LOAD start with RelRo
Old: PT_LOAD(.data | PT_GNU_RELRO(.data.rel.ro .bss.rel.ro) | .bss)
New: PT_LOAD(PT_GNU_RELRO(.data.rel.ro .bss.rel.ro) | .data .bss)
The placement of | indicates page alignment caused by PT_GNU_RELRO. The
new layout has simpler rules and saves space for many cases.
Old size: roundup(.data) + roundup(.data.rel.ro)
New size: roundup(.data.rel.ro + .bss.rel.ro) + .data
Other advantages:
* At runtime the 3 memory mappings decrease to 2.
* start(PT_TLS) = start(PT_GNU_RELRO) = start(RW PT_LOAD). This
simplifies binary manipulation tools.
GNU strip before 2.31 discards PT_GNU_RELRO if its
address is not equal to the start of its associated PT_LOAD.
This has been fixed by https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f2731e0c374e5323ce4cdae2bcc7b7fe22da1a6f
But with this change, we will be compatible with GNU strip before 2.31
* Before, .got.plt (non-relro by default) was placed before .got (relro
by default), which made it impossible to have _GLOBAL_OFFSET_TABLE_
(start of .got.plt on x86-64) equal to the end of .got (R_GOT*_FROM_END)
(https://bugs.llvm.org/show_bug.cgi?id=36555). With the new ordering, we
can improve on this regard if we'd like to.
Reviewers: ruiu, espindola, pcc
Subscribers: emaste, arichardson, llvm-commits, joerg, jdoerfert
Differential Revision: https://reviews.llvm.org/D56828
llvm-svn: 356117
2019-03-14 11:47:45 +08:00
|
|
|
# CHECK-NEXT: 0xF8 R_X86_64_64 .foo 0x0
|
2017-02-16 22:36:09 +08:00
|
|
|
# CHECK-NEXT: }
|
|
|
|
# CHECK-NEXT: Section ({{.*}}) .rela.data {
|
[ELF] Simplify RelRo, TLS, NOBITS section ranks and make RW PT_LOAD start with RelRo
Old: PT_LOAD(.data | PT_GNU_RELRO(.data.rel.ro .bss.rel.ro) | .bss)
New: PT_LOAD(PT_GNU_RELRO(.data.rel.ro .bss.rel.ro) | .data .bss)
The placement of | indicates page alignment caused by PT_GNU_RELRO. The
new layout has simpler rules and saves space for many cases.
Old size: roundup(.data) + roundup(.data.rel.ro)
New size: roundup(.data.rel.ro + .bss.rel.ro) + .data
Other advantages:
* At runtime the 3 memory mappings decrease to 2.
* start(PT_TLS) = start(PT_GNU_RELRO) = start(RW PT_LOAD). This
simplifies binary manipulation tools.
GNU strip before 2.31 discards PT_GNU_RELRO if its
address is not equal to the start of its associated PT_LOAD.
This has been fixed by https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f2731e0c374e5323ce4cdae2bcc7b7fe22da1a6f
But with this change, we will be compatible with GNU strip before 2.31
* Before, .got.plt (non-relro by default) was placed before .got (relro
by default), which made it impossible to have _GLOBAL_OFFSET_TABLE_
(start of .got.plt on x86-64) equal to the end of .got (R_GOT*_FROM_END)
(https://bugs.llvm.org/show_bug.cgi?id=36555). With the new ordering, we
can improve on this regard if we'd like to.
Reviewers: ruiu, espindola, pcc
Subscribers: emaste, arichardson, llvm-commits, joerg, jdoerfert
Differential Revision: https://reviews.llvm.org/D56828
llvm-svn: 356117
2019-03-14 11:47:45 +08:00
|
|
|
# CHECK-NEXT: 0xF8 R_X86_64_64 .foo 0x0
|
2017-02-16 22:36:09 +08:00
|
|
|
# CHECK-NEXT: }
|
|
|
|
# CHECK-NEXT: ]
|