From dd12f96c5e2292e398f363cf352d6a95847a8a55 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Feb 2008 21:03:36 +0000 Subject: [PATCH] Fold (-x + -y) -> -(x+y) which promotes better association, fixing the second half of PR2047 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47244 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/InstructionCombining.cpp | 12 ++++++++++-- test/Transforms/InstCombine/addnegneg.ll | 12 ++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 test/Transforms/InstCombine/addnegneg.ll diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index c9ff01b9078..1ecefeb82bc 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -2090,8 +2090,16 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) { } // -A + B --> B - A - if (Value *V = dyn_castNegVal(LHS)) - return BinaryOperator::createSub(RHS, V); + // -A + -B --> -(A + B) + if (Value *LHSV = dyn_castNegVal(LHS)) { + if (Value *RHSV = dyn_castNegVal(RHS)) { + Instruction *NewAdd = BinaryOperator::createAdd(LHSV, RHSV, "sum"); + InsertNewInstBefore(NewAdd, I); + return BinaryOperator::createNeg(NewAdd); + } + + return BinaryOperator::createSub(RHS, LHSV); + } // A + -B --> A - B if (!isa(RHS)) diff --git a/test/Transforms/InstCombine/addnegneg.ll b/test/Transforms/InstCombine/addnegneg.ll new file mode 100644 index 00000000000..f3b9565a51e --- /dev/null +++ b/test/Transforms/InstCombine/addnegneg.ll @@ -0,0 +1,12 @@ +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep { sub } | count 1 +; PR2047 + +define i32 @l(i32 %a, i32 %b, i32 %c, i32 %d) { +entry: + %b.neg = sub i32 0, %b ; [#uses=1] + %c.neg = sub i32 0, %c ; [#uses=1] + %sub4 = add i32 %c.neg, %b.neg ; [#uses=1] + %sub6 = add i32 %sub4, %d ; [#uses=1] + ret i32 %sub6 +} +