[PATCH] D27335: [ELF] Print file:line for unknown PHDR error
Eugene Leviant via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 2 03:32:11 PST 2016
evgeny777 created this revision.
evgeny777 added reviewers: ruiu, rafael.
evgeny777 added subscribers: grimar, ikudrin, llvm-commits.
evgeny777 set the repository for this revision to rL LLVM.
evgeny777 added a project: lld.
Repository:
rL LLVM
https://reviews.llvm.org/D27335
Files:
ELF/LinkerScript.cpp
ELF/LinkerScript.h
test/ELF/linkerscript/phdrs.s
Index: test/ELF/linkerscript/phdrs.s
===================================================================
--- test/ELF/linkerscript/phdrs.s
+++ test/ELF/linkerscript/phdrs.s
@@ -39,6 +39,14 @@
# RUN: ld.lld -o %t1 --script %t.script %t
# RUN: llvm-readobj -program-headers %t1 | FileCheck --check-prefix=DEFHDR %s
+# RUN: echo "PHDRS {all PT_LOAD FILEHDR PHDRS ;} \
+# RUN: SECTIONS { \
+# RUN: . = 0x10000200; \
+# RUN: .text : {*(.text*)} :all \
+# RUN: .foo : {*(.foo.*)} :foo \
+# RUN: }" > %t.script
+# RUN: not ld.lld -o %t1 --script %t.script %t 2>&1 | FileCheck --check-prefix=BADHDR %s
+
# CHECK: ProgramHeaders [
# CHECK-NEXT: ProgramHeader {
# CHECK-NEXT: Type: PT_LOAD (0x1)
@@ -120,6 +128,8 @@
# DEFHDR-NEXT: PF_X (0x1)
# DEFHDR-NEXT: ]
+# BADHDR: {{.*}}.script:1: section header 'foo' is not listed in PHDRS
+
.global _start
_start:
nop
Index: ELF/LinkerScript.h
===================================================================
--- ELF/LinkerScript.h
+++ ELF/LinkerScript.h
@@ -124,6 +124,7 @@
std::vector<StringRef> Phdrs;
uint32_t Filler = 0;
ConstraintKind Constraint = ConstraintKind::NoConstraint;
+ std::string Location;
};
// This struct represents one section match pattern in SECTIONS() command.
@@ -268,7 +269,7 @@
ScriptConfiguration &Opt = *ScriptConfig;
std::vector<size_t> getPhdrIndices(StringRef SectionName);
- size_t getPhdrIndex(StringRef PhdrName);
+ size_t getPhdrIndex(const Twine &Loc, StringRef PhdrName);
uintX_t Dot;
uintX_t LMAOffset = 0;
Index: ELF/LinkerScript.cpp
===================================================================
--- ELF/LinkerScript.cpp
+++ ELF/LinkerScript.cpp
@@ -972,21 +972,21 @@
std::vector<size_t> Ret;
for (StringRef PhdrName : Cmd->Phdrs)
- Ret.push_back(getPhdrIndex(PhdrName));
+ Ret.push_back(getPhdrIndex(Cmd->Location, PhdrName));
return Ret;
}
return {};
}
template <class ELFT>
-size_t LinkerScript<ELFT>::getPhdrIndex(StringRef PhdrName) {
+size_t LinkerScript<ELFT>::getPhdrIndex(const Twine &Loc, StringRef PhdrName) {
size_t I = 0;
for (PhdrsCommand &Cmd : Opt.PhdrsCommands) {
if (Cmd.Name == PhdrName)
return I;
++I;
}
- error("section header '" + PhdrName + "' is not listed in PHDRS");
+ error(Loc + ": section header '" + PhdrName + "' is not listed in PHDRS");
return 0;
}
@@ -1441,6 +1441,7 @@
OutputSectionCommand *
ScriptParser::readOutputSectionDescription(StringRef OutSec) {
OutputSectionCommand *Cmd = new OutputSectionCommand(OutSec);
+ Cmd->Location = getCurrentLocation();
// Read an address expression.
// https://sourceware.org/binutils/docs/ld/Output-Section-Address.html#Output-Section-Address
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27335.80049.patch
Type: text/x-patch
Size: 2795 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161202/2b378e36/attachment.bin>
More information about the llvm-commits
mailing list