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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp15621 auto RootCount = StoreRootCountMap.find(StoreNode);
15622 if (RootCount != StoreRootCountMap.end() &&
15623 RootCount->second.first == RootNode &&
15624 RootCount->second.second > StoreMergeDependenceLimit)
15733 auto &RootCount = StoreRootCountMap[StoreNodes[i].MemNode]; local
15734 if (RootCount.first == RootNode)
15735 RootCount.second++;
15737 RootCount = {RootNode, 1};

Completed in 106 milliseconds