diff options
author | Riyadh Baghdadi <baghdadi.mr@gmail.com> | 2010-09-30 21:16:10 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-09-30 21:16:10 +0000 |
commit | ae403f5abdb2691cfa6da23297486ce9a051e0b9 (patch) | |
tree | 6feb4aded8057ea7f65b1e0847fd6c2f973acaae /gcc/graphite-cloog-util.h | |
parent | c8c2d4e7d78dbc07c893410325c1733e13afe446 (diff) | |
download | gcc-ae403f5abdb2691cfa6da23297486ce9a051e0b9.zip gcc-ae403f5abdb2691cfa6da23297486ce9a051e0b9.tar.gz gcc-ae403f5abdb2691cfa6da23297486ce9a051e0b9.tar.bz2 |
Write OpenScop format.
2010-07-29 Riyadh Baghdadi <baghdadi.mr@gmail.com>
* graphite-cloog-util.c (openscop_print_cloog_matrix): New.
(openscop_print_polyhedron_matrix): New.
* graphite-cloog-util.h (openscop_print_polyhedron_matrix): Declared.
* graphite-poly.c (openscop_print_pdr_polyhedron): Same.
(openscop_print_pdr_powerset): New.
(openscop_print_powerset_matrix): New.
(openscop_print_scattering_function_1): New.
(print_scattering_function): Add support for scattering names and
OpenScop format.
(graphite_write_transforms): Remove.
(apply_poly_transforms): Updated to call print_scop.
(print_pdr_access_layout): Updated to support OpenScop format.
(print_pdr): Same.
(openscop_print_pbb_domain): New.
(print_pbb_body): Added a parameter to allow indicating that pbb_body is
not provided.
(print_pbb): Updated to call the new print_pbb_body.
(openscop_print_scop_context): New.
(print_scop_header): New.
(print_scop): Updated to call print_scop_header.
* graphite-poly.h: Document OpenScop format.
From-SVN: r164770
Diffstat (limited to 'gcc/graphite-cloog-util.h')
-rw-r--r-- | gcc/graphite-cloog-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/graphite-cloog-util.h b/gcc/graphite-cloog-util.h index d7758ce..62e2f94 100644 --- a/gcc/graphite-cloog-util.h +++ b/gcc/graphite-cloog-util.h @@ -32,5 +32,7 @@ CloogScattering *new_Cloog_Scattering_from_ppl_Polyhedron CloogDomain * new_Cloog_Domain_from_ppl_Pointset_Powerset (ppl_Pointset_Powerset_C_Polyhedron_t, int, CloogState *); void new_C_Polyhedron_from_Cloog_Matrix (ppl_Polyhedron_t *, CloogMatrix *); +void openscop_print_polyhedron_matrix (FILE *, ppl_const_Polyhedron_t, int, + int, int, int); #endif /* GRAPHITE_CLOOG_UTIL_H */ |