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

References

lib/Transforms/Scalar/LoopRerollPass.cpp
  576        IE = Header->getFirstInsertionPt(); I != IE; ++I) {
  576        IE = Header->getFirstInsertionPt(); I != IE; ++I) {
  577     if (!isa<PHINode>(I))
  579     if (!I->getType()->isIntegerTy() && !I->getType()->isPointerTy())
  579     if (!I->getType()->isIntegerTy() && !I->getType()->isPointerTy())
  583             dyn_cast<SCEVAddRecExpr>(SE->getSCEV(&*I))) {
  590         IVToIncMap[&*I] = IncSCEV->getValue()->getSExtValue();
  591         LLVM_DEBUG(dbgs() << "LRR: Possible IV: " << *I << " = " << *PHISCEV
  594         if (isLoopControlIV(L, &*I)) {
  596           LoopControlIV = &(*I);
  597           LLVM_DEBUG(dbgs() << "LRR: Possible loop control only IV: " << *I
  600           PossibleIVs.push_back(&*I);