Home
last modified time | relevance | path

Searched refs:getBackedgeTakenCount (Results 1 – 25 of 33) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Analysis/
DIVUsers.cpp195 << *SE->getBackedgeTakenCount(L); in print()
/external/llvm/lib/Analysis/
DIVUsers.cpp289 << *SE->getBackedgeTakenCount(L); in print()
DLoopAccessAnalysis.cpp167 const SCEV *Ex = PSE.getBackedgeTakenCount(); in insert()
1497 const SCEV *ExitCount = PSE->getBackedgeTakenCount(); in canAnalyzeLoop()
DScalarEvolution.cpp1280 const SCEV *BECount = SE->getBackedgeTakenCount(L); in getPreStartForExtend()
5340 const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) { in getBackedgeTakenCount() function in ScalarEvolution
6741 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI); in computeSCEVAtScope()
6883 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop()); in computeSCEVAtScope()
9537 return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L)); in hasLoopInvariantBackedgeTakenCount()
9556 OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L); in PrintLoopInfo()
9944 SE.getBackedgeTakenCount(L)->print(OS); in getLoopBackedgeTakenCounts()
10360 const SCEV *PredicatedScalarEvolution::getBackedgeTakenCount() { in getBackedgeTakenCount() function in PredicatedScalarEvolution
DDependenceAnalysis.cpp860 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); in checkSrcSubscript()
885 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); in checkDstSubscript()
992 const SCEV *UB = SE->getBackedgeTakenCount(L); in collectUpperBound()
/external/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp254 const SCEV *ExitCount = SE->getBackedgeTakenCount(CurLoop); in legalLoopStructure()
DIndVarSimplify.cpp1566 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in canExpandBackedgeTakenCount()
2118 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in run()
2201 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in run()
DLoopInterchange.cpp475 const SCEV *ExitCountOuter = SE->getBackedgeTakenCount(L); in isComputableLoopNest()
DLoopIdiomRecognize.cpp244 const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop); in runOnCountableLoop()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DScalarEvolutionTest.cpp854 const SCEV *EC = SE.getBackedgeTakenCount(Loop); in TEST_F()
878 const SCEV *NewEC = SE.getBackedgeTakenCount(Loop); in TEST_F()
954 const SCEV *EC = SE.getBackedgeTakenCount(Loop); in TEST_F()
967 const SCEV *NewEC = SE.getBackedgeTakenCount(Loop); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp287 const SCEV *ExitCount = SE->getBackedgeTakenCount(CurLoop); in legalLoopStructure()
DIndVarSimplify.cpp1851 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in canExpandBackedgeTakenCount()
2441 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in run()
2526 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in run()
DLoopInterchange.cpp492 const SCEV *ExitCountOuter = SE->getBackedgeTakenCount(L); in isComputableLoopNest()
DLoopRerollPass.cpp1654 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in runOnLoop()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DIVUsers.cpp323 OS << " with backedge-taken count " << *SE->getBackedgeTakenCount(L); in print()
DLoopAccessAnalysis.cpp206 const SCEV *Ex = PSE.getBackedgeTakenCount(); in insert()
1483 *(PSE.getBackedgeTakenCount()), *Dist, Stride, in isDependent()
1752 const SCEV *ExitCount = PSE->getBackedgeTakenCount(); in canAnalyzeLoop()
2229 const SCEV *BETakenCount = PSE->getBackedgeTakenCount(); in collectStridedAccess()
DDependenceAnalysis.cpp875 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); in checkSrcSubscript()
900 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); in checkDstSubscript()
1015 const SCEV *BECount = SE->getBackedgeTakenCount(AddRec->getLoop()); in isKnownLessThan()
1058 const SCEV *UB = SE->getBackedgeTakenCount(L); in collectUpperBound()
DScalarEvolution.cpp1438 const SCEV *BECount = SE->getBackedgeTakenCount(L); in getPreStartForExtend()
6598 const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) { in getBackedgeTakenCount() function in ScalarEvolution
8093 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI); in computeSCEVAtScope()
8254 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop()); in computeSCEVAtScope()
11232 return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L)); in hasLoopInvariantBackedgeTakenCount()
11251 OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L); in PrintLoopInfo()
11694 const_cast<ScalarEvolution *>(this)->getBackedgeTakenCount(L)); in verify()
11695 auto *NewBECount = SE2.getBackedgeTakenCount(L); in verify()
12146 const SCEV *PredicatedScalarEvolution::getBackedgeTakenCount() { in getBackedgeTakenCount() function in PredicatedScalarEvolution
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DIndVarSimplify.cpp1282 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in canExpandBackedgeTakenCount()
1763 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); in runOnLoop()
1928 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in runOnLoop()
DLoopIdiomRecognize.cpp185 const SCEV *BECount = SE->getBackedgeTakenCount(L); in runOnLoop()
/external/llvm/include/llvm/Analysis/
DScalarEvolution.h1397 const SCEV *getBackedgeTakenCount(const Loop *L);
1736 const SCEV *getBackedgeTakenCount();
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DScalarEvolution.h744 const SCEV *getBackedgeTakenCount(const Loop *L);
1940 const SCEV *getBackedgeTakenCount();
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DScalarEvolution.h751 const SCEV *getBackedgeTakenCount(const Loop *L);
/external/llvm/lib/Transforms/Utils/
DLoopUnrollRuntime.cpp455 const SCEV *BECountSC = SE->getBackedgeTakenCount(L); in UnrollRuntimeLoopRemainder()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonLoopIdiomRecognition.cpp1781 const SCEV *CT = SE.getBackedgeTakenCount(CurLoop); in recognize()
2386 const SCEV *BECount = SE->getBackedgeTakenCount(L); in runOnCountableLoop()

12