diff options
| author | Stuart Hastings <stuart@apple.com> | 2011-05-30 20:00:33 +0000 | 
|---|---|---|
| committer | Stuart Hastings <stuart@apple.com> | 2011-05-30 20:00:33 +0000 | 
| commit | 8284374b07759a28c0856fc44c4088355d6b1318 (patch) | |
| tree | dc8468985ef202211684a49b1c9973bc3e29a0ff /llvm/lib/Transforms | |
| parent | cd0d2fd21f9e9b99e253bc2d5c9577feb6fb55c7 (diff) | |
| download | bcm5719-llvm-8284374b07759a28c0856fc44c4088355d6b1318.tar.gz bcm5719-llvm-8284374b07759a28c0856fc44c4088355d6b1318.zip | |
(1 - X) * (-2) -> (x - 1) * 2, for all positive nonzero powers of 2
rdar://problem/6501862
llvm-svn: 132316
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp index a9b60d373c3..94b619b2037 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp @@ -135,6 +135,23 @@ Instruction *InstCombiner::visitMul(BinaryOperator &I) {          return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));        }      } + +    // (1 - X) * (-2) -> (x - 1) * 2, for all positive nonzero powers of 2 +    // The "* 2" thus becomes a potential shifting opportunity. +    { +      const APInt &   Val = CI->getValue(); +      const APInt &PosVal = Val.abs(); +      if (Val.isNegative() && PosVal.isPowerOf2()) { +        Value *X = 0; +        if (match(Op0, m_Sub(m_One(), m_Value(X)))) { +          // ConstantInt::get(Op0->getType(), 2); +          Value *Sub = Builder->CreateSub(X, ConstantInt::get(X->getType(), 1), +                                          "dec1"); +          return BinaryOperator::CreateMul(Sub, ConstantInt::get(X->getType(), +                                                                 PosVal)); +        } +      } +    }    }    // Simplify mul instructions with a constant RHS. | 

