OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [graphite-dependences.c] - Diff between revs 816 and 826

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
/* Data dependence analysis for Graphite.
/* Data dependence analysis for Graphite.
   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
   Contributed by Sebastian Pop <sebastian.pop@amd.com> and
   Contributed by Sebastian Pop <sebastian.pop@amd.com> and
   Konrad Trifunovic <konrad.trifunovic@inria.fr>.
   Konrad Trifunovic <konrad.trifunovic@inria.fr>.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "coretypes.h"
#include "coretypes.h"
#include "tm.h"
#include "tm.h"
#include "ggc.h"
#include "ggc.h"
#include "tree.h"
#include "tree.h"
#include "rtl.h"
#include "rtl.h"
#include "basic-block.h"
#include "basic-block.h"
#include "diagnostic.h"
#include "diagnostic.h"
#include "tree-flow.h"
#include "tree-flow.h"
#include "toplev.h"
#include "toplev.h"
#include "tree-dump.h"
#include "tree-dump.h"
#include "timevar.h"
#include "timevar.h"
#include "cfgloop.h"
#include "cfgloop.h"
#include "tree-chrec.h"
#include "tree-chrec.h"
#include "tree-data-ref.h"
#include "tree-data-ref.h"
#include "tree-scalar-evolution.h"
#include "tree-scalar-evolution.h"
#include "tree-pass.h"
#include "tree-pass.h"
#include "domwalk.h"
#include "domwalk.h"
#include "pointer-set.h"
#include "pointer-set.h"
#include "gimple.h"
#include "gimple.h"
 
 
#ifdef HAVE_cloog
#ifdef HAVE_cloog
#include "cloog/cloog.h"
#include "cloog/cloog.h"
#include "ppl_c.h"
#include "ppl_c.h"
#include "sese.h"
#include "sese.h"
#include "graphite-ppl.h"
#include "graphite-ppl.h"
#include "graphite.h"
#include "graphite.h"
#include "graphite-poly.h"
#include "graphite-poly.h"
#include "graphite-dependences.h"
#include "graphite-dependences.h"
 
 
/* Returns a new polyhedral Data Dependence Relation (DDR).  SOURCE is
/* Returns a new polyhedral Data Dependence Relation (DDR).  SOURCE is
   the source data reference, SINK is the sink data reference.  When
   the source data reference, SINK is the sink data reference.  When
   the Data Dependence Polyhedron DDP is not NULL or not empty, SOURCE
   the Data Dependence Polyhedron DDP is not NULL or not empty, SOURCE
   and SINK are in dependence as described by DDP.  */
   and SINK are in dependence as described by DDP.  */
 
 
static poly_ddr_p
static poly_ddr_p
new_poly_ddr (poly_dr_p source, poly_dr_p sink,
new_poly_ddr (poly_dr_p source, poly_dr_p sink,
              ppl_Pointset_Powerset_C_Polyhedron_t ddp,
              ppl_Pointset_Powerset_C_Polyhedron_t ddp,
              bool original_scattering_p)
              bool original_scattering_p)
{
{
  poly_ddr_p pddr = XNEW (struct poly_ddr);
  poly_ddr_p pddr = XNEW (struct poly_ddr);
 
 
  PDDR_SOURCE (pddr) = source;
  PDDR_SOURCE (pddr) = source;
  PDDR_SINK (pddr) = sink;
  PDDR_SINK (pddr) = sink;
  PDDR_DDP (pddr) = ddp;
  PDDR_DDP (pddr) = ddp;
  PDDR_ORIGINAL_SCATTERING_P (pddr) = original_scattering_p;
  PDDR_ORIGINAL_SCATTERING_P (pddr) = original_scattering_p;
 
 
  if (!ddp || ppl_Pointset_Powerset_C_Polyhedron_is_empty (ddp))
  if (!ddp || ppl_Pointset_Powerset_C_Polyhedron_is_empty (ddp))
    PDDR_KIND (pddr) = no_dependence;
    PDDR_KIND (pddr) = no_dependence;
  else
  else
    PDDR_KIND (pddr) = has_dependence;
    PDDR_KIND (pddr) = has_dependence;
 
 
  return pddr;
  return pddr;
}
}
 
 
/* Free the poly_ddr_p P.  */
/* Free the poly_ddr_p P.  */
 
 
void
void
free_poly_ddr (void *p)
free_poly_ddr (void *p)
{
{
  poly_ddr_p pddr = (poly_ddr_p) p;
  poly_ddr_p pddr = (poly_ddr_p) p;
  ppl_delete_Pointset_Powerset_C_Polyhedron (PDDR_DDP (pddr));
  ppl_delete_Pointset_Powerset_C_Polyhedron (PDDR_DDP (pddr));
  free (pddr);
  free (pddr);
}
}
 
 
/* Comparison function for poly_ddr hash table.  */
/* Comparison function for poly_ddr hash table.  */
 
 
int
int
eq_poly_ddr_p (const void *pddr1, const void *pddr2)
eq_poly_ddr_p (const void *pddr1, const void *pddr2)
{
{
  const struct poly_ddr *p1 = (const struct poly_ddr *) pddr1;
  const struct poly_ddr *p1 = (const struct poly_ddr *) pddr1;
  const struct poly_ddr *p2 = (const struct poly_ddr *) pddr2;
  const struct poly_ddr *p2 = (const struct poly_ddr *) pddr2;
 
 
  return (PDDR_SOURCE (p1) == PDDR_SOURCE (p2)
  return (PDDR_SOURCE (p1) == PDDR_SOURCE (p2)
          && PDDR_SINK (p1) == PDDR_SINK (p2));
          && PDDR_SINK (p1) == PDDR_SINK (p2));
}
}
 
 
/* Hash function for poly_ddr hashtable.  */
/* Hash function for poly_ddr hashtable.  */
 
 
hashval_t
hashval_t
hash_poly_ddr_p (const void *pddr)
hash_poly_ddr_p (const void *pddr)
{
{
  const struct poly_ddr *p = (const struct poly_ddr *) pddr;
  const struct poly_ddr *p = (const struct poly_ddr *) pddr;
 
 
  return (hashval_t) ((long) PDDR_SOURCE (p) + (long) PDDR_SINK (p));
  return (hashval_t) ((long) PDDR_SOURCE (p) + (long) PDDR_SINK (p));
}
}
 
 
/* Returns true when PDDR has no dependence.  */
/* Returns true when PDDR has no dependence.  */
 
 
static bool
static bool
pddr_is_empty (poly_ddr_p pddr)
pddr_is_empty (poly_ddr_p pddr)
{
{
  if (!pddr)
  if (!pddr)
    return true;
    return true;
 
 
  gcc_assert (PDDR_KIND (pddr) != unknown_dependence);
  gcc_assert (PDDR_KIND (pddr) != unknown_dependence);
 
 
  return PDDR_KIND (pddr) == no_dependence ? true : false;
  return PDDR_KIND (pddr) == no_dependence ? true : false;
}
}
 
 
/* Prints to FILE the layout of the dependence polyhedron of PDDR:
/* Prints to FILE the layout of the dependence polyhedron of PDDR:
 
 
   T1|I1|T2|I2|S1|S2|G
   T1|I1|T2|I2|S1|S2|G
 
 
   with
   with
   | T1 and T2 the scattering dimensions for PDDR_SOURCE and PDDR_SINK
   | T1 and T2 the scattering dimensions for PDDR_SOURCE and PDDR_SINK
   | I1 and I2 the iteration domains
   | I1 and I2 the iteration domains
   | S1 and S2 the subscripts
   | S1 and S2 the subscripts
   | G the global parameters.  */
   | G the global parameters.  */
 
 
static void
static void
print_dependence_polyhedron_layout (FILE *file, poly_ddr_p pddr)
print_dependence_polyhedron_layout (FILE *file, poly_ddr_p pddr)
{
{
  poly_dr_p pdr1 = PDDR_SOURCE (pddr);
  poly_dr_p pdr1 = PDDR_SOURCE (pddr);
  poly_dr_p pdr2 = PDDR_SINK (pddr);
  poly_dr_p pdr2 = PDDR_SINK (pddr);
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
 
 
  graphite_dim_t i;
  graphite_dim_t i;
  graphite_dim_t tdim1 = PDDR_ORIGINAL_SCATTERING_P (pddr) ?
  graphite_dim_t tdim1 = PDDR_ORIGINAL_SCATTERING_P (pddr) ?
    pbb_nb_scattering_orig (pbb1) : pbb_nb_scattering_transform (pbb1);
    pbb_nb_scattering_orig (pbb1) : pbb_nb_scattering_transform (pbb1);
  graphite_dim_t tdim2 = PDDR_ORIGINAL_SCATTERING_P (pddr) ?
  graphite_dim_t tdim2 = PDDR_ORIGINAL_SCATTERING_P (pddr) ?
    pbb_nb_scattering_orig (pbb2) : pbb_nb_scattering_transform (pbb2);
    pbb_nb_scattering_orig (pbb2) : pbb_nb_scattering_transform (pbb2);
  graphite_dim_t idim1 = pbb_dim_iter_domain (pbb1);
  graphite_dim_t idim1 = pbb_dim_iter_domain (pbb1);
  graphite_dim_t idim2 = pbb_dim_iter_domain (pbb2);
  graphite_dim_t idim2 = pbb_dim_iter_domain (pbb2);
  graphite_dim_t sdim1 = PDR_NB_SUBSCRIPTS (pdr1) + 1;
  graphite_dim_t sdim1 = PDR_NB_SUBSCRIPTS (pdr1) + 1;
  graphite_dim_t sdim2 = PDR_NB_SUBSCRIPTS (pdr2) + 1;
  graphite_dim_t sdim2 = PDR_NB_SUBSCRIPTS (pdr2) + 1;
  graphite_dim_t gdim = scop_nb_params (PBB_SCOP (pbb1));
  graphite_dim_t gdim = scop_nb_params (PBB_SCOP (pbb1));
 
 
  fprintf (file, "#  eq");
  fprintf (file, "#  eq");
 
 
  for (i = 0; i < tdim1; i++)
  for (i = 0; i < tdim1; i++)
    fprintf (file, "   t1_%d", (int) i);
    fprintf (file, "   t1_%d", (int) i);
  for (i = 0; i < idim1; i++)
  for (i = 0; i < idim1; i++)
    fprintf (file, "   i1_%d", (int) i);
    fprintf (file, "   i1_%d", (int) i);
  for (i = 0; i < tdim2; i++)
  for (i = 0; i < tdim2; i++)
    fprintf (file, "   t2_%d", (int) i);
    fprintf (file, "   t2_%d", (int) i);
  for (i = 0; i < idim2; i++)
  for (i = 0; i < idim2; i++)
    fprintf (file, "   i2_%d", (int) i);
    fprintf (file, "   i2_%d", (int) i);
  for (i = 0; i < sdim1; i++)
  for (i = 0; i < sdim1; i++)
    fprintf (file, "   s1_%d", (int) i);
    fprintf (file, "   s1_%d", (int) i);
  for (i = 0; i < sdim2; i++)
  for (i = 0; i < sdim2; i++)
    fprintf (file, "   s2_%d", (int) i);
    fprintf (file, "   s2_%d", (int) i);
  for (i = 0; i < gdim; i++)
  for (i = 0; i < gdim; i++)
    fprintf (file, "    g_%d", (int) i);
    fprintf (file, "    g_%d", (int) i);
 
 
  fprintf (file, "    cst\n");
  fprintf (file, "    cst\n");
}
}
 
 
/* Prints to FILE the poly_ddr_p PDDR.  */
/* Prints to FILE the poly_ddr_p PDDR.  */
 
 
void
void
print_pddr (FILE *file, poly_ddr_p pddr)
print_pddr (FILE *file, poly_ddr_p pddr)
{
{
  fprintf (file, "pddr (kind: ");
  fprintf (file, "pddr (kind: ");
 
 
  if (PDDR_KIND (pddr) == unknown_dependence)
  if (PDDR_KIND (pddr) == unknown_dependence)
    fprintf (file, "unknown_dependence");
    fprintf (file, "unknown_dependence");
  else if (PDDR_KIND (pddr) == no_dependence)
  else if (PDDR_KIND (pddr) == no_dependence)
    fprintf (file, "no_dependence");
    fprintf (file, "no_dependence");
  else if (PDDR_KIND (pddr) == has_dependence)
  else if (PDDR_KIND (pddr) == has_dependence)
    fprintf (file, "has_dependence");
    fprintf (file, "has_dependence");
 
 
  fprintf (file, "\n  source ");
  fprintf (file, "\n  source ");
  print_pdr (file, PDDR_SOURCE (pddr), 2);
  print_pdr (file, PDDR_SOURCE (pddr), 2);
 
 
  fprintf (file, "\n  sink ");
  fprintf (file, "\n  sink ");
  print_pdr (file, PDDR_SINK (pddr), 2);
  print_pdr (file, PDDR_SINK (pddr), 2);
 
 
  if (PDDR_KIND (pddr) == has_dependence)
  if (PDDR_KIND (pddr) == has_dependence)
    {
    {
      fprintf (file, "\n  dependence polyhedron (\n");
      fprintf (file, "\n  dependence polyhedron (\n");
      print_dependence_polyhedron_layout (file, pddr);
      print_dependence_polyhedron_layout (file, pddr);
      ppl_print_powerset_matrix (file, PDDR_DDP (pddr));
      ppl_print_powerset_matrix (file, PDDR_DDP (pddr));
      fprintf (file, ")\n");
      fprintf (file, ")\n");
    }
    }
 
 
  fprintf (file, ")\n");
  fprintf (file, ")\n");
}
}
 
 
/* Prints to STDERR the poly_ddr_p PDDR.  */
/* Prints to STDERR the poly_ddr_p PDDR.  */
 
 
void
void
debug_pddr (poly_ddr_p pddr)
debug_pddr (poly_ddr_p pddr)
{
{
  print_pddr (stderr, pddr);
  print_pddr (stderr, pddr);
}
}
 
 
 
 
/* Remove all the dimensions except alias information at dimension
/* Remove all the dimensions except alias information at dimension
   ALIAS_DIM.  */
   ALIAS_DIM.  */
 
 
