re PR middle-end/27336 (delete null checks in callers to nonnull functions)
authorRichard Biener <rguenther@suse.de>
Tue, 23 Aug 2016 07:23:19 +0000 (07:23 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 23 Aug 2016 07:23:19 +0000 (07:23 +0000)
2016-08-23  Richard Biener  <rguenther@suse.de>

PR tree-optimization/27336
* tree-vrp.c (infer_value_range): Handle stmts that can throw
by looking for a non-EH edge.
(process_assert_insertions_for): Likewise.

* c-c++-common/pr27336.c: New testcase.

From-SVN: r239684

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/pr27336.c [new file with mode: 0644]
gcc/tree-vrp.c

index 42fe573338adbb34dbc2b1be8297f103abb0d538..13b4ad581c20f66a106d585fb457882fca4375e2 100644 (file)
@@ -1,3 +1,10 @@
+2016-08-23  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/27336
+       * tree-vrp.c (infer_value_range): Handle stmts that can throw
+       by looking for a non-EH edge.
+       (process_assert_insertions_for): Likewise.
+
 2016-08-23  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/77305
index f25acf494d69bd7cb862536c2215cf86023650a3..812c0c52ce7cb0c59a658b385f895ab596e7e94b 100644 (file)
@@ -1,3 +1,8 @@
+2016-08-23  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/27336
+       * c-c++-common/pr27336.c: New testcase.
+
 2016-08-22  Marek Polacek  <polacek@redhat.com>
 
        PR c++/77321
diff --git a/gcc/testsuite/c-c++-common/pr27336.c b/gcc/testsuite/c-c++-common/pr27336.c
new file mode 100644 (file)
index 0000000..2978c6d
--- /dev/null
@@ -0,0 +1,12 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-tree-vrp1" } */
+
+struct B { int x; };
+extern void g3(struct B *that)  __attribute__((nonnull));
+int f3(struct B *a)
+{
+  g3(a);
+  return a != (void *)0;
+}
+
+/* { dg-final { scan-tree-dump "return 1;" "vrp1" } } */
index 86f2a8ff3d3cd5093518123fa232004e8c1ba9bd..45882c438ba81094b2ac1552296a52845dfe1ad5 100644 (file)
@@ -4782,11 +4782,6 @@ infer_value_range (gimple *stmt, tree op, tree_code *comp_code_p, tree *val_p)
   if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op))
     return false;
 
-  /* Similarly, don't infer anything from statements that may throw
-     exceptions. ??? Relax this requirement?  */
-  if (stmt_could_throw_p (stmt))
-    return false;
-
   /* If STMT is the last statement of a basic block with no normal
      successors, there is no point inferring anything about any of its
      operands.  We would not be able to find a proper insertion point
@@ -4797,7 +4792,7 @@ infer_value_range (gimple *stmt, tree op, tree_code *comp_code_p, tree *val_p)
       edge e;
 
       FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->succs)
-       if (!(e->flags & EDGE_ABNORMAL))
+       if (!(e->flags & (EDGE_ABNORMAL|EDGE_EH)))
          break;
       if (e == NULL)
        return false;
@@ -6370,10 +6365,10 @@ process_assert_insertions_for (tree name, assert_locus *loc)
 
   /* If STMT must be the last statement in BB, we can only insert new
      assertions on the non-abnormal edge out of BB.  Note that since
-     STMT is not control flow, there may only be one non-abnormal edge
+     STMT is not control flow, there may only be one non-abnormal/eh edge
      out of BB.  */
   FOR_EACH_EDGE (e, ei, loc->bb->succs)
-    if (!(e->flags & EDGE_ABNORMAL))
+    if (!(e->flags & (EDGE_ABNORMAL|EDGE_EH)))
       {
        gsi_insert_on_edge (e, assert_stmt);
        return true;