Searched refs:FunctionDumper (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | PrettyFunctionDumper.cpp | 39 FunctionDumper &Dumper) { in dumpClassParentWithScopeOperator() 52 FunctionDumper::FunctionDumper(LinePrinter &P) in FunctionDumper() function in FunctionDumper 55 void FunctionDumper::start(const PDBSymbolTypeFunctionSig &Symbol, in start() 119 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) { in start() 159 else if (Pointer == FunctionDumper::PointerType::Reference) in start() 170 if (Pointer != FunctionDumper::PointerType::None) in start() 179 if (Pointer != FunctionDumper::PointerType::None) { in start() 182 else if (Pointer == FunctionDumper::PointerType::Reference) in start() 210 void FunctionDumper::dump(const PDBSymbolTypeArray &Symbol) { in dump() 219 void FunctionDumper::dump(const PDBSymbolTypeBuiltin &Symbol) { in dump() [all …]
|
H A D | PrettyTypedefDumper.cpp | 62 FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer; in dump() 64 Pointer = FunctionDumper::PointerType::Reference; in dump() 65 FunctionDumper NestedDumper(Printer); in dump() 77 FunctionDumper Dumper(Printer); in dump() 78 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None); in dump()
|
H A D | PrettyTypeDumper.cpp | 310 FunctionDumper Dumper(Printer); in dump() 311 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None); in dump() 318 FunctionDumper Dumper(Printer); in dump() 319 FunctionDumper::PointerType PT = in dump() 320 Symbol.isReference() ? FunctionDumper::PointerType::Reference in dump() 321 : FunctionDumper::PointerType::Pointer; in dump()
|
H A D | PrettyFunctionDumper.h | 18 class FunctionDumper : public PDBSymDumper { 20 FunctionDumper(LinePrinter &P);
|
H A D | PrettyClassLayoutGraphicalDumper.cpp | 211 FunctionDumper Dumper(Printer); in dump() 212 Dumper.start(Symbol, FunctionDumper::PointerType::None); in dump()
|
H A D | PrettyCompilandDumper.cpp | 170 FunctionDumper Dumper(Printer); in dump() 171 Dumper.start(Symbol, FunctionDumper::PointerType::None); in dump()
|
H A D | llvm-pdbutil.cpp | 1180 FunctionDumper FD(Printer); in dumpPretty() 1183 FD.start(*F, FunctionDumper::PointerType::None); in dumpPretty() 1255 FunctionDumper Dumper(Printer); in dumpPretty() 1259 Dumper.start(*Function, FunctionDumper::PointerType::None); in dumpPretty() 1268 Dumper.start(*Func, FunctionDumper::PointerType::None); in dumpPretty()
|