Lines Matching defs:CR1
1342 ConstantRange CR1 = ConstantRange::makeExactICmpRegion(
1345 CR1 = CR1.subtract(*Offset1);
1354 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2);
1356 if (!(ICmp1->hasOneUse() && ICmp2->hasOneUse()) || CR1.isWrappedSet() ||
1362 APInt LowerDiff = CR1.getLower() ^ CR2.getLower();
1363 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1);
1364 APInt CR1Size = CR1.getUpper() - CR1.getLower();
1369 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2;
4177 ConstantRange CR1 = ConstantRange::makeExactICmpRegion(PredL, *LC);
4179 auto CRUnion = CR1.exactUnionWith(CR2);
4180 auto CRIntersect = CR1.exactIntersectWith(CR2);