2015-01-27 20:46:21 +00:00
|
|
|
//===- llvm-pdbdump.cpp - Dump debug info from a PDB file -------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Dumps debug information present in PDB files. This utility makes use of
|
|
|
|
// the Microsoft Windows SDK, so will not compile or run on non-Windows
|
|
|
|
// platforms.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2015-02-10 22:47:14 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2015-02-10 22:43:25 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
|
|
|
|
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
|
2015-02-13 09:09:03 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSession.h"
|
|
|
|
#include "llvm/DebugInfo/PDB/PDB.h"
|
2015-02-10 22:43:25 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
|
2015-02-13 09:09:03 +00:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
|
2015-01-27 20:46:21 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/ConvertUTF.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2015-02-13 09:09:03 +00:00
|
|
|
#include "llvm/Support/Process.h"
|
2015-01-27 20:46:21 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2015-02-13 09:09:03 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2015-01-27 20:46:21 +00:00
|
|
|
|
2015-02-10 22:47:14 +00:00
|
|
|
#if defined(HAVE_DIA_SDK)
|
2015-02-10 22:43:25 +00:00
|
|
|
#include <Windows.h>
|
2015-02-10 22:47:14 +00:00
|
|
|
#endif
|
2015-01-27 20:46:21 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace opts {
|
2015-02-15 20:27:53 +00:00
|
|
|
|
|
|
|
enum class PDB_DumpType { ByType, ByObjFile, Both };
|
|
|
|
|
2015-01-27 20:46:21 +00:00
|
|
|
cl::list<std::string> InputFilenames(cl::Positional,
|
|
|
|
cl::desc("<input PDB files>"),
|
|
|
|
cl::OneOrMore);
|
|
|
|
|
2015-02-22 21:45:38 +00:00
|
|
|
cl::opt<bool> DumpCompilands("compilands", cl::desc("Display compilands"));
|
|
|
|
cl::opt<bool> DumpSymbols("symbols",
|
|
|
|
cl::desc("Display symbols (implies --compilands"));
|
|
|
|
cl::opt<bool> DumpTypes("types", cl::desc("Display types"));
|
2015-01-27 20:46:21 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 22:43:25 +00:00
|
|
|
static void dumpInput(StringRef Path) {
|
|
|
|
std::unique_ptr<IPDBSession> Session(
|
|
|
|
llvm::createPDBReader(PDB_ReaderType::DIA, Path));
|
|
|
|
if (!Session) {
|
|
|
|
outs() << "Unable to create PDB reader. Check that a valid implementation";
|
|
|
|
outs() << " is available for your platform.";
|
2015-01-27 20:46:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-01-27 22:40:14 +00:00
|
|
|
|
2015-02-10 22:43:25 +00:00
|
|
|
auto GlobalScope(Session->getGlobalScope());
|
2015-02-22 21:45:38 +00:00
|
|
|
PDB_DumpFlags Flags = PDB_DF_None;
|
|
|
|
if (opts::DumpTypes)
|
|
|
|
Flags |= PDB_DF_Children | PDB_DF_Enums | PDB_DF_Funcsigs |
|
|
|
|
PDB_DF_Typedefs | PDB_DF_VTables;
|
2015-02-15 20:27:53 +00:00
|
|
|
GlobalScope->dump(outs(), 0, PDB_DumpLevel::Normal, Flags);
|
|
|
|
outs() << "\n";
|
2015-01-28 00:33:00 +00:00
|
|
|
|
2015-02-22 21:45:38 +00:00
|
|
|
if (opts::DumpSymbols || opts::DumpCompilands) {
|
|
|
|
outs() << "Dumping compilands\n";
|
2015-02-12 21:09:24 +00:00
|
|
|
auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>();
|
2015-02-22 21:45:38 +00:00
|
|
|
Flags = PDB_DF_None;
|
|
|
|
if (opts::DumpSymbols)
|
|
|
|
Flags |= PDB_DF_Children | PDB_DF_Data | PDB_DF_Functions |
|
|
|
|
PDB_DF_Thunks | PDB_DF_Labels;
|
2015-02-12 21:09:24 +00:00
|
|
|
while (auto Compiland = Compilands->getNext()) {
|
2015-02-22 21:45:38 +00:00
|
|
|
Compiland->dump(outs(), 2, PDB_DumpLevel::Detailed, Flags);
|
2015-02-13 07:40:03 +00:00
|
|
|
outs() << "\n";
|
2015-01-28 00:33:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
outs().flush();
|
|
|
|
}
|
|
|
|
|
2015-01-27 20:46:21 +00:00
|
|
|
int main(int argc_, const char *argv_[]) {
|
|
|
|
// Print a stack trace if we signal out.
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
PrettyStackTraceProgram X(argc_, argv_);
|
|
|
|
|
|
|
|
SmallVector<const char *, 256> argv;
|
|
|
|
llvm::SpecificBumpPtrAllocator<char> ArgAllocator;
|
|
|
|
std::error_code EC = llvm::sys::Process::GetArgumentVector(
|
|
|
|
argv, llvm::makeArrayRef(argv_, argc_), ArgAllocator);
|
|
|
|
if (EC) {
|
|
|
|
llvm::errs() << "error: couldn't get arguments: " << EC.message() << '\n';
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
|
|
|
|
cl::ParseCommandLineOptions(argv.size(), argv.data(), "LLVM PDB Dumper\n");
|
|
|
|
|
2015-02-10 22:47:14 +00:00
|
|
|
#if defined(HAVE_DIA_SDK)
|
2015-01-27 20:46:21 +00:00
|
|
|
CoInitializeEx(nullptr, COINIT_MULTITHREADED);
|
2015-02-10 22:47:14 +00:00
|
|
|
#endif
|
2015-01-27 20:46:21 +00:00
|
|
|
|
|
|
|
std::for_each(opts::InputFilenames.begin(), opts::InputFilenames.end(),
|
|
|
|
dumpInput);
|
|
|
|
|
2015-02-10 22:47:14 +00:00
|
|
|
#if defined(HAVE_DIA_SDK)
|
2015-01-27 20:46:21 +00:00
|
|
|
CoUninitialize();
|
2015-02-10 22:47:14 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-27 20:46:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|