Home
last modified time | relevance | path

Searched refs:DICtx (Results 1 – 15 of 15) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp376 DWARFContext &DICtx) { in toDie() argument
399 if (DWARFDie Die = toDie(Entry, DICtx)) in getDies()
409 getDies(DICtx, DICtx.getAppleNames(), Name, Dies); in filterByAccelName()
410 getDies(DICtx, DICtx.getAppleTypes(), Name, Dies); in filterByAccelName()
411 getDies(DICtx, DICtx.getAppleNamespaces(), Name, Dies); in filterByAccelName()
412 getDies(DICtx, DICtx.getDebugNames(), Name, Dies); in filterByAccelName()
463 return lookup(Obj, DICtx, Lookup, OS); in dumpObjectFile()
478 filterByAccelName(Find, DICtx, OS); in dumpObjectFile()
483 DICtx.dump(OS, getDumpOpts(DICtx), DumpOffsets); in dumpObjectFile()
494 bool Result = DICtx.verify(stream, getDumpOpts(DICtx)); in verifyObjectFile()
[all …]
H A Dllvm-dwarfdump.h37 bool collectStatsForObjectFile(object::ObjectFile &Obj, DWARFContext &DICtx,
39 bool collectObjectSectionSizes(object::ObjectFile &Obj, DWARFContext &DICtx,
H A DStatistics.cpp717 bool dwarfdump::collectStatsForObjectFile(ObjectFile &Obj, DWARFContext &DICtx, in collectStatsForObjectFile() argument
724 for (const auto &CU : static_cast<DWARFContext *>(&DICtx)->compile_units()) { in collectStatsForObjectFile()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp34 CUInfo(DWARFContext &DICtx, DWARFCompileUnit *CU) { in CUInfo()
35 LineTable = DICtx.getLineTableForUnit(CU); in CUInfo()
430 for (const auto &CU : DICtx.compile_units()) { in convert()
432 CUInfo CUI(DICtx, dyn_cast<DWARFCompileUnit>(CU.get())); in convert()
443 for (const auto &CU : DICtx.compile_units()) in convert()
449 for (const auto &CU : DICtx.compile_units()) in convert()
455 for (const auto &CU : DICtx.compile_units()) { in convert()
458 CUInfo CUI(DICtx, dyn_cast<DWARFCompileUnit>(CU.get())); in convert()
511 DICtx.getInliningInfoForAddress(SectAddr, DLIS); in verify()
515 DICtx.getLineInfoForAddress(SectAddr, DLIS)); in verify()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/fuzzer/
H A Dllvm-dwarfdump-fuzzer.cpp33 std::unique_ptr<DIContext> DICtx = DWARFContext::create(Obj); in LLVMFuzzerTestOneInput() local
38 DICtx->dump(nulls(), opts); in LLVMFuzzerTestOneInput()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
H A DDwarfTransformer.h44 DICtx(D), Log(OS), Gsym(G) {} in DwarfTransformer()
81 DWARFContext &DICtx; variable
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp32 std::unique_ptr<DIContext> DICtx, in create() argument
34 assert(DICtx); in create()
36 new SymbolizableObjectFile(Obj, std::move(DICtx), UntagAddresses)); in create()
91 std::unique_ptr<DIContext> DICtx, in SymbolizableObjectFile() argument
93 : Module(Obj), DebugInfoContext(std::move(DICtx)), in SymbolizableObjectFile()
H A DSymbolizableObjectFile.h34 create(const object::ObjectFile *Obj, std::unique_ptr<DIContext> DICtx,
95 std::unique_ptr<DIContext> DICtx,
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DPDBContext.h39 static bool classof(const DIContext *DICtx) { in classof() argument
40 return DICtx->getKind() == CK_PDB; in classof()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-gsymutil/
H A Dllvm-gsymutil.cpp308 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(Obj); in handleObjectFile() local
309 if (!DICtx) in handleObjectFile()
312 logAllUnhandledErrors(DICtx->loadRegisterInfo(Obj), OS, "DwarfTransformer: "); in handleObjectFile()
316 DwarfTransformer DT(*DICtx, OS, Gsym); in handleObjectFile()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h188 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(ObjF, nullptr); in printEHFrame() local
189 DWARFDataExtractor DE(DICtx->getDWARFObj(), in printEHFrame()
190 DICtx->getDWARFObj().getEHFrameSection(), in printEHFrame()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h132 static bool classof(const DIContext *DICtx) { in classof() argument
133 return DICtx->getKind() == CK_DWARF; in classof()
/netbsd/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A Ddsymutil.cpp407 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(*Obj); in verify() local
409 bool success = DICtx->verify(os, DumpOpts.noImplicitRecursion()); in verify()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1158 std::unique_ptr<DWARFContext> DICtx; in disassembleObject() local
1162 DICtx = DWARFContext::create(*Obj); in disassembleObject()
1163 for (const std::unique_ptr<DWARFUnit> &CU : DICtx->compile_units()) in disassembleObject()
2242 std::unique_ptr<DIContext> DICtx = DWARFContext::create(*O); in dumpObject() local
2246 DICtx->dump(outs(), DumpOpts); in dumpObject()
H A DMachODump.cpp1999 std::unique_ptr<DIContext> DICtx = DWARFContext::create(*MachOOF); in ProcessMachO() local
2003 DICtx->dump(outs(), DumpOpts); in ProcessMachO()