This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix PR66110


On Tue, 12 May 2015, Richard Biener wrote:

> 
> The following patch fixes PR66110 - there is no reason why two alias-sets
> conflict just because one or the other has a child with alias-set zero.
> 
> We need to paper over strict-aliasing bugs in dfp.c (re-using
> struct real_value unsigned long sig[] as decimal128) by adding
> -Wno-strict-aliasing, otherwise bootstrap with -Werror fails.
> 
> Bootstrapped and tested on x86_64-unknown-linux-gnu (with 
> --disable-werror, now re-trying with just the dfp.c issue workaround).
> 
> I intent to commit this if that succeeds.

This is what I have committed.

Richard.

2015-05-13  Richard Biener  <rguenther@suse.de>

	PR middle-end/66110
	* alias.c (alias_sets_conflict_p): Do not treat has_zero_child
	specially.
	* Makefile.in (dfp.o-warn): Add -Wno-strict-aliasing.

	* gcc.dg/alias-2.c: Adjust.
	* gcc.dg/tree-ssa/ssa-dse-17.c: New testcase.

Index: gcc/alias.c
===================================================================
--- gcc/alias.c	(revision 223032)
+++ gcc/alias.c	(working copy)
@@ -470,15 +470,13 @@ alias_sets_conflict_p (alias_set_type se
   /* See if the first alias set is a subset of the second.  */
   ase = get_alias_set_entry (set1);
   if (ase != 0
-      && (ase->has_zero_child
-	  || ase->children->get (set2)))
+      && ase->children->get (set2))
     return 1;
 
   /* Now do the same, but with the alias sets reversed.  */
   ase = get_alias_set_entry (set2);
   if (ase != 0
-      && (ase->has_zero_child
-	  || ase->children->get (set1)))
+      && ase->children->get (set1))
     return 1;
 
   /* The two alias sets are distinct and neither one is the
Index: gcc/Makefile.in
===================================================================
--- gcc/Makefile.in	(revision 223032)
+++ gcc/Makefile.in	(working copy)
@@ -211,6 +211,7 @@ libgcov-driver-tool.o-warn = -Wno-error
 libgcov-merge-tool.o-warn = -Wno-error
 gimple-match.o-warn = -Wno-unused
 generic-match.o-warn = -Wno-unused
+dfp.o-warn = -Wno-strict-aliasing
 
 # All warnings have to be shut off in stage1 if the compiler used then
 # isn't gcc; configure determines that.  WARN_CFLAGS will be either
Index: gcc/testsuite/gcc.dg/alias-2.c
===================================================================
--- gcc/testsuite/gcc.dg/alias-2.c	(revision 223032)
+++ gcc/testsuite/gcc.dg/alias-2.c	(working copy)
@@ -11,6 +11,6 @@ struct foo {
 int
 sub1 (long long int foobar)
 {
-  struct foo *tmp = (struct foo *) &foobar; // { dg-warning "type-punned pointer might" "" }
+  struct foo *tmp = (struct foo *) &foobar; // { dg-warning "type-punned pointer will" "" }
   return tmp->i;
 }
Index: gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-17.c
===================================================================
--- gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-17.c	(revision 0)
+++ gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-17.c	(working copy)
@@ -0,0 +1,20 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-tree-dse1" } */
+
+struct s1 {
+    unsigned short f1;
+    unsigned char f2;
+};
+
+struct s2 {
+    struct s1 *p1;
+};
+
+void f1(struct s2 *p)
+{
+  p->p1->f2 = 9;
+  p->p1->f2 = 10;
+}
+
+/* { dg-final { scan-tree-dump-times "f2 =" 1 "dse1" } } */
+/* { dg-final { cleanup-tree-dump "dse1" } } */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]