Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/docs/
H A DGarbageCollection.rst821 size_t RootCount = FI->roots_size();
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18153 auto RootCount = StoreRootCountMap.find(StoreNode); in getStoreMergeCandidates() local
18154 return RootCount != StoreRootCountMap.end() && in getStoreMergeCandidates()
18155 RootCount->second.first == RootNode && in getStoreMergeCandidates()
18156 RootCount->second.second > StoreMergeDependenceLimit; in getStoreMergeCandidates()
18273 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; in checkMergeStoreCandidatesForDependencies() local
18274 if (RootCount.first == RootNode) in checkMergeStoreCandidatesForDependencies()
18275 RootCount.second++; in checkMergeStoreCandidatesForDependencies()
18277 RootCount = {RootNode, 1}; in checkMergeStoreCandidatesForDependencies()