2 * Copyright 2012 Ecole Normale Superieure
3 * Copyright 2014 INRIA Rocquencourt
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege,
8 * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
9 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
10 * B.P. 105 - 78153 Le Chesnay, France
13 #include <isl_ast_private.h>
14 #include <isl_ast_build_expr.h>
15 #include <isl_ast_build_private.h>
16 #include <isl_ast_graft_private.h>
18 static __isl_give isl_ast_graft
*isl_ast_graft_copy(
19 __isl_keep isl_ast_graft
*graft
);
22 #define BASE ast_graft
24 #include <isl_list_templ.c>
27 #define BASE ast_graft
28 #include <print_templ.c>
30 isl_ctx
*isl_ast_graft_get_ctx(__isl_keep isl_ast_graft
*graft
)
34 return isl_basic_set_get_ctx(graft
->enforced
);
37 __isl_give isl_ast_node
*isl_ast_graft_get_node(
38 __isl_keep isl_ast_graft
*graft
)
40 return graft
? isl_ast_node_copy(graft
->node
) : NULL
;
43 /* Create a graft for "node" with no guards and no enforced conditions.
45 __isl_give isl_ast_graft
*isl_ast_graft_alloc(
46 __isl_take isl_ast_node
*node
, __isl_keep isl_ast_build
*build
)
55 ctx
= isl_ast_node_get_ctx(node
);
56 graft
= isl_calloc_type(ctx
, isl_ast_graft
);
60 space
= isl_ast_build_get_space(build
, 1);
64 graft
->guard
= isl_set_universe(isl_space_copy(space
));
65 graft
->enforced
= isl_basic_set_universe(space
);
67 if (!graft
->guard
|| !graft
->enforced
)
68 return isl_ast_graft_free(graft
);
72 isl_ast_node_free(node
);
76 /* Create a graft with no guards and no enforced conditions
77 * encapsulating a call to the domain element specified by "executed".
78 * "executed" is assumed to be single-valued.
80 __isl_give isl_ast_graft
*isl_ast_graft_alloc_domain(
81 __isl_take isl_map
*executed
, __isl_keep isl_ast_build
*build
)
85 node
= isl_ast_build_call_from_executed(build
, executed
);
87 return isl_ast_graft_alloc(node
, build
);
90 static __isl_give isl_ast_graft
*isl_ast_graft_copy(
91 __isl_keep isl_ast_graft
*graft
)
100 /* Do all the grafts in "list" have the same guard and is this guard
101 * independent of the current depth?
103 static int equal_independent_guards(__isl_keep isl_ast_graft_list
*list
,
104 __isl_keep isl_ast_build
*build
)
108 isl_ast_graft
*graft_0
;
112 graft_0
= isl_ast_graft_list_get_ast_graft(list
, 0);
116 depth
= isl_ast_build_get_depth(build
);
117 if (isl_set_dim(graft_0
->guard
, isl_dim_set
) <= depth
)
120 skip
= isl_set_involves_dims(graft_0
->guard
,
121 isl_dim_set
, depth
, 1);
122 if (skip
< 0 || skip
) {
123 isl_ast_graft_free(graft_0
);
124 return skip
< 0 ? -1 : 0;
127 n
= isl_ast_graft_list_n_ast_graft(list
);
128 for (i
= 1; i
< n
; ++i
) {
129 isl_ast_graft
*graft
;
130 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
134 equal
= isl_set_is_equal(graft_0
->guard
, graft
->guard
);
135 isl_ast_graft_free(graft
);
136 if (equal
< 0 || !equal
)
140 isl_ast_graft_free(graft_0
);
145 /* Hoist "guard" out of the current level (given by "build").
147 * In particular, eliminate the dimension corresponding to the current depth.
149 static __isl_give isl_set
*hoist_guard(__isl_take isl_set
*guard
,
150 __isl_keep isl_ast_build
*build
)
154 depth
= isl_ast_build_get_depth(build
);
155 if (depth
< isl_set_dim(guard
, isl_dim_set
)) {
156 guard
= isl_set_remove_divs_involving_dims(guard
,
157 isl_dim_set
, depth
, 1);
158 guard
= isl_set_eliminate(guard
, isl_dim_set
, depth
, 1);
159 guard
= isl_set_compute_divs(guard
);
165 /* Extract a common guard from the grafts in "list" that can be hoisted
166 * out of the current level. If no such guard can be found, then return
169 * If all the grafts in the list have the same guard and if this guard
170 * is independent of the current level, then it can be hoisted out.
171 * If there is only one graft in the list and if its guard
172 * depends on the current level, then we eliminate this level and
175 * Otherwise, we return the unshifted simple hull of the guards.
176 * In order to be able to hoist as many constraints as possible,
177 * but at the same time avoid hoisting constraints that did not
178 * appear in the guards in the first place, we intersect the guards
179 * with all the information that is available (i.e., the domain
180 * from the build and the enforced constraints of the graft) and
181 * compute the unshifted hull of the result using only constraints
182 * from the original guards.
183 * In particular, intersecting the guards with other known information
184 * allows us to hoist guards that are only explicit is some of
185 * the grafts and implicit in the others.
187 * The special case for equal guards is needed in case those guards
188 * are non-convex. Taking the simple hull would remove information
189 * and would not allow for these guards to be hoisted completely.
191 __isl_give isl_set
*isl_ast_graft_list_extract_hoistable_guard(
192 __isl_keep isl_ast_graft_list
*list
, __isl_keep isl_ast_build
*build
)
198 isl_set_list
*set_list
;
204 n
= isl_ast_graft_list_n_ast_graft(list
);
206 return isl_set_universe(isl_ast_build_get_space(build
, 1));
208 equal
= equal_independent_guards(list
, build
);
212 if (equal
|| n
== 1) {
213 isl_ast_graft
*graft_0
;
215 graft_0
= isl_ast_graft_list_get_ast_graft(list
, 0);
218 guard
= isl_set_copy(graft_0
->guard
);
220 guard
= hoist_guard(guard
, build
);
221 isl_ast_graft_free(graft_0
);
225 ctx
= isl_ast_build_get_ctx(build
);
226 set_list
= isl_set_list_alloc(ctx
, n
);
227 guard
= isl_set_empty(isl_ast_build_get_space(build
, 1));
228 for (i
= 0; i
< n
; ++i
) {
229 isl_ast_graft
*graft
;
230 isl_basic_set
*enforced
;
233 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
234 enforced
= isl_ast_graft_get_enforced(graft
);
235 guard_i
= isl_set_copy(graft
->guard
);
236 isl_ast_graft_free(graft
);
237 set_list
= isl_set_list_add(set_list
, isl_set_copy(guard_i
));
238 guard_i
= isl_set_intersect(guard_i
,
239 isl_set_from_basic_set(enforced
));
240 guard_i
= isl_set_intersect(guard_i
,
241 isl_ast_build_get_domain(build
));
242 guard
= isl_set_union(guard
, guard_i
);
244 hull
= isl_set_unshifted_simple_hull_from_set_list(guard
, set_list
);
245 guard
= isl_set_from_basic_set(hull
);
246 return hoist_guard(guard
, build
);
249 /* Internal data structure used inside insert_if.
251 * list is the list of guarded nodes created by each call to insert_if.
252 * node is the original node that is guarded by insert_if.
253 * build is the build in which the AST is constructed.
255 struct isl_insert_if_data
{
256 isl_ast_node_list
*list
;
258 isl_ast_build
*build
;
261 static isl_stat
insert_if(__isl_take isl_basic_set
*bset
, void *user
);
263 /* Insert an if node around "node" testing the condition encoded
266 * If the user does not want any disjunctions in the if conditions
267 * and if "guard" does involve a disjunction, then we make the different
268 * disjuncts disjoint and insert an if node corresponding to each disjunct
269 * around a copy of "node". The result is then a block node containing
270 * this sequence of guarded copies of "node".
272 static __isl_give isl_ast_node
*ast_node_insert_if(
273 __isl_take isl_ast_node
*node
, __isl_take isl_set
*guard
,
274 __isl_keep isl_ast_build
*build
)
276 struct isl_insert_if_data data
;
279 ctx
= isl_ast_build_get_ctx(build
);
280 if (isl_options_get_ast_build_allow_or(ctx
) ||
281 isl_set_n_basic_set(guard
) <= 1) {
282 isl_ast_node
*if_node
;
285 expr
= isl_ast_build_expr_from_set_internal(build
, guard
);
287 if_node
= isl_ast_node_alloc_if(expr
);
288 return isl_ast_node_if_set_then(if_node
, node
);
291 guard
= isl_set_make_disjoint(guard
);
293 data
.list
= isl_ast_node_list_alloc(ctx
, 0);
296 if (isl_set_foreach_basic_set(guard
, &insert_if
, &data
) < 0)
297 data
.list
= isl_ast_node_list_free(data
.list
);
300 isl_ast_node_free(data
.node
);
301 return isl_ast_node_alloc_block(data
.list
);
304 /* Insert an if node around a copy of "data->node" testing the condition
305 * encoded in guard "bset" and add the result to data->list.
307 static isl_stat
insert_if(__isl_take isl_basic_set
*bset
, void *user
)
309 struct isl_insert_if_data
*data
= user
;
313 set
= isl_set_from_basic_set(bset
);
314 node
= isl_ast_node_copy(data
->node
);
315 node
= ast_node_insert_if(node
, set
, data
->build
);
316 data
->list
= isl_ast_node_list_add(data
->list
, node
);
321 /* Insert an if node around graft->node testing the condition encoded
322 * in guard "guard", assuming guard involves any conditions.
324 static __isl_give isl_ast_graft
*insert_if_node(
325 __isl_take isl_ast_graft
*graft
, __isl_take isl_set
*guard
,
326 __isl_keep isl_ast_build
*build
)
333 univ
= isl_set_plain_is_universe(guard
);
341 build
= isl_ast_build_copy(build
);
342 graft
->node
= ast_node_insert_if(graft
->node
, guard
, build
);
343 isl_ast_build_free(build
);
346 return isl_ast_graft_free(graft
);
351 return isl_ast_graft_free(graft
);
354 /* Insert an if node around graft->node testing the condition encoded
355 * in graft->guard, assuming graft->guard involves any conditions.
357 static __isl_give isl_ast_graft
*insert_pending_guard_node(
358 __isl_take isl_ast_graft
*graft
, __isl_keep isl_ast_build
*build
)
363 return insert_if_node(graft
, isl_set_copy(graft
->guard
), build
);
366 /* Replace graft->enforced by "enforced".
368 __isl_give isl_ast_graft
*isl_ast_graft_set_enforced(
369 __isl_take isl_ast_graft
*graft
, __isl_take isl_basic_set
*enforced
)
371 if (!graft
|| !enforced
)
374 isl_basic_set_free(graft
->enforced
);
375 graft
->enforced
= enforced
;
379 isl_basic_set_free(enforced
);
380 return isl_ast_graft_free(graft
);
383 /* Update "enforced" such that it only involves constraints that are
384 * also enforced by "graft".
386 static __isl_give isl_basic_set
*update_enforced(
387 __isl_take isl_basic_set
*enforced
, __isl_keep isl_ast_graft
*graft
,
390 isl_basic_set
*enforced_g
;
392 enforced_g
= isl_ast_graft_get_enforced(graft
);
393 if (depth
< isl_basic_set_dim(enforced_g
, isl_dim_set
))
394 enforced_g
= isl_basic_set_eliminate(enforced_g
,
395 isl_dim_set
, depth
, 1);
396 enforced_g
= isl_basic_set_remove_unknown_divs(enforced_g
);
397 enforced_g
= isl_basic_set_align_params(enforced_g
,
398 isl_basic_set_get_space(enforced
));
399 enforced
= isl_basic_set_align_params(enforced
,
400 isl_basic_set_get_space(enforced_g
));
401 enforced
= isl_set_simple_hull(isl_basic_set_union(enforced
,
407 /* Extend the node at *body with node.
409 * If body points to the else branch, then *body may still be NULL.
410 * If so, we simply attach node to this else branch.
411 * Otherwise, we attach a list containing the statements already
412 * attached at *body followed by node.
414 static void extend_body(__isl_keep isl_ast_node
**body
,
415 __isl_take isl_ast_node
*node
)
417 isl_ast_node_list
*list
;
424 if ((*body
)->type
== isl_ast_node_block
) {
425 list
= isl_ast_node_block_get_children(*body
);
426 isl_ast_node_free(*body
);
428 list
= isl_ast_node_list_from_ast_node(*body
);
429 list
= isl_ast_node_list_add(list
, node
);
430 *body
= isl_ast_node_alloc_block(list
);
433 /* Merge "graft" into the last graft of "list".
434 * body points to the then or else branch of an if node in that last graft.
436 * We attach graft->node to this branch and update the enforced
437 * set of the last graft of "list" to take into account the enforced
440 static __isl_give isl_ast_graft_list
*graft_extend_body(
441 __isl_take isl_ast_graft_list
*list
,
442 __isl_keep isl_ast_node
**body
, __isl_take isl_ast_graft
*graft
,
443 __isl_keep isl_ast_build
*build
)
449 isl_basic_set
*enforced
;
453 extend_body(body
, isl_ast_node_copy(graft
->node
));
457 n
= isl_ast_graft_list_n_ast_graft(list
);
458 last
= isl_ast_graft_list_get_ast_graft(list
, n
- 1);
460 depth
= isl_ast_build_get_depth(build
);
461 space
= isl_ast_build_get_space(build
, 1);
462 enforced
= isl_basic_set_empty(space
);
463 enforced
= update_enforced(enforced
, last
, depth
);
464 enforced
= update_enforced(enforced
, graft
, depth
);
465 last
= isl_ast_graft_set_enforced(last
, enforced
);
467 list
= isl_ast_graft_list_set_ast_graft(list
, n
- 1, last
);
468 isl_ast_graft_free(graft
);
471 isl_ast_graft_free(graft
);
472 return isl_ast_graft_list_free(list
);
475 /* Merge "graft" into the last graft of "list", attaching graft->node
476 * to the then branch of "last_if".
478 static __isl_give isl_ast_graft_list
*extend_then(
479 __isl_take isl_ast_graft_list
*list
,
480 __isl_keep isl_ast_node
*last_if
, __isl_take isl_ast_graft
*graft
,
481 __isl_keep isl_ast_build
*build
)
483 return graft_extend_body(list
, &last_if
->u
.i
.then
, graft
, build
);
486 /* Merge "graft" into the last graft of "list", attaching graft->node
487 * to the else branch of "last_if".
489 static __isl_give isl_ast_graft_list
*extend_else(
490 __isl_take isl_ast_graft_list
*list
,
491 __isl_keep isl_ast_node
*last_if
, __isl_take isl_ast_graft
*graft
,
492 __isl_keep isl_ast_build
*build
)
494 return graft_extend_body(list
, &last_if
->u
.i
.else_node
, graft
, build
);
497 /* This data structure keeps track of an if node.
499 * "node" is the actual if-node
500 * "guard" is the original, non-simplified guard of the node
501 * "complement" is the complement of "guard" in the context of outer if nodes
509 /* Given a list of "n" if nodes, clear those starting at "first"
510 * and return "first" (i.e., the updated size of the array).
512 static int clear_if_nodes(struct isl_if_node
*if_node
, int first
, int n
)
516 for (i
= first
; i
< n
; ++i
) {
517 isl_set_free(if_node
[i
].guard
);
518 isl_set_free(if_node
[i
].complement
);
524 /* For each graft in "list",
525 * insert an if node around graft->node testing the condition encoded
526 * in graft->guard, assuming graft->guard involves any conditions.
528 * We keep track of a list of generated if nodes that can be extended
529 * without changing the order of the elements in "list".
530 * If the guard of a graft is a subset of either the guard or its complement
531 * of one of those if nodes, then the node
532 * of the new graft is inserted into the then or else branch of the last graft
533 * and the current graft is discarded.
534 * The guard of the node is then simplified based on the conditions
535 * enforced at that then or else branch.
536 * Otherwise, the current graft is appended to the list.
538 * We only construct else branches if allowed by the user.
540 static __isl_give isl_ast_graft_list
*insert_pending_guard_nodes(
541 __isl_take isl_ast_graft_list
*list
,
542 __isl_keep isl_ast_build
*build
)
547 isl_ast_graft_list
*res
;
548 struct isl_if_node
*if_node
= NULL
;
551 return isl_ast_graft_list_free(list
);
553 ctx
= isl_ast_build_get_ctx(build
);
554 n
= isl_ast_graft_list_n_ast_graft(list
);
556 allow_else
= isl_options_get_ast_build_allow_else(ctx
);
560 if_node
= isl_alloc_array(ctx
, struct isl_if_node
, n
- 1);
562 return isl_ast_graft_list_free(list
);
565 res
= isl_ast_graft_list_alloc(ctx
, n
);
567 for (i
= 0; i
< n
; ++i
) {
569 isl_ast_graft
*graft
;
570 int subset
, found_then
, found_else
;
573 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
577 found_then
= found_else
= -1;
580 test
= isl_set_copy(graft
->guard
);
581 test
= isl_set_intersect(test
,
582 isl_set_copy(build
->domain
));
583 for (j
= n_if
- 1; j
>= 0; --j
) {
584 subset
= isl_set_is_subset(test
,
586 if (subset
< 0 || subset
) {
592 subset
= isl_set_is_subset(test
,
593 if_node
[j
].complement
);
594 if (subset
< 0 || subset
) {
599 n_if
= clear_if_nodes(if_node
, j
+ 1, n_if
);
603 graft
= isl_ast_graft_free(graft
);
607 guard
= isl_set_copy(graft
->guard
);
609 graft
->guard
= isl_set_gist(graft
->guard
,
610 isl_set_copy(if_node
[found_then
].guard
));
611 else if (found_else
>= 0)
612 graft
->guard
= isl_set_gist(graft
->guard
,
613 isl_set_copy(if_node
[found_else
].complement
));
617 graft
= isl_ast_graft_free(graft
);
618 graft
= insert_pending_guard_node(graft
, build
);
619 if (graft
&& graft
->node
!= node
&& i
!= n
- 1) {
621 if_node
[n_if
].node
= graft
->node
;
622 if_node
[n_if
].guard
= guard
;
624 set
= if_node
[found_then
].guard
;
625 else if (found_else
>= 0)
626 set
= if_node
[found_else
].complement
;
629 set
= isl_set_copy(set
);
630 set
= isl_set_subtract(set
, isl_set_copy(guard
));
631 if_node
[n_if
].complement
= set
;
639 res
= extend_then(res
, if_node
[found_then
].node
,
641 else if (found_else
>= 0)
642 res
= extend_else(res
, if_node
[found_else
].node
,
645 res
= isl_ast_graft_list_add(res
, graft
);
648 res
= isl_ast_graft_list_free(res
);
650 isl_ast_graft_list_free(list
);
651 clear_if_nodes(if_node
, 0, n_if
);
656 /* For each graft in "list",
657 * insert an if node around graft->node testing the condition encoded
658 * in graft->guard, assuming graft->guard involves any conditions.
659 * Subsequently remove the guards from the grafts.
661 __isl_give isl_ast_graft_list
*isl_ast_graft_list_insert_pending_guard_nodes(
662 __isl_take isl_ast_graft_list
*list
, __isl_keep isl_ast_build
*build
)
667 list
= insert_pending_guard_nodes(list
, build
);
671 universe
= isl_set_universe(isl_ast_build_get_space(build
, 1));
672 n
= isl_ast_graft_list_n_ast_graft(list
);
673 for (i
= 0; i
< n
; ++i
) {
674 isl_ast_graft
*graft
;
676 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
679 isl_set_free(graft
->guard
);
680 graft
->guard
= isl_set_copy(universe
);
682 graft
= isl_ast_graft_free(graft
);
683 list
= isl_ast_graft_list_set_ast_graft(list
, i
, graft
);
685 isl_set_free(universe
);
687 return isl_ast_graft_list_free(list
);
692 /* Collect the nodes contained in the grafts in "list" in a node list.
694 static __isl_give isl_ast_node_list
*extract_node_list(
695 __isl_keep isl_ast_graft_list
*list
)
699 isl_ast_node_list
*node_list
;
703 ctx
= isl_ast_graft_list_get_ctx(list
);
704 n
= isl_ast_graft_list_n_ast_graft(list
);
705 node_list
= isl_ast_node_list_alloc(ctx
, n
);
706 for (i
= 0; i
< n
; ++i
) {
708 isl_ast_graft
*graft
;
710 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
711 node
= isl_ast_graft_get_node(graft
);
712 node_list
= isl_ast_node_list_add(node_list
, node
);
713 isl_ast_graft_free(graft
);
719 /* Look for shared enforced constraints by all the elements in "list"
720 * on outer loops (with respect to the current depth) and return the result.
722 * We assume that the number of children is at least one.
724 __isl_give isl_basic_set
*isl_ast_graft_list_extract_shared_enforced(
725 __isl_keep isl_ast_graft_list
*list
,
726 __isl_keep isl_ast_build
*build
)
731 isl_basic_set
*enforced
;
736 n
= isl_ast_graft_list_n_ast_graft(list
);
738 isl_die(isl_ast_graft_list_get_ctx(list
), isl_error_invalid
,
739 "for node should have at least one child",
742 space
= isl_ast_build_get_space(build
, 1);
743 enforced
= isl_basic_set_empty(space
);
745 depth
= isl_ast_build_get_depth(build
);
746 for (i
= 0; i
< n
; ++i
) {
747 isl_ast_graft
*graft
;
749 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
750 enforced
= update_enforced(enforced
, graft
, depth
);
751 isl_ast_graft_free(graft
);
757 /* Record "guard" in "graft" so that it will be enforced somewhere
758 * up the tree. If the graft already has a guard, then it may be partially
759 * redundant in combination with the new guard and in the context
760 * the generated constraints of "build". In fact, the new guard
761 * may in itself have some redundant constraints.
762 * We therefore (re)compute the gist of the intersection
763 * and coalesce the result.
765 static __isl_give isl_ast_graft
*store_guard(__isl_take isl_ast_graft
*graft
,
766 __isl_take isl_set
*guard
, __isl_keep isl_ast_build
*build
)
773 is_universe
= isl_set_plain_is_universe(guard
);
781 graft
->guard
= isl_set_intersect(graft
->guard
, guard
);
782 graft
->guard
= isl_set_gist(graft
->guard
,
783 isl_ast_build_get_generated(build
));
784 graft
->guard
= isl_set_coalesce(graft
->guard
);
786 return isl_ast_graft_free(graft
);
791 return isl_ast_graft_free(graft
);
794 /* For each graft in "list", replace its guard with the gist with
795 * respect to "context".
797 static __isl_give isl_ast_graft_list
*gist_guards(
798 __isl_take isl_ast_graft_list
*list
, __isl_keep isl_set
*context
)
805 n
= isl_ast_graft_list_n_ast_graft(list
);
806 for (i
= 0; i
< n
; ++i
) {
807 isl_ast_graft
*graft
;
809 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
812 graft
->guard
= isl_set_gist(graft
->guard
,
813 isl_set_copy(context
));
815 graft
= isl_ast_graft_free(graft
);
816 list
= isl_ast_graft_list_set_ast_graft(list
, i
, graft
);
819 return isl_ast_graft_list_free(list
);
824 /* For each graft in "list", replace its guard with the gist with
825 * respect to "context".
827 __isl_give isl_ast_graft_list
*isl_ast_graft_list_gist_guards(
828 __isl_take isl_ast_graft_list
*list
, __isl_take isl_set
*context
)
830 list
= gist_guards(list
, context
);
831 isl_set_free(context
);
836 /* Allocate a graft in "build" based on the list of grafts in "sub_build".
837 * "guard" and "enforced" are the guard and enforced constraints
838 * of the allocated graft. The guard is used to simplify the guards
839 * of the elements in "list".
841 * The node is initialized to either a block containing the nodes of "children"
842 * or, if there is only a single child, the node of that child.
843 * If the current level requires a for node, it should be inserted by
844 * a subsequent call to isl_ast_graft_insert_for.
846 __isl_give isl_ast_graft
*isl_ast_graft_alloc_from_children(
847 __isl_take isl_ast_graft_list
*list
, __isl_take isl_set
*guard
,
848 __isl_take isl_basic_set
*enforced
, __isl_keep isl_ast_build
*build
,
849 __isl_keep isl_ast_build
*sub_build
)
851 isl_ast_build
*guard_build
;
853 isl_ast_node_list
*node_list
;
854 isl_ast_graft
*graft
;
856 guard_build
= isl_ast_build_copy(sub_build
);
857 guard_build
= isl_ast_build_replace_pending_by_guard(guard_build
,
858 isl_set_copy(guard
));
859 list
= gist_guards(list
, guard
);
860 list
= insert_pending_guard_nodes(list
, guard_build
);
861 isl_ast_build_free(guard_build
);
863 node_list
= extract_node_list(list
);
864 node
= isl_ast_node_from_ast_node_list(node_list
);
865 isl_ast_graft_list_free(list
);
867 graft
= isl_ast_graft_alloc(node
, build
);
868 graft
= store_guard(graft
, guard
, build
);
869 graft
= isl_ast_graft_enforce(graft
, enforced
);
874 /* Combine the grafts in the list into a single graft.
876 * The guard is initialized to the shared guard of the list elements (if any),
877 * provided it does not depend on the current dimension.
878 * The guards in the elements are then simplified with respect to the
879 * hoisted guard and materialized as if nodes around the contained AST nodes
880 * in the context of "sub_build".
882 * The enforced set is initialized to the simple hull of the enforced sets
883 * of the elements, provided the ast_build_exploit_nested_bounds option is set
884 * or the new graft will be used at the same level.
886 * The node is initialized to either a block containing the nodes of "list"
887 * or, if there is only a single element, the node of that element.
889 static __isl_give isl_ast_graft
*ast_graft_list_fuse(
890 __isl_take isl_ast_graft_list
*list
, __isl_keep isl_ast_build
*build
)
892 isl_ast_graft
*graft
;
893 isl_basic_set
*enforced
;
899 enforced
= isl_ast_graft_list_extract_shared_enforced(list
, build
);
900 guard
= isl_ast_graft_list_extract_hoistable_guard(list
, build
);
901 graft
= isl_ast_graft_alloc_from_children(list
, guard
, enforced
,
907 /* Combine the grafts in the list into a single graft.
908 * Return a list containing this single graft.
909 * If the original list is empty, then return an empty list.
911 __isl_give isl_ast_graft_list
*isl_ast_graft_list_fuse(
912 __isl_take isl_ast_graft_list
*list
,
913 __isl_keep isl_ast_build
*build
)
915 isl_ast_graft
*graft
;
919 if (isl_ast_graft_list_n_ast_graft(list
) <= 1)
921 graft
= ast_graft_list_fuse(list
, build
);
922 return isl_ast_graft_list_from_ast_graft(graft
);
925 /* Combine the two grafts into a single graft.
926 * Return a list containing this single graft.
928 static __isl_give isl_ast_graft
*isl_ast_graft_fuse(
929 __isl_take isl_ast_graft
*graft1
, __isl_take isl_ast_graft
*graft2
,
930 __isl_keep isl_ast_build
*build
)
933 isl_ast_graft_list
*list
;
935 ctx
= isl_ast_build_get_ctx(build
);
937 list
= isl_ast_graft_list_alloc(ctx
, 2);
938 list
= isl_ast_graft_list_add(list
, graft1
);
939 list
= isl_ast_graft_list_add(list
, graft2
);
941 return ast_graft_list_fuse(list
, build
);
944 /* Insert a for node enclosing the current graft->node.
946 __isl_give isl_ast_graft
*isl_ast_graft_insert_for(
947 __isl_take isl_ast_graft
*graft
, __isl_take isl_ast_node
*node
)
952 graft
->node
= isl_ast_node_for_set_body(node
, graft
->node
);
954 return isl_ast_graft_free(graft
);
958 isl_ast_node_free(node
);
959 isl_ast_graft_free(graft
);
963 /* Insert a mark governing the current graft->node.
965 __isl_give isl_ast_graft
*isl_ast_graft_insert_mark(
966 __isl_take isl_ast_graft
*graft
, __isl_take isl_id
*mark
)
971 graft
->node
= isl_ast_node_alloc_mark(mark
, graft
->node
);
973 return isl_ast_graft_free(graft
);
978 isl_ast_graft_free(graft
);
982 /* Represent the graft list as an AST node.
983 * This operation drops the information about guards in the grafts, so
984 * if there are any pending guards, then they are materialized as if nodes.
986 __isl_give isl_ast_node
*isl_ast_node_from_graft_list(
987 __isl_take isl_ast_graft_list
*list
,
988 __isl_keep isl_ast_build
*build
)
990 isl_ast_node_list
*node_list
;
992 list
= insert_pending_guard_nodes(list
, build
);
993 node_list
= extract_node_list(list
);
994 isl_ast_graft_list_free(list
);
996 return isl_ast_node_from_ast_node_list(node_list
);
999 void *isl_ast_graft_free(__isl_take isl_ast_graft
*graft
)
1004 if (--graft
->ref
> 0)
1007 isl_ast_node_free(graft
->node
);
1008 isl_set_free(graft
->guard
);
1009 isl_basic_set_free(graft
->enforced
);
1015 /* Record that the grafted tree enforces
1016 * "enforced" by intersecting graft->enforced with "enforced".
1018 __isl_give isl_ast_graft
*isl_ast_graft_enforce(
1019 __isl_take isl_ast_graft
*graft
, __isl_take isl_basic_set
*enforced
)
1021 if (!graft
|| !enforced
)
1024 enforced
= isl_basic_set_align_params(enforced
,
1025 isl_basic_set_get_space(graft
->enforced
));
1026 graft
->enforced
= isl_basic_set_align_params(graft
->enforced
,
1027 isl_basic_set_get_space(enforced
));
1028 graft
->enforced
= isl_basic_set_intersect(graft
->enforced
, enforced
);
1029 if (!graft
->enforced
)
1030 return isl_ast_graft_free(graft
);
1034 isl_basic_set_free(enforced
);
1035 return isl_ast_graft_free(graft
);
1038 __isl_give isl_basic_set
*isl_ast_graft_get_enforced(
1039 __isl_keep isl_ast_graft
*graft
)
1041 return graft
? isl_basic_set_copy(graft
->enforced
) : NULL
;
1044 __isl_give isl_set
*isl_ast_graft_get_guard(__isl_keep isl_ast_graft
*graft
)
1046 return graft
? isl_set_copy(graft
->guard
) : NULL
;
1049 /* Record that "guard" needs to be inserted in "graft".
1051 __isl_give isl_ast_graft
*isl_ast_graft_add_guard(
1052 __isl_take isl_ast_graft
*graft
,
1053 __isl_take isl_set
*guard
, __isl_keep isl_ast_build
*build
)
1055 return store_guard(graft
, guard
, build
);
1058 /* Reformulate the "graft", which was generated in the context
1059 * of an inner code generation, in terms of the outer code generation
1062 * If "product" is set, then the domain of the inner code generation build is
1066 * with O the domain of the outer code generation build.
1067 * We essentially need to project out S.
1069 * If "product" is not set, then we need to project the domains onto
1070 * their parameter spaces.
1072 __isl_give isl_ast_graft
*isl_ast_graft_unembed(__isl_take isl_ast_graft
*graft
,
1075 isl_basic_set
*enforced
;
1081 enforced
= graft
->enforced
;
1082 enforced
= isl_basic_map_domain(isl_basic_set_unwrap(enforced
));
1083 graft
->enforced
= enforced
;
1084 graft
->guard
= isl_map_domain(isl_set_unwrap(graft
->guard
));
1086 graft
->enforced
= isl_basic_set_params(graft
->enforced
);
1087 graft
->guard
= isl_set_params(graft
->guard
);
1089 graft
->guard
= isl_set_compute_divs(graft
->guard
);
1091 if (!graft
->enforced
|| !graft
->guard
)
1092 return isl_ast_graft_free(graft
);
1097 /* Reformulate the grafts in "list", which were generated in the context
1098 * of an inner code generation, in terms of the outer code generation
1101 __isl_give isl_ast_graft_list
*isl_ast_graft_list_unembed(
1102 __isl_take isl_ast_graft_list
*list
, int product
)
1106 n
= isl_ast_graft_list_n_ast_graft(list
);
1107 for (i
= 0; i
< n
; ++i
) {
1108 isl_ast_graft
*graft
;
1110 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
1111 graft
= isl_ast_graft_unembed(graft
, product
);
1112 list
= isl_ast_graft_list_set_ast_graft(list
, i
, graft
);
1118 /* Compute the preimage of "graft" under the function represented by "ma".
1119 * In other words, plug in "ma" in "enforced" and "guard" fields of "graft".
1121 __isl_give isl_ast_graft
*isl_ast_graft_preimage_multi_aff(
1122 __isl_take isl_ast_graft
*graft
, __isl_take isl_multi_aff
*ma
)
1124 isl_basic_set
*enforced
;
1129 enforced
= graft
->enforced
;
1130 graft
->enforced
= isl_basic_set_preimage_multi_aff(enforced
,
1131 isl_multi_aff_copy(ma
));
1132 graft
->guard
= isl_set_preimage_multi_aff(graft
->guard
, ma
);
1134 if (!graft
->enforced
|| !graft
->guard
)
1135 return isl_ast_graft_free(graft
);
1140 /* Compute the preimage of all the grafts in "list" under
1141 * the function represented by "ma".
1143 __isl_give isl_ast_graft_list
*isl_ast_graft_list_preimage_multi_aff(
1144 __isl_take isl_ast_graft_list
*list
, __isl_take isl_multi_aff
*ma
)
1148 n
= isl_ast_graft_list_n_ast_graft(list
);
1149 for (i
= 0; i
< n
; ++i
) {
1150 isl_ast_graft
*graft
;
1152 graft
= isl_ast_graft_list_get_ast_graft(list
, i
);
1153 graft
= isl_ast_graft_preimage_multi_aff(graft
,
1154 isl_multi_aff_copy(ma
));
1155 list
= isl_ast_graft_list_set_ast_graft(list
, i
, graft
);
1158 isl_multi_aff_free(ma
);
1162 /* Compare two grafts based on their guards.
1164 static int cmp_graft(__isl_keep isl_ast_graft
*a
, __isl_keep isl_ast_graft
*b
,
1167 return isl_set_plain_cmp(a
->guard
, b
->guard
);
1170 /* Order the elements in "list" based on their guards.
1172 __isl_give isl_ast_graft_list
*isl_ast_graft_list_sort_guard(
1173 __isl_take isl_ast_graft_list
*list
)
1175 return isl_ast_graft_list_sort(list
, &cmp_graft
, NULL
);
1178 /* Merge the given two lists into a single list of grafts,
1179 * merging grafts with the same guard into a single graft.
1181 * "list2" has been sorted using isl_ast_graft_list_sort.
1182 * "list1" may be the result of a previous call to isl_ast_graft_list_merge
1183 * and may therefore not be completely sorted.
1185 * The elements in "list2" need to be executed after those in "list1",
1186 * but if the guard of a graft in "list2" is disjoint from the guards
1187 * of some final elements in "list1", then it can be moved up to before
1188 * those final elements.
1190 * In particular, we look at each element g of "list2" in turn
1191 * and move it up beyond elements of "list1" that would be sorted
1192 * after g as long as each of these elements has a guard that is disjoint
1195 * We do not allow the second or any later element of "list2" to be moved
1196 * before a previous elements of "list2" even if the reason that
1197 * that element didn't move up further was that its guard was not disjoint
1198 * from that of the previous element in "list1".
1200 __isl_give isl_ast_graft_list
*isl_ast_graft_list_merge(
1201 __isl_take isl_ast_graft_list
*list1
,
1202 __isl_take isl_ast_graft_list
*list2
,
1203 __isl_keep isl_ast_build
*build
)
1207 if (!list1
|| !list2
|| !build
)
1209 if (list2
->n
== 0) {
1210 isl_ast_graft_list_free(list2
);
1213 if (list1
->n
== 0) {
1214 isl_ast_graft_list_free(list1
);
1219 for (i
= 0; i
< list2
->n
; ++i
) {
1220 isl_ast_graft
*graft
;
1221 graft
= isl_ast_graft_list_get_ast_graft(list2
, i
);
1225 for (j
= list1
->n
; j
>= 0; --j
) {
1227 isl_ast_graft
*graft_j
;
1232 cmp
= isl_set_plain_cmp(list1
->p
[j
- 1]->guard
,
1235 disjoint
= isl_set_is_disjoint(graft
->guard
,
1236 list1
->p
[j
- 1]->guard
);
1238 list1
= isl_ast_graft_list_free(list1
);
1247 list1
= isl_ast_graft_list_insert(list1
, j
,
1254 graft_j
= isl_ast_graft_list_get_ast_graft(list1
, j
);
1255 graft_j
= isl_ast_graft_fuse(graft_j
, graft
, build
);
1256 list1
= isl_ast_graft_list_set_ast_graft(list1
, j
,
1262 isl_die(isl_ast_build_get_ctx(build
),
1264 "element failed to get inserted", break);
1271 list1
= isl_ast_graft_list_free(list1
);
1272 isl_ast_graft_list_free(list2
);
1276 isl_ast_graft_list_free(list1
);
1277 isl_ast_graft_list_free(list2
);
1281 __isl_give isl_printer
*isl_printer_print_ast_graft(__isl_take isl_printer
*p
,
1282 __isl_keep isl_ast_graft
*graft
)
1287 return isl_printer_free(p
);
1289 p
= isl_printer_print_str(p
, "(");
1290 p
= isl_printer_print_str(p
, "guard: ");
1291 p
= isl_printer_print_set(p
, graft
->guard
);
1292 p
= isl_printer_print_str(p
, ", ");
1293 p
= isl_printer_print_str(p
, "enforced: ");
1294 p
= isl_printer_print_basic_set(p
, graft
->enforced
);
1295 p
= isl_printer_print_str(p
, ", ");
1296 p
= isl_printer_print_str(p
, "node: ");
1297 p
= isl_printer_print_ast_node(p
, graft
->node
);
1298 p
= isl_printer_print_str(p
, ")");