static void
static void
build_alias_set_powerset (ppl_Pointset_Powerset_C_Polyhedron_t alias_powerset,
build_alias_set_powerset (ppl_Pointset_Powerset_C_Polyhedron_t alias_powerset,
                          ppl_dimension_type alias_dim)
                          ppl_dimension_type alias_dim)
{
{
  ppl_dimension_type *ds;
  ppl_dimension_type *ds;
  ppl_dimension_type access_dim;
  ppl_dimension_type access_dim;
  unsigned i, pos = 0;
  unsigned i, pos = 0;
 
 
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (alias_powerset,
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (alias_powerset,
                                                      &access_dim);
                                                      &access_dim);
  ds = XNEWVEC (ppl_dimension_type, access_dim-1);
  ds = XNEWVEC (ppl_dimension_type, access_dim-1);
  for (i = 0; i < access_dim; i++)
  for (i = 0; i < access_dim; i++)
    {
    {
      if (i == alias_dim)
      if (i == alias_dim)
        continue;
        continue;
 
 
      ds[pos] = i;
      ds[pos] = i;
      pos++;
      pos++;
    }
    }
 
 
  ppl_Pointset_Powerset_C_Polyhedron_remove_space_dimensions (alias_powerset,
  ppl_Pointset_Powerset_C_Polyhedron_remove_space_dimensions (alias_powerset,
                                                              ds,
                                                              ds,
                                                              access_dim - 1);
                                                              access_dim - 1);
  free (ds);
  free (ds);
}
}
 
 
/* Return true when PDR1 and PDR2 may alias.  */
/* Return true when PDR1 and PDR2 may alias.  */
 
 
static bool
static bool
poly_drs_may_alias_p (poly_dr_p pdr1, poly_dr_p pdr2)
poly_drs_may_alias_p (poly_dr_p pdr1, poly_dr_p pdr2)
{
{
  ppl_Pointset_Powerset_C_Polyhedron_t alias_powerset1, alias_powerset2;
  ppl_Pointset_Powerset_C_Polyhedron_t alias_powerset1, alias_powerset2;
  ppl_Pointset_Powerset_C_Polyhedron_t accesses1 = PDR_ACCESSES (pdr1);
  ppl_Pointset_Powerset_C_Polyhedron_t accesses1 = PDR_ACCESSES (pdr1);
  ppl_Pointset_Powerset_C_Polyhedron_t accesses2 = PDR_ACCESSES (pdr2);
  ppl_Pointset_Powerset_C_Polyhedron_t accesses2 = PDR_ACCESSES (pdr2);
  ppl_dimension_type alias_dim1 = pdr_alias_set_dim (pdr1);
  ppl_dimension_type alias_dim1 = pdr_alias_set_dim (pdr1);
  ppl_dimension_type alias_dim2 = pdr_alias_set_dim (pdr2);
  ppl_dimension_type alias_dim2 = pdr_alias_set_dim (pdr2);
  int empty_p;
  int empty_p;
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
    (&alias_powerset1, accesses1);
    (&alias_powerset1, accesses1);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
    (&alias_powerset2, accesses2);
    (&alias_powerset2, accesses2);
 
 
  build_alias_set_powerset (alias_powerset1, alias_dim1);
  build_alias_set_powerset (alias_powerset1, alias_dim1);
  build_alias_set_powerset (alias_powerset2, alias_dim2);
  build_alias_set_powerset (alias_powerset2, alias_dim2);
 
 
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign
    (alias_powerset1, alias_powerset2);
    (alias_powerset1, alias_powerset2);
 
 
  empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (alias_powerset1);
  empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (alias_powerset1);
 
 
  ppl_delete_Pointset_Powerset_C_Polyhedron (alias_powerset1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (alias_powerset1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (alias_powerset2);
  ppl_delete_Pointset_Powerset_C_Polyhedron (alias_powerset2);
 
 
  return !empty_p;
  return !empty_p;
}
}
 
 
/* Swap [cut0, ..., cut1] to the end of DR: "a CUT0 b CUT1 c" is
/* Swap [cut0, ..., cut1] to the end of DR: "a CUT0 b CUT1 c" is
   transformed into "a CUT0 c CUT1' b"
   transformed into "a CUT0 c CUT1' b"
 
 
   Add NB0 zeros before "a":  "00...0 a CUT0 c CUT1' b"
   Add NB0 zeros before "a":  "00...0 a CUT0 c CUT1' b"
   Add NB1 zeros between "a" and "c":  "00...0 a 00...0 c CUT1' b"
   Add NB1 zeros between "a" and "c":  "00...0 a 00...0 c CUT1' b"
   Add DIM - NB0 - NB1 - PDIM zeros between "c" and "b":
   Add DIM - NB0 - NB1 - PDIM zeros between "c" and "b":
   "00...0 a 00...0 c 00...0 b".  */
   "00...0 a 00...0 c 00...0 b".  */
 
 
static ppl_Pointset_Powerset_C_Polyhedron_t
static ppl_Pointset_Powerset_C_Polyhedron_t
map_dr_into_dep_poly (graphite_dim_t dim,
map_dr_into_dep_poly (graphite_dim_t dim,
                      ppl_Pointset_Powerset_C_Polyhedron_t dr,
                      ppl_Pointset_Powerset_C_Polyhedron_t dr,
                      graphite_dim_t cut0, graphite_dim_t cut1,
                      graphite_dim_t cut0, graphite_dim_t cut1,
                      graphite_dim_t nb0, graphite_dim_t nb1)
                      graphite_dim_t nb0, graphite_dim_t nb1)
{
{
  ppl_dimension_type pdim;
  ppl_dimension_type pdim;
  ppl_dimension_type *map;
  ppl_dimension_type *map;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_dimension_type i;
  ppl_dimension_type i;
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
  ppl_new_Pointset_Powerset_C_Polyhedron_from_Pointset_Powerset_C_Polyhedron
    (&res, dr);
    (&res, dr);
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (res, &pdim);
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (res, &pdim);
 
 
  map = (ppl_dimension_type *) XNEWVEC (ppl_dimension_type, pdim);
  map = (ppl_dimension_type *) XNEWVEC (ppl_dimension_type, pdim);
 
 
  /* First mapping: move 'g' vector to right position.  */
  /* First mapping: move 'g' vector to right position.  */
  for (i = 0; i < cut0; i++)
  for (i = 0; i < cut0; i++)
    map[i] = i;
    map[i] = i;
 
 
  for (i = cut0; i < cut1; i++)
  for (i = cut0; i < cut1; i++)
    map[i] = pdim - cut1 + i;
    map[i] = pdim - cut1 + i;
 
 
  for (i = cut1; i < pdim; i++)
  for (i = cut1; i < pdim; i++)
    map[i] = cut0 + i - cut1;
    map[i] = cut0 + i - cut1;
 
 
  ppl_Pointset_Powerset_C_Polyhedron_map_space_dimensions (res, map, pdim);
  ppl_Pointset_Powerset_C_Polyhedron_map_space_dimensions (res, map, pdim);
  free (map);
  free (map);
 
 
  /* After swapping 's' and 'g' vectors, we have to update a new cut.  */
  /* After swapping 's' and 'g' vectors, we have to update a new cut.  */
  cut1 = pdim - cut1 + cut0;
  cut1 = pdim - cut1 + cut0;
 
 
  ppl_insert_dimensions_pointset (res, 0, nb0);
  ppl_insert_dimensions_pointset (res, 0, nb0);
  ppl_insert_dimensions_pointset (res, nb0 + cut0, nb1);
  ppl_insert_dimensions_pointset (res, nb0 + cut0, nb1);
  ppl_insert_dimensions_pointset (res, nb0 + nb1 + cut1,
  ppl_insert_dimensions_pointset (res, nb0 + nb1 + cut1,
                                  dim - nb0 - nb1 - pdim);
                                  dim - nb0 - nb1 - pdim);
 
 
  return res;
  return res;
}
}
 
 
/* Builds subscript equality constraints.  */
/* Builds subscript equality constraints.  */
 
 
static ppl_Pointset_Powerset_C_Polyhedron_t
static ppl_Pointset_Powerset_C_Polyhedron_t
dr_equality_constraints (graphite_dim_t dim,
dr_equality_constraints (graphite_dim_t dim,
                         graphite_dim_t pos, graphite_dim_t nb_subscripts)
                         graphite_dim_t pos, graphite_dim_t nb_subscripts)
{
{
  ppl_Polyhedron_t eqs;
  ppl_Polyhedron_t eqs;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  graphite_dim_t i;
  graphite_dim_t i;
 
 
  ppl_new_C_Polyhedron_from_space_dimension (&eqs, dim, 0);
  ppl_new_C_Polyhedron_from_space_dimension (&eqs, dim, 0);
 
 
  for (i = 0; i < nb_subscripts; i++)
  for (i = 0; i < nb_subscripts; i++)
    {
    {
      ppl_Constraint_t cstr
      ppl_Constraint_t cstr
        = ppl_build_relation (dim, pos + i, pos + i + nb_subscripts,
        = ppl_build_relation (dim, pos + i, pos + i + nb_subscripts,
                              0, PPL_CONSTRAINT_TYPE_EQUAL);
                              0, PPL_CONSTRAINT_TYPE_EQUAL);
      ppl_Polyhedron_add_constraint (eqs, cstr);
      ppl_Polyhedron_add_constraint (eqs, cstr);
      ppl_delete_Constraint (cstr);
      ppl_delete_Constraint (cstr);
    }
    }
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_C_Polyhedron (&res, eqs);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_C_Polyhedron (&res, eqs);
  ppl_delete_Polyhedron (eqs);
  ppl_delete_Polyhedron (eqs);
  return res;
  return res;
}
}
 
 
/* Builds scheduling inequality constraints: when DIRECTION is
/* Builds scheduling inequality constraints: when DIRECTION is
   1 builds a GE constraint,
   1 builds a GE constraint,
   0 builds an EQ constraint,
   0 builds an EQ constraint,
   -1 builds a LE constraint.  */
   -1 builds a LE constraint.  */
 
 
static ppl_Pointset_Powerset_C_Polyhedron_t
static ppl_Pointset_Powerset_C_Polyhedron_t
build_pairwise_scheduling (graphite_dim_t dim,
build_pairwise_scheduling (graphite_dim_t dim,
                           graphite_dim_t pos,
                           graphite_dim_t pos,
                           graphite_dim_t offset,
                           graphite_dim_t offset,
                           int direction)
                           int direction)
{
{
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Polyhedron_t equalities;
  ppl_Polyhedron_t equalities;
  ppl_Constraint_t cstr;
  ppl_Constraint_t cstr;
 
 
  ppl_new_C_Polyhedron_from_space_dimension (&equalities, dim, 0);
  ppl_new_C_Polyhedron_from_space_dimension (&equalities, dim, 0);
 
 
  switch (direction)
  switch (direction)
    {
    {
    case -1:
    case -1:
      cstr = ppl_build_relation (dim, pos, pos + offset, 1,
      cstr = ppl_build_relation (dim, pos, pos + offset, 1,
                                 PPL_CONSTRAINT_TYPE_LESS_OR_EQUAL);
                                 PPL_CONSTRAINT_TYPE_LESS_OR_EQUAL);
      break;
      break;
 
 
    case 0:
    case 0:
      cstr = ppl_build_relation (dim, pos, pos + offset, 0,
      cstr = ppl_build_relation (dim, pos, pos + offset, 0,
                                 PPL_CONSTRAINT_TYPE_EQUAL);
                                 PPL_CONSTRAINT_TYPE_EQUAL);
      break;
      break;
 
 
    case 1:
    case 1:
      cstr = ppl_build_relation (dim, pos, pos + offset, -1,
      cstr = ppl_build_relation (dim, pos, pos + offset, -1,
                                 PPL_CONSTRAINT_TYPE_GREATER_OR_EQUAL);
                                 PPL_CONSTRAINT_TYPE_GREATER_OR_EQUAL);
      break;
      break;
 
 
    default:
    default:
      gcc_unreachable ();
      gcc_unreachable ();
    }
    }
 
 
  ppl_Polyhedron_add_constraint (equalities, cstr);
  ppl_Polyhedron_add_constraint (equalities, cstr);
  ppl_delete_Constraint (cstr);
  ppl_delete_Constraint (cstr);
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_C_Polyhedron (&res, equalities);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_C_Polyhedron (&res, equalities);
  ppl_delete_Polyhedron (equalities);
  ppl_delete_Polyhedron (equalities);
  return res;
  return res;
}
}
 
 
/* Add to a non empty polyhedron BAG the precedence constraints for
/* Add to a non empty polyhedron BAG the precedence constraints for
   the lexicographical comparison of time vectors in BAG following the
   the lexicographical comparison of time vectors in BAG following the
   lexicographical order.  DIM is the dimension of the polyhedron BAG.
   lexicographical order.  DIM is the dimension of the polyhedron BAG.
   TDIM is the number of loops common to the two statements that are
   TDIM is the number of loops common to the two statements that are
   compared lexicographically, i.e. the number of loops containing
   compared lexicographically, i.e. the number of loops containing
   both statements.  OFFSET is the number of dimensions needed to
   both statements.  OFFSET is the number of dimensions needed to
   represent the first statement, i.e. dimT1 + dimI1 in the layout of
   represent the first statement, i.e. dimT1 + dimI1 in the layout of
   the BAG polyhedron: T1|I1|T2|I2|S1|S2|G.  When DIRECTION is set to
   the BAG polyhedron: T1|I1|T2|I2|S1|S2|G.  When DIRECTION is set to
   1, compute the direct dependence from PDR1 to PDR2, and when
   1, compute the direct dependence from PDR1 to PDR2, and when
   DIRECTION is -1, compute the reversed dependence relation, from
   DIRECTION is -1, compute the reversed dependence relation, from
   PDR2 to PDR1.  */
   PDR2 to PDR1.  */
 
 
static ppl_Pointset_Powerset_C_Polyhedron_t
static ppl_Pointset_Powerset_C_Polyhedron_t
build_lexicographical_constraint (ppl_Pointset_Powerset_C_Polyhedron_t bag,
build_lexicographical_constraint (ppl_Pointset_Powerset_C_Polyhedron_t bag,
                                  graphite_dim_t dim,
                                  graphite_dim_t dim,
                                  graphite_dim_t tdim,
                                  graphite_dim_t tdim,
                                  graphite_dim_t offset,
                                  graphite_dim_t offset,
                                  int direction)
                                  int direction)
{
{
  graphite_dim_t i;
  graphite_dim_t i;
  ppl_Pointset_Powerset_C_Polyhedron_t res, lex;
  ppl_Pointset_Powerset_C_Polyhedron_t res, lex;
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&res, dim, 1);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&res, dim, 1);
 
 
  lex = build_pairwise_scheduling (dim, 0, offset, direction);
  lex = build_pairwise_scheduling (dim, 0, offset, direction);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag);
 
 
  if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (lex))
  if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (lex))
    ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex);
    ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex);
 
 
  ppl_delete_Pointset_Powerset_C_Polyhedron (lex);
  ppl_delete_Pointset_Powerset_C_Polyhedron (lex);
 
 
  for (i = 0; i < tdim - 1; i++)
  for (i = 0; i < tdim - 1; i++)
    {
    {
      ppl_Pointset_Powerset_C_Polyhedron_t sceq;
      ppl_Pointset_Powerset_C_Polyhedron_t sceq;
 
 
      sceq = build_pairwise_scheduling (dim, i, offset, 0);
      sceq = build_pairwise_scheduling (dim, i, offset, 0);
      ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (bag, sceq);
      ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (bag, sceq);
      ppl_delete_Pointset_Powerset_C_Polyhedron (sceq);
      ppl_delete_Pointset_Powerset_C_Polyhedron (sceq);
 
 
      lex = build_pairwise_scheduling (dim, i + 1, offset, direction);
      lex = build_pairwise_scheduling (dim, i + 1, offset, direction);
      ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag);
      ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (lex, bag);
 
 
      if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (lex))
      if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (lex))
        ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex);
        ppl_Pointset_Powerset_C_Polyhedron_upper_bound_assign (res, lex);
 
 
      ppl_delete_Pointset_Powerset_C_Polyhedron (lex);
      ppl_delete_Pointset_Powerset_C_Polyhedron (lex);
    }
    }
 
 
  return res;
  return res;
}
}
 
 
/* Build the dependence polyhedron for data references PDR1 and PDR2.
/* Build the dependence polyhedron for data references PDR1 and PDR2.
   The layout of the dependence polyhedron is:
   The layout of the dependence polyhedron is:
 
 
   T1|I1|T2|I2|S1|S2|G
   T1|I1|T2|I2|S1|S2|G
 
 
   with
   with
   | T1 and T2 the scattering dimensions for PDR1 and PDR2
   | T1 and T2 the scattering dimensions for PDR1 and PDR2
   | I1 and I2 the iteration domains
   | I1 and I2 the iteration domains
   | S1 and S2 the subscripts
   | S1 and S2 the subscripts
   | G the global parameters.
   | G the global parameters.
 
 
   When DIRECTION is set to 1, compute the direct dependence from PDR1
   When DIRECTION is set to 1, compute the direct dependence from PDR1
   to PDR2, and when DIRECTION is -1, compute the reversed dependence
   to PDR2, and when DIRECTION is -1, compute the reversed dependence
   relation, from PDR2 to PDR1.  */
   relation, from PDR2 to PDR1.  */
 
 
