[PATCH] D35263: [ELF] - Fix handling of weak symbols from static library when using version script.
George Rimar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 12 04:10:13 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL307767: [ELF] - Fix handling of weak symbols from static library when using version… (authored by grimar).
Changed prior to commit:
https://reviews.llvm.org/D35263?vs=106037&id=106169#toc
Repository:
rL LLVM
https://reviews.llvm.org/D35263
Files:
lld/trunk/ELF/SymbolTable.cpp
lld/trunk/ELF/Symbols.h
lld/trunk/test/ELF/Inputs/version-script-weak.s
lld/trunk/test/ELF/version-script-weak.s
Index: lld/trunk/test/ELF/version-script-weak.s
===================================================================
--- lld/trunk/test/ELF/version-script-weak.s
+++ lld/trunk/test/ELF/version-script-weak.s
@@ -0,0 +1,28 @@
+# 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 %S/Inputs/version-script-weak.s -o %tmp.o
+# RUN: rm -f %t.a
+# RUN: llvm-ar rcs %t.a %tmp.o
+# RUN: echo "{ local: *; };" > %t.script
+# RUN: ld.lld -shared --version-script %t.script %t.o %t.a -o %t.so
+# RUN: llvm-readobj -dyn-symbols -r %t.so | FileCheck %s
+
+# CHECK: Relocations [
+# CHECK-NEXT: Section ({{.*}}) .rela.plt {
+# CHECK-NEXT: 0x2018 R_X86_64_JUMP_SLOT foo
+# CHECK-NEXT: }
+# CHECK-NEXT: ]
+# CHECK: Symbol {
+# CHECK: Name: foo@
+# CHECK-NEXT: Value: 0x0
+# CHECK-NEXT: Size: 0
+# CHECK-NEXT: Binding: Weak
+# CHECK-NEXT: Type: None
+# CHECK-NEXT: Other: 0
+# CHECK-NEXT: Section: Undefined
+# CHECK-NEXT: }
+
+.text
+ callq foo at PLT
+.weak foo
Index: lld/trunk/test/ELF/Inputs/version-script-weak.s
===================================================================
--- lld/trunk/test/ELF/Inputs/version-script-weak.s
+++ lld/trunk/test/ELF/Inputs/version-script-weak.s
@@ -0,0 +1,4 @@
+.text
+.globl foo
+.type foo, at function
+foo:
Index: lld/trunk/ELF/SymbolTable.cpp
===================================================================
--- lld/trunk/ELF/SymbolTable.cpp
+++ lld/trunk/ELF/SymbolTable.cpp
@@ -325,7 +325,7 @@
if (WasInserted)
return 1;
SymbolBody *Body = S->body();
- if (Body->isLazy() || !Body->isInCurrentDSO())
+ if (!Body->isInCurrentDSO())
return 1;
if (Binding == STB_WEAK)
return -1;
Index: lld/trunk/ELF/Symbols.h
===================================================================
--- lld/trunk/ELF/Symbols.h
+++ lld/trunk/ELF/Symbols.h
@@ -65,7 +65,9 @@
return SymbolKind == LazyArchiveKind || SymbolKind == LazyObjectKind;
}
bool isShared() const { return SymbolKind == SharedKind; }
- bool isInCurrentDSO() const { return !isUndefined() && !isShared(); }
+ bool isInCurrentDSO() const {
+ return !isUndefined() && !isShared() && !isLazy();
+ }
bool isLocal() const { return IsLocal; }
bool isPreemptible() const;
StringRef getName() const { return Name; }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35263.106169.patch
Type: text/x-patch
Size: 2358 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170712/5c0ea12c/attachment.bin>
More information about the llvm-commits
mailing list