(Fixed an issue about GOT on a copy relocated alias.) (Fixed an issue about not creating r_addend=0 IRELATIVE for unreferenced non-preemptible ifunc.) The idea is to make scanRelocations mark some actions are needed (GOT/PLT/etc) and postpone the real work to postScanRelocations. It gives some flexibility: * Make it feasible to support .plt.got (PR32938): we need to know whether GLOB_DAT and JUMP_SLOT are both needed. * Make non-preemptible IFUNC handling slightly cleaner: avoid setting/clearing sym.gotInIgot * -z nocopyrel: report all copy relocation places for one symbol * Make GOT deduplication feasible * Make parallel relocation scanning feasible (if we can avoid all stateful operations and make Symbol attributes atomic), but parallelism may not be the appealing choice Since this patch moves a large chunk of code out of ELFT templates. My x86-64 executable is actually a few hundred bytes smaller. For ppc32-ifunc-nonpreemptible-pic.s: I remove absolute relocation references to non-preemptible ifunc because absolute relocation references are incorrect in -fpie mode. Reviewed By: peter.smith, ikudrin Differential Revision: https://reviews.llvm.org/D114783
23 lines
788 B
ArmAsm
23 lines
788 B
ArmAsm
// REQUIRES: x86
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/relocation-copy.s -o %t2.o
|
|
// RUN: ld.lld -shared %t2.o -o %t.so
|
|
// RUN: not ld.lld -z nocopyreloc %t.o %t.so -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
// CHECK: unresolvable relocation R_X86_64_32S against symbol 'x'
|
|
// CHECK: unresolvable relocation R_X86_64_32S against symbol 'y'
|
|
// CHECK: unresolvable relocation R_X86_64_32S against symbol 'z'
|
|
// CHECK: unresolvable relocation R_X86_64_32 against symbol 'x'
|
|
// CHECK: unresolvable relocation R_X86_64_32 against symbol 'y'
|
|
// CHECK: unresolvable relocation R_X86_64_32 against symbol 'z'
|
|
|
|
.text
|
|
.global _start
|
|
_start:
|
|
movl $5, x
|
|
movl $7, y
|
|
movl $9, z
|
|
movl $x, %edx
|
|
movl $y, %edx
|
|
movl $z, %edx
|