Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DGarbageCollection.rst821 size_t RootCount = FI->roots_size();
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16976 auto RootCount = StoreRootCountMap.find(StoreNode); in getStoreMergeCandidates() local
16977 return RootCount != StoreRootCountMap.end() && in getStoreMergeCandidates()
16978 RootCount->second.first == RootNode && in getStoreMergeCandidates()
16979 RootCount->second.second > StoreMergeDependenceLimit; in getStoreMergeCandidates()
17089 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; in checkMergeStoreCandidatesForDependencies() local
17090 if (RootCount.first == RootNode) in checkMergeStoreCandidatesForDependencies()
17091 RootCount.second++; in checkMergeStoreCandidatesForDependencies()
17093 RootCount = {RootNode, 1}; in checkMergeStoreCandidatesForDependencies()