Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Normalized

936 SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
949 SE.getEffectiveSCEVType(Normalized->getType())) ||
950 SE.getSCEV(PN) != Normalized)
988 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy,
1001 const SCEV *Step = Normalized->getStepRecurrence(SE);
1071 // Determine a normalized form of this expression, which is the expression
1073 const SCEVAddRecExpr *Normalized = S;
1077 Normalized =
1083 const SCEV *Start = Normalized->getStart();
1087 Start = SE.getConstant(Normalized->getType(), 0);
1088 Normalized = cast<SCEVAddRecExpr>(
1089 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE),
1090 Normalized->getLoop(),
1091 // FIXME: Normalized->getNoWrapFlags(FlagNW)
1096 const SCEV *Step = Normalized->getStepRecurrence(SE);
1100 Step = SE.getConstant(Normalized->getType(), 1);
1101 Normalized =
1103 Normalized->getLoop(),
1104 // FIXME: Normalized
1112 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy);