forked from OSchip/llvm-project
[llvm-readobj] Support -needed-libs option for COFF files
This implements the -needed-libs option in the COFF dumper. Differential Revision: https://reviews.llvm.org/D41529 llvm-svn: 321498
This commit is contained in:
parent
428e302f4d
commit
ad6f457c39
Binary file not shown.
|
@ -0,0 +1,5 @@
|
|||
RUN: llvm-readobj -needed-libs %p/Inputs/needed-libs.obj.coff-am64 | FileCheck %s
|
||||
|
||||
CHECK: NeededLibraries [
|
||||
CHECK-NEXT: KERNEL32.dll
|
||||
CHECK-NEXT: ]
|
|
@ -81,6 +81,9 @@ public:
|
|||
void printSymbols() override;
|
||||
void printDynamicSymbols() override;
|
||||
void printUnwindInfo() override;
|
||||
|
||||
void printNeededLibraries() override;
|
||||
|
||||
void printCOFFImports() override;
|
||||
void printCOFFExports() override;
|
||||
void printCOFFDirectives() override;
|
||||
|
@ -1522,6 +1525,25 @@ void COFFDumper::printUnwindInfo() {
|
|||
}
|
||||
}
|
||||
|
||||
void COFFDumper::printNeededLibraries() {
|
||||
ListScope D(W, "NeededLibraries");
|
||||
|
||||
using LibsTy = std::vector<StringRef>;
|
||||
LibsTy Libs;
|
||||
|
||||
for (const ImportDirectoryEntryRef &DirRef : Obj->import_directories()) {
|
||||
StringRef Name;
|
||||
if (!DirRef.getName(Name))
|
||||
Libs.push_back(Name);
|
||||
}
|
||||
|
||||
std::stable_sort(Libs.begin(), Libs.end());
|
||||
|
||||
for (const auto &L : Libs) {
|
||||
outs() << " " << L << "\n";
|
||||
}
|
||||
}
|
||||
|
||||
void COFFDumper::printImportedSymbols(
|
||||
iterator_range<imported_symbol_iterator> Range) {
|
||||
for (const ImportedSymbolRef &I : Range) {
|
||||
|
|
Loading…
Reference in New Issue