OSDN Git Service

* lib/gcc-defs.exp (${tool}_check_compile): xfail test cases that
[pf3gnuchains/gcc-fork.git] / gcc / cfghooks.c
index dbf259e..89df3e5 100644 (file)
@@ -29,6 +29,7 @@ Boston, MA 02110-1301, USA.  */
 #include "tree-flow.h"
 #include "timevar.h"
 #include "toplev.h"
+#include "cfgloop.h"
 
 /* A pointer to one of the hooks containers.  */
 static struct cfg_hooks *cfg_hooks;
@@ -55,12 +56,19 @@ tree_register_cfg_hooks (void)
   cfg_hooks = &tree_cfg_hooks;
 }
 
-/* Returns current ir type (rtl = 0, trees = 1).  */
+/* Returns current ir type.  */
 
-int
-ir_type (void)
+enum ir_type
+current_ir_type (void)
 {
-  return cfg_hooks == &tree_cfg_hooks ? 1 : 0;
+  if (cfg_hooks == &tree_cfg_hooks)
+    return IR_GIMPLE;
+  else if (cfg_hooks == &rtl_cfg_hooks)
+    return IR_RTL_CFGRTL;
+  else if (cfg_hooks == &cfg_layout_rtl_cfg_hooks)
+    return IR_RTL_CFGLAYOUT;
+  else
+    gcc_unreachable ();
 }
 
 /* Verify the CFG consistency.
@@ -108,16 +116,28 @@ verify_flow_info (void)
       edge e;
       edge_iterator ei;
 
+      if (bb->loop_father != NULL && current_loops == NULL)
+       {
+         error ("verify_flow_info: Block %i has loop_father, but there are no loops",
+                bb->index);
+         err = 1;
+       }
+      if (bb->loop_father == NULL && current_loops != NULL)
+       {
+         error ("verify_flow_info: Block %i lacks loop_father", bb->index);
+         err = 1;
+       }
+
       if (bb->count < 0)
        {
          error ("verify_flow_info: Wrong count of block %i %i",
-                bb->index, (int)bb->count);
+                bb->index, (int)bb->count);
          err = 1;
        }
       if (bb->frequency < 0)
        {
          error ("verify_flow_info: Wrong frequency of block %i %i",
-                bb->index, bb->frequency);
+                bb->index, bb->frequency);
          err = 1;
        }
       FOR_EACH_EDGE (e, ei, bb->succs)
@@ -238,7 +258,7 @@ dump_bb (basic_block bb, FILE *outf, int indent)
   edge e;
   edge_iterator ei;
   char *s_indent;
+
   s_indent = alloca ((size_t) indent + 1);
   memset (s_indent, ' ', (size_t) indent);
   s_indent[indent] = '\0';
@@ -301,12 +321,19 @@ basic_block
 redirect_edge_and_branch_force (edge e, basic_block dest)
 {
   basic_block ret;
+  struct loop *loop;
 
   if (!cfg_hooks->redirect_edge_and_branch_force)
     internal_error ("%s does not support redirect_edge_and_branch_force",
                    cfg_hooks->name);
 
   ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
+  if (current_loops != NULL && ret != NULL)
+    {
+      loop = find_common_loop (single_pred (ret)->loop_father,
+                              single_succ (ret)->loop_father);
+      add_bb_to_loop (ret, loop);
+    }
 
   return ret;
 }
@@ -337,6 +364,9 @@ split_block (basic_block bb, void *i)
       set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
     }
 
+  if (current_loops != NULL)
+    add_bb_to_loop (new_bb, bb->loop_father);
+
   return make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
 }
 
@@ -374,6 +404,22 @@ delete_basic_block (basic_block bb)
 
   cfg_hooks->delete_basic_block (bb);
 
+  if (current_loops != NULL)
+    {
+      struct loop *loop = bb->loop_father;
+
+      /* If we remove the header or the latch of a loop, mark the loop for
+        removal by setting its header and latch to NULL.  */
+      if (loop->latch == bb
+         || loop->header == bb)
+       {
+         loop->header = NULL;
+         loop->latch = NULL;
+       }
+
+      remove_bb_from_loops (bb);
+    }
+
   /* Remove the edges into and out of this block.  Note that there may
      indeed be edges in, if we are removing an unreachable loop.  */
   while (EDGE_COUNT (bb->preds) != 0)
@@ -400,6 +446,8 @@ split_edge (edge e)
   int freq = EDGE_FREQUENCY (e);
   edge f;
   bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
+  struct loop *loop;
+  basic_block src = e->src, dest = e->dest;
 
   if (!cfg_hooks->split_edge)
     internal_error ("%s does not support split_edge", cfg_hooks->name);
@@ -448,7 +496,16 @@ split_edge (edge e)
          if (!f)
            set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
        }
-    };
+    }
+
+  if (current_loops != NULL)
+    {
+      loop = find_common_loop (src->loop_father, dest->loop_father);
+      add_bb_to_loop (ret, loop);
+
+      if (loop->latch == src)
+       loop->latch = ret;
+    }
 
   return ret;
 }
@@ -527,6 +584,9 @@ merge_blocks (basic_block a, basic_block b)
   if (!cfg_hooks->merge_blocks)
     internal_error ("%s does not support merge_blocks", cfg_hooks->name);
 
+  if (current_loops != NULL)
+    remove_bb_from_loops (b);
+
   cfg_hooks->merge_blocks (a, b);
 
   /* Normally there should only be one successor of A and that is B, but
@@ -568,6 +628,7 @@ make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
   edge e, fallthru;
   edge_iterator ei;
   basic_block dummy, jump;
+  struct loop *loop, *ploop, *cloop;
 
   if (!cfg_hooks->make_forwarder_block)
     internal_error ("%s does not support make_forwarder_block",
@@ -610,6 +671,33 @@ make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
       iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, 2);
     }
 
+  if (current_loops != NULL)
+    {
+      /* If we do not split a loop header, then both blocks belong to the
+        same loop.  In case we split loop header and do not redirect the
+        latch edge to DUMMY, then DUMMY belongs to the outer loop, and
+        BB becomes the new header.  */
+      loop = dummy->loop_father;
+      if (loop->header == dummy
+         && find_edge (loop->latch, dummy) == NULL)
+       {
+         remove_bb_from_loops (dummy);
+         loop->header = bb;
+
+         cloop = loop;
+         FOR_EACH_EDGE (e, ei, dummy->preds)
+           {
+             cloop = find_common_loop (cloop, e->src->loop_father);
+           }
+         add_bb_to_loop (dummy, cloop);
+       }
+
+      /* In case we split loop latch, update it.  */
+      for (ploop = loop; ploop; ploop = ploop->outer)
+       if (ploop->latch == dummy)
+         ploop->latch = bb;
+    }
+
   cfg_hooks->make_forwarder_block (fallthru);
 
   return fallthru;
@@ -761,13 +849,17 @@ duplicate_block (basic_block bb, edge e, basic_block after)
   set_bb_original (new_bb, bb);
   set_bb_copy (bb, new_bb);
 
+  /* Add the new block to the prescribed loop.  */
+  if (current_loops != NULL)
+    add_bb_to_loop (new_bb, bb->loop_father->copy);
+
   return new_bb;
 }
 
 /* Return 1 if BB ends with a call, possibly followed by some
    instructions that must stay with the call, 0 otherwise.  */
 
-bool 
+bool
 block_ends_with_call_p (basic_block bb)
 {
   if (!cfg_hooks->block_ends_with_call_p)
@@ -778,7 +870,7 @@ block_ends_with_call_p (basic_block bb)
 
 /* Return 1 if BB ends with a conditional branch, 0 otherwise.  */
 
-bool 
+bool
 block_ends_with_condjump_p (basic_block bb)
 {
   if (!cfg_hooks->block_ends_with_condjump_p)
@@ -800,7 +892,7 @@ int
 flow_call_edges_add (sbitmap blocks)
 {
   if (!cfg_hooks->flow_call_edges_add)
-    internal_error ("%s does not support flow_call_edges_add", 
+    internal_error ("%s does not support flow_call_edges_add",
                    cfg_hooks->name);
 
   return (cfg_hooks->flow_call_edges_add) (blocks);
@@ -826,8 +918,8 @@ execute_on_shrinking_pred (edge e)
     cfg_hooks->execute_on_shrinking_pred (e);
 }
 
-/* This is used inside loop versioning when we want to insert 
-   stmts/insns on the edges, which have a different behavior 
+/* This is used inside loop versioning when we want to insert
+   stmts/insns on the edges, which have a different behavior
    in tree's and in RTL, so we made a CFG hook.  */
 void
 lv_flush_pending_stmts (edge e)
@@ -845,13 +937,13 @@ lv_flush_pending_stmts (edge e)
    than duplicate_loop_to_header_edge when we are in tree mode.  */
 bool
 cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e,
-                                       struct loops *loops, unsigned int ndupl,
+                                       unsigned int ndupl,
                                        sbitmap wont_exit, edge orig,
                                        edge *to_remove,
                                        unsigned int *n_to_remove, int flags)
 {
   gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
-  return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e, loops,                                                        
+  return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
                                                            ndupl, wont_exit,
                                                            orig, to_remove,
                                                            n_to_remove, flags);
@@ -887,4 +979,4 @@ lv_add_condition_to_bb (basic_block first, basic_block second,
 {
   gcc_assert (cfg_hooks->lv_add_condition_to_bb);
   cfg_hooks->lv_add_condition_to_bb (first, second, new, cond);
-}  
+}