isl_schedule.c: add_inter_validity_constraints: avoid invalid access on error
[isl.git] / isl_ast_graft.c
blob627393b602f15c7c926950df28c029c8b2417691
1 /*
2 * Copyright 2012 Ecole Normale Superieure
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege,
7 * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
8 */
10 #include <isl_list_private.h>
11 #include <isl_ast_private.h>
12 #include <isl_ast_build_expr.h>
13 #include <isl_ast_build_private.h>
14 #include <isl_ast_graft_private.h>
16 static __isl_give isl_ast_graft *isl_ast_graft_copy(
17 __isl_keep isl_ast_graft *graft);
19 #undef BASE
20 #define BASE ast_graft
22 #include <isl_list_templ.c>
24 #undef BASE
25 #define BASE ast_graft
26 #include <print_templ.c>
28 isl_ctx *isl_ast_graft_get_ctx(__isl_keep isl_ast_graft *graft)
30 if (!graft)
31 return NULL;
32 return isl_basic_set_get_ctx(graft->enforced);
35 __isl_give isl_ast_node *isl_ast_graft_get_node(
36 __isl_keep isl_ast_graft *graft)
38 return graft ? isl_ast_node_copy(graft->node) : NULL;
41 /* Create a graft for "node" with no guards and no enforced conditions.
43 __isl_give isl_ast_graft *isl_ast_graft_alloc(
44 __isl_take isl_ast_node *node, __isl_keep isl_ast_build *build)
46 isl_ctx *ctx;
47 isl_space *space;
48 isl_ast_graft *graft;
50 if (!node)
51 return NULL;
53 ctx = isl_ast_node_get_ctx(node);
54 graft = isl_calloc_type(ctx, isl_ast_graft);
55 if (!graft)
56 goto error;
58 space = isl_ast_build_get_space(build, 1);
60 graft->ref = 1;
61 graft->node = node;
62 graft->guard = isl_set_universe(isl_space_copy(space));
63 graft->enforced = isl_basic_set_universe(space);
65 if (!graft->guard || !graft->enforced)
66 return isl_ast_graft_free(graft);
68 return graft;
69 error:
70 isl_ast_node_free(node);
71 return NULL;
74 /* Create a graft with no guards and no enforced conditions
75 * encapsulating a call to the domain element specified by "executed".
76 * "executed" is assumed to be single-valued.
78 __isl_give isl_ast_graft *isl_ast_graft_alloc_domain(
79 __isl_take isl_map *executed, __isl_keep isl_ast_build *build)
81 isl_ast_node *node;
83 node = isl_ast_build_call_from_executed(build, executed);
85 return isl_ast_graft_alloc(node, build);
88 static __isl_give isl_ast_graft *isl_ast_graft_copy(
89 __isl_keep isl_ast_graft *graft)
91 if (!graft)
92 return NULL;
94 graft->ref++;
95 return graft;
98 /* Do all the grafts in "list" have the same guard and is this guard
99 * independent of the current depth?
101 static int equal_independent_guards(__isl_keep isl_ast_graft_list *list,
102 __isl_keep isl_ast_build *build)
104 int i, n;
105 int depth;
106 isl_ast_graft *graft_0;
107 int equal = 1;
108 int skip;
110 graft_0 = isl_ast_graft_list_get_ast_graft(list, 0);
111 if (!graft_0)
112 return -1;
114 depth = isl_ast_build_get_depth(build);
115 skip = isl_set_involves_dims(graft_0->guard, isl_dim_set, depth, 1);
116 if (skip < 0 || skip) {
117 isl_ast_graft_free(graft_0);
118 return skip < 0 ? -1 : 0;
121 n = isl_ast_graft_list_n_ast_graft(list);
122 for (i = 1; i < n; ++i) {
123 isl_ast_graft *graft;
124 graft = isl_ast_graft_list_get_ast_graft(list, i);
125 if (!graft)
126 equal = -1;
127 else
128 equal = isl_set_is_equal(graft_0->guard, graft->guard);
129 isl_ast_graft_free(graft);
130 if (equal < 0 || !equal)
131 break;
134 isl_ast_graft_free(graft_0);
136 return equal;
139 /* Extract a common guard from the grafts in "list" that can be hoisted
140 * out of the current level. If no such guard can be found, then return
141 * a universal set.
143 * If all the grafts in the list have the same guard and if this guard
144 * is independent of the current level, then it can be hoisted out.
145 * Otherwise, we return the unshifted simple hull of the guards.
147 * The special case for equal guards is needed in case those guards
148 * are non-convex. Taking the simple hull would remove information
149 * and would not allow for these guards to be hoisted completely.
151 static __isl_give isl_set *extract_hoistable_guard(
152 __isl_keep isl_ast_graft_list *list, __isl_keep isl_ast_build *build)
154 int i, n;
155 int depth;
156 isl_ast_graft *graft_0;
157 int equal;
158 isl_set *guard;
160 if (!list || !build)
161 return NULL;
163 n = isl_ast_graft_list_n_ast_graft(list);
164 if (n == 0)
165 return isl_set_universe(isl_ast_build_get_space(build, 1));
167 equal = equal_independent_guards(list, build);
168 if (equal < 0)
169 return NULL;
171 graft_0 = isl_ast_graft_list_get_ast_graft(list, 0);
172 if (!graft_0)
173 return NULL;
174 guard = isl_set_copy(graft_0->guard);
175 isl_ast_graft_free(graft_0);
176 if (equal)
177 return guard;
179 depth = isl_ast_build_get_depth(build);
180 if (depth < isl_set_dim(guard, isl_dim_set)) {
181 guard = isl_set_eliminate(guard, isl_dim_set, depth, 1);
182 guard = isl_set_compute_divs(guard);
185 for (i = 1; i < n; ++i) {
186 isl_ast_graft *graft;
187 isl_basic_set *hull;
188 int is_universe;
190 is_universe = isl_set_plain_is_universe(guard);
191 if (is_universe < 0)
192 guard = isl_set_free(guard);
193 if (is_universe)
194 break;
196 graft = isl_ast_graft_list_get_ast_graft(list, i);
197 if (!graft) {
198 guard = isl_set_free(guard);
199 break;
201 guard = isl_set_union(guard, isl_set_copy(graft->guard));
202 hull = isl_set_unshifted_simple_hull(guard);
203 guard = isl_set_from_basic_set(hull);
204 isl_ast_graft_free(graft);
207 return guard;
210 /* Insert an if node around graft->node testing the condition encoded
211 * in guard "guard", assuming guard involves any conditions.
213 static __isl_give isl_ast_graft *insert_if_node(
214 __isl_take isl_ast_graft *graft, __isl_take isl_set *guard,
215 __isl_keep isl_ast_build *build)
217 int univ;
218 isl_ast_node *node;
219 isl_ast_expr *expr;
221 if (!graft)
222 goto error;
224 univ = isl_set_plain_is_universe(guard);
225 if (univ < 0)
226 goto error;
227 if (univ) {
228 isl_set_free(guard);
229 return graft;
232 build = isl_ast_build_copy(build);
233 build = isl_ast_build_set_enforced(build,
234 isl_ast_graft_get_enforced(graft));
235 expr = isl_ast_build_expr_from_set(build, guard);
236 isl_ast_build_free(build);
238 node = isl_ast_node_alloc_if(expr);
239 graft->node = isl_ast_node_if_set_then(node, graft->node);
241 if (!graft->node)
242 return isl_ast_graft_free(graft);
244 return graft;
245 error:
246 isl_set_free(guard);
247 return isl_ast_graft_free(graft);
250 /* Insert an if node around graft->node testing the condition encoded
251 * in graft->guard, assuming graft->guard involves any conditions.
253 static __isl_give isl_ast_graft *insert_pending_guard_node(
254 __isl_take isl_ast_graft *graft, __isl_keep isl_ast_build *build)
256 if (!graft)
257 return NULL;
259 return insert_if_node(graft, isl_set_copy(graft->guard), build);
262 /* Replace graft->enforced by "enforced".
264 __isl_give isl_ast_graft *isl_ast_graft_set_enforced(
265 __isl_take isl_ast_graft *graft, __isl_take isl_basic_set *enforced)
267 if (!graft || !enforced)
268 goto error;
270 isl_basic_set_free(graft->enforced);
271 graft->enforced = enforced;
273 return graft;
274 error:
275 isl_basic_set_free(enforced);
276 return isl_ast_graft_free(graft);
279 /* Update "enforced" such that it only involves constraints that are
280 * also enforced by "graft".
282 static __isl_give isl_basic_set *update_enforced(
283 __isl_take isl_basic_set *enforced, __isl_keep isl_ast_graft *graft,
284 int depth)
286 isl_basic_set *enforced_g;
288 enforced_g = isl_ast_graft_get_enforced(graft);
289 if (depth < isl_basic_set_dim(enforced_g, isl_dim_set))
290 enforced_g = isl_basic_set_eliminate(enforced_g,
291 isl_dim_set, depth, 1);
292 enforced_g = isl_basic_set_remove_unknown_divs(enforced_g);
293 enforced_g = isl_basic_set_align_params(enforced_g,
294 isl_basic_set_get_space(enforced));
295 enforced = isl_basic_set_align_params(enforced,
296 isl_basic_set_get_space(enforced_g));
297 enforced = isl_set_simple_hull(isl_basic_set_union(enforced,
298 enforced_g));
300 return enforced;
303 /* Extend the node at *body with node.
305 * If body points to the else branch, then *body may still be NULL.
306 * If so, we simply attach node to this else branch.
307 * Otherwise, we attach a list containing the statements already
308 * attached at *body followed by node.
310 static void extend_body(__isl_keep isl_ast_node **body,
311 __isl_take isl_ast_node *node)
313 isl_ast_node_list *list;
315 if (!*body) {
316 *body = node;
317 return;
320 if ((*body)->type == isl_ast_node_block) {
321 list = isl_ast_node_block_get_children(*body);
322 isl_ast_node_free(*body);
323 } else
324 list = isl_ast_node_list_from_ast_node(*body);
325 list = isl_ast_node_list_add(list, node);
326 *body = isl_ast_node_alloc_block(list);
329 /* Merge "graft" into the last graft of "list".
330 * body points to the then or else branch of an if node in that last graft.
332 * We attach graft->node to this branch and update the enforced
333 * set of the last graft of "list" to take into account the enforced
334 * set of "graft".
336 static __isl_give isl_ast_graft_list *graft_extend_body(
337 __isl_take isl_ast_graft_list *list,
338 __isl_keep isl_ast_node **body, __isl_take isl_ast_graft *graft,
339 __isl_keep isl_ast_build *build)
341 int n;
342 int depth;
343 isl_ast_graft *last;
344 isl_space *space;
345 isl_basic_set *enforced;
347 if (!list || !graft)
348 goto error;
349 extend_body(body, isl_ast_node_copy(graft->node));
350 if (!*body)
351 goto error;
353 n = isl_ast_graft_list_n_ast_graft(list);
354 last = isl_ast_graft_list_get_ast_graft(list, n - 1);
356 depth = isl_ast_build_get_depth(build);
357 space = isl_ast_build_get_space(build, 1);
358 enforced = isl_basic_set_empty(space);
359 enforced = update_enforced(enforced, last, depth);
360 enforced = update_enforced(enforced, graft, depth);
361 last = isl_ast_graft_set_enforced(last, enforced);
363 list = isl_ast_graft_list_set_ast_graft(list, n - 1, last);
364 isl_ast_graft_free(graft);
365 return list;
366 error:
367 isl_ast_graft_free(graft);
368 return isl_ast_graft_list_free(list);
371 /* Merge "graft" into the last graft of "list", attaching graft->node
372 * to the then branch of "last_if".
374 static __isl_give isl_ast_graft_list *extend_then(
375 __isl_take isl_ast_graft_list *list,
376 __isl_keep isl_ast_node *last_if, __isl_take isl_ast_graft *graft,
377 __isl_keep isl_ast_build *build)
379 return graft_extend_body(list, &last_if->u.i.then, graft, build);
382 /* Merge "graft" into the last graft of "list", attaching graft->node
383 * to the else branch of "last_if".
385 static __isl_give isl_ast_graft_list *extend_else(
386 __isl_take isl_ast_graft_list *list,
387 __isl_keep isl_ast_node *last_if, __isl_take isl_ast_graft *graft,
388 __isl_keep isl_ast_build *build)
390 return graft_extend_body(list, &last_if->u.i.else_node, graft, build);
393 /* This data structure keeps track of an if node.
395 * "node" is the actual if-node
396 * "guard" is the original, non-simplified guard of the node
397 * "complement" is the complement of "guard" in the context of outer if nodes
399 struct isl_if_node {
400 isl_ast_node *node;
401 isl_set *guard;
402 isl_set *complement;
405 /* Given a list of "n" if nodes, clear those starting at "first"
406 * and return "first" (i.e., the updated size of the array).
408 static int clear_if_nodes(struct isl_if_node *if_node, int first, int n)
410 int i;
412 for (i = first; i < n; ++i) {
413 isl_set_free(if_node[i].guard);
414 isl_set_free(if_node[i].complement);
417 return first;
420 /* For each graft in "list",
421 * insert an if node around graft->node testing the condition encoded
422 * in graft->guard, assuming graft->guard involves any conditions.
424 * We keep track of a list of generated if nodes that can be extended
425 * without changing the order of the elements in "list".
426 * If the guard of a graft is a subset of either the guard or its complement
427 * of one of those if nodes, then the node
428 * of the new graft is inserted into the then or else branch of the last graft
429 * and the current graft is discarded.
430 * The guard of the node is then simplified based on the conditions
431 * enforced at that then or else branch.
432 * Otherwise, the current graft is appended to the list.
434 * We only construct else branches if allowed by the user.
436 static __isl_give isl_ast_graft_list *insert_pending_guard_nodes(
437 __isl_take isl_ast_graft_list *list,
438 __isl_keep isl_ast_build *build)
440 int i, j, n, n_if;
441 int allow_else;
442 isl_ctx *ctx;
443 isl_ast_graft_list *res;
444 struct isl_if_node *if_node = NULL;
446 if (!build || !list)
447 return isl_ast_graft_list_free(list);
449 ctx = isl_ast_build_get_ctx(build);
450 n = isl_ast_graft_list_n_ast_graft(list);
452 allow_else = isl_options_get_ast_build_allow_else(ctx);
454 n_if = 0;
455 if (n > 0) {
456 if_node = isl_alloc_array(ctx, struct isl_if_node, n - 1);
457 if (!if_node)
458 return isl_ast_graft_list_free(list);
461 res = isl_ast_graft_list_alloc(ctx, n);
463 for (i = 0; i < n; ++i) {
464 isl_set *guard;
465 isl_ast_graft *graft;
466 int subset, found_then, found_else;
467 isl_ast_node *node;
469 graft = isl_ast_graft_list_get_ast_graft(list, i);
470 if (!graft)
471 break;
472 subset = 0;
473 found_then = found_else = -1;
474 if (n_if > 0) {
475 isl_set *test;
476 test = isl_set_copy(graft->guard);
477 test = isl_set_intersect(test,
478 isl_set_copy(build->domain));
479 for (j = n_if - 1; j >= 0; --j) {
480 subset = isl_set_is_subset(test,
481 if_node[j].guard);
482 if (subset < 0 || subset) {
483 found_then = j;
484 break;
486 if (!allow_else)
487 continue;
488 subset = isl_set_is_subset(test,
489 if_node[j].complement);
490 if (subset < 0 || subset) {
491 found_else = j;
492 break;
495 n_if = clear_if_nodes(if_node, j + 1, n_if);
496 isl_set_free(test);
498 if (subset < 0) {
499 graft = isl_ast_graft_free(graft);
500 break;
503 guard = isl_set_copy(graft->guard);
504 if (found_then >= 0)
505 graft->guard = isl_set_gist(graft->guard,
506 isl_set_copy(if_node[found_then].guard));
507 else if (found_else >= 0)
508 graft->guard = isl_set_gist(graft->guard,
509 isl_set_copy(if_node[found_else].complement));
511 node = graft->node;
512 if (!graft->guard)
513 graft = isl_ast_graft_free(graft);
514 graft = insert_pending_guard_node(graft, build);
515 if (graft && graft->node != node && i != n - 1) {
516 isl_set *set;
517 if_node[n_if].node = graft->node;
518 if_node[n_if].guard = guard;
519 if (found_then >= 0)
520 set = if_node[found_then].guard;
521 else if (found_else >= 0)
522 set = if_node[found_else].complement;
523 else
524 set = build->domain;
525 set = isl_set_copy(set);
526 set = isl_set_subtract(set, isl_set_copy(guard));
527 if_node[n_if].complement = set;
528 n_if++;
529 } else
530 isl_set_free(guard);
531 if (!graft)
532 break;
534 if (found_then >= 0)
535 res = extend_then(res, if_node[found_then].node,
536 graft, build);
537 else if (found_else >= 0)
538 res = extend_else(res, if_node[found_else].node,
539 graft, build);
540 else
541 res = isl_ast_graft_list_add(res, graft);
543 if (i < n)
544 res = isl_ast_graft_list_free(res);
546 isl_ast_graft_list_free(list);
547 clear_if_nodes(if_node, 0, n_if);
548 free(if_node);
549 return res;
552 /* Collect the nodes contained in the grafts in "list" in a node list.
554 static __isl_give isl_ast_node_list *extract_node_list(
555 __isl_keep isl_ast_graft_list *list)
557 int i, n;
558 isl_ctx *ctx;
559 isl_ast_node_list *node_list;
561 if (!list)
562 return NULL;
563 ctx = isl_ast_graft_list_get_ctx(list);
564 n = isl_ast_graft_list_n_ast_graft(list);
565 node_list = isl_ast_node_list_alloc(ctx, n);
566 for (i = 0; i < n; ++i) {
567 isl_ast_node *node;
568 isl_ast_graft *graft;
570 graft = isl_ast_graft_list_get_ast_graft(list, i);
571 node = isl_ast_graft_get_node(graft);
572 node_list = isl_ast_node_list_add(node_list, node);
573 isl_ast_graft_free(graft);
576 return node_list;
579 /* Look for shared enforced constraints by all the elements in "list"
580 * on outer loops (with respect to the current depth) and return the result.
582 * We assume that the number of children is at least one.
584 static __isl_give isl_basic_set *extract_shared_enforced(
585 __isl_keep isl_ast_graft_list *list,
586 __isl_keep isl_ast_build *build)
588 int i, n;
589 int depth;
590 isl_space *space;
591 isl_basic_set *enforced;
593 if (!list)
594 return NULL;
596 n = isl_ast_graft_list_n_ast_graft(list);
597 if (n == 0)
598 isl_die(isl_ast_graft_list_get_ctx(list), isl_error_invalid,
599 "for node should have at least one child",
600 return NULL);
602 space = isl_ast_build_get_space(build, 1);
603 enforced = isl_basic_set_empty(space);
605 depth = isl_ast_build_get_depth(build);
606 for (i = 0; i < n; ++i) {
607 isl_ast_graft *graft;
609 graft = isl_ast_graft_list_get_ast_graft(list, i);
610 enforced = update_enforced(enforced, graft, depth);
611 isl_ast_graft_free(graft);
614 return enforced;
617 /* Record "guard" in "graft" so that it will be enforced somewhere
618 * up the tree. If the graft already has a guard, then it may be partially
619 * redundant in combination with the new guard and in the context
620 * of build->domain. We therefore (re)compute the gist of the intersection.
622 static __isl_give isl_ast_graft *store_guard(__isl_take isl_ast_graft *graft,
623 __isl_take isl_set *guard, __isl_keep isl_ast_build *build)
625 int is_universe;
627 if (!graft)
628 goto error;
630 is_universe = isl_set_plain_is_universe(guard);
631 if (is_universe < 0)
632 goto error;
633 if (is_universe) {
634 isl_set_free(guard);
635 return graft;
638 graft->guard = isl_set_intersect(graft->guard, guard);
639 graft->guard = isl_ast_build_compute_gist(build, graft->guard);
640 if (!graft->guard)
641 return isl_ast_graft_free(graft);
643 return graft;
644 error:
645 isl_set_free(guard);
646 return isl_ast_graft_free(graft);
649 /* For each graft in "list", replace its guard with the gist with
650 * respect to "context".
652 static __isl_give isl_ast_graft_list *gist_guards(
653 __isl_take isl_ast_graft_list *list, __isl_keep isl_set *context)
655 int i, n;
657 if (!list)
658 return NULL;
660 n = isl_ast_graft_list_n_ast_graft(list);
661 for (i = 0; i < n; ++i) {
662 isl_ast_graft *graft;
664 graft = isl_ast_graft_list_get_ast_graft(list, i);
665 if (!graft)
666 break;
667 graft->guard = isl_set_gist(graft->guard,
668 isl_set_copy(context));
669 if (!graft->guard)
670 graft = isl_ast_graft_free(graft);
671 list = isl_ast_graft_list_set_ast_graft(list, i, graft);
673 if (i < n)
674 return isl_ast_graft_list_free(list);
676 return list;
679 /* Combine the grafts in the list into a single graft.
681 * If "up" is set then the resulting graft will be used at an outer level.
683 * The guard is initialized to the shared guard of the list elements (if any),
684 * provided it does not depend on the current dimension.
685 * The guards in the elements are then simplified with respect to the
686 * hoisted guard and materialized as if nodes around the contained AST nodes.
688 * The enforced set is initialized to the simple hull of the enforced sets
689 * of the elements, provided the ast_build_exploit_nested_bounds option is set
690 * or the new graft will be used at the same level.
692 * The node is initialized to either a block containing the nodes of "list"
693 * or, if there is only a single element, the node of that element.
695 static __isl_give isl_ast_graft *ast_graft_list_fuse(
696 __isl_take isl_ast_graft_list *list,
697 __isl_keep isl_ast_build *build, int up)
699 isl_ctx *ctx;
700 isl_ast_node *node;
701 isl_ast_graft *graft;
702 isl_ast_node_list *node_list;
703 isl_set *guard;
705 if (!list)
706 return NULL;
708 ctx = isl_ast_build_get_ctx(build);
709 guard = extract_hoistable_guard(list, build);
710 list = gist_guards(list, guard);
711 list = insert_pending_guard_nodes(list, build);
713 node_list = extract_node_list(list);
714 node = isl_ast_node_from_ast_node_list(node_list);
716 graft = isl_ast_graft_alloc(node, build);
718 if (!up || isl_options_get_ast_build_exploit_nested_bounds(ctx)) {
719 isl_basic_set *enforced;
720 enforced = extract_shared_enforced(list, build);
721 graft = isl_ast_graft_enforce(graft, enforced);
724 graft = store_guard(graft, guard, build);
726 isl_ast_graft_list_free(list);
727 return graft;
730 /* Combine the grafts in the list into a single graft.
731 * Return a list containing this single graft.
732 * If the original list is empty, then return an empty list.
734 __isl_give isl_ast_graft_list *isl_ast_graft_list_fuse(
735 __isl_take isl_ast_graft_list *list,
736 __isl_keep isl_ast_build *build)
738 isl_ast_graft *graft;
740 if (!list)
741 return NULL;
742 if (isl_ast_graft_list_n_ast_graft(list) <= 1)
743 return list;
744 graft = ast_graft_list_fuse(list, build, 0);
745 return isl_ast_graft_list_from_ast_graft(graft);
748 /* Combine the two grafts into a single graft.
749 * Return a list containing this single graft.
751 static __isl_give isl_ast_graft *isl_ast_graft_fuse(
752 __isl_take isl_ast_graft *graft1, __isl_take isl_ast_graft *graft2,
753 __isl_keep isl_ast_build *build)
755 isl_ctx *ctx;
756 isl_ast_graft_list *list;
758 ctx = isl_ast_build_get_ctx(build);
760 list = isl_ast_graft_list_alloc(ctx, 2);
761 list = isl_ast_graft_list_add(list, graft1);
762 list = isl_ast_graft_list_add(list, graft2);
764 return ast_graft_list_fuse(list, build, 0);
767 /* Allocate a graft for the current level based on the list of grafts
768 * of the inner level.
770 * The node is initialized to either a block containing the nodes of "children"
771 * or, if there is only a single child, the node of that child.
772 * If the current level requires a for node, it should be inserted by
773 * a subsequent call to isl_ast_graft_insert_for.
775 __isl_give isl_ast_graft *isl_ast_graft_alloc_level(
776 __isl_take isl_ast_graft_list *children,
777 __isl_keep isl_ast_build *build)
779 return ast_graft_list_fuse(children, build, 1);
782 /* Insert a for node enclosing the current graft->node.
784 __isl_give isl_ast_graft *isl_ast_graft_insert_for(
785 __isl_take isl_ast_graft *graft, __isl_take isl_ast_node *node)
787 if (!graft)
788 goto error;
790 graft->node = isl_ast_node_for_set_body(node, graft->node);
791 if (!graft->node)
792 return isl_ast_graft_free(graft);
794 return graft;
795 error:
796 isl_ast_node_free(node);
797 isl_ast_graft_free(graft);
798 return NULL;
801 /* Represent the graft list as an AST node.
802 * This operation drops the information about guards in the grafts, so
803 * if there are any pending guards, then they are materialized as if nodes.
805 __isl_give isl_ast_node *isl_ast_node_from_graft_list(
806 __isl_take isl_ast_graft_list *list,
807 __isl_keep isl_ast_build *build)
809 isl_ast_node_list *node_list;
811 list = insert_pending_guard_nodes(list, build);
812 node_list = extract_node_list(list);
813 isl_ast_graft_list_free(list);
815 return isl_ast_node_from_ast_node_list(node_list);
818 void *isl_ast_graft_free(__isl_take isl_ast_graft *graft)
820 if (!graft)
821 return NULL;
823 if (--graft->ref > 0)
824 return NULL;
826 isl_ast_node_free(graft->node);
827 isl_set_free(graft->guard);
828 isl_basic_set_free(graft->enforced);
829 free(graft);
831 return NULL;
834 /* Record that the grafted tree enforces
835 * "enforced" by intersecting graft->enforced with "enforced".
837 __isl_give isl_ast_graft *isl_ast_graft_enforce(
838 __isl_take isl_ast_graft *graft, __isl_take isl_basic_set *enforced)
840 if (!graft || !enforced)
841 goto error;
843 enforced = isl_basic_set_align_params(enforced,
844 isl_basic_set_get_space(graft->enforced));
845 graft->enforced = isl_basic_set_align_params(graft->enforced,
846 isl_basic_set_get_space(enforced));
847 graft->enforced = isl_basic_set_intersect(graft->enforced, enforced);
848 if (!graft->enforced)
849 return isl_ast_graft_free(graft);
851 return graft;
852 error:
853 isl_basic_set_free(enforced);
854 return isl_ast_graft_free(graft);
857 __isl_give isl_basic_set *isl_ast_graft_get_enforced(
858 __isl_keep isl_ast_graft *graft)
860 return graft ? isl_basic_set_copy(graft->enforced) : NULL;
863 __isl_give isl_set *isl_ast_graft_get_guard(__isl_keep isl_ast_graft *graft)
865 return graft ? isl_set_copy(graft->guard) : NULL;
868 /* Record that "guard" needs to be inserted in "graft".
870 * We first simplify the guard in the context of the enforced set and
871 * then we store the guard in case we may be able
872 * to hoist it to higher levels and/or combine it with those of other grafts.
874 __isl_give isl_ast_graft *isl_ast_graft_add_guard(
875 __isl_take isl_ast_graft *graft,
876 __isl_take isl_set *guard, __isl_keep isl_ast_build *build)
878 isl_basic_set *enforced;
880 if (!graft || !build)
881 goto error;
883 enforced = isl_basic_set_copy(graft->enforced);
884 guard = isl_set_gist(guard, isl_set_from_basic_set(enforced));
886 graft = store_guard(graft, guard, build);
888 return graft;
889 error:
890 isl_set_free(guard);
891 isl_ast_graft_free(graft);
892 return NULL;
895 /* Reformulate the "graft", which was generated in the context
896 * of an inner code generation, in terms of the outer code generation
897 * AST build.
899 * If "product" is set, then the domain of the inner code generation build is
901 * [O -> S]
903 * with O the domain of the outer code generation build.
904 * We essentially need to project out S.
906 * If "product" is not set, then we need to project the domains onto
907 * their parameter spaces.
909 __isl_give isl_ast_graft *isl_ast_graft_unembed(__isl_take isl_ast_graft *graft,
910 int product)
912 isl_basic_set *enforced;
914 if (!graft)
915 return NULL;
917 if (product) {
918 enforced = graft->enforced;
919 enforced = isl_basic_map_domain(isl_basic_set_unwrap(enforced));
920 graft->enforced = enforced;
921 graft->guard = isl_map_domain(isl_set_unwrap(graft->guard));
922 } else {
923 graft->enforced = isl_basic_set_params(graft->enforced);
924 graft->guard = isl_set_params(graft->guard);
926 graft->guard = isl_set_compute_divs(graft->guard);
928 if (!graft->enforced || !graft->guard)
929 return isl_ast_graft_free(graft);
931 return graft;
934 /* Reformulate the grafts in "list", which were generated in the context
935 * of an inner code generation, in terms of the outer code generation
936 * AST build.
938 __isl_give isl_ast_graft_list *isl_ast_graft_list_unembed(
939 __isl_take isl_ast_graft_list *list, int product)
941 int i, n;
943 n = isl_ast_graft_list_n_ast_graft(list);
944 for (i = 0; i < n; ++i) {
945 isl_ast_graft *graft;
947 graft = isl_ast_graft_list_get_ast_graft(list, i);
948 graft = isl_ast_graft_unembed(graft, product);
949 list = isl_ast_graft_list_set_ast_graft(list, i, graft);
952 return list;
955 /* Compute the preimage of "graft" under the function represented by "ma".
956 * In other words, plug in "ma" in "enforced" and "guard" fields of "graft".
958 __isl_give isl_ast_graft *isl_ast_graft_preimage_multi_aff(
959 __isl_take isl_ast_graft *graft, __isl_take isl_multi_aff *ma)
961 isl_basic_set *enforced;
963 if (!graft)
964 return NULL;
966 enforced = graft->enforced;
967 graft->enforced = isl_basic_set_preimage_multi_aff(enforced,
968 isl_multi_aff_copy(ma));
969 graft->guard = isl_set_preimage_multi_aff(graft->guard, ma);
971 if (!graft->enforced || !graft->guard)
972 return isl_ast_graft_free(graft);
974 return graft;
977 /* Compute the preimage of all the grafts in "list" under
978 * the function represented by "ma".
980 __isl_give isl_ast_graft_list *isl_ast_graft_list_preimage_multi_aff(
981 __isl_take isl_ast_graft_list *list, __isl_take isl_multi_aff *ma)
983 int i, n;
985 n = isl_ast_graft_list_n_ast_graft(list);
986 for (i = 0; i < n; ++i) {
987 isl_ast_graft *graft;
989 graft = isl_ast_graft_list_get_ast_graft(list, i);
990 graft = isl_ast_graft_preimage_multi_aff(graft,
991 isl_multi_aff_copy(ma));
992 list = isl_ast_graft_list_set_ast_graft(list, i, graft);
995 isl_multi_aff_free(ma);
996 return list;
999 /* Compare two grafts based on their guards.
1001 static int cmp_graft(const void *a, const void *b)
1003 isl_ast_graft * const *g1 = a;
1004 isl_ast_graft * const *g2 = b;
1006 return isl_set_plain_cmp((*g1)->guard, (*g2)->guard);
1009 /* Order the elements in "list" based on their guards.
1011 __isl_give isl_ast_graft_list *isl_ast_graft_list_sort(
1012 __isl_take isl_ast_graft_list *list)
1014 if (!list)
1015 return NULL;
1016 if (list->n <= 1)
1017 return list;
1019 qsort(list->p, list->n, sizeof(list->p[0]), &cmp_graft);
1021 return list;
1024 /* Merge the given two lists into a single list of grafts,
1025 * merging grafts with the same guard into a single graft.
1027 * "list2" has been sorted using isl_ast_graft_list_sort.
1028 * "list1" may be the result of a previous call to isl_ast_graft_list_merge
1029 * and may therefore not be completely sorted.
1031 * The elements in "list2" need to be executed after those in "list1",
1032 * but if the guard of a graft in "list2" is disjoint from the guards
1033 * of some final elements in "list1", then it can be moved up to before
1034 * those final elements.
1036 * In particular, we look at each element g of "list2" in turn
1037 * and move it up beyond elements of "list1" that would be sorted
1038 * after g as long as each of these elements has a guard that is disjoint
1039 * from that of g.
1041 * We do not allow the second or any later element of "list2" to be moved
1042 * before a previous elements of "list2" even if the reason that
1043 * that element didn't move up further was that its guard was not disjoint
1044 * from that of the previous element in "list1".
1046 __isl_give isl_ast_graft_list *isl_ast_graft_list_merge(
1047 __isl_take isl_ast_graft_list *list1,
1048 __isl_take isl_ast_graft_list *list2,
1049 __isl_keep isl_ast_build *build)
1051 int i, j, first;
1053 if (!list1 || !list2 || !build)
1054 goto error;
1055 if (list2->n == 0) {
1056 isl_ast_graft_list_free(list2);
1057 return list1;
1059 if (list1->n == 0) {
1060 isl_ast_graft_list_free(list1);
1061 return list2;
1064 first = 0;
1065 for (i = 0; i < list2->n; ++i) {
1066 isl_ast_graft *graft;
1067 graft = isl_ast_graft_list_get_ast_graft(list2, i);
1068 if (!graft)
1069 break;
1071 for (j = list1->n; j >= 0; --j) {
1072 int cmp, disjoint;
1073 isl_ast_graft *graft_j;
1075 if (j == first)
1076 cmp = -1;
1077 else
1078 cmp = isl_set_plain_cmp(list1->p[j - 1]->guard,
1079 graft->guard);
1080 if (cmp > 0) {
1081 disjoint = isl_set_is_disjoint(graft->guard,
1082 list1->p[j - 1]->guard);
1083 if (disjoint < 0) {
1084 list1 = isl_ast_graft_list_free(list1);
1085 break;
1087 if (!disjoint)
1088 cmp = -1;
1090 if (cmp > 0)
1091 continue;
1092 if (cmp < 0) {
1093 list1 = isl_ast_graft_list_insert(list1, j,
1094 graft);
1095 break;
1098 --j;
1100 graft_j = isl_ast_graft_list_get_ast_graft(list1, j);
1101 graft_j = isl_ast_graft_fuse(graft_j, graft, build);
1102 list1 = isl_ast_graft_list_set_ast_graft(list1, j,
1103 graft_j);
1104 break;
1107 if (j < 0)
1108 isl_die(isl_ast_build_get_ctx(build),
1109 isl_error_internal,
1110 "element failed to get inserted", break);
1112 first = j + 1;
1113 if (!list1)
1114 break;
1116 if (i < list2->n)
1117 list1 = isl_ast_graft_list_free(list1);
1118 isl_ast_graft_list_free(list2);
1120 return list1;
1121 error:
1122 isl_ast_graft_list_free(list1);
1123 isl_ast_graft_list_free(list2);
1124 return NULL;
1127 __isl_give isl_printer *isl_printer_print_ast_graft(__isl_take isl_printer *p,
1128 __isl_keep isl_ast_graft *graft)
1130 if (!p)
1131 return NULL;
1132 if (!graft)
1133 return isl_printer_free(p);
1135 p = isl_printer_print_str(p, "(");
1136 p = isl_printer_print_str(p, "guard: ");
1137 p = isl_printer_print_set(p, graft->guard);
1138 p = isl_printer_print_str(p, ", ");
1139 p = isl_printer_print_str(p, "enforced: ");
1140 p = isl_printer_print_basic_set(p, graft->enforced);
1141 p = isl_printer_print_str(p, ", ");
1142 p = isl_printer_print_str(p, "node: ");
1143 p = isl_printer_print_ast_node(p, graft->node);
1144 p = isl_printer_print_str(p, ")");
1146 return p;