| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | InstructionCost.h | 62 static CostType getMinValue() { return std::numeric_limits<CostType>::min(); } in getMinValue() function 72 static InstructionCost getMin() { return getMinValue(); } in getMin() 105 Result = RHS.Value > 0 ? getMaxValue() : getMinValue(); 123 Result = RHS.Value > 0 ? getMinValue() : getMaxValue(); 143 Result = getMinValue();
|
| H A D | KnownBits.h | 120 APInt getMinValue() const { in getMinValue() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | KnownBits.cpp | 28 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne; in computeForAddCarry() 134 if (LHS.getMinValue().uge(RHS.getMaxValue())) in umax() 136 if (RHS.getMinValue().uge(LHS.getMaxValue())) in umax() 142 KnownBits L = LHS.makeGE(RHS.getMinValue()); in umax() 143 KnownBits R = RHS.makeGE(LHS.getMinValue()); in umax() 381 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt() 384 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt() 520 (void)LHS.getMinValue().uadd_ov(RHS.getMinValue(), Of); in computeForSatAddSub() 527 (void)LHS.getMinValue().usub_ov(RHS.getMaxValue(), Of); in computeForSatAddSub() 605 C = APInt::getMinValue(BitWidth); in computeForSatAddSub() [all …]
|
| H A D | APFixedPoint.cpp | 128 auto Val = APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned()); in getMin() 451 APSInt DstMin = APSInt::getMinValue(DstWidth, !DstSign); in convertToInt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | BasicValueFactory.h | 198 const llvm::APSInt &getMinValue(const llvm::APSInt &v) { in getMinValue() function 199 return getValue(APSIntType(v).getMinValue()); in getMinValue() 206 const llvm::APSInt &getMinValue(QualType T) { in getMinValue() function 207 return getMinValue(getAPSIntType(T)); in getMinValue() 214 const llvm::APSInt &getMinValue(APSIntType T) { in getMinValue() function 215 return getValue(T.getMinValue()); in getMinValue()
|
| H A D | APSIntType.h | 60 llvm::APSInt getMinValue() const LLVM_READONLY { in getMinValue() function 61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned); in getMinValue()
|
| H A D | RangedConstraintManager.h | 339 const llvm::APSInt &getMinValue() const; 356 APSIntType T{getMinValue()}; in containsZero()
|
| H A D | SValBuilder.h | 115 virtual const llvm::APSInt *getMinValue(ProgramStateRef state, SVal val) = 0;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 181 const APSInt Min = Ty.getMinValue(); in unite() 385 APSIntType Type(getMinValue()); in pin() 399 APSIntType Type(getMinValue()); in pin() 413 Lower = Type.getMinValue(); in pin() 418 Lower = Type.getMinValue(); in pin() 423 Lower = Type.getMinValue(); in pin() 454 Lower = Type.getMinValue(); in pin() 464 Lower = Type.getMinValue(); in pin() 598 RHS.getMaxValue() < LHS.getMinValue()) in intersect() 795 APSInt LastConvertedInt = Ty.getMinValue(); in convertTo() [all …]
|
| H A D | SimpleSValBuilder.cpp | 86 const llvm::APSInt *getMinValue(ProgramStateRef state, SVal V) override; 1223 const llvm::APSInt *SimpleSValBuilder::getMinValue(ProgramStateRef state, in getMinValue() function in SimpleSValBuilder
|
| H A D | ProgramState.cpp | 333 nonloc::ConcreteInt Min(BVF.getMinValue(indexTy)); in assumeInBoundDual()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | OpDescriptor.cpp | 22 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W))); in makeConstantsWithType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 45 : Lower(Full ? APInt::getMaxValue(BitWidth) : APInt::getMinValue(BitWidth)), in ConstantRange() 69 return ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1); in fromKnownBits() 73 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() 116 return ConstantRange(APInt::getMinValue(W), std::move(UMax)); in makeAllowedICmpRegion() 125 return getNonEmpty(APInt::getMinValue(W), CR.getUnsignedMax() + 1); in makeAllowedICmpRegion() 254 APIntOps::RoundingUDiv(APInt::getMinValue(BitWidth), V, in makeExactMulNUWRegion() 316 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth)); in makeGuaranteedNoWrapRegion() 434 return APInt::getMinValue(getBitWidth()); in getUnsignedMin() 743 APInt Min = APInt::getMinValue(BW); in castOp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APSInt.h | 311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() function 312 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue()
|
| H A D | APInt.h | 194 static APInt getMinValue(unsigned numBits) { return APInt(numBits, 0); } in getMinValue() function
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | BitwiseShiftChecker.cpp | 180 if (const llvm::APSInt *MinRight = SVB.getMinValue(FoldedState, Right)) { in checkOvershift()
|
| H A D | StdLibraryFunctionsChecker.cpp | 941 else if (RMin == BVF.getMinValue(ArgT)) { in appendInsideRangeDesc() 968 } else if (RMin == BVF.getMinValue(ArgT)) { in appendOutOfRangeDesc() 1008 const llvm::APSInt &MinusInf = BVF.getMinValue(ArgT); in applyOnOutOfRange() 3636 const RangeInt IntMin = BVF.getMinValue(IntTy).getLimitedValue(); in initFunctionSummaries()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCInstrInfo.cpp | 364 int HexagonMCInstrInfo::getMinValue(MCInstrInfo const &MCII, in getMinValue() function in HexagonMCInstrInfo 577 int32_t MinValue = HexagonMCInstrInfo::getMinValue(MCII, MCI); in isConstExtended() 582 uint32_t MinValue = HexagonMCInstrInfo::getMinValue(MCII, MCI); in isConstExtended()
|
| H A D | HexagonMCInstrInfo.h | 161 int getMinValue(MCInstrInfo const &MCII, MCInst const &MCI);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrInfo.h | 466 int getMinValue(const MachineInstr &MI) const;
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
| H A D | TestBean.java | 395 getMinValue() in getMinValue() method in TestBean
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | GISelKnownBits.cpp | 135 BitWidth, WidthKnown.getMinValue().getLimitedValue(BitWidth)); in extractBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopConstrainer.cpp | 53 : APInt::getMinValue(BitWidth); in isSafeDecreasingBound()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAtomicOptimizer.cpp | 649 return ConstantInt::get(C, APInt::getMinValue(BitWidth)); in getIdentityValueForAtomicOp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 1256 return SE->getConstant(APInt::getMinValue(BitWidth) - in getUnsignedOverflowLimitForStep() 2362 : APInt::getMinValue(NumBits); in willNotOverflow() 5220 const SCEV *N = getConstant(APInt::getMinValue(BitWidth) - in proveNoUnsignedWrapViaInduction() 6487 return ConstantRange::getNonEmpty(KnownEnd.getMinValue(), in getRangeForUnknownRecurrence() 6491 return ConstantRange::getNonEmpty(KnownStart.getMinValue(), in getRangeForUnknownRecurrence() 6503 return ConstantRange::getNonEmpty(KnownEnd.getMinValue(), in getRangeForUnknownRecurrence() 6511 return ConstantRange(KnownStart.getMinValue(), in getRangeForUnknownRecurrence() 6634 ConstantRange(APInt::getMinValue(BitWidth), in getRangeRef() 6863 if (Known.getMinValue() != Known.getMaxValue() + 1) in getRangeRef() 6865 ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1), in getRangeRef() [all …]
|