Lines Matching defs:R1Value
835 auto &R1Value = *R1;
838 assert(!R1Value.isEmpty(SE, /* IsSigned */ true) &&
843 if (R1Value.getType() != R2.getType())
846 const SCEV *NewBegin = SE.getSMaxExpr(R1Value.getBegin(), R2.getBegin());
847 const SCEV *NewEnd = SE.getSMinExpr(R1Value.getEnd(), R2.getEnd());
864 auto &R1Value = *R1;
867 assert(!R1Value.isEmpty(SE, /* IsSigned */ false) &&
872 if (R1Value.getType() != R2.getType())
875 const SCEV *NewBegin = SE.getUMaxExpr(R1Value.getBegin(), R2.getBegin());
876 const SCEV *NewEnd = SE.getUMinExpr(R1Value.getEnd(), R2.getEnd());