[PATCH] D39830: [DAGCombine] Transform (A + -2.0*B*C) -> (A - (B+B)*C)
Dmitry Venikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 13 00:34:09 PST 2017
Quolyk updated this revision to Diff 122613.
Quolyk added a comment.
Code review. Fix if N1 is constant.
https://reviews.llvm.org/D39830
Files:
lib/CodeGen/SelectionDAG/DAGCombiner.cpp
test/CodeGen/AArch64/fadd-combines.ll
Index: test/CodeGen/AArch64/fadd-combines.ll
===================================================================
--- test/CodeGen/AArch64/fadd-combines.ll
+++ test/CodeGen/AArch64/fadd-combines.ll
@@ -76,3 +76,28 @@
}
declare void @use(double)
+
+; CHECK-LABEL: test8:
+; CHECK: fadd d1, d1, d1
+; CHECK: fmul d1, d1, d2
+; CHECK: fsub d0, d0, d1
+define double @test8(double %a, double %b, double %c) local_unnamed_addr #0 {
+entry:
+ %mul = fmul double %b, -2.000000e+00
+ %mul1 = fmul double %mul, %c
+ %add = fadd double %mul1, %a
+ ret double %add
+}
+
+; DAGCombine will canonicalize 'a - 2.0*b*c' to 'a + -2.0*b*c'
+; CHECK-LABEL: test9:
+; CHECK: fadd d1, d1, d1
+; CHECK: fmul d1, d1, d2
+; CHECK: fsub d0, d0, d1
+define double @test9(double %a, double %b, double %c) local_unnamed_addr #0 {
+entry:
+ %mul = fmul double %b, 2.000000e+00
+ %mul1 = fmul double %mul, %c
+ %sub = fsub double %a, %mul1
+ ret double %sub
+}
Index: lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -9713,6 +9713,28 @@
return DAG.getNode(ISD::FSUB, DL, VT, N1IsFMul ? N0 : N1, Add, Flags);
}
+ // fold (fadd (fmul (fmul B, -2.0) C), A) -> (fsub A, (fmul (fadd B, B) C)
+ SDValue N0N0 = N0->getOperand(0);
+ if ((isFMulNegTwo(N0N0) && N0N0.hasOneUse())) {
+ SDValue AddOp = N0N0.getOperand(0);
+ SDValue MulOp = N0.getOperand(1);
+ SDValue Add = DAG.getNode(ISD::FADD, DL, VT, AddOp, AddOp, Flags);
+ SDValue Mul = DAG.getNode(ISD::FMUL, DL, VT, Add, MulOp, Flags);
+ return DAG.getNode(ISD::FSUB, DL, VT, N1, Mul, Flags);
+ }
+
+ // fold (fadd A, (fmul (fmul B, -2.0) C)) -> (fsub A, (fmul (fadd B, B) C)
+ if (!N1CFP) {
+ SDValue N1N0 = N1->getOperand(0);
+ if (isFMulNegTwo(N1N0) && N1N0.hasOneUse()) {
+ SDValue AddOp = N1N0.getOperand(0);
+ SDValue MulOp = N1.getOperand(1);
+ SDValue Add = DAG.getNode(ISD::FADD, DL, VT, AddOp, AddOp, Flags);
+ SDValue Mul = DAG.getNode(ISD::FMUL, DL, VT, Add, MulOp, Flags);
+ return DAG.getNode(ISD::FSUB, DL, VT, N0, Mul, Flags);
+ }
+ }
+
// FIXME: Auto-upgrade the target/function-level option.
if (Options.NoSignedZerosFPMath || N->getFlags().hasNoSignedZeros()) {
// fold (fadd A, 0) -> A
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39830.122613.patch
Type: text/x-patch
Size: 2371 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171113/b053b26f/attachment.bin>
More information about the llvm-commits
mailing list