Home
last modified time | relevance | path

Searched refs:Dumper (Results 1 – 25 of 172) sorted by relevance

1234567

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp404 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 …]
DWin64EHDumper.cpp115 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/
Dllvm-readobj.cpp343 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 …]
DWin64EHDumper.cpp115 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/
DTypeDumper.cpp70 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()
DClassDefinitionDumper.cpp158 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()
DTypedefDumper.cpp42 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()
Dllvm-pdbdump.cpp441 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 …]
DVariableDumper.cpp89 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/
DPDBSymbolTypeArray.cpp25 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()
DPDBSymbolTypePointer.cpp26 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()
DPDBSymbolTypeFunctionSig.cpp81 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/
DPrettyClassLayoutGraphicalDumper.cpp183 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()
DPrettyTypedefDumper.cpp41 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()
DPrettyTypeDumper.cpp228 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/
DPDBSymbolUsingNamespace.cpp24 void PDBSymbolUsingNamespace::dump(PDBSymDumper &Dumper) const { in dump()
25 Dumper.dump(*this); in dump()
DPDBSymbolTypeCustom.cpp24 void PDBSymbolTypeCustom::dump(PDBSymDumper &Dumper) const { in dump()
25 Dumper.dump(*this); in dump()
DPDBSymbolExe.cpp23 void PDBSymbolExe::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
DPDBSymbolTypeTypedef.cpp23 void PDBSymbolTypeTypedef::dump(PDBSymDumper &Dumper) const { in dump()
24 Dumper.dump(*this); in dump()
DPDBSymbolUnknown.cpp24 void PDBSymbolUnknown::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
DPDBSymbolTypeFunctionArg.cpp23 void PDBSymbolTypeFunctionArg::dump(PDBSymDumper &Dumper) const { in dump()
24 Dumper.dump(*this); in dump()
DPDBSymbolTypeUDT.cpp23 void PDBSymbolTypeUDT::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); } in dump()
DPDBSymbolTypeBuiltin.cpp23 void PDBSymbolTypeBuiltin::dump(PDBSymDumper &Dumper) const { in dump()
24 Dumper.dump(*this); in dump()
DPDBSymbolFuncDebugStart.cpp24 void PDBSymbolFuncDebugStart::dump(PDBSymDumper &Dumper) const { in dump()
25 Dumper.dump(*this); in dump()
DPDBSymbolTypeVTable.cpp23 void PDBSymbolTypeVTable::dump(PDBSymDumper &Dumper) const { in dump()
24 Dumper.dump(*this); in dump()

1234567