fix an issue duncan pointed out, which could cause loop rotate
authorChris Lattner <sabre@nondot.org>
Sat, 8 Jan 2011 17:38:45 +0000 (17:38 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 8 Jan 2011 17:38:45 +0000 (17:38 +0000)
to violate LCSSA form

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123066 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopRotation.cpp

index 2b00caeb4e049cf0f8a8feb6da875eed71f8bcb8..428e0f2a1f0e6ac377b9a57cfa251882bd7254f3 100644 (file)
@@ -70,6 +70,7 @@ namespace {
     void preserveCanonicalLoopForm(LPPassManager &LPM);
 
   private:
+    LoopInfo *LI;
     Loop *L;
     BasicBlock *OrigHeader;
     BasicBlock *OrigPreHeader;
@@ -89,21 +90,31 @@ INITIALIZE_PASS_END(LoopRotate, "loop-rotate", "Rotate Loops", false, false)
 
 Pass *llvm::createLoopRotatePass() { return new LoopRotate(); }
 
+/// Initialize local data
+void LoopRotate::initialize() {
+  L = NULL;
+  OrigHeader = NULL;
+  OrigPreHeader = NULL;
+  NewHeader = NULL;
+  Exit = NULL;
+}
+
 /// Rotate Loop L as many times as possible. Return true if
 /// the loop is rotated at least once.
 bool LoopRotate::runOnLoop(Loop *Lp, LPPassManager &LPM) {
+  LI = &getAnalysis<LoopInfo>();
 
-  bool RotatedOneLoop = false;
   initialize();
   LPM_Ptr = &LPM;
 
   // One loop can be rotated multiple times.
+  bool MadeChange = false;
   while (rotateLoop(Lp,LPM)) {
-    RotatedOneLoop = true;
+    MadeChange = true;
     initialize();
   }
 
-  return RotatedOneLoop;
+  return MadeChange;
 }
 
 /// Rotate loop LP. Return true if the loop is rotated.
@@ -213,7 +224,8 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
     // With the operands remapped, see if the instruction constant folds or is
     // otherwise simplifyable.  This commonly occurs because the entry from PHI
     // nodes allows icmps and other instructions to fold.
-    if (Value *V = SimplifyInstruction(C)) {
+    Value *V = SimplifyInstruction(C);
+    if (V && LI->replacementPreservesLCSSAForm(C, V)) {
       // If so, then delete the temporary instruction and stick the folded value
       // in the map.
       delete C;
@@ -322,14 +334,6 @@ bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
   return true;
 }
 
-/// Initialize local data
-void LoopRotate::initialize() {
-  L = NULL;
-  OrigHeader = NULL;
-  OrigPreHeader = NULL;
-  NewHeader = NULL;
-  Exit = NULL;
-}
 
 /// After loop rotation, loop pre-header has multiple sucessors.
 /// Insert one forwarding basic block to ensure that loop pre-header