[lld] 375371c - [ELF] Fix includeInDynsym() when an undefined weak is merged with a lazy definition
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 9 16:24:09 PST 2020
Author: Fangrui Song
Date: 2020-01-09T16:24:02-08:00
New Revision: 375371cc8bff7ba02d0a2203f80de5e640fcadf1
URL: https://github.com/llvm/llvm-project/commit/375371cc8bff7ba02d0a2203f80de5e640fcadf1
DIFF: https://github.com/llvm/llvm-project/commit/375371cc8bff7ba02d0a2203f80de5e640fcadf1.diff
LOG: [ELF] Fix includeInDynsym() when an undefined weak is merged with a lazy definition
An undefined weak does not fetch the lazy definition. A lazy weak symbol
should be considered undefined, and thus preemptible if .dynsym exists.
D71795 is not quite an NFC. It errors on an R_X86_64_PLT32 referencing
an undefined weak symbol. isPreemptible is false (incorrect) => R_PLT_PC
is optimized to R_PC => in isStaticLinkTimeConstant, an error is emitted
when an R_PC is applied on an undefined weak (considered absolute).
Added:
Modified:
lld/ELF/Symbols.cpp
lld/test/ELF/weak-undef-lib.s
Removed:
################################################################################
diff --git a/lld/ELF/Symbols.cpp b/lld/ELF/Symbols.cpp
index a9e3645043fe..f0f6121009a5 100644
--- a/lld/ELF/Symbols.cpp
+++ b/lld/ELF/Symbols.cpp
@@ -277,8 +277,10 @@ bool Symbol::includeInDynsym() const {
return false;
if (computeBinding() == STB_LOCAL)
return false;
+ if (!isDefined() && !isCommon())
+ return true;
- return isUndefined() || isShared() || exportDynamic || inDynamicList;
+ return exportDynamic || inDynamicList;
}
// Print out a log message for --trace-symbol.
diff --git a/lld/test/ELF/weak-undef-lib.s b/lld/test/ELF/weak-undef-lib.s
index 0b4183e80e52..54e05dc7e987 100644
--- a/lld/test/ELF/weak-undef-lib.s
+++ b/lld/test/ELF/weak-undef-lib.s
@@ -6,6 +6,9 @@
# RUN: ld.lld -shared -o %t.so %t1.o --start-lib %t2.o
# RUN: llvm-readobj --dyn-syms %t.so | FileCheck %s
+# RUN: ld.lld -pie -o %t %t1.o --start-lib %t2.o
+# RUN: llvm-readobj --dyn-syms %t | FileCheck %s
+
# CHECK: Name: foo
# CHECK-NEXT: Value: 0x0
# CHECK-NEXT: Size: 0
@@ -15,5 +18,7 @@
# CHECK-NEXT: Section: Undefined
.weak foo
+call foo at PLT
+
.data
.quad foo
More information about the llvm-commits
mailing list