2015-02-27 00:51:49 +01:00
|
|
|
//===- BuiltinDumper.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_BUILTINDUMPER_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_BUILTINDUMPER_H
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2015-02-27 10:15:59 +01:00
|
|
|
class LinePrinter;
|
|
|
|
|
2015-02-27 00:51:49 +01:00
|
|
|
class BuiltinDumper : public PDBSymDumper {
|
|
|
|
public:
|
2015-02-27 10:15:59 +01:00
|
|
|
BuiltinDumper(LinePrinter &P);
|
2015-02-27 00:51:49 +01:00
|
|
|
|
2015-03-01 07:51:29 +01:00
|
|
|
void start(const PDBSymbolTypeBuiltin &Symbol);
|
2015-02-27 10:15:59 +01:00
|
|
|
|
|
|
|
private:
|
2015-11-03 21:16:18 +01:00
|
|
|
StringRef getTypeName(const PDBSymbolTypeBuiltin &Symbol);
|
|
|
|
|
2015-02-27 10:15:59 +01:00
|
|
|
LinePrinter &Printer;
|
2015-02-27 00:51:49 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|