Lines Matching defs:DT
229 static bool fixIrreducible(Cycle &C, CycleInfo &CI, DominatorTree &DT,
296 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
299 assert(DT.verify(DominatorTree::VerificationLevel::Full));
301 assert(DT.verify(DominatorTree::VerificationLevel::Fast));
324 static bool FixIrreducibleImpl(Function &F, CycleInfo &CI, DominatorTree &DT,
334 Changed |= fixIrreducible(*C, CI, DT, LI);
344 LI->verify(DT);
355 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
356 return FixIrreducibleImpl(F, CI, DT, LI);
363 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
365 if (!FixIrreducibleImpl(F, CI, DT, LI))