]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/115701 - fix maybe_duplicate_ssa_info_at_copy
authorRichard Biener <rguenther@suse.de>
Sun, 30 Jun 2024 09:34:43 +0000 (11:34 +0200)
committerRichard Biener <rguenth@gcc.gnu.org>
Sun, 30 Jun 2024 10:55:27 +0000 (12:55 +0200)
The following restricts copying of points-to info from defs that
might be in regions invoking UB and are never executed.

PR tree-optimization/115701
* tree-ssanames.cc (maybe_duplicate_ssa_info_at_copy):
Only copy info from within the same BB.

* gcc.dg/torture/pr115701.c: New testcase.

gcc/testsuite/gcc.dg/torture/pr115701.c [new file with mode: 0644]
gcc/tree-ssanames.cc

diff --git a/gcc/testsuite/gcc.dg/torture/pr115701.c b/gcc/testsuite/gcc.dg/torture/pr115701.c
new file mode 100644 (file)
index 0000000..9b7c34b
--- /dev/null
@@ -0,0 +1,22 @@
+/* { dg-do run } */
+/* IPA PTA disables local PTA recompute after IPA.  */
+/* { dg-additional-options "-fipa-pta" } */
+
+int a, c, d;
+static int b;
+int main()
+{
+  int *e = &a, **f = &e;
+  while (1) {
+    int **g, ***h = &f;
+    if (c)
+      *g = e;
+    else if (!b)
+      break;
+    *e = **g;
+    e = &d;
+  }
+  if (e != &a)
+    __builtin_abort();
+  return 0;
+}
index bb9ed373f3628660c07950e5cd8fb8122232cf49..4f83fcbb51714d8a37102925c85179bba7fa6275 100644 (file)
@@ -775,25 +775,19 @@ duplicate_ssa_name_range_info (tree name, tree src)
 void
 maybe_duplicate_ssa_info_at_copy (tree dest, tree src)
 {
+  /* While points-to info is flow-insensitive we have to avoid copying
+     info from not executed regions invoking UB to dominating defs.  */
+  if (gimple_bb (SSA_NAME_DEF_STMT (src))
+      != gimple_bb (SSA_NAME_DEF_STMT (dest)))
+    return;
+
   if (POINTER_TYPE_P (TREE_TYPE (dest))
       && SSA_NAME_PTR_INFO (dest)
       && ! SSA_NAME_PTR_INFO (src))
-    {
-      duplicate_ssa_name_ptr_info (src, SSA_NAME_PTR_INFO (dest));
-      /* Points-to information is cfg insensitive,
-        but VRP might record context sensitive alignment
-        info, non-nullness, etc.  So reset context sensitive
-        info if the two SSA_NAMEs aren't defined in the same
-        basic block.  */
-      if (gimple_bb (SSA_NAME_DEF_STMT (src))
-         != gimple_bb (SSA_NAME_DEF_STMT (dest)))
-       reset_flow_sensitive_info (src);
-    }
+    duplicate_ssa_name_ptr_info (src, SSA_NAME_PTR_INFO (dest));
   else if (INTEGRAL_TYPE_P (TREE_TYPE (dest))
           && SSA_NAME_RANGE_INFO (dest)
-          && ! SSA_NAME_RANGE_INFO (src)
-          && (gimple_bb (SSA_NAME_DEF_STMT (src))
-              == gimple_bb (SSA_NAME_DEF_STMT (dest))))
+          && ! SSA_NAME_RANGE_INFO (src))
     duplicate_ssa_name_range_info (src, dest);
 }