HomeSort by: relevance | last modified time | path
    Searched refs:getMinValue (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 60 llvm::APSInt getMinValue() const LLVM_READONLY {
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
BasicValueFactory.h 185 const llvm::APSInt &getMinValue(const llvm::APSInt &v) {
186 return getValue(APSIntType(v).getMinValue());
193 const llvm::APSInt &getMinValue(QualType T) {
194 return getMinValue(getAPSIntType(T));
201 const llvm::APSInt &getMinValue(APSIntType T) {
202 return getValue(T.getMinValue());
RangedConstraintManager.h 269 const llvm::APSInt &getMinValue() const;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
KnownBits.cpp 28 APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne;
122 if (LHS.getMinValue().uge(RHS.getMaxValue()))
124 if (RHS.getMinValue().uge(LHS.getMaxValue()))
130 KnownBits L = LHS.makeGE(RHS.getMinValue());
131 KnownBits R = RHS.makeGE(LHS.getMinValue());
186 APInt MinShiftAmount = RHS.getMinValue();
239 APInt MinShiftAmount = RHS.getMinValue();
291 APInt MinShiftAmount = RHS.getMinValue();
349 if (LHS.getMaxValue().ule(RHS.getMinValue()))
    [all...]
APFixedPoint.cpp 124 auto Val = APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned());
420 APSInt DstMin = APSInt::getMinValue(DstWidth, !DstSign);
  /src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
OpDescriptor.cpp 19 Cs.push_back(ConstantInt::get(IntTy, APInt::getMinValue(W)));
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 163 const llvm::APSInt &RangeSet::getMinValue() const {
186 APSIntType Type(getMinValue());
200 APSIntType Type(getMinValue());
214 Lower = Type.getMinValue();
219 Lower = Type.getMinValue();
224 Lower = Type.getMinValue();
255 Lower = Type.getMinValue();
265 Lower = Type.getMinValue();
293 if (What.getMaxValue() < Lower || Upper < What.getMinValue())
306 if (What.getMaxValue() < Lower && Upper < What.getMinValue())
    [all...]
ProgramState.cpp 339 nonloc::ConcreteInt Min(BVF.getMinValue(indexTy));
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 44 : Lower(Full ? APInt::getMaxValue(BitWidth) : APInt::getMinValue(BitWidth)),
68 return ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1);
72 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue();
97 return ConstantRange(APInt::getMinValue(W), std::move(UMax));
106 return getNonEmpty(APInt::getMinValue(W), CR.getUnsignedMax() + 1);
196 APIntOps::RoundingUDiv(APInt::getMinValue(BitWidth), V,
263 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth));
378 return APInt::getMinValue(getBitWidth());
669 APInt Min = APInt::getMinValue(BW).zextOrSelf(ResultBitWidth);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) {
295 return APSInt(Unsigned ? APInt::getMinValue(numBits)
APInt.h 547 static APInt getMinValue(unsigned numBits) { return APInt(numBits, 0); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 118 APInt getMinValue() const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 460 int getMinValue(const MachineInstr &MI) const;
HexagonInstrInfo.cpp 2094 int MinValue = getMinValue(MI);
4403 int HexagonInstrInfo::getMinValue(const MachineInstr &MI) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInstrInfo.h 153 int getMinValue(MCInstrInfo const &MCII, MCInst const &MCI);
HexagonMCInstrInfo.cpp 357 int HexagonMCInstrInfo::getMinValue(MCInstrInfo const &MCII,
567 int MinValue = HexagonMCInstrInfo::getMinValue(MCII, MCI);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAtomicOptimizer.cpp 437 return APInt::getMinValue(BitWidth);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 1299 return SE->getConstant(APInt::getMinValue(BitWidth) -
4548 const SCEV *N = getConstant(APInt::getMinValue(BitWidth) -
5739 return ConstantRange::getNonEmpty(KnownEnd.getMinValue(),
5743 return ConstantRange::getNonEmpty(KnownStart.getMinValue(),
5755 return ConstantRange::getNonEmpty(KnownEnd.getMinValue(),
5763 return ConstantRange(KnownStart.getMinValue(),
5802 ConstantRange(APInt::getMinValue(BitWidth),
6010 if (Known.getMinValue() != Known.getMaxValue() + 1)
6012 ConstantRange(Known.getMinValue(), Known.getMaxValue() + 1),
11229 APInt MinValue = APInt::getMinValue(BitWidth)
    [all...]
InstructionSimplify.cpp 1270 if (KnownAmt.getMinValue().uge(KnownAmt.getBitWidth()))
5348 case Intrinsic::umin: return APInt::getMinValue(BitWidth);
ConstantFolding.cpp 2458 return ConstantInt::get(Ty, APInt::getMinValue(BitWidth));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 696 APInt::getMinValue(BitWidth);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopUtils.cpp 1121 APInt::getMinValue(BitWidth);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 5069 Op0Min = Op0Known.getMinValue();
5071 Op1Min = Op1Known.getMinValue();
5957 UMin.convertFromAPInt(APInt::getMinValue(IntWidth), false,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
StdLibraryFunctionsChecker.cpp 748 const llvm::APSInt &MinusInf = BVF.getMinValue(T);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstCombineIntrinsic.cpp 222 if (KnownAmtBits.getMinValue().uge(BitWidth)) {

Completed in 57 milliseconds

1 2