scan.cc: move has_nested up
[pet.git] / scop.c
blob659224c142db47ca26d449553c85845a5aaa03c0
1 /*
2 * Copyright 2011 Leiden University. All rights reserved.
3 * Copyright 2012 Ecole Normale Superieure. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials provided
15 * with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY LEIDEN UNIVERSITY ''AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LEIDEN UNIVERSITY OR
21 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * The views and conclusions contained in the software and documentation
30 * are those of the authors and should not be interpreted as
31 * representing official policies, either expressed or implied, of
32 * Leiden University.
33 */
35 #include <isl/constraint.h>
36 #include <isl/union_set.h>
38 #include "scop.h"
40 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
42 static char *type_str[] = {
43 [pet_expr_access] = "access",
44 [pet_expr_call] = "call",
45 [pet_expr_double] = "double",
46 [pet_expr_unary] = "unary",
47 [pet_expr_binary] = "binary",
48 [pet_expr_ternary] = "ternary"
51 static char *op_str[] = {
52 [pet_op_add_assign] = "+=",
53 [pet_op_sub_assign] = "-=",
54 [pet_op_mul_assign] = "*=",
55 [pet_op_div_assign] = "/=",
56 [pet_op_assign] = "=",
57 [pet_op_add] = "+",
58 [pet_op_sub] = "-",
59 [pet_op_mul] = "*",
60 [pet_op_div] = "/",
61 [pet_op_eq] = "==",
62 [pet_op_le] = "<=",
63 [pet_op_lt] = "<",
64 [pet_op_gt] = ">",
65 [pet_op_minus] = "-",
66 [pet_op_post_inc] = "++",
67 [pet_op_post_dec] = "--",
68 [pet_op_pre_inc] = "++",
69 [pet_op_pre_dec] = "--",
70 [pet_op_address_of] = "&"
73 const char *pet_op_str(enum pet_op_type op)
75 return op_str[op];
78 int pet_op_is_inc_dec(enum pet_op_type op)
80 return op == pet_op_post_inc || op == pet_op_post_dec ||
81 op == pet_op_pre_inc || op == pet_op_pre_dec;
84 const char *pet_type_str(enum pet_expr_type type)
86 return type_str[type];
89 enum pet_op_type pet_str_op(const char *str)
91 int i;
93 for (i = 0; i < ARRAY_SIZE(op_str); ++i)
94 if (!strcmp(op_str[i], str))
95 return i;
97 return -1;
100 enum pet_expr_type pet_str_type(const char *str)
102 int i;
104 for (i = 0; i < ARRAY_SIZE(type_str); ++i)
105 if (!strcmp(type_str[i], str))
106 return i;
108 return -1;
111 /* Construct a pet_expr from an access relation.
112 * By default, it is considered to be a read access.
114 struct pet_expr *pet_expr_from_access(__isl_take isl_map *access)
116 isl_ctx *ctx = isl_map_get_ctx(access);
117 struct pet_expr *expr;
119 if (!access)
120 return NULL;
121 expr = isl_calloc_type(ctx, struct pet_expr);
122 if (!expr)
123 goto error;
125 expr->type = pet_expr_access;
126 expr->acc.access = access;
127 expr->acc.read = 1;
128 expr->acc.write = 0;
130 return expr;
131 error:
132 isl_map_free(access);
133 return NULL;
136 /* Construct a unary pet_expr that performs "op" on "arg".
138 struct pet_expr *pet_expr_new_unary(isl_ctx *ctx, enum pet_op_type op,
139 struct pet_expr *arg)
141 struct pet_expr *expr;
143 if (!arg)
144 goto error;
145 expr = isl_alloc_type(ctx, struct pet_expr);
146 if (!expr)
147 goto error;
149 expr->type = pet_expr_unary;
150 expr->op = op;
151 expr->n_arg = 1;
152 expr->args = isl_calloc_array(ctx, struct pet_expr *, 1);
153 if (!expr->args)
154 goto error;
155 expr->args[pet_un_arg] = arg;
157 return expr;
158 error:
159 pet_expr_free(arg);
160 return NULL;
163 /* Construct a binary pet_expr that performs "op" on "lhs" and "rhs".
165 struct pet_expr *pet_expr_new_binary(isl_ctx *ctx, enum pet_op_type op,
166 struct pet_expr *lhs, struct pet_expr *rhs)
168 struct pet_expr *expr;
170 if (!lhs || !rhs)
171 goto error;
172 expr = isl_alloc_type(ctx, struct pet_expr);
173 if (!expr)
174 goto error;
176 expr->type = pet_expr_binary;
177 expr->op = op;
178 expr->n_arg = 2;
179 expr->args = isl_calloc_array(ctx, struct pet_expr *, 2);
180 if (!expr->args)
181 goto error;
182 expr->args[pet_bin_lhs] = lhs;
183 expr->args[pet_bin_rhs] = rhs;
185 return expr;
186 error:
187 pet_expr_free(lhs);
188 pet_expr_free(rhs);
189 return NULL;
192 /* Construct a ternary pet_expr that performs "cond" ? "lhs" : "rhs".
194 struct pet_expr *pet_expr_new_ternary(isl_ctx *ctx, struct pet_expr *cond,
195 struct pet_expr *lhs, struct pet_expr *rhs)
197 struct pet_expr *expr;
199 if (!cond || !lhs || !rhs)
200 goto error;
201 expr = isl_alloc_type(ctx, struct pet_expr);
202 if (!expr)
203 goto error;
205 expr->type = pet_expr_ternary;
206 expr->n_arg = 3;
207 expr->args = isl_calloc_array(ctx, struct pet_expr *, 3);
208 if (!expr->args)
209 goto error;
210 expr->args[pet_ter_cond] = cond;
211 expr->args[pet_ter_true] = lhs;
212 expr->args[pet_ter_false] = rhs;
214 return expr;
215 error:
216 pet_expr_free(cond);
217 pet_expr_free(lhs);
218 pet_expr_free(rhs);
219 return NULL;
222 /* Construct a call pet_expr that calls function "name" with "n_arg"
223 * arguments. The caller is responsible for filling in the arguments.
225 struct pet_expr *pet_expr_new_call(isl_ctx *ctx, const char *name,
226 unsigned n_arg)
228 struct pet_expr *expr;
230 expr = isl_alloc_type(ctx, struct pet_expr);
231 if (!expr)
232 return NULL;
234 expr->type = pet_expr_call;
235 expr->n_arg = n_arg;
236 expr->name = strdup(name);
237 expr->args = isl_calloc_array(ctx, struct pet_expr *, n_arg);
238 if (!expr->name || !expr->args)
239 return pet_expr_free(expr);
241 return expr;
244 /* Construct a pet_expr that represents the double "d".
246 struct pet_expr *pet_expr_new_double(isl_ctx *ctx, double d)
248 struct pet_expr *expr;
250 expr = isl_calloc_type(ctx, struct pet_expr);
251 if (!expr)
252 return NULL;
254 expr->type = pet_expr_double;
255 expr->d = d;
257 return expr;
260 void *pet_expr_free(struct pet_expr *expr)
262 int i;
264 if (!expr)
265 return NULL;
267 for (i = 0; i < expr->n_arg; ++i)
268 pet_expr_free(expr->args[i]);
269 free(expr->args);
271 switch (expr->type) {
272 case pet_expr_access:
273 isl_map_free(expr->acc.access);
274 break;
275 case pet_expr_call:
276 free(expr->name);
277 break;
278 case pet_expr_double:
279 case pet_expr_unary:
280 case pet_expr_binary:
281 case pet_expr_ternary:
282 break;
285 free(expr);
286 return NULL;
289 static void expr_dump(struct pet_expr *expr, int indent)
291 int i;
293 if (!expr)
294 return;
296 fprintf(stderr, "%*s", indent, "");
298 switch (expr->type) {
299 case pet_expr_double:
300 fprintf(stderr, "%g\n", expr->d);
301 break;
302 case pet_expr_access:
303 isl_map_dump(expr->acc.access);
304 fprintf(stderr, "%*sread: %d\n", indent + 2,
305 "", expr->acc.read);
306 fprintf(stderr, "%*swrite: %d\n", indent + 2,
307 "", expr->acc.write);
308 for (i = 0; i < expr->n_arg; ++i)
309 expr_dump(expr->args[i], indent + 2);
310 break;
311 case pet_expr_unary:
312 fprintf(stderr, "%s\n", op_str[expr->op]);
313 expr_dump(expr->args[pet_un_arg], indent + 2);
314 break;
315 case pet_expr_binary:
316 fprintf(stderr, "%s\n", op_str[expr->op]);
317 expr_dump(expr->args[pet_bin_lhs], indent + 2);
318 expr_dump(expr->args[pet_bin_rhs], indent + 2);
319 break;
320 case pet_expr_ternary:
321 fprintf(stderr, "?:\n");
322 expr_dump(expr->args[pet_ter_cond], indent + 2);
323 expr_dump(expr->args[pet_ter_true], indent + 2);
324 expr_dump(expr->args[pet_ter_false], indent + 2);
325 break;
326 case pet_expr_call:
327 fprintf(stderr, "%s/%d\n", expr->name, expr->n_arg);
328 for (i = 0; i < expr->n_arg; ++i)
329 expr_dump(expr->args[i], indent + 2);
330 break;
334 void pet_expr_dump(struct pet_expr *expr)
336 expr_dump(expr, 0);
339 /* Does "expr" represent an access to an unnamed space, i.e.,
340 * does it represent an affine expression?
342 int pet_expr_is_affine(struct pet_expr *expr)
344 int has_id;
346 if (!expr)
347 return -1;
348 if (expr->type != pet_expr_access)
349 return 0;
351 has_id = isl_map_has_tuple_id(expr->acc.access, isl_dim_out);
352 if (has_id < 0)
353 return -1;
355 return !has_id;
358 /* Return 1 if the two pet_exprs are equivalent.
360 int pet_expr_is_equal(struct pet_expr *expr1, struct pet_expr *expr2)
362 int i;
364 if (!expr1 || !expr2)
365 return 0;
367 if (expr1->type != expr2->type)
368 return 0;
369 if (expr1->n_arg != expr2->n_arg)
370 return 0;
371 for (i = 0; i < expr1->n_arg; ++i)
372 if (!pet_expr_is_equal(expr1->args[i], expr2->args[i]))
373 return 0;
374 switch (expr1->type) {
375 case pet_expr_double:
376 if (expr1->d != expr2->d)
377 return 0;
378 break;
379 case pet_expr_access:
380 if (expr1->acc.read != expr2->acc.read)
381 return 0;
382 if (expr1->acc.write != expr2->acc.write)
383 return 0;
384 if (!expr1->acc.access || !expr2->acc.access)
385 return 0;
386 if (!isl_map_is_equal(expr1->acc.access, expr2->acc.access))
387 return 0;
388 break;
389 case pet_expr_unary:
390 case pet_expr_binary:
391 case pet_expr_ternary:
392 if (expr1->op != expr2->op)
393 return 0;
394 break;
395 case pet_expr_call:
396 if (strcmp(expr1->name, expr2->name))
397 return 0;
398 break;
401 return 1;
404 /* Add extra conditions on the parameters to all access relations in "expr".
406 struct pet_expr *pet_expr_restrict(struct pet_expr *expr,
407 __isl_take isl_set *cond)
409 int i;
411 if (!expr)
412 goto error;
414 for (i = 0; i < expr->n_arg; ++i) {
415 expr->args[i] = pet_expr_restrict(expr->args[i],
416 isl_set_copy(cond));
417 if (!expr->args[i])
418 goto error;
421 if (expr->type == pet_expr_access) {
422 expr->acc.access = isl_map_intersect_params(expr->acc.access,
423 isl_set_copy(cond));
424 if (!expr->acc.access)
425 goto error;
428 isl_set_free(cond);
429 return expr;
430 error:
431 isl_set_free(cond);
432 return pet_expr_free(expr);
435 /* Modify all access relations in "expr" by calling "fn" on them.
437 struct pet_expr *pet_expr_foreach_access(struct pet_expr *expr,
438 __isl_give isl_map *(*fn)(__isl_take isl_map *access, void *user),
439 void *user)
441 int i;
443 if (!expr)
444 return NULL;
446 for (i = 0; i < expr->n_arg; ++i) {
447 expr->args[i] = pet_expr_foreach_access(expr->args[i], fn, user);
448 if (!expr->args[i])
449 return pet_expr_free(expr);
452 if (expr->type == pet_expr_access) {
453 expr->acc.access = fn(expr->acc.access, user);
454 if (!expr->acc.access)
455 return pet_expr_free(expr);
458 return expr;
461 /* Modify all expressions of type pet_expr_access in "expr"
462 * by calling "fn" on them.
464 struct pet_expr *pet_expr_foreach_access_expr(struct pet_expr *expr,
465 struct pet_expr *(*fn)(struct pet_expr *expr, void *user),
466 void *user)
468 int i;
470 if (!expr)
471 return NULL;
473 for (i = 0; i < expr->n_arg; ++i) {
474 expr->args[i] = pet_expr_foreach_access_expr(expr->args[i],
475 fn, user);
476 if (!expr->args[i])
477 return pet_expr_free(expr);
480 if (expr->type == pet_expr_access)
481 expr = fn(expr, user);
483 return expr;
486 /* Modify the given access relation based on the given iteration space
487 * transformation.
488 * If the access has any arguments then the domain of the access relation
489 * is a wrapped mapping from the iteration space to the space of
490 * argument values. We only need to change the domain of this wrapped
491 * mapping, so we extend the input transformation with an identity mapping
492 * on the space of argument values.
494 static __isl_give isl_map *update_domain(__isl_take isl_map *access,
495 void *user)
497 isl_map *update = user;
498 isl_space *dim;
500 update = isl_map_copy(update);
502 dim = isl_map_get_space(access);
503 dim = isl_space_domain(dim);
504 if (!isl_space_is_wrapping(dim))
505 isl_space_free(dim);
506 else {
507 isl_map *id;
508 dim = isl_space_unwrap(dim);
509 dim = isl_space_range(dim);
510 dim = isl_space_map_from_set(dim);
511 id = isl_map_identity(dim);
512 update = isl_map_product(update, id);
515 return isl_map_apply_domain(access, update);
518 /* Modify all access relations in "expr" based on the given iteration space
519 * transformation.
521 static struct pet_expr *expr_update_domain(struct pet_expr *expr,
522 __isl_take isl_map *update)
524 expr = pet_expr_foreach_access(expr, &update_domain, update);
525 isl_map_free(update);
526 return expr;
529 /* Construct a pet_stmt with given line number and statement
530 * number from a pet_expr.
531 * The initial iteration domain is the zero-dimensional universe.
532 * The name of the domain is given by "label" if it is non-NULL.
533 * Otherwise, the name is constructed as S_<id>.
534 * The domains of all access relations are modified to refer
535 * to the statement iteration domain.
537 struct pet_stmt *pet_stmt_from_pet_expr(isl_ctx *ctx, int line,
538 __isl_take isl_id *label, int id, struct pet_expr *expr)
540 struct pet_stmt *stmt;
541 isl_space *dim;
542 isl_set *dom;
543 isl_map *sched;
544 isl_map *add_name;
545 char name[50];
547 if (!expr)
548 goto error;
550 stmt = isl_calloc_type(ctx, struct pet_stmt);
551 if (!stmt)
552 goto error;
554 dim = isl_space_set_alloc(ctx, 0, 0);
555 if (label)
556 dim = isl_space_set_tuple_id(dim, isl_dim_set, label);
557 else {
558 snprintf(name, sizeof(name), "S_%d", id);
559 dim = isl_space_set_tuple_name(dim, isl_dim_set, name);
561 dom = isl_set_universe(isl_space_copy(dim));
562 sched = isl_map_from_domain(isl_set_copy(dom));
564 dim = isl_space_from_range(dim);
565 add_name = isl_map_universe(dim);
566 expr = expr_update_domain(expr, add_name);
568 stmt->line = line;
569 stmt->domain = dom;
570 stmt->schedule = sched;
571 stmt->body = expr;
573 if (!stmt->domain || !stmt->schedule || !stmt->body)
574 return pet_stmt_free(stmt);
576 return stmt;
577 error:
578 isl_id_free(label);
579 return pet_expr_free(expr);
582 void *pet_stmt_free(struct pet_stmt *stmt)
584 int i;
586 if (!stmt)
587 return NULL;
589 isl_set_free(stmt->domain);
590 isl_map_free(stmt->schedule);
591 pet_expr_free(stmt->body);
593 for (i = 0; i < stmt->n_arg; ++i)
594 pet_expr_free(stmt->args[i]);
595 free(stmt->args);
597 free(stmt);
598 return NULL;
601 static void stmt_dump(struct pet_stmt *stmt, int indent)
603 int i;
605 if (!stmt)
606 return;
608 fprintf(stderr, "%*s%d\n", indent, "", stmt->line);
609 fprintf(stderr, "%*s", indent, "");
610 isl_set_dump(stmt->domain);
611 fprintf(stderr, "%*s", indent, "");
612 isl_map_dump(stmt->schedule);
613 expr_dump(stmt->body, indent);
614 for (i = 0; i < stmt->n_arg; ++i)
615 expr_dump(stmt->args[i], indent + 2);
618 void pet_stmt_dump(struct pet_stmt *stmt)
620 stmt_dump(stmt, 0);
623 void *pet_array_free(struct pet_array *array)
625 if (!array)
626 return NULL;
628 isl_set_free(array->context);
629 isl_set_free(array->extent);
630 isl_set_free(array->value_bounds);
631 free(array->element_type);
633 free(array);
634 return NULL;
637 void pet_array_dump(struct pet_array *array)
639 if (!array)
640 return;
642 isl_set_dump(array->context);
643 isl_set_dump(array->extent);
644 isl_set_dump(array->value_bounds);
645 fprintf(stderr, "%s %s\n", array->element_type,
646 array->live_out ? "live-out" : "");
649 /* Construct a pet_scop with room for n statements.
651 static struct pet_scop *scop_alloc(isl_ctx *ctx, int n)
653 isl_space *space;
654 struct pet_scop *scop;
656 scop = isl_calloc_type(ctx, struct pet_scop);
657 if (!scop)
658 return NULL;
660 space = isl_space_params_alloc(ctx, 0);
661 scop->context = isl_set_universe(isl_space_copy(space));
662 scop->context_value = isl_set_universe(space);
663 scop->stmts = isl_calloc_array(ctx, struct pet_stmt *, n);
664 if (!scop->context || !scop->stmts)
665 return pet_scop_free(scop);
667 scop->n_stmt = n;
669 return scop;
672 struct pet_scop *pet_scop_empty(isl_ctx *ctx)
674 return scop_alloc(ctx, 0);
677 /* Update "context" with respect to the valid parameter values for "access".
679 static __isl_give isl_set *access_extract_context(__isl_keep isl_map *access,
680 __isl_take isl_set *context)
682 context = isl_set_intersect(context,
683 isl_map_params(isl_map_copy(access)));
684 return context;
687 /* Update "context" with respect to the valid parameter values for "expr".
689 * If "expr" represents a ternary operator, then a parameter value
690 * needs to be valid for the condition and for at least one of the
691 * remaining two arguments.
692 * If the condition is an affine expression, then we can be a bit more specific.
693 * The parameter then has to be valid for the second argument for
694 * non-zero accesses and valid for the third argument for zero accesses.
696 static __isl_give isl_set *expr_extract_context(struct pet_expr *expr,
697 __isl_take isl_set *context)
699 int i;
701 if (expr->type == pet_expr_ternary) {
702 int is_aff;
703 isl_set *context1, *context2;
705 is_aff = pet_expr_is_affine(expr->args[0]);
706 if (is_aff < 0)
707 goto error;
709 context = expr_extract_context(expr->args[0], context);
710 context1 = expr_extract_context(expr->args[1],
711 isl_set_copy(context));
712 context2 = expr_extract_context(expr->args[2], context);
714 if (is_aff) {
715 isl_map *access;
716 isl_set *zero_set;
718 access = isl_map_copy(expr->args[0]->acc.access);
719 access = isl_map_fix_si(access, isl_dim_out, 0, 0);
720 zero_set = isl_map_params(access);
721 context1 = isl_set_subtract(context1,
722 isl_set_copy(zero_set));
723 context2 = isl_set_intersect(context2, zero_set);
726 context = isl_set_union(context1, context2);
727 context = isl_set_coalesce(context);
729 return context;
732 for (i = 0; i < expr->n_arg; ++i)
733 context = expr_extract_context(expr->args[i], context);
735 if (expr->type == pet_expr_access)
736 context = access_extract_context(expr->acc.access, context);
738 return context;
739 error:
740 isl_set_free(context);
741 return NULL;
744 /* Update "context" with respect to the valid parameter values for "stmt".
746 static __isl_give isl_set *stmt_extract_context(struct pet_stmt *stmt,
747 __isl_take isl_set *context)
749 int i;
751 for (i = 0; i < stmt->n_arg; ++i)
752 context = expr_extract_context(stmt->args[i], context);
754 context = expr_extract_context(stmt->body, context);
756 return context;
759 /* Construct a pet_scop that contains the given pet_stmt.
761 struct pet_scop *pet_scop_from_pet_stmt(isl_ctx *ctx, struct pet_stmt *stmt)
763 struct pet_scop *scop;
765 if (!stmt)
766 return NULL;
768 scop = scop_alloc(ctx, 1);
770 scop->context = stmt_extract_context(stmt, scop->context);
771 if (!scop->context)
772 goto error;
774 scop->stmts[0] = stmt;
776 return scop;
777 error:
778 pet_stmt_free(stmt);
779 pet_scop_free(scop);
780 return NULL;
783 /* Construct a pet_scop that contains the arrays and the statements
784 * in "scop1" and "scop2".
786 struct pet_scop *pet_scop_add(isl_ctx *ctx, struct pet_scop *scop1,
787 struct pet_scop *scop2)
789 int i;
790 struct pet_scop *scop;
792 if (!scop1 || !scop2)
793 goto error;
795 if (scop1->n_stmt == 0) {
796 pet_scop_free(scop1);
797 return scop2;
800 if (scop2->n_stmt == 0) {
801 pet_scop_free(scop2);
802 return scop1;
805 scop = scop_alloc(ctx, scop1->n_stmt + scop2->n_stmt);
806 if (!scop)
807 goto error;
809 scop->arrays = isl_calloc_array(ctx, struct pet_array *,
810 scop1->n_array + scop2->n_array);
811 if (!scop->arrays)
812 goto error;
813 scop->n_array = scop1->n_array + scop2->n_array;
815 for (i = 0; i < scop1->n_stmt; ++i) {
816 scop->stmts[i] = scop1->stmts[i];
817 scop1->stmts[i] = NULL;
820 for (i = 0; i < scop2->n_stmt; ++i) {
821 scop->stmts[scop1->n_stmt + i] = scop2->stmts[i];
822 scop2->stmts[i] = NULL;
825 for (i = 0; i < scop1->n_array; ++i) {
826 scop->arrays[i] = scop1->arrays[i];
827 scop1->arrays[i] = NULL;
830 for (i = 0; i < scop2->n_array; ++i) {
831 scop->arrays[scop1->n_array + i] = scop2->arrays[i];
832 scop2->arrays[i] = NULL;
835 scop = pet_scop_restrict_context(scop, isl_set_copy(scop1->context));
836 scop = pet_scop_restrict_context(scop, isl_set_copy(scop2->context));
838 pet_scop_free(scop1);
839 pet_scop_free(scop2);
840 return scop;
841 error:
842 pet_scop_free(scop1);
843 pet_scop_free(scop2);
844 return NULL;
847 void *pet_scop_free(struct pet_scop *scop)
849 int i;
851 if (!scop)
852 return NULL;
853 isl_set_free(scop->context);
854 isl_set_free(scop->context_value);
855 if (scop->arrays)
856 for (i = 0; i < scop->n_array; ++i)
857 pet_array_free(scop->arrays[i]);
858 free(scop->arrays);
859 if (scop->stmts)
860 for (i = 0; i < scop->n_stmt; ++i)
861 pet_stmt_free(scop->stmts[i]);
862 free(scop->stmts);
863 free(scop);
864 return NULL;
867 void pet_scop_dump(struct pet_scop *scop)
869 int i;
871 if (!scop)
872 return;
874 isl_set_dump(scop->context);
875 isl_set_dump(scop->context_value);
876 for (i = 0; i < scop->n_array; ++i)
877 pet_array_dump(scop->arrays[i]);
878 for (i = 0; i < scop->n_stmt; ++i)
879 pet_stmt_dump(scop->stmts[i]);
882 /* Return 1 if the two pet_arrays are equivalent.
884 * We don't compare element_size as this may be target dependent.
886 int pet_array_is_equal(struct pet_array *array1, struct pet_array *array2)
888 if (!array1 || !array2)
889 return 0;
891 if (!isl_set_is_equal(array1->context, array2->context))
892 return 0;
893 if (!isl_set_is_equal(array1->extent, array2->extent))
894 return 0;
895 if (!!array1->value_bounds != !!array2->value_bounds)
896 return 0;
897 if (array1->value_bounds &&
898 !isl_set_is_equal(array1->value_bounds, array2->value_bounds))
899 return 0;
900 if (strcmp(array1->element_type, array2->element_type))
901 return 0;
902 if (array1->live_out != array2->live_out)
903 return 0;
904 if (array1->uniquely_defined != array2->uniquely_defined)
905 return 0;
907 return 1;
910 /* Return 1 if the two pet_stmts are equivalent.
912 int pet_stmt_is_equal(struct pet_stmt *stmt1, struct pet_stmt *stmt2)
914 int i;
916 if (!stmt1 || !stmt2)
917 return 0;
919 if (stmt1->line != stmt2->line)
920 return 0;
921 if (!isl_set_is_equal(stmt1->domain, stmt2->domain))
922 return 0;
923 if (!isl_map_is_equal(stmt1->schedule, stmt2->schedule))
924 return 0;
925 if (!pet_expr_is_equal(stmt1->body, stmt2->body))
926 return 0;
927 if (stmt1->n_arg != stmt2->n_arg)
928 return 0;
929 for (i = 0; i < stmt1->n_arg; ++i) {
930 if (!pet_expr_is_equal(stmt1->args[i], stmt2->args[i]))
931 return 0;
934 return 1;
937 /* Return 1 if the two pet_scops are equivalent.
939 int pet_scop_is_equal(struct pet_scop *scop1, struct pet_scop *scop2)
941 int i;
943 if (!scop1 || !scop2)
944 return 0;
946 if (!isl_set_is_equal(scop1->context, scop2->context))
947 return 0;
948 if (!isl_set_is_equal(scop1->context_value, scop2->context_value))
949 return 0;
951 if (scop1->n_array != scop2->n_array)
952 return 0;
953 for (i = 0; i < scop1->n_array; ++i)
954 if (!pet_array_is_equal(scop1->arrays[i], scop2->arrays[i]))
955 return 0;
957 if (scop1->n_stmt != scop2->n_stmt)
958 return 0;
959 for (i = 0; i < scop1->n_stmt; ++i)
960 if (!pet_stmt_is_equal(scop1->stmts[i], scop2->stmts[i]))
961 return 0;
963 return 1;
966 /* Prefix the schedule of "stmt" with an extra dimension with constant
967 * value "pos".
969 struct pet_stmt *pet_stmt_prefix(struct pet_stmt *stmt, int pos)
971 if (!stmt)
972 return NULL;
974 stmt->schedule = isl_map_insert_dims(stmt->schedule, isl_dim_out, 0, 1);
975 stmt->schedule = isl_map_fix_si(stmt->schedule, isl_dim_out, 0, pos);
976 if (!stmt->schedule)
977 return pet_stmt_free(stmt);
979 return stmt;
982 /* Prefix the schedules of all statements in "scop" with an extra
983 * dimension with constant value "pos".
985 struct pet_scop *pet_scop_prefix(struct pet_scop *scop, int pos)
987 int i;
989 if (!scop)
990 return NULL;
992 for (i = 0; i < scop->n_stmt; ++i) {
993 scop->stmts[i] = pet_stmt_prefix(scop->stmts[i], pos);
994 if (!scop->stmts[i])
995 return pet_scop_free(scop);
998 return scop;
1001 /* Data used in embed_access.
1002 * extend adds an iterator to the iteration domain
1003 * var_id represents the induction variable of the corresponding loop
1005 struct pet_embed_access {
1006 isl_map *extend;
1007 isl_id *var_id;
1010 /* Embed the access relation in an extra outer loop.
1012 * We first update the iteration domain to insert the extra dimension.
1014 * If the access refers to the induction variable, then it is
1015 * turned into an access to the set of integers with index (and value)
1016 * equal to the induction variable.
1018 * If the induction variable appears in the constraints (as a parameter),
1019 * then the parameter is equated to the newly introduced iteration
1020 * domain dimension and subsequently projected out.
1022 * Similarly, if the accessed array is a virtual array (with user
1023 * pointer equal to NULL), as created by create_test_access,
1024 * then it is extended along with the domain of the access.
1026 static __isl_give isl_map *embed_access(__isl_take isl_map *access,
1027 void *user)
1029 struct pet_embed_access *data = user;
1030 isl_id *array_id = NULL;
1031 int pos;
1033 access = update_domain(access, data->extend);
1035 if (isl_map_has_tuple_id(access, isl_dim_out))
1036 array_id = isl_map_get_tuple_id(access, isl_dim_out);
1037 if (array_id == data->var_id ||
1038 (array_id && !isl_id_get_user(array_id))) {
1039 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
1040 access = isl_map_equate(access,
1041 isl_dim_in, 0, isl_dim_out, 0);
1042 if (array_id != data->var_id)
1043 access = isl_map_set_tuple_id(access, isl_dim_out,
1044 isl_id_copy(array_id));
1046 isl_id_free(array_id);
1048 pos = isl_map_find_dim_by_id(access, isl_dim_param, data->var_id);
1049 if (pos >= 0) {
1050 access = isl_map_equate(access,
1051 isl_dim_param, pos, isl_dim_in, 0);
1052 access = isl_map_project_out(access, isl_dim_param, pos, 1);
1054 access = isl_map_set_dim_id(access, isl_dim_in, 0,
1055 isl_id_copy(data->var_id));
1057 return access;
1060 /* Embed all access relations in "expr" in an extra loop.
1061 * "extend" inserts an outer loop iterator in the iteration domains.
1062 * "var_id" represents the induction variable.
1064 static struct pet_expr *expr_embed(struct pet_expr *expr,
1065 __isl_take isl_map *extend, __isl_keep isl_id *var_id)
1067 struct pet_embed_access data = { .extend = extend, .var_id = var_id };
1069 expr = pet_expr_foreach_access(expr, &embed_access, &data);
1070 isl_map_free(extend);
1071 return expr;
1074 /* Embed the given pet_stmt in an extra outer loop with iteration domain
1075 * "dom" and schedule "sched". "var_id" represents the induction variable
1076 * of the loop.
1078 * The iteration domain and schedule of the statement are updated
1079 * according to the iteration domain and schedule of the new loop.
1080 * If stmt->domain is a wrapped map, then the iteration domain
1081 * is the domain of this map, so we need to be careful to adjust
1082 * this domain.
1084 * If the induction variable appears in the constraints (as a parameter)
1085 * of the current iteration domain or the schedule of the statement,
1086 * then the parameter is equated to the newly introduced iteration
1087 * domain dimension and subsequently projected out.
1089 * Finally, all access relations are updated based on the extra loop.
1091 struct pet_stmt *pet_stmt_embed(struct pet_stmt *stmt, __isl_take isl_set *dom,
1092 __isl_take isl_map *sched, __isl_take isl_id *var_id)
1094 int i;
1095 int pos;
1096 isl_id *stmt_id;
1097 isl_space *dim;
1098 isl_map *extend;
1100 if (!stmt)
1101 goto error;
1103 if (isl_set_is_wrapping(stmt->domain)) {
1104 isl_map *map;
1105 isl_map *ext;
1106 isl_space *ran_dim;
1108 map = isl_set_unwrap(stmt->domain);
1109 stmt_id = isl_map_get_tuple_id(map, isl_dim_in);
1110 ran_dim = isl_space_range(isl_map_get_space(map));
1111 ext = isl_map_from_domain_and_range(isl_set_copy(dom),
1112 isl_set_universe(ran_dim));
1113 map = isl_map_flat_domain_product(ext, map);
1114 map = isl_map_set_tuple_id(map, isl_dim_in,
1115 isl_id_copy(stmt_id));
1116 dim = isl_space_domain(isl_map_get_space(map));
1117 stmt->domain = isl_map_wrap(map);
1118 } else {
1119 stmt_id = isl_set_get_tuple_id(stmt->domain);
1120 stmt->domain = isl_set_flat_product(isl_set_copy(dom),
1121 stmt->domain);
1122 stmt->domain = isl_set_set_tuple_id(stmt->domain,
1123 isl_id_copy(stmt_id));
1124 dim = isl_set_get_space(stmt->domain);
1127 pos = isl_set_find_dim_by_id(stmt->domain, isl_dim_param, var_id);
1128 if (pos >= 0) {
1129 stmt->domain = isl_set_equate(stmt->domain,
1130 isl_dim_param, pos, isl_dim_set, 0);
1131 stmt->domain = isl_set_project_out(stmt->domain,
1132 isl_dim_param, pos, 1);
1135 stmt->schedule = isl_map_flat_product(sched, stmt->schedule);
1136 stmt->schedule = isl_map_set_tuple_id(stmt->schedule,
1137 isl_dim_in, stmt_id);
1139 pos = isl_map_find_dim_by_id(stmt->schedule, isl_dim_param, var_id);
1140 if (pos >= 0) {
1141 stmt->schedule = isl_map_equate(stmt->schedule,
1142 isl_dim_param, pos, isl_dim_in, 0);
1143 stmt->schedule = isl_map_project_out(stmt->schedule,
1144 isl_dim_param, pos, 1);
1147 dim = isl_space_map_from_set(dim);
1148 extend = isl_map_identity(dim);
1149 extend = isl_map_remove_dims(extend, isl_dim_in, 0, 1);
1150 extend = isl_map_set_tuple_id(extend, isl_dim_in,
1151 isl_map_get_tuple_id(extend, isl_dim_out));
1152 for (i = 0; i < stmt->n_arg; ++i)
1153 stmt->args[i] = expr_embed(stmt->args[i],
1154 isl_map_copy(extend), var_id);
1155 stmt->body = expr_embed(stmt->body, extend, var_id);
1157 isl_set_free(dom);
1158 isl_id_free(var_id);
1160 for (i = 0; i < stmt->n_arg; ++i)
1161 if (!stmt->args[i])
1162 return pet_stmt_free(stmt);
1163 if (!stmt->domain || !stmt->schedule || !stmt->body)
1164 return pet_stmt_free(stmt);
1165 return stmt;
1166 error:
1167 isl_set_free(dom);
1168 isl_map_free(sched);
1169 isl_id_free(var_id);
1170 return NULL;
1173 /* Embed the given pet_array in an extra outer loop with iteration domain
1174 * "dom".
1175 * This embedding only has an effect on virtual arrays (those with
1176 * user pointer equal to NULL), which need to be extended along with
1177 * the iteration domain.
1179 static struct pet_array *pet_array_embed(struct pet_array *array,
1180 __isl_take isl_set *dom)
1182 isl_id *array_id = NULL;
1184 if (!array)
1185 goto error;
1187 if (isl_set_has_tuple_id(array->extent))
1188 array_id = isl_set_get_tuple_id(array->extent);
1190 if (array_id && !isl_id_get_user(array_id)) {
1191 array->extent = isl_set_flat_product(dom, array->extent);
1192 array->extent = isl_set_set_tuple_id(array->extent, array_id);
1193 } else {
1194 isl_set_free(dom);
1195 isl_id_free(array_id);
1198 return array;
1199 error:
1200 isl_set_free(dom);
1201 return NULL;
1204 /* Project out all unnamed parameters from "set" and return the result.
1206 static __isl_give isl_set *set_project_out_unnamed_params(
1207 __isl_take isl_set *set)
1209 int i, n;
1211 n = isl_set_dim(set, isl_dim_param);
1212 for (i = n - 1; i >= 0; --i) {
1213 if (isl_set_has_dim_name(set, isl_dim_param, i))
1214 continue;
1215 set = isl_set_project_out(set, isl_dim_param, i, 1);
1218 return set;
1221 /* Update the context with respect to an embedding into a loop
1222 * with iteration domain "dom" and induction variable "id".
1224 * If the current context is independent of "id", we don't need
1225 * to do anything.
1226 * Otherwise, a parameter value is invalid for the embedding if
1227 * any of the corresponding iterator values is invalid.
1228 * That is, a parameter value is valid only if all the corresponding
1229 * iterator values are valid.
1230 * We therefore compute the set of parameters
1232 * forall i in dom : valid (i)
1234 * or
1236 * not exists i in dom : not valid(i)
1238 * i.e.,
1240 * not exists i in dom \ valid(i)
1242 * If there are any unnamed parameters in "dom", then we consider
1243 * a parameter value to be valid if it is valid for any value of those
1244 * unnamed parameters. They are therefore projected out at the end.
1246 static __isl_give isl_set *context_embed(__isl_take isl_set *context,
1247 __isl_keep isl_set *dom, __isl_keep isl_id *id)
1249 int pos;
1251 pos = isl_set_find_dim_by_id(context, isl_dim_param, id);
1252 if (pos < 0)
1253 return context;
1255 context = isl_set_from_params(context);
1256 context = isl_set_add_dims(context, isl_dim_set, 1);
1257 context = isl_set_equate(context, isl_dim_param, pos, isl_dim_set, 0);
1258 context = isl_set_project_out(context, isl_dim_param, pos, 1);
1259 context = isl_set_subtract(isl_set_copy(dom), context);
1260 context = isl_set_params(context);
1261 context = isl_set_complement(context);
1262 context = set_project_out_unnamed_params(context);
1263 return context;
1266 /* Embed all statements and arrays in "scop" in an extra outer loop
1267 * with iteration domain "dom" and schedule "sched".
1268 * "id" represents the induction variable of the loop.
1270 struct pet_scop *pet_scop_embed(struct pet_scop *scop, __isl_take isl_set *dom,
1271 __isl_take isl_map *sched, __isl_take isl_id *id)
1273 int i;
1275 if (!scop)
1276 goto error;
1278 scop->context = context_embed(scop->context, dom, id);
1279 if (!scop->context)
1280 goto error;
1282 for (i = 0; i < scop->n_stmt; ++i) {
1283 scop->stmts[i] = pet_stmt_embed(scop->stmts[i],
1284 isl_set_copy(dom),
1285 isl_map_copy(sched), isl_id_copy(id));
1286 if (!scop->stmts[i])
1287 goto error;
1290 for (i = 0; i < scop->n_array; ++i) {
1291 scop->arrays[i] = pet_array_embed(scop->arrays[i],
1292 isl_set_copy(dom));
1293 if (!scop->arrays[i])
1294 goto error;
1297 isl_set_free(dom);
1298 isl_map_free(sched);
1299 isl_id_free(id);
1300 return scop;
1301 error:
1302 isl_set_free(dom);
1303 isl_map_free(sched);
1304 isl_id_free(id);
1305 return pet_scop_free(scop);
1308 /* Add extra conditions on the parameters to iteration domain of "stmt".
1310 static struct pet_stmt *stmt_restrict(struct pet_stmt *stmt,
1311 __isl_take isl_set *cond)
1313 if (!stmt)
1314 goto error;
1316 stmt->domain = isl_set_intersect_params(stmt->domain, cond);
1318 return stmt;
1319 error:
1320 isl_set_free(cond);
1321 return pet_stmt_free(stmt);
1324 /* Add extra conditions on the parameters to all iteration domains.
1326 * A parameter value is valid for the result if it was valid
1327 * for the original scop and satisfies "cond" or if it does
1328 * not satisfy "cond" as in this case the scop is not executed
1329 * and the original constraints on the parameters are irrelevant.
1331 struct pet_scop *pet_scop_restrict(struct pet_scop *scop,
1332 __isl_take isl_set *cond)
1334 int i;
1336 if (!scop)
1337 goto error;
1339 scop->context = isl_set_intersect(scop->context, isl_set_copy(cond));
1340 scop->context = isl_set_union(scop->context,
1341 isl_set_complement(isl_set_copy(cond)));
1342 scop->context = isl_set_coalesce(scop->context);
1343 scop->context = set_project_out_unnamed_params(scop->context);
1344 if (!scop->context)
1345 goto error;
1347 for (i = 0; i < scop->n_stmt; ++i) {
1348 scop->stmts[i] = stmt_restrict(scop->stmts[i],
1349 isl_set_copy(cond));
1350 if (!scop->stmts[i])
1351 goto error;
1354 isl_set_free(cond);
1355 return scop;
1356 error:
1357 isl_set_free(cond);
1358 return pet_scop_free(scop);
1361 /* Make the statement "stmt" depend on the value of "test"
1362 * being equal to "satisfied" by adjusting stmt->domain.
1364 * The domain of "test" corresponds to the (zero or more) outer dimensions
1365 * of the iteration domain.
1367 * We insert an argument corresponding to a read to "test"
1368 * from the iteration domain of "stmt" in front of the list of arguments.
1369 * We also insert a corresponding output dimension in the wrapped
1370 * map contained in stmt->domain, with value set to "satisfied".
1372 static struct pet_stmt *stmt_filter(struct pet_stmt *stmt,
1373 __isl_take isl_map *test, int satisfied)
1375 int i;
1376 isl_id *id;
1377 isl_ctx *ctx;
1378 isl_map *map, *add_dom;
1379 isl_set *dom;
1380 int n_test_dom;
1382 if (!stmt || !test)
1383 goto error;
1385 if (isl_set_is_wrapping(stmt->domain))
1386 map = isl_set_unwrap(stmt->domain);
1387 else
1388 map = isl_map_from_domain(stmt->domain);
1389 map = isl_map_insert_dims(map, isl_dim_out, 0, 1);
1390 id = isl_map_get_tuple_id(test, isl_dim_out);
1391 map = isl_map_set_dim_id(map, isl_dim_out, 0, id);
1392 map = isl_map_fix_si(map, isl_dim_out, 0, satisfied);
1393 dom = isl_set_universe(isl_space_domain(isl_map_get_space(map)));
1394 n_test_dom = isl_map_dim(test, isl_dim_in);
1395 add_dom = isl_map_from_range(dom);
1396 add_dom = isl_map_add_dims(add_dom, isl_dim_in, n_test_dom);
1397 for (i = 0; i < n_test_dom; ++i)
1398 add_dom = isl_map_equate(add_dom, isl_dim_in, i,
1399 isl_dim_out, i);
1400 test = isl_map_apply_domain(test, add_dom);
1402 stmt->domain = isl_map_wrap(map);
1404 ctx = isl_map_get_ctx(test);
1405 if (!stmt->args) {
1406 stmt->args = isl_calloc_array(ctx, struct pet_expr *, 1);
1407 if (!stmt->args)
1408 goto error;
1409 } else {
1410 struct pet_expr **args;
1411 args = isl_calloc_array(ctx, struct pet_expr *, 1 + stmt->n_arg);
1412 if (!args)
1413 goto error;
1414 for (i = 0; i < stmt->n_arg; ++i)
1415 args[1 + i] = stmt->args[i];
1416 free(stmt->args);
1417 stmt->args = args;
1419 stmt->n_arg++;
1420 stmt->args[0] = pet_expr_from_access(isl_map_copy(test));
1421 if (!stmt->args[0])
1422 goto error;
1424 isl_map_free(test);
1425 return stmt;
1426 error:
1427 isl_map_free(test);
1428 return pet_stmt_free(stmt);
1431 /* Make all statements in "scop" depend on the value of "test"
1432 * being equal to "satisfied" by adjusting their domains.
1434 struct pet_scop *pet_scop_filter(struct pet_scop *scop,
1435 __isl_take isl_map *test, int satisfied)
1437 int i;
1439 if (!scop)
1440 goto error;
1442 for (i = 0; i < scop->n_stmt; ++i) {
1443 scop->stmts[i] = stmt_filter(scop->stmts[i],
1444 isl_map_copy(test), satisfied);
1445 if (!scop->stmts[i])
1446 goto error;
1449 isl_map_free(test);
1450 return scop;
1451 error:
1452 isl_map_free(test);
1453 return pet_scop_free(scop);
1456 /* Add all parameters in "expr" to "dim" and return the result.
1458 static __isl_give isl_space *expr_collect_params(struct pet_expr *expr,
1459 __isl_take isl_space *dim)
1461 int i;
1463 if (!expr)
1464 goto error;
1465 for (i = 0; i < expr->n_arg; ++i)
1467 dim = expr_collect_params(expr->args[i], dim);
1469 if (expr->type == pet_expr_access)
1470 dim = isl_space_align_params(dim,
1471 isl_map_get_space(expr->acc.access));
1473 return dim;
1474 error:
1475 isl_space_free(dim);
1476 return pet_expr_free(expr);
1479 /* Add all parameters in "stmt" to "dim" and return the result.
1481 static __isl_give isl_space *stmt_collect_params(struct pet_stmt *stmt,
1482 __isl_take isl_space *dim)
1484 if (!stmt)
1485 goto error;
1487 dim = isl_space_align_params(dim, isl_set_get_space(stmt->domain));
1488 dim = isl_space_align_params(dim, isl_map_get_space(stmt->schedule));
1489 dim = expr_collect_params(stmt->body, dim);
1491 return dim;
1492 error:
1493 isl_space_free(dim);
1494 return pet_stmt_free(stmt);
1497 /* Add all parameters in "array" to "dim" and return the result.
1499 static __isl_give isl_space *array_collect_params(struct pet_array *array,
1500 __isl_take isl_space *dim)
1502 if (!array)
1503 goto error;
1505 dim = isl_space_align_params(dim, isl_set_get_space(array->context));
1506 dim = isl_space_align_params(dim, isl_set_get_space(array->extent));
1508 return dim;
1509 error:
1510 isl_space_free(dim);
1511 return pet_array_free(array);
1514 /* Add all parameters in "scop" to "dim" and return the result.
1516 static __isl_give isl_space *scop_collect_params(struct pet_scop *scop,
1517 __isl_take isl_space *dim)
1519 int i;
1521 if (!scop)
1522 goto error;
1524 for (i = 0; i < scop->n_array; ++i)
1525 dim = array_collect_params(scop->arrays[i], dim);
1527 for (i = 0; i < scop->n_stmt; ++i)
1528 dim = stmt_collect_params(scop->stmts[i], dim);
1530 return dim;
1531 error:
1532 isl_space_free(dim);
1533 return pet_scop_free(scop);
1536 /* Add all parameters in "dim" to all access relations in "expr".
1538 static struct pet_expr *expr_propagate_params(struct pet_expr *expr,
1539 __isl_take isl_space *dim)
1541 int i;
1543 if (!expr)
1544 goto error;
1546 for (i = 0; i < expr->n_arg; ++i) {
1547 expr->args[i] =
1548 expr_propagate_params(expr->args[i],
1549 isl_space_copy(dim));
1550 if (!expr->args[i])
1551 goto error;
1554 if (expr->type == pet_expr_access) {
1555 expr->acc.access = isl_map_align_params(expr->acc.access,
1556 isl_space_copy(dim));
1557 if (!expr->acc.access)
1558 goto error;
1561 isl_space_free(dim);
1562 return expr;
1563 error:
1564 isl_space_free(dim);
1565 return pet_expr_free(expr);
1568 /* Add all parameters in "dim" to the domain, schedule and
1569 * all access relations in "stmt".
1571 static struct pet_stmt *stmt_propagate_params(struct pet_stmt *stmt,
1572 __isl_take isl_space *dim)
1574 if (!stmt)
1575 goto error;
1577 stmt->domain = isl_set_align_params(stmt->domain, isl_space_copy(dim));
1578 stmt->schedule = isl_map_align_params(stmt->schedule,
1579 isl_space_copy(dim));
1580 stmt->body = expr_propagate_params(stmt->body, isl_space_copy(dim));
1582 if (!stmt->domain || !stmt->schedule || !stmt->body)
1583 goto error;
1585 isl_space_free(dim);
1586 return stmt;
1587 error:
1588 isl_space_free(dim);
1589 return pet_stmt_free(stmt);
1592 /* Add all parameters in "dim" to "array".
1594 static struct pet_array *array_propagate_params(struct pet_array *array,
1595 __isl_take isl_space *dim)
1597 if (!array)
1598 goto error;
1600 array->context = isl_set_align_params(array->context,
1601 isl_space_copy(dim));
1602 array->extent = isl_set_align_params(array->extent,
1603 isl_space_copy(dim));
1604 if (array->value_bounds) {
1605 array->value_bounds = isl_set_align_params(array->value_bounds,
1606 isl_space_copy(dim));
1607 if (!array->value_bounds)
1608 goto error;
1611 if (!array->context || !array->extent)
1612 goto error;
1614 isl_space_free(dim);
1615 return array;
1616 error:
1617 isl_space_free(dim);
1618 return pet_array_free(array);
1621 /* Add all parameters in "dim" to "scop".
1623 static struct pet_scop *scop_propagate_params(struct pet_scop *scop,
1624 __isl_take isl_space *dim)
1626 int i;
1628 if (!scop)
1629 goto error;
1631 for (i = 0; i < scop->n_array; ++i) {
1632 scop->arrays[i] = array_propagate_params(scop->arrays[i],
1633 isl_space_copy(dim));
1634 if (!scop->arrays[i])
1635 goto error;
1638 for (i = 0; i < scop->n_stmt; ++i) {
1639 scop->stmts[i] = stmt_propagate_params(scop->stmts[i],
1640 isl_space_copy(dim));
1641 if (!scop->stmts[i])
1642 goto error;
1645 isl_space_free(dim);
1646 return scop;
1647 error:
1648 isl_space_free(dim);
1649 return pet_scop_free(scop);
1652 /* Update all isl_sets and isl_maps in "scop" such that they all
1653 * have the same parameters.
1655 struct pet_scop *pet_scop_align_params(struct pet_scop *scop)
1657 isl_space *dim;
1659 if (!scop)
1660 return NULL;
1662 dim = isl_set_get_space(scop->context);
1663 dim = scop_collect_params(scop, dim);
1665 scop->context = isl_set_align_params(scop->context, isl_space_copy(dim));
1666 scop = scop_propagate_params(scop, dim);
1668 return scop;
1671 /* Check if the given access relation accesses a (0D) array that corresponds
1672 * to one of the parameters in "dim". If so, replace the array access
1673 * by an access to the set of integers with as index (and value)
1674 * that parameter.
1676 static __isl_give isl_map *access_detect_parameter(__isl_take isl_map *access,
1677 __isl_take isl_space *dim)
1679 isl_id *array_id = NULL;
1680 int pos = -1;
1682 if (isl_map_has_tuple_id(access, isl_dim_out)) {
1683 array_id = isl_map_get_tuple_id(access, isl_dim_out);
1684 pos = isl_space_find_dim_by_id(dim, isl_dim_param, array_id);
1686 isl_space_free(dim);
1688 if (pos < 0) {
1689 isl_id_free(array_id);
1690 return access;
1693 pos = isl_map_find_dim_by_id(access, isl_dim_param, array_id);
1694 if (pos < 0) {
1695 access = isl_map_insert_dims(access, isl_dim_param, 0, 1);
1696 access = isl_map_set_dim_id(access, isl_dim_param, 0, array_id);
1697 pos = 0;
1698 } else
1699 isl_id_free(array_id);
1701 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
1702 access = isl_map_equate(access, isl_dim_param, pos, isl_dim_out, 0);
1704 return access;
1707 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1708 * in "dim" by a value equal to the corresponding parameter.
1710 static struct pet_expr *expr_detect_parameter_accesses(struct pet_expr *expr,
1711 __isl_take isl_space *dim)
1713 int i;
1715 if (!expr)
1716 goto error;
1718 for (i = 0; i < expr->n_arg; ++i) {
1719 expr->args[i] =
1720 expr_detect_parameter_accesses(expr->args[i],
1721 isl_space_copy(dim));
1722 if (!expr->args[i])
1723 goto error;
1726 if (expr->type == pet_expr_access) {
1727 expr->acc.access = access_detect_parameter(expr->acc.access,
1728 isl_space_copy(dim));
1729 if (!expr->acc.access)
1730 goto error;
1733 isl_space_free(dim);
1734 return expr;
1735 error:
1736 isl_space_free(dim);
1737 return pet_expr_free(expr);
1740 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1741 * in "dim" by a value equal to the corresponding parameter.
1743 static struct pet_stmt *stmt_detect_parameter_accesses(struct pet_stmt *stmt,
1744 __isl_take isl_space *dim)
1746 if (!stmt)
1747 goto error;
1749 stmt->body = expr_detect_parameter_accesses(stmt->body,
1750 isl_space_copy(dim));
1752 if (!stmt->domain || !stmt->schedule || !stmt->body)
1753 goto error;
1755 isl_space_free(dim);
1756 return stmt;
1757 error:
1758 isl_space_free(dim);
1759 return pet_stmt_free(stmt);
1762 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1763 * in "dim" by a value equal to the corresponding parameter.
1765 static struct pet_scop *scop_detect_parameter_accesses(struct pet_scop *scop,
1766 __isl_take isl_space *dim)
1768 int i;
1770 if (!scop)
1771 goto error;
1773 for (i = 0; i < scop->n_stmt; ++i) {
1774 scop->stmts[i] = stmt_detect_parameter_accesses(scop->stmts[i],
1775 isl_space_copy(dim));
1776 if (!scop->stmts[i])
1777 goto error;
1780 isl_space_free(dim);
1781 return scop;
1782 error:
1783 isl_space_free(dim);
1784 return pet_scop_free(scop);
1787 /* Replace all accesses to (0D) arrays that correspond to any of
1788 * the parameters used in "scop" by a value equal
1789 * to the corresponding parameter.
1791 struct pet_scop *pet_scop_detect_parameter_accesses(struct pet_scop *scop)
1793 isl_space *dim;
1795 if (!scop)
1796 return NULL;
1798 dim = isl_set_get_space(scop->context);
1799 dim = scop_collect_params(scop, dim);
1801 scop = scop_detect_parameter_accesses(scop, dim);
1803 return scop;
1806 /* Add all read access relations (if "read" is set) and/or all write
1807 * access relations (if "write" is set) to "accesses" and return the result.
1809 static __isl_give isl_union_map *expr_collect_accesses(struct pet_expr *expr,
1810 int read, int write, __isl_take isl_union_map *accesses)
1812 int i;
1813 isl_id *id;
1814 isl_space *dim;
1816 if (!expr)
1817 return NULL;
1819 for (i = 0; i < expr->n_arg; ++i)
1820 accesses = expr_collect_accesses(expr->args[i],
1821 read, write, accesses);
1823 if (expr->type == pet_expr_access &&
1824 isl_map_has_tuple_id(expr->acc.access, isl_dim_out) &&
1825 ((read && expr->acc.read) || (write && expr->acc.write)))
1826 accesses = isl_union_map_add_map(accesses,
1827 isl_map_copy(expr->acc.access));
1829 return accesses;
1832 /* Collect and return all read access relations (if "read" is set)
1833 * and/or all write * access relations (if "write" is set) in "stmt".
1835 static __isl_give isl_union_map *stmt_collect_accesses(struct pet_stmt *stmt,
1836 int read, int write, __isl_take isl_space *dim)
1838 isl_union_map *accesses;
1840 if (!stmt)
1841 return NULL;
1843 accesses = isl_union_map_empty(dim);
1844 accesses = expr_collect_accesses(stmt->body, read, write, accesses);
1845 accesses = isl_union_map_intersect_domain(accesses,
1846 isl_union_set_from_set(isl_set_copy(stmt->domain)));
1848 return accesses;
1851 /* Collect and return all read access relations (if "read" is set)
1852 * and/or all write * access relations (if "write" is set) in "scop".
1854 static __isl_give isl_union_map *scop_collect_accesses(struct pet_scop *scop,
1855 int read, int write)
1857 int i;
1858 isl_union_map *accesses;
1860 if (!scop)
1861 return NULL;
1863 accesses = isl_union_map_empty(isl_set_get_space(scop->context));
1865 for (i = 0; i < scop->n_stmt; ++i) {
1866 isl_union_map *accesses_i;
1867 isl_space *dim = isl_set_get_space(scop->context);
1868 accesses_i = stmt_collect_accesses(scop->stmts[i],
1869 read, write, dim);
1870 accesses = isl_union_map_union(accesses, accesses_i);
1873 return accesses;
1876 __isl_give isl_union_map *pet_scop_collect_reads(struct pet_scop *scop)
1878 return scop_collect_accesses(scop, 1, 0);
1881 __isl_give isl_union_map *pet_scop_collect_writes(struct pet_scop *scop)
1883 return scop_collect_accesses(scop, 0, 1);
1886 /* Collect and return the union of iteration domains in "scop".
1888 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop)
1890 int i;
1891 isl_set *domain_i;
1892 isl_union_set *domain;
1894 if (!scop)
1895 return NULL;
1897 domain = isl_union_set_empty(isl_set_get_space(scop->context));
1899 for (i = 0; i < scop->n_stmt; ++i) {
1900 domain_i = isl_set_copy(scop->stmts[i]->domain);
1901 domain = isl_union_set_add_set(domain, domain_i);
1904 return domain;
1907 /* Collect and return the schedules of the statements in "scop".
1908 * The range is normalized to the maximal number of scheduling
1909 * dimensions.
1911 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop)
1913 int i, j;
1914 isl_map *schedule_i;
1915 isl_union_map *schedule;
1916 int depth, max_depth = 0;
1918 if (!scop)
1919 return NULL;
1921 schedule = isl_union_map_empty(isl_set_get_space(scop->context));
1923 for (i = 0; i < scop->n_stmt; ++i) {
1924 depth = isl_map_dim(scop->stmts[i]->schedule, isl_dim_out);
1925 if (depth > max_depth)
1926 max_depth = depth;
1929 for (i = 0; i < scop->n_stmt; ++i) {
1930 schedule_i = isl_map_copy(scop->stmts[i]->schedule);
1931 depth = isl_map_dim(schedule_i, isl_dim_out);
1932 schedule_i = isl_map_add_dims(schedule_i, isl_dim_out,
1933 max_depth - depth);
1934 for (j = depth; j < max_depth; ++j)
1935 schedule_i = isl_map_fix_si(schedule_i,
1936 isl_dim_out, j, 0);
1937 schedule = isl_union_map_add_map(schedule, schedule_i);
1940 return schedule;
1943 /* Does expression "expr" write to "id"?
1945 static int expr_writes(struct pet_expr *expr, __isl_keep isl_id *id)
1947 int i;
1948 isl_id *write_id;
1950 for (i = 0; i < expr->n_arg; ++i) {
1951 int writes = expr_writes(expr->args[i], id);
1952 if (writes < 0 || writes)
1953 return writes;
1956 if (expr->type != pet_expr_access)
1957 return 0;
1958 if (!expr->acc.write)
1959 return 0;
1960 if (!isl_map_has_tuple_id(expr->acc.access, isl_dim_out))
1961 return 0;
1963 write_id = isl_map_get_tuple_id(expr->acc.access, isl_dim_out);
1964 isl_id_free(write_id);
1966 if (!write_id)
1967 return -1;
1969 return write_id == id;
1972 /* Does statement "stmt" write to "id"?
1974 static int stmt_writes(struct pet_stmt *stmt, __isl_keep isl_id *id)
1976 return expr_writes(stmt->body, id);
1979 /* Is there any write access in "scop" that accesses "id"?
1981 int pet_scop_writes(struct pet_scop *scop, __isl_keep isl_id *id)
1983 int i;
1985 if (!scop)
1986 return -1;
1988 for (i = 0; i < scop->n_stmt; ++i) {
1989 int writes = stmt_writes(scop->stmts[i], id);
1990 if (writes < 0 || writes)
1991 return writes;
1994 return 0;
1997 /* Reset the user pointer on all parameter ids in "set".
1999 static __isl_give isl_set *set_anonymize(__isl_take isl_set *set)
2001 int i, n;
2003 n = isl_set_dim(set, isl_dim_param);
2004 for (i = 0; i < n; ++i) {
2005 isl_id *id = isl_set_get_dim_id(set, isl_dim_param, i);
2006 const char *name = isl_id_get_name(id);
2007 set = isl_set_set_dim_name(set, isl_dim_param, i, name);
2008 isl_id_free(id);
2011 return set;
2014 /* Reset the user pointer on all parameter ids in "map".
2016 static __isl_give isl_map *map_anonymize(__isl_take isl_map *map)
2018 int i, n;
2020 n = isl_map_dim(map, isl_dim_param);
2021 for (i = 0; i < n; ++i) {
2022 isl_id *id = isl_map_get_dim_id(map, isl_dim_param, i);
2023 const char *name = isl_id_get_name(id);
2024 map = isl_map_set_dim_name(map, isl_dim_param, i, name);
2025 isl_id_free(id);
2028 return map;
2031 /* Reset the user pointer on all parameter ids in "array".
2033 static struct pet_array *array_anonymize(struct pet_array *array)
2035 if (!array)
2036 return NULL;
2038 array->context = set_anonymize(array->context);
2039 array->extent = set_anonymize(array->extent);
2040 if (!array->context || !array->extent)
2041 return pet_array_free(array);
2043 return array;
2046 /* Reset the user pointer on all parameter ids in "access".
2048 static __isl_give isl_map *access_anonymize(__isl_take isl_map *access,
2049 void *user)
2051 access = map_anonymize(access);
2053 return access;
2056 /* Reset the user pointer on all parameter ids in "stmt".
2058 static struct pet_stmt *stmt_anonymize(struct pet_stmt *stmt)
2060 int i;
2061 isl_space *space;
2062 isl_set *domain;
2064 if (!stmt)
2065 return NULL;
2067 stmt->domain = set_anonymize(stmt->domain);
2068 stmt->schedule = map_anonymize(stmt->schedule);
2069 if (!stmt->domain || !stmt->schedule)
2070 return pet_stmt_free(stmt);
2072 for (i = 0; i < stmt->n_arg; ++i) {
2073 stmt->args[i] = pet_expr_foreach_access(stmt->args[i],
2074 &access_anonymize, NULL);
2075 if (!stmt->args[i])
2076 return pet_stmt_free(stmt);
2079 stmt->body = pet_expr_foreach_access(stmt->body,
2080 &access_anonymize, NULL);
2081 if (!stmt->body)
2082 return pet_stmt_free(stmt);
2084 return stmt;
2087 /* Reset the user pointer on all parameter ids in "scop".
2089 struct pet_scop *pet_scop_anonymize(struct pet_scop *scop)
2091 int i;
2093 if (!scop)
2094 return NULL;
2096 scop->context = set_anonymize(scop->context);
2097 scop->context_value = set_anonymize(scop->context_value);
2098 if (!scop->context || !scop->context_value)
2099 return pet_scop_free(scop);
2101 for (i = 0; i < scop->n_array; ++i) {
2102 scop->arrays[i] = array_anonymize(scop->arrays[i]);
2103 if (!scop->arrays[i])
2104 return pet_scop_free(scop);
2107 for (i = 0; i < scop->n_stmt; ++i) {
2108 scop->stmts[i] = stmt_anonymize(scop->stmts[i]);
2109 if (!scop->stmts[i])
2110 return pet_scop_free(scop);
2113 return scop;
2116 /* Given a set "domain", return a wrapped relation with the given set
2117 * as domain and a range of dimension "n_arg", where each coordinate
2118 * is either unbounded or, if the corresponding element of args is of
2119 * type pet_expr_access, bounded by the bounds specified by "value_bounds".
2121 static __isl_give isl_set *apply_value_bounds(__isl_take isl_set *domain,
2122 unsigned n_arg, struct pet_expr **args,
2123 __isl_keep isl_union_map *value_bounds)
2125 int i;
2126 isl_map *map;
2127 isl_space *space;
2128 isl_ctx *ctx = isl_set_get_ctx(domain);
2130 map = isl_map_from_domain(domain);
2131 space = isl_map_get_space(map);
2132 space = isl_space_add_dims(space, isl_dim_out, 1);
2134 for (i = 0; i < n_arg; ++i) {
2135 isl_map *map_i;
2136 struct pet_expr *arg = args[i];
2137 isl_id *id;
2138 isl_space *space2;
2140 map_i = isl_map_universe(isl_space_copy(space));
2141 if (arg->type == pet_expr_access) {
2142 isl_map *vb;
2143 id = isl_map_get_tuple_id(arg->acc.access, isl_dim_out);
2144 space2 = isl_space_alloc(ctx, 0, 0, 1);
2145 space2 = isl_space_set_tuple_id(space2, isl_dim_in, id);
2146 vb = isl_union_map_extract_map(value_bounds, space2);
2147 if (!isl_map_plain_is_empty(vb))
2148 map_i = isl_map_intersect_range(map_i,
2149 isl_map_range(vb));
2150 else
2151 isl_map_free(vb);
2153 map = isl_map_flat_range_product(map, map_i);
2155 isl_space_free(space);
2157 return isl_map_wrap(map);
2160 /* Data used in access_gist() callback.
2162 struct pet_access_gist_data {
2163 isl_set *domain;
2164 isl_union_map *value_bounds;
2167 /* Given an expression "expr" of type pet_expr_access, compute
2168 * the gist of the associated access relation with respect to
2169 * data->domain and the bounds on the values of the arguments
2170 * of the expression.
2172 static struct pet_expr *access_gist(struct pet_expr *expr, void *user)
2174 struct pet_access_gist_data *data = user;
2175 isl_set *domain;
2177 domain = isl_set_copy(data->domain);
2178 if (expr->n_arg > 0)
2179 domain = apply_value_bounds(domain, expr->n_arg, expr->args,
2180 data->value_bounds);
2182 expr->acc.access = isl_map_gist_domain(expr->acc.access, domain);
2183 if (!expr->acc.access)
2184 return pet_expr_free(expr);
2186 return expr;
2189 /* Compute the gist of the iteration domain and all access relations
2190 * of "stmt" based on the constraints on the parameters specified by "context"
2191 * and the constraints on the values of nested accesses specified
2192 * by "value_bounds".
2194 static struct pet_stmt *stmt_gist(struct pet_stmt *stmt,
2195 __isl_keep isl_set *context, __isl_keep isl_union_map *value_bounds)
2197 int i;
2198 isl_space *space;
2199 isl_set *domain;
2200 struct pet_access_gist_data data;
2202 if (!stmt)
2203 return NULL;
2205 data.domain = isl_set_copy(stmt->domain);
2206 data.value_bounds = value_bounds;
2207 if (stmt->n_arg > 0)
2208 data.domain = isl_map_domain(isl_set_unwrap(data.domain));
2210 data.domain = isl_set_intersect_params(data.domain,
2211 isl_set_copy(context));
2213 for (i = 0; i < stmt->n_arg; ++i) {
2214 stmt->args[i] = pet_expr_foreach_access_expr(stmt->args[i],
2215 &access_gist, &data);
2216 if (!stmt->args[i])
2217 goto error;
2220 stmt->body = pet_expr_foreach_access_expr(stmt->body,
2221 &access_gist, &data);
2222 if (!stmt->body)
2223 goto error;
2225 isl_set_free(data.domain);
2227 space = isl_set_get_space(stmt->domain);
2228 if (isl_space_is_wrapping(space))
2229 space = isl_space_domain(isl_space_unwrap(space));
2230 domain = isl_set_universe(space);
2231 domain = isl_set_intersect_params(domain, isl_set_copy(context));
2232 if (stmt->n_arg > 0)
2233 domain = apply_value_bounds(domain, stmt->n_arg, stmt->args,
2234 value_bounds);
2235 stmt->domain = isl_set_gist(stmt->domain, domain);
2236 if (!stmt->domain)
2237 return pet_stmt_free(stmt);
2239 return stmt;
2240 error:
2241 isl_set_free(data.domain);
2242 return pet_stmt_free(stmt);
2245 /* Compute the gist of the extent of the array
2246 * based on the constraints on the parameters specified by "context".
2248 static struct pet_array *array_gist(struct pet_array *array,
2249 __isl_keep isl_set *context)
2251 if (!array)
2252 return NULL;
2254 array->extent = isl_set_gist_params(array->extent,
2255 isl_set_copy(context));
2256 if (!array->extent)
2257 return pet_array_free(array);
2259 return array;
2262 /* Compute the gist of all sets and relations in "scop"
2263 * based on the constraints on the parameters specified by "scop->context"
2264 * and the constraints on the values of nested accesses specified
2265 * by "value_bounds".
2267 struct pet_scop *pet_scop_gist(struct pet_scop *scop,
2268 __isl_keep isl_union_map *value_bounds)
2270 int i;
2272 if (!scop)
2273 return NULL;
2275 scop->context = isl_set_coalesce(scop->context);
2276 if (!scop->context)
2277 return pet_scop_free(scop);
2279 for (i = 0; i < scop->n_array; ++i) {
2280 scop->arrays[i] = array_gist(scop->arrays[i], scop->context);
2281 if (!scop->arrays[i])
2282 return pet_scop_free(scop);
2285 for (i = 0; i < scop->n_stmt; ++i) {
2286 scop->stmts[i] = stmt_gist(scop->stmts[i], scop->context,
2287 value_bounds);
2288 if (!scop->stmts[i])
2289 return pet_scop_free(scop);
2292 return scop;
2295 /* Intersect the context of "scop" with "context".
2296 * To ensure that we don't introduce any unnamed parameters in
2297 * the context of "scop", we first remove the unnamed parameters
2298 * from "context".
2300 struct pet_scop *pet_scop_restrict_context(struct pet_scop *scop,
2301 __isl_take isl_set *context)
2303 if (!scop)
2304 goto error;
2306 context = set_project_out_unnamed_params(context);
2307 scop->context = isl_set_intersect(scop->context, context);
2308 if (!scop->context)
2309 return pet_scop_free(scop);
2311 return scop;
2312 error:
2313 isl_set_free(context);
2314 return pet_scop_free(scop);
2317 /* Drop the current context of "scop". That is, replace the context
2318 * by a universal set.
2320 struct pet_scop *pet_scop_reset_context(struct pet_scop *scop)
2322 isl_space *space;
2324 if (!scop)
2325 return NULL;
2327 space = isl_set_get_space(scop->context);
2328 isl_set_free(scop->context);
2329 scop->context = isl_set_universe(space);
2330 if (!scop->context)
2331 return pet_scop_free(scop);
2333 return scop;