HomeSort by: relevance | last modified time | path
    Searched refs:DICtx (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/fuzzer/
llvm-dwarfdump-fuzzer.cpp 33 std::unique_ptr<DIContext> DICtx = DWARFContext::create(Obj);
38 DICtx->dump(nulls(), opts);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.h 37 bool collectStatsForObjectFile(object::ObjectFile &Obj, DWARFContext &DICtx,
39 bool collectObjectSectionSizes(object::ObjectFile &Obj, DWARFContext &DICtx,
llvm-dwarfdump.cpp 319 using HandlerFn = std::function<bool(ObjectFile &, DWARFContext &DICtx,
365 static void getDies(DWARFContext &DICtx, const AppleAcceleratorTable &Accel,
369 if (DWARFDie Die = DICtx.getDIEForOffset(*Off))
376 DWARFContext &DICtx) {
382 DWARFCompileUnit *CU = DICtx.getCompileUnitForOffset(*CUOff);
388 CU = DICtx.getDWOCompileUnitForHash(*DWOId);
396 static void getDies(DWARFContext &DICtx, const DWARFDebugNames &Accel,
399 if (DWARFDie Die = toDie(Entry, DICtx))
405 static void filterByAccelName(ArrayRef<std::string> Names, DWARFContext &DICtx,
409 getDies(DICtx, DICtx.getAppleNames(), Name, Dies)
    [all...]
Statistics.cpp 717 bool dwarfdump::collectStatsForObjectFile(ObjectFile &Obj, DWARFContext &DICtx,
724 for (const auto &CU : static_cast<DWARFContext *>(&DICtx)->compile_units()) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
DwarfTransformer.h 44 DICtx(D), Log(OS), Gsym(G) {}
81 DWARFContext &DICtx;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBContext.h 39 static bool classof(const DIContext *DICtx) {
40 return DICtx->getKind() == CK_PDB;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 34 create(const object::ObjectFile *Obj, std::unique_ptr<DIContext> DICtx,
95 std::unique_ptr<DIContext> DICtx,
SymbolizableObjectFile.cpp 32 std::unique_ptr<DIContext> DICtx,
34 assert(DICtx);
36 new SymbolizableObjectFile(Obj, std::move(DICtx), UntagAddresses));
91 std::unique_ptr<DIContext> DICtx,
93 : Module(Obj), DebugInfoContext(std::move(DICtx)),
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp 34 CUInfo(DWARFContext &DICtx, DWARFCompileUnit *CU) {
35 LineTable = DICtx.getLineTableForUnit(CU);
430 for (const auto &CU : DICtx.compile_units()) {
432 CUInfo CUI(DICtx, dyn_cast<DWARFCompileUnit>(CU.get()));
443 for (const auto &CU : DICtx.compile_units())
449 for (const auto &CU : DICtx.compile_units())
455 for (const auto &CU : DICtx.compile_units()) {
458 CUInfo CUI(DICtx, dyn_cast<DWARFCompileUnit>(CU.get()));
511 DICtx.getInliningInfoForAddress(SectAddr, DLIS);
515 DICtx.getLineInfoForAddress(SectAddr, DLIS))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
DwarfCFIEHPrinter.h 188 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(ObjF, nullptr);
189 DWARFDataExtractor DE(DICtx->getDWARFObj(),
190 DICtx->getDWARFObj().getEHFrameSection(),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-gsymutil/
llvm-gsymutil.cpp 308 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(Obj);
309 if (!DICtx)
312 logAllUnhandledErrors(DICtx->loadRegisterInfo(Obj), OS, "DwarfTransformer: ");
316 DwarfTransformer DT(*DICtx, OS, Gsym);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFContext.h 132 static bool classof(const DIContext *DICtx) {
133 return DICtx->getKind() == CK_DWARF;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
dsymutil.cpp 407 std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(*Obj);
409 bool success = DICtx->verify(os, DumpOpts.noImplicitRecursion());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp 1158 std::unique_ptr<DWARFContext> DICtx;
1162 DICtx = DWARFContext::create(*Obj);
1163 for (const std::unique_ptr<DWARFUnit> &CU : DICtx->compile_units())
2242 std::unique_ptr<DIContext> DICtx = DWARFContext::create(*O);
2246 DICtx->dump(outs(), DumpOpts);
MachODump.cpp 1999 std::unique_ptr<DIContext> DICtx = DWARFContext::create(*MachOOF);
2003 DICtx->dump(outs(), DumpOpts);

Completed in 58 milliseconds