Lines Matching refs:Normalized

1140 SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,  in getAddRecExprPHILiterally()  argument
1170 bool IsMatchingSCEV = PhiSCEV == Normalized; in getAddRecExprPHILiterally()
1206 canBeCheaplyTransformed(SE, PhiSCEV, Normalized, InvertStep)) { in getAddRecExprPHILiterally()
1211 TruncTy = SE.getEffectiveSCEVType(Normalized->getType()); in getAddRecExprPHILiterally()
1246 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy, in getAddRecExprPHILiterally()
1257 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally()
1270 bool IncrementIsNUW = !useSubtract && IsIncrementNUW(SE, Normalized); in getAddRecExprPHILiterally()
1271 bool IncrementIsNSW = !useSubtract && IsIncrementNSW(SE, Normalized); in getAddRecExprPHILiterally()
1325 const SCEVAddRecExpr *Normalized = S; in expandAddRecExprLiterally() local
1329 Normalized = cast<SCEVAddRecExpr>(normalizeForPostIncUse(S, Loops, SE)); in expandAddRecExprLiterally()
1333 const SCEV *Start = Normalized->getStart(); in expandAddRecExprLiterally()
1337 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1338 Normalized = cast<SCEVAddRecExpr>( in expandAddRecExprLiterally()
1339 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE), in expandAddRecExprLiterally()
1340 Normalized->getLoop(), in expandAddRecExprLiterally()
1341 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1345 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally()
1349 Step = SE.getConstant(Normalized->getType(), 1); in expandAddRecExprLiterally()
1355 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1357 Normalized = in expandAddRecExprLiterally()
1359 Start, Step, Normalized->getLoop(), in expandAddRecExprLiterally()
1360 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1369 DL.isNonIntegralPointerType(STy) ? Normalized->getType() : ExpandTy; in expandAddRecExprLiterally()
1375 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, AddRecPHIExpandTy, in expandAddRecExprLiterally()
1431 Result = Builder.CreateSub(expandCodeFor(Normalized->getStart(), TruncTy), in expandAddRecExprLiterally()