Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp806 DWARFUnitIndex CUIndex(DW_SECT_INFO); in write() local
808 if (!CUIndex.parse(CUIndexData)) in write()
810 if (CUIndex.getVersion() != IndexVersion) in write()
812 utostr(CUIndex.getVersion()) + in write()
816 for (const DWARFUnitIndex::Entry &E : CUIndex.getRows()) { in write()
843 for (auto Kind : CUIndex.getColumnKinds()) { in write()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp687 SmallVector<unsigned, 1> CUIndex(CUs.size()); in emitDWARF5AccelTable() local
699 CUIndex[CU.index()] = CUCount++; in emitDWARF5AccelTable()
732 if (CUIndex.size() > 1) in emitDWARF5AccelTable()
733 return {{CUIndex[Entry.getUnitID()], in emitDWARF5AccelTable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp254 std::unique_ptr<DWARFUnitIndex> CUIndex; member in ThreadUnsafeDWARFContextState
328 if (CUIndex) in getCUIndex()
329 return *CUIndex; in getCUIndex()
333 CUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_INFO); in getCUIndex()
334 if (CUIndex->parse(Data)) in getCUIndex()
335 fixupIndex(D, *CUIndex); in getCUIndex()
336 return *CUIndex; in getCUIndex()
H A DDWARFVerifier.cpp1434 uint32_t CUIndex = *EntryOr->getCUIndex(); in verifyNameIndexEntries() local
1435 if (CUIndex > NI.getCUCount()) { in verifyNameIndexEntries()
1438 NI.getUnitOffset(), EntryID, CUIndex); in verifyNameIndexEntries()
1442 uint64_t CUOffset = NI.getCUOffset(CUIndex); in verifyNameIndexEntries()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h751 void setDwarfCompileUnitID(unsigned CUIndex) { DwarfCompileUnitID = CUIndex; } in setDwarfCompileUnitID() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp265 static Expected<uint64_t> writeDIE(const DWARFYAML::Data &DI, uint64_t CUIndex, in writeDIE() argument
282 utostr(CUIndex)); in writeDIE()