2015-02-26 23:51:49 +00: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 09:15:59 +00:00
|
|
|
class LinePrinter;
|
|
|
|
|
2015-02-26 23:51:49 +00:00
|
|
|
class BuiltinDumper : public PDBSymDumper {
|
|
|
|
public:
|
2015-02-27 09:15:59 +00:00
|
|
|
BuiltinDumper(LinePrinter &P);
|
2015-02-26 23:51:49 +00:00
|
|
|
|
2015-03-01 06:51:29 +00:00
|
|
|
void start(const PDBSymbolTypeBuiltin &Symbol);
|
2015-02-27 09:15:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
LinePrinter &Printer;
|
2015-02-26 23:51:49 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|