static ppl_Pointset_Powerset_C_Polyhedron_t
static ppl_Pointset_Powerset_C_Polyhedron_t
dependence_polyhedron_1 (poly_dr_p pdr1, poly_dr_p pdr2,
dependence_polyhedron_1 (poly_dr_p pdr1, poly_dr_p pdr2,
                         int direction, bool original_scattering_p)
                         int direction, bool original_scattering_p)
{
{
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
  scop_p scop = PBB_SCOP (pbb1);
  scop_p scop = PBB_SCOP (pbb1);
  graphite_dim_t tdim1 = original_scattering_p ?
  graphite_dim_t tdim1 = original_scattering_p ?
    pbb_nb_scattering_orig (pbb1) : pbb_nb_scattering_transform (pbb1);
    pbb_nb_scattering_orig (pbb1) : pbb_nb_scattering_transform (pbb1);
  graphite_dim_t tdim2 = original_scattering_p ?
  graphite_dim_t tdim2 = original_scattering_p ?
    pbb_nb_scattering_orig (pbb2) : pbb_nb_scattering_transform (pbb2);
    pbb_nb_scattering_orig (pbb2) : pbb_nb_scattering_transform (pbb2);
  graphite_dim_t ddim1 = pbb_dim_iter_domain (pbb1);
  graphite_dim_t ddim1 = pbb_dim_iter_domain (pbb1);
  graphite_dim_t ddim2 = pbb_dim_iter_domain (pbb2);
  graphite_dim_t ddim2 = pbb_dim_iter_domain (pbb2);
  graphite_dim_t sdim1 = PDR_NB_SUBSCRIPTS (pdr1) + 1;
  graphite_dim_t sdim1 = PDR_NB_SUBSCRIPTS (pdr1) + 1;
  graphite_dim_t sdim2 = PDR_NB_SUBSCRIPTS (pdr2) + 1;
  graphite_dim_t sdim2 = PDR_NB_SUBSCRIPTS (pdr2) + 1;
  graphite_dim_t gdim = scop_nb_params (scop);
  graphite_dim_t gdim = scop_nb_params (scop);
  graphite_dim_t dim1 = pdr_dim (pdr1);
  graphite_dim_t dim1 = pdr_dim (pdr1);
  graphite_dim_t dim2 = pdr_dim (pdr2);
  graphite_dim_t dim2 = pdr_dim (pdr2);
  graphite_dim_t dim = tdim1 + tdim2 + dim1 + dim2 - gdim;
  graphite_dim_t dim = tdim1 + tdim2 + dim1 + dim2 - gdim;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Pointset_Powerset_C_Polyhedron_t res;
  ppl_Pointset_Powerset_C_Polyhedron_t idr1, idr2;
  ppl_Pointset_Powerset_C_Polyhedron_t idr1, idr2;
  ppl_Pointset_Powerset_C_Polyhedron_t sc1, sc2, dreq;
  ppl_Pointset_Powerset_C_Polyhedron_t sc1, sc2, dreq;
 
 
  gcc_assert (PBB_SCOP (pbb1) == PBB_SCOP (pbb2));
  gcc_assert (PBB_SCOP (pbb1) == PBB_SCOP (pbb2));
 
 
  combine_context_id_scat (&sc1, pbb1, original_scattering_p);
  combine_context_id_scat (&sc1, pbb1, original_scattering_p);
  combine_context_id_scat (&sc2, pbb2, original_scattering_p);
  combine_context_id_scat (&sc2, pbb2, original_scattering_p);
 
 
  ppl_insert_dimensions_pointset (sc1, tdim1 + ddim1,
  ppl_insert_dimensions_pointset (sc1, tdim1 + ddim1,
                                  tdim2 + ddim2 + sdim1 + sdim2);
                                  tdim2 + ddim2 + sdim1 + sdim2);
 
 
  ppl_insert_dimensions_pointset (sc2, 0, tdim1 + ddim1);
  ppl_insert_dimensions_pointset (sc2, 0, tdim1 + ddim1);
  ppl_insert_dimensions_pointset (sc2, tdim1 + ddim1 + tdim2 + ddim2,
  ppl_insert_dimensions_pointset (sc2, tdim1 + ddim1 + tdim2 + ddim2,
                                  sdim1 + sdim2);
                                  sdim1 + sdim2);
 
 
  idr1 = map_dr_into_dep_poly (dim, PDR_ACCESSES (pdr1), ddim1, ddim1 + gdim,
  idr1 = map_dr_into_dep_poly (dim, PDR_ACCESSES (pdr1), ddim1, ddim1 + gdim,
                               tdim1, tdim2 + ddim2);
                               tdim1, tdim2 + ddim2);
  idr2 = map_dr_into_dep_poly (dim, PDR_ACCESSES (pdr2), ddim2, ddim2 + gdim,
  idr2 = map_dr_into_dep_poly (dim, PDR_ACCESSES (pdr2), ddim2, ddim2 + gdim,
                               tdim1 + ddim1 + tdim2, sdim1);
                               tdim1 + ddim1 + tdim2, sdim1);
 
 
  /* Now add the subscript equalities.  */
  /* Now add the subscript equalities.  */
  dreq = dr_equality_constraints (dim, tdim1 + ddim1 + tdim2 + ddim2, sdim1);
  dreq = dr_equality_constraints (dim, tdim1 + ddim1 + tdim2 + ddim2, sdim1);
 
 
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&res, dim, 0);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&res, dim, 0);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, sc1);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, sc1);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, sc2);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, sc2);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, idr1);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, idr1);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, idr2);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, idr2);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, dreq);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (res, dreq);
  ppl_delete_Pointset_Powerset_C_Polyhedron (sc1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (sc1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (sc2);
  ppl_delete_Pointset_Powerset_C_Polyhedron (sc2);
  ppl_delete_Pointset_Powerset_C_Polyhedron (idr1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (idr1);
  ppl_delete_Pointset_Powerset_C_Polyhedron (idr2);
  ppl_delete_Pointset_Powerset_C_Polyhedron (idr2);
  ppl_delete_Pointset_Powerset_C_Polyhedron (dreq);
  ppl_delete_Pointset_Powerset_C_Polyhedron (dreq);
 
 
  if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (res))
  if (!ppl_Pointset_Powerset_C_Polyhedron_is_empty (res))
    {
    {
      ppl_Pointset_Powerset_C_Polyhedron_t lex =
      ppl_Pointset_Powerset_C_Polyhedron_t lex =
        build_lexicographical_constraint (res, dim, MIN (tdim1, tdim2),
        build_lexicographical_constraint (res, dim, MIN (tdim1, tdim2),
                                          tdim1 + ddim1, direction);
                                          tdim1 + ddim1, direction);
      ppl_delete_Pointset_Powerset_C_Polyhedron (res);
      ppl_delete_Pointset_Powerset_C_Polyhedron (res);
      res = lex;
      res = lex;
    }
    }
 
 
  return res;
  return res;
}
}
 
 
/* Build the dependence polyhedron for data references PDR1 and PDR2.
/* Build the dependence polyhedron for data references PDR1 and PDR2.
   If possible use already cached information.
   If possible use already cached information.
 
 
   When DIRECTION is set to 1, compute the direct dependence from PDR1
   When DIRECTION is set to 1, compute the direct dependence from PDR1
   to PDR2, and when DIRECTION is -1, compute the reversed dependence
   to PDR2, and when DIRECTION is -1, compute the reversed dependence
   relation, from PDR2 to PDR1.  */
   relation, from PDR2 to PDR1.  */
 
 
