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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
llvm-dwp.cpp 362 const DWARFUnitIndex &TUIndex, MCSection *OutputTypes, StringRef Types,
365 for (const DWARFUnitIndex::Entry &E : TUIndex.getRows()) {
375 for (auto Kind : TUIndex.getColumnKinds()) {
779 DWARFUnitIndex TUIndex(DW_SECT_EXT_TYPES);
781 if (!TUIndex.parse(TUIndexData))
783 if (TUIndex.getVersion() != 2)
785 "unsupported tu_index version: " + utostr(TUIndex.getVersion()) +
789 Out, TypeIndexEntries, TUIndex, TypesSection, CurTypesSection.front(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFContext.h 57 std::unique_ptr<DWARFUnitIndex> TUIndex;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 758 if (TUIndex)
759 return *TUIndex;
763 TUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_EXT_TYPES);
764 TUIndex->parse(TUIndexData);
765 return *TUIndex;

Completed in 53 milliseconds