//===- DumpOutputStyle.h -------------------------------------- *- C++ --*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLVMPDBDUMP_DUMPOUTPUTSTYLE_H #define LLVM_TOOLS_LLVMPDBDUMP_DUMPOUTPUTSTYLE_H #include "LinePrinter.h" #include "OutputStyle.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/SmallVector.h" #include namespace llvm { class BitVector; namespace codeview { class LazyRandomTypeCollection; } namespace pdb { class DumpOutputStyle : public OutputStyle { public: DumpOutputStyle(PDBFile &File); Error dump() override; private: Expected initializeTypes(uint32_t SN); Error dumpFileSummary(); Error dumpStreamSummary(); Error dumpStringTable(); Error dumpLines(); Error dumpInlineeLines(); Error dumpXmi(); Error dumpXme(); Error dumpTpiStream(uint32_t StreamIdx); Error dumpModules(); Error dumpModuleFiles(); Error dumpModuleSyms(); Error dumpPublics(); Error dumpSectionContribs(); Error dumpSectionMap(); PDBFile &File; LinePrinter P; std::unique_ptr TpiTypes; std::unique_ptr IpiTypes; SmallVector StreamPurposes; }; } // namespace pdb } // namespace llvm #endif