/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 404 std::unique_ptr<ObjDumper> Dumper; in dumpObject() local 405 if (std::error_code EC = createDumper(Obj, Writer, Dumper)) in dumpObject() 416 Dumper->printLoadName(); in dumpObject() 420 Dumper->printFileHeaders(); in dumpObject() 422 Dumper->printSections(); in dumpObject() 424 Dumper->printRelocations(); in dumpObject() 426 Dumper->printDynamicRelocations(); in dumpObject() 428 Dumper->printSymbols(); in dumpObject() 430 Dumper->printDynamicSymbols(); in dumpObject() 432 Dumper->printUnwindInfo(); in dumpObject() [all …]
|
D | Win64EHDumper.cpp | 115 static std::string formatSymbol(const Dumper::Context &Ctx, in formatSymbol() 141 static std::error_code resolveRelocation(const Dumper::Context &Ctx, in resolveRelocation() 165 void Dumper::printRuntimeFunctionEntry(const Context &Ctx, in printRuntimeFunctionEntry() 180 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() 237 void Dumper::printUnwindInfo(const Context &Ctx, const coff_section *Section, in printUnwindInfo() 281 void Dumper::printRuntimeFunction(const Context &Ctx, in printRuntimeFunction() 305 void Dumper::printData(const Context &Ctx) { in printData()
|
/external/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 343 std::unique_ptr<ObjDumper> Dumper; in dumpObject() local 344 if (std::error_code EC = createDumper(Obj, Writer, Dumper)) in dumpObject() 354 Dumper->printLoadName(); in dumpObject() 358 Dumper->printFileHeaders(); in dumpObject() 360 Dumper->printSections(); in dumpObject() 362 Dumper->printRelocations(); in dumpObject() 364 Dumper->printDynamicRelocations(); in dumpObject() 366 Dumper->printSymbols(); in dumpObject() 368 Dumper->printDynamicSymbols(); in dumpObject() 370 Dumper->printUnwindInfo(); in dumpObject() [all …]
|
D | Win64EHDumper.cpp | 115 static std::string formatSymbol(const Dumper::Context &Ctx, in formatSymbol() 141 static std::error_code resolveRelocation(const Dumper::Context &Ctx, in resolveRelocation() 165 void Dumper::printRuntimeFunctionEntry(const Context &Ctx, in printRuntimeFunctionEntry() 180 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() 237 void Dumper::printUnwindInfo(const Context &Ctx, const coff_section *Section, in printUnwindInfo() 281 void Dumper::printRuntimeFunction(const Context &Ctx, in printRuntimeFunction() 305 void Dumper::printData(const Context &Ctx) { in printData()
|
/external/llvm/tools/llvm-pdbdump/ |
D | TypeDumper.cpp | 70 EnumDumper Dumper(Printer); in dump() local 71 Dumper.start(Symbol); in dump() 79 TypedefDumper Dumper(Printer); in dump() local 80 Dumper.start(Symbol); in dump() 95 ClassDefinitionDumper Dumper(Printer); in dump() local 96 Dumper.start(Symbol); in dump()
|
D | ClassDefinitionDumper.cpp | 158 VariableDumper Dumper(Printer); in dump() local 159 Dumper.start(Symbol); in dump() 167 FunctionDumper Dumper(Printer); in dump() local 168 Dumper.start(Symbol, FunctionDumper::PointerType::None); in dump() 178 EnumDumper Dumper(Printer); in dump() local 179 Dumper.start(Symbol); in dump() 187 TypedefDumper Dumper(Printer); in dump() local 188 Dumper.start(Symbol); in dump()
|
D | TypedefDumper.cpp | 42 BuiltinDumper Dumper(Printer); in dump() local 43 Dumper.start(Symbol); in dump() 73 FunctionDumper Dumper(Printer); in dump() local 74 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None); in dump()
|
D | llvm-pdbdump.cpp | 441 CompilandDumper Dumper(Printer); in dumpPretty() local 446 Dumper.start(*Compiland, options); in dumpPretty() 454 TypeDumper Dumper(Printer); in dumpPretty() local 455 Dumper.start(*GlobalScope); in dumpPretty() 464 CompilandDumper Dumper(Printer); in dumpPretty() local 466 Dumper.start(*Compiland, true); in dumpPretty() 475 FunctionDumper Dumper(Printer); in dumpPretty() local 479 Dumper.start(*Function, FunctionDumper::PointerType::None); in dumpPretty() 484 VariableDumper Dumper(Printer); in dumpPretty() local 486 Dumper.start(*Var); in dumpPretty() [all …]
|
D | VariableDumper.cpp | 89 BuiltinDumper Dumper(Printer); in dump() local 90 Dumper.start(Symbol); in dump() 161 FunctionDumper Dumper(Printer); in tryDumpFunctionPointer() local 166 Dumper.start(*FunctionSig, NameStr.c_str(), PT); in tryDumpFunctionPointer()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/ |
D | PDBSymbolTypeArray.cpp | 25 void PDBSymbolTypeArray::dump(PDBSymDumper &Dumper) const { in dump() 26 Dumper.dump(*this); in dump() 29 void PDBSymbolTypeArray::dumpRight(PDBSymDumper &Dumper) const { in dumpRight() 30 Dumper.dumpRight(*this); in dumpRight()
|
D | PDBSymbolTypePointer.cpp | 26 void PDBSymbolTypePointer::dump(PDBSymDumper &Dumper) const { in dump() 27 Dumper.dump(*this); in dump() 30 void PDBSymbolTypePointer::dumpRight(PDBSymDumper &Dumper) const { in dumpRight() 31 Dumper.dumpRight(*this); in dumpRight()
|
D | PDBSymbolTypeFunctionSig.cpp | 81 void PDBSymbolTypeFunctionSig::dump(PDBSymDumper &Dumper) const { in dump() 82 Dumper.dump(*this); in dump() 85 void PDBSymbolTypeFunctionSig::dumpRight(PDBSymDumper &Dumper) const { in dumpRight() 86 Dumper.dumpRight(*this); in dumpRight()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | PrettyClassLayoutGraphicalDumper.cpp | 183 EnumDumper Dumper(Printer); in dump() local 184 Dumper.start(Symbol); in dump() 191 TypedefDumper Dumper(Printer); in dump() local 192 Dumper.start(Symbol); in dump() 211 FunctionDumper Dumper(Printer); in dump() local 212 Dumper.start(Symbol, FunctionDumper::PointerType::None); in dump()
|
D | PrettyTypedefDumper.cpp | 41 BuiltinDumper Dumper(Printer); in dump() local 42 Dumper.start(Symbol); in dump() 72 FunctionDumper Dumper(Printer); in dump() local 73 Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None); in dump()
|
D | PrettyTypeDumper.cpp | 228 EnumDumper Dumper(Printer); in dump() local 229 Dumper.start(Symbol); in dump() 239 TypedefDumper Dumper(Printer); in dump() local 240 Dumper.start(Symbol); in dump() 251 ClassDefinitionDumper Dumper(Printer); in dumpClassLayout() local 252 Dumper.start(Class); in dumpClassLayout()
|
/external/llvm/lib/DebugInfo/PDB/ |
D | PDBSymbolUsingNamespace.cpp | 24 void PDBSymbolUsingNamespace::dump(PDBSymDumper &Dumper) const { in dump() 25 Dumper.dump(*this); in dump()
|
D | PDBSymbolTypeCustom.cpp | 24 void PDBSymbolTypeCustom::dump(PDBSymDumper &Dumper) const { in dump() 25 Dumper.dump(*this); in dump()
|
D | PDBSymbolExe.cpp | 23 void PDBSymbolExe::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
|
D | PDBSymbolTypeTypedef.cpp | 23 void PDBSymbolTypeTypedef::dump(PDBSymDumper &Dumper) const { in dump() 24 Dumper.dump(*this); in dump()
|
D | PDBSymbolUnknown.cpp | 24 void PDBSymbolUnknown::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
|
D | PDBSymbolTypeFunctionArg.cpp | 23 void PDBSymbolTypeFunctionArg::dump(PDBSymDumper &Dumper) const { in dump() 24 Dumper.dump(*this); in dump()
|
D | PDBSymbolTypeUDT.cpp | 23 void PDBSymbolTypeUDT::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
|
D | PDBSymbolTypeBuiltin.cpp | 23 void PDBSymbolTypeBuiltin::dump(PDBSymDumper &Dumper) const { in dump() 24 Dumper.dump(*this); in dump()
|
D | PDBSymbolFuncDebugStart.cpp | 24 void PDBSymbolFuncDebugStart::dump(PDBSymDumper &Dumper) const { in dump() 25 Dumper.dump(*this); in dump()
|
D | PDBSymbolTypeVTable.cpp | 23 void PDBSymbolTypeVTable::dump(PDBSymDumper &Dumper) const { in dump() 24 Dumper.dump(*this); in dump()
|