This CL places .dynsym and .dynstr at the beginning of SHF_ALLOC sections. We do this to mitigate the possibility that huge .dynsym and .dynstr sections placed between ro-data and text sections cause relocation overflow. Differential Revision: https://reviews.llvm.org/D45788 llvm-svn: 332374
24 lines
719 B
ArmAsm
24 lines
719 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t
|
|
|
|
# RUN: echo "SECTIONS { .foo 0 : {*(foo)} }" > %t.script
|
|
# RUN: ld.lld --hash-style=sysv -o %t1 --script %t.script %t -shared
|
|
# RUN: llvm-readobj -elf-output-style=GNU -s -l %t1 | FileCheck %s
|
|
|
|
# Test that we create all necessary PT_LOAD. We use to stop at the first
|
|
# non-alloc, causing us to not create PT_LOAD for linker generated sections.
|
|
|
|
# CHECK: Program Headers:
|
|
# CHECK-NEXT: Type
|
|
# CHECK-NEXT: LOAD {{.*}} R E
|
|
# CHECK-NEXT: LOAD {{.*}} RW
|
|
|
|
# CHECK: Section to Segment mapping:
|
|
# CHECK-NEXT: Segment Sections...
|
|
# CHECK-NEXT: 00 .dynsym .dynstr .text .hash
|
|
# CHECK-NEXT: 01 .dynamic
|
|
|
|
nop
|
|
.section foo
|
|
.quad 0
|