diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-03 22:47:08 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-03 22:47:08 +0000 |
commit | c91c1a205a287bcd6dbea574e08cc0351fbfe9f7 (patch) | |
tree | a7317ecd7914a987a864a889750a6f25b2ea69cc /llvm/lib | |
parent | 0acd994f9030789dda7da0ec0764fb38ffe47df4 (diff) | |
download | bcm5719-llvm-c91c1a205a287bcd6dbea574e08cc0351fbfe9f7.tar.gz bcm5719-llvm-c91c1a205a287bcd6dbea574e08cc0351fbfe9f7.zip |
Propagate non-local comparisons. Fixes PR1757.
llvm-svn: 113025
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp index 2fd3c8dcb98..0d4e45de346 100644 --- a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp +++ b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp @@ -17,6 +17,7 @@ #include "llvm/Instructions.h" #include "llvm/Pass.h" #include "llvm/Analysis/LazyValueInfo.h" +#include "llvm/Support/CFG.h" #include "llvm/Transforms/Utils/Local.h" #include "llvm/ADT/Statistic.h" using namespace llvm; @@ -24,6 +25,7 @@ using namespace llvm; STATISTIC(NumPhis, "Number of phis propagated"); STATISTIC(NumSelects, "Number of selects propagated"); STATISTIC(NumMemAccess, "Number of memory access targets propagated"); +STATISTIC(NumCmps, "Number of comparisons propagated"); namespace { class CorrelatedValuePropagation : public FunctionPass { @@ -32,6 +34,7 @@ namespace { bool processSelect(SelectInst *SI); bool processPHI(PHINode *P); bool processMemAccess(Instruction *I); + bool processCmp(CmpInst *C); public: static char ID; @@ -117,6 +120,47 @@ bool CorrelatedValuePropagation::processMemAccess(Instruction *I) { return true; } +/// processCmp - If the value of this comparison could be determined locally, +/// constant propagation would already have figured it out. Instead, walk +/// the predecessors and statically evaluate the comparison based on information +/// available on that edge. If a given static evaluation is true on ALL +/// incoming edges, then it's true universally and we can simplify the compare. +bool CorrelatedValuePropagation::processCmp(CmpInst *C) { + Value *Op0 = C->getOperand(0); + if (isa<Instruction>(Op0) && + cast<Instruction>(Op0)->getParent() == C->getParent()) + return false; + + Constant *Op1 = dyn_cast<Constant>(C->getOperand(1)); + if (!Op1) return false; + + pred_iterator PI = pred_begin(C->getParent()), PE = pred_end(C->getParent()); + if (PI == PE) return false; + + LazyValueInfo::Tristate Result = LVI->getPredicateOnEdge(C->getPredicate(), + C->getOperand(0), Op1, *PI, C->getParent()); + if (Result == LazyValueInfo::Unknown) return false; + + ++PI; + while (PI != PE) { + LazyValueInfo::Tristate Res = LVI->getPredicateOnEdge(C->getPredicate(), + C->getOperand(0), Op1, *PI, C->getParent()); + if (Res != Result) return false; + ++PI; + } + + ++NumCmps; + + if (Result == LazyValueInfo::True) + C->replaceAllUsesWith(ConstantInt::getTrue(C->getContext())); + else + C->replaceAllUsesWith(ConstantInt::getFalse(C->getContext())); + + C->eraseFromParent(); + + return true; +} + bool CorrelatedValuePropagation::runOnFunction(Function &F) { LVI = &getAnalysis<LazyValueInfo>(); @@ -133,6 +177,10 @@ bool CorrelatedValuePropagation::runOnFunction(Function &F) { case Instruction::PHI: BBChanged |= processPHI(cast<PHINode>(II)); break; + case Instruction::ICmp: + case Instruction::FCmp: + BBChanged |= processCmp(cast<CmpInst>(II)); + break; case Instruction::Load: case Instruction::Store: BBChanged |= processMemAccess(II); |