Index: lld/trunk/ELF/LinkerScript.h =================================================================== --- lld/trunk/ELF/LinkerScript.h +++ lld/trunk/ELF/LinkerScript.h @@ -167,8 +167,6 @@ // "ScriptConfig" is a bit too long, so define a short name for it. ScriptConfiguration &Opt = *ScriptConfig; - void filter(); - int getSectionIndex(StringRef Name); std::vector getPhdrIndices(StringRef SectionName); size_t getPhdrIndex(StringRef PhdrName); Index: lld/trunk/ELF/LinkerScript.cpp =================================================================== --- lld/trunk/ELF/LinkerScript.cpp +++ lld/trunk/ELF/LinkerScript.cpp @@ -216,20 +216,33 @@ } template +static bool matchConstraints(ArrayRef *> Sections, + ConstraintKind Kind) { + bool RO = (Kind == ConstraintKind::ReadOnly); + bool RW = (Kind == ConstraintKind::ReadWrite); + return !llvm::any_of(Sections, [=](InputSectionBase *Sec) { + bool Writable = Sec->getSectionHdr()->sh_flags & SHF_WRITE; + return (RO && Writable) || (RW && !Writable); + }); +} + +template std::vector *> -LinkerScript::createInputSectionList(OutputSectionCommand &Cmd) { +LinkerScript::createInputSectionList(OutputSectionCommand &OutCmd) { std::vector *> Ret; - for (const std::unique_ptr &Base : Cmd.Commands) { - if (auto *Cmd = dyn_cast(Base.get())) { - if (shouldDefine(Cmd)) - addSynthetic(Cmd); - Ret.push_back(new (LAlloc.Allocate()) LayoutInputSection(Cmd)); + for (const std::unique_ptr &Base : OutCmd.Commands) { + if (auto *OutCmd = dyn_cast(Base.get())) { + if (shouldDefine(OutCmd)) + addSynthetic(OutCmd); + Ret.push_back(new (LAlloc.Allocate()) LayoutInputSection(OutCmd)); continue; } auto *Cmd = cast(Base.get()); std::vector *> V = getInputSections(Cmd); + if (!matchConstraints(V, OutCmd.Constraint)) + continue; if (Cmd->SortInner) std::stable_sort(V.begin(), V.end(), getComparator(Cmd->SortInner)); if (Cmd->SortOuter) @@ -283,38 +296,6 @@ OutSec->addSection(S); } } - - // Remove from the output all the sections which did not meet - // the optional constraints. - filter(); -} - -template -static inline void removeElementsIf(R &Range, const T &Pred) { - Range.erase(std::remove_if(Range.begin(), Range.end(), Pred), Range.end()); -} - -// Process ONLY_IF_RO and ONLY_IF_RW. -template void LinkerScript::filter() { - // In this loop, we remove output sections if they don't satisfy - // requested properties. - for (const std::unique_ptr &Base : Opt.Commands) { - auto *Cmd = dyn_cast(Base.get()); - if (!Cmd || Cmd->Name == "/DISCARD/") - continue; - - if (Cmd->Constraint == ConstraintKind::NoConstraint) - continue; - - bool RO = (Cmd->Constraint == ConstraintKind::ReadOnly); - bool RW = (Cmd->Constraint == ConstraintKind::ReadWrite); - - removeElementsIf(*OutputSections, [&](OutputSectionBase *S) { - bool Writable = (S->getFlags() & SHF_WRITE); - return S->getName() == Cmd->Name && - ((RO && Writable) || (RW && !Writable)); - }); - } } template void assignOffsets(OutputSectionBase *Sec) { Index: lld/trunk/test/ELF/linkerscript/linkerscript-multi-sections-constraint.s =================================================================== --- lld/trunk/test/ELF/linkerscript/linkerscript-multi-sections-constraint.s +++ lld/trunk/test/ELF/linkerscript/linkerscript-multi-sections-constraint.s @@ -0,0 +1,26 @@ +# REQUIRES: x86 +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t +# RUN: echo "SECTIONS { \ +# RUN: . = 0x1000; .aaa : ONLY_IF_RO { *(.aaa.*) } \ +# RUN: . = 0x2000; .aaa : ONLY_IF_RW { *(.aaa.*) } } " > %t.script +# RUN: ld.lld -o %t1 --script %t.script %t +# RUN: llvm-objdump -section-headers %t1 | FileCheck %s + +# CHECK: Sections: +# CHECK-NEXT: Idx Name Size Address Type +# CHECK-NEXT: 0 00000000 0000000000000000 +# CHECK-NEXT: 1 .aaa 00000010 0000000000002000 DATA +# CHECK-NEXT: 2 .text 00000001 0000000000002010 TEXT DATA +# CHECK-NEXT: 3 .symtab 00000030 0000000000000000 +# CHECK-NEXT: 4 .shstrtab 00000026 0000000000000000 +# CHECK-NEXT: 5 .strtab 00000008 0000000000000000 + +.global _start +_start: + nop + +.section .aaa.1, "aw" +.quad 1 + +.section .aaa.2, "aw" +.quad 1 Index: lld/trunk/test/ELF/linkerscript/linkerscript-sections-constraint.s =================================================================== --- lld/trunk/test/ELF/linkerscript/linkerscript-sections-constraint.s +++ lld/trunk/test/ELF/linkerscript/linkerscript-sections-constraint.s @@ -13,22 +13,20 @@ # BASE-NEXT: 2 .readable 00000004 0000000000000204 DATA # RUN: echo "SECTIONS { \ -# RUN: .writable : ONLY_IF_RO { *(.writable) } \ -# RUN: .readable : ONLY_IF_RW { *(.readable) }}" > %t.script -# RUN: ld.lld -o %t1 --script %t.script %t -# RUN: llvm-objdump -section-headers %t1 | \ -# RUN: FileCheck -check-prefix=NOSECTIONS %s -# NOSECTIONS: Sections: -# NOSECTIONS-NOT: .writable -# NOSECTIONS-NOT: .readable - -# RUN: echo "SECTIONS { \ -# RUN: .foo : ONLY_IF_RO { *(.foo.*) }}" > %t.script -# RUN: ld.lld -o %t1 --script %t.script %t -# RUN: llvm-objdump -section-headers %t1 | \ -# RUN: FileCheck -check-prefix=NOSECTIONS2 %s -# NOSECTIONS2: Sections: -# NOSECTIONS2-NOT: .foo +# RUN: .foo : ONLY_IF_RO { *(.foo.*) } \ +# RUN: .writable : ONLY_IF_RW { *(.writable) } \ +# RUN: .readable : ONLY_IF_RO { *(.readable) }}" > %t2.script +# RUN: ld.lld -o %t2 --script %t2.script %t +# RUN: llvm-objdump -section-headers %t2 | \ +# RUN: FileCheck -check-prefix=NO1 %s +# NO1: Sections: +# NO1-NEXT: Idx Name Size Address Type +# NO1-NEXT: 0 00000000 0000000000000000 +# NO1-NEXT: 1 .writable 00000004 0000000000000200 DATA +# NO1-NEXT: 2 .readable 00000004 0000000000000204 DATA +# NO1-NEXT: 3 .text 00000001 0000000000000208 TEXT DATA +# NO1-NEXT: 4 .foo.2 00000004 0000000000000209 DATA +# NO1-NEXT: 5 .foo.1 00000004 000000000000020d TEXT DATA .global _start _start: