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

References

lib/Analysis/DependenceAnalysis.cpp
 3127   LLVM_DEBUG(dbgs() << "\t\tDst = " << *Dst << "\n");
 3136     const SCEV *AP_K = findCoefficient(Dst, CurLoop);
 3139     Dst = zeroCoefficient(Dst, CurLoop);
 3139     Dst = zeroCoefficient(Dst, CurLoop);
 3154     if (!findCoefficient(Dst, CurLoop)->isZero())
 3168     Dst = addToCoefficient(Dst, CurLoop, A_K);
 3168     Dst = addToCoefficient(Dst, CurLoop, A_K);
 3169     if (!findCoefficient(Dst, CurLoop)->isZero())
 3176     Dst = SE->getMulExpr(Dst, A);
 3176     Dst = SE->getMulExpr(Dst, A);
 3179     Dst = addToCoefficient(Dst, CurLoop, SE->getMulExpr(A_K, B));
 3179     Dst = addToCoefficient(Dst, CurLoop, SE->getMulExpr(A_K, B));
 3180     if (!findCoefficient(Dst, CurLoop)->isZero())
 3184   LLVM_DEBUG(dbgs() << "\t\tnew Dst = " << *Dst << "\n");