Searched refs:SortedGraph (Results 1 – 4 of 4) sorted by relevance
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyCommon.h | 163 SortedGraph = AC.getAnalysis<PostOrderCFGView>(); in init() 164 if (!SortedGraph) in init() 177 for (const auto *CurrBlock : *SortedGraph) { in walk() 261 const PostOrderCFGView *getSortedGraph() const { return SortedGraph; } in getSortedGraph() 266 PostOrderCFGView *SortedGraph = nullptr; variable
|
H A D | Consumed.h | 213 ConsumedBlockInfo(unsigned int NumBlocks, PostOrderCFGView *SortedGraph) in ConsumedBlockInfo() argument 216 for (const auto BI : *SortedGraph) in ConsumedBlockInfo()
|
/openbsd-src/gnu/llvm/clang/lib/Analysis/ |
H A D | ThreadSafety.cpp | 513 void traverseCFG(CFG *CFGraph, const PostOrderCFGView *SortedGraph, 728 const PostOrderCFGView *SortedGraph, in traverseCFG() argument 732 for (const auto *CurrBlock : *SortedGraph) { in traverseCFG() 810 const PostOrderCFGView *SortedGraph, in findBlockLocations() argument 812 for (const auto *CurrBlock : *SortedGraph) { in findBlockLocations() 2266 const PostOrderCFGView *SortedGraph = walker.getSortedGraph(); in runAnalysis() local 2273 LocalVarMap.traverseCFG(CFGraph, SortedGraph, BlockInfo); in runAnalysis() 2276 findBlockLocations(CFGraph, SortedGraph, BlockInfo); in runAnalysis() 2285 if (!SortedGraph->empty() && D->hasAttrs()) { in runAnalysis() 2286 const CFGBlock *FirstBlock = *SortedGraph->begin(); in runAnalysis() [all …]
|
H A D | Consumed.cpp | 1315 PostOrderCFGView *SortedGraph = AC.getAnalysis<PostOrderCFGView>(); in run() local 1318 BlockInfo = ConsumedBlockInfo(CFGraph->getNumBlockIDs(), SortedGraph); in run() 1328 for (const auto *CurrBlock : *SortedGraph) { in run()
|