1 //===- FunctionDumper.h --------------------------------------- *- C++ --*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_FUNCTIONDUMPER_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_FUNCTIONDUMPER_H
13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
19 class FunctionDumper : public PDBSymDumper {
21 FunctionDumper(LinePrinter &P);
23 enum class PointerType { None, Pointer, Reference };
25 void start(const PDBSymbolTypeFunctionSig &Symbol, const char *Name,
27 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
29 void dump(const PDBSymbolTypeArray &Symbol) override;
30 void dump(const PDBSymbolTypeBuiltin &Symbol) override;
31 void dump(const PDBSymbolTypeEnum &Symbol) override;
32 void dump(const PDBSymbolTypeFunctionArg &Symbol) override;
33 void dump(const PDBSymbolTypePointer &Symbol) override;
34 void dump(const PDBSymbolTypeTypedef &Symbol) override;
35 void dump(const PDBSymbolTypeUDT &Symbol) override;