diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-03-14 06:55:18 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-03-14 06:55:18 +0000 |
| commit | d6bde46d853a545c3739dc8e2f1e966a87bd1797 (patch) | |
| tree | fe6fec582f2b10267ed830d88214cf87823a87dc | |
| parent | c714f268bf27b743961b02bc0e0f2a6d330a0ab1 (diff) | |
| download | bcm5719-llvm-d6bde46d853a545c3739dc8e2f1e966a87bd1797.tar.gz bcm5719-llvm-d6bde46d853a545c3739dc8e2f1e966a87bd1797.zip | |
Promote shifts by a constant to multiplies so that we can reassociate
(x<<1)+(y<<1) -> (X+Y)<<1. This implements
Transforms/Reassociate/shift-factor.ll
llvm-svn: 26753
| -rw-r--r-- | llvm/lib/Transforms/Scalar/Reassociate.cpp | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp index 61c5c4953c1..4a484c3584a 100644 --- a/llvm/lib/Transforms/Scalar/Reassociate.cpp +++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp @@ -410,19 +410,23 @@ static Instruction *BreakUpSubtract(Instruction *Sub) { /// by one, change this into a multiply by a constant to assist with further /// reassociation. static Instruction *ConvertShiftToMul(Instruction *Shl) { - if (!isReassociableOp(Shl->getOperand(0), Instruction::Mul) && - !(Shl->hasOneUse() && isReassociableOp(Shl->use_back(),Instruction::Mul))) - return 0; - - Constant *MulCst = ConstantInt::get(Shl->getType(), 1); - MulCst = ConstantExpr::getShl(MulCst, cast<Constant>(Shl->getOperand(1))); - - std::string Name = Shl->getName(); Shl->setName(""); - Instruction *Mul = BinaryOperator::createMul(Shl->getOperand(0), MulCst, - Name, Shl); - Shl->replaceAllUsesWith(Mul); - Shl->eraseFromParent(); - return Mul; + // If an operand of this shift is a reassociable multiply, or if the shift + // is used by a reassociable multiply or add, turn into a multiply. + if (isReassociableOp(Shl->getOperand(0), Instruction::Mul) || + (Shl->hasOneUse() && + (isReassociableOp(Shl->use_back(), Instruction::Mul) || + isReassociableOp(Shl->use_back(), Instruction::Add)))) { + Constant *MulCst = ConstantInt::get(Shl->getType(), 1); + MulCst = ConstantExpr::getShl(MulCst, cast<Constant>(Shl->getOperand(1))); + + std::string Name = Shl->getName(); Shl->setName(""); + Instruction *Mul = BinaryOperator::createMul(Shl->getOperand(0), MulCst, + Name, Shl); + Shl->replaceAllUsesWith(Mul); + Shl->eraseFromParent(); + return Mul; + } + return 0; } // Scan backwards and forwards among values with the same rank as element i to |

