Home
last modified time | relevance | path

Searched refs:CUIndex (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp827 DWARFUnitIndex CUIndex(DW_SECT_INFO); in write() local
829 if (!CUIndex.parse(CUIndexData)) in write()
831 if (CUIndex.getVersion() != IndexVersion) in write()
833 utostr(CUIndex.getVersion()) + in write()
837 for (const DWARFUnitIndex::Entry &E : CUIndex.getRows()) { in write()
864 for (auto Kind : CUIndex.getColumnKinds()) { in write()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp648 SmallVector<unsigned, 1> CUIndex(CUs.size()); in emitDWARF5AccelTable() local
660 CUIndex[CU.index()] = CUCount++; in emitDWARF5AccelTable()
693 if (CUIndex.size() > 1) in emitDWARF5AccelTable()
694 return {{CUIndex[Entry.getUnitID()], in emitDWARF5AccelTable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp1602 std::optional<uint64_t> CUIndex = EntryOr->getRelatedCUIndex(); in verifyNameIndexEntries() local
1604 if (CUIndex && *CUIndex >= NI.getCUCount()) { in verifyNameIndexEntries()
1608 NI.getUnitOffset(), EntryID, *CUIndex); in verifyNameIndexEntries()
1634 if (CUIndex) { in verifyNameIndexEntries()
1636 UnitOffset = NI.getCUOffset(*CUIndex); in verifyNameIndexEntries()
1653 } else if (CUIndex) { in verifyNameIndexEntries()
1655 UnitOffset = NI.getCUOffset(*CUIndex); in verifyNameIndexEntries()
H A DDWARFContext.cpp253 std::unique_ptr<DWARFUnitIndex> CUIndex; member in __anonfc0a132e0411::ThreadUnsafeDWARFContextState
327 if (CUIndex) in getCUIndex()
328 return *CUIndex; in getCUIndex()
332 CUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_INFO); in getCUIndex()
333 if (CUIndex->parse(Data)) in getCUIndex()
334 fixupIndex(D, *CUIndex); in getCUIndex()
335 return *CUIndex; in getCUIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h742 void setDwarfCompileUnitID(unsigned CUIndex) { DwarfCompileUnitID = CUIndex; } in setDwarfCompileUnitID() argument
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp261 static Expected<uint64_t> writeDIE(const DWARFYAML::Data &DI, uint64_t CUIndex, in writeDIE() argument
278 utostr(CUIndex)); in writeDIE()