Home
last modified time | relevance | path

Searched refs:RHSRange (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLazyValueInfo.cpp950 const ConstantRange &RHSRange = RHSRes.value(); in solveBlockValueBinaryOpImpl() local
951 return ValueLatticeElement::getRange(OpFn(LHSRange, RHSRange)); in solveBlockValueBinaryOpImpl()
1061 ConstantRange RHSRange(RHS->getType()->getIntegerBitWidth(), in getValueFromSimpleICmpCondition() local
1064 RHSRange = ConstantRange(CI->getValue()); in getValueFromSimpleICmpCondition()
1067 RHSRange = getConstantRangeFromMetadata(*Ranges); in getValueFromSimpleICmpCondition()
1070 ConstantRange::makeAllowedICmpRegion(Pred, RHSRange); in getValueFromSimpleICmpCondition()
H A DValueTracking.cpp4854 return mapOverflowResult(LHSRange.unsignedMulMayOverflow(RHSRange)); in computeOverflowForUnsignedMul()
4907 ConstantRange RHSRange = computeConstantRangeIncludingKnownBits( in computeOverflowForUnsignedAdd() local
4910 return mapOverflowResult(LHSRange.unsignedAddMayOverflow(RHSRange)); in computeOverflowForUnsignedAdd()
4944 ConstantRange RHSRange = computeConstantRangeIncludingKnownBits( in computeOverflowForSignedAdd() local
4947 mapOverflowResult(LHSRange.signedAddMayOverflow(RHSRange)); in computeOverflowForSignedAdd()
4961 (LHSRange.isAllNonNegative() || RHSRange.isAllNonNegative()); in computeOverflowForSignedAdd()
4963 (LHSRange.isAllNegative() || RHSRange.isAllNegative()); in computeOverflowForSignedAdd()
5010 ConstantRange RHSRange = computeConstantRangeIncludingKnownBits( in computeOverflowForUnsignedSub() local
5012 return mapOverflowResult(LHSRange.unsignedSubMayOverflow(RHSRange)); in computeOverflowForUnsignedSub()
5042 ConstantRange RHSRange = computeConstantRangeIncludingKnownBits( in computeOverflowForSignedSub() local
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp398 SectionRange RHSRange(*RHS); in dumpSectionContents() local
399 return LHSRange.getStart() < RHSRange.getStart(); in dumpSectionContents()