Home
last modified time | relevance | path

Searched refs:DWARFUnitIndex (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp92 bool DWARFUnitIndex::Header::parse(DataExtractor IndexData, in parse()
115 void DWARFUnitIndex::Header::dump(raw_ostream &OS) const { in dump()
119 bool DWARFUnitIndex::parse(DataExtractor IndexData) { in parse()
131 bool DWARFUnitIndex::parseImpl(DataExtractor IndexData) { in parseImpl()
197 StringRef DWARFUnitIndex::getColumnHeader(DWARFSectionKind DS) { in getColumnHeader()
215 void DWARFUnitIndex::dump(raw_ostream &OS) const { in dump()
263 const DWARFUnitIndex::Entry::SectionContribution *
264 DWARFUnitIndex::Entry::getContribution(DWARFSectionKind Sec) const { in getContribution()
272 DWARFUnitIndex::Entry::SectionContribution &
273 DWARFUnitIndex::Entry::getContribution() { in getContribution()
[all …]
H A DDWARFContext.cpp74 void fixupIndexV4(DWARFContext &C, DWARFUnitIndex &Index) { in fixupIndexV4()
75 using EntryType = DWARFUnitIndex::Entry::SectionContribution; in fixupIndexV4()
121 for (DWARFUnitIndex::Entry &E : Index.getMutableRows()) { in fixupIndexV4()
124 DWARFUnitIndex::Entry::SectionContribution &CUOff = E.getContribution(); in fixupIndexV4()
142 void fixupIndexV5(DWARFContext &C, DWARFUnitIndex &Index) { in fixupIndexV5()
169 for (DWARFUnitIndex::Entry &E : Index.getMutableRows()) { in fixupIndexV5()
172 DWARFUnitIndex::Entry::SectionContribution &CUOff = E.getContribution(); in fixupIndexV5()
185 void fixupIndex(DWARFContext &C, DWARFUnitIndex &Index) { in fixupIndex()
255 std::unique_ptr<DWARFUnitIndex> CUIndex;
257 std::unique_ptr<DWARFUnitIndex> TUIndex;
[all …]
H A DDWARFUnit.cpp77 const DWARFUnitIndex::Entry *IndexEntry) in addUnitsImpl()
90 const DWARFUnitIndex &Index = getDWARFUnitIndex( in addUnitsImpl()
165 DWARFUnitVector::getUnitForIndexEntry(const DWARFUnitIndex::Entry &E) { in getUnitForIndexEntry()
341 Error DWARFUnitHeader::applyIndexEntry(const DWARFUnitIndex::Entry *Entry) { in applyIndexEntry()
893 const DWARFUnitIndex &llvm::getDWARFUnitIndex(DWARFContext &Context, in getDWARFUnitIndex()
H A DDWARFVerifier.cpp476 DWARFUnitIndex Index(InfoColumnKind); in verifyIndex()
483 for (const DWARFUnitIndex::Entry &E : Index.getRows()) { in verifyIndex()
491 const DWARFUnitIndex::Entry::SectionContribution &SC = E.value(); in verifyIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h99 class DWARFUnitIndex {
132 const DWARFUnitIndex *Index;
135 friend class DWARFUnitIndex; variable
168 DWARFUnitIndex(DWARFSectionKind InfoColumnKind) in DWARFUnitIndex() function
H A DDWARFContext.h43 class DWARFUnitIndex; variable
75 virtual const DWARFUnitIndex &getCUIndex() = 0;
76 virtual const DWARFUnitIndex &getTUIndex() = 0;
290 const DWARFUnitIndex &getCUIndex();
292 const DWARFUnitIndex &getTUIndex();
H A DDWARFUnit.h64 const DWARFUnitIndex::Entry *IndexEntry = nullptr;
88 Error applyIndexEntry(const DWARFUnitIndex::Entry *Entry);
105 const DWARFUnitIndex::Entry *getIndexEntry() const { return IndexEntry; } in getIndexEntry()
121 const DWARFUnitIndex &getDWARFUnitIndex(DWARFContext &Context,
131 const DWARFUnitIndex::Entry *)>
144 DWARFUnit *getUnitForIndexEntry(const DWARFUnitIndex::Entry &E);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp41 if (const llvm::DWARFUnitIndex &index = m_context.GetAsLLVM().getCUIndex()) { in GetDWOCompileUnitForHash()
42 if (const llvm::DWARFUnitIndex::Entry *entry = index.getFromHash(hash)) { in GetDWOCompileUnitForHash()
H A DDWARFUnit.cpp348 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.getIndexEntry()) { in SetDwoStrOffsetsBase()
492 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.getIndexEntry()) { in SetLoclistsBase()
536 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.getIndexEntry()) { in GetLocationData()
549 if (const llvm::DWARFUnitIndex::Entry *entry = m_header.getIndexEntry()) { in GetRnglistData()
949 const llvm::DWARFUnitIndex::Entry *entry = nullptr; in extract()
950 const llvm::DWARFUnitIndex &index = header.isTypeUnit() in extract()
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp175 const DWARFUnitIndex::Entry &Entry, in getSubsection()
207 const DWARFUnitIndex &TUIndex, MCSection *OutputTypes, StringRef Types, in addAllTypesFromDWP()
212 for (const DWARFUnitIndex::Entry &E : TUIndex.getRows()) { in addAllTypesFromDWP()
830 DWARFUnitIndex CUIndex(DW_SECT_INFO); in write()
840 for (const DWARFUnitIndex::Entry &E : CUIndex.getRows()) { in write()
903 DWARFUnitIndex TUIndex(TUSectionKind); in write()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWP/
H A DDWP.h9 #include "llvm/DebugInfo/DWARF/DWARFUnitIndex.h"
25 DWARFUnitIndex::Entry::SectionContribution Contributions[8];
/freebsd/lib/clang/libllvm/
H A DMakefile578 SRCS_MIW+= DebugInfo/DWARF/DWARFUnitIndex.cpp