Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp21520 auto RootCount = StoreRootCountMap.find(StoreNode); in getStoreMergeCandidates() local
21521 return RootCount != StoreRootCountMap.end() && in getStoreMergeCandidates()
21522 RootCount->second.first == RootNode && in getStoreMergeCandidates()
21523 RootCount->second.second > StoreMergeDependenceLimit; in getStoreMergeCandidates()
21628 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; in checkMergeStoreCandidatesForDependencies() local
21629 if (RootCount.first == RootNode) in checkMergeStoreCandidatesForDependencies()
21630 RootCount.second++; in checkMergeStoreCandidatesForDependencies()
21632 RootCount = {RootNode, 1}; in checkMergeStoreCandidatesForDependencies()