gcc/
authorienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jun 2015 09:07:25 +0000 (09:07 +0000)
committerienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jun 2015 09:07:25 +0000 (09:07 +0000)
* tree-chkp.c (chkp_compute_bounds_for_assignment): Don't
reuse bounds created for abnormal ssa names.

gcc/testsuite/

* gcc.target/i386/mpx/pr66581.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224643 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/tree-chkp.c

index eb37d08..e567ed0 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-19  Ilya Enkovich  <enkovich.gnu@gmail.com>
+
+       * tree-chkp.c (chkp_compute_bounds_for_assignment): Don't
+       reuse bounds created for abnormal ssa names.
+
 2015-06-19  Jakub Jelinek  <jakub@redhat.com>
 
        * config/nvptx/nvptx.md (allocate_stack): Rename to...
index 9a3978b..1ca4b68 100644 (file)
@@ -1,3 +1,7 @@
+2015-06-19  Ilya Enkovich  <enkovich.gnu@gmail.com>
+
+       * gcc.target/i386/mpx/pr66581.c: New test.
+
 2015-06-18  Uros Bizjak  <ubizjak@gmail.com>
 
        * gcc.target/i386/cmov9.c: New test.
index 7ffec7b..4c3317a 100644 (file)
@@ -2526,6 +2526,7 @@ chkp_compute_bounds_for_assignment (tree node, gimple assign)
   tree rhs1 = gimple_assign_rhs1 (assign);
   tree bounds = NULL_TREE;
   gimple_stmt_iterator iter = gsi_for_stmt (assign);
+  tree base = NULL;
 
   if (dump_file && (dump_flags & TDF_DETAILS))
     {
@@ -2552,6 +2553,7 @@ chkp_compute_bounds_for_assignment (tree node, gimple assign)
     case INTEGER_CST:
       /* Bounds are just propagated from RHS.  */
       bounds = chkp_find_bounds (rhs1, &iter);
+      base = rhs1;
       break;
 
     case VIEW_CONVERT_EXPR:
@@ -2622,6 +2624,8 @@ chkp_compute_bounds_for_assignment (tree node, gimple assign)
             (e.g. pointer minus pointer).  In such case
             use default invalid op bounds.  */
          bounds = chkp_get_invalid_op_bounds ();
+
+       base = (bounds == bnd1) ? rhs1 : (bounds == bnd2) ? rhs2 : NULL;
       }
       break;
 
@@ -2717,6 +2721,19 @@ chkp_compute_bounds_for_assignment (tree node, gimple assign)
 
   gcc_assert (bounds);
 
+  /* We may reuse bounds of other pointer we copy/modify.  But it is not
+     allowed for abnormal ssa names.  If we produced a pointer using
+     abnormal ssa name, we better make a bounds copy to avoid coalescing
+     issues.  */
+  if (base
+      && TREE_CODE (base) == SSA_NAME
+      && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (base))
+    {
+      gimple stmt = gimple_build_assign (chkp_get_tmp_reg (NULL), bounds);
+      gsi_insert_after (&iter, stmt, GSI_SAME_STMT);
+      bounds = gimple_assign_lhs (stmt);
+    }
+
   if (node)
     bounds = chkp_maybe_copy_and_register_bounds (node, bounds);