mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
eb6ab04fb2
We were starting to get some name clashes between llvm-pdbdump and the common CodeView framework, so I took this opportunity to rename a bunch of files to more accurately describe their usage. This also helps in llvm-pdbdump to distinguish between different files and whether they are used for pretty dump mode or raw dump mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291627 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
814 B
C++
35 lines
814 B
C++
//===- PrettyExternalSymbolDumper.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_PRETTYEXTERNALSYMBOLDUMPER_H
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_PRETTYEXTERNALSYMBOLDUMPER_H
|
|
|
|
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
|
|
|
|
namespace llvm {
|
|
namespace pdb {
|
|
|
|
class LinePrinter;
|
|
|
|
class ExternalSymbolDumper : public PDBSymDumper {
|
|
public:
|
|
ExternalSymbolDumper(LinePrinter &P);
|
|
|
|
void start(const PDBSymbolExe &Symbol);
|
|
|
|
void dump(const PDBSymbolPublicSymbol &Symbol) override;
|
|
|
|
private:
|
|
LinePrinter &Printer;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|