public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Fix wrong code in ldist-strlen-1.c
@ 2021-10-16 12:47 Jan Hubicka
  2021-10-16 15:46 ` Richard Biener
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Hubicka @ 2021-10-16 12:47 UTC (permalink / raw)
  To: gcc-patches

Hi,
while updating compute_points_to_sets I missed that the code not only
sets the nonlocal/escaped flags but also initializes pt.  With my
previous change if uses_global_memory is false pt is not updated
correctly which may lead to wrong code.

This is fixed by the following patch I comitted to avoid strange
misoptimizations.

Bootstrapped/regtested x86_64-linux and also tested with LTO.

Honza

gcc/ChangeLog:

	PR tree-optimization/102720
	* tree-ssa-structalias.c (compute_points_to_sets): Fix producing
	of call used and clobbered sets.

diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c
index 6f12a66ee0d..2e6513bb72a 100644
--- a/gcc/tree-ssa-structalias.c
+++ b/gcc/tree-ssa-structalias.c
@@ -7541,17 +7541,18 @@ compute_points_to_sets (void)
 	      determine_global_memory_access (stmt, NULL,
 					      &reads_global_memory,
 					      &uses_global_memory);
-	      if (!uses_global_memory)
-		;
-	      else if ((vi = lookup_call_use_vi (stmt)) != NULL)
+	      if ((vi = lookup_call_use_vi (stmt)) != NULL)
 		{
 		  *pt = find_what_var_points_to (cfun->decl, vi);
 		  /* Escaped (and thus nonlocal) variables are always
 		     implicitly used by calls.  */
 		  /* ???  ESCAPED can be empty even though NONLOCAL
 		     always escaped.  */
-		  pt->nonlocal = uses_global_memory;
-		  pt->escaped = uses_global_memory;
+		  if (uses_global_memory)
+		    {
+		      pt->nonlocal = uses_global_memory;
+		      pt->escaped = uses_global_memory;
+		    }
 		}
 	      else if (uses_global_memory)
 		{
@@ -7572,17 +7573,18 @@ compute_points_to_sets (void)
 	      determine_global_memory_access (stmt, &writes_global_memory,
 					      NULL, NULL);
 
-	      if (!writes_global_memory)
-		;
-	      else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
+	      if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
 		{
 		  *pt = find_what_var_points_to (cfun->decl, vi);
 		  /* Escaped (and thus nonlocal) variables are always
 		     implicitly clobbered by calls.  */
 		  /* ???  ESCAPED can be empty even though NONLOCAL
 		     always escaped.  */
-		  pt->nonlocal = writes_global_memory;
-		  pt->escaped = writes_global_memory;
+		  if (writes_global_memory)
+		    {
+		      pt->nonlocal = writes_global_memory;
+		      pt->escaped = writes_global_memory;
+		    }
 		}
 	      else if (writes_global_memory)
 		{

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fix wrong code in ldist-strlen-1.c
  2021-10-16 12:47 Fix wrong code in ldist-strlen-1.c Jan Hubicka
@ 2021-10-16 15:46 ` Richard Biener
  2021-10-16 15:58   ` H.J. Lu
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Biener @ 2021-10-16 15:46 UTC (permalink / raw)
  To: Jan Hubicka, Jan Hubicka via Gcc-patches, gcc-patches

On October 16, 2021 2:47:51 PM GMT+02:00, Jan Hubicka via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
>Hi,
>while updating compute_points_to_sets I missed that the code not only
>sets the nonlocal/escaped flags but also initializes pt.  With my
>previous change if uses_global_memory is false pt is not updated
>correctly which may lead to wrong code.
>
>This is fixed by the following patch I comitted to avoid strange
>misoptimizations.
>
>Bootstrapped/regtested x86_64-linux and also tested with LTO.

OK. 

Richard. 

>Honza
>
>gcc/ChangeLog:
>
>	PR tree-optimization/102720
>	* tree-ssa-structalias.c (compute_points_to_sets): Fix producing
>	of call used and clobbered sets.
>
>diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c
>index 6f12a66ee0d..2e6513bb72a 100644
>--- a/gcc/tree-ssa-structalias.c
>+++ b/gcc/tree-ssa-structalias.c
>@@ -7541,17 +7541,18 @@ compute_points_to_sets (void)
> 	      determine_global_memory_access (stmt, NULL,
> 					      &reads_global_memory,
> 					      &uses_global_memory);
>-	      if (!uses_global_memory)
>-		;
>-	      else if ((vi = lookup_call_use_vi (stmt)) != NULL)
>+	      if ((vi = lookup_call_use_vi (stmt)) != NULL)
> 		{
> 		  *pt = find_what_var_points_to (cfun->decl, vi);
> 		  /* Escaped (and thus nonlocal) variables are always
> 		     implicitly used by calls.  */
> 		  /* ???  ESCAPED can be empty even though NONLOCAL
> 		     always escaped.  */
>-		  pt->nonlocal = uses_global_memory;
>-		  pt->escaped = uses_global_memory;
>+		  if (uses_global_memory)
>+		    {
>+		      pt->nonlocal = uses_global_memory;
>+		      pt->escaped = uses_global_memory;
>+		    }
> 		}
> 	      else if (uses_global_memory)
> 		{
>@@ -7572,17 +7573,18 @@ compute_points_to_sets (void)
> 	      determine_global_memory_access (stmt, &writes_global_memory,
> 					      NULL, NULL);
> 
>-	      if (!writes_global_memory)
>-		;
>-	      else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
>+	      if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
> 		{
> 		  *pt = find_what_var_points_to (cfun->decl, vi);
> 		  /* Escaped (and thus nonlocal) variables are always
> 		     implicitly clobbered by calls.  */
> 		  /* ???  ESCAPED can be empty even though NONLOCAL
> 		     always escaped.  */
>-		  pt->nonlocal = writes_global_memory;
>-		  pt->escaped = writes_global_memory;
>+		  if (writes_global_memory)
>+		    {
>+		      pt->nonlocal = writes_global_memory;
>+		      pt->escaped = writes_global_memory;
>+		    }
> 		}
> 	      else if (writes_global_memory)
> 		{


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fix wrong code in ldist-strlen-1.c
  2021-10-16 15:46 ` Richard Biener
@ 2021-10-16 15:58   ` H.J. Lu
  0 siblings, 0 replies; 3+ messages in thread
From: H.J. Lu @ 2021-10-16 15:58 UTC (permalink / raw)
  To: Richard Biener; +Cc: Jan Hubicka, Jan Hubicka via Gcc-patches

On Sat, Oct 16, 2021 at 8:46 AM Richard Biener via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> On October 16, 2021 2:47:51 PM GMT+02:00, Jan Hubicka via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
> >Hi,
> >while updating compute_points_to_sets I missed that the code not only
> >sets the nonlocal/escaped flags but also initializes pt.  With my
> >previous change if uses_global_memory is false pt is not updated
> >correctly which may lead to wrong code.
> >
> >This is fixed by the following patch I comitted to avoid strange
> >misoptimizations.
> >
> >Bootstrapped/regtested x86_64-linux and also tested with LTO.

This caused:

FAIL: gfortran.dg/deferred_type_param_6.f90   -O1  execution test

on Linux/x86-64.  -march=cascadelake may be needed to reproduce it.

> OK.
>
> Richard.
>
> >Honza
> >
> >gcc/ChangeLog:
> >
> >       PR tree-optimization/102720
> >       * tree-ssa-structalias.c (compute_points_to_sets): Fix producing
> >       of call used and clobbered sets.
> >
> >diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c
> >index 6f12a66ee0d..2e6513bb72a 100644
> >--- a/gcc/tree-ssa-structalias.c
> >+++ b/gcc/tree-ssa-structalias.c
> >@@ -7541,17 +7541,18 @@ compute_points_to_sets (void)
> >             determine_global_memory_access (stmt, NULL,
> >                                             &reads_global_memory,
> >                                             &uses_global_memory);
> >-            if (!uses_global_memory)
> >-              ;
> >-            else if ((vi = lookup_call_use_vi (stmt)) != NULL)
> >+            if ((vi = lookup_call_use_vi (stmt)) != NULL)
> >               {
> >                 *pt = find_what_var_points_to (cfun->decl, vi);
> >                 /* Escaped (and thus nonlocal) variables are always
> >                    implicitly used by calls.  */
> >                 /* ???  ESCAPED can be empty even though NONLOCAL
> >                    always escaped.  */
> >-                pt->nonlocal = uses_global_memory;
> >-                pt->escaped = uses_global_memory;
> >+                if (uses_global_memory)
> >+                  {
> >+                    pt->nonlocal = uses_global_memory;
> >+                    pt->escaped = uses_global_memory;
> >+                  }
> >               }
> >             else if (uses_global_memory)
> >               {
> >@@ -7572,17 +7573,18 @@ compute_points_to_sets (void)
> >             determine_global_memory_access (stmt, &writes_global_memory,
> >                                             NULL, NULL);
> >
> >-            if (!writes_global_memory)
> >-              ;
> >-            else if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
> >+            if ((vi = lookup_call_clobber_vi (stmt)) != NULL)
> >               {
> >                 *pt = find_what_var_points_to (cfun->decl, vi);
> >                 /* Escaped (and thus nonlocal) variables are always
> >                    implicitly clobbered by calls.  */
> >                 /* ???  ESCAPED can be empty even though NONLOCAL
> >                    always escaped.  */
> >-                pt->nonlocal = writes_global_memory;
> >-                pt->escaped = writes_global_memory;
> >+                if (writes_global_memory)
> >+                  {
> >+                    pt->nonlocal = writes_global_memory;
> >+                    pt->escaped = writes_global_memory;
> >+                  }
> >               }
> >             else if (writes_global_memory)
> >               {
>


-- 
H.J.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-16 15:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-16 12:47 Fix wrong code in ldist-strlen-1.c Jan Hubicka
2021-10-16 15:46 ` Richard Biener
2021-10-16 15:58   ` H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).