Home
last modified time | relevance | path

Searched refs:OtherMin (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp1436 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1439 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1452 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1459 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1460 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1469 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1470 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1482 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1485 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1498 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]
/external/llvm-project/llvm/lib/IR/
DConstantRange.cpp1549 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1552 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1565 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1572 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1573 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1582 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1583 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1595 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1598 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1611 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]