diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-19 16:27:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-19 16:27:56 +0000 |
commit | d0a363e03b31472dab26c1d545f42708d726690e (patch) | |
tree | 023c628ad561ff9399c8b260805820ff59b18473 /llvm/lib/Transforms/Scalar/JumpThreading.cpp | |
parent | 3773afe93134cfcf273c037a727914008a8f76fd (diff) | |
download | bcm5719-llvm-d0a363e03b31472dab26c1d545f42708d726690e.tar.gz bcm5719-llvm-d0a363e03b31472dab26c1d545f42708d726690e.zip |
make jump threading handle lexically identical compare instructions
as if they were multiple uses of the same instruction. This interacts
well with the existing loadpre that j-t does to open up many new jump
threads earlier.
llvm-svn: 73768
Diffstat (limited to 'llvm/lib/Transforms/Scalar/JumpThreading.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index ed84ec1b965..5a70fc3bc6f 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -324,10 +324,6 @@ bool JumpThreading::ProcessBlock(BasicBlock *BB) { } } - // If there is only a single predecessor of this block, nothing to fold. - if (BB->getSinglePredecessor()) - return false; - // All the rest of our checks depend on the condition being an instruction. if (CondInst == 0) return false; @@ -358,6 +354,23 @@ bool JumpThreading::ProcessBlock(BasicBlock *BB) { if (ProcessBranchOnCompare(CondCmp, BB)) return true; } + + // If we have a comparison, loop over the predecessors to see if there is + // a condition with the same value. + pred_iterator PI = pred_begin(BB), E = pred_end(BB); + for (; PI != E; ++PI) + if (BranchInst *PBI = dyn_cast<BranchInst>((*PI)->getTerminator())) + if (PBI->isConditional() && *PI != BB) { + if (CmpInst *CI = dyn_cast<CmpInst>(PBI->getCondition())) { + if (CI->getOperand(0) == CondCmp->getOperand(0) && + CI->getOperand(1) == CondCmp->getOperand(1) && + CI->getPredicate() == CondCmp->getPredicate()) { + // TODO: Could handle things like (x != 4) --> (x == 17) + if (ProcessBranchOnDuplicateCond(*PI, BB)) + return true; + } + } + } } // Check for some cases that are worth simplifying. Right now we want to look |