OSDN Git Service

* de.po, zh_CN.po: Update.
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-loop.c
index e0b3d83..9e38e91 100644 (file)
@@ -1,5 +1,5 @@
 /* Loop optimizations over tree-ssa.
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2005 Free Software Foundation, Inc.
    
 This file is part of GCC.
    
@@ -29,7 +29,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "basic-block.h"
 #include "output.h"
 #include "diagnostic.h"
-#include "basic-block.h"
 #include "tree-flow.h"
 #include "tree-dump.h"
 #include "tree-pass.h"
@@ -37,337 +36,409 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "cfgloop.h"
 #include "flags.h"
 #include "tree-inline.h"
+#include "tree-scalar-evolution.h"
+
+/* The loop tree currently optimized.  */
+
+struct loops *current_loops = NULL;
+
+/* Initializes the loop structures.  DUMP is the file to that the details
+   about the analysis should be dumped.  */
+
+static struct loops *
+tree_loop_optimizer_init (FILE *dump)
+{
+  struct loops *loops = loop_optimizer_init (dump);
 
+  if (!loops)
+    return NULL;
+
+  rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
+
+  return loops;
+}
 
-/* Check whether we should duplicate HEADER of LOOP.  At most *LIMIT
-   instructions should be duplicated, limit is decreased by the actual
-   amount.  */
+/* The loop superpass.  */
 
 static bool
-should_duplicate_loop_header_p (basic_block header, struct loop *loop,
-                               int *limit)
-{
-  block_stmt_iterator bsi;
-  tree last;
-
-  /* Do not copy one block more than once (we do not really want to do
-     loop peeling here).  */
-  if (header->aux)
-    return false;
-
-  if (!header->succ)
-    abort ();
-  if (!header->succ->succ_next)
-    return false;
-  if (header->succ->succ_next->succ_next)
-    return false;
-  if (flow_bb_inside_loop_p (loop, header->succ->dest)
-      && flow_bb_inside_loop_p (loop, header->succ->succ_next->dest))
-    return false;
-
-  /* If this is not the original loop header, we want it to have just
-     one predecessor in order to match the && pattern.  */
-  if (header != loop->header
-      && header->pred->pred_next)
-    return false;
-
-  last = last_stmt (header);
-  if (TREE_CODE (last) != COND_EXPR)
-    return false;
-
-  /* Approximately copy the conditions that used to be used in jump.c --
-     at most 20 insns and no calls.  */
-  for (bsi = bsi_start (header); !bsi_end_p (bsi); bsi_next (&bsi))
-    {
-      last = bsi_stmt (bsi);
-
-      if (TREE_CODE (last) == LABEL_EXPR)
-       continue;
-
-      if (get_call_expr_in (last))
-       return false;
-
-      *limit -= estimate_num_insns (last);
-      if (*limit < 0)
-       return false;
-    }
+gate_loop (void)
+{
+  return flag_tree_loop_optimize != 0;
+}
 
-  return true;
+struct tree_opt_pass pass_loop = 
+{
+  "loop",                              /* name */
+  gate_loop,                           /* gate */
+  NULL,                                        /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP,                                /* tv_id */
+  PROP_cfg,                            /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  TODO_ggc_collect,                    /* todo_flags_start */
+  TODO_dump_func | TODO_verify_ssa | TODO_ggc_collect, /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Loop optimizer initialization.  */
+
+static void
+tree_ssa_loop_init (void)
+{
+  current_loops = tree_loop_optimizer_init (dump_file);
+  if (!current_loops)
+    return;
+
+  /* Find the loops that are exited just through a single edge.  */
+  mark_single_exit_loops (current_loops);
+
+  scev_initialize (current_loops);
 }
+  
+struct tree_opt_pass pass_loop_init = 
+{
+  "loopinit",                          /* name */
+  NULL,                                        /* gate */
+  tree_ssa_loop_init,                  /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_INIT,                   /* tv_id */
+  PROP_cfg,                            /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
 
-/* Marks variables defined in basic block BB for rewriting.  */
+/* Loop invariant motion pass.  */
 
 static void
-mark_defs_for_rewrite (basic_block bb)
-{
-  tree stmt, var;
-  block_stmt_iterator bsi;
-  stmt_ann_t ann;
-  def_optype defs;
-  v_may_def_optype v_may_defs;
-  vuse_optype vuses;
-  v_must_def_optype v_must_defs;
-  unsigned i;
-
-  for (stmt = phi_nodes (bb); stmt; stmt = PHI_CHAIN (stmt))
-    {
-      var = SSA_NAME_VAR (PHI_RESULT (stmt));
-      bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-
-      /* If we have a type_mem_tag, add it as well.  Due to rewriting the
-        variable out of ssa, we lose its name tag, so we use type_mem_tag
-        instead.  */
-      var = var_ann (var)->type_mem_tag;
-      if (var)
-       bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-    }
-
-  for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
-    {
-      stmt = bsi_stmt (bsi);
-      get_stmt_operands (stmt);
-      ann = stmt_ann (stmt);
-
-      defs = DEF_OPS (ann);
-      for (i = 0; i < NUM_DEFS (defs); i++)
-       {
-         var = SSA_NAME_VAR (DEF_OP (defs, i));
-         bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-
-         /* If we have a type_mem_tag, add it as well.  Due to rewriting the
-            variable out of ssa, we lose its name tag, so we use type_mem_tag
-            instead.  */
-         var = var_ann (var)->type_mem_tag;
-         if (var)
-           bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-       }
-
-      v_may_defs = V_MAY_DEF_OPS (ann);
-      for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
-       {
-         var = SSA_NAME_VAR (V_MAY_DEF_RESULT (v_may_defs, i));
-         bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-       }
-       
-      v_must_defs = V_MUST_DEF_OPS (ann);
-      for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
-       {
-         var = SSA_NAME_VAR (V_MUST_DEF_OP (v_must_defs, i));
-         bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-       }
-
-      /* We also need to rewrite vuses, since we will copy the statements
-        and the ssa versions could not be recovered in the copy.  We do
-        not have to do this for operands of V_MAY_DEFS explicitly, since
-        they have the same underlying variable as the results.  */
-      vuses = VUSE_OPS (ann);
-      for (i = 0; i < NUM_VUSES (vuses); i++)
-       {
-         var = SSA_NAME_VAR (VUSE_OP (vuses, i));
-         bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-       }
-    }
+tree_ssa_loop_im (void)
+{
+  if (!current_loops)
+    return;
+
+  tree_ssa_lim (current_loops);
 }
 
-/* Duplicates destinations of edges in BBS_TO_DUPLICATE.  */
+static bool
+gate_tree_ssa_loop_im (void)
+{
+  return flag_tree_loop_im != 0;
+}
+
+struct tree_opt_pass pass_lim = 
+{
+  "lim",                               /* name */
+  gate_tree_ssa_loop_im,               /* gate */
+  tree_ssa_loop_im,                    /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_LIM,                              /* tv_id */
+  PROP_cfg,                            /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Loop unswitching pass.  */
 
 static void
-duplicate_blocks (varray_type bbs_to_duplicate)
-{
-  unsigned i;
-  edge preheader_edge, e, e1;
-  basic_block header, new_header;
-  tree phi;
-  size_t old_num_referenced_vars = num_referenced_vars;
-
-  for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
-    {
-      preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
-      header = preheader_edge->dest;
-
-      /* It is sufficient to rewrite the definitions, since the uses of
-        the operands defined outside of the duplicated basic block are
-        still valid (every basic block that dominates the original block
-        also dominates the duplicate).  */
-      mark_defs_for_rewrite (header);
-    }
-
-  rewrite_vars_out_of_ssa (vars_to_rename);
-
-  for (i = old_num_referenced_vars; i < num_referenced_vars; i++)
-    {
-      bitmap_set_bit (vars_to_rename, i);
-      var_ann (referenced_var (i))->out_of_ssa_tag = 0;
-    }
-
-  for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
-    {
-      preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
-      header = preheader_edge->dest;
-
-      /* We might have split the edge into the loop header when we have
-        eliminated the phi nodes, so find the edge to that we want to
-        copy the header.  */
-      while (!header->aux)
-       {
-         preheader_edge = header->succ;
-         header = preheader_edge->dest;
-       }
-      header->aux = NULL;
-
-      new_header = duplicate_block (header, preheader_edge);
-
-      /* Add the phi arguments to the outgoing edges.  */
-      for (e = header->succ; e; e = e->succ_next)
-       {
-         for (e1 = new_header->succ; e1->dest != e->dest; e1 = e1->succ_next)
-           continue;
-
-         for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
-           {
-             tree def = PHI_ARG_DEF_FROM_EDGE (phi, e);
-             add_phi_arg (&phi, def, e1);
-           }
-       }
-    }
+tree_ssa_loop_unswitch (void)
+{
+  if (!current_loops)
+    return;
+
+  tree_ssa_unswitch_loops (current_loops);
+}
+
+static bool
+gate_tree_ssa_loop_unswitch (void)
+{
+  return flag_unswitch_loops != 0;
 }
 
-/* Checks whether LOOP is a do-while style loop.  */
+struct tree_opt_pass pass_unswitch = 
+{
+  "unswitch",                          /* name */
+  gate_tree_ssa_loop_unswitch,         /* gate */
+  tree_ssa_loop_unswitch,              /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_UNSWITCH,               /* tv_id */
+  PROP_cfg,                            /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Loop autovectorization.  */
+
+static void
+tree_vectorize (void)
+{
+  if (!current_loops)
+    return;
+
+  vectorize_loops (current_loops);
+}
 
 static bool
-do_while_loop_p (struct loop *loop)
+gate_tree_vectorize (void)
+{
+  return flag_tree_vectorize != 0;
+}
+
+struct tree_opt_pass pass_vectorize =
 {
-  tree stmt = last_stmt (loop->latch);
+  "vect",                               /* name */
+  gate_tree_vectorize,                  /* gate */
+  tree_vectorize,                       /* execute */
+  NULL,                                 /* sub */
+  NULL,                                 /* next */
+  0,                                    /* static_pass_number */
+  TV_TREE_VECTORIZATION,                /* tv_id */
+  PROP_cfg | PROP_ssa,                  /* properties_required */
+  0,                                    /* properties_provided */
+  0,                                    /* properties_destroyed */
+  0,                                    /* todo_flags_start */
+  TODO_dump_func | TODO_update_ssa,    /* todo_flags_finish */
+  0                                    /* letter */
+};
 
-  /* If the latch of the loop is not empty, it is not a do-while loop.  */
-  if (stmt
-      && TREE_CODE (stmt) != LABEL_EXPR)
-    return false;
 
-  /* If the header contains just a condition, it is not a do-while loop.  */
-  stmt = last_and_only_stmt (loop->header);
-  if (stmt
-      && TREE_CODE (stmt) == COND_EXPR)
-    return false;
+/* Loop nest optimizations.  */
+
+static void
+tree_linear_transform (void)
+{
+  if (!current_loops)
+    return;
+
+  linear_transform_loops (current_loops);
+}
 
+static bool
+gate_tree_linear_transform (void)
+{
+  return flag_tree_loop_linear != 0;
+}
+
+struct tree_opt_pass pass_linear_transform =
+{
+  "ltrans",                            /* name */
+  gate_tree_linear_transform,          /* gate */
+  tree_linear_transform,                       /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LINEAR_TRANSFORM,            /* tv_id */
+  PROP_cfg | PROP_ssa,                 /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */    
+};
+
+/* Canonical induction variable creation pass.  */
+
+static void
+tree_ssa_loop_ivcanon (void)
+{
+  if (!current_loops)
+    return;
+
+  canonicalize_induction_variables (current_loops);
+}
+
+static bool
+gate_tree_ssa_loop_ivcanon (void)
+{
+  return flag_tree_loop_ivcanon != 0;
+}
+
+struct tree_opt_pass pass_iv_canon =
+{
+  "ivcanon",                           /* name */
+  gate_tree_ssa_loop_ivcanon,          /* gate */
+  tree_ssa_loop_ivcanon,               /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_IVCANON,                        /* tv_id */
+  PROP_cfg | PROP_ssa,                 /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Propagation of constants using scev.  */
+
+static bool
+gate_scev_const_prop (void)
+{
   return true;
 }
 
-/* For all loops, copy the condition at the end of the loop body in front
-   of the loop.  This is beneficial since it increases effectivity of
-   code motion optimizations.  It also saves one jump on entry to the loop.  */
+struct tree_opt_pass pass_scev_cprop =
+{
+  "sccp",                              /* name */
+  gate_scev_const_prop,                        /* gate */
+  scev_const_prop,                     /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_SCEV_CONST,                       /* tv_id */
+  PROP_cfg | PROP_ssa,                 /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func,                      /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Record bounds on numbers of iterations of loops.  */
 
 static void
-copy_loop_headers (void)
+tree_ssa_loop_bounds (void)
 {
-  struct loops *loops;
-  unsigned i;
-  struct loop *loop;
-  basic_block header;
-  edge preheader_edge;
-  varray_type bbs_to_duplicate = NULL;
+  if (!current_loops)
+    return;
 
-  loops = loop_optimizer_init (dump_file);
-  if (!loops)
+  estimate_numbers_of_iterations (current_loops);
+  scev_reset ();
+}
+
+struct tree_opt_pass pass_record_bounds =
+{
+  NULL,                                        /* name */
+  NULL,                                        /* gate */
+  tree_ssa_loop_bounds,                        /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_BOUNDS,                 /* tv_id */
+  PROP_cfg | PROP_ssa,                 /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  0,                                   /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Complete unrolling of loops.  */
+
+static void
+tree_complete_unroll (void)
+{
+  if (!current_loops)
     return;
-  
-  /* We are not going to need or update dominators.  */
-  free_dominance_info (CDI_DOMINATORS);
-
-  create_preheaders (loops, CP_SIMPLE_PREHEADERS);
-
-  /* We do not try to keep the information about irreducible regions
-     up-to-date.  */
-  loops->state &= ~LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS;
-
-#ifdef ENABLE_CHECKING
-  verify_loop_structure (loops);
-#endif
-
-  for (i = 1; i < loops->num; i++)
-    {
-      /* Copy at most 20 insns.  */
-      int limit = 20;
-
-      loop = loops->parray[i];
-      preheader_edge = loop_preheader_edge (loop);
-      header = preheader_edge->dest;
-
-      /* If the loop is already a do-while style one (either because it was
-        written as such, or because jump threading transformed it into one),
-        we might be in fact peeling the first iteration of the loop.  This
-        in general is not a good idea.  */
-      if (do_while_loop_p (loop))
-       continue;
-
-      /* Iterate the header copying up to limit; this takes care of the cases
-        like while (a && b) {...}, where we want to have both of the conditions
-        copied.  TODO -- handle while (a || b) - like cases, by not requiring
-        the header to have just a single successor and copying up to
-        postdominator. 
-        
-        We do not really copy the blocks immediately, so that we do not have
-        to worry about updating loop structures, and also so that we do not
-        have to rewrite variables out of and into ssa form for each block.
-        Instead we just record the block into worklist and duplicate all of
-        them at once.  */
-      while (should_duplicate_loop_header_p (header, loop, &limit))
-       {
-         if (!bbs_to_duplicate)
-           VARRAY_GENERIC_PTR_NOGC_INIT (bbs_to_duplicate, 10,
-                                         "bbs_to_duplicate");
-         VARRAY_PUSH_GENERIC_PTR_NOGC (bbs_to_duplicate, preheader_edge);
-         header->aux = &header->aux;
-
-         if (dump_file && (dump_flags & TDF_DETAILS))
-           fprintf (dump_file,
-                    "Scheduled basic block %d for duplication.\n",
-                    header->index);
-
-         /* Find a successor of header that is inside a loop; i.e. the new
-            header after the condition is copied.  */
-         if (flow_bb_inside_loop_p (loop, header->succ->dest))
-           preheader_edge = header->succ;
-         else
-           preheader_edge = header->succ->succ_next;
-         header = preheader_edge->dest;
-       }
-    }
-
-  loop_optimizer_finalize (loops, NULL);
-
-  if (bbs_to_duplicate)
-    {
-      duplicate_blocks (bbs_to_duplicate);
-      VARRAY_FREE (bbs_to_duplicate);
-    }
-
-  /* Run cleanup_tree_cfg here regardless of whether we have done anything, so
-     that we cleanup the blocks created in order to get the loops into a
-     canonical shape.  */
-  cleanup_tree_cfg ();
+
+  tree_unroll_loops_completely (current_loops,
+                               flag_unroll_loops
+                               || flag_peel_loops
+                               || optimize >= 3);
 }
 
 static bool
-gate_ch (void)
+gate_tree_complete_unroll (void)
 {
-  return flag_tree_ch != 0;
+  return true;
 }
 
-struct tree_opt_pass pass_ch = 
+struct tree_opt_pass pass_complete_unroll =
 {
-  "ch",                                        /* name */
-  gate_ch,                             /* gate */
-  copy_loop_headers,                   /* execute */
+  "cunroll",                           /* name */
+  gate_tree_complete_unroll,           /* gate */
+  tree_complete_unroll,                        /* execute */
   NULL,                                        /* sub */
   NULL,                                        /* next */
   0,                                   /* static_pass_number */
-  TV_TREE_CH,                          /* tv_id */
+  TV_COMPLETE_UNROLL,                  /* tv_id */
   PROP_cfg | PROP_ssa,                 /* properties_required */
   0,                                   /* properties_provided */
   0,                                   /* properties_destroyed */
   0,                                   /* todo_flags_start */
-  (TODO_rename_vars
-   | TODO_dump_func
-   | TODO_verify_ssa)                  /* todo_flags_finish */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Induction variable optimizations.  */
+
+static void
+tree_ssa_loop_ivopts (void)
+{
+  if (!current_loops)
+    return;
+
+  tree_ssa_iv_optimize (current_loops);
+}
+
+static bool
+gate_tree_ssa_loop_ivopts (void)
+{
+  return flag_ivopts != 0;
+}
+
+struct tree_opt_pass pass_iv_optimize =
+{
+  "ivopts",                            /* name */
+  gate_tree_ssa_loop_ivopts,           /* gate */
+  tree_ssa_loop_ivopts,                        /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_IVOPTS,                 /* tv_id */
+  PROP_cfg | PROP_ssa,                 /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_dump_func | TODO_verify_loops,  /* todo_flags_finish */
+  0                                    /* letter */
+};
+
+/* Loop optimizer finalization.  */
+
+static void
+tree_ssa_loop_done (void)
+{
+  if (!current_loops)
+    return;
+
+  free_numbers_of_iterations_estimates (current_loops);
+  scev_finalize ();
+  loop_optimizer_finalize (current_loops,
+                          (dump_flags & TDF_DETAILS ? dump_file : NULL));
+  current_loops = NULL;
+}
+  
+struct tree_opt_pass pass_loop_done = 
+{
+  "loopdone",                          /* name */
+  NULL,                                        /* gate */
+  tree_ssa_loop_done,                  /* execute */
+  NULL,                                        /* sub */
+  NULL,                                        /* next */
+  0,                                   /* static_pass_number */
+  TV_TREE_LOOP_FINI,                   /* tv_id */
+  PROP_cfg,                            /* properties_required */
+  0,                                   /* properties_provided */
+  0,                                   /* properties_destroyed */
+  0,                                   /* todo_flags_start */
+  TODO_cleanup_cfg | TODO_dump_func,   /* todo_flags_finish */
+  0                                    /* letter */
 };