Home
last modified time | relevance | path

Searched refs:isKnownNegative (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp100 if (StepRec && SE.isKnownNegative(StepRec)) in isOneDimensionalArray()
427 if (StepRec && SE.isKnownNegative(StepRec)) in delinearize()
492 Stride = SE.isKnownNegative(Stride) ? SE.getNegativeSCEV(Stride) : Stride; in isConsecutive()
H A DDependenceAnalysis.cpp1089 return SE->isKnownNegative(Delta); in isKnownPredicate()
1116 if (SE->isKnownNegative(Limit)) in isKnownLessThan()
1125 return SE->isKnownNegative(LimitedBound); in isKnownLessThan()
1397 if (SE->isKnownNegative(ConstCoeff)) { in weakCrossingSIVtest()
1419 if (SE->isKnownNegative(Delta)) { in weakCrossingSIVtest()
1792 SE->isKnownNegative(ConstCoeff) ? in weakZeroSrcSIVtest()
1795 SE->isKnownNegative(ConstCoeff) ? SE->getNegativeSCEV(Delta) : Delta; in weakZeroSrcSIVtest()
1820 if (SE->isKnownNegative(NewDelta)) { in weakZeroSrcSIVtest()
1901 SE->isKnownNegative(ConstCoeff) ? in weakZeroDstSIVtest()
1929 if (SE->isKnownNegative(NewDelta)) { in weakZeroDstSIVtest()
[all …]
H A DLoopInfo.cpp280 if (SE.isKnownNegative(StepRecur)) in getDirection()
H A DScalarEvolution.cpp1239 if (SE->isKnownNegative(Step)) { in getSignedOverflowLimitForStep()
1723 if (isKnownNegative(Step)) { in getZeroExtendExprImpl()
7096 if (isKnownNegative(Step) && in getRangeForAffineNoSelfWrappingAR()
10769 bool ScalarEvolution::isKnownNegative(const SCEV *S) { in isKnownNegative() function in ScalarEvolution
11725 (isKnownNegative(FoundLHS) && isKnownNegative(FoundRHS))) in isImpliedCondBalancedTypes()
11750 if (ICmpInst::isUnsigned(CanonicalPred) && isKnownNegative(CanonicalRHS)) in isImpliedCondBalancedTypes()
12455 if (isKnownNegative(RHS) && in isImpliedViaOperations()
12659 if (IsSigned && isKnownNegative(Stride)) in computeMaxBECountForLT()
H A DValueTracking.cpp301 bool llvm::isKnownNegative(const Value *V, const SimplifyQuery &SQ, in isKnownNegative() function in llvm
374 bool isKnownNegative = false; in computeKnownBitsMul() local
392 isKnownNegative = in computeKnownBitsMul()
412 else if (isKnownNegative && !Known.isNonNegative()) in computeKnownBitsMul()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h150 bool isKnownNegative(const Value *V, const SimplifyQuery &DL,
H A DScalarEvolution.h1009 bool isKnownNegative(const SCEV *S);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopConstrainer.cpp30 assert(SE.isKnownNegative(Step) && "expecting negative step"); in isSafeDecreasingBound()
H A DSimplifyIndVar.cpp1646 if (!SE->isKnownNegative(RHS)) in widenWithVariantUse()
H A DScalarEvolutionExpander.cpp2061 bool NeedPosCheck = !SE.isKnownNegative(Step); in generateOverflowCheck()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp4369 isKnownNegative(X, SQ.getWithInstruction(NotVal))) in foldNot()