Lines Matching refs: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()
215 SmallVector<DominatorTree::UpdateType, 8> Updates; in runImpl() local
224 Updates.reserve(IndirectBrSuccs.size()); in runImpl()
226 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
227 assert(Updates.size() == IndirectBrSuccs.size() && in runImpl()
243 Updates.reserve(IndirectBrs.size() + 2 * IndirectBrSuccs.size()); in runImpl()
248 Updates.push_back({DominatorTree::Insert, IBr->getParent(), SwitchBB}); in runImpl()
250 Updates.push_back({DominatorTree::Delete, IBr->getParent(), SuccBB}); in runImpl()
268 Updates.reserve(Updates.size() + BBs.size()); in runImpl()
271 Updates.push_back({DominatorTree::Insert, SwitchBB, BB}); in runImpl()
273 DTU->applyUpdates(Updates); in runImpl()