• Home
  • Raw
  • Download

Lines Matching refs:Normalized

1183 SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,  in getAddRecExprPHILiterally()  argument
1221 bool IsMatchingSCEV = PhiSCEV == Normalized; in getAddRecExprPHILiterally()
1257 canBeCheaplyTransformed(SE, PhiSCEV, Normalized, InvertStep)) { in getAddRecExprPHILiterally()
1262 TruncTy = SE.getEffectiveSCEVType(Normalized->getType()); in getAddRecExprPHILiterally()
1301 expandCodeForImpl(Normalized->getStart(), ExpandTy, in getAddRecExprPHILiterally()
1312 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally()
1326 bool IncrementIsNUW = !useSubtract && IsIncrementNUW(SE, Normalized); in getAddRecExprPHILiterally()
1327 bool IncrementIsNSW = !useSubtract && IsIncrementNSW(SE, Normalized); in getAddRecExprPHILiterally()
1380 const SCEVAddRecExpr *Normalized = S; in expandAddRecExprLiterally() local
1384 Normalized = cast<SCEVAddRecExpr>(normalizeForPostIncUse(S, Loops, SE)); in expandAddRecExprLiterally()
1388 const SCEV *Start = Normalized->getStart(); in expandAddRecExprLiterally()
1392 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1393 Normalized = cast<SCEVAddRecExpr>( in expandAddRecExprLiterally()
1394 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE), in expandAddRecExprLiterally()
1395 Normalized->getLoop(), in expandAddRecExprLiterally()
1396 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1400 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally()
1404 Step = SE.getConstant(Normalized->getType(), 1); in expandAddRecExprLiterally()
1410 Start = SE.getConstant(Normalized->getType(), 0); in expandAddRecExprLiterally()
1412 Normalized = in expandAddRecExprLiterally()
1414 Start, Step, Normalized->getLoop(), in expandAddRecExprLiterally()
1415 Normalized->getNoWrapFlags(SCEV::FlagNW))); in expandAddRecExprLiterally()
1424 DL.isNonIntegralPointerType(STy) ? Normalized->getType() : ExpandTy; in expandAddRecExprLiterally()
1430 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, AddRecPHIExpandTy, in expandAddRecExprLiterally()
1487 expandCodeForImpl(Normalized->getStart(), TruncTy, false), Result); in expandAddRecExprLiterally()