Searched refs:MaxAnalysisRecursionDepth (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 760 if (Depth < MaxAnalysisRecursionDepth && in computeKnownBitsFromCond() 855 if (Depth == MaxAnalysisRecursionDepth) in computeKnownBitsFromContext() 1533 if (Depth < MaxAnalysisRecursionDepth - 1 && Known.isUnknown()) { in computeKnownBitsFromOperator() 1559 MaxAnalysisRecursionDepth - 1, RecQ); in computeKnownBitsFromOperator() 2029 assert(Depth <= MaxAnalysisRecursionDepth && "Limit Search Depth"); in computeKnownBits() 2128 if (Depth == MaxAnalysisRecursionDepth) in computeKnownBits() 2222 assert(Depth <= MaxAnalysisRecursionDepth && "Limit Search Depth"); in isKnownToBeAPowerOfTwo() 2252 if (Depth++ == MaxAnalysisRecursionDepth) in isKnownToBeAPowerOfTwo() 2340 unsigned NewDepth = std::max(Depth, MaxAnalysisRecursionDepth - 1); in isKnownToBeAPowerOfTwo() 2444 if (Depth++ >= MaxAnalysisRecursionDepth) in isGEPKnownNonNull() [all …]
|
H A D | VectorUtils.cpp | 267 assert(Depth <= MaxAnalysisRecursionDepth && "Limit Search Depth"); in isSplatValue() 294 if (Depth++ == MaxAnalysisRecursionDepth) in isSplatValue()
|
H A D | LazyValueInfo.cpp | 1280 if (++Depth == MaxAnalysisRecursionDepth) in getValueFromCondition()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 107 if (Depth == MaxAnalysisRecursionDepth) in SimplifyDemandedBits() 163 assert(Depth <= MaxAnalysisRecursionDepth && "Limit Search Depth"); in SimplifyDemandedUseBits() 1961 assert(Depth <= MaxAnalysisRecursionDepth && "Limit Search Depth"); in SimplifyDemandedUseFPClass() 1969 if (Depth == MaxAnalysisRecursionDepth) in SimplifyDemandedUseFPClass()
|
H A D | InstCombineSelect.cpp | 3561 if (Depth == MaxAnalysisRecursionDepth) in hasAffectedValue() 3571 if (Depth == MaxAnalysisRecursionDepth - 1) in hasAffectedValue() 3573 Depth = MaxAnalysisRecursionDepth - 2; in hasAffectedValue()
|
H A D | InstructionCombining.cpp | 2536 if (Depth++ >= MaxAnalysisRecursionDepth) in getFreelyInvertedImpl() 2630 /*Builder=*/nullptr, LocalDoesConsume, MaxAnalysisRecursionDepth - 1); in getFreelyInvertedImpl()
|
H A D | InstCombineCompares.cpp | 4188 if (Depth++ >= MaxAnalysisRecursionDepth) in isMaskOrZero()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ConstraintElimination.cpp | 767 isKnownNonNegative(Op0, DL, /*Depth=*/MaxAnalysisRecursionDepth - 1) && in getConstraintForSolving() 768 isKnownNonNegative(Op1, DL, /*Depth=*/MaxAnalysisRecursionDepth - 1)) in getConstraintForSolving() 841 isKnownNonNegative(V, DL, /*Depth=*/MaxAnalysisRecursionDepth - 1); in transferToOtherSystem()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ValueTracking.h | 48 constexpr unsigned MaxAnalysisRecursionDepth = 6; variable
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | Utils.cpp | 1896 if (Depth >= MaxAnalysisRecursionDepth) in isGuaranteedNotToBeUndefOrPoison()
|