Home
last modified time | relevance | path

Searched refs:SectionIter (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/Basic/
H A DProfileList.cpp38 for (auto &SectionIter : Sections) in hasPrefix() local
39 if (SectionIter.Entries.count(Prefix) > 0) in hasPrefix()
/llvm-project-15.0.7/llvm/lib/Support/
H A DSpecialCaseList.cpp211 for (const auto &SectionIter : Sections) in inSectionBlame() local
212 if (SectionIter.SectionMatcher->match(Section)) { in inSectionBlame()
214 inSectionBlame(SectionIter.Entries, Prefix, Query, Category); in inSectionBlame()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp487 SectionIter = File.obj().section_begin(); in SymbolGroupIterator()
528 assert(SectionIter); in scanToNextDebugS()
530 auto &Iter = *SectionIter; in scanToNextDebugS()
554 assert(SectionIter); in isEnd()
555 return *SectionIter == Value.File->obj().section_end(); in isEnd()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DDWARFRewriter.cpp1192 auto SectionIter = KnownSections.find(SectionName); in updateDebugData() local
1193 if (SectionIter == KnownSections.end()) in updateDebugData()
1196 Streamer.switchSection(SectionIter->second.first); in updateDebugData()
1200 switch (SectionIter->second.second) { in updateDebugData()
1474 auto SectionIter = KnownSections.find(SectionName); in writeDWP() local
1475 if (SectionIter->second.second == DWARFSectionKind::DW_SECT_STR_OFFSETS) in writeDWP()
1480 getContributionIndex(SectionIter->second.second, IndexVersion); in writeDWP()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInputFile.h152 Optional<object::section_iterator> SectionIter; variable