mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-28 23:43:25 +00:00
4ad658d8f1
This just removes some dead enums as well as some debug flushes of stdout. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230204 91177308-0d34-0410-b5e6-96231b3b80d8
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
//===- TypeDumper.cpp - 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "TypeDumper.h"
|
|
|
|
#include "ClassDefinitionDumper.h"
|
|
#include "FunctionDumper.h"
|
|
#include "llvm-pdbdump.h"
|
|
#include "TypedefDumper.h"
|
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSession.h"
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h"
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h"
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h"
|
|
#include "llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h"
|
|
|
|
using namespace llvm;
|
|
|
|
TypeDumper::TypeDumper(bool Inline, bool ClassDefs)
|
|
: PDBSymDumper(true), InlineDump(Inline), FullClassDefs(ClassDefs) {}
|
|
|
|
void TypeDumper::start(const PDBSymbolExe &Exe, raw_ostream &OS, int Indent) {
|
|
auto Enums = Exe.findAllChildren<PDBSymbolTypeEnum>();
|
|
OS << newline(Indent) << "Enums: (" << Enums->getChildCount() << " items)";
|
|
while (auto Enum = Enums->getNext())
|
|
Enum->dump(OS, Indent + 2, *this);
|
|
|
|
auto FuncSigs = Exe.findAllChildren<PDBSymbolTypeFunctionSig>();
|
|
OS << newline(Indent);
|
|
OS << "Function Signatures: (" << FuncSigs->getChildCount() << " items)";
|
|
while (auto Sig = FuncSigs->getNext())
|
|
Sig->dump(OS, Indent + 2, *this);
|
|
|
|
auto Typedefs = Exe.findAllChildren<PDBSymbolTypeTypedef>();
|
|
OS << newline(Indent) << "Typedefs: (" << Typedefs->getChildCount()
|
|
<< " items)";
|
|
while (auto Typedef = Typedefs->getNext())
|
|
Typedef->dump(OS, Indent + 2, *this);
|
|
|
|
auto Classes = Exe.findAllChildren<PDBSymbolTypeUDT>();
|
|
OS << newline(Indent) << "Classes: (" << Classes->getChildCount()
|
|
<< " items)";
|
|
while (auto Class = Classes->getNext())
|
|
Class->dump(OS, Indent + 2, *this);
|
|
}
|
|
|
|
void TypeDumper::dump(const PDBSymbolTypeEnum &Symbol, raw_ostream &OS,
|
|
int Indent) {
|
|
if (Symbol.getUnmodifiedTypeId() != 0)
|
|
return;
|
|
|
|
if (!InlineDump)
|
|
OS << newline(Indent);
|
|
|
|
OS << "enum " << Symbol.getName();
|
|
}
|
|
|
|
void TypeDumper::dump(const PDBSymbolTypeFunctionSig &Symbol, raw_ostream &OS,
|
|
int Indent) {
|
|
if (!InlineDump)
|
|
OS << newline(Indent);
|
|
|
|
FunctionDumper Dumper;
|
|
Dumper.start(Symbol, FunctionDumper::PointerType::None, OS);
|
|
}
|
|
|
|
void TypeDumper::dump(const PDBSymbolTypeTypedef &Symbol, raw_ostream &OS,
|
|
int Indent) {
|
|
if (!InlineDump)
|
|
OS << newline(Indent);
|
|
|
|
TypedefDumper Dumper;
|
|
Dumper.start(Symbol, OS, Indent);
|
|
}
|
|
|
|
void TypeDumper::dump(const PDBSymbolTypeUDT &Symbol, raw_ostream &OS,
|
|
int Indent) {
|
|
if (Symbol.getUnmodifiedTypeId() != 0)
|
|
return;
|
|
if (!InlineDump)
|
|
OS << newline(Indent);
|
|
|
|
if (FullClassDefs) {
|
|
ClassDefinitionDumper Dumper;
|
|
Dumper.start(Symbol, OS, Indent);
|
|
} else {
|
|
OS << "class " << Symbol.getName();
|
|
}
|
|
}
|