OSDN Git Service

Add support for C++0x nullptr.
[pf3gnuchains/gcc-fork.git] / gcc / graphite-interchange.c
index d4bc232..918e334 100644 (file)
@@ -196,7 +196,7 @@ build_partial_difference (ppl_Pointset_Powerset_C_Polyhedron_t *p,
    the loop at DEPTH.  */
 
 static void
-memory_stride_in_loop (Value stride, graphite_dim_t depth, poly_dr_p pdr)
+pdr_stride_in_loop (Value stride, graphite_dim_t depth, poly_dr_p pdr)
 {
   ppl_dimension_type time_depth;
   ppl_Linear_Expression_t le, lma;
@@ -329,34 +329,54 @@ memory_stride_in_loop (Value stride, graphite_dim_t depth, poly_dr_p pdr)
   ppl_delete_Linear_Expression (le);
 }
 
-/* Sets STRIDES to the sum of all the strides of the data references accessed   */
+
+/* Sets STRIDES to the sum of all the strides of the data references
+   accessed in LOOP at DEPTH.  */
 
 static void
-memory_strides_in_loop_depth (poly_bb_p pbb, graphite_dim_t depth, Value strides)
+memory_strides_in_loop_1 (lst_p loop, graphite_dim_t depth, Value strides)
 {
-  int i;
+  int i, j;
+  lst_p l;
   poly_dr_p pdr;
   Value s, n;
 
-  value_set_si (strides, 0);
   value_init (s);
   value_init (n);
 
-  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb), i, pdr); i++)
-    {
-      value_set_si (n, PDR_NB_REFS (pdr));
-
-      memory_stride_in_loop (s, depth, pdr);
-      value_multiply (s, s, n);
-      value_addto (strides, strides, s);
-    }
+  for (j = 0; VEC_iterate (lst_p, LST_SEQ (loop), j, l); j++)
+    if (LST_LOOP_P (l))
+      memory_strides_in_loop_1 (l, depth, strides);
+    else
+      for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (LST_PBB (l)), i, pdr); i++)
+       {
+         pdr_stride_in_loop (s, depth, pdr);
+         value_set_si (n, PDR_NB_REFS (pdr));
+         value_multiply (s, s, n);
+         value_addto (strides, strides, s);
+       }
 
   value_clear (s);
   value_clear (n);
 }
 
-/* Returns true when it is profitable to interchange time dimensions DEPTH1
-   and DEPTH2 with DEPTH1 < DEPTH2 for PBB.
+/* Sets STRIDES to the sum of all the strides of the data references
+   accessed in LOOP at DEPTH.  */
+
+static void
+memory_strides_in_loop (lst_p loop, graphite_dim_t depth, Value strides)
+{
+  if (value_mone_p (loop->memory_strides))
+    {
+      value_set_si (strides, 0);
+      memory_strides_in_loop_1 (loop, depth, strides);
+    }
+  else
+    value_assign (strides, loop->memory_strides);
+}
+
+/* Return true when the interchange of loops LOOP1 and LOOP2 is
+   profitable.
 
    Example:
 
@@ -437,19 +457,20 @@ memory_strides_in_loop_depth (poly_bb_p pbb, graphite_dim_t depth, Value strides
    profitable to interchange the loops at DEPTH1 and DEPTH2.  */
 
 static bool
-pbb_interchange_profitable_p (graphite_dim_t depth1, graphite_dim_t depth2,
-                             poly_bb_p pbb)
+lst_interchange_profitable_p (lst_p loop1, lst_p loop2)
 {
   Value d1, d2;
   bool res;
 
-  gcc_assert (depth1 < depth2);
+  gcc_assert (loop1 && loop2
+             && LST_LOOP_P (loop1) && LST_LOOP_P (loop2)
+             && lst_depth (loop1) < lst_depth (loop2));
 
   value_init (d1);
   value_init (d2);
 
-  memory_strides_in_loop_depth (pbb, depth1, d1);
-  memory_strides_in_loop_depth (pbb, depth2, d2);
+  memory_strides_in_loop (loop1, lst_depth (loop1), d1);
+  memory_strides_in_loop (loop2, lst_depth (loop2), d2);
 
   res = value_lt (d1, d2);
 
@@ -507,40 +528,6 @@ lst_apply_interchange (lst_p lst, int depth1, int depth2)
     pbb_interchange_loop_depths (depth1, depth2, LST_PBB (lst));
 }
 
