Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp1597 APInt SignedMax = APInt::getSignedMaxValue(getBitWidth()); in signedAddMayOverflow() local
1602 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1609 Max.sgt(SignedMax - OtherMax)) in signedAddMayOverflow()
1643 APInt SignedMax = APInt::getSignedMaxValue(getBitWidth()); in signedSubMayOverflow() local
1648 Min.sgt(SignedMax + OtherMax)) in signedSubMayOverflow()
1655 Max.sgt(SignedMax + OtherMin)) in signedSubMayOverflow()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp45481 APInt SignedMax, SignedMin; in detectSSatPattern() local
45483 SignedMax = APInt::getAllOnesValue(NumDstBits).zext(NumSrcBits); in detectSSatPattern()
45486 SignedMax = APInt::getSignedMaxValue(NumDstBits).sext(NumSrcBits); in detectSSatPattern()
45490 if (SDValue SMin = MatchMinMax(In, ISD::SMIN, SignedMax)) in detectSSatPattern()
45495 if (SDValue SMin = MatchMinMax(SMax, ISD::SMIN, SignedMax)) in detectSSatPattern()