Lines Matching defs:RootCount
20949 auto RootCount = StoreRootCountMap.find(StoreNode);
20950 return RootCount != StoreRootCountMap.end() &&
20951 RootCount->second.first == RootNode &&
20952 RootCount->second.second > StoreMergeDependenceLimit;
21057 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode];
21058 if (RootCount.first == RootNode)
21059 RootCount.second++;
21061 RootCount = {RootNode, 1};