Commit a95015b6 by Kai Tietz Committed by Kai Tietz

ChangeLog gcc/

2011-06-20  Kai Tietz  <ktietz@redhat.com>

	* fold-const.c (fold_binary_loc): Add missing
	folding for truth-not operations in combination
	with binary and.

ChangeLog gcc/testsuite/

2011-06-20  Kai Tietz  <ktietz@redhat.com>

	* gcc.dg/binop-notand1.c: New test.
	* gcc.dg/binop-notand2.c: New test.
	* gcc.dg/binop-notand3.c: New test.
	* gcc.dg/binop-notand4.c: New test.
	* gcc.dg/binop-notand5.c: New test.
	* gcc.dg/binop-notand6.c: New test.

From-SVN: r175206
parent 6f17ef33
2011-06-20 Kai Tietz <ktietz@redhat.com>
* fold-const.c (fold_binary_loc): Add missing
folding for truth-not operations in combination
with binary and.
2011-06-20 Bernd Schmidt <bernds@codesourcery.com> 2011-06-20 Bernd Schmidt <bernds@codesourcery.com>
* regrename.c (do_replace): Don't update notes. * regrename.c (do_replace): Don't update notes.
......
...@@ -10866,13 +10866,19 @@ fold_binary_loc (location_t loc, ...@@ -10866,13 +10866,19 @@ fold_binary_loc (location_t loc,
if (operand_equal_p (arg0, arg1, 0)) if (operand_equal_p (arg0, arg1, 0))
return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0)); return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
/* ~X & X is always zero. */ /* ~X & X, (X == 0) & X, and !X & X are always zero. */
if (TREE_CODE (arg0) == BIT_NOT_EXPR if ((TREE_CODE (arg0) == BIT_NOT_EXPR
|| TREE_CODE (arg0) == TRUTH_NOT_EXPR
|| (TREE_CODE (arg0) == EQ_EXPR
&& integer_zerop (TREE_OPERAND (arg0, 1))))
&& operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)) && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
return omit_one_operand_loc (loc, type, integer_zero_node, arg1); return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
/* X & ~X is always zero. */ /* X & ~X , X & (X == 0), and X & !X are always zero. */
if (TREE_CODE (arg1) == BIT_NOT_EXPR if ((TREE_CODE (arg1) == BIT_NOT_EXPR
|| TREE_CODE (arg1) == TRUTH_NOT_EXPR
|| (TREE_CODE (arg1) == EQ_EXPR
&& integer_zerop (TREE_OPERAND (arg1, 1))))
&& operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0)) && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
return omit_one_operand_loc (loc, type, integer_zero_node, arg0); return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
...@@ -10933,6 +10939,14 @@ fold_binary_loc (location_t loc, ...@@ -10933,6 +10939,14 @@ fold_binary_loc (location_t loc,
build_int_cst (TREE_TYPE (tem), 1)), build_int_cst (TREE_TYPE (tem), 1)),
build_int_cst (TREE_TYPE (tem), 0)); build_int_cst (TREE_TYPE (tem), 0));
} }
/* Fold !X & 1 as X == 0. */
if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
&& integer_onep (arg1))
{
tem = TREE_OPERAND (arg0, 0);
return fold_build2_loc (loc, EQ_EXPR, type, tem,
build_int_cst (TREE_TYPE (tem), 0));
}
/* Fold (X ^ Y) & Y as ~X & Y. */ /* Fold (X ^ Y) & Y as ~X & Y. */
if (TREE_CODE (arg0) == BIT_XOR_EXPR if (TREE_CODE (arg0) == BIT_XOR_EXPR
......
2011-06-20 Kai Tietz <ktietz@redhat.com>
* gcc.dg/binop-notand1.c: New test.
* gcc.dg/binop-notand2.c: New test.
* gcc.dg/binop-notand3.c: New test.
* gcc.dg/binop-notand4.c: New test.
* gcc.dg/binop-notand5.c: New test.
* gcc.dg/binop-notand6.c: New test.
2011-06-18 Jakub Jelinek <jakub@redhat.com> 2011-06-18 Jakub Jelinek <jakub@redhat.com>
PR testsuite/49432 PR testsuite/49432
......
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a, int b)
{
return (a & !a) | (b & !b);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a)
{
return (!a & 1) != (a == 0);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a)
{
return (!a & 1) != ((a == 0) & 1);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a, int b)
{
return (!a & a) | (b & !b);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a, int b)
{
return (a & (a == 0)) | (b & !b);
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int
foo (int a, int b)
{
return (a & !a) | (b & (b == 0));
}
/* { dg-final { scan-tree-dump-times "return 0" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment