2017-01-11 08:35:43 +08:00
|
|
|
//===- PrettyBuiltinDumper.h ---------------------------------- *- C++ --*-===//
|
2015-02-27 07:51:49 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-02-27 07:51:49 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-01-11 08:35:43 +08:00
|
|
|
#ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_PRETTYBUILTINDUMPER_H
|
2015-02-27 07:51:49 +08:00
|
|
|
|
2016-04-26 01:38:08 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2015-02-27 07:51:49 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2016-05-05 04:32:13 +08:00
|
|
|
namespace pdb {
|
2015-02-27 07:51:49 +08:00
|
|
|
|
2015-02-27 17:15:59 +08:00
|
|
|
class LinePrinter;
|
|
|
|
|
2015-02-27 07:51:49 +08:00
|
|
|
class BuiltinDumper : public PDBSymDumper {
|
|
|
|
public:
|
2015-02-27 17:15:59 +08:00
|
|
|
BuiltinDumper(LinePrinter &P);
|
2015-02-27 07:51:49 +08:00
|
|
|
|
2015-03-01 14:51:29 +08:00
|
|
|
void start(const PDBSymbolTypeBuiltin &Symbol);
|
2015-02-27 17:15:59 +08:00
|
|
|
|
|
|
|
private:
|
2015-11-04 04:16:18 +08:00
|
|
|
StringRef getTypeName(const PDBSymbolTypeBuiltin &Symbol);
|
|
|
|
|
2015-02-27 17:15:59 +08:00
|
|
|
LinePrinter &Printer;
|
2015-02-27 07:51:49 +08:00
|
|
|
};
|
|
|
|
}
|
2016-05-05 04:32:13 +08:00
|
|
|
}
|
2015-02-27 07:51:49 +08:00
|
|
|
|
|
|
|
#endif
|