Searched refs:getMinValue (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp25 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h60 llvm::APSInt getMinValue() const LLVM_READONLY {
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
H A DBasicValueFactory.h175 const llvm::APSInt &getMinValue(const llvm::APSInt &v) { function in class:clang::ento::BasicValueFactory
176 return getValue(APSIntType(v).getMinValue());
183 const llvm::APSInt &getMinValue(QualType T) { function in class:clang::ento::BasicValueFactory
184 return getValue(getAPSIntType(T).getMinValue());
H A DRangedConstraintManager.h109 const llvm::APSInt &getMinValue() const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOpDescriptor.cpp19 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W)));
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp63 const llvm::APSInt &RangeSet::getMinValue() const { function in class:RangeSet
74 APSIntType Type(getMinValue());
88 Lower = Type.getMinValue();
93 Lower = Type.getMinValue();
98 Lower = Type.getMinValue();
129 Lower = Type.getMinValue();
139 Lower = Type.getMinValue();
170 IntersectInRange(BV, F, BV.getMinValue(Upper), Upper, newRanges, i, e);
217 newRanges = F.add(newRanges, Range(BV.getMinValue(from),
218 BV.getMinValue(fro
[all...]
H A DProgramState.cpp332 nonloc::ConcreteInt Min(BVF.getMinValue(indexTy));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h114 APInt getMinValue() const { function in struct:llvm::KnownBits
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DFixedPoint.cpp123 auto Val = llvm::APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned());
226 llvm::APSInt DstMin = llvm::APSInt::getMinValue(DstWidth, !DstSign);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp43 : Lower(Full ? APInt::getMaxValue(BitWidth) : APInt::getMinValue(BitWidth)),
67 return ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1);
71 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue();
96 return ConstantRange(APInt::getMinValue(W), std::move(UMax));
105 return getNonEmpty(APInt::getMinValue(W), CR.getUnsignedMax() + 1);
190 APIntOps::RoundingUDiv(APInt::getMinValue(BitWidth), V,
257 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth));
372 return APInt::getMinValue(getBitWidth());
648 APInt Min = APInt::getMinValue(BW).zextOrSelf(ResultBitWidth);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h292 /// getMinValue - Return the APSInt representing the minimum integer value
294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { function in class:llvm::APSInt
295 return APSInt(Unsigned ? APInt::getMinValue(numBits)
H A DAPInt.h546 static APInt getMinValue(unsigned numBits) { return APInt(numBits, 0); } function
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.h151 int getMinValue(MCInstrInfo const &MCII, MCInst const &MCI);
H A DHexagonMCInstrInfo.cpp332 int HexagonMCInstrInfo::getMinValue(MCInstrInfo const &MCII, function in class:HexagonMCInstrInfo
522 int MinValue = HexagonMCInstrInfo::getMinValue(MCII, MCI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h456 int getMinValue(const MachineInstr &MI) const;
H A DHexagonInstrInfo.cpp2066 int MinValue = getMinValue(MI);
4222 int HexagonInstrInfo::getMinValue(const MachineInstr &MI) const { function in class:HexagonInstrInfo
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAtomicOptimizer.cpp396 return APInt::getMinValue(BitWidth);
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java395 getMinValue() method in class:TestBean
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp284 const llvm::APSInt &MinusInf = BVF.getMinValue(T);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1028 APInt::getMinValue(BitWidth);
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp895 typelo = llvm::APInt::getMinValue(Bits).zext(128);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp680 APInt::getMinValue(BitWidth);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp1378 return SE->getConstant(APInt::getMinValue(BitWidth) -
1797 const SCEV *N = getConstant(APInt::getMinValue(BitWidth) -
5577 ConstantRange(APInt::getMinValue(BitWidth),
5745 if (Known.getMinValue() != Known.getMaxValue() + 1)
5747 ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1),
10585 APInt MinValue = APInt::getMinValue(BitWidth);
10838 : APInt::getMinValue(BitWidth) + (MinStride - 1);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp10649 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10652 PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1089 llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()),

Completed in 476 milliseconds

12