Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DAccelTable.h274 unsigned CUIndex) in DWARF5AccelTableStaticData() argument
275 : DieOffset(DieOffset), DieTag(DieTag), CUIndex(CUIndex) {} in DWARF5AccelTableStaticData()
283 unsigned getCUIndex() const { return CUIndex; } in getCUIndex()
288 unsigned CUIndex; variable
/openbsd/gnu/llvm/llvm/lib/DWP/
H A DDWP.cpp724 DWARFUnitIndex CUIndex(DW_SECT_INFO); in write() local
726 if (!CUIndex.parse(CUIndexData)) in write()
728 if (CUIndex.getVersion() != IndexVersion) in write()
730 utostr(CUIndex.getVersion()) + in write()
734 for (const DWARFUnitIndex::Entry &E : CUIndex.getRows()) { in write()
761 for (auto Kind : CUIndex.getColumnKinds()) { in write()
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp549 SmallVector<unsigned, 1> CUIndex(CUs.size()); in emitDWARF5AccelTable() local
555 CUIndex[CU.index()] = Count++; in emitDWARF5AccelTable()
573 return CUIndex[DD.lookupCU(CUDie)->getUniqueID()]; in emitDWARF5AccelTable()
/openbsd/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp851 if (CUIndex) in getCUIndex()
852 return *CUIndex; in getCUIndex()
855 CUIndex = std::make_unique<DWARFUnitIndex>(DW_SECT_INFO); in getCUIndex()
856 CUIndex->parse(CUIndexData); in getCUIndex()
857 fixupIndex(*DObj, *this, *CUIndex.get()); in getCUIndex()
858 return *CUIndex; in getCUIndex()
H A DDWARFVerifier.cpp1377 uint32_t CUIndex = *EntryOr->getCUIndex(); in verifyNameIndexEntries() local
1378 if (CUIndex > NI.getCUCount()) { in verifyNameIndexEntries()
1381 NI.getUnitOffset(), EntryID, CUIndex); in verifyNameIndexEntries()
1385 uint64_t CUOffset = NI.getCUOffset(CUIndex); in verifyNameIndexEntries()
/openbsd/gnu/llvm/llvm/include/llvm/MC/
H A DMCContext.h749 void setDwarfCompileUnitID(unsigned CUIndex) { DwarfCompileUnitID = CUIndex; } in setDwarfCompileUnitID() argument
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h49 std::unique_ptr<DWARFUnitIndex> CUIndex; variable
/openbsd/gnu/llvm/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()