Lines Matching full:updates
178 SmallVector<DominatorTree::UpdateType, 8> Updates; in runImpl() local
180 Updates.reserve(IndirectBrSuccs.size()); in runImpl()
184 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
190 assert(Updates.size() == IndirectBrSuccs.size() && in runImpl()
192 DTU->applyUpdates(Updates); in runImpl()
216 SmallVector<DominatorTree::UpdateType, 8> Updates; in runImpl() local
225 Updates.reserve(IndirectBrSuccs.size()); in runImpl()
227 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
228 assert(Updates.size() == IndirectBrSuccs.size() && in runImpl()
244 Updates.reserve(IndirectBrs.size() + 2 * IndirectBrSuccs.size()); in runImpl()
249 Updates.push_back({DominatorTree::Insert, IBr->getParent(), SwitchBB}); in runImpl()
251 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
269 Updates.reserve(Updates.size() + BBs.size()); in runImpl()
272 Updates.push_back({DominatorTree::Insert, SwitchBB, BB}); in runImpl()
274 DTU->applyUpdates(Updates); in runImpl()