-/* Return true when the interchange of loops at depths DEPTH1 and
-   DEPTH2 to all the statements below LST is profitable.  */
-
-static bool
-lst_interchange_profitable_p (lst_p lst, int depth1, int depth2)
-{
-  if (!lst)
-    return false;
-
-  if (LST_LOOP_P (lst))
-    {
-      int i;
-      lst_p l;
-      bool res = false;
-
-      for (i = 0; VEC_iterate (lst_p, LST_SEQ (lst), i, l); i++)
-       {
-         bool profitable = lst_interchange_profitable_p (l, depth1, depth2);
-
-         if (profitable && !LST_LOOP_P (lst)
-             && dump_file && (dump_flags & TDF_DETAILS))
-           fprintf (dump_file,
-                    "Interchanging loops at depths %d and %d is profitable for stmt_%d.\n",
-                    depth1, depth2, pbb_index (LST_PBB (lst)));
-
-         res |= profitable;
-       }
-
-      return res;
-    }
-  else
-    return pbb_interchange_profitable_p (depth1, depth2, LST_PBB (lst));
-}
-
 /* Return true when the nest starting at LOOP1 and ending on LOOP2 is
    perfect: i.e. there are no sequence of statements.  */
 
@@ -587,44 +574,49 @@ lst_perfect_nestify (lst_p loop1, lst_p loop2, lst_p *before,
   lst_remove_all_before_excluding_pbb (*nest, last, false);
 
   if (lst_empty_p (*before))
-    *before = NULL;
+    {
+      free_lst (*before);
+      *before = NULL;
+    }
   if (lst_empty_p (*after))
-    *after = NULL;
+    {
+      free_lst (*after);
+      *after = NULL;
+    }
   if (lst_empty_p (*nest))
-    *nest = NULL;
+    {
+      free_lst (*nest);
+      *nest = NULL;
+    }
 }
 
 /* Try to interchange LOOP1 with LOOP2 for all the statements of the
    body of LOOP2.  LOOP1 contains LOOP2.  Return true if it did the
-   interchange.  CREATED_LOOP_BEFORE/CREATED_LOOP_AFTER are set to
-   true if the loop distribution created a loop before/after LOOP1.  */
+   interchange.  */
 
 static bool
-lst_try_interchange_loops (scop_p scop, lst_p loop1, lst_p loop2,
-                          lst_p *before, lst_p *nest, lst_p *after)
+lst_try_interchange_loops (scop_p scop, lst_p loop1, lst_p loop2)
 {
   int depth1 = lst_depth (loop1);
   int depth2 = lst_depth (loop2);
   lst_p transformed;
 
-  *before = NULL;
-  *after = NULL;
-  *nest = NULL;
+  lst_p before = NULL, nest = NULL, after = NULL;
 
-  if (!lst_interchange_profitable_p (loop2, depth1, depth2))
+  if (!lst_interchange_profitable_p (loop1, loop2))
     return false;
 
   if (!lst_perfectly_nested_p (loop1, loop2))
-    lst_perfect_nestify (loop1, loop2, before, nest, after);
+    lst_perfect_nestify (loop1, loop2, &before, &nest, &after);
 
   lst_apply_interchange (loop2, depth1, depth2);
 
   /* Sync the transformed LST information and the PBB scatterings
      before using the scatterings in the data dependence analysis.  */
-  if (*before || *nest || *after)
+  if (before || nest || after)
     {
       transformed = lst_substitute_3 (SCOP_TRANSFORMED_SCHEDULE (scop), loop1,
-                                     *before, *nest, *after);
+                                     before, nest, after);
       lst_update_scattering (transformed);
       free_lst (transformed);
     }
@@ -637,12 +629,12 @@ lst_try_interchange_loops (scop_p scop, lst_p loop1, lst_p loop2,
                 depth1, depth2);
 
       /* Transform the SCOP_TRANSFORMED_SCHEDULE of the SCOP.  */
