Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Rs

800     SmallVector<const SCEV *, 2> Qs, Rs;
812 Rs.push_back(R);
817 Remainder = Rs[0];
822 Remainder = SE.getAddExpr(Rs);
4015 const SCEV *RS = getNoopOrSignExtend(getSCEV(RHS), I->getType());
4019 const SCEV *RDiff = getMinusSCEV(RA, RS);
4021 return getAddExpr(getSMaxExpr(LS, RS), LDiff);
4022 LDiff = getMinusSCEV(LA, RS);
4025 return getAddExpr(getSMinExpr(LS, RS), LDiff);
4038 const SCEV *RS = getNoopOrZeroExtend(getSCEV(RHS), I->getType());
4042 const SCEV *RDiff = getMinusSCEV(RA, RS);
4044 return getAddExpr(getUMaxExpr(LS, RS), LDiff);
4045 LDiff = getMinusSCEV(LA, RS);
4048 return getAddExpr(getUMinExpr(LS, RS), LDiff);