[PATCH] D103182: [SCEV] Generalize getSmallConstantTripCount(L) for multiple exit loops
Philip Reames via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 26 11:18:44 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9306bb638ff2: [SCEV] Generalize getSmallConstantTripCount(L) for multiple exit loops (authored by reames).
Changed prior to commit:
https://reviews.llvm.org/D103182?vs=348005&id=348026#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103182/new/
https://reviews.llvm.org/D103182
Files:
llvm/include/llvm/Analysis/ScalarEvolution.h
llvm/lib/Analysis/ScalarEvolution.cpp
Index: llvm/lib/Analysis/ScalarEvolution.cpp
===================================================================
--- llvm/lib/Analysis/ScalarEvolution.cpp
+++ llvm/lib/Analysis/ScalarEvolution.cpp
@@ -6948,11 +6948,8 @@
}
unsigned ScalarEvolution::getSmallConstantTripCount(const Loop *L) {
- if (BasicBlock *ExitingBB = L->getExitingBlock())
- return getSmallConstantTripCount(L, ExitingBB);
-
- // No trip count information for multiple exits.
- return 0;
+ auto *ExitCount = dyn_cast<SCEVConstant>(getBackedgeTakenCount(L, Exact));
+ return getConstantTripCount(ExitCount);
}
unsigned
Index: llvm/include/llvm/Analysis/ScalarEvolution.h
===================================================================
--- llvm/include/llvm/Analysis/ScalarEvolution.h
+++ llvm/include/llvm/Analysis/ScalarEvolution.h
@@ -712,17 +712,18 @@
/// must be interpreted as a loop having an unknown trip count.
const SCEV *getTripCountFromExitCount(const SCEV *ExitCount);
- /// Returns the maximum trip count of the loop if it is a single-exit
- /// loop and we can compute a small maximum for that loop.
- ///
- /// Implemented in terms of the \c getSmallConstantTripCount overload with
- /// the single exiting block passed to it. See that routine for details.
+ /// Returns the exact trip count of the loop if we can compute it, and
+ /// the result is a small constant. '0' is used to represent an unknown
+ /// or non-constant trip count. Note that a trip count is simply one more
+ /// than the backedge taken count for the loop.
unsigned getSmallConstantTripCount(const Loop *L);
- /// Returns the maximum trip count of this loop as a normal unsigned
- /// value. Returns 0 if the trip count is unknown or not constant. This
- /// "trip count" assumes that control exits via ExitingBlock. More
- /// precisely, it is the number of times that control may reach ExitingBlock
+ /// Return the exact trip count for this loop if we exit through ExitingBlock.
+ /// '0' is used to represent an unknown or non-constant trip count. Note
+ /// that a trip count is simply one more than the backedge taken count for
+ /// the same exit.
+ /// This "trip count" assumes that control exits via ExitingBlock. More
+ /// precisely, it is the number of times that control will reach ExitingBlock
/// before taking the branch. For loops with multiple exits, it may not be
/// the number times that the loop header executes if the loop exits
/// prematurely via another branch.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103182.348026.patch
Type: text/x-patch
Size: 2510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210526/38f5711d/attachment.bin>
More information about the llvm-commits
mailing list