Lines Matching refs:Normalized
1031 SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
1044 SE.getEffectiveSCEVType(Normalized->getType())) ||
1045 SE.getSCEV(PN) != Normalized)
1095 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy,
1105 const SCEV *Step = Normalized->getStepRecurrence(SE);
1163 // Determine a normalized form of this expression, which is the expression
1165 const SCEVAddRecExpr *Normalized = S;
1169 Normalized =
1175 const SCEV *Start = Normalized->getStart();
1179 Start = SE.getConstant(Normalized->getType(), 0);
1180 Normalized = cast<SCEVAddRecExpr>(
1181 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE),
1182 Normalized->getLoop(),
1183 // FIXME: Normalized->getNoWrapFlags(FlagNW)
1188 const SCEV *Step = Normalized->getStepRecurrence(SE);
1192 Step = SE.getConstant(Normalized->getType(), 1);
1193 Normalized =
1195 Normalized->getLoop(),
1196 // FIXME: Normalized
1204 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy);