OSDN Git Service

PR tree-optimization/24225
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Oct 2005 19:20:38 +0000 (19:20 +0000)
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Oct 2005 19:20:38 +0000 (19:20 +0000)
gcc/
* profile.c (branch_prob): Look from end to start through a
basic block when looking for a locus.

testsuite/
* gcc.dg/pr24225.c: New test.

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

gcc/ChangeLog
gcc/profile.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr24225.c [new file with mode: 0644]

index 14e264c..b22e317 100644 (file)
@@ -1,3 +1,9 @@
+2005-10-24  Steven Bosscher  <stevenb@suse.de>
+
+       PR tree-optimization/24255
+       * profile.c (branch_prob): Look from end to start through a
+       basic block when looking for a locus.
+
 2005-10-24  Richard Henderson  <rth@redhat.com>
 
        * pa.c (store_reg_modify): Set RTX_FRAME_RELATED_P on each set in
 2005-10-24  Richard Henderson  <rth@redhat.com>
 
        * pa.c (store_reg_modify): Set RTX_FRAME_RELATED_P on each set in
@@ -83,7 +89,7 @@
 
 2005-10-20  Steven Bosscher  <stevenb@suse.de>
 
 
 2005-10-20  Steven Bosscher  <stevenb@suse.de>
 
-       PR tree-optimization/24225
+       PR tree-optimization/24307
        * tree-cfg.c (tree_find_edge_insert_loc): Handle naked RETURN_EXPR.
 
 2005-10-20  Alexandre Oliva  <aoliva@redhat.com>
        * tree-cfg.c (tree_find_edge_insert_loc): Handle naked RETURN_EXPR.
 
 2005-10-20  Alexandre Oliva  <aoliva@redhat.com>
index 1fc8aa5..d260d66 100644 (file)
@@ -806,13 +806,27 @@ branch_prob (void)
 
       FOR_EACH_EDGE (e, ei, bb->succs)
        {
 
       FOR_EACH_EDGE (e, ei, bb->succs)
        {
-         tree last = last_stmt (bb);
+         block_stmt_iterator bsi;
+         tree last = NULL;
+
+         /* It may happen that there are compiler generated statements
+            without a locus at all.  Go through the basic block from the
+            last to the first statement looking for a locus.  */
+         for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
+           {
+             last = bsi_stmt (bsi);
+             if (EXPR_LOCUS (last))
+               break;
+           }
+
          /* Edge with goto locus might get wrong coverage info unless
             it is the only edge out of BB.   
             Don't do that when the locuses match, so 
             if (blah) goto something;
             is not computed twice.  */
          /* Edge with goto locus might get wrong coverage info unless
             it is the only edge out of BB.   
             Don't do that when the locuses match, so 
             if (blah) goto something;
             is not computed twice.  */
-         if (e->goto_locus && !single_succ_p (bb)
+         if (last && EXPR_LOCUS (last)
+             && e->goto_locus
+             && !single_succ_p (bb)
 #ifdef USE_MAPPED_LOCATION
              && (LOCATION_FILE (e->goto_locus)
                  != LOCATION_FILE (EXPR_LOCATION  (last))
 #ifdef USE_MAPPED_LOCATION
              && (LOCATION_FILE (e->goto_locus)
                  != LOCATION_FILE (EXPR_LOCATION  (last))
@@ -820,8 +834,7 @@ branch_prob (void)
                      != LOCATION_LINE (EXPR_LOCATION  (last)))))
 #else
              && (e->goto_locus->file != EXPR_LOCUS (last)->file
                      != LOCATION_LINE (EXPR_LOCATION  (last)))))
 #else
              && (e->goto_locus->file != EXPR_LOCUS (last)->file
-                 || (e->goto_locus->line
-                     != EXPR_LOCUS (last)->line)))
+                 || (e->goto_locus->line != EXPR_LOCUS (last)->line)))
 #endif
            {
              basic_block new = split_edge (e);
 #endif
            {
              basic_block new = split_edge (e);
index e8f9703..f952b56 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-24  Steven Bosscher  <stevenb@suse.de>
+
+       * gcc.dg/pr24225.c: New test.
+
 2005-10-24  Asher Langton  <langton2@llnl.gov>
 
        * gfortran.dg/dup_save_1.f90: New test.
 2005-10-24  Asher Langton  <langton2@llnl.gov>
 
        * gfortran.dg/dup_save_1.f90: New test.
diff --git a/gcc/testsuite/gcc.dg/pr24225.c b/gcc/testsuite/gcc.dg/pr24225.c
new file mode 100644 (file)
index 0000000..b364f82
--- /dev/null
@@ -0,0 +1,15 @@
+/* This was an ICE caused by the compiler-generated stack save/restore
+   statements around s[b].  */
+/* { dg-do compile} */
+/* { dg-options "-O1 -fprofile-arcs" } */
+
+int
+foo (int a, int b)
+{
+  if (a)
+    return 1;
+  {
+    int s [b];
+    return 0;
+  }
+}