Lines Matching defs:CR2
1298 ConstantRange CR2 = ConstantRange::makeExactICmpRegion(
1301 CR2 = CR2.subtract(*Offset2);
1305 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2);
1308 CR2.isWrappedSet())
1313 APInt LowerDiff = CR1.getLower() ^ CR2.getLower();
1314 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1);
1317 CR1Size != CR2.getUpper() - CR2.getLower())
1320 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2;
4148 ConstantRange CR2 = ConstantRange::makeExactICmpRegion(PredR, *RC);
4149 auto CRUnion = CR1.exactUnionWith(CR2);
4150 auto CRIntersect = CR1.exactIntersectWith(CR2);