static poly_ddr_p
static poly_ddr_p
dependence_polyhedron (poly_dr_p pdr1, poly_dr_p pdr2,
dependence_polyhedron (poly_dr_p pdr1, poly_dr_p pdr2,
                       int direction, bool original_scattering_p)
                       int direction, bool original_scattering_p)
{
{
  PTR *x = NULL;
  PTR *x = NULL;
  poly_ddr_p res;
  poly_ddr_p res;
  ppl_Pointset_Powerset_C_Polyhedron_t ddp;
  ppl_Pointset_Powerset_C_Polyhedron_t ddp;
 
 
  /* Return the PDDR from the cache if it already has been computed.  */
  /* Return the PDDR from the cache if it already has been computed.  */
  if (original_scattering_p)
  if (original_scattering_p)
    {
    {
      struct poly_ddr tmp;
      struct poly_ddr tmp;
      scop_p scop = PBB_SCOP (PDR_PBB (pdr1));
      scop_p scop = PBB_SCOP (PDR_PBB (pdr1));
 
 
      tmp.source = pdr1;
      tmp.source = pdr1;
      tmp.sink = pdr2;
      tmp.sink = pdr2;
      x = htab_find_slot (SCOP_ORIGINAL_PDDRS (scop),
      x = htab_find_slot (SCOP_ORIGINAL_PDDRS (scop),
                          &tmp, INSERT);
                          &tmp, INSERT);
 
 
      if (x && *x)
      if (x && *x)
        return (poly_ddr_p) *x;
        return (poly_ddr_p) *x;
    }
    }
 
 
  if ((pdr_read_p (pdr1) && pdr_read_p (pdr2))
  if ((pdr_read_p (pdr1) && pdr_read_p (pdr2))
      || PDR_BASE_OBJECT_SET (pdr1) != PDR_BASE_OBJECT_SET (pdr2)
      || PDR_BASE_OBJECT_SET (pdr1) != PDR_BASE_OBJECT_SET (pdr2)
      || PDR_NB_SUBSCRIPTS (pdr1) != PDR_NB_SUBSCRIPTS (pdr2)
      || PDR_NB_SUBSCRIPTS (pdr1) != PDR_NB_SUBSCRIPTS (pdr2)
      || !poly_drs_may_alias_p (pdr1, pdr2))
      || !poly_drs_may_alias_p (pdr1, pdr2))
    ddp = NULL;
    ddp = NULL;
  else
  else
    ddp = dependence_polyhedron_1 (pdr1, pdr2, direction,
    ddp = dependence_polyhedron_1 (pdr1, pdr2, direction,
                                   original_scattering_p);
                                   original_scattering_p);
 
 
  res = new_poly_ddr (pdr1, pdr2, ddp, original_scattering_p);
  res = new_poly_ddr (pdr1, pdr2, ddp, original_scattering_p);
 
 
  if (!(pdr_read_p (pdr1) && pdr_read_p (pdr2))
  if (!(pdr_read_p (pdr1) && pdr_read_p (pdr2))
      && PDR_BASE_OBJECT_SET (pdr1) != PDR_BASE_OBJECT_SET (pdr2)
      && PDR_BASE_OBJECT_SET (pdr1) != PDR_BASE_OBJECT_SET (pdr2)
      && poly_drs_may_alias_p (pdr1, pdr2))
      && poly_drs_may_alias_p (pdr1, pdr2))
    PDDR_KIND (res) = unknown_dependence;
    PDDR_KIND (res) = unknown_dependence;
 
 
  if (original_scattering_p)
  if (original_scattering_p)
    *x = res;
    *x = res;
 
 
  return res;
  return res;
}
}
 
 
/* Return true when the data dependence relation between the data
/* Return true when the data dependence relation between the data
   references PDR1 belonging to PBB1 and PDR2 is part of a
   references PDR1 belonging to PBB1 and PDR2 is part of a
   reduction.  */
   reduction.  */
 
 
static inline bool
static inline bool
reduction_dr_1 (poly_bb_p pbb1, poly_dr_p pdr1, poly_dr_p pdr2)
reduction_dr_1 (poly_bb_p pbb1, poly_dr_p pdr1, poly_dr_p pdr2)
{
{
  int i;
  int i;
  poly_dr_p pdr;
  poly_dr_p pdr;
 
 
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr); i++)
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr); i++)
    if (PDR_TYPE (pdr) == PDR_WRITE)
    if (PDR_TYPE (pdr) == PDR_WRITE)
      break;
      break;
 
 
  return same_pdr_p (pdr, pdr1) && same_pdr_p (pdr, pdr2);
  return same_pdr_p (pdr, pdr1) && same_pdr_p (pdr, pdr2);
}
}
 
 
/* Return true when the data dependence relation between the data
/* Return true when the data dependence relation between the data
   references PDR1 belonging to PBB1 and PDR2 belonging to PBB2 is
   references PDR1 belonging to PBB1 and PDR2 belonging to PBB2 is
   part of a reduction.  */
   part of a reduction.  */
 
 
static inline bool
static inline bool
reduction_dr_p (poly_dr_p pdr1, poly_dr_p pdr2)
reduction_dr_p (poly_dr_p pdr1, poly_dr_p pdr2)
{
{
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb1 = PDR_PBB (pdr1);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
  poly_bb_p pbb2 = PDR_PBB (pdr2);
 
 
  if (PBB_IS_REDUCTION (pbb1))
  if (PBB_IS_REDUCTION (pbb1))
    return reduction_dr_1 (pbb1, pdr1, pdr2);
    return reduction_dr_1 (pbb1, pdr1, pdr2);
 
 
  if (PBB_IS_REDUCTION (pbb2))
  if (PBB_IS_REDUCTION (pbb2))
    return reduction_dr_1 (pbb2, pdr2, pdr1);
    return reduction_dr_1 (pbb2, pdr2, pdr1);
 
 
  return false;
  return false;
}
}
 
 
/* Returns true when the PBB_TRANSFORMED_SCATTERING functions of PBB1
/* Returns true when the PBB_TRANSFORMED_SCATTERING functions of PBB1
   and PBB2 respect the data dependences of PBB_ORIGINAL_SCATTERING
   and PBB2 respect the data dependences of PBB_ORIGINAL_SCATTERING
   functions.  */
   functions.  */
 
 
static bool
static bool
graphite_legal_transform_dr (poly_dr_p pdr1, poly_dr_p pdr2)
graphite_legal_transform_dr (poly_dr_p pdr1, poly_dr_p pdr2)
{
{
  ppl_Pointset_Powerset_C_Polyhedron_t po, pt;
  ppl_Pointset_Powerset_C_Polyhedron_t po, pt;
  graphite_dim_t ddim1, otdim1, otdim2, ttdim1, ttdim2;
  graphite_dim_t ddim1, otdim1, otdim2, ttdim1, ttdim2;
  ppl_Pointset_Powerset_C_Polyhedron_t po_temp;
  ppl_Pointset_Powerset_C_Polyhedron_t po_temp;
  ppl_dimension_type pdim;
  ppl_dimension_type pdim;
  bool is_empty_p;
  bool is_empty_p;
  poly_ddr_p opddr, tpddr;
  poly_ddr_p opddr, tpddr;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
 
 
  if (reduction_dr_p (pdr1, pdr2))
  if (reduction_dr_p (pdr1, pdr2))
    return true;
    return true;
 
 
  /* We build the reverse dependence relation for the transformed
  /* We build the reverse dependence relation for the transformed
     scattering, such that when we intersect it with the original PO,
     scattering, such that when we intersect it with the original PO,
     we get an empty intersection when the transform is legal:
     we get an empty intersection when the transform is legal:
     i.e. the transform should reverse no dependences, and so PT, the
     i.e. the transform should reverse no dependences, and so PT, the
     reversed transformed PDDR, should have no constraint from PO.  */
     reversed transformed PDDR, should have no constraint from PO.  */
  opddr = dependence_polyhedron (pdr1, pdr2, 1, true);
  opddr = dependence_polyhedron (pdr1, pdr2, 1, true);
 
 
  if (PDDR_KIND (opddr) == unknown_dependence)
  if (PDDR_KIND (opddr) == unknown_dependence)
    return false;
    return false;
 
 
    /* There are no dependences between PDR1 and PDR2 in the original
    /* There are no dependences between PDR1 and PDR2 in the original
       version of the program, or after the transform, so the
       version of the program, or after the transform, so the
       transform is legal.  */
       transform is legal.  */
  if (pddr_is_empty (opddr))
  if (pddr_is_empty (opddr))
    return true;
    return true;
 
 
  tpddr = dependence_polyhedron (pdr1, pdr2, -1, false);
  tpddr = dependence_polyhedron (pdr1, pdr2, -1, false);
 
 
  if (PDDR_KIND (tpddr) == unknown_dependence)
  if (PDDR_KIND (tpddr) == unknown_dependence)
    {
    {
      free_poly_ddr (tpddr);
      free_poly_ddr (tpddr);
      return false;
      return false;
    }
    }
 
 
  if (pddr_is_empty (tpddr))
  if (pddr_is_empty (tpddr))
    {
    {
      free_poly_ddr (tpddr);
      free_poly_ddr (tpddr);
      return true;
      return true;
    }
    }
 
 
  po = PDDR_DDP (opddr);
  po = PDDR_DDP (opddr);
  pt = PDDR_DDP (tpddr);
  pt = PDDR_DDP (tpddr);
 
 
  /* Copy PO into PO_TEMP, such that PO is not destroyed.  PO is
  /* Copy PO into PO_TEMP, such that PO is not destroyed.  PO is
     stored in a cache and should not be modified or freed.  */
     stored in a cache and should not be modified or freed.  */
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (po, &pdim);
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (po, &pdim);
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&po_temp,
  ppl_new_Pointset_Powerset_C_Polyhedron_from_space_dimension (&po_temp,
                                                               pdim, 0);
                                                               pdim, 0);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (po_temp, po);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (po_temp, po);
 
 
  /* Extend PO and PT to have the same dimensions.  */
  /* Extend PO and PT to have the same dimensions.  */
  pbb1 = PDR_PBB (pdr1);
  pbb1 = PDR_PBB (pdr1);
  pbb2 = PDR_PBB (pdr2);
  pbb2 = PDR_PBB (pdr2);
  ddim1 = pbb_dim_iter_domain (pbb1);
  ddim1 = pbb_dim_iter_domain (pbb1);
  otdim1 = pbb_nb_scattering_orig (pbb1);
  otdim1 = pbb_nb_scattering_orig (pbb1);
  otdim2 = pbb_nb_scattering_orig (pbb2);
  otdim2 = pbb_nb_scattering_orig (pbb2);
  ttdim1 = pbb_nb_scattering_transform (pbb1);
  ttdim1 = pbb_nb_scattering_transform (pbb1);
  ttdim2 = pbb_nb_scattering_transform (pbb2);
  ttdim2 = pbb_nb_scattering_transform (pbb2);
  ppl_insert_dimensions_pointset (po_temp, otdim1, ttdim1);
  ppl_insert_dimensions_pointset (po_temp, otdim1, ttdim1);
  ppl_insert_dimensions_pointset (po_temp, otdim1 + ttdim1 + ddim1 + otdim2,
  ppl_insert_dimensions_pointset (po_temp, otdim1 + ttdim1 + ddim1 + otdim2,
                                  ttdim2);
                                  ttdim2);
  ppl_insert_dimensions_pointset (pt, 0, otdim1);
  ppl_insert_dimensions_pointset (pt, 0, otdim1);
  ppl_insert_dimensions_pointset (pt, otdim1 + ttdim1 + ddim1, otdim2);
  ppl_insert_dimensions_pointset (pt, otdim1 + ttdim1 + ddim1, otdim2);
 
 
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (po_temp, pt);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (po_temp, pt);
  is_empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (po_temp);
  is_empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (po_temp);
 
 
  ppl_delete_Pointset_Powerset_C_Polyhedron (po_temp);
  ppl_delete_Pointset_Powerset_C_Polyhedron (po_temp);
  free_poly_ddr (tpddr);
  free_poly_ddr (tpddr);
 
 
  if (dump_file && (dump_flags & TDF_DETAILS))
  if (dump_file && (dump_flags & TDF_DETAILS))
    fprintf (dump_file, "\nloop carries dependency.\n");
    fprintf (dump_file, "\nloop carries dependency.\n");
 
 
  return is_empty_p;
  return is_empty_p;
}
}
 
 
/* Return true when the data dependence relation for PBB1 and PBB2 is
/* Return true when the data dependence relation for PBB1 and PBB2 is
   part of a reduction.  */
   part of a reduction.  */
 
 
