Home
last modified time | relevance | path

Searched refs:IndexToSection (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h109 auto I = IndexToSection.find(Index); in getSectionByIndex()
110 assert(I != IndexToSection.end() && "No section recorded at index"); in getSectionByIndex()
118 auto I = IndexToSection.find(Index); in findSectionByIndex()
119 if (I == IndexToSection.end()) in findSectionByIndex()
229 DenseMap<unsigned, NormalizedSection> IndexToSection; variable
H A DMachOLinkGraphBuilder.cpp188 IndexToSection.insert(std::make_pair(SecIndex, std::move(NSec))); in createNormalizedSections()
192 Sections.reserve(IndexToSection.size()); in createNormalizedSections()
193 for (auto &KV : IndexToSection) in createNormalizedSections()
323 auto SecI = IndexToSection.find(SecIndex); in addSectionStartSymAndBlock()
324 assert(SecI != IndexToSection.end() && "SecIndex invalid"); in addSectionStartSymAndBlock()
397 for (auto &KV : IndexToSection) { in graphifyRegularSymbols()
590 for (auto &KV : IndexToSection) { in graphifySectionsWithCustomParsers()