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.cpp830 DWARFUnitIndex CUIndex(DW_SECT_INFO); in write() local
832 if (!CUIndex.parse(CUIndexData)) in write()
834 if (CUIndex.getVersion() != IndexVersion) in write()
836 utostr(CUIndex.getVersion()) + in write()
840 for (const DWARFUnitIndex::Entry &E : CUIndex.getRows()) { in write()
867 for (auto Kind : CUIndex.getColumnKinds()) { in write()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp649 SmallVector<unsigned, 1> CUIndex(CUs.size()); in emitDWARF5AccelTable() local
661 CUIndex[CU.index()] = CUCount++; in emitDWARF5AccelTable()
694 if (CUIndex.size() > 1) in emitDWARF5AccelTable()
695 return {{CUIndex[Entry.getUnitID()], in emitDWARF5AccelTable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp255 std::unique_ptr<DWARFUnitIndex> CUIndex; member in __anonfc0a132e0411::ThreadUnsafeDWARFContextState
329 if (CUIndex) in getCUIndex()
330 return *CUIndex; in getCUIndex()
334 CUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_INFO); in getCUIndex()
335 if (CUIndex->parse(Data)) in getCUIndex()
336 fixupIndex(D, *CUIndex); in getCUIndex()
337 return *CUIndex; in getCUIndex()
H A DDWARFVerifier.cpp1599 uint32_t CUIndex = *EntryOr->getCUIndex(); in verifyNameIndexEntries() local
1600 if (CUIndex > NI.getCUCount()) { in verifyNameIndexEntries()
1604 NI.getUnitOffset(), EntryID, CUIndex); in verifyNameIndexEntries()
1609 uint64_t CUOffset = NI.getCUOffset(CUIndex); in verifyNameIndexEntries()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h722 void setDwarfCompileUnitID(unsigned CUIndex) { DwarfCompileUnitID = CUIndex; } in setDwarfCompileUnitID() argument
/freebsd/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()