Home
last modified time | relevance | path

Searched refs:GraphBlocks (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.h69 assert(!GraphBlocks[SecIndex] && "Duplicate section at index"); in setGraphBlock()
71 GraphBlocks[SecIndex] = B; in setGraphBlock()
78 return GraphBlocks[SecIndex]; in getGraphBlock()
176 std::vector<Block *> GraphBlocks; variable
H A DELFLinkGraphBuilder.h81 assert(!GraphBlocks.count(SecIndex) && "Duplicate section at index"); in setGraphBlock()
82 GraphBlocks[SecIndex] = B; in setGraphBlock()
86 auto I = GraphBlocks.find(SecIndex); in getGraphBlock()
87 if (I == GraphBlocks.end()) in getGraphBlock()
169 DenseMap<ELFSectionIndex, Block *> GraphBlocks; variable
H A DCOFFLinkGraphBuilder.cpp124 GraphBlocks.resize(Obj.getNumberOfSections() + 1); in graphifySections()