2015-02-23 06:58:34 +01:00
|
|
|
//===- VariableDumper.h - PDBSymDumper implementation for types -*- 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_VARIABLEDUMPER_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_VARIABLEDUMPER_H
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2016-04-18 11:17:29 +02:00
|
|
|
class StringRef;
|
2016-05-04 22:32:13 +02:00
|
|
|
|
|
|
|
namespace pdb {
|
|
|
|
|
2015-02-27 10:15:59 +01:00
|
|
|
class LinePrinter;
|
|
|
|
|
2015-02-23 06:58:34 +01:00
|
|
|
class VariableDumper : public PDBSymDumper {
|
|
|
|
public:
|
2015-02-27 10:15:59 +01:00
|
|
|
VariableDumper(LinePrinter &P);
|
2015-02-23 06:58:34 +01:00
|
|
|
|
2015-03-01 07:51:29 +01:00
|
|
|
void start(const PDBSymbolData &Var);
|
|
|
|
|
|
|
|
void dump(const PDBSymbolTypeBuiltin &Symbol) override;
|
|
|
|
void dump(const PDBSymbolTypeEnum &Symbol) override;
|
|
|
|
void dump(const PDBSymbolTypeFunctionSig &Symbol) override;
|
|
|
|
void dump(const PDBSymbolTypePointer &Symbol) override;
|
|
|
|
void dump(const PDBSymbolTypeTypedef &Symbol) override;
|
|
|
|
void dump(const PDBSymbolTypeUDT &Symbol) override;
|
2015-02-23 06:58:34 +01:00
|
|
|
|
|
|
|
private:
|
2015-03-01 07:51:29 +01:00
|
|
|
void dumpSymbolTypeAndName(const PDBSymbol &Type, StringRef Name);
|
|
|
|
bool tryDumpFunctionPointer(const PDBSymbol &Type, StringRef Name);
|
2015-02-27 10:15:59 +01:00
|
|
|
|
|
|
|
LinePrinter &Printer;
|
2015-02-23 06:58:34 +01:00
|
|
|
};
|
|
|
|
}
|
2016-05-04 22:32:13 +02:00
|
|
|
}
|
2015-02-23 06:58:34 +01:00
|
|
|
#endif
|