Add a new loop-instsimplify pass, with the intention of replacing the instance
authorCameron Zwarich <zwarich@apple.com>
Mon, 3 Jan 2011 00:25:16 +0000 (00:25 +0000)
committerCameron Zwarich <zwarich@apple.com>
Mon, 3 Jan 2011 00:25:16 +0000 (00:25 +0000)
of instcombine that is currently in the middle of the loop pass pipeline. This
commit only checks in the pass; it will hopefully be enabled by default later.

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

include/llvm/InitializePasses.h
include/llvm/Transforms/Scalar.h
lib/Transforms/Scalar/CMakeLists.txt
lib/Transforms/Scalar/LoopInstSimplify.cpp [new file with mode: 0644]
lib/Transforms/Scalar/Scalar.cpp

index 8d3fa86f26643ff831b069598c6f74a431008dda..c89d4fefa8a20e0a8568a5eea20c3869f8c71687 100644 (file)
@@ -128,6 +128,7 @@ void initializeLoopDeletionPass(PassRegistry&);
 void initializeLoopDependenceAnalysisPass(PassRegistry&);
 void initializeLoopExtractorPass(PassRegistry&);
 void initializeLoopInfoPass(PassRegistry&);
+void initializeLoopInstSimplifyPass(PassRegistry&);
 void initializeLoopRotatePass(PassRegistry&);
 void initializeLoopSimplifyPass(PassRegistry&);
 void initializeLoopSplitterPass(PassRegistry&);
index f494586c59b2e529f09721741196d953054a1fdb..039e4a2f4082e4821942d9c5899d2fe76de5b960 100644 (file)
@@ -117,6 +117,12 @@ Pass *createLoopStrengthReducePass(const TargetLowering *TLI = 0);
 //
 Pass *createLoopUnswitchPass(bool OptimizeForSize = false);
 
+//===----------------------------------------------------------------------===//
+//
+// LoopInstSimplify - This pass simplifies instructions in a loop's body.
+//
+Pass *createLoopInstSimplifyPass();
+
 //===----------------------------------------------------------------------===//
 //
 // LoopUnroll - This pass is a simple loop unrolling pass.
index 8173a31a86bc95f9647cfe6dbf662c42088de90d..68c017b9be98395b98bfc1fadac8d727d9c84cba 100644 (file)
@@ -13,6 +13,7 @@ add_llvm_library(LLVMScalarOpts
   LICM.cpp
   LoopDeletion.cpp
   LoopIdiomRecognize.cpp
+  LoopInstSimplify.cpp
   LoopRotation.cpp
   LoopStrengthReduce.cpp
   LoopUnrollPass.cpp
diff --git a/lib/Transforms/Scalar/LoopInstSimplify.cpp b/lib/Transforms/Scalar/LoopInstSimplify.cpp
new file mode 100644 (file)
index 0000000..0400288
--- /dev/null
@@ -0,0 +1,112 @@
+//===- LoopInstSimplify.cpp - Loop Instruction Simplification Pass --------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This pass performs lightweight instruction simplification on loop bodies.
+//
+//===----------------------------------------------------------------------===//
+
+#define DEBUG_TYPE "loop-instsimplify"
+#include "llvm/Analysis/LoopPass.h"
+#include "llvm/Analysis/Dominators.h"
+#include "llvm/Analysis/InstructionSimplify.h"
+#include "llvm/Target/TargetData.h"
+#include "llvm/Transforms/Scalar.h"
+#include "llvm/Transforms/Utils/Local.h"
+#include "llvm/ADT/Statistic.h"
+using namespace llvm;
+
+STATISTIC(NumSimplified, "Number of redundant instructions simplified");
+
+namespace {
+  class LoopInstSimplify : public LoopPass {
+  public:
+    static char ID; // Pass ID, replacement for typeid
+    LoopInstSimplify() : LoopPass(ID) {
+      initializeLoopInstSimplifyPass(*PassRegistry::getPassRegistry());
+    }
+
+    bool runOnLoop(Loop*, LPPassManager&);
+
+    virtual void getAnalysisUsage(AnalysisUsage& AU) const {
+      AU.setPreservesCFG();
+      AU.addRequired<DominatorTree>();
+      AU.addPreserved<DominatorTree>();
+      AU.addRequired<LoopInfo>();
+      AU.addPreserved<LoopInfo>();
+      AU.addPreservedID(LCSSAID);
+    }
+  };
+}
+  
+char LoopInstSimplify::ID = 0;
+INITIALIZE_PASS_BEGIN(LoopInstSimplify, "loop-instsimplify",
+                "Simplify instructions in loops", false, false)
+INITIALIZE_PASS_DEPENDENCY(DominatorTree)
+INITIALIZE_PASS_DEPENDENCY(LoopInfo)
+INITIALIZE_PASS_DEPENDENCY(LCSSA)
+INITIALIZE_PASS_END(LoopInstSimplify, "loop-instsimplify",
+                "Simplify instructions in loops", false, false)
+
+Pass* llvm::createLoopInstSimplifyPass() {
+  return new LoopInstSimplify();
+}
+
+bool LoopInstSimplify::runOnLoop(Loop* L, LPPassManager& LPM) {
+  DominatorTree* DT = &getAnalysis<DominatorTree>();
+  const LoopInfo* LI = &getAnalysis<LoopInfo>();
+  const TargetData* TD = getAnalysisIfAvailable<TargetData>();
+
+  bool Changed = false;
+  bool LocalChanged;
+  do {
+    LocalChanged = false;
+
+    SmallPtrSet<BasicBlock*, 32> Visited;
+    SmallVector<BasicBlock*, 32> VisitStack;
+
+    VisitStack.push_back(L->getHeader());
+
+    while (!VisitStack.empty()) {
+      BasicBlock* BB = VisitStack.back();
+      VisitStack.pop_back();
+
+      if (Visited.count(BB))
+        continue;
+      Visited.insert(BB);
+
+      for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;) {
+        Instruction* I = BI++;
+        // Don't bother simplifying unused instructions.
+        if (!I->use_empty()) {
+          if (Value* V = SimplifyInstruction(I, TD, DT)) {
+            I->replaceAllUsesWith(V);
+            LocalChanged = true;
+            ++NumSimplified;
+          }
+        }
+        LocalChanged |= RecursivelyDeleteTriviallyDeadInstructions(I);
+      }
+      Changed |= LocalChanged;
+
+      DomTreeNode* Node = DT->getNode(BB);
+      const std::vector<DomTreeNode*>& Children = Node->getChildren();
+      for (unsigned i = 0; i < Children.size(); ++i) {
+        // Only visit children that are in the same loop.
+        BasicBlock* ChildBB = Children[i]->getBlock();
+        if (!Visited.count(ChildBB) && LI->getLoopFor(ChildBB) == L)
+          VisitStack.push_back(ChildBB);
+      }
+    }
+  } while (LocalChanged);
+
+  // Nothing that SimplifyInstruction() does should invalidate LCSSA form.
+  assert(L->isLCSSAForm(*DT));
+
+  return Changed;
+}
index 27c11186d6a8345496dcd17ec6c93c7b076f3366..2b13bcacc195b223089426397403c015de2216f3 100644 (file)
@@ -41,6 +41,7 @@ void llvm::initializeScalarOpts(PassRegistry &Registry) {
   initializeJumpThreadingPass(Registry);
   initializeLICMPass(Registry);
   initializeLoopDeletionPass(Registry);
+  initializeLoopInstSimplifyPass(Registry);
   initializeLoopRotatePass(Registry);
   initializeLoopStrengthReducePass(Registry);
   initializeLoopUnrollPass(Registry);