Home
last modified time | relevance | path

Searched refs:getUnitDIE (Results 1 – 25 of 38) sorted by relevance

12

/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugInfoTest.cpp79 dwarfgen::DIE CUDie = CU.getUnitDIE(); in TestAllForms()
235 auto DieDG = U->getUnitDIE(false); in TestAllForms()
470 dwarfgen::DIE CUDie = CU.getUnitDIE(); in TestChildren()
503 auto DieDG = U->getUnitDIE(false); in TestChildren()
599 dwarfgen::DIE CU1Die = CU1.getUnitDIE(); in TestReferences()
628 dwarfgen::DIE CU2Die = CU2.getUnitDIE(); in TestReferences()
682 auto Unit1DieDG = U1->getUnitDIE(false); in TestReferences()
685 auto Unit2DieDG = U2->getUnitDIE(false); in TestReferences()
849 dwarfgen::DIE CUDie = CU.getUnitDIE(); in TestAddresses()
890 auto DieDG = U->getUnitDIE(false); in TestAddresses()
[all …]
DDWARFDieTest.cpp75 DWARFDie Die = CU->getUnitDIE(); in TEST()
DDwarfGenerator.cpp151 dwarfgen::DIE dwarfgen::CompileUnit::getUnitDIE() { in getUnitDIE() function in dwarfgen::CompileUnit
516 CUOffset = CU->getUnitDIE().computeSizeAndOffsets(CUOffset); in generate()
544 Asm->emitDwarfDIE(*CU->getUnitDIE().Die); in generate()
DDwarfGenerator.h159 DIE getUnitDIE();
/external/llvm-project/llvm/lib/DWARFLinker/
DDWARFLinkerCompileUnit.cpp26 DWARFDie CU = getOrigUnit().getUnitDIE(); in getLanguage()
34 DWARFDie CU = getOrigUnit().getUnitDIE(); in getSysRoot()
DDWARFLinker.cpp231 DWARFDie CUDie = CU.getOrigUnit().getUnitDIE(); in analyzeImportedModule()
534 if (dwarf::toAddress(OrigUnit.getUnitDIE().find(dwarf::DW_AT_high_pc)) in shouldKeepSubprogramDIE()
1562 auto OrigUnitDie = OrigUnit.getUnitDIE(false); in patchRangesForUnit()
1661 DWARFDie CUDie = Unit.getOrigUnit().getUnitDIE(); in patchLineTableForUnit()
2105 auto CUDie = CU->getUnitDIE(false); in loadClangModule()
2148 if (!Unit->getOrigUnit().getUnitDIE().hasChildren()) in loadClangModule()
2173 auto InputDIE = CurrentUnit->getOrigUnit().getUnitDIE(); in cloneAllCompileUnits()
2417 auto CUDie = CU->getUnitDIE(false); in link()
2466 auto CUDie = CU->getUnitDIE(false); in link()
2478 auto CUDie = CurrentUnit->getOrigUnit().getUnitDIE(); in link()
[all …]
/external/llvm/lib/DebugInfo/DWARF/
DDWARFCompileUnit.cpp25 if (const DWARFDebugInfoEntryMinimal *CU = getUnitDIE(false)) in dump()
DDWARFTypeUnit.cpp36 if (const DWARFDebugInfoEntryMinimal *TU = getUnitDIE(false)) in dump()
DDWARFUnit.cpp335 const auto *U = getUnitDIE(); in collectAddressRanges()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFCompileUnit.cpp31 if (DWARFDie CUDie = getUnitDIE(false)) in dump()
DDWARFUnit.cpp377 return dwarf::toString(getUnitDIE().find(DW_AT_comp_dir), nullptr); in getCompilationDir()
562 DWARFDie UnitDie = getUnitDIE(); in parseDWO()
654 DWARFDie UnitDie = getUnitDIE(); in collectAddressRanges()
725 updateAddressDieMap(getUnitDIE()); in getSubroutineForAddress()
775 return getUnitDIE(); in getParent()
860 DWARFDie UnitDie = getUnitDIE(); in getBaseAddress()
953 auto OptOffset = toSectionOffset(getUnitDIE().find(DW_AT_str_offsets_base)); in determineStringOffsetsTableContribution()
DDWARFTypeUnit.cpp45 if (DWARFDie TU = getUnitDIE(false)) in dump()
DDWARFVerifier.cpp178 DWARFDie Die = Unit.getUnitDIE(/* ExtractUnitDIEOnly = */ false); in verifyUnitContents()
662 auto Die = CU->getUnitDIE(); in verifyDebugLineStmtOffsets()
704 auto Die = CU->getUnitDIE(); in verifyDebugLineRows()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFCompileUnit.cpp34 if (DWARFDie CUDie = getUnitDIE(false)) in dump()
DDWARFUnit.cpp349 return dwarf::toString(getUnitDIE().find(DW_AT_comp_dir), nullptr); in getCompilationDir()
523 DWARFDie UnitDie = getUnitDIE(); in parseDWO()
599 DWARFDie UnitDie = getUnitDIE(); in collectAddressRanges()
670 updateAddressDieMap(getUnitDIE()); in getSubroutineForAddress()
720 return getUnitDIE(); in getParent()
805 DWARFDie UnitDie = getUnitDIE(); in getBaseAddress()
893 auto OptOffset = toSectionOffset(getUnitDIE().find(DW_AT_str_offsets_base)); in determineStringOffsetsTableContribution()
DDWARFTypeUnit.cpp49 if (DWARFDie TU = getUnitDIE(false)) in dump()
DDWARFDebugMacro.cpp116 if (auto CUDIE = U->getUnitDIE()) in parseImpl()
/external/llvm-project/llvm/lib/DebugInfo/GSYM/
DDwarfTransformer.cpp40 DWARFDie Die = CU->getUnitDIE(); in CUInfo()
431 DWARFDie Die = CU->getUnitDIE(false); in convert()
450 pool.async([&CU]() { CU->getUnitDIE(false /*CUDieOnly*/); }); in convert()
456 DWARFDie Die = CU->getUnitDIE(false /*CUDieOnly*/); in convert()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
DDWARFLinkerCompileUnit.h85 auto CUDie = OrigUnit.getUnitDIE(false); in CompileUnit()
106 OrigUnit.getUnitDIE().getTag()); in createOutputDIE()
/external/llvm-project/llvm/include/llvm/DWARFLinker/
DDWARFLinkerCompileUnit.h85 auto CUDie = OrigUnit.getUnitDIE(false); in CompileUnit()
104 void createOutputDIE() { NewUnit.emplace(OrigUnit.getUnitDIE().getTag()); } in createOutputDIE()
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h378 DWARFDie getUnitDIE(bool ExtractUnitDIEOnly = true) {
388 return DWO->getUnitDIE(ExtractUnitDIEOnly);
389 return getUnitDIE(ExtractUnitDIEOnly);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h396 DWARFDie getUnitDIE(bool ExtractUnitDIEOnly = true) {
406 return DWO->getUnitDIE(ExtractUnitDIEOnly);
407 return getUnitDIE(ExtractUnitDIEOnly);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/
DDWARFLinkerCompileUnit.cpp26 DWARFDie CU = getOrigUnit().getUnitDIE(); in getLanguage()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp204 const auto *CUDie = OrigUnit.getUnitDIE(false); in CompileUnit()
848 const auto *OrigUnitDie = OrigUnit.getUnitDIE(false); in emitLocationsForUnit()
2885 const auto *OrigUnitDie = OrigUnit.getUnitDIE(false); in patchRangesForUnit()
2981 const DWARFDebugInfoEntryMinimal *CUDie = Unit.getOrigUnit().getUnitDIE(); in patchLineTableForUnit()
3341 auto *CUDie = CU->getUnitDIE(false); in loadClangModule()
3388 const auto *InputDIE = CurrentUnit.getOrigUnit().getUnitDIE(); in cloneAllCompileUnits()
3455 auto *CUDie = CU->getUnitDIE(false); in link()
3467 analyzeContextInfo(CurrentUnit.getOrigUnit().getUnitDIE(), 0, CurrentUnit, in link()
3476 lookForDIEsToKeep(RelocMgr, *CurrentUnit.getOrigUnit().getUnitDIE(), *Obj, in link()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h204 const DWARFDebugInfoEntryMinimal *getUnitDIE(bool ExtractUnitDIEOnly = true) {

12