1//===- CompilandDumper.h - llvm-pdbdump compiland symbol dumper *- C++ --*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_TOOLS_LLVMPDBDUMP_COMPILANDDUMPER_H
11#define LLVM_TOOLS_LLVMPDBDUMP_COMPILANDDUMPER_H
12
13#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
14
15namespace llvm {
16
17class LinePrinter;
18
19class CompilandDumper : public PDBSymDumper {
20public:
21  CompilandDumper(LinePrinter &P);
22
23  void start(const PDBSymbolCompiland &Symbol, bool Children);
24
25  void dump(const PDBSymbolCompilandDetails &Symbol) override;
26  void dump(const PDBSymbolCompilandEnv &Symbol) override;
27  void dump(const PDBSymbolData &Symbol) override;
28  void dump(const PDBSymbolFunc &Symbol) override;
29  void dump(const PDBSymbolLabel &Symbol) override;
30  void dump(const PDBSymbolThunk &Symbol) override;
31  void dump(const PDBSymbolTypeTypedef &Symbol) override;
32  void dump(const PDBSymbolUnknown &Symbol) override;
33
34private:
35  LinePrinter &Printer;
36};
37}
38
39#endif
40