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

References

lib/Analysis/DependenceAnalysis.cpp
 2761           SE->getZero(A[K].Coeff->getType());
 2764           SE->getZero(A[K].Coeff->getType());
 2789     const SCEV *Delta = SE->getMinusSCEV(A[K].Coeff, B[K].Coeff);
 2789     const SCEV *Delta = SE->getMinusSCEV(A[K].Coeff, B[K].Coeff);
 2800     const SCEV *Delta = SE->getMinusSCEV(A[K].Coeff, B[K].Coeff);
 2800     const SCEV *Delta = SE->getMinusSCEV(A[K].Coeff, B[K].Coeff);
 2832       getNegativePart(SE->getMinusSCEV(A[K].NegPart, B[K].Coeff));
 2834       SE->getMinusSCEV(SE->getMulExpr(NegPart, Iter_1), B[K].Coeff);
 2836       getPositivePart(SE->getMinusSCEV(A[K].PosPart, B[K].Coeff));
 2838       SE->getMinusSCEV(SE->getMulExpr(PosPart, Iter_1), B[K].Coeff);
 2844       getNegativePart(SE->getMinusSCEV(A[K].NegPart, B[K].Coeff));
 2846       Bound[K].Lower[Dependence::DVEntry::LT] = SE->getNegativeSCEV(B[K].Coeff);
 2848       getPositivePart(SE->getMinusSCEV(A[K].PosPart, B[K].Coeff));
 2850       Bound[K].Upper[Dependence::DVEntry::LT] = SE->getNegativeSCEV(B[K].Coeff);
 2876       getNegativePart(SE->getMinusSCEV(A[K].Coeff, B[K].PosPart));
 2878       SE->getAddExpr(SE->getMulExpr(NegPart, Iter_1), A[K].Coeff);
 2880       getPositivePart(SE->getMinusSCEV(A[K].Coeff, B[K].NegPart));
 2882       SE->getAddExpr(SE->getMulExpr(PosPart, Iter_1), A[K].Coeff);
 2887     const SCEV *NegPart = getNegativePart(SE->getMinusSCEV(A[K].Coeff, B[K].PosPart));
 2889       Bound[K].Lower[Dependence::DVEntry::GT] = A[K].Coeff;
 2890     const SCEV *PosPart = getPositivePart(SE->getMinusSCEV(A[K].Coeff, B[K].NegPart));
 2892       Bound[K].Upper[Dependence::DVEntry::GT] = A[K].Coeff;
 2918     CI[K].Coeff = Zero;
 2926     CI[K].Coeff = AddRec->getStepRecurrence(*SE);
 2927     CI[K].PosPart = getPositivePart(CI[K].Coeff);
 2928     CI[K].NegPart = getNegativePart(CI[K].Coeff);
 2936     LLVM_DEBUG(dbgs() << "\t    " << K << "\t" << *CI[K].Coeff);