-      lst_insert_in_sequence (*before, loop1, true);
-      lst_insert_in_sequence (*after, loop1, false);
+      lst_insert_in_sequence (before, loop1, true);
+      lst_insert_in_sequence (after, loop1, false);
 
-      if (*nest)
+      if (nest)
        {
-         lst_replace (loop1, *nest);
+         lst_replace (loop1, nest);
          free_lst (loop1);
        }
 
@@ -650,42 +642,13 @@ lst_try_interchange_loops (scop_p scop, lst_p loop1, lst_p loop2,
     }
 
   /* Undo the transform.  */
+  free_lst (before);
+  free_lst (nest);
+  free_lst (after);
   lst_apply_interchange (loop2, depth2, depth1);
-  *before = NULL;
-  *after = NULL;
-  *nest = NULL;
   return false;
 }
 
-static bool lst_interchange_select_inner (scop_p, lst_p, int, lst_p);
-
-/* Try to interchange loop OUTER of LST_SEQ (OUTER_FATHER) with all
-   the loop INNER and with all the loops contained in the body of
-   INNER.  Return true if it did interchanged some loops.  */
-
-static bool
-lst_try_interchange (scop_p scop, lst_p outer_father, int outer, lst_p inner)
-{
-  lst_p before, nest, after;
-  bool res;
-  lst_p loop1 = VEC_index (lst_p, LST_SEQ (outer_father), outer);
-  lst_p loop2 = inner;
-
-  gcc_assert (LST_LOOP_P (loop1)
-             && LST_LOOP_P (loop2));
-
-  res = lst_try_interchange_loops (scop, loop1, loop2, &before, &nest, &after);
-
-  if (before)
-    res |= lst_interchange_select_inner (scop, outer_father, outer, before);
-  else if (nest)
-    res |= lst_interchange_select_inner (scop, outer_father, outer, nest);
-  else
-    res |= lst_interchange_select_inner (scop, outer_father, outer, loop2);
-
-  return res;
-}
-
 /* Selects the inner loop in LST_SEQ (INNER_FATHER) to be interchanged
    with the loop OUTER in LST_SEQ (OUTER_FATHER).  */
 
@@ -693,9 +656,8 @@ static bool
 lst_interchange_select_inner (scop_p scop, lst_p outer_father, int outer,
                              lst_p inner_father)
 {
-  lst_p l;
-  bool res = false;
   int inner;
+  lst_p loop1, loop2;
 
   gcc_assert (outer_father
              && LST_LOOP_P (outer_father)
@@ -703,11 +665,15 @@ lst_interchange_select_inner (scop_p scop, lst_p outer_father, int outer,
              && inner_father
              && LST_LOOP_P (inner_father));
 
-  for (inner = 0; VEC_iterate (lst_p, LST_SEQ (inner_father), inner, l); inner++)
-    if (LST_LOOP_P (l))
-      res |= lst_try_interchange (scop, outer_father, outer, l);
+  loop1 = VEC_index (lst_p, LST_SEQ (outer_father), outer);
 
-  return res;
+  for (inner = 0; VEC_iterate (lst_p, LST_SEQ (inner_father), inner, loop2); inner++)
+    if (LST_LOOP_P (loop2)
+       && (lst_try_interchange_loops (scop, loop1, loop2)
+           || lst_interchange_select_inner (scop, outer_father, outer, loop2)))
+      return true;
+
+  return false;
 }
 
 /* Interchanges all the loops of LOOP and the loops of its body that
@@ -729,12 +695,11 @@ lst_interchange_select_outer (scop_p scop, lst_p loop, int outer)
   father = LST_LOOP_FATHER (loop);
   if (father)
     {
-      res = lst_interchange_select_inner (scop, father, outer, loop);
-
-      if (VEC_length (lst_p, LST_SEQ (father)) <= (unsigned) outer)
-       return res;
-
-      loop = VEC_index (lst_p, LST_SEQ (father), outer);
+      while (lst_interchange_select_inner (scop, father, outer, loop))
+       {
+         res = true;
+         loop = VEC_index (lst_p, LST_SEQ (father), outer);
+       }
     }
 
   if (LST_LOOP_P (loop))