[PATCH] D75151: [ELF] --orphan-handling=: don't warn/error for input SHT_REL[A] retained by --emit-relocs
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 10:34:48 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG37c7f0d9456b: [ELF] --orphan-handling=: don't warn/error for input SHT_REL[A] retained by… (authored by MaskRay).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75151/new/
https://reviews.llvm.org/D75151
Files:
lld/ELF/LinkerScript.cpp
lld/test/ELF/linkerscript/emit-reloc.s
Index: lld/test/ELF/linkerscript/emit-reloc.s
===================================================================
--- lld/test/ELF/linkerscript/emit-reloc.s
+++ lld/test/ELF/linkerscript/emit-reloc.s
@@ -1,9 +1,28 @@
# REQUIRES: x86
+## Test that input SHT_REL[A] retained by --emit-relocs are not matched by input section descriptions.
+
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
# RUN: echo "SECTIONS { .rela.dyn : { *(.rela.data) } }" > %t.script
# RUN: ld.lld --hash-style=sysv -T %t.script --emit-relocs %t.o -o %t.so -shared
# RUN: llvm-readobj -r %t.so | FileCheck %s
+## .rela.data is not listed, but don't error.
+# RUN: echo 'SECTIONS { \
+# RUN: .dynsym : { *(.dynsym) } \
+# RUN: .gnu.hash : { *(.gnu.hash) } \
+# RUN: .hash : { *(.hash) } \
+# RUN: .dynstr : { *(.dynstr) } \
+# RUN: .dynamic : { *(.dynamic) } \
+# RUN: .rela.dyn : { *(.rela.dyn) } \
+# RUN: .text : { *(.text) } \
+# RUN: .data : { *(.data) } \
+# RUN: .comment : { *(.comment) } \
+# RUN: .symtab : { *(.symtab) } \
+# RUN: .shstrtab : { *(.shstrtab) } \
+# RUN: .strtab : { *(.strtab) } \
+# RUN: }' > %t1.script
+# RUN: ld.lld -T %t1.script -shared --emit-relocs %t.o --orphan-handling=error -o /dev/null
+
.data
.quad .foo
Index: lld/ELF/LinkerScript.cpp
===================================================================
--- lld/ELF/LinkerScript.cpp
+++ lld/ELF/LinkerScript.cpp
@@ -730,6 +730,12 @@
void LinkerScript::diagnoseOrphanHandling() const {
for (const InputSectionBase *sec : orphanSections) {
+ // Input SHT_REL[A] retained by --emit-relocs are ignored by
+ // computeInputSections(). Don't warn/error.
+ if (isa<InputSection>(sec) &&
+ cast<InputSection>(sec)->getRelocatedSection())
+ continue;
+
StringRef name = getOutputSectionName(sec);
if (config->orphanHandling == OrphanHandlingPolicy::Error)
error(toString(sec) + " is being placed in '" + name + "'");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75151.246785.patch
Type: text/x-patch
Size: 1965 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200226/9777a8a4/attachment.bin>
More information about the llvm-commits
mailing list