Files
clang-p2996/lld/test/ELF/linkerscript/expr-sections.test
Fangrui Song 68fa4e8c34 [ELF] Assign RF_EXEC rank even if --no-rosegment or SECTIONS command is used
Summary:
Currently when --no-rosegment is specified or a linker script with SECTIONS command is used,
.rodata (A) .text (AX) are assigned the same rank and .rodata may be placed after .text .
This increases the gap between .text and .bss and can cause pc-relative relocation overflow (e.g. gcc crtbegin.o crtbegin.S have R_X86_64_PC32 relocation from .text to .bss).

This patch makes SingleRoRx affect only segment layout, not section layout. As a consequence, .rodata will be placed before .text regardless of SingleRoRx.

Reviewers: espindola, ruiu, grimar, echristo, javed.absar

Subscribers: emaste, arichardson, llvm-commits

Differential Revision: https://reviews.llvm.org/D48405

llvm-svn: 335627
2018-06-26 17:04:47 +00:00

24 lines
790 B
Plaintext

# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.o
# RUN: ld.lld -o %t.so --script %s %t.o -shared
# RUN: llvm-objdump -t -h %t.so | FileCheck %s
SECTIONS {
. = . + 4;
.text : {
*(.text)
foo1 = ADDR(.text) + 1; bar1 = 1 + ADDR(.text);
foo2 = ADDR(.text) & 1; bar2 = 1 & ADDR(.text);
foo3 = ADDR(.text) | 1; bar3 = 1 | ADDR(.text);
}
};
# CHECK: 5 .text 00000000 000000000000014c
# CHECK: 000000000000014d .text 00000000 foo1
# CHECK: 000000000000014d .text 00000000 bar1
# CHECK: 0000000000000000 .text 00000000 foo2
# CHECK: 0000000000000000 .text 00000000 bar2
# CHECK: 000000000000014d .text 00000000 foo3
# CHECK: 000000000000014d .text 00000000 bar3