Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/docs/
H A DGarbageCollection.rst821 size_t RootCount = FI->roots_size();
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18810 auto RootCount = StoreRootCountMap.find(StoreNode); in getStoreMergeCandidates() local
18811 return RootCount != StoreRootCountMap.end() && in getStoreMergeCandidates()
18812 RootCount->second.first == RootNode && in getStoreMergeCandidates()
18813 RootCount->second.second > StoreMergeDependenceLimit; in getStoreMergeCandidates()
18930 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; in checkMergeStoreCandidatesForDependencies() local
18931 if (RootCount.first == RootNode) in checkMergeStoreCandidatesForDependencies()
18932 RootCount.second++; in checkMergeStoreCandidatesForDependencies()
18934 RootCount = {RootNode, 1}; in checkMergeStoreCandidatesForDependencies()