reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/JumpThreading.cpp
  297   if (skipFunction(F))
  299   auto TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
  308   bool HasProfileData = F.hasProfileData();
  310     LoopInfo LI{DominatorTree(F)};
  311     BPI.reset(new BranchProbabilityInfo(F, LI, TLI));
  312     BFI.reset(new BlockFrequencyInfo(F, *BPI, LI));
  315   bool Changed = Impl.runImpl(F, TLI, LVI, AA, &DTU, HasProfileData,
  318     dbgs() << "LVI for function '" << F.getName() << "':\n";
  319     LVI->printLVI(F, *DT, dbgs());