Lines Matching defs:CR1
7236 ConstantRange CR1 = ConstantRange::makeExactICmpRegion(
7239 CR1 = CR1.subtract(*Offset1);
7248 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2);
7251 if (CR1.isWrappedSet() || CR2.isWrappedSet())
7256 LowerDiff = CR1.getLower() ^ CR2.getLower();
7257 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1);
7258 APInt CR1Size = CR1.getUpper() - CR1.getLower();
7263 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2;