Searched refs:TUIndex (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp207 const DWARFUnitIndex &TUIndex, MCSection *OutputTypes, StringRef Types,
212 for (const DWARFUnitIndex::Entry &E : TUIndex.getRows()) {
222 for (auto Kind : TUIndex.getColumnKinds()) {
226 Entry.Contributions[getContributionIndex(Kind, TUIndex.getVersion())];
879 DWARFUnitIndex TUIndex(TUSectionKind);
881 if (!TUIndex.parse(TUIndexData))
883 if (TUIndex.getVersion() != IndexVersion)
885 utostr(TUIndex.getVersion()) +
891 Out, TypeIndexEntries, TUIndex, OutSection, TypeInputSection,
205 addAllTypesFromDWP( MCStreamer &Out, MapVector<uint64_t, UnitIndexEntry> &TypeIndexEntries, const DWARFUnitIndex &TUIndex, MCSection *OutputTypes, StringRef Types, const UnitIndexEntry &TUEntry, uint32_t &TypesOffset, unsigned TypesContributionIndex, OnCuIndexOverflow OverflowOptValue, bool &AnySectionOverflow) argument
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp256 std::unique_ptr<DWARFUnitIndex> TUIndex; member in class:ThreadUnsafeDWARFContextState
339 if (TUIndex)
340 return *TUIndex;
344 TUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_EXT_TYPES);
345 bool isParseSuccessful = TUIndex->parse(Data);
348 if (isParseSuccessful && TUIndex->getVersion() != 2)
349 fixupIndex(D, *TUIndex);
350 return *TUIndex;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp688 DenseMap<unsigned, unsigned> TUIndex(TUSymbols.size());
707 TUIndex[TU.UniqueID] = TUCount++;
730 return {{TUIndex[Entry.getUnitID()],

Completed in 272 milliseconds