diff options
| author | David Majnemer <david.majnemer@gmail.com> | 2014-06-19 07:14:33 +0000 |
|---|---|---|
| committer | David Majnemer <david.majnemer@gmail.com> | 2014-06-19 07:14:33 +0000 |
| commit | 6cf6c05322629a17a82aa53e3931086b0c633f87 (patch) | |
| tree | 4963ab082543c879a76f5b641944bc1981b917f3 /llvm/test/Transforms | |
| parent | 4c5bff36ad5574af0df697192003c5ccef4a1297 (diff) | |
| download | bcm5719-llvm-6cf6c05322629a17a82aa53e3931086b0c633f87.tar.gz bcm5719-llvm-6cf6c05322629a17a82aa53e3931086b0c633f87.zip | |
InstCombine: Stop two transforms dueling
InstCombineMulDivRem has:
// Canonicalize (X+C1)*CI -> X*CI+C1*CI.
InstCombineAddSub has:
// W*X + Y*Z --> W * (X+Z) iff W == Y
These two transforms could fight with each other if C1*CI would not fold
away to something simpler than a ConstantExpr mul.
The InstCombineMulDivRem transform only acted on ConstantInts until
r199602 when it was changed to operate on all Constants in order to
let it fire on ConstantVectors.
To fix this, make this transform more careful by checking to see if we
actually folded away C1*CI.
This fixes PR20079.
llvm-svn: 211258
Diffstat (limited to 'llvm/test/Transforms')
| -rw-r--r-- | llvm/test/Transforms/InstCombine/pr20079.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/pr20079.ll b/llvm/test/Transforms/InstCombine/pr20079.ll new file mode 100644 index 00000000000..3c86ecc5f30 --- /dev/null +++ b/llvm/test/Transforms/InstCombine/pr20079.ll @@ -0,0 +1,13 @@ +; RUN: opt -S -instcombine < %s | FileCheck %s +@b = internal global [1 x i32] zeroinitializer, align 4 +@c = internal global i32 0, align 4 + +; CHECK-LABEL: @fn1 +; CHECK: [[ADD:%.*]] = add i32 %a, -1 +; CHECK-NEXT: [[AND:%.*]] = and i32 [[ADD]], sub (i32 0, i32 zext (i1 icmp eq (i32* getelementptr inbounds ([1 x i32]* @b, i64 0, i64 0), i32* @c) to i32)) +; CHECK-NEXT: ret i32 [[AND]] +define i32 @fn1(i32 %a) { + %xor = add i32 %a, -1 + %mul = mul nsw i32 %xor, zext (i1 icmp eq (i32* getelementptr inbounds ([1 x i32]* @b, i64 0, i64 0), i32* @c) to i32) + ret i32 %mul +} |

