Lines Matching refs:Normalized
1212 SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized, in getAddRecExprPHILiterally() argument
1250 bool IsMatchingSCEV = PhiSCEV == Normalized; in getAddRecExprPHILiterally()
1286 canBeCheaplyTransformed(SE, PhiSCEV, Normalized, InvertStep)) { in getAddRecExprPHILiterally()
1291 TruncTy = SE.getEffectiveSCEVType(Normalized->getType()); in getAddRecExprPHILiterally()
1330 expandCodeForImpl(Normalized->getStart(), ExpandTy, in getAddRecExprPHILiterally()
1341 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally()
1355 bool IncrementIsNUW = !useSubtract && IsIncrementNUW(SE, Normalized); in getAddRecExprPHILiterally()
1356 bool IncrementIsNSW = !useSubtract && IsIncrementNSW(SE, Normalized); in getAddRecExprPHILiterally()
1410 const SCEVAddRecExpr *Normalized = S; in expandAddRecExprLiterally() local
1414 Normalized = cast<SCEVAddRecExpr>(normalizeForPostIncUse(S, Loops, SE)); in expandAddRecExprLiterally()
1418 const SCEV *Start = Normalized->getStart(); in expandAddRecExprLiterally()
1422 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1423 Normalized = cast<SCEVAddRecExpr>( in expandAddRecExprLiterally()
1424 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE), in expandAddRecExprLiterally()
1425 Normalized->getLoop(), in expandAddRecExprLiterally()
1426 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1430 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally()
1434 Step = SE.getConstant(Normalized->getType(), 1); in expandAddRecExprLiterally()
1440 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1442 Normalized = in expandAddRecExprLiterally()
1444 Start, Step, Normalized->getLoop(), in expandAddRecExprLiterally()
1445 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1454 DL.isNonIntegralPointerType(STy) ? Normalized->getType() : ExpandTy; in expandAddRecExprLiterally()
1460 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, AddRecPHIExpandTy, in expandAddRecExprLiterally()
1528 expandCodeForImpl(Normalized->getStart(), TruncTy, false), Result); in expandAddRecExprLiterally()