1 //===- VariableDumper.h - PDBSymDumper implementation for types -*- 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_VARIABLEDUMPER_H 11 #define LLVM_TOOLS_LLVMPDBDUMP_VARIABLEDUMPER_H 12 13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h" 14 15 namespace llvm { 16 17 class StringRef; 18 19 namespace pdb { 20 21 class LinePrinter; 22 23 class VariableDumper : public PDBSymDumper { 24 public: 25 VariableDumper(LinePrinter &P); 26 27 void start(const PDBSymbolData &Var); 28 29 void dump(const PDBSymbolTypeBuiltin &Symbol) override; 30 void dump(const PDBSymbolTypeEnum &Symbol) override; 31 void dump(const PDBSymbolTypeFunctionSig &Symbol) override; 32 void dump(const PDBSymbolTypePointer &Symbol) override; 33 void dump(const PDBSymbolTypeTypedef &Symbol) override; 34 void dump(const PDBSymbolTypeUDT &Symbol) override; 35 36 private: 37 void dumpSymbolTypeAndName(const PDBSymbol &Type, StringRef Name); 38 bool tryDumpFunctionPointer(const PDBSymbol &Type, StringRef Name); 39 40 LinePrinter &Printer; 41 }; 42 } 43 } 44 #endif 45