Home | History | Annotate | Download | only in Utils

Lines Matching refs:Updates

231       std::vector <DominatorTree::UpdateType> Updates;
233 Updates.reserve(SI->getNumSuccessors() - 1);
243 Updates.push_back({DominatorTree::Delete, BB, Succ});
253 DDT->applyUpdates(Updates);
299 std::vector <DominatorTree::UpdateType> Updates;
301 Updates.reserve(IBI->getNumDestinations() - 1);
314 Updates.push_back({DominatorTree::Delete, ParentBB, DestBB});
331 DDT->applyUpdates(Updates);
682 std::vector <DominatorTree::UpdateType> Updates;
684 Updates.reserve(1 + (2 * pred_size(PredBB)));
685 Updates.push_back({DominatorTree::Delete, PredBB, DestBB});
687 Updates.push_back({DominatorTree::Delete, *I, PredBB});
690 Updates.push_back({DominatorTree::Insert, *I, DestBB});
735 DDT->applyUpdates(Updates);
989 std::vector<DominatorTree::UpdateType> Updates;
991 Updates.reserve(1 + (2 * pred_size(BB)));
992 Updates.push_back({DominatorTree::Delete, BB, Succ});
995 Updates.push_back({DominatorTree::Delete, *I, BB});
998 Updates.push_back({DominatorTree::Insert, *I, Succ});
1049 DDT->applyUpdates(Updates);
1907 std::vector <DominatorTree::UpdateType> Updates;
1912 Updates.reserve(BB->getTerminator()->getNumSuccessors());
1916 Updates.push_back({DominatorTree::Delete, BB, Successor});
1938 DDT->applyUpdates(Updates);
1997 // updates the CallGraph if present, because it uses a WeakTrackingVH.
2221 std::vector <DominatorTree::UpdateType> Updates;
2230 Updates.push_back({DominatorTree::Delete, BB, Successor});
2252 DDT->applyUpdates(Updates);