Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h111 auto I = IndexToSection.find(Index); in getSectionByIndex()
112 assert(I != IndexToSection.end() && "No section recorded at index"); in getSectionByIndex()
120 auto I = IndexToSection.find(Index); in findSectionByIndex()
121 if (I == IndexToSection.end()) in findSectionByIndex()
232 DenseMap<unsigned, NormalizedSection> IndexToSection; variable
H A DMachOLinkGraphBuilder.cpp198 IndexToSection.insert(std::make_pair(SecIndex, std::move(NSec))); in createNormalizedSections()
202 Sections.reserve(IndexToSection.size()); in createNormalizedSections()
203 for (auto &KV : IndexToSection) in createNormalizedSections()
337 auto SecI = IndexToSection.find(SecIndex); in addSectionStartSymAndBlock()
338 assert(SecI != IndexToSection.end() && "SecIndex invalid"); in addSectionStartSymAndBlock()
412 for (auto &KV : IndexToSection) { in graphifyRegularSymbols()
614 for (auto &KV : IndexToSection) { in graphifySectionsWithCustomParsers()