Skip to content

Commit

Permalink
COFF: Improve undefined symbol diagnostics.
Browse files Browse the repository at this point in the history
We now report the names of any files containing undefined symbol references.

Differential Revision: http://reviews.llvm.org/D10982

llvm-svn: 241612
  • Loading branch information
pcc committed Jul 7, 2015
1 parent 4bc34b1 commit f5339ec
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
25 changes: 16 additions & 9 deletions lld/COFF/SymbolTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ bool SymbolTable::queueEmpty() {
}

bool SymbolTable::reportRemainingUndefines(bool Resolve) {
bool Ret = false;
llvm::SmallPtrSet<SymbolBody *, 8> Undefs;
for (auto &I : Symtab) {
Symbol *Sym = I.second;
auto *Undef = dyn_cast<Undefined>(Sym->Body);
Expand All @@ -150,17 +150,24 @@ bool SymbolTable::reportRemainingUndefines(bool Resolve) {
continue;
}
}
llvm::errs() << "undefined symbol: " << Name << "\n";
// Remaining undefined symbols are not fatal if /force is specified.
// They are replaced with dummy defined symbols.
if (Config->Force) {
if (Resolve)
Sym->Body = new (Alloc) DefinedAbsolute(Name, 0);
continue;
}
Ret = true;
if (Config->Force && Resolve)
Sym->Body = new (Alloc) DefinedAbsolute(Name, 0);
Undefs.insert(Sym->Body);
}
return Ret;
if (Undefs.empty())
return false;
for (Undefined *U : Config->GCRoot)
if (Undefs.count(U->repl()))
llvm::errs() << "<root>: undefined symbol: " << U->getName() << "\n";
for (std::unique_ptr<InputFile> &File : Files)
if (!isa<ArchiveFile>(File.get()))
for (SymbolBody *Sym : File->getSymbols())
if (Undefs.count(Sym->repl()))
llvm::errs() << File->getShortName() << ": undefined symbol: "
<< Sym->getName() << "\n";
return !Config->Force;
}

void SymbolTable::addLazy(Lazy *New, std::vector<Symbol *> *Accum) {
Expand Down
8 changes: 4 additions & 4 deletions lld/test/COFF/entry-inference.test
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
# RUN: not lld -flavor link2 /out:%t.exe %t.obj > %t.log 2>&1
# RUN: FileCheck -check-prefix=WWINMAIN %s < %t.log

# MAIN: undefined symbol: mainCRTStartup
# WMAIN: undefined symbol: wmainCRTStartup
# WINMAIN: undefined symbol: WinMainCRTStartup
# WWINMAIN: undefined symbol: wWinMainCRTStartup
# MAIN: <root>: undefined symbol: mainCRTStartup
# WMAIN: <root>: undefined symbol: wmainCRTStartup
# WINMAIN: <root>: undefined symbol: WinMainCRTStartup
# WWINMAIN: <root>: undefined symbol: wWinMainCRTStartup

---
header:
Expand Down
2 changes: 1 addition & 1 deletion lld/test/COFF/force.test
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# RUN: lld -flavor link2 /out:%t.exe /entry:main %t.obj /force >& %t.log
# RUN: FileCheck %s < %t.log

# CHECK: undefined symbol: foo
# CHECK: .obj: undefined symbol: foo

---
header:
Expand Down
2 changes: 1 addition & 1 deletion lld/test/COFF/nodefaultlib.test
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

CHECK1: hello64.obj: {{[Nn]}}o such file or directory
CHECK2: hello64: {{[Nn]}}o such file or directory
CHECK3: undefined symbol: MessageBoxA
CHECK3: hello64.obj: undefined symbol: MessageBoxA

# RUN: lld -flavor link2 /libpath:%T /out:%t.exe /entry:main \
# RUN: /subsystem:console hello64.obj /defaultlib:std64.lib
Expand Down

0 comments on commit f5339ec

Please sign in to comment.