Home
last modified time | relevance | path

Searched refs:TUIndex (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp862 if (TUIndex) in getTUIndex()
863 return *TUIndex; in getTUIndex()
866 TUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_EXT_TYPES); in getTUIndex()
867 bool isParseSuccessful = TUIndex->parse(TUIndexData); in getTUIndex()
870 if (isParseSuccessful && TUIndex->getVersion() != 2) in getTUIndex()
871 fixupIndex(*DObj, *this, *TUIndex.get()); in getTUIndex()
872 return *TUIndex; in getTUIndex()
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
DDWARFContext.h51 std::unique_ptr<DWARFUnitIndex> TUIndex; variable