static inline bool
static inline bool
reduction_ddr_p (poly_bb_p pbb1, poly_bb_p pbb2)
reduction_ddr_p (poly_bb_p pbb1, poly_bb_p pbb2)
{
{
  return pbb1 == pbb2 && PBB_IS_REDUCTION (pbb1);
  return pbb1 == pbb2 && PBB_IS_REDUCTION (pbb1);
}
}
 
 
/* Iterates over the data references of PBB1 and PBB2 and detect
/* Iterates over the data references of PBB1 and PBB2 and detect
   whether the transformed schedule is correct.  */
   whether the transformed schedule is correct.  */
 
 
static bool
static bool
graphite_legal_transform_bb (poly_bb_p pbb1, poly_bb_p pbb2)
graphite_legal_transform_bb (poly_bb_p pbb1, poly_bb_p pbb2)
{
{
  int i, j;
  int i, j;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  if (!PBB_PDR_DUPLICATES_REMOVED (pbb1))
  if (!PBB_PDR_DUPLICATES_REMOVED (pbb1))
    pbb_remove_duplicate_pdrs (pbb1);
    pbb_remove_duplicate_pdrs (pbb1);
 
 
  if (!PBB_PDR_DUPLICATES_REMOVED (pbb2))
  if (!PBB_PDR_DUPLICATES_REMOVED (pbb2))
    pbb_remove_duplicate_pdrs (pbb2);
    pbb_remove_duplicate_pdrs (pbb2);
 
 
  if (reduction_ddr_p (pbb1, pbb2))
  if (reduction_ddr_p (pbb1, pbb2))
    return true;
    return true;
 
 
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr1); i++)
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr1); i++)
    for (j = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), j, pdr2); j++)
    for (j = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), j, pdr2); j++)
      if (!graphite_legal_transform_dr (pdr1, pdr2))
      if (!graphite_legal_transform_dr (pdr1, pdr2))
        return false;
        return false;
 
 
  return true;
  return true;
}
}
 
 
/* Iterates over the SCOP and detect whether the transformed schedule
/* Iterates over the SCOP and detect whether the transformed schedule
   is correct.  */
   is correct.  */
 
 
bool
bool
graphite_legal_transform (scop_p scop)
graphite_legal_transform (scop_p scop)
{
{
  int i, j;
  int i, j;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
 
 
  timevar_push (TV_GRAPHITE_DATA_DEPS);
  timevar_push (TV_GRAPHITE_DATA_DEPS);
 
 
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
      if (!graphite_legal_transform_bb (pbb1, pbb2))
      if (!graphite_legal_transform_bb (pbb1, pbb2))
        {
        {
          timevar_pop (TV_GRAPHITE_DATA_DEPS);
          timevar_pop (TV_GRAPHITE_DATA_DEPS);
          return false;
          return false;
        }
        }
 
 
  timevar_pop (TV_GRAPHITE_DATA_DEPS);
  timevar_pop (TV_GRAPHITE_DATA_DEPS);
  return true;
  return true;
}
}
 
 
/* Returns TRUE when the dependence polyhedron between PDR1 and
/* Returns TRUE when the dependence polyhedron between PDR1 and
   PDR2 represents a loop carried dependence at level LEVEL.  */
   PDR2 represents a loop carried dependence at level LEVEL.  */
 
 
static bool
static bool
graphite_carried_dependence_level_k (poly_dr_p pdr1, poly_dr_p pdr2,
graphite_carried_dependence_level_k (poly_dr_p pdr1, poly_dr_p pdr2,
                                     int level)
                                     int level)
{
{
  ppl_Pointset_Powerset_C_Polyhedron_t po;
  ppl_Pointset_Powerset_C_Polyhedron_t po;
  ppl_Pointset_Powerset_C_Polyhedron_t eqpp;
  ppl_Pointset_Powerset_C_Polyhedron_t eqpp;
  graphite_dim_t tdim1 = pbb_nb_scattering_transform (PDR_PBB (pdr1));
  graphite_dim_t tdim1 = pbb_nb_scattering_transform (PDR_PBB (pdr1));
  graphite_dim_t ddim1 = pbb_dim_iter_domain (PDR_PBB (pdr1));
  graphite_dim_t ddim1 = pbb_dim_iter_domain (PDR_PBB (pdr1));
  ppl_dimension_type dim;
  ppl_dimension_type dim;
  bool empty_p;
  bool empty_p;
  poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
  poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
 
 
  if (PDDR_KIND (pddr) == unknown_dependence)
  if (PDDR_KIND (pddr) == unknown_dependence)
    {
    {
      free_poly_ddr (pddr);
      free_poly_ddr (pddr);
      return true;
      return true;
    }
    }
 
 
  if (pddr_is_empty (pddr))
  if (pddr_is_empty (pddr))
    {
    {
      free_poly_ddr (pddr);
      free_poly_ddr (pddr);
      return false;
      return false;
    }
    }
 
 
  po = PDDR_DDP (pddr);
  po = PDDR_DDP (pddr);
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (po, &dim);
  ppl_Pointset_Powerset_C_Polyhedron_space_dimension (po, &dim);
  eqpp = build_pairwise_scheduling (dim, level, tdim1 + ddim1, 1);
  eqpp = build_pairwise_scheduling (dim, level, tdim1 + ddim1, 1);
 
 
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (eqpp, po);
  ppl_Pointset_Powerset_C_Polyhedron_intersection_assign (eqpp, po);
  empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (eqpp);
  empty_p = ppl_Pointset_Powerset_C_Polyhedron_is_empty (eqpp);
 
 
  ppl_delete_Pointset_Powerset_C_Polyhedron (eqpp);
  ppl_delete_Pointset_Powerset_C_Polyhedron (eqpp);
  free_poly_ddr (pddr);
  free_poly_ddr (pddr);
 
 
  return !empty_p;
  return !empty_p;
}
}
 
 
/* Check data dependency between PBB1 and PBB2 at level LEVEL.  */
/* Check data dependency between PBB1 and PBB2 at level LEVEL.  */
 
 
bool
bool
dependency_between_pbbs_p (poly_bb_p pbb1, poly_bb_p pbb2, int level)
dependency_between_pbbs_p (poly_bb_p pbb1, poly_bb_p pbb2, int level)
{
{
  int i, j;
  int i, j;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  timevar_push (TV_GRAPHITE_DATA_DEPS);
  timevar_push (TV_GRAPHITE_DATA_DEPS);
 
 
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr1); i++)
  for (i = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), i, pdr1); i++)
    for (j = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), j, pdr2); j++)
    for (j = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), j, pdr2); j++)
      if (graphite_carried_dependence_level_k (pdr1, pdr2, level))
      if (graphite_carried_dependence_level_k (pdr1, pdr2, level))
        {
        {
          timevar_pop (TV_GRAPHITE_DATA_DEPS);
          timevar_pop (TV_GRAPHITE_DATA_DEPS);
          return true;
          return true;
        }
        }
 
 
  timevar_pop (TV_GRAPHITE_DATA_DEPS);
  timevar_pop (TV_GRAPHITE_DATA_DEPS);
  return false;
  return false;
}
}
 
 
/* Pretty print to FILE all the original data dependences of SCoP in
/* Pretty print to FILE all the original data dependences of SCoP in
   DOT format.  */
   DOT format.  */
 
 
static void
static void
dot_original_deps_stmt_1 (FILE *file, scop_p scop)
dot_original_deps_stmt_1 (FILE *file, scop_p scop)
{
{
  int i, j, k, l;
  int i, j, k, l;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
      {
      {
        for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
        for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
          for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
          for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
            if (!pddr_is_empty (dependence_polyhedron (pdr1, pdr2, 1, true)))
            if (!pddr_is_empty (dependence_polyhedron (pdr1, pdr2, 1, true)))
              {
              {
                fprintf (file, "OS%d -> OS%d\n",
                fprintf (file, "OS%d -> OS%d\n",
                         pbb_index (pbb1), pbb_index (pbb2));
                         pbb_index (pbb1), pbb_index (pbb2));
                goto done;
                goto done;
              }
              }
      done:;
      done:;
      }
      }
}
}
 
 
/* Pretty print to FILE all the transformed data dependences of SCoP in
/* Pretty print to FILE all the transformed data dependences of SCoP in
   DOT format.  */
   DOT format.  */
 
 
static void
static void
dot_transformed_deps_stmt_1 (FILE *file, scop_p scop)
dot_transformed_deps_stmt_1 (FILE *file, scop_p scop)
{
{
  int i, j, k, l;
  int i, j, k, l;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
      {
      {
        for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
        for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
          for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
          for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
            {
            {
              poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
              poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
 
 
              if (!pddr_is_empty (pddr))
              if (!pddr_is_empty (pddr))
                {
                {
                  fprintf (file, "TS%d -> TS%d\n",
                  fprintf (file, "TS%d -> TS%d\n",
                           pbb_index (pbb1), pbb_index (pbb2));
                           pbb_index (pbb1), pbb_index (pbb2));
 
 
                  free_poly_ddr (pddr);
                  free_poly_ddr (pddr);
                  goto done;
                  goto done;
                }
                }
 
 
              free_poly_ddr (pddr);
              free_poly_ddr (pddr);
            }
            }
      done:;
      done:;
      }
      }
}
}
 
 
 
 
/* Pretty print to FILE all the data dependences of SCoP in DOT
/* Pretty print to FILE all the data dependences of SCoP in DOT
   format.  */
   format.  */
 
 
static void
static void
dot_deps_stmt_1 (FILE *file, scop_p scop)
dot_deps_stmt_1 (FILE *file, scop_p scop)
{
{
  fputs ("digraph all {\n", file);
  fputs ("digraph all {\n", file);
 
 
  dot_original_deps_stmt_1 (file, scop);
  dot_original_deps_stmt_1 (file, scop);
  dot_transformed_deps_stmt_1 (file, scop);
  dot_transformed_deps_stmt_1 (file, scop);
 
 
  fputs ("}\n\n", file);
  fputs ("}\n\n", file);
}
}
 
 
/* Pretty print to FILE all the original data dependences of SCoP in
/* Pretty print to FILE all the original data dependences of SCoP in
   DOT format.  */
   DOT format.  */
 
 
static void
static void
dot_original_deps (FILE *file, scop_p scop)
dot_original_deps (FILE *file, scop_p scop)
{
{
  int i, j, k, l;
  int i, j, k, l;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
      for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
      for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
        for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
        for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
          if (!pddr_is_empty (dependence_polyhedron (pdr1, pdr2, 1, true)))
          if (!pddr_is_empty (dependence_polyhedron (pdr1, pdr2, 1, true)))
            fprintf (file, "OS%d_D%d -> OS%d_D%d\n",
            fprintf (file, "OS%d_D%d -> OS%d_D%d\n",
                     pbb_index (pbb1), PDR_ID (pdr1),
                     pbb_index (pbb1), PDR_ID (pdr1),
                     pbb_index (pbb2), PDR_ID (pdr2));
                     pbb_index (pbb2), PDR_ID (pdr2));
}
}
 
 
/* Pretty print to FILE all the transformed data dependences of SCoP in
/* Pretty print to FILE all the transformed data dependences of SCoP in
   DOT format.  */
   DOT format.  */
 
 
static void
static void
dot_transformed_deps (FILE *file, scop_p scop)
dot_transformed_deps (FILE *file, scop_p scop)
{
{
  int i, j, k, l;
  int i, j, k, l;
  poly_bb_p pbb1, pbb2;
  poly_bb_p pbb1, pbb2;
  poly_dr_p pdr1, pdr2;
  poly_dr_p pdr1, pdr2;
 
 
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
  for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb1); i++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
    for (j = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), j, pbb2); j++)
      for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
      for (k = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb1), k, pdr1); k++)
        for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
        for (l = 0; VEC_iterate (poly_dr_p, PBB_DRS (pbb2), l, pdr2); l++)
          {
          {
            poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
            poly_ddr_p pddr = dependence_polyhedron (pdr1, pdr2, 1, false);
 
 
            if (!pddr_is_empty (pddr))
            if (!pddr_is_empty (pddr))
              fprintf (file, "TS%d_D%d -> TS%d_D%d\n",
              fprintf (file, "TS%d_D%d -> TS%d_D%d\n",
                       pbb_index (pbb1), PDR_ID (pdr1),
                       pbb_index (pbb1), PDR_ID (pdr1),
                       pbb_index (pbb2), PDR_ID (pdr2));
                       pbb_index (pbb2), PDR_ID (pdr2));
 
 
            free_poly_ddr (pddr);
            free_poly_ddr (pddr);
          }
          }
}
}
 
 
/* Pretty print to FILE all the data dependences of SCoP in DOT
/* Pretty print to FILE all the data dependences of SCoP in DOT
   format.  */
   format.  */
 
 
static void
static void
dot_deps_1 (FILE *file, scop_p scop)
dot_deps_1 (FILE *file, scop_p scop)
{
{
  fputs ("digraph all {\n", file);
  fputs ("digraph all {\n", file);
 
 
  dot_original_deps (file, scop);
  dot_original_deps (file, scop);
  dot_transformed_deps (file, scop);
  dot_transformed_deps (file, scop);
 
 
  fputs ("}\n\n", file);
  fputs ("}\n\n", file);
}
}
 
 
/* Display all the data dependences in SCoP using dotty.  */
/* Display all the data dependences in SCoP using dotty.  */
 
 
void
void
dot_deps (scop_p scop)
dot_deps (scop_p scop)
{
{
  /* When debugging, enable the following code.  This cannot be used
  /* When debugging, enable the following code.  This cannot be used
     in production compilers because it calls "system".  */
     in production compilers because it calls "system".  */
#if 0
#if 0
  int x;
  int x;
  FILE *stream = fopen ("/tmp/scopdeps.dot", "w");
  FILE *stream = fopen ("/tmp/scopdeps.dot", "w");
  gcc_assert (stream);
  gcc_assert (stream);
 
 
  dot_deps_1 (stream, scop);
  dot_deps_1 (stream, scop);
  fclose (stream);
  fclose (stream);
 
 
  x = system ("dotty /tmp/scopdeps.dot");
  x = system ("dotty /tmp/scopdeps.dot");
#else
#else
  dot_deps_1 (stderr, scop);
  dot_deps_1 (stderr, scop);
#endif
#endif
}
}
 
 
/* Display all the statement dependences in SCoP using dotty.  */
/* Display all the statement dependences in SCoP using dotty.  */
 
 
void
void
dot_deps_stmt (scop_p scop)
dot_deps_stmt (scop_p scop)
{
{
  /* When debugging, enable the following code.  This cannot be used
  /* When debugging, enable the following code.  This cannot be used
     in production compilers because it calls "system".  */
     in production compilers because it calls "system".  */
#if 0
#if 0
  int x;
  int x;
  FILE *stream = fopen ("/tmp/scopdeps.dot", "w");
  FILE *stream = fopen ("/tmp/scopdeps.dot", "w");
  gcc_assert (stream);
  gcc_assert (stream);
 
 
  dot_deps_stmt_1 (stream, scop);
  dot_deps_stmt_1 (stream, scop);
  fclose (stream);
  fclose (stream);
 
 
  x = system ("dotty /tmp/scopdeps.dot");
  x = system ("dotty /tmp/scopdeps.dot");
#else
#else
  dot_deps_stmt_1 (stderr, scop);
  dot_deps_stmt_1 (stderr, scop);
#endif
#endif
}
}
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.