Lines Matching defs:CR1
1293 ConstantRange CR1 = ConstantRange::makeExactICmpRegion(
1296 CR1 = CR1.subtract(*Offset1);
1305 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2);
1307 if (!(ICmp1->hasOneUse() && ICmp2->hasOneUse()) || CR1.isWrappedSet() ||
1313 APInt LowerDiff = CR1.getLower() ^ CR2.getLower();
1314 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1);
1315 APInt CR1Size = CR1.getUpper() - CR1.getLower();
1320 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2;
4147 ConstantRange CR1 = ConstantRange::makeExactICmpRegion(PredL, *LC);
4149 auto CRUnion = CR1.exactUnionWith(CR2);
4150 auto CRIntersect = CR1.exactIntersectWith(CR2);