Lines Matching defs:RootCount
20506 auto RootCount = StoreRootCountMap.find(StoreNode);
20507 return RootCount != StoreRootCountMap.end() &&
20508 RootCount->second.first == RootNode &&
20509 RootCount->second.second > StoreMergeDependenceLimit;
20613 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode];
20614 if (RootCount.first == RootNode)
20615 RootCount.second++;
20617 RootCount = {RootNode, 1};