Lines Matching defs:CR2
170 const ConstantRange &CR1, const ConstantRange &CR2) {
171 if (CR1.isEmptySet() || CR2.isEmptySet())
174 return (CR1.isAllNonNegative() && CR2.isAllNonNegative()) ||
175 (CR1.isAllNegative() && CR2.isAllNegative());
179 const ConstantRange &CR1, const ConstantRange &CR2) {
180 if (CR1.isEmptySet() || CR2.isEmptySet())
183 return (CR1.isAllNonNegative() && CR2.isAllNegative()) ||
184 (CR1.isAllNegative() && CR2.isAllNonNegative());
189 const ConstantRange &CR2) {
196 if (areInsensitiveToSignednessOfICmpPredicate(CR1, CR2))
199 if (areInsensitiveToSignednessOfInvertedICmpPredicate(CR1, CR2))
561 const ConstantRange &CR1, const ConstantRange &CR2,
564 if (!CR1.isWrappedSet() && CR2.isWrappedSet())
566 if (CR1.isWrappedSet() && !CR2.isWrappedSet())
567 return CR2;
569 if (!CR1.isSignWrappedSet() && CR2.isSignWrappedSet())
571 if (CR1.isSignWrappedSet() && !CR2.isSignWrappedSet())
572 return CR2;
575 if (CR1.isSizeStrictlySmallerThan(CR2))
577 return CR2;
1891 ConstantRange CR2 =
1893 return CR1.unionWith(CR2);
1906 ConstantRange CR2 = getUnsignedCountTrailingZerosRange(Zero, Upper);
1907 return CR1.unionWith(CR2);
1952 ConstantRange CR2 = getUnsignedPopCountRange(Zero, Upper);
1953 return CR1.unionWith(CR2);