1 /* Translation of CLAST (CLooG AST) to Gimple.
2 Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <sebastian.pop@amd.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
26 #include <isl/union_map.h>
28 #include <isl/constraint.h>
31 #include <cloog/cloog.h>
32 #include <cloog/isl/domain.h>
36 #include "coretypes.h"
37 #include "diagnostic-core.h"
38 #include "tree-flow.h"
39 #include "tree-pass.h"
41 #include "tree-chrec.h"
42 #include "tree-data-ref.h"
43 #include "tree-scalar-evolution.h"
47 #include "cloog/cloog.h"
48 #include "graphite-poly.h"
49 #include "graphite-clast-to-gimple.h"
51 typedef const struct clast_expr
*clast_name_p
;
53 #ifndef CLOOG_LANGUAGE_C
54 #define CLOOG_LANGUAGE_C LANGUAGE_C
58 /* Converts a GMP constant VAL to a tree and returns it. */
61 gmp_cst_to_tree (tree type
, mpz_t val
)
63 tree t
= type
? type
: integer_type_node
;
69 di
= mpz_get_double_int (t
, tmp
, true);
72 return double_int_to_tree (t
, di
);
75 /* Sets RES to the min of V1 and V2. */
78 value_min (mpz_t res
, mpz_t v1
, mpz_t v2
)
80 if (mpz_cmp (v1
, v2
) < 0)
86 /* Sets RES to the max of V1 and V2. */
89 value_max (mpz_t res
, mpz_t v1
, mpz_t v2
)
91 if (mpz_cmp (v1
, v2
) < 0)
98 /* This flag is set when an error occurred during the translation of
100 static bool gloog_error
;
102 /* Verifies properties that GRAPHITE should maintain during translation. */
105 graphite_verify (void)
107 #ifdef ENABLE_CHECKING
108 verify_loop_structure ();
109 verify_loop_closed_ssa (true);
113 /* Stores the INDEX in a vector and the loop nesting LEVEL for a given
114 clast NAME. BOUND_ONE and BOUND_TWO represent the exact lower and
115 upper bounds that can be inferred from the polyhedral representation. */
117 typedef struct clast_name_index
{
120 mpz_t bound_one
, bound_two
;
122 /* If free_name is set, the content of name was allocated by us and needs
125 } *clast_name_index_p
;
127 /* Returns a pointer to a new element of type clast_name_index_p built
128 from NAME, INDEX, LEVEL, BOUND_ONE, and BOUND_TWO. */
130 static inline clast_name_index_p
131 new_clast_name_index (const char *name
, int index
, int level
,
132 mpz_t bound_one
, mpz_t bound_two
)
134 clast_name_index_p res
= XNEW (struct clast_name_index
);
135 char *new_name
= XNEWVEC (char, strlen (name
) + 1);
136 strcpy (new_name
, name
);
138 res
->name
= new_name
;
139 res
->free_name
= new_name
;
142 mpz_init (res
->bound_one
);
143 mpz_init (res
->bound_two
);
144 mpz_set (res
->bound_one
, bound_one
);
145 mpz_set (res
->bound_two
, bound_two
);
149 /* Free the memory taken by a clast_name_index struct. */
152 free_clast_name_index (void *ptr
)
154 struct clast_name_index
*c
= (struct clast_name_index
*) ptr
;
157 mpz_clear (c
->bound_one
);
158 mpz_clear (c
->bound_two
);
162 /* For a given clast NAME, returns -1 if NAME is not in the
163 INDEX_TABLE, otherwise returns the loop level for the induction
164 variable NAME, or if it is a parameter, the parameter number in the
165 vector of parameters. */
168 clast_name_to_level (clast_name_p name
, htab_t index_table
)
170 struct clast_name_index tmp
;
173 gcc_assert (name
->type
== clast_expr_name
);
174 tmp
.name
= ((const struct clast_name
*) name
)->name
;
175 tmp
.free_name
= NULL
;
177 slot
= htab_find_slot (index_table
, &tmp
, NO_INSERT
);
180 return ((struct clast_name_index
*) *slot
)->level
;
185 /* For a given clast NAME, returns -1 if it does not correspond to any
186 parameter, or otherwise, returns the index in the PARAMS or
187 SCATTERING_DIMENSIONS vector. */
190 clast_name_to_index (struct clast_name
*name
, htab_t index_table
)
192 struct clast_name_index tmp
;
195 tmp
.name
= ((const struct clast_name
*) name
)->name
;
196 tmp
.free_name
= NULL
;
198 slot
= htab_find_slot (index_table
, &tmp
, NO_INSERT
);
201 return ((struct clast_name_index
*) *slot
)->index
;
206 /* For a given clast NAME, initializes the lower and upper bounds BOUND_ONE
207 and BOUND_TWO stored in the INDEX_TABLE. Returns true when NAME has been
208 found in the INDEX_TABLE, false otherwise. */
211 clast_name_to_lb_ub (struct clast_name
*name
, htab_t index_table
,
212 mpz_t bound_one
, mpz_t bound_two
)
214 struct clast_name_index tmp
;
217 tmp
.name
= name
->name
;
218 tmp
.free_name
= NULL
;
220 slot
= htab_find_slot (index_table
, &tmp
, NO_INSERT
);
224 mpz_set (bound_one
, ((struct clast_name_index
*) *slot
)->bound_one
);
225 mpz_set (bound_two
, ((struct clast_name_index
*) *slot
)->bound_two
);
232 /* Records in INDEX_TABLE the INDEX and LEVEL for NAME. */
235 save_clast_name_index (htab_t index_table
, const char *name
,
236 int index
, int level
, mpz_t bound_one
, mpz_t bound_two
)
238 struct clast_name_index tmp
;
242 tmp
.free_name
= NULL
;
243 slot
= htab_find_slot (index_table
, &tmp
, INSERT
);
249 *slot
= new_clast_name_index (name
, index
, level
, bound_one
, bound_two
);
253 /* Computes a hash function for database element ELT. */
255 static inline hashval_t
256 clast_name_index_elt_info (const void *elt
)
258 const struct clast_name_index
*e
= ((const struct clast_name_index
*) elt
);
261 int length
= strlen (e
->name
);
264 for (i
= 0; i
< length
; ++i
)
265 hash
= hash
| (e
->name
[i
] << (i
% 4));
270 /* Compares database elements E1 and E2. */
273 eq_clast_name_indexes (const void *e1
, const void *e2
)
275 const struct clast_name_index
*elt1
= (const struct clast_name_index
*) e1
;
276 const struct clast_name_index
*elt2
= (const struct clast_name_index
*) e2
;
278 return strcmp (elt1
->name
, elt2
->name
) == 0;
283 /* NEWIVS_INDEX binds CLooG's scattering name to the index of the tree
284 induction variable in NEWIVS.
286 PARAMS_INDEX binds CLooG's parameter name to the index of the tree
287 parameter in PARAMS. */
289 typedef struct ivs_params
{
290 VEC (tree
, heap
) *params
, **newivs
;
291 htab_t newivs_index
, params_index
;
295 /* Returns the tree variable from the name NAME that was given in
296 Cloog representation. */
299 clast_name_to_gcc (struct clast_name
*name
, ivs_params_p ip
)
303 if (ip
->params
&& ip
->params_index
)
305 index
= clast_name_to_index (name
, ip
->params_index
);
308 return VEC_index (tree
, ip
->params
, index
);
311 gcc_assert (*(ip
->newivs
) && ip
->newivs_index
);
312 index
= clast_name_to_index (name
, ip
->newivs_index
);
313 gcc_assert (index
>= 0);
315 return VEC_index (tree
, *(ip
->newivs
), index
);
318 /* Returns the maximal precision type for expressions TYPE1 and TYPE2. */
321 max_precision_type (tree type1
, tree type2
)
323 enum machine_mode mode
;
324 int p1
, p2
, precision
;
327 if (POINTER_TYPE_P (type1
))
330 if (POINTER_TYPE_P (type2
))
333 if (TYPE_UNSIGNED (type1
)
334 && TYPE_UNSIGNED (type2
))
335 return TYPE_PRECISION (type1
) > TYPE_PRECISION (type2
) ? type1
: type2
;
337 p1
= TYPE_PRECISION (type1
);
338 p2
= TYPE_PRECISION (type2
);
341 precision
= TYPE_UNSIGNED (type1
) ? p1
* 2 : p1
;
343 precision
= TYPE_UNSIGNED (type2
) ? p2
* 2 : p2
;
345 if (precision
> BITS_PER_WORD
)
348 return integer_type_node
;
351 mode
= smallest_mode_for_size (precision
, MODE_INT
);
352 precision
= GET_MODE_PRECISION (mode
);
353 type
= build_nonstandard_integer_type (precision
, false);
358 return integer_type_node
;
365 clast_to_gcc_expression (tree
, struct clast_expr
*, ivs_params_p
);
367 /* Converts a Cloog reduction expression R with reduction operation OP
368 to a GCC expression tree of type TYPE. */
371 clast_to_gcc_expression_red (tree type
, enum tree_code op
,
372 struct clast_reduction
*r
, ivs_params_p ip
)
375 tree res
= clast_to_gcc_expression (type
, r
->elts
[0], ip
);
376 tree operand_type
= (op
== POINTER_PLUS_EXPR
) ? sizetype
: type
;
378 for (i
= 1; i
< r
->n
; i
++)
380 tree t
= clast_to_gcc_expression (operand_type
, r
->elts
[i
], ip
);
381 res
= fold_build2 (op
, type
, res
, t
);
387 /* Converts a Cloog AST expression E back to a GCC expression tree of
391 clast_to_gcc_expression (tree type
, struct clast_expr
*e
, ivs_params_p ip
)
395 case clast_expr_name
:
397 return clast_name_to_gcc ((struct clast_name
*) e
, ip
);
399 case clast_expr_term
:
401 struct clast_term
*t
= (struct clast_term
*) e
;
405 if (mpz_cmp_si (t
->val
, 1) == 0)
407 tree name
= clast_to_gcc_expression (type
, t
->var
, ip
);
409 if (POINTER_TYPE_P (TREE_TYPE (name
)) != POINTER_TYPE_P (type
))
410 name
= convert_to_ptrofftype (name
);
412 name
= fold_convert (type
, name
);
416 else if (mpz_cmp_si (t
->val
, -1) == 0)
418 tree name
= clast_to_gcc_expression (type
, t
->var
, ip
);
420 if (POINTER_TYPE_P (TREE_TYPE (name
)) != POINTER_TYPE_P (type
))
421 name
= convert_to_ptrofftype (name
);
423 name
= fold_convert (type
, name
);
425 return fold_build1 (NEGATE_EXPR
, type
, name
);
429 tree name
= clast_to_gcc_expression (type
, t
->var
, ip
);
430 tree cst
= gmp_cst_to_tree (type
, t
->val
);
432 if (POINTER_TYPE_P (TREE_TYPE (name
)) != POINTER_TYPE_P (type
))
433 name
= convert_to_ptrofftype (name
);
435 name
= fold_convert (type
, name
);
437 if (!POINTER_TYPE_P (type
))
438 return fold_build2 (MULT_EXPR
, type
, cst
, name
);
445 return gmp_cst_to_tree (type
, t
->val
);
450 struct clast_reduction
*r
= (struct clast_reduction
*) e
;
455 return clast_to_gcc_expression_red
456 (type
, POINTER_TYPE_P (type
) ? POINTER_PLUS_EXPR
: PLUS_EXPR
,
460 return clast_to_gcc_expression_red (type
, MIN_EXPR
, r
, ip
);
463 return clast_to_gcc_expression_red (type
, MAX_EXPR
, r
, ip
);
473 struct clast_binary
*b
= (struct clast_binary
*) e
;
474 struct clast_expr
*lhs
= (struct clast_expr
*) b
->LHS
;
475 tree tl
= clast_to_gcc_expression (type
, lhs
, ip
);
476 tree tr
= gmp_cst_to_tree (type
, b
->RHS
);
481 return fold_build2 (FLOOR_DIV_EXPR
, type
, tl
, tr
);
484 return fold_build2 (CEIL_DIV_EXPR
, type
, tl
, tr
);
487 return fold_build2 (EXACT_DIV_EXPR
, type
, tl
, tr
);
490 return fold_build2 (TRUNC_MOD_EXPR
, type
, tl
, tr
);
504 /* Return a type that could represent the values between BOUND_ONE and
508 type_for_interval (mpz_t bound_one
, mpz_t bound_two
)
512 enum machine_mode mode
;
514 int precision
= MAX (mpz_sizeinbase (bound_one
, 2),
515 mpz_sizeinbase (bound_two
, 2));
517 if (precision
> BITS_PER_WORD
)
520 return integer_type_node
;
523 if (mpz_cmp (bound_one
, bound_two
) <= 0)
524 unsigned_p
= (mpz_sgn (bound_one
) >= 0);
526 unsigned_p
= (mpz_sgn (bound_two
) >= 0);
528 mode
= smallest_mode_for_size (precision
, MODE_INT
);
529 wider_precision
= GET_MODE_PRECISION (mode
);
531 /* As we want to generate signed types as much as possible, try to
532 fit the interval [bound_one, bound_two] in a signed type. For example,
533 supposing that we have the interval [0, 100], instead of
534 generating unsigned char, we want to generate a signed char. */
535 if (unsigned_p
&& precision
< wider_precision
)
538 type
= build_nonstandard_integer_type (wider_precision
, unsigned_p
);
543 return integer_type_node
;
549 /* Return a type that could represent the integer value VAL, or
550 otherwise return NULL_TREE. */
553 type_for_value (mpz_t val
)
555 return type_for_interval (val
, val
);
559 type_for_clast_expr (struct clast_expr
*, ivs_params_p
, mpz_t
, mpz_t
);
561 /* Return the type for the clast_term T. Initializes BOUND_ONE and
562 BOUND_TWO to the bounds of the term. */
565 type_for_clast_term (struct clast_term
*t
, ivs_params_p ip
, mpz_t bound_one
,
569 gcc_assert (t
->expr
.type
== clast_expr_term
);
573 mpz_set (bound_one
, t
->val
);
574 mpz_set (bound_two
, t
->val
);
575 return type_for_value (t
->val
);
578 type
= type_for_clast_expr (t
->var
, ip
, bound_one
, bound_two
);
580 mpz_mul (bound_one
, bound_one
, t
->val
);
581 mpz_mul (bound_two
, bound_two
, t
->val
);
583 return max_precision_type (type
, type_for_interval (bound_one
, bound_two
));
586 /* Return the type for the clast_reduction R. Initializes BOUND_ONE
587 and BOUND_TWO to the bounds of the reduction expression. */
590 type_for_clast_red (struct clast_reduction
*r
, ivs_params_p ip
,
591 mpz_t bound_one
, mpz_t bound_two
)
594 tree type
= type_for_clast_expr (r
->elts
[0], ip
, bound_one
, bound_two
);
595 mpz_t b1
, b2
, m1
, m2
;
605 for (i
= 1; i
< r
->n
; i
++)
607 tree t
= type_for_clast_expr (r
->elts
[i
], ip
, b1
, b2
);
608 type
= max_precision_type (type
, t
);
613 value_min (m1
, bound_one
, bound_two
);
614 value_min (m2
, b1
, b2
);
615 mpz_add (bound_one
, m1
, m2
);
617 value_max (m1
, bound_one
, bound_two
);
618 value_max (m2
, b1
, b2
);
619 mpz_add (bound_two
, m1
, m2
);
623 value_min (bound_one
, bound_one
, bound_two
);
624 value_min (bound_two
, b1
, b2
);
628 value_max (bound_one
, bound_one
, bound_two
);
629 value_max (bound_two
, b1
, b2
);
643 /* Return a type that can represent the result of the reduction. */
644 return max_precision_type (type
, type_for_interval (bound_one
, bound_two
));
647 /* Return the type for the clast_binary B used in STMT. */
650 type_for_clast_bin (struct clast_binary
*b
, ivs_params_p ip
, mpz_t bound_one
,
654 tree l
= type_for_clast_expr ((struct clast_expr
*) b
->LHS
, ip
,
655 bound_one
, bound_two
);
656 tree r
= type_for_value (b
->RHS
);
657 tree type
= max_precision_type (l
, r
);
662 mpz_mdiv (bound_one
, bound_one
, b
->RHS
);
663 mpz_mdiv (bound_two
, bound_two
, b
->RHS
);
667 mpz_mdiv (bound_one
, bound_one
, b
->RHS
);
668 mpz_mdiv (bound_two
, bound_two
, b
->RHS
);
670 mpz_add (bound_one
, bound_one
, one
);
671 mpz_add (bound_two
, bound_two
, one
);
676 mpz_div (bound_one
, bound_one
, b
->RHS
);
677 mpz_div (bound_two
, bound_two
, b
->RHS
);
681 mpz_mod (bound_one
, bound_one
, b
->RHS
);
682 mpz_mod (bound_two
, bound_two
, b
->RHS
);
689 /* Return a type that can represent the result of the reduction. */
690 return max_precision_type (type
, type_for_interval (bound_one
, bound_two
));
693 /* Return the type for the clast_name NAME. Initializes BOUND_ONE and
694 BOUND_TWO to the bounds of the term. */
697 type_for_clast_name (struct clast_name
*name
, ivs_params_p ip
, mpz_t bound_one
,
702 if (ip
->params
&& ip
->params_index
)
703 found
= clast_name_to_lb_ub (name
, ip
->params_index
, bound_one
, bound_two
);
707 gcc_assert (*(ip
->newivs
) && ip
->newivs_index
);
708 found
= clast_name_to_lb_ub (name
, ip
->newivs_index
, bound_one
,
713 return TREE_TYPE (clast_name_to_gcc (name
, ip
));
716 /* Returns the type for the CLAST expression E when used in statement
720 type_for_clast_expr (struct clast_expr
*e
, ivs_params_p ip
, mpz_t bound_one
,
725 case clast_expr_term
:
726 return type_for_clast_term ((struct clast_term
*) e
, ip
,
727 bound_one
, bound_two
);
730 return type_for_clast_red ((struct clast_reduction
*) e
, ip
,
731 bound_one
, bound_two
);
734 return type_for_clast_bin ((struct clast_binary
*) e
, ip
,
735 bound_one
, bound_two
);
737 case clast_expr_name
:
738 return type_for_clast_name ((struct clast_name
*) e
, ip
,
739 bound_one
, bound_two
);
748 /* Returns true if the clast expression E is a constant with VALUE. */
751 clast_expr_const_value_p (struct clast_expr
*e
, int value
)
753 struct clast_term
*t
;
754 if (e
->type
!= clast_expr_term
)
756 t
= (struct clast_term
*)e
;
759 return 0 == mpz_cmp_si (t
->val
, value
);
762 /* Translates a clast equation CLEQ to a tree. */
765 graphite_translate_clast_equation (struct clast_equation
*cleq
,
769 tree type
, lhs
, rhs
, ltype
, rtype
;
770 mpz_t bound_one
, bound_two
;
771 struct clast_expr
*clhs
, *crhs
;
777 else if (cleq
->sign
> 0)
782 /* Special cases to reduce range of arguments to hopefully
783 don't need types with larger precision than the input. */
784 if (crhs
->type
== clast_expr_red
787 struct clast_reduction
*r
= (struct clast_reduction
*) crhs
;
788 /* X >= A+1 --> X > A and
789 X <= A-1 --> X < A */
791 && r
->type
== clast_red_sum
792 && clast_expr_const_value_p (r
->elts
[1], comp
== GE_EXPR
? 1 : -1))
795 comp
= comp
== GE_EXPR
? GT_EXPR
: LT_EXPR
;
799 mpz_init (bound_one
);
800 mpz_init (bound_two
);
802 ltype
= type_for_clast_expr (clhs
, ip
, bound_one
, bound_two
);
803 rtype
= type_for_clast_expr (crhs
, ip
, bound_one
, bound_two
);
805 mpz_clear (bound_one
);
806 mpz_clear (bound_two
);
807 type
= max_precision_type (ltype
, rtype
);
809 lhs
= clast_to_gcc_expression (type
, clhs
, ip
);
810 rhs
= clast_to_gcc_expression (type
, crhs
, ip
);
812 return fold_build2 (comp
, boolean_type_node
, lhs
, rhs
);
815 /* Creates the test for the condition in STMT. */
818 graphite_create_guard_cond_expr (struct clast_guard
*stmt
,
824 for (i
= 0; i
< stmt
->n
; i
++)
826 tree eq
= graphite_translate_clast_equation (&stmt
->eq
[i
], ip
);
829 cond
= fold_build2 (TRUTH_AND_EXPR
, TREE_TYPE (eq
), cond
, eq
);
837 /* Creates a new if region corresponding to Cloog's guard. */
840 graphite_create_new_guard (edge entry_edge
, struct clast_guard
*stmt
,
843 tree cond_expr
= graphite_create_guard_cond_expr (stmt
, ip
);
844 edge exit_edge
= create_empty_if_region_on_edge (entry_edge
, cond_expr
);
848 /* Compute the lower bound LOW and upper bound UP for the parameter
849 PARAM in scop SCOP based on the constraints in the context. */
852 compute_bounds_for_param (scop_p scop
, int param
, mpz_t low
, mpz_t up
)
855 isl_aff
*aff
= isl_aff_zero_on_domain
856 (isl_local_space_from_space (isl_set_get_space (scop
->context
)));
858 aff
= isl_aff_add_coefficient_si (aff
, isl_dim_param
, param
, 1);
861 isl_set_min (scop
->context
, aff
, &v
);
862 isl_int_get_gmp (v
, low
);
863 isl_set_max (scop
->context
, aff
, &v
);
864 isl_int_get_gmp (v
, up
);
869 /* Compute the lower bound LOW and upper bound UP for the induction
870 variable of loop LOOP.
872 FIXME: This one is not entirely correct, as min/max expressions in the
873 calculation can yield to incorrect results. To be completely
874 correct, we need to evaluate each subexpression generated by
875 CLooG. CLooG does not yet support this, so this is as good as
879 compute_bounds_for_loop (struct clast_for
*loop
, mpz_t low
, mpz_t up
)
883 isl_local_space
*local_space
;
885 enum isl_lp_result lp_result
;
887 domain
= isl_set_copy (isl_set_from_cloog_domain (loop
->domain
));
888 local_space
= isl_local_space_from_space (isl_set_get_space (domain
));
889 dimension
= isl_aff_zero_on_domain (local_space
);
890 dimension
= isl_aff_add_coefficient_si (dimension
, isl_dim_in
,
891 isl_set_dim (domain
, isl_dim_set
) - 1,
894 isl_int_init (isl_value
);
896 lp_result
= isl_set_min (domain
, dimension
, &isl_value
);
897 assert (lp_result
== isl_lp_ok
);
898 isl_int_get_gmp (isl_value
, low
);
900 lp_result
= isl_set_max (domain
, dimension
, &isl_value
);
901 assert (lp_result
== isl_lp_ok
);
902 isl_int_get_gmp (isl_value
, up
);
904 isl_int_clear (isl_value
);
905 isl_set_free (domain
);
906 isl_aff_free (dimension
);
909 /* Returns the type for the induction variable for the loop translated
913 type_for_clast_for (struct clast_for
*stmt_for
, ivs_params_p ip
)
915 mpz_t bound_one
, bound_two
;
916 tree lb_type
, ub_type
;
918 mpz_init (bound_one
);
919 mpz_init (bound_two
);
921 lb_type
= type_for_clast_expr (stmt_for
->LB
, ip
, bound_one
, bound_two
);
922 ub_type
= type_for_clast_expr (stmt_for
->UB
, ip
, bound_one
, bound_two
);
924 mpz_clear (bound_one
);
925 mpz_clear (bound_two
);
927 return max_precision_type (lb_type
, ub_type
);
930 /* Creates a new LOOP corresponding to Cloog's STMT. Inserts an
931 induction variable for the new LOOP. New LOOP is attached to CFG
932 starting at ENTRY_EDGE. LOOP is inserted into the loop tree and
933 becomes the child loop of the OUTER_LOOP. NEWIVS_INDEX binds
934 CLooG's scattering name to the induction variable created for the
935 loop of STMT. The new induction variable is inserted in the NEWIVS
936 vector and is of type TYPE. */
939 graphite_create_new_loop (edge entry_edge
, struct clast_for
*stmt
,
940 loop_p outer
, tree type
, tree lb
, tree ub
,
941 int level
, ivs_params_p ip
)
945 tree stride
= gmp_cst_to_tree (type
, stmt
->stride
);
946 tree ivvar
= create_tmp_var (type
, "graphite_IV");
947 tree iv
, iv_after_increment
;
948 loop_p loop
= create_empty_loop_on_edge
949 (entry_edge
, lb
, stride
, ub
, ivvar
, &iv
, &iv_after_increment
,
950 outer
? outer
: entry_edge
->src
->loop_father
);
954 compute_bounds_for_loop (stmt
, low
, up
);
955 save_clast_name_index (ip
->newivs_index
, stmt
->iterator
,
956 VEC_length (tree
, *(ip
->newivs
)), level
, low
, up
);
959 VEC_safe_push (tree
, heap
, *(ip
->newivs
), iv
);
963 /* Inserts in iv_map a tuple (OLD_LOOP->num, NEW_NAME) for the
964 induction variables of the loops around GBB in SESE. */
967 build_iv_mapping (VEC (tree
, heap
) *iv_map
, struct clast_user_stmt
*user_stmt
,
970 struct clast_stmt
*t
;
972 CloogStatement
*cs
= user_stmt
->statement
;
973 poly_bb_p pbb
= (poly_bb_p
) cs
->usr
;
974 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
975 mpz_t bound_one
, bound_two
;
977 mpz_init (bound_one
);
978 mpz_init (bound_two
);
980 for (t
= user_stmt
->substitutions
; t
; t
= t
->next
, depth
++)
982 struct clast_expr
*expr
= (struct clast_expr
*)
983 ((struct clast_assignment
*)t
)->RHS
;
984 tree type
= type_for_clast_expr (expr
, ip
, bound_one
, bound_two
);
985 tree new_name
= clast_to_gcc_expression (type
, expr
, ip
);
986 loop_p old_loop
= gbb_loop_at_index (gbb
, ip
->region
, depth
);
988 VEC_replace (tree
, iv_map
, old_loop
->num
, new_name
);
991 mpz_clear (bound_one
);
992 mpz_clear (bound_two
);
995 /* Construct bb_pbb_def with BB and PBB. */
998 new_bb_pbb_def (basic_block bb
, poly_bb_p pbb
)
1000 bb_pbb_def
*bb_pbb_p
;
1002 bb_pbb_p
= XNEW (bb_pbb_def
);
1004 bb_pbb_p
->pbb
= pbb
;
1009 /* Mark BB with it's relevant PBB via hashing table BB_PBB_MAPPING. */
1012 mark_bb_with_pbb (poly_bb_p pbb
, basic_block bb
, htab_t bb_pbb_mapping
)
1018 x
= htab_find_slot (bb_pbb_mapping
, &tmp
, INSERT
);
1021 *x
= new_bb_pbb_def (bb
, pbb
);
1024 /* Find BB's related poly_bb_p in hash table BB_PBB_MAPPING. */
1027 find_pbb_via_hash (htab_t bb_pbb_mapping
, basic_block bb
)
1033 slot
= htab_find_slot (bb_pbb_mapping
, &tmp
, NO_INSERT
);
1036 return ((bb_pbb_def
*) *slot
)->pbb
;
1041 /* Return the scop of the loop and initialize PBBS the set of
1042 poly_bb_p that belong to the LOOP. BB_PBB_MAPPING is a map created
1043 by the CLAST code generator between a generated basic_block and its
1044 related poly_bb_p. */
1047 get_loop_body_pbbs (loop_p loop
, htab_t bb_pbb_mapping
,
1048 VEC (poly_bb_p
, heap
) **pbbs
)
1051 basic_block
*bbs
= get_loop_body_in_dom_order (loop
);
1054 for (i
= 0; i
< loop
->num_nodes
; i
++)
1056 poly_bb_p pbb
= find_pbb_via_hash (bb_pbb_mapping
, bbs
[i
]);
1061 scop
= PBB_SCOP (pbb
);
1062 VEC_safe_push (poly_bb_p
, heap
, *pbbs
, pbb
);
1069 /* Translates a clast user statement STMT to gimple.
1071 - NEXT_E is the edge where new generated code should be attached.
1072 - CONTEXT_LOOP is the loop in which the generated code will be placed
1073 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1076 translate_clast_user (struct clast_user_stmt
*stmt
, edge next_e
,
1077 htab_t bb_pbb_mapping
, ivs_params_p ip
)
1081 poly_bb_p pbb
= (poly_bb_p
) stmt
->statement
->usr
;
1082 gimple_bb_p gbb
= PBB_BLACK_BOX (pbb
);
1083 VEC (tree
, heap
) *iv_map
;
1085 if (GBB_BB (gbb
) == ENTRY_BLOCK_PTR
)
1088 nb_loops
= number_of_loops ();
1089 iv_map
= VEC_alloc (tree
, heap
, nb_loops
);
1090 for (i
= 0; i
< nb_loops
; i
++)
1091 VEC_quick_push (tree
, iv_map
, NULL_TREE
);
1093 build_iv_mapping (iv_map
, stmt
, ip
);
1094 next_e
= copy_bb_and_scalar_dependences (GBB_BB (gbb
), ip
->region
,
1095 next_e
, iv_map
, &gloog_error
);
1096 VEC_free (tree
, heap
, iv_map
);
1098 new_bb
= next_e
->src
;
1099 mark_bb_with_pbb (pbb
, new_bb
, bb_pbb_mapping
);
1100 mark_virtual_operands_for_renaming (cfun
);
1101 update_ssa (TODO_update_ssa
);
1106 /* Creates a new if region protecting the loop to be executed, if the execution
1107 count is zero (lb > ub). */
1110 graphite_create_new_loop_guard (edge entry_edge
, struct clast_for
*stmt
,
1111 tree
*type
, tree
*lb
, tree
*ub
,
1117 *type
= type_for_clast_for (stmt
, ip
);
1118 *lb
= clast_to_gcc_expression (*type
, stmt
->LB
, ip
);
1119 *ub
= clast_to_gcc_expression (*type
, stmt
->UB
, ip
);
1121 /* When ub is simply a constant or a parameter, use lb <= ub. */
1122 if (TREE_CODE (*ub
) == INTEGER_CST
|| TREE_CODE (*ub
) == SSA_NAME
)
1123 cond_expr
= fold_build2 (LE_EXPR
, boolean_type_node
, *lb
, *ub
);
1126 tree one
= (POINTER_TYPE_P (*type
)
1127 ? convert_to_ptrofftype (integer_one_node
)
1128 : fold_convert (*type
, integer_one_node
));
1129 /* Adding +1 and using LT_EXPR helps with loop latches that have a
1130 loop iteration count of "PARAMETER - 1". For PARAMETER == 0 this becomes
1131 2^k-1 due to integer overflow, and the condition lb <= ub is true,
1132 even if we do not want this. However lb < ub + 1 is false, as
1134 tree ub_one
= fold_build2 (POINTER_TYPE_P (*type
) ? POINTER_PLUS_EXPR
1135 : PLUS_EXPR
, *type
, *ub
, one
);
1137 cond_expr
= fold_build2 (LT_EXPR
, boolean_type_node
, *lb
, ub_one
);
1140 exit_edge
= create_empty_if_region_on_edge (entry_edge
, cond_expr
);
1146 translate_clast (loop_p
, struct clast_stmt
*, edge
, htab_t
, int, ivs_params_p
);
1148 /* Create the loop for a clast for statement.
1150 - NEXT_E is the edge where new generated code should be attached.
1151 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1154 translate_clast_for_loop (loop_p context_loop
, struct clast_for
*stmt
,
1155 edge next_e
, htab_t bb_pbb_mapping
, int level
,
1156 tree type
, tree lb
, tree ub
, ivs_params_p ip
)
1158 struct loop
*loop
= graphite_create_new_loop (next_e
, stmt
, context_loop
,
1159 type
, lb
, ub
, level
, ip
);
1160 edge last_e
= single_exit (loop
);
1161 edge to_body
= single_succ_edge (loop
->header
);
1162 basic_block after
= to_body
->dest
;
1164 /* Create a basic block for loop close phi nodes. */
1165 last_e
= single_succ_edge (split_edge (last_e
));
1167 /* Translate the body of the loop. */
1168 next_e
= translate_clast (loop
, stmt
->body
, to_body
, bb_pbb_mapping
,
1170 redirect_edge_succ_nodup (next_e
, after
);
1171 set_immediate_dominator (CDI_DOMINATORS
, next_e
->dest
, next_e
->src
);
1173 if (flag_loop_parallelize_all
1174 && loop_is_parallel_p (loop
, bb_pbb_mapping
, level
))
1175 loop
->can_be_parallel
= true;
1180 /* Translates a clast for statement STMT to gimple. First a guard is created
1181 protecting the loop, if it is executed zero times. In this guard we create
1182 the real loop structure.
1184 - NEXT_E is the edge where new generated code should be attached.
1185 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1188 translate_clast_for (loop_p context_loop
, struct clast_for
*stmt
, edge next_e
,
1189 htab_t bb_pbb_mapping
, int level
, ivs_params_p ip
)
1192 edge last_e
= graphite_create_new_loop_guard (next_e
, stmt
, &type
,
1194 edge true_e
= get_true_edge_from_guard_bb (next_e
->dest
);
1196 translate_clast_for_loop (context_loop
, stmt
, true_e
, bb_pbb_mapping
, level
,
1201 /* Translates a clast assignment STMT to gimple.
1203 - NEXT_E is the edge where new generated code should be attached.
1204 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1207 translate_clast_assignment (struct clast_assignment
*stmt
, edge next_e
,
1208 int level
, ivs_params_p ip
)
1211 mpz_t bound_one
, bound_two
;
1212 tree type
, new_name
, var
;
1213 edge res
= single_succ_edge (split_edge (next_e
));
1214 struct clast_expr
*expr
= (struct clast_expr
*) stmt
->RHS
;
1216 mpz_init (bound_one
);
1217 mpz_init (bound_two
);
1218 type
= type_for_clast_expr (expr
, ip
, bound_one
, bound_two
);
1219 var
= create_tmp_var (type
, "graphite_var");
1220 new_name
= force_gimple_operand (clast_to_gcc_expression (type
, expr
, ip
),
1224 gsi_insert_seq_on_edge (next_e
, stmts
);
1225 gsi_commit_edge_inserts ();
1228 save_clast_name_index (ip
->newivs_index
, stmt
->LHS
,
1229 VEC_length (tree
, *(ip
->newivs
)), level
,
1230 bound_one
, bound_two
);
1231 VEC_safe_push (tree
, heap
, *(ip
->newivs
), new_name
);
1233 mpz_clear (bound_one
);
1234 mpz_clear (bound_two
);
1239 /* Translates a clast guard statement STMT to gimple.
1241 - NEXT_E is the edge where new generated code should be attached.
1242 - CONTEXT_LOOP is the loop in which the generated code will be placed
1243 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1246 translate_clast_guard (loop_p context_loop
, struct clast_guard
*stmt
,
1247 edge next_e
, htab_t bb_pbb_mapping
, int level
,
1250 edge last_e
= graphite_create_new_guard (next_e
, stmt
, ip
);
1251 edge true_e
= get_true_edge_from_guard_bb (next_e
->dest
);
1253 translate_clast (context_loop
, stmt
->then
, true_e
, bb_pbb_mapping
, level
, ip
);
1257 /* Translates a CLAST statement STMT to GCC representation in the
1260 - NEXT_E is the edge where new generated code should be attached.
1261 - CONTEXT_LOOP is the loop in which the generated code will be placed
1262 - BB_PBB_MAPPING is is a basic_block and it's related poly_bb_p mapping. */
1265 translate_clast (loop_p context_loop
, struct clast_stmt
*stmt
, edge next_e
,
1266 htab_t bb_pbb_mapping
, int level
, ivs_params_p ip
)
1271 if (CLAST_STMT_IS_A (stmt
, stmt_root
))
1274 else if (CLAST_STMT_IS_A (stmt
, stmt_user
))
1275 next_e
= translate_clast_user ((struct clast_user_stmt
*) stmt
,
1276 next_e
, bb_pbb_mapping
, ip
);
1278 else if (CLAST_STMT_IS_A (stmt
, stmt_for
))
1279 next_e
= translate_clast_for (context_loop
, (struct clast_for
*) stmt
,
1280 next_e
, bb_pbb_mapping
, level
, ip
);
1282 else if (CLAST_STMT_IS_A (stmt
, stmt_guard
))
1283 next_e
= translate_clast_guard (context_loop
, (struct clast_guard
*) stmt
,
1284 next_e
, bb_pbb_mapping
, level
, ip
);
1286 else if (CLAST_STMT_IS_A (stmt
, stmt_block
))
1287 next_e
= translate_clast (context_loop
, ((struct clast_block
*) stmt
)->body
,
1288 next_e
, bb_pbb_mapping
, level
, ip
);
1290 else if (CLAST_STMT_IS_A (stmt
, stmt_ass
))
1291 next_e
= translate_clast_assignment ((struct clast_assignment
*) stmt
,
1296 recompute_all_dominators ();
1299 return translate_clast (context_loop
, stmt
->next
, next_e
, bb_pbb_mapping
,
1303 /* Add parameter and iterator names to the CloogUnionDomain. */
1305 static CloogUnionDomain
*
1306 add_names_to_union_domain (scop_p scop
, CloogUnionDomain
*union_domain
,
1307 int nb_scattering_dims
, htab_t params_index
)
1309 sese region
= SCOP_REGION (scop
);
1311 int nb_iterators
= scop_max_loop_depth (scop
);
1312 int nb_parameters
= VEC_length (tree
, SESE_PARAMS (region
));
1313 mpz_t bound_one
, bound_two
;
1315 mpz_init (bound_one
);
1316 mpz_init (bound_two
);
1318 for (i
= 0; i
< nb_parameters
; i
++)
1320 tree param
= VEC_index (tree
, SESE_PARAMS (region
), i
);
1321 const char *name
= get_name (param
);
1328 len
= strlen (name
);
1330 parameter
= XNEWVEC (char, len
+ 1);
1331 snprintf (parameter
, len
, "%s_%d", name
, SSA_NAME_VERSION (param
));
1332 save_clast_name_index (params_index
, parameter
, i
, i
, bound_one
,
1334 union_domain
= cloog_union_domain_set_name (union_domain
, CLOOG_PARAM
, i
,
1336 compute_bounds_for_param (scop
, i
, bound_one
, bound_two
);
1340 mpz_clear (bound_one
);
1341 mpz_clear (bound_two
);
1343 for (i
= 0; i
< nb_iterators
; i
++)
1347 iterator
= XNEWVEC (char, len
);
1348 snprintf (iterator
, len
, "git_%d", i
);
1349 union_domain
= cloog_union_domain_set_name (union_domain
, CLOOG_ITER
, i
,
1354 for (i
= 0; i
< nb_scattering_dims
; i
++)
1358 scattering
= XNEWVEC (char, len
);
1359 snprintf (scattering
, len
, "scat_%d", i
);
1360 union_domain
= cloog_union_domain_set_name (union_domain
, CLOOG_SCAT
, i
,
1365 return union_domain
;
1368 /* Initialize a CLooG input file. */
1371 init_cloog_input_file (int scop_number
)
1373 FILE *graphite_out_file
;
1374 int len
= strlen (dump_base_name
);
1375 char *dumpname
= XNEWVEC (char, len
+ 25);
1376 char *s_scop_number
= XNEWVEC (char, 15);
1378 memcpy (dumpname
, dump_base_name
, len
+ 1);
1379 strip_off_ending (dumpname
, len
);
1380 sprintf (s_scop_number
, ".%d", scop_number
);
1381 strcat (dumpname
, s_scop_number
);
1382 strcat (dumpname
, ".cloog");
1383 graphite_out_file
= fopen (dumpname
, "w+b");
1385 if (graphite_out_file
== 0)
1386 fatal_error ("can%'t open %s for writing: %m", dumpname
);
1390 return graphite_out_file
;
1393 /* Extend the scattering to NEW_DIMS scattering dimensions. */
1396 isl_map
*extend_scattering(isl_map
*scattering
, int new_dims
)
1400 isl_basic_map
*change_scattering
;
1401 isl_map
*change_scattering_map
;
1403 old_dims
= isl_map_dim (scattering
, isl_dim_out
);
1405 space
= isl_space_alloc (isl_map_get_ctx (scattering
), 0, old_dims
, new_dims
);
1406 change_scattering
= isl_basic_map_universe (isl_space_copy (space
));
1408 for (i
= 0; i
< old_dims
; i
++)
1411 c
= isl_equality_alloc
1412 (isl_local_space_from_space (isl_space_copy (space
)));
1413 isl_constraint_set_coefficient_si (c
, isl_dim_in
, i
, 1);
1414 isl_constraint_set_coefficient_si (c
, isl_dim_out
, i
, -1);
1415 change_scattering
= isl_basic_map_add_constraint (change_scattering
, c
);
1418 for (i
= old_dims
; i
< new_dims
; i
++)
1421 c
= isl_equality_alloc
1422 (isl_local_space_from_space (isl_space_copy (space
)));
1423 isl_constraint_set_coefficient_si (c
, isl_dim_out
, i
, 1);
1424 change_scattering
= isl_basic_map_add_constraint (change_scattering
, c
);
1427 change_scattering_map
= isl_map_from_basic_map (change_scattering
);
1428 change_scattering_map
= isl_map_align_params (change_scattering_map
, space
);
1429 return isl_map_apply_range (scattering
, change_scattering_map
);
1432 /* Build cloog union domain for SCoP. */
1434 static CloogUnionDomain
*
1435 build_cloog_union_domain (scop_p scop
, int nb_scattering_dims
)
1439 CloogUnionDomain
*union_domain
=
1440 cloog_union_domain_alloc (scop_nb_params (scop
));
1442 FOR_EACH_VEC_ELT (poly_bb_p
, SCOP_BBS (scop
), i
, pbb
)
1444 CloogDomain
*domain
;
1445 CloogScattering
*scattering
;
1447 /* Dead code elimination: when the domain of a PBB is empty,
1448 don't generate code for the PBB. */
1449 if (isl_set_is_empty(pbb
->domain
))
1452 domain
= cloog_domain_from_isl_set(isl_set_copy(pbb
->domain
));
1453 scattering
= cloog_scattering_from_isl_map(extend_scattering(isl_map_copy(pbb
->transformed
),
1454 nb_scattering_dims
));
1456 union_domain
= cloog_union_domain_add_domain (union_domain
, "", domain
,
1460 return union_domain
;
1463 /* Return the options that will be used in GLOOG. */
1465 static CloogOptions
*
1466 set_cloog_options (void)
1468 CloogOptions
*options
= cloog_options_malloc (cloog_state
);
1470 /* Change cloog output language to C. If we do use FORTRAN instead, cloog
1471 will stop e.g. with "ERROR: unbounded loops not allowed in FORTRAN.", if
1472 we pass an incomplete program to cloog. */
1473 options
->language
= CLOOG_LANGUAGE_C
;
1475 /* Enable complex equality spreading: removes dummy statements
1476 (assignments) in the generated code which repeats the
1477 substitution equations for statements. This is useless for
1481 /* Silence CLooG to avoid failing tests due to debug output to stderr. */
1484 /* Allow cloog to build strides with a stride width different to one.
1485 This example has stride = 4:
1487 for (i = 0; i < 20; i += 4)
1489 options
->strides
= 1;
1491 /* We want the clast to provide the iteration domains of the executed loops.
1492 This allows us to derive minimal/maximal values for the induction
1494 options
->save_domains
= 1;
1496 /* Disable optimizations and make cloog generate source code closer to the
1497 input. This is useful for debugging, but later we want the optimized
1500 XXX: We can not disable optimizations, as loop blocking is not working
1505 options
->l
= INT_MAX
;
1511 /* Prints STMT to STDERR. */
1514 print_clast_stmt (FILE *file
, struct clast_stmt
*stmt
)
1516 CloogOptions
*options
= set_cloog_options ();
1518 clast_pprint (file
, stmt
, 0, options
);
1519 cloog_options_free (options
);
1522 /* Prints STMT to STDERR. */
1525 debug_clast_stmt (struct clast_stmt
*stmt
)
1527 print_clast_stmt (stderr
, stmt
);
1530 /* Get the maximal number of scattering dimensions in the scop SCOP. */
1533 int get_max_scattering_dimensions (scop_p scop
)
1537 int scattering_dims
= 0;
1539 FOR_EACH_VEC_ELT (poly_bb_p
, SCOP_BBS (scop
), i
, pbb
)
1541 int pbb_scatt_dims
= isl_map_dim (pbb
->transformed
, isl_dim_out
);
1542 if (pbb_scatt_dims
> scattering_dims
)
1543 scattering_dims
= pbb_scatt_dims
;
1546 return scattering_dims
;
1550 generate_cloog_input (scop_p scop
, htab_t params_index
)
1552 CloogUnionDomain
*union_domain
;
1553 CloogInput
*cloog_input
;
1554 CloogDomain
*context
;
1555 int nb_scattering_dims
= get_max_scattering_dimensions (scop
);
1557 union_domain
= build_cloog_union_domain (scop
, nb_scattering_dims
);
1558 union_domain
= add_names_to_union_domain (scop
, union_domain
,
1561 context
= cloog_domain_from_isl_set (isl_set_copy (scop
->context
));
1563 cloog_input
= cloog_input_alloc (context
, union_domain
);
1568 /* Translate SCOP to a CLooG program and clast. These two
1569 representations should be freed together: a clast cannot be used
1570 without a program. */
1572 static struct clast_stmt
*
1573 scop_to_clast (scop_p scop
, htab_t params_index
)
1575 CloogInput
*cloog_input
;
1576 struct clast_stmt
*clast
;
1577 CloogOptions
*options
= set_cloog_options ();
1579 cloog_input
= generate_cloog_input (scop
, params_index
);
1581 /* Dump a .cloog input file, if requested. This feature is only
1582 enabled in the Graphite branch. */
1585 static size_t file_scop_number
= 0;
1586 FILE *cloog_file
= init_cloog_input_file (file_scop_number
);
1587 cloog_input_dump_cloog (cloog_file
, cloog_input
, options
);
1590 clast
= cloog_clast_create_from_input (cloog_input
, options
);
1592 cloog_options_free (options
);
1596 /* Prints to FILE the code generated by CLooG for SCOP. */
1599 print_generated_program (FILE *file
, scop_p scop
)
1601 CloogOptions
*options
= set_cloog_options ();
1602 htab_t params_index
;
1603 struct clast_stmt
*clast
;
1605 params_index
= htab_create (10, clast_name_index_elt_info
,
1606 eq_clast_name_indexes
, free_clast_name_index
);
1608 clast
= scop_to_clast (scop
, params_index
);
1610 fprintf (file
, " (clast: \n");
1611 clast_pprint (file
, clast
, 0, options
);
1612 fprintf (file
, " )\n");
1614 cloog_options_free (options
);
1615 cloog_clast_free (clast
);
1618 /* Prints to STDERR the code generated by CLooG for SCOP. */
1621 debug_generated_program (scop_p scop
)
1623 print_generated_program (stderr
, scop
);
1626 /* GIMPLE Loop Generator: generates loops from STMT in GIMPLE form for
1627 the given SCOP. Return true if code generation succeeded.
1628 BB_PBB_MAPPING is a basic_block and it's related poly_bb_p mapping.
1632 gloog (scop_p scop
, htab_t bb_pbb_mapping
)
1634 VEC (tree
, heap
) *newivs
= VEC_alloc (tree
, heap
, 10);
1635 loop_p context_loop
;
1636 sese region
= SCOP_REGION (scop
);
1637 ifsese if_region
= NULL
;
1638 htab_t newivs_index
, params_index
;
1639 struct clast_stmt
*clast
;
1640 struct ivs_params ip
;
1642 timevar_push (TV_GRAPHITE_CODE_GEN
);
1643 gloog_error
= false;
1645 params_index
= htab_create (10, clast_name_index_elt_info
,
1646 eq_clast_name_indexes
, free_clast_name_index
);
1648 clast
= scop_to_clast (scop
, params_index
);
1650 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1652 fprintf (dump_file
, "\nCLAST generated by CLooG: \n");
1653 print_clast_stmt (dump_file
, clast
);
1654 fprintf (dump_file
, "\n");
1657 recompute_all_dominators ();
1660 if_region
= move_sese_in_condition (region
);
1661 sese_insert_phis_for_liveouts (region
,
1662 if_region
->region
->exit
->src
,
1663 if_region
->false_region
->exit
,
1664 if_region
->true_region
->exit
);
1665 recompute_all_dominators ();
1668 context_loop
= SESE_ENTRY (region
)->src
->loop_father
;
1669 newivs_index
= htab_create (10, clast_name_index_elt_info
,
1670 eq_clast_name_indexes
, free_clast_name_index
);
1672 ip
.newivs
= &newivs
;
1673 ip
.newivs_index
= newivs_index
;
1674 ip
.params
= SESE_PARAMS (region
);
1675 ip
.params_index
= params_index
;
1678 translate_clast (context_loop
, clast
, if_region
->true_region
->entry
,
1679 bb_pbb_mapping
, 0, &ip
);
1682 recompute_all_dominators ();
1686 set_ifsese_condition (if_region
, integer_zero_node
);
1688 free (if_region
->true_region
);
1689 free (if_region
->region
);
1692 htab_delete (newivs_index
);
1693 htab_delete (params_index
);
1694 VEC_free (tree
, heap
, newivs
);
1695 cloog_clast_free (clast
);
1696 timevar_pop (TV_GRAPHITE_CODE_GEN
);
1698 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1702 int num_no_dependency
= 0;
1704 FOR_EACH_LOOP (li
, loop
, 0)
1705 if (loop
->can_be_parallel
)
1706 num_no_dependency
++;
1708 fprintf (dump_file
, "\n%d loops carried no dependency.\n",
1712 return !gloog_error
;