Lines Matching refs:DTUpdates

848   SmallVector<DominatorTree::UpdateType, 4> DTUpdates;  in unswitchTrivialSwitch()  local
850 DTUpdates.push_back({DT.Delete, ParentBB, UnswitchedExitBB}); in unswitchTrivialSwitch()
851 DTUpdates.push_back({DT.Insert, OldPH, UnswitchedExitBB}); in unswitchTrivialSwitch()
854 DTUpdates.push_back({DT.Delete, ParentBB, SplitUnswitchedPair.first}); in unswitchTrivialSwitch()
855 DTUpdates.push_back({DT.Insert, OldPH, SplitUnswitchedPair.second}); in unswitchTrivialSwitch()
857 DT.applyUpdates(DTUpdates); in unswitchTrivialSwitch()
860 MSSAU->applyUpdates(DTUpdates, DT); in unswitchTrivialSwitch()
1016 SmallVectorImpl<DominatorTree::UpdateType> &DTUpdates, AssumptionCache &AC, in buildClonedLoopBlocks() argument
1182 DTUpdates.push_back({DominatorTree::Insert, ClonedBB, SuccBB}); in buildClonedLoopBlocks()
2080 SmallVector<DominatorTree::UpdateType, 4> DTUpdates; in unswitchNontrivialInvariants() local
2090 DominatingSucc, *VMaps.back(), DTUpdates, AC, DT, LI, MSSAU); in unswitchNontrivialInvariants()
2128 DTUpdates.push_back({DominatorTree::Insert, SplitBB, ClonedPH}); in unswitchNontrivialInvariants()
2146 DTUpdates.push_back( in unswitchNontrivialInvariants()
2151 DT.applyUpdates(DTUpdates); in unswitchNontrivialInvariants()
2152 DTUpdates.clear(); in unswitchNontrivialInvariants()
2181 DTUpdates.push_back({DominatorTree::Delete, ParentBB, UnswitchedSuccBB}); in unswitchNontrivialInvariants()
2201 DTUpdates.push_back({DominatorTree::Delete, ParentBB, SuccBB}); in unswitchNontrivialInvariants()
2219 DTUpdates.push_back({DominatorTree::Insert, SplitBB, ClonedPH}); in unswitchNontrivialInvariants()
2222 DT.applyUpdates(DTUpdates); in unswitchNontrivialInvariants()
2223 DTUpdates.clear(); in unswitchNontrivialInvariants()
2234 DT.applyUpdates(DTUpdates); in unswitchNontrivialInvariants()
2454 SmallVector<DominatorTree::UpdateType, 4> DTUpdates; in turnGuardIntoBranch() local
2466 DTUpdates.push_back({DominatorTree::Delete, CheckBB, Succ}); in turnGuardIntoBranch()
2491 DTUpdates.push_back({DominatorTree::Insert, CheckBB, Succ}); in turnGuardIntoBranch()
2496 DTUpdates.push_back({DominatorTree::Insert, GuardedBlock, Succ}); in turnGuardIntoBranch()
2499 DT.applyUpdates(DTUpdates); in turnGuardIntoBranch()