llvm-project/lld/test/ELF/wrap-defined.s
Fangrui Song d24b94f070 [ELF] --wrap: retain __wrap_foo if foo is defined in an object/bitcode file
If foo is referenced in any object file, bitcode file or shared object,
`__wrap_foo` should be retained as the redirection target of sym
(f96ff3c0f8ebd941b3f6b345164c3d858b781484).

If the object file defining foo has foo references, we cannot easily distinguish
the case from cases where foo is not referenced (we haven't scanned
relocations). Retain `__wrap_foo` because we choose to wrap sym references
regardless of whether sym is defined to keep non-LTO/LTO/relocatable links' behaviors similar
https://sourceware.org/bugzilla/show_bug.cgi?id=26358 .

If foo is defined in a shared object, `__wrap_foo` can still be omitted
(`wrap-dynamic-undef.s`).

Reviewed By: andrewng

Differential Revision: https://reviews.llvm.org/D95152
2021-01-22 09:20:29 -08:00

34 lines
1.0 KiB
ArmAsm

# REQUIRES: x86
# RUN: rm -rf %t && split-file %s %t
# RUN: llvm-mc -filetype=obj -triple=x86_64 %t/main.s -o %t/main.o
# RUN: llvm-mc -filetype=obj -triple=x86_64 %t/wrap.s -o %t/wrap.o
# RUN: ld.lld -shared --soname=fixed %t/wrap.o -o %t/wrap.so
## GNU ld does not wrap a defined symbol in an object file
## https://sourceware.org/bugzilla/show_bug.cgi?id=26358
## We choose to wrap defined symbols so that LTO, non-LTO and relocatable links
## behave the same. The 'call bar' in main.o will reference __wrap_bar. We cannot
## easily distinguish the case from cases where bar is not referenced, so we
## export __wrap_bar whenever bar is defined, regardless of whether it is indeed
## referenced.
# RUN: ld.lld -shared %t/main.o --wrap bar -o %t1.so
# RUN: llvm-objdump -d %t1.so | FileCheck %s
# RUN: ld.lld %t/main.o %t/wrap.so --wrap bar -o %t1
# RUN: llvm-objdump -d %t1 | FileCheck %s
# CHECK: <_start>:
# CHECK-NEXT: callq {{.*}} <__wrap_bar@plt>
#--- main.s
.globl _start, bar
_start:
call bar
bar:
#--- wrap.s
.globl __wrap_bar
__wrap_bar:
retq