When unswitching a trivial loop, do admit we are doing it! :)
authorChris Lattner <sabre@nondot.org>
Fri, 10 Feb 2006 01:36:35 +0000 (01:36 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 10 Feb 2006 01:36:35 +0000 (01:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26102 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopUnswitch.cpp

index f0593255f261ce41eb63591e9df24daec83158f5..b130689081d50d74322b3982b085e66c999f3ecf 100644 (file)
@@ -346,6 +346,11 @@ static Loop *CloneLoop(Loop *L, Loop *PL, std::map<const Value*, Value*> &VM,
 /// moving the conditional branch outside of the loop and updating loop info.
 void LoopUnswitch::UnswitchTrivialCondition(Loop *L, Value *Cond, 
                                             ConstantBool *LoopCond) {
+  DEBUG(std::cerr << "loop-unswitch: Trivial-Unswitch loop %"
+        << L->getHeader()->getName() << " [" << L->getBlocks().size()
+        << " blocks] in Function " << L->getHeader()->getParent()->getName()
+        << " on cond:" << *Cond << "\n");
+  
   // First step, split the preahder, so that we know that there is a safe place
   // to insert the conditional branch.  We will change 'OrigPH' to have a
   // conditional branch on Cond.
@@ -373,6 +378,8 @@ void LoopUnswitch::UnswitchTrivialCondition(Loop *L, Value *Cond,
   // particular value, rewrite the loop with this info.  We know that this will
   // at least eliminate the old branch.
   RewriteLoopBodyWithConditionConstant(L, Cond, EnterOnTrue);
+  
+  ++NumUnswitched;
 }