Skip to content

Commit

Permalink
[ELF] - Fix for: bug 29115 - linkerscript does not support non-wildca…
Browse files Browse the repository at this point in the history
…rd filename spec.

FreeBSD/mips script has non-wildcard filename specifications:
.text :
{
 start.o(.text*)

Patch adds support for that, this is PR29115.

Differential revision: https://reviews.llvm.org/D23839

llvm-svn: 280069
  • Loading branch information
George Rimar committed Aug 30, 2016
1 parent 7af6452 commit a2496cb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lld/ELF/LinkerScript.cpp
Expand Up @@ -604,9 +604,9 @@ class elf::ScriptParser : public ScriptParserBase {
OutputSectionCommand *readOutputSectionDescription(StringRef OutSec);
std::vector<uint8_t> readOutputSectionFiller();
std::vector<StringRef> readOutputSectionPhdrs();
InputSectionDescription *readInputSectionDescription();
InputSectionDescription *readInputSectionDescription(StringRef Tok);
std::vector<StringRef> readInputFilePatterns();
InputSectionDescription *readInputSectionRules();
InputSectionDescription *readInputSectionRules(StringRef FilePattern);
unsigned readPhdrType();
SortKind readSortKind();
SymbolAssignment *readProvideHidden(bool Provide, bool Hidden);
Expand Down Expand Up @@ -845,9 +845,10 @@ SortKind ScriptParser::readSortKind() {
return SortNone;
}

InputSectionDescription *ScriptParser::readInputSectionRules() {
InputSectionDescription *
ScriptParser::readInputSectionRules(StringRef FilePattern) {
auto *Cmd = new InputSectionDescription;
Cmd->FilePattern = next();
Cmd->FilePattern = FilePattern;
expect("(");

// Read EXCLUDE_FILE().
Expand Down Expand Up @@ -877,19 +878,21 @@ InputSectionDescription *ScriptParser::readInputSectionRules() {
return Cmd;
}

InputSectionDescription *ScriptParser::readInputSectionDescription() {
InputSectionDescription *
ScriptParser::readInputSectionDescription(StringRef Tok) {
// Input section wildcard can be surrounded by KEEP.
// https://sourceware.org/binutils/docs/ld/Input-Section-Keep.html#Input-Section-Keep
if (skip("KEEP")) {
if (Tok == "KEEP") {
expect("(");
InputSectionDescription *Cmd = readInputSectionRules();
StringRef FilePattern = next();
InputSectionDescription *Cmd = readInputSectionRules(FilePattern);
expect(")");
Opt.KeptSections.insert(Opt.KeptSections.end(),
Cmd->SectionPatterns.begin(),
Cmd->SectionPatterns.end());
return Cmd;
}
return readInputSectionRules();
return readInputSectionRules(Tok);
}

void ScriptParser::readSort() {
Expand Down Expand Up @@ -938,16 +941,13 @@ ScriptParser::readOutputSectionDescription(StringRef OutSec) {
expect("{");

while (!Error && !skip("}")) {
if (peek().startswith("*") || peek() == "KEEP") {
Cmd->Commands.emplace_back(readInputSectionDescription());
continue;
}

StringRef Tok = next();
if (SymbolAssignment *Assignment = readProvideOrAssignment(Tok))
Cmd->Commands.emplace_back(Assignment);
else if (Tok == "SORT")
readSort();
else if (peek() == "(")
Cmd->Commands.emplace_back(readInputSectionDescription(Tok));
else
setError("unknown command " + Tok);
}
Expand Down
18 changes: 18 additions & 0 deletions lld/test/ELF/linkerscript/linkerscript-filename-spec.s
Expand Up @@ -33,6 +33,24 @@
# RUN: ld.lld -o %t4 --script %t4.script %tfirst.o %tsecond.o
# RUN: llvm-objdump -s %t4 | FileCheck --check-prefix=SECONDFIRST %s

# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %T/linkerscript-filename-spec1.o
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \
# RUN: %p/Inputs/linkerscript-filename-spec.s -o %T/linkerscript-filename-spec2.o

# RUN: echo "SECTIONS { .foo : { \
# RUN: linkerscript-filename-spec2.o(.foo) \
# RUN: linkerscript-filename-spec1.o(.foo) } }" > %t5.script
# RUN: ld.lld -o %t5 --script %t5.script \
# RUN: %T/linkerscript-filename-spec1.o %T/linkerscript-filename-spec2.o
# RUN: llvm-objdump -s %t5 | FileCheck --check-prefix=SECONDFIRST %s

# RUN: echo "SECTIONS { .foo : { \
# RUN: linkerscript-filename-spec1.o(.foo) \
# RUN: linkerscript-filename-spec2.o(.foo) } }" > %t6.script
# RUN: ld.lld -o %t6 --script %t6.script \
# RUN: %T/linkerscript-filename-spec1.o %T/linkerscript-filename-spec2.o
# RUN: llvm-objdump -s %t6 | FileCheck --check-prefix=FIRSTSECOND %s

.global _start
_start:
nop
Expand Down

0 comments on commit a2496cb

Please sign in to comment.