[PATCH] D33856: [ELF] Define __dso_handle symbol if needed
Petr Hosek via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 5 13:43:00 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL304732: [ELF] Define __dso_handle symbol if needed (authored by phosek).
Changed prior to commit:
https://reviews.llvm.org/D33856?vs=101454&id=101455#toc
Repository:
rL LLVM
https://reviews.llvm.org/D33856
Files:
lld/trunk/ELF/Writer.cpp
lld/trunk/test/ELF/dso_handle.s
Index: lld/trunk/test/ELF/dso_handle.s
===================================================================
--- lld/trunk/test/ELF/dso_handle.s
+++ lld/trunk/test/ELF/dso_handle.s
@@ -0,0 +1,19 @@
+# REQUIRES: x86
+
+# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
+# RUN: ld.lld -shared %t.o -o %t
+# RUN: llvm-readobj -symbols %t | FileCheck %s
+# CHECK: Name: __dso_handle
+# CHECK-NEXT: Value: 0x0
+# CHECK-NEXT: Size: 0
+# CHECK-NEXT: Binding: Local
+# CHECK-NEXT: Type: None
+# CHECK-NEXT: Other [
+# CHECK-NEXT: STV_HIDDEN
+# CHECK-NEXT: ]
+# CHECK-NEXT: Section: .dynsym
+
+.text
+.global foo, __dso_handle
+foo:
+ lea __dso_handle(%rip),%rax
Index: lld/trunk/ELF/Writer.cpp
===================================================================
--- lld/trunk/ELF/Writer.cpp
+++ lld/trunk/ELF/Writer.cpp
@@ -907,6 +907,11 @@
if (!InX::DynSymTab)
Symtab<ELFT>::X->addIgnored("__tls_get_addr");
+ // __dso_handle symbol is passed to cxa_finalize as a marker to identify
+ // each DSO. The address of the symbol doesn't matter as long as they are
+ // different in different DSOs, so we chose the start address of the DSO.
+ addOptionalRegular<ELFT>("__dso_handle", Out::ElfHeader, 0, STV_HIDDEN);
+
// __ehdr_start is the location of ELF file headers. Note that we define
// this symbol unconditionally even when using a linker script, which
// differs from the behavior implemented by GNU linker which only define
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33856.101455.patch
Type: text/x-patch
Size: 1491 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170605/b57de7e3/attachment.bin>
More information about the llvm-commits
mailing list