Home
last modified time | relevance | path

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

/src/contrib/llvm-project/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.h89 assert(!GraphBlocks.count(SecIndex) && "Duplicate section at index"); in setGraphBlock()
90 GraphBlocks[SecIndex] = B; in setGraphBlock()
94 return GraphBlocks.lookup(SecIndex); in getGraphBlock()
183 DenseMap<ELFSectionIndex, Block *> GraphBlocks; variable
H A DCOFFLinkGraphBuilder.cpp124 GraphBlocks.resize(Obj.getNumberOfSections() + 1); in graphifySections()