Rename file to something more descriptive.
authorOwen Anderson <resistor@mac.com>
Tue, 31 Aug 2010 07:41:39 +0000 (07:41 +0000)
committerOwen Anderson <resistor@mac.com>
Tue, 31 Aug 2010 07:41:39 +0000 (07:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112590 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/CMakeLists.txt
lib/Transforms/Scalar/CorrelatedValuePropagation.cpp [new file with mode: 0644]
lib/Transforms/Scalar/ValuePropagation.cpp [deleted file]

index 69b4c341c5b703a8ea3f6bf230e807bc8d8f8947..b7598eace536b4f0d805bd91dade64cbb225074b 100644 (file)
@@ -3,6 +3,7 @@ add_llvm_library(LLVMScalarOpts
   BasicBlockPlacement.cpp
   CodeGenPrepare.cpp
   ConstantProp.cpp
+  CorrelatedValuePropagation.cpp
   DCE.cpp
   DeadStoreElimination.cpp
   GEPSplitter.cpp
@@ -29,7 +30,6 @@ add_llvm_library(LLVMScalarOpts
   Sink.cpp
   TailDuplication.cpp
   TailRecursionElimination.cpp
-  ValuePropagation.cpp
   )
 
 target_link_libraries (LLVMScalarOpts LLVMTransformUtils)
diff --git a/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp b/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
new file mode 100644 (file)
index 0000000..8f39888
--- /dev/null
@@ -0,0 +1,119 @@
+//===- ValuePropagation.cpp - Propagate information derived control flow --===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file implements the Value Propagation pass.
+//
+//===----------------------------------------------------------------------===//
+
+#define DEBUG_TYPE "value-propagation"
+#include "llvm/Transforms/Scalar.h"
+#include "llvm/Function.h"
+#include "llvm/Instructions.h"
+#include "llvm/Pass.h"
+#include "llvm/Analysis/LazyValueInfo.h"
+#include "llvm/Transforms/Utils/Local.h"
+#include "llvm/ADT/Statistic.h"
+using namespace llvm;
+
+STATISTIC(NumPhis,    "Number of phis propagated");
+STATISTIC(NumSelects, "Number of selects propagated");
+
+namespace {
+  class ValuePropagation : public FunctionPass {
+    LazyValueInfo *LVI;
+    
+    bool processSelect(SelectInst *SI);
+    bool processPHI(PHINode *P);
+    
+  public:
+    static char ID;
+    ValuePropagation(): FunctionPass(ID) { }
+    
+    bool runOnFunction(Function &F);
+    
+    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
+      AU.addRequired<LazyValueInfo>();
+    }
+  };
+}
+
+char ValuePropagation::ID = 0;
+INITIALIZE_PASS(ValuePropagation, "value-propagation",
+                "Value Propagation", false, false);
+
+// Public interface to the Value Propagation pass
+Pass *llvm::createValuePropagationPass() {
+  return new ValuePropagation();
+}
+
+bool ValuePropagation::processSelect(SelectInst *S) {
+  if (S->getType()->isVectorTy()) return false;
+  
+  Constant *C = LVI->getConstant(S->getOperand(0), S->getParent());
+  if (!C) return false;
+  
+  ConstantInt *CI = dyn_cast<ConstantInt>(C);
+  if (!CI) return false;
+  
+  S->replaceAllUsesWith(S->getOperand(CI->isOne() ? 1 : 2));
+  S->eraseFromParent();
+
+  ++NumSelects;
+  
+  return true;
+}
+
+bool ValuePropagation::processPHI(PHINode *P) {
+  bool Changed = false;
+  
+  BasicBlock *BB = P->getParent();
+  for (unsigned i = 0, e = P->getNumIncomingValues(); i < e; ++i) {
+    Value *Incoming = P->getIncomingValue(i);
+    if (isa<Constant>(Incoming)) continue;
+    
+    Constant *C = LVI->getConstantOnEdge(P->getIncomingValue(i),
+                                         P->getIncomingBlock(i),
+                                         BB);
+    if (!C) continue;
+    
+    P->setIncomingValue(i, C);
+    Changed = true;
+  }
+  
+  if (Value *ConstVal = P->hasConstantValue()) {
+    P->replaceAllUsesWith(ConstVal);
+    P->eraseFromParent();
+    Changed = true;
+  }
+  
+  ++NumPhis;
+  
+  return Changed;
+}
+
+bool ValuePropagation::runOnFunction(Function &F) {
+  LVI = &getAnalysis<LazyValueInfo>();
+  
+  bool Changed = false;
+  
+  for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
+    for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE; ) {
+      Instruction *II = BI++;
+      if (SelectInst *SI = dyn_cast<SelectInst>(II))
+        Changed |= processSelect(SI);
+      else if (PHINode *P = dyn_cast<PHINode>(II))
+        Changed |= processPHI(P);
+    }
+  
+  if (Changed)
+    for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
+      SimplifyInstructionsInBlock(FI);
+  
+  return Changed;
+}
diff --git a/lib/Transforms/Scalar/ValuePropagation.cpp b/lib/Transforms/Scalar/ValuePropagation.cpp
deleted file mode 100644 (file)
index 8f39888..0000000
+++ /dev/null
@@ -1,119 +0,0 @@
-//===- ValuePropagation.cpp - Propagate information derived control flow --===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements the Value Propagation pass.
-//
-//===----------------------------------------------------------------------===//
-
-#define DEBUG_TYPE "value-propagation"
-#include "llvm/Transforms/Scalar.h"
-#include "llvm/Function.h"
-#include "llvm/Instructions.h"
-#include "llvm/Pass.h"
-#include "llvm/Analysis/LazyValueInfo.h"
-#include "llvm/Transforms/Utils/Local.h"
-#include "llvm/ADT/Statistic.h"
-using namespace llvm;
-
-STATISTIC(NumPhis,    "Number of phis propagated");
-STATISTIC(NumSelects, "Number of selects propagated");
-
-namespace {
-  class ValuePropagation : public FunctionPass {
-    LazyValueInfo *LVI;
-    
-    bool processSelect(SelectInst *SI);
-    bool processPHI(PHINode *P);
-    
-  public:
-    static char ID;
-    ValuePropagation(): FunctionPass(ID) { }
-    
-    bool runOnFunction(Function &F);
-    
-    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
-      AU.addRequired<LazyValueInfo>();
-    }
-  };
-}
-
-char ValuePropagation::ID = 0;
-INITIALIZE_PASS(ValuePropagation, "value-propagation",
-                "Value Propagation", false, false);
-
-// Public interface to the Value Propagation pass
-Pass *llvm::createValuePropagationPass() {
-  return new ValuePropagation();
-}
-
-bool ValuePropagation::processSelect(SelectInst *S) {
-  if (S->getType()->isVectorTy()) return false;
-  
-  Constant *C = LVI->getConstant(S->getOperand(0), S->getParent());
-  if (!C) return false;
-  
-  ConstantInt *CI = dyn_cast<ConstantInt>(C);
-  if (!CI) return false;
-  
-  S->replaceAllUsesWith(S->getOperand(CI->isOne() ? 1 : 2));
-  S->eraseFromParent();
-
-  ++NumSelects;
-  
-  return true;
-}
-
-bool ValuePropagation::processPHI(PHINode *P) {
-  bool Changed = false;
-  
-  BasicBlock *BB = P->getParent();
-  for (unsigned i = 0, e = P->getNumIncomingValues(); i < e; ++i) {
-    Value *Incoming = P->getIncomingValue(i);
-    if (isa<Constant>(Incoming)) continue;
-    
-    Constant *C = LVI->getConstantOnEdge(P->getIncomingValue(i),
-                                         P->getIncomingBlock(i),
-                                         BB);
-    if (!C) continue;
-    
-    P->setIncomingValue(i, C);
-    Changed = true;
-  }
-  
-  if (Value *ConstVal = P->hasConstantValue()) {
-    P->replaceAllUsesWith(ConstVal);
-    P->eraseFromParent();
-    Changed = true;
-  }
-  
-  ++NumPhis;
-  
-  return Changed;
-}
-
-bool ValuePropagation::runOnFunction(Function &F) {
-  LVI = &getAnalysis<LazyValueInfo>();
-  
-  bool Changed = false;
-  
-  for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
-    for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE; ) {
-      Instruction *II = BI++;
-      if (SelectInst *SI = dyn_cast<SelectInst>(II))
-        Changed |= processSelect(SI);
-      else if (PHINode *P = dyn_cast<PHINode>(II))
-        Changed |= processPHI(P);
-    }
-  
-  if (Changed)
-    for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
-      SimplifyInstructionsInBlock(FI);
-  
-  return Changed;
-}