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.cpp20506 auto RootCount = StoreRootCountMap.find(StoreNode); in getStoreMergeCandidates() local
20507 return RootCount != StoreRootCountMap.end() && in getStoreMergeCandidates()
20508 RootCount->second.first == RootNode && in getStoreMergeCandidates()
20509 RootCount->second.second > StoreMergeDependenceLimit; in getStoreMergeCandidates()
20613 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; in checkMergeStoreCandidatesForDependencies() local
20614 if (RootCount.first == RootNode) in checkMergeStoreCandidatesForDependencies()
20615 RootCount.second++; in checkMergeStoreCandidatesForDependencies()
20617 RootCount = {RootNode, 1}; in checkMergeStoreCandidatesForDependencies()