Lines Matching defs:Updates
297 std::vector<DominatorTree::UpdateType> Updates;
298 Updates.reserve(RemovedSuccessors.size());
300 Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor});
301 DTU->applyUpdates(Updates);
380 std::vector<DominatorTree::UpdateType> Updates;
381 Updates.reserve(RemovedSuccessors.size());
383 Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor});
384 DTU->applyUpdates(Updates);
790 SmallVector<DominatorTree::UpdateType, 32> Updates;
795 Updates.reserve(Updates.size() + 2 * pred_size(PredBB) + 1);
800 Updates.push_back({DominatorTree::Insert, PredOfPredBB, DestBB});
804 Updates.push_back({DominatorTree::Delete, PredOfPredBB, PredBB});
805 Updates.push_back({DominatorTree::Delete, PredBB, DestBB});
837 DTU->applyUpdatesPermissive(Updates);
1263 SmallVector<DominatorTree::UpdateType, 32> Updates;
1270 Updates.reserve(Updates.size() + 2 * pred_size(BB) + 1);
1276 Updates.push_back({DominatorTree::Insert, PredOfBB, Succ});
1285 Updates.push_back({DominatorTree::Delete, PredOfBB, BB});
1288 Updates.push_back({DominatorTree::Delete, BB, Succ});
1350 DTU->applyUpdates(Updates);
2873 SmallVector<DominatorTree::UpdateType, 8> Updates;
2874 Updates.reserve(UniqueSuccessors.size());
2876 Updates.push_back({DominatorTree::Delete, BB, UniqueSuccessor});
2877 DTU->applyUpdates(Updates);
3154 std::vector<DominatorTree::UpdateType> Updates;
3157 Updates.push_back({DominatorTree::Delete, BB, I.first});
3158 DTU->applyUpdates(Updates);