Lines Matching defs:R1Value
851 auto &R1Value = *R1;
854 assert(!R1Value.isEmpty(SE, /* IsSigned */ true) &&
859 if (R1Value.getType() != R2.getType())
862 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin());
863 const SCEV *NewEnd = SE.getSMinExpr(R1Value.getEnd(), R2.getEnd());
880 auto &R1Value = *R1;
883 assert(!R1Value.isEmpty(SE, /* IsSigned */ false) &&
888 if (R1Value.getType() != R2.getType())
891 const SCEV *NewBegin = SE.getUMaxExpr(R1Value.getBegin(), R2.getBegin());
892 const SCEV *NewEnd = SE.getUMinExpr(R1Value.getEnd(), R2.getEnd());