[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Feb 16 22:40:08 PST 2006
Changes in directory llvm/lib/Transforms/Scalar:
LoopUnswitch.cpp updated: 1.27 -> 1.28
---
Log message:
Fix loops where the header has an exit, fixing a loop-unswitch crash on crafty
---
Diffs of the changes: (+15 -13)
LoopUnswitch.cpp | 28 +++++++++++++++-------------
1 files changed, 15 insertions(+), 13 deletions(-)
Index: llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
diff -u llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.27 llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.28
--- llvm/lib/Transforms/Scalar/LoopUnswitch.cpp:1.27 Thu Feb 16 18:31:07 2006
+++ llvm/lib/Transforms/Scalar/LoopUnswitch.cpp Fri Feb 17 00:39:56 2006
@@ -136,20 +136,22 @@
static bool isTrivialLoopExitBlockHelper(Loop *L, BasicBlock *BB,
BasicBlock *&ExitBB,
std::set<BasicBlock*> &Visited) {
- BasicBlock *Header = L->getHeader();
+ if (!Visited.insert(BB).second) {
+ // Already visited and Ok, end of recursion.
+ return true;
+ } else if (!L->contains(BB)) {
+ // Otherwise, this is a loop exit, this is fine so long as this is the
+ // first exit.
+ if (ExitBB != 0) return false;
+ ExitBB = BB;
+ return true;
+ }
+
+ // Otherwise, this is an unvisited intra-loop node. Check all successors.
for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) {
- if (!Visited.insert(*SI).second) {
- // Already visited and Ok, end of recursion.
- } else if (L->contains(*SI)) {
- // Check to see if the successor is a trivial loop exit.
- if (!isTrivialLoopExitBlockHelper(L, *SI, ExitBB, Visited))
- return false;
- } else {
- // Otherwise, this is a loop exit, this is fine so long as this is the
- // first exit.
- if (ExitBB != 0) return false;
- ExitBB = *SI;
- }
+ // Check to see if the successor is a trivial loop exit.
+ if (!isTrivialLoopExitBlockHelper(L, *SI, ExitBB, Visited))
+ return false;
}
// Okay, everything after this looks good, check to make sure that this block
More information about the llvm-commits
mailing list