Home
last modified time | relevance | path

Searched refs:NewBECount (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DIndVarSimplify.cpp1928 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in runOnLoop() local
1930 SE->getTypeSizeInBits(NewBECount->getType())) in runOnLoop()
1931 NewBECount = SE->getTruncateOrNoop(NewBECount, in runOnLoop()
1935 NewBECount->getType()); in runOnLoop()
1936 assert(BackedgeTakenCount == NewBECount && "indvars must preserve SCEV"); in runOnLoop()
/external/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp2201 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in run() local
2203 SE->getTypeSizeInBits(NewBECount->getType())) in run()
2204 NewBECount = SE->getTruncateOrNoop(NewBECount, in run()
2208 NewBECount->getType()); in run()
2209 assert(BackedgeTakenCount == NewBECount && "indvars must preserve SCEV"); in run()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp2526 const SCEV *NewBECount = SE->getBackedgeTakenCount(L); in run() local
2528 SE->getTypeSizeInBits(NewBECount->getType())) in run()
2529 NewBECount = SE->getTruncateOrNoop(NewBECount, in run()
2533 NewBECount->getType()); in run()
2534 assert(BackedgeTakenCount == NewBECount && "indvars must preserve SCEV"); in run()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp11695 auto *NewBECount = SE2.getBackedgeTakenCount(L); in verify() local
11698 NewBECount == SE2.getCouldNotCompute()) { in verify()
11707 if (containsUndefs(CurBECount) || containsUndefs(NewBECount)) { in verify()
11718 SE.getTypeSizeInBits(NewBECount->getType())) in verify()
11719 NewBECount = SE2.getZeroExtendExpr(NewBECount, CurBECount->getType()); in verify()
11721 SE.getTypeSizeInBits(NewBECount->getType())) in verify()
11722 CurBECount = SE2.getZeroExtendExpr(CurBECount, NewBECount->getType()); in verify()
11725 dyn_cast<SCEVConstant>(SE2.getMinusSCEV(CurBECount, NewBECount)); in verify()
11730 dbgs() << "New: " << *NewBECount << "\n"; in verify()