Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.h70 assert(!GraphBlocks[SecIndex] && "Duplicate section at index"); in setGraphBlock()
72 GraphBlocks[SecIndex] = B; in setGraphBlock()
79 return GraphBlocks[SecIndex]; in getGraphBlock()
184 std::vector<Block *> GraphBlocks; variable
H A DELFLinkGraphBuilder.h90 assert(!GraphBlocks.count(SecIndex) && "Duplicate section at index"); in setGraphBlock()
91 GraphBlocks[SecIndex] = B; in setGraphBlock()
95 return GraphBlocks.lookup(SecIndex); in getGraphBlock()
184 DenseMap<ELFSectionIndex, Block *> GraphBlocks; variable
H A DCOFFLinkGraphBuilder.cpp118 GraphBlocks.resize(Obj.getNumberOfSections() + 1); in graphifySections()