+2015-06-22 Marek Polacek <polacek@redhat.com>
+
+ * match.pd ((x ^ y) ^ (x | y) -> x & y,
+ (x & y) + (x ^ y) -> x | y, (x & y) | (x ^ y) -> x | y,
+ (x & y) ^ (x ^ y) -> x | y, (x & y) + (x | y) -> x + y,
+ (x | y) - (x ^ y) -> x & y, (x | y) - (x & y) -> x ^ y): New patterns.
+
2015-06-22 Uros Bizjak <ubizjak@gmail.com>
PR target/65871
(bit_xor:c (bit_and @0 @1) (bit_ior @0 @1))
(bit_xor @0 @1))
+/* (x ^ y) ^ (x | y) -> x & y */
+(simplify
+ (bit_xor:c (bit_xor @0 @1) (bit_ior @0 @1))
+ (bit_and @0 @1))
+
+/* (x & y) + (x ^ y) -> x | y */
+/* (x & y) | (x ^ y) -> x | y */
+/* (x & y) ^ (x ^ y) -> x | y */
+(for op (plus bit_ior bit_xor)
+ (simplify
+ (op:c (bit_and @0 @1) (bit_xor @0 @1))
+ (bit_ior @0 @1)))
+
+/* (x & y) + (x | y) -> x + y */
+(simplify
+ (plus:c (bit_and @0 @1) (bit_ior @0 @1))
+ (plus @0 @1))
+
+/* (x | y) - (x ^ y) -> x & y */
+(simplify
+ (minus (bit_ior @0 @1) (bit_xor @0 @1))
+ (bit_and @0 @1))
+
+/* (x | y) - (x & y) -> x ^ y */
+(simplify
+ (minus (bit_ior @0 @1) (bit_and @0 @1))
+ (bit_xor @0 @1))
+
(simplify
(abs (negate @0))
(abs @0))
+2015-06-22 Marek Polacek <polacek@redhat.com>
+
+ * gcc.dg/fold-ior-1.c: New test.
+ * gcc.dg/fold-minus-2.c: New test.
+ * gcc.dg/fold-minus-3.c: New test.
+ * gcc.dg/fold-plus-1.c: New test.
+ * gcc.dg/fold-plus-2.c: New test.
+ * gcc.dg/fold-xor-4.c: New test.
+ * gcc.dg/fold-xor-5.c: New test.
+
2015-06-22 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
PR target/65914
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = a ^ b;
+ return tem1 | tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = a ^ b;
+ return tem1 | tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = b ^ a;
+ return tem1 | tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = b ^ a;
+ return tem1 | tem2;
+}
+
+int
+fn5 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = a & b;
+ return tem1 | tem2;
+}
+
+int
+fn6 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = a & b;
+ return tem1 | tem2;
+}
+
+int
+fn7 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = b & a;
+ return tem1 | tem2;
+}
+
+int
+fn8 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = b & a;
+ return tem1 | tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " & " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\^ " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = a ^ b;
+ return tem1 - tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = a ^ b;
+ return tem1 - tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = b ^ a;
+ return tem1 - tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = b ^ a;
+ return tem1 - tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " \\^ " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = a & b;
+ return tem1 - tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = a & b;
+ return tem1 - tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = b & a;
+ return tem1 - tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = b & a;
+ return tem1 - tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " & " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = a ^ b;
+ return tem1 + tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = a ^ b;
+ return tem1 + tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = b ^ a;
+ return tem1 + tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = b ^ a;
+ return tem1 + tem2;
+}
+
+int
+fn5 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = a & b;
+ return tem1 + tem2;
+}
+
+int
+fn6 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = a & b;
+ return tem1 + tem2;
+}
+
+int
+fn7 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = b & a;
+ return tem1 + tem2;
+}
+
+int
+fn8 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = b & a;
+ return tem1 + tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " & " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\^ " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\+ " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = a | b;
+ return tem1 + tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = a | b;
+ return tem1 + tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = b | a;
+ return tem1 + tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = b | a;
+ return tem1 + tem2;
+}
+
+int
+fn5 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = a & b;
+ return tem1 + tem2;
+}
+
+int
+fn6 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = a & b;
+ return tem1 + tem2;
+}
+
+int
+fn7 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = b & a;
+ return tem1 + tem2;
+}
+
+int
+fn8 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = b & a;
+ return tem1 + tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " & " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = a ^ b;
+ return tem1 ^ tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = a ^ b;
+ return tem1 ^ tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a & b;
+ int tem2 = b ^ a;
+ return tem1 ^ tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b & a;
+ int tem2 = b ^ a;
+ return tem1 ^ tem2;
+}
+
+int
+fn5 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = a & b;
+ return tem1 ^ tem2;
+}
+
+int
+fn6 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = a & b;
+ return tem1 ^ tem2;
+}
+
+int
+fn7 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = b & a;
+ return tem1 ^ tem2;
+}
+
+int
+fn8 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = b & a;
+ return tem1 ^ tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " & " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\^ " "cddce1" } } */
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-cddce1" } */
+
+int
+fn1 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = a ^ b;
+ return tem1 ^ tem2;
+}
+
+int
+fn2 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = a ^ b;
+ return tem1 ^ tem2;
+}
+
+int
+fn3 (int a, int b)
+{
+ int tem1 = a | b;
+ int tem2 = b ^ a;
+ return tem1 ^ tem2;
+}
+
+int
+fn4 (int a, int b)
+{
+ int tem1 = b | a;
+ int tem2 = b ^ a;
+ return tem1 ^ tem2;
+}
+
+int
+fn5 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = a | b;
+ return tem1 ^ tem2;
+}
+
+int
+fn6 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = a | b;
+ return tem1 ^ tem2;
+}
+
+int
+fn7 (int a, int b)
+{
+ int tem1 = a ^ b;
+ int tem2 = b | a;
+ return tem1 ^ tem2;
+}
+
+int
+fn8 (int a, int b)
+{
+ int tem1 = b ^ a;
+ int tem2 = b | a;
+ return tem1 ^ tem2;
+}
+
+/* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */
+/* { dg-final { scan-tree-dump-not " \\^ " "cddce1" } } */