Home
last modified time | relevance | path

Searched refs:Increasing (Results 1 – 25 of 39) sorted by relevance

12

/external/llvm-project/llvm/unittests/Analysis/
DLoopInfoTest.cpp284 Loop::LoopBounds::Direction::Increasing); in TEST()
343 Loop::LoopBounds::Direction::Increasing); in TEST()
402 Loop::LoopBounds::Direction::Increasing); in TEST()
461 Loop::LoopBounds::Direction::Increasing); in TEST()
520 Loop::LoopBounds::Direction::Increasing); in TEST()
580 Loop::LoopBounds::Direction::Increasing); in TEST()
695 Loop::LoopBounds::Direction::Increasing); in TEST()
874 Loop::LoopBounds::Direction::Increasing); in TEST()
935 Loop::LoopBounds::Direction::Increasing); in TEST()
995 Loop::LoopBounds::Direction::Increasing); in TEST()
[all …]
/external/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp844 bool Increasing = MainLoopStructure.IndVarIncreasing; in calculateSubRanges() local
851 if (Increasing) { in calculateSubRanges()
1030 bool Increasing = LS.IndVarIncreasing; in changeIterationSpaceEnd() local
1035 Value *EnterLoopCond = Increasing in changeIterationSpaceEnd()
1045 Increasing ? B.CreateICmpSLT(LS.IndVarNext, ExitSubloopAt) in changeIterationSpaceEnd()
1058 Value *IterationsLeft = Increasing in changeIterationSpaceEnd()
1165 bool Increasing = MainLoopStructure.IndVarIncreasing; in run() local
1177 Increasing ? SR.LowLimit.hasValue() : SR.HighLimit.hasValue(); in run()
1179 Increasing ? SR.HighLimit.hasValue() : SR.LowLimit.hasValue(); in run()
1189 if (Increasing) in run()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp1069 bool Increasing = MainLoopStructure.IndVarIncreasing; in calculateSubRanges() local
1078 if (Increasing) { in calculateSubRanges()
1262 bool Increasing = LS.IndVarIncreasing; in changeIterationSpaceEnd() local
1277 Increasing in changeIterationSpaceEnd()
1405 bool Increasing = MainLoopStructure.IndVarIncreasing; in run() local
1417 Increasing ? SR.LowLimit.hasValue() : SR.HighLimit.hasValue(); in run()
1419 Increasing ? SR.HighLimit.hasValue() : SR.LowLimit.hasValue(); in run()
1429 if (Increasing) in run()
1456 if (Increasing) in run()
DLoopPredication.cpp456 bool Increasing; in isSafeToTruncateWideIVType() local
457 if (!SE.isMonotonicPredicate(LatchCheck.IV, LatchCheck.Pred, Increasing)) in isSafeToTruncateWideIVType()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp1084 bool Increasing = MainLoopStructure.IndVarIncreasing; in calculateSubRanges() local
1093 if (Increasing) { in calculateSubRanges()
1277 bool Increasing = LS.IndVarIncreasing; in changeIterationSpaceEnd() local
1292 Increasing in changeIterationSpaceEnd()
1420 bool Increasing = MainLoopStructure.IndVarIncreasing; in run() local
1432 Increasing ? SR.LowLimit.hasValue() : SR.HighLimit.hasValue(); in run()
1434 Increasing ? SR.HighLimit.hasValue() : SR.LowLimit.hasValue(); in run()
1444 if (Increasing) in run()
1471 if (Increasing) in run()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollPeel.cpp218 bool Increasing; in countToEliminateCompares() local
220 !SE.isMonotonicPredicate(LeftAR, Pred, Increasing)) in countToEliminateCompares()
222 (void)Increasing; in countToEliminateCompares()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopInfo.cpp261 if (D == Direction::Increasing) in getCanonicalPredicate()
277 return Direction::Increasing; in getDirection()
DScalarEvolution.cpp9259 bool &Increasing) { in isMonotonicPredicate() argument
9260 bool Result = isMonotonicPredicateImpl(LHS, Pred, Increasing); in isMonotonicPredicate()
9271 assert(Increasing == !IncreasingSwapped && in isMonotonicPredicate()
9280 bool &Increasing) { in isMonotonicPredicateImpl() argument
9303 Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE; in isMonotonicPredicateImpl()
9316 Increasing = Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE; in isMonotonicPredicateImpl()
9321 Increasing = Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE; in isMonotonicPredicateImpl()
9351 bool Increasing; in isLoopInvariantPredicate() local
9352 if (!isMonotonicPredicate(ArLHS, Pred, Increasing)) in isLoopInvariantPredicate()
9373 auto P = Increasing ? Pred : ICmpInst::getInversePredicate(Pred); in isLoopInvariantPredicate()
/external/llvm-project/llvm/lib/Analysis/
DLoopInfo.cpp262 if (D == Direction::Increasing) in getCanonicalPredicate()
278 return Direction::Increasing; in getDirection()
/external/python/cpython2/Objects/
Ddictnotes.txt79 Each additional 8 consumes 1.5 cache lines. Increasing improves
85 Increasing this ratio makes dictionaries more dense resulting
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h1112 ICmpInst::Predicate Pred, bool &Increasing);
1124 ICmpInst::Predicate Pred, bool &Increasing);
/external/squashfs-tools/RELEASE-READMEs/
DREADME-4.3116 By default Mksquashfs uses 25% of the physical memory. Increasing
/external/skqp/src/gpu/gradients/
DGrTwoPointConicalGradientLayout.fp40 // renders the wrong border color sporadically). Increasing precition alleviates that issue.
/external/tensorflow/tensorflow/lite/g3doc/performance/
Dbest_practices.md68 increase the number of threads and speed up execution of operators. Increasing
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DScalarEvolution.h922 bool &Increasing);
1783 ICmpInst::Predicate Pred, bool &Increasing);
DLoopInfo.h677 enum class Direction { Increasing, Decreasing, Unknown }; enumerator
/external/llvm-project/llvm/test/Transforms/IRCE/
Dunsigned_comparisons_ugt.ll193 ; Increasing loop, UINT_MAX. Negative test: we cannot add 1 to UINT_MAX.
Dunsigned_comparisons_ult.ll238 ; Increasing loop, UINT_MAX. Positive test.
/external/llvm-project/llvm/include/llvm/Analysis/
DLoopInfo.h697 enum class Direction { Increasing, Decreasing, Unknown }; enumerator
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7616 bool &Increasing) { in isMonotonicPredicate() argument
7617 bool Result = isMonotonicPredicateImpl(LHS, Pred, Increasing); in isMonotonicPredicate()
7628 assert(Increasing == !IncreasingSwapped && in isMonotonicPredicate()
7637 bool &Increasing) { in isMonotonicPredicateImpl() argument
7660 Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE; in isMonotonicPredicateImpl()
7673 Increasing = Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE; in isMonotonicPredicateImpl()
7678 Increasing = Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE; in isMonotonicPredicateImpl()
7708 bool Increasing; in isLoopInvariantPredicate() local
7709 if (!isMonotonicPredicate(ArLHS, Pred, Increasing)) in isLoopInvariantPredicate()
7730 auto P = Increasing ? Pred : ICmpInst::getInversePredicate(Pred); in isLoopInvariantPredicate()
/external/tensorflow/tensorflow/core/lib/strings/
Dordered_code_test.cc481 TEST(String, Increasing) { in TEST() argument
/external/mesa3d/docs/drivers/
Dvc4.rst155 * Increasing GPU memory Increase CMA pool size
/external/python/cpython2/Misc/NEWS.d/
D2.7.6rc1.rst123 Increasing the test coverage of macurl2path. Patch by Colin Williams.
/external/llvm-project/llvm/test/Transforms/InstCombine/
Dvec_shuffle.ll230 ; Increasing length of vector ops is not a good canonicalization.
247 ; Increasing length of vector ops must be safe from illegal undef propagation.
264 ; Increasing length of insertelements (no math ops) is a good canonicalization.
/external/libpng/scripts/
Dpnglibconf.dfa684 # are only interested in 8 bits anyway. Increasing this value

12