reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
3126 LLVM_DEBUG(dbgs() << "\t\tSrc = " << *Src << "\n"); 3138 Src = SE->getMinusSCEV(Src, SE->getMulExpr(AP_K, SE->getConstant(CdivB))); 3138 Src = SE->getMinusSCEV(Src, SE->getMulExpr(AP_K, SE->getConstant(CdivB))); 3140 if (!findCoefficient(Src, CurLoop)->isZero()) 3151 const SCEV *A_K = findCoefficient(Src, CurLoop); 3152 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, SE->getConstant(CdivA))); 3152 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, SE->getConstant(CdivA))); 3153 Src = zeroCoefficient(Src, CurLoop); 3153 Src = zeroCoefficient(Src, CurLoop); 3165 const SCEV *A_K = findCoefficient(Src, CurLoop); 3166 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, SE->getConstant(CdivA))); 3166 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, SE->getConstant(CdivA))); 3167 Src = zeroCoefficient(Src, CurLoop); 3167 Src = zeroCoefficient(Src, CurLoop); 3174 const SCEV *A_K = findCoefficient(Src, CurLoop); 3175 Src = SE->getMulExpr(Src, A); 3175 Src = SE->getMulExpr(Src, A); 3177 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, C)); 3177 Src = SE->getAddExpr(Src, SE->getMulExpr(A_K, C)); 3178 Src = zeroCoefficient(Src, CurLoop); 3178 Src = zeroCoefficient(Src, CurLoop); 3183 LLVM_DEBUG(dbgs() << "\t\tnew Src = " << *Src << "\n");