pet_scop_embed: update context
[pet.git] / scop.c
blobcd6db107b24b1e614e104b858969d620146bbd45
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_address_of] = "&"
69 const char *pet_op_str(enum pet_op_type op)
71 return op_str[op];
74 const char *pet_type_str(enum pet_expr_type type)
76 return type_str[type];
79 enum pet_op_type pet_str_op(const char *str)
81 int i;
83 for (i = 0; i < ARRAY_SIZE(op_str); ++i)
84 if (!strcmp(op_str[i], str))
85 return i;
87 return -1;
90 enum pet_expr_type pet_str_type(const char *str)
92 int i;
94 for (i = 0; i < ARRAY_SIZE(type_str); ++i)
95 if (!strcmp(type_str[i], str))
96 return i;
98 return -1;
101 /* Construct a pet_expr from an access relation.
102 * By default, it is considered to be a read access.
104 struct pet_expr *pet_expr_from_access(__isl_take isl_map *access)
106 isl_ctx *ctx = isl_map_get_ctx(access);
107 struct pet_expr *expr;
109 if (!access)
110 return NULL;
111 expr = isl_calloc_type(ctx, struct pet_expr);
112 if (!expr)
113 goto error;
115 expr->type = pet_expr_access;
116 expr->acc.access = access;
117 expr->acc.read = 1;
118 expr->acc.write = 0;
120 return expr;
121 error:
122 isl_map_free(access);
123 return NULL;
126 /* Construct a unary pet_expr that performs "op" on "arg".
128 struct pet_expr *pet_expr_new_unary(isl_ctx *ctx, enum pet_op_type op,
129 struct pet_expr *arg)
131 struct pet_expr *expr;
133 if (!arg)
134 goto error;
135 expr = isl_alloc_type(ctx, struct pet_expr);
136 if (!expr)
137 goto error;
139 expr->type = pet_expr_unary;
140 expr->op = op;
141 expr->n_arg = 1;
142 expr->args = isl_calloc_array(ctx, struct pet_expr *, 1);
143 if (!expr->args)
144 goto error;
145 expr->args[pet_un_arg] = arg;
147 return expr;
148 error:
149 pet_expr_free(arg);
150 return NULL;
153 /* Construct a binary pet_expr that performs "op" on "lhs" and "rhs".
155 struct pet_expr *pet_expr_new_binary(isl_ctx *ctx, enum pet_op_type op,
156 struct pet_expr *lhs, struct pet_expr *rhs)
158 struct pet_expr *expr;
160 if (!lhs || !rhs)
161 goto error;
162 expr = isl_alloc_type(ctx, struct pet_expr);
163 if (!expr)
164 goto error;
166 expr->type = pet_expr_binary;
167 expr->op = op;
168 expr->n_arg = 2;
169 expr->args = isl_calloc_array(ctx, struct pet_expr *, 2);
170 if (!expr->args)
171 goto error;
172 expr->args[pet_bin_lhs] = lhs;
173 expr->args[pet_bin_rhs] = rhs;
175 return expr;
176 error:
177 pet_expr_free(lhs);
178 pet_expr_free(rhs);
179 return NULL;
182 /* Construct a ternary pet_expr that performs "cond" ? "lhs" : "rhs".
184 struct pet_expr *pet_expr_new_ternary(isl_ctx *ctx, struct pet_expr *cond,
185 struct pet_expr *lhs, struct pet_expr *rhs)
187 struct pet_expr *expr;
189 if (!cond || !lhs || !rhs)
190 goto error;
191 expr = isl_alloc_type(ctx, struct pet_expr);
192 if (!expr)
193 goto error;
195 expr->type = pet_expr_ternary;
196 expr->n_arg = 3;
197 expr->args = isl_calloc_array(ctx, struct pet_expr *, 3);
198 if (!expr->args)
199 goto error;
200 expr->args[pet_ter_cond] = cond;
201 expr->args[pet_ter_true] = lhs;
202 expr->args[pet_ter_false] = rhs;
204 return expr;
205 error:
206 pet_expr_free(cond);
207 pet_expr_free(lhs);
208 pet_expr_free(rhs);
209 return NULL;
212 /* Construct a call pet_expr that calls function "name" with "n_arg"
213 * arguments. The caller is responsible for filling in the arguments.
215 struct pet_expr *pet_expr_new_call(isl_ctx *ctx, const char *name,
216 unsigned n_arg)
218 struct pet_expr *expr;
220 expr = isl_alloc_type(ctx, struct pet_expr);
221 if (!expr)
222 return NULL;
224 expr->type = pet_expr_call;
225 expr->n_arg = n_arg;
226 expr->name = strdup(name);
227 expr->args = isl_calloc_array(ctx, struct pet_expr *, n_arg);
228 if (!expr->name || !expr->args)
229 return pet_expr_free(expr);
231 return expr;
234 /* Construct a pet_expr that represents the double "d".
236 struct pet_expr *pet_expr_new_double(isl_ctx *ctx, double d)
238 struct pet_expr *expr;
240 expr = isl_calloc_type(ctx, struct pet_expr);
241 if (!expr)
242 return NULL;
244 expr->type = pet_expr_double;
245 expr->d = d;
247 return expr;
250 void *pet_expr_free(struct pet_expr *expr)
252 int i;
254 if (!expr)
255 return NULL;
257 for (i = 0; i < expr->n_arg; ++i)
258 pet_expr_free(expr->args[i]);
259 free(expr->args);
261 switch (expr->type) {
262 case pet_expr_access:
263 isl_map_free(expr->acc.access);
264 break;
265 case pet_expr_call:
266 free(expr->name);
267 break;
268 case pet_expr_double:
269 case pet_expr_unary:
270 case pet_expr_binary:
271 case pet_expr_ternary:
272 break;
275 free(expr);
276 return NULL;
279 static void expr_dump(struct pet_expr *expr, int indent)
281 int i;
283 if (!expr)
284 return;
286 fprintf(stderr, "%*s", indent, "");
288 switch (expr->type) {
289 case pet_expr_double:
290 fprintf(stderr, "%g\n", expr->d);
291 break;
292 case pet_expr_access:
293 isl_map_dump(expr->acc.access);
294 fprintf(stderr, "%*sread: %d\n", indent + 2,
295 "", expr->acc.read);
296 fprintf(stderr, "%*swrite: %d\n", indent + 2,
297 "", expr->acc.write);
298 for (i = 0; i < expr->n_arg; ++i)
299 expr_dump(expr->args[i], indent + 2);
300 break;
301 case pet_expr_unary:
302 fprintf(stderr, "%s\n", op_str[expr->op]);
303 expr_dump(expr->args[pet_un_arg], indent + 2);
304 break;
305 case pet_expr_binary:
306 fprintf(stderr, "%s\n", op_str[expr->op]);
307 expr_dump(expr->args[pet_bin_lhs], indent + 2);
308 expr_dump(expr->args[pet_bin_rhs], indent + 2);
309 break;
310 case pet_expr_ternary:
311 fprintf(stderr, "?:\n");
312 expr_dump(expr->args[pet_ter_cond], indent + 2);
313 expr_dump(expr->args[pet_ter_true], indent + 2);
314 expr_dump(expr->args[pet_ter_false], indent + 2);
315 break;
316 case pet_expr_call:
317 fprintf(stderr, "%s/%d\n", expr->name, expr->n_arg);
318 for (i = 0; i < expr->n_arg; ++i)
319 expr_dump(expr->args[i], indent + 2);
320 break;
324 void pet_expr_dump(struct pet_expr *expr)
326 expr_dump(expr, 0);
329 /* Return 1 if the two pet_exprs are equivalent.
331 int pet_expr_is_equal(struct pet_expr *expr1, struct pet_expr *expr2)
333 int i;
335 if (!expr1 || !expr2)
336 return 0;
338 if (expr1->type != expr2->type)
339 return 0;
340 if (expr1->n_arg != expr2->n_arg)
341 return 0;
342 for (i = 0; i < expr1->n_arg; ++i)
343 if (!pet_expr_is_equal(expr1->args[i], expr2->args[i]))
344 return 0;
345 switch (expr1->type) {
346 case pet_expr_double:
347 if (expr1->d != expr2->d)
348 return 0;
349 break;
350 case pet_expr_access:
351 if (expr1->acc.read != expr2->acc.read)
352 return 0;
353 if (expr1->acc.write != expr2->acc.write)
354 return 0;
355 if (!expr1->acc.access || !expr2->acc.access)
356 return 0;
357 if (!isl_map_is_equal(expr1->acc.access, expr2->acc.access))
358 return 0;
359 break;
360 case pet_expr_unary:
361 case pet_expr_binary:
362 case pet_expr_ternary:
363 if (expr1->op != expr2->op)
364 return 0;
365 break;
366 case pet_expr_call:
367 if (strcmp(expr1->name, expr2->name))
368 return 0;
369 break;
372 return 1;
375 /* Add extra conditions on the parameters to all access relations in "expr".
377 struct pet_expr *pet_expr_restrict(struct pet_expr *expr,
378 __isl_take isl_set *cond)
380 int i;
382 if (!expr)
383 goto error;
385 for (i = 0; i < expr->n_arg; ++i) {
386 expr->args[i] = pet_expr_restrict(expr->args[i],
387 isl_set_copy(cond));
388 if (!expr->args[i])
389 goto error;
392 if (expr->type == pet_expr_access) {
393 expr->acc.access = isl_map_intersect_params(expr->acc.access,
394 isl_set_copy(cond));
395 if (!expr->acc.access)
396 goto error;
399 isl_set_free(cond);
400 return expr;
401 error:
402 isl_set_free(cond);
403 return pet_expr_free(expr);
406 /* Modify all access relations in "expr" by calling "fn" on them.
408 struct pet_expr *pet_expr_foreach_access(struct pet_expr *expr,
409 __isl_give isl_map *(*fn)(__isl_take isl_map *access, void *user),
410 void *user)
412 int i;
414 if (!expr)
415 return NULL;
417 for (i = 0; i < expr->n_arg; ++i) {
418 expr->args[i] = pet_expr_foreach_access(expr->args[i], fn, user);
419 if (!expr->args[i])
420 return pet_expr_free(expr);
423 if (expr->type == pet_expr_access) {
424 expr->acc.access = fn(expr->acc.access, user);
425 if (!expr->acc.access)
426 return pet_expr_free(expr);
429 return expr;
432 /* Modify all expressions of type pet_expr_access in "expr"
433 * by calling "fn" on them.
435 struct pet_expr *pet_expr_foreach_access_expr(struct pet_expr *expr,
436 struct pet_expr *(*fn)(struct pet_expr *expr, void *user),
437 void *user)
439 int i;
441 if (!expr)
442 return NULL;
444 for (i = 0; i < expr->n_arg; ++i) {
445 expr->args[i] = pet_expr_foreach_access_expr(expr->args[i],
446 fn, user);
447 if (!expr->args[i])
448 return pet_expr_free(expr);
451 if (expr->type == pet_expr_access)
452 expr = fn(expr, user);
454 return expr;
457 /* Modify the given access relation based on the given iteration space
458 * transformation.
459 * If the access has any arguments then the domain of the access relation
460 * is a wrapped mapping from the iteration space to the space of
461 * argument values. We only need to change the domain of this wrapped
462 * mapping, so we extend the input transformation with an identity mapping
463 * on the space of argument values.
465 static __isl_give isl_map *update_domain(__isl_take isl_map *access,
466 void *user)
468 isl_map *update = user;
469 isl_space *dim;
471 update = isl_map_copy(update);
473 dim = isl_map_get_space(access);
474 dim = isl_space_domain(dim);
475 if (!isl_space_is_wrapping(dim))
476 isl_space_free(dim);
477 else {
478 isl_map *id;
479 dim = isl_space_unwrap(dim);
480 dim = isl_space_range(dim);
481 dim = isl_space_map_from_set(dim);
482 id = isl_map_identity(dim);
483 update = isl_map_product(update, id);
486 return isl_map_apply_domain(access, update);
489 /* Modify all access relations in "expr" based on the given iteration space
490 * transformation.
492 static struct pet_expr *expr_update_domain(struct pet_expr *expr,
493 __isl_take isl_map *update)
495 expr = pet_expr_foreach_access(expr, &update_domain, update);
496 isl_map_free(update);
497 return expr;
500 /* Construct a pet_stmt with given line number and statement
501 * number from a pet_expr.
502 * The initial iteration domain is the zero-dimensional universe.
503 * The name of the domain is given by "label" if it is non-NULL.
504 * Otherwise, the name is constructed as S_<id>.
505 * The domains of all access relations are modified to refer
506 * to the statement iteration domain.
508 struct pet_stmt *pet_stmt_from_pet_expr(isl_ctx *ctx, int line,
509 __isl_take isl_id *label, int id, struct pet_expr *expr)
511 struct pet_stmt *stmt;
512 isl_space *dim;
513 isl_set *dom;
514 isl_map *sched;
515 isl_map *add_name;
516 char name[50];
518 if (!expr)
519 goto error;
521 stmt = isl_calloc_type(ctx, struct pet_stmt);
522 if (!stmt)
523 goto error;
525 dim = isl_space_set_alloc(ctx, 0, 0);
526 if (label)
527 dim = isl_space_set_tuple_id(dim, isl_dim_set, label);
528 else {
529 snprintf(name, sizeof(name), "S_%d", id);
530 dim = isl_space_set_tuple_name(dim, isl_dim_set, name);
532 dom = isl_set_universe(isl_space_copy(dim));
533 sched = isl_map_from_domain(isl_set_copy(dom));
535 dim = isl_space_from_range(dim);
536 add_name = isl_map_universe(dim);
537 expr = expr_update_domain(expr, add_name);
539 stmt->line = line;
540 stmt->domain = dom;
541 stmt->schedule = sched;
542 stmt->body = expr;
544 if (!stmt->domain || !stmt->schedule || !stmt->body)
545 return pet_stmt_free(stmt);
547 return stmt;
548 error:
549 isl_id_free(label);
550 return pet_expr_free(expr);
553 void *pet_stmt_free(struct pet_stmt *stmt)
555 int i;
557 if (!stmt)
558 return NULL;
560 isl_set_free(stmt->domain);
561 isl_map_free(stmt->schedule);
562 pet_expr_free(stmt->body);
564 for (i = 0; i < stmt->n_arg; ++i)
565 pet_expr_free(stmt->args[i]);
566 free(stmt->args);
568 free(stmt);
569 return NULL;
572 static void stmt_dump(struct pet_stmt *stmt, int indent)
574 int i;
576 if (!stmt)
577 return;
579 fprintf(stderr, "%*s%d\n", indent, "", stmt->line);
580 fprintf(stderr, "%*s", indent, "");
581 isl_set_dump(stmt->domain);
582 fprintf(stderr, "%*s", indent, "");
583 isl_map_dump(stmt->schedule);
584 expr_dump(stmt->body, indent);
585 for (i = 0; i < stmt->n_arg; ++i)
586 expr_dump(stmt->args[i], indent + 2);
589 void pet_stmt_dump(struct pet_stmt *stmt)
591 stmt_dump(stmt, 0);
594 void *pet_array_free(struct pet_array *array)
596 if (!array)
597 return NULL;
599 isl_set_free(array->context);
600 isl_set_free(array->extent);
601 isl_set_free(array->value_bounds);
602 free(array->element_type);
604 free(array);
605 return NULL;
608 void pet_array_dump(struct pet_array *array)
610 if (!array)
611 return;
613 isl_set_dump(array->context);
614 isl_set_dump(array->extent);
615 isl_set_dump(array->value_bounds);
616 fprintf(stderr, "%s %s\n", array->element_type,
617 array->live_out ? "live-out" : "");
620 /* Construct a pet_scop with room for n statements.
622 static struct pet_scop *scop_alloc(isl_ctx *ctx, int n)
624 isl_space *space;
625 struct pet_scop *scop;
627 scop = isl_calloc_type(ctx, struct pet_scop);
628 if (!scop)
629 return NULL;
631 space = isl_space_params_alloc(ctx, 0);
632 scop->context = isl_set_universe(isl_space_copy(space));
633 scop->context_value = isl_set_universe(space);
634 scop->stmts = isl_calloc_array(ctx, struct pet_stmt *, n);
635 if (!scop->context || !scop->stmts)
636 return pet_scop_free(scop);
638 scop->n_stmt = n;
640 return scop;
643 struct pet_scop *pet_scop_empty(isl_ctx *ctx)
645 return scop_alloc(ctx, 0);
648 /* Construct a pet_scop that contains the given pet_stmt.
650 struct pet_scop *pet_scop_from_pet_stmt(isl_ctx *ctx, struct pet_stmt *stmt)
652 struct pet_scop *scop;
654 if (!stmt)
655 return NULL;
657 scop = scop_alloc(ctx, 1);
659 scop->stmts[0] = stmt;
661 return scop;
662 error:
663 pet_stmt_free(stmt);
664 pet_scop_free(scop);
665 return NULL;
668 /* Construct a pet_scop that contains the arrays and the statements
669 * in "scop1" and "scop2".
671 struct pet_scop *pet_scop_add(isl_ctx *ctx, struct pet_scop *scop1,
672 struct pet_scop *scop2)
674 int i;
675 struct pet_scop *scop;
677 if (!scop1 || !scop2)
678 goto error;
680 if (scop1->n_stmt == 0) {
681 pet_scop_free(scop1);
682 return scop2;
685 if (scop2->n_stmt == 0) {
686 pet_scop_free(scop2);
687 return scop1;
690 scop = scop_alloc(ctx, scop1->n_stmt + scop2->n_stmt);
691 if (!scop)
692 goto error;
694 scop->arrays = isl_calloc_array(ctx, struct pet_array *,
695 scop1->n_array + scop2->n_array);
696 if (!scop->arrays)
697 goto error;
698 scop->n_array = scop1->n_array + scop2->n_array;
700 for (i = 0; i < scop1->n_stmt; ++i) {
701 scop->stmts[i] = scop1->stmts[i];
702 scop1->stmts[i] = NULL;
705 for (i = 0; i < scop2->n_stmt; ++i) {
706 scop->stmts[scop1->n_stmt + i] = scop2->stmts[i];
707 scop2->stmts[i] = NULL;
710 for (i = 0; i < scop1->n_array; ++i) {
711 scop->arrays[i] = scop1->arrays[i];
712 scop1->arrays[i] = NULL;
715 for (i = 0; i < scop2->n_array; ++i) {
716 scop->arrays[scop1->n_array + i] = scop2->arrays[i];
717 scop2->arrays[i] = NULL;
720 scop = pet_scop_restrict_context(scop, isl_set_copy(scop1->context));
721 scop = pet_scop_restrict_context(scop, isl_set_copy(scop2->context));
723 pet_scop_free(scop1);
724 pet_scop_free(scop2);
725 return scop;
726 error:
727 pet_scop_free(scop1);
728 pet_scop_free(scop2);
729 return NULL;
732 void *pet_scop_free(struct pet_scop *scop)
734 int i;
736 if (!scop)
737 return NULL;
738 isl_set_free(scop->context);
739 isl_set_free(scop->context_value);
740 if (scop->arrays)
741 for (i = 0; i < scop->n_array; ++i)
742 pet_array_free(scop->arrays[i]);
743 free(scop->arrays);
744 if (scop->stmts)
745 for (i = 0; i < scop->n_stmt; ++i)
746 pet_stmt_free(scop->stmts[i]);
747 free(scop->stmts);
748 free(scop);
749 return NULL;
752 void pet_scop_dump(struct pet_scop *scop)
754 int i;
756 if (!scop)
757 return;
759 isl_set_dump(scop->context);
760 isl_set_dump(scop->context_value);
761 for (i = 0; i < scop->n_array; ++i)
762 pet_array_dump(scop->arrays[i]);
763 for (i = 0; i < scop->n_stmt; ++i)
764 pet_stmt_dump(scop->stmts[i]);
767 /* Return 1 if the two pet_arrays are equivalent.
769 * We don't compare element_size as this may be target dependent.
771 int pet_array_is_equal(struct pet_array *array1, struct pet_array *array2)
773 if (!array1 || !array2)
774 return 0;
776 if (!isl_set_is_equal(array1->context, array2->context))
777 return 0;
778 if (!isl_set_is_equal(array1->extent, array2->extent))
779 return 0;
780 if (!!array1->value_bounds != !!array2->value_bounds)
781 return 0;
782 if (array1->value_bounds &&
783 !isl_set_is_equal(array1->value_bounds, array2->value_bounds))
784 return 0;
785 if (strcmp(array1->element_type, array2->element_type))
786 return 0;
787 if (array1->live_out != array2->live_out)
788 return 0;
790 return 1;
793 /* Return 1 if the two pet_stmts are equivalent.
795 int pet_stmt_is_equal(struct pet_stmt *stmt1, struct pet_stmt *stmt2)
797 int i;
799 if (!stmt1 || !stmt2)
800 return 0;
802 if (stmt1->line != stmt2->line)
803 return 0;
804 if (!isl_set_is_equal(stmt1->domain, stmt2->domain))
805 return 0;
806 if (!isl_map_is_equal(stmt1->schedule, stmt2->schedule))
807 return 0;
808 if (!pet_expr_is_equal(stmt1->body, stmt2->body))
809 return 0;
810 if (stmt1->n_arg != stmt2->n_arg)
811 return 0;
812 for (i = 0; i < stmt1->n_arg; ++i) {
813 if (!pet_expr_is_equal(stmt1->args[i], stmt2->args[i]))
814 return 0;
817 return 1;
820 /* Return 1 if the two pet_scops are equivalent.
822 int pet_scop_is_equal(struct pet_scop *scop1, struct pet_scop *scop2)
824 int i;
826 if (!scop1 || !scop2)
827 return 0;
829 if (!isl_set_is_equal(scop1->context, scop2->context))
830 return 0;
831 if (!isl_set_is_equal(scop1->context_value, scop2->context_value))
832 return 0;
834 if (scop1->n_array != scop2->n_array)
835 return 0;
836 for (i = 0; i < scop1->n_array; ++i)
837 if (!pet_array_is_equal(scop1->arrays[i], scop2->arrays[i]))
838 return 0;
840 if (scop1->n_stmt != scop2->n_stmt)
841 return 0;
842 for (i = 0; i < scop1->n_stmt; ++i)
843 if (!pet_stmt_is_equal(scop1->stmts[i], scop2->stmts[i]))
844 return 0;
846 return 1;
849 /* Prefix the schedule of "stmt" with an extra dimension with constant
850 * value "pos".
852 struct pet_stmt *pet_stmt_prefix(struct pet_stmt *stmt, int pos)
854 if (!stmt)
855 return NULL;
857 stmt->schedule = isl_map_insert_dims(stmt->schedule, isl_dim_out, 0, 1);
858 stmt->schedule = isl_map_fix_si(stmt->schedule, isl_dim_out, 0, pos);
859 if (!stmt->schedule)
860 return pet_stmt_free(stmt);
862 return stmt;
865 /* Prefix the schedules of all statements in "scop" with an extra
866 * dimension with constant value "pos".
868 struct pet_scop *pet_scop_prefix(struct pet_scop *scop, int pos)
870 int i;
872 if (!scop)
873 return NULL;
875 for (i = 0; i < scop->n_stmt; ++i) {
876 scop->stmts[i] = pet_stmt_prefix(scop->stmts[i], pos);
877 if (!scop->stmts[i])
878 return pet_scop_free(scop);
881 return scop;
884 /* Data used in embed_access.
885 * extend adds an iterator to the iteration domain
886 * var_id represents the induction variable of the corresponding loop
888 struct pet_embed_access {
889 isl_map *extend;
890 isl_id *var_id;
893 /* Embed the access relation in an extra outer loop.
895 * We first update the iteration domain to insert the extra dimension.
897 * If the access refers to the induction variable, then it is
898 * turned into an access to the set of integers with index (and value)
899 * equal to the induction variable.
901 * If the induction variable appears in the constraints (as a parameter),
902 * then the parameter is equated to the newly introduced iteration
903 * domain dimension and subsequently projected out.
905 * Similarly, if the accessed array is a virtual array (with user
906 * pointer equal to NULL), as created by create_test_access,
907 * then it is extended along with the domain of the access.
909 static __isl_give isl_map *embed_access(__isl_take isl_map *access,
910 void *user)
912 struct pet_embed_access *data = user;
913 isl_id *array_id = NULL;
914 int pos;
916 access = update_domain(access, data->extend);
918 if (isl_map_has_tuple_id(access, isl_dim_out))
919 array_id = isl_map_get_tuple_id(access, isl_dim_out);
920 if (array_id == data->var_id ||
921 (array_id && !isl_id_get_user(array_id))) {
922 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
923 access = isl_map_equate(access,
924 isl_dim_in, 0, isl_dim_out, 0);
925 if (array_id != data->var_id)
926 access = isl_map_set_tuple_id(access, isl_dim_out,
927 isl_id_copy(array_id));
929 isl_id_free(array_id);
931 pos = isl_map_find_dim_by_id(access, isl_dim_param, data->var_id);
932 if (pos >= 0) {
933 access = isl_map_equate(access,
934 isl_dim_param, pos, isl_dim_in, 0);
935 access = isl_map_project_out(access, isl_dim_param, pos, 1);
937 access = isl_map_set_dim_id(access, isl_dim_in, 0,
938 isl_id_copy(data->var_id));
940 return access;
943 /* Embed all access relations in "expr" in an extra loop.
944 * "extend" inserts an outer loop iterator in the iteration domains.
945 * "var_id" represents the induction variable.
947 static struct pet_expr *expr_embed(struct pet_expr *expr,
948 __isl_take isl_map *extend, __isl_keep isl_id *var_id)
950 struct pet_embed_access data = { .extend = extend, .var_id = var_id };
952 expr = pet_expr_foreach_access(expr, &embed_access, &data);
953 isl_map_free(extend);
954 return expr;
957 /* Embed the given pet_stmt in an extra outer loop with iteration domain
958 * "dom" and schedule "sched". "var_id" represents the induction variable
959 * of the loop.
961 * The iteration domain and schedule of the statement are updated
962 * according to the iteration domain and schedule of the new loop.
963 * If stmt->domain is a wrapped map, then the iteration domain
964 * is the domain of this map, so we need to be careful to adjust
965 * this domain.
967 * If the induction variable appears in the constraints (as a parameter)
968 * of the current iteration domain or the schedule of the statement,
969 * then the parameter is equated to the newly introduced iteration
970 * domain dimension and subsequently projected out.
972 * Finally, all access relations are updated based on the extra loop.
974 struct pet_stmt *pet_stmt_embed(struct pet_stmt *stmt, __isl_take isl_set *dom,
975 __isl_take isl_map *sched, __isl_take isl_id *var_id)
977 int i;
978 int pos;
979 isl_id *stmt_id;
980 isl_space *dim;
981 isl_map *extend;
983 if (!stmt)
984 goto error;
986 if (isl_set_is_wrapping(stmt->domain)) {
987 isl_map *map;
988 isl_map *ext;
989 isl_space *ran_dim;
991 map = isl_set_unwrap(stmt->domain);
992 stmt_id = isl_map_get_tuple_id(map, isl_dim_in);
993 ran_dim = isl_space_range(isl_map_get_space(map));
994 ext = isl_map_from_domain_and_range(isl_set_copy(dom),
995 isl_set_universe(ran_dim));
996 map = isl_map_flat_domain_product(ext, map);
997 map = isl_map_set_tuple_id(map, isl_dim_in,
998 isl_id_copy(stmt_id));
999 dim = isl_space_domain(isl_map_get_space(map));
1000 stmt->domain = isl_map_wrap(map);
1001 } else {
1002 stmt_id = isl_set_get_tuple_id(stmt->domain);
1003 stmt->domain = isl_set_flat_product(isl_set_copy(dom),
1004 stmt->domain);
1005 stmt->domain = isl_set_set_tuple_id(stmt->domain,
1006 isl_id_copy(stmt_id));
1007 dim = isl_set_get_space(stmt->domain);
1010 pos = isl_set_find_dim_by_id(stmt->domain, isl_dim_param, var_id);
1011 if (pos >= 0) {
1012 stmt->domain = isl_set_equate(stmt->domain,
1013 isl_dim_param, pos, isl_dim_set, 0);
1014 stmt->domain = isl_set_project_out(stmt->domain,
1015 isl_dim_param, pos, 1);
1018 stmt->schedule = isl_map_flat_product(sched, stmt->schedule);
1019 stmt->schedule = isl_map_set_tuple_id(stmt->schedule,
1020 isl_dim_in, stmt_id);
1022 pos = isl_map_find_dim_by_id(stmt->schedule, isl_dim_param, var_id);
1023 if (pos >= 0) {
1024 stmt->schedule = isl_map_equate(stmt->schedule,
1025 isl_dim_param, pos, isl_dim_in, 0);
1026 stmt->schedule = isl_map_project_out(stmt->schedule,
1027 isl_dim_param, pos, 1);
1030 dim = isl_space_map_from_set(dim);
1031 extend = isl_map_identity(dim);
1032 extend = isl_map_remove_dims(extend, isl_dim_in, 0, 1);
1033 extend = isl_map_set_tuple_id(extend, isl_dim_in,
1034 isl_map_get_tuple_id(extend, isl_dim_out));
1035 for (i = 0; i < stmt->n_arg; ++i)
1036 stmt->args[i] = expr_embed(stmt->args[i],
1037 isl_map_copy(extend), var_id);
1038 stmt->body = expr_embed(stmt->body, extend, var_id);
1040 isl_set_free(dom);
1041 isl_id_free(var_id);
1043 for (i = 0; i < stmt->n_arg; ++i)
1044 if (!stmt->args[i])
1045 return pet_stmt_free(stmt);
1046 if (!stmt->domain || !stmt->schedule || !stmt->body)
1047 return pet_stmt_free(stmt);
1048 return stmt;
1049 error:
1050 isl_set_free(dom);
1051 isl_map_free(sched);
1052 isl_id_free(var_id);
1053 return NULL;
1056 /* Embed the given pet_array in an extra outer loop with iteration domain
1057 * "dom".
1058 * This embedding only has an effect on virtual arrays (those with
1059 * user pointer equal to NULL), which need to be extended along with
1060 * the iteration domain.
1062 static struct pet_array *pet_array_embed(struct pet_array *array,
1063 __isl_take isl_set *dom)
1065 isl_id *array_id = NULL;
1067 if (!array)
1068 goto error;
1070 if (isl_set_has_tuple_id(array->extent))
1071 array_id = isl_set_get_tuple_id(array->extent);
1073 if (array_id && !isl_id_get_user(array_id)) {
1074 array->extent = isl_set_flat_product(dom, array->extent);
1075 array->extent = isl_set_set_tuple_id(array->extent, array_id);
1076 } else {
1077 isl_set_free(dom);
1078 isl_id_free(array_id);
1081 return array;
1082 error:
1083 isl_set_free(dom);
1084 return NULL;
1087 /* Project out all unnamed parameters from "set" and return the result.
1089 static __isl_give isl_set *set_project_out_unnamed_params(
1090 __isl_take isl_set *set)
1092 int i, n;
1094 n = isl_set_dim(set, isl_dim_param);
1095 for (i = n - 1; i >= 0; --i) {
1096 if (isl_set_has_dim_name(set, isl_dim_param, i))
1097 continue;
1098 set = isl_set_project_out(set, isl_dim_param, i, 1);
1101 return set;
1104 /* Update the context with respect to an embedding into a loop
1105 * with iteration domain "dom" and induction variable "id".
1107 * If the current context is independent of "id", we don't need
1108 * to do anything.
1109 * Otherwise, a parameter value is invalid for the embedding if
1110 * any of the corresponding iterator values is invalid.
1111 * That is, a parameter value is valid only if all the corresponding
1112 * iterator values are valid.
1113 * We therefore compute the set of parameters
1115 * forall i in dom : valid (i)
1117 * or
1119 * not exists i in dom : not valid(i)
1121 * i.e.,
1123 * not exists i in dom \ valid(i)
1125 * If there are any unnamed parameters in "dom", then we consider
1126 * a parameter value to be valid if it is valid for any value of those
1127 * unnamed parameters. They are therefore projected out at the end.
1129 static __isl_give isl_set *context_embed(__isl_take isl_set *context,
1130 __isl_keep isl_set *dom, __isl_keep isl_id *id)
1132 int pos;
1134 pos = isl_set_find_dim_by_id(context, isl_dim_param, id);
1135 if (pos < 0)
1136 return context;
1138 context = isl_set_from_params(context);
1139 context = isl_set_add_dims(context, isl_dim_set, 1);
1140 context = isl_set_equate(context, isl_dim_param, pos, isl_dim_set, 0);
1141 context = isl_set_project_out(context, isl_dim_param, pos, 1);
1142 context = isl_set_subtract(isl_set_copy(dom), context);
1143 context = isl_set_params(context);
1144 context = isl_set_complement(context);
1145 context = set_project_out_unnamed_params(context);
1146 return context;
1149 /* Embed all statements and arrays in "scop" in an extra outer loop
1150 * with iteration domain "dom" and schedule "sched".
1151 * "id" represents the induction variable of the loop.
1153 struct pet_scop *pet_scop_embed(struct pet_scop *scop, __isl_take isl_set *dom,
1154 __isl_take isl_map *sched, __isl_take isl_id *id)
1156 int i;
1158 if (!scop)
1159 goto error;
1161 scop->context = context_embed(scop->context, dom, id);
1162 if (!scop->context)
1163 goto error;
1165 for (i = 0; i < scop->n_stmt; ++i) {
1166 scop->stmts[i] = pet_stmt_embed(scop->stmts[i],
1167 isl_set_copy(dom),
1168 isl_map_copy(sched), isl_id_copy(id));
1169 if (!scop->stmts[i])
1170 goto error;
1173 for (i = 0; i < scop->n_array; ++i) {
1174 scop->arrays[i] = pet_array_embed(scop->arrays[i],
1175 isl_set_copy(dom));
1176 if (!scop->arrays[i])
1177 goto error;
1180 isl_set_free(dom);
1181 isl_map_free(sched);
1182 isl_id_free(id);
1183 return scop;
1184 error:
1185 isl_set_free(dom);
1186 isl_map_free(sched);
1187 isl_id_free(id);
1188 return pet_scop_free(scop);
1191 /* Add extra conditions on the parameters to iteration domain of "stmt".
1193 static struct pet_stmt *stmt_restrict(struct pet_stmt *stmt,
1194 __isl_take isl_set *cond)
1196 if (!stmt)
1197 goto error;
1199 stmt->domain = isl_set_intersect_params(stmt->domain, cond);
1201 return stmt;
1202 error:
1203 isl_set_free(cond);
1204 return pet_stmt_free(stmt);
1207 /* Add extra conditions on the parameters to all iteration domains.
1209 struct pet_scop *pet_scop_restrict(struct pet_scop *scop,
1210 __isl_take isl_set *cond)
1212 int i;
1214 if (!scop)
1215 goto error;
1217 for (i = 0; i < scop->n_stmt; ++i) {
1218 scop->stmts[i] = stmt_restrict(scop->stmts[i],
1219 isl_set_copy(cond));
1220 if (!scop->stmts[i])
1221 goto error;
1224 isl_set_free(cond);
1225 return scop;
1226 error:
1227 isl_set_free(cond);
1228 return pet_scop_free(scop);
1231 /* Make the statements "stmt" depend on the value of "test"
1232 * being equal to "satisfied" by adjusting stmt->domain.
1234 * We insert an argument corresponding to a read to "test"
1235 * from the iteration domain of "stmt" in front of the list of arguments.
1236 * We also insert a corresponding output dimension in the wrapped
1237 * map contained in stmt->domain, with value set to "satisfied".
1239 static struct pet_stmt *stmt_filter(struct pet_stmt *stmt,
1240 __isl_take isl_map *test, int satisfied)
1242 int i;
1243 isl_id *id;
1244 isl_ctx *ctx;
1245 isl_map *map;
1246 isl_set *dom;
1248 if (!stmt || !test)
1249 goto error;
1251 if (isl_set_is_wrapping(stmt->domain))
1252 map = isl_set_unwrap(stmt->domain);
1253 else
1254 map = isl_map_from_domain(stmt->domain);
1255 map = isl_map_insert_dims(map, isl_dim_out, 0, 1);
1256 id = isl_map_get_tuple_id(test, isl_dim_out);
1257 map = isl_map_set_dim_id(map, isl_dim_out, 0, id);
1258 map = isl_map_fix_si(map, isl_dim_out, 0, satisfied);
1259 dom = isl_set_universe(isl_space_domain(isl_map_get_space(map)));
1260 test = isl_map_apply_domain(test, isl_map_from_range(dom));
1262 stmt->domain = isl_map_wrap(map);
1264 ctx = isl_map_get_ctx(test);
1265 if (!stmt->args) {
1266 stmt->args = isl_calloc_array(ctx, struct pet_expr *, 1);
1267 if (!stmt->args)
1268 goto error;
1269 } else {
1270 struct pet_expr **args;
1271 args = isl_calloc_array(ctx, struct pet_expr *, 1 + stmt->n_arg);
1272 if (!args)
1273 goto error;
1274 for (i = 0; i < stmt->n_arg; ++i)
1275 args[1 + i] = stmt->args[i];
1276 free(stmt->args);
1277 stmt->args = args;
1279 stmt->n_arg++;
1280 stmt->args[0] = pet_expr_from_access(isl_map_copy(test));
1281 if (!stmt->args[0])
1282 goto error;
1284 isl_map_free(test);
1285 return stmt;
1286 error:
1287 isl_map_free(test);
1288 return pet_stmt_free(stmt);
1291 /* Make all statements in "scop" depend on the value of "test"
1292 * being equal to "satisfied" by adjusting their domains.
1294 struct pet_scop *pet_scop_filter(struct pet_scop *scop,
1295 __isl_take isl_map *test, int satisfied)
1297 int i;
1299 if (!scop)
1300 goto error;
1302 for (i = 0; i < scop->n_stmt; ++i) {
1303 scop->stmts[i] = stmt_filter(scop->stmts[i],
1304 isl_map_copy(test), satisfied);
1305 if (!scop->stmts[i])
1306 goto error;
1309 isl_map_free(test);
1310 return scop;
1311 error:
1312 isl_map_free(test);
1313 return pet_scop_free(scop);
1316 /* Add all parameters in "expr" to "dim" and return the result.
1318 static __isl_give isl_space *expr_collect_params(struct pet_expr *expr,
1319 __isl_take isl_space *dim)
1321 int i;
1323 if (!expr)
1324 goto error;
1325 for (i = 0; i < expr->n_arg; ++i)
1327 dim = expr_collect_params(expr->args[i], dim);
1329 if (expr->type == pet_expr_access)
1330 dim = isl_space_align_params(dim,
1331 isl_map_get_space(expr->acc.access));
1333 return dim;
1334 error:
1335 isl_space_free(dim);
1336 return pet_expr_free(expr);
1339 /* Add all parameters in "stmt" to "dim" and return the result.
1341 static __isl_give isl_space *stmt_collect_params(struct pet_stmt *stmt,
1342 __isl_take isl_space *dim)
1344 if (!stmt)
1345 goto error;
1347 dim = isl_space_align_params(dim, isl_set_get_space(stmt->domain));
1348 dim = isl_space_align_params(dim, isl_map_get_space(stmt->schedule));
1349 dim = expr_collect_params(stmt->body, dim);
1351 return dim;
1352 error:
1353 isl_space_free(dim);
1354 return pet_stmt_free(stmt);
1357 /* Add all parameters in "array" to "dim" and return the result.
1359 static __isl_give isl_space *array_collect_params(struct pet_array *array,
1360 __isl_take isl_space *dim)
1362 if (!array)
1363 goto error;
1365 dim = isl_space_align_params(dim, isl_set_get_space(array->context));
1366 dim = isl_space_align_params(dim, isl_set_get_space(array->extent));
1368 return dim;
1369 error:
1370 isl_space_free(dim);
1371 return pet_array_free(array);
1374 /* Add all parameters in "scop" to "dim" and return the result.
1376 static __isl_give isl_space *scop_collect_params(struct pet_scop *scop,
1377 __isl_take isl_space *dim)
1379 int i;
1381 if (!scop)
1382 goto error;
1384 for (i = 0; i < scop->n_array; ++i)
1385 dim = array_collect_params(scop->arrays[i], dim);
1387 for (i = 0; i < scop->n_stmt; ++i)
1388 dim = stmt_collect_params(scop->stmts[i], dim);
1390 return dim;
1391 error:
1392 isl_space_free(dim);
1393 return pet_scop_free(scop);
1396 /* Add all parameters in "dim" to all access relations in "expr".
1398 static struct pet_expr *expr_propagate_params(struct pet_expr *expr,
1399 __isl_take isl_space *dim)
1401 int i;
1403 if (!expr)
1404 goto error;
1406 for (i = 0; i < expr->n_arg; ++i) {
1407 expr->args[i] =
1408 expr_propagate_params(expr->args[i],
1409 isl_space_copy(dim));
1410 if (!expr->args[i])
1411 goto error;
1414 if (expr->type == pet_expr_access) {
1415 expr->acc.access = isl_map_align_params(expr->acc.access,
1416 isl_space_copy(dim));
1417 if (!expr->acc.access)
1418 goto error;
1421 isl_space_free(dim);
1422 return expr;
1423 error:
1424 isl_space_free(dim);
1425 return pet_expr_free(expr);
1428 /* Add all parameters in "dim" to the domain, schedule and
1429 * all access relations in "stmt".
1431 static struct pet_stmt *stmt_propagate_params(struct pet_stmt *stmt,
1432 __isl_take isl_space *dim)
1434 if (!stmt)
1435 goto error;
1437 stmt->domain = isl_set_align_params(stmt->domain, isl_space_copy(dim));
1438 stmt->schedule = isl_map_align_params(stmt->schedule,
1439 isl_space_copy(dim));
1440 stmt->body = expr_propagate_params(stmt->body, isl_space_copy(dim));
1442 if (!stmt->domain || !stmt->schedule || !stmt->body)
1443 goto error;
1445 isl_space_free(dim);
1446 return stmt;
1447 error:
1448 isl_space_free(dim);
1449 return pet_stmt_free(stmt);
1452 /* Add all parameters in "dim" to "array".
1454 static struct pet_array *array_propagate_params(struct pet_array *array,
1455 __isl_take isl_space *dim)
1457 if (!array)
1458 goto error;
1460 array->context = isl_set_align_params(array->context,
1461 isl_space_copy(dim));
1462 array->extent = isl_set_align_params(array->extent,
1463 isl_space_copy(dim));
1464 if (array->value_bounds) {
1465 array->value_bounds = isl_set_align_params(array->value_bounds,
1466 isl_space_copy(dim));
1467 if (!array->value_bounds)
1468 goto error;
1471 if (!array->context || !array->extent)
1472 goto error;
1474 isl_space_free(dim);
1475 return array;
1476 error:
1477 isl_space_free(dim);
1478 return pet_array_free(array);
1481 /* Add all parameters in "dim" to "scop".
1483 static struct pet_scop *scop_propagate_params(struct pet_scop *scop,
1484 __isl_take isl_space *dim)
1486 int i;
1488 if (!scop)
1489 goto error;
1491 for (i = 0; i < scop->n_array; ++i) {
1492 scop->arrays[i] = array_propagate_params(scop->arrays[i],
1493 isl_space_copy(dim));
1494 if (!scop->arrays[i])
1495 goto error;
1498 for (i = 0; i < scop->n_stmt; ++i) {
1499 scop->stmts[i] = stmt_propagate_params(scop->stmts[i],
1500 isl_space_copy(dim));
1501 if (!scop->stmts[i])
1502 goto error;
1505 isl_space_free(dim);
1506 return scop;
1507 error:
1508 isl_space_free(dim);
1509 return pet_scop_free(scop);
1512 /* Update all isl_sets and isl_maps in "scop" such that they all
1513 * have the same parameters.
1515 struct pet_scop *pet_scop_align_params(struct pet_scop *scop)
1517 isl_space *dim;
1519 if (!scop)
1520 return NULL;
1522 dim = isl_set_get_space(scop->context);
1523 dim = scop_collect_params(scop, dim);
1525 scop->context = isl_set_align_params(scop->context, isl_space_copy(dim));
1526 scop = scop_propagate_params(scop, dim);
1528 return scop;
1531 /* Check if the given access relation accesses a (0D) array that corresponds
1532 * to one of the parameters in "dim". If so, replace the array access
1533 * by an access to the set of integers with as index (and value)
1534 * that parameter.
1536 static __isl_give isl_map *access_detect_parameter(__isl_take isl_map *access,
1537 __isl_take isl_space *dim)
1539 isl_id *array_id = NULL;
1540 int pos = -1;
1542 if (isl_map_has_tuple_id(access, isl_dim_out)) {
1543 array_id = isl_map_get_tuple_id(access, isl_dim_out);
1544 pos = isl_space_find_dim_by_id(dim, isl_dim_param, array_id);
1546 isl_space_free(dim);
1548 if (pos < 0) {
1549 isl_id_free(array_id);
1550 return access;
1553 pos = isl_map_find_dim_by_id(access, isl_dim_param, array_id);
1554 if (pos < 0) {
1555 access = isl_map_insert_dims(access, isl_dim_param, 0, 1);
1556 access = isl_map_set_dim_id(access, isl_dim_param, 0, array_id);
1557 pos = 0;
1558 } else
1559 isl_id_free(array_id);
1561 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
1562 access = isl_map_equate(access, isl_dim_param, pos, isl_dim_out, 0);
1564 return access;
1567 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1568 * in "dim" by a value equal to the corresponding parameter.
1570 static struct pet_expr *expr_detect_parameter_accesses(struct pet_expr *expr,
1571 __isl_take isl_space *dim)
1573 int i;
1575 if (!expr)
1576 goto error;
1578 for (i = 0; i < expr->n_arg; ++i) {
1579 expr->args[i] =
1580 expr_detect_parameter_accesses(expr->args[i],
1581 isl_space_copy(dim));
1582 if (!expr->args[i])
1583 goto error;
1586 if (expr->type == pet_expr_access) {
1587 expr->acc.access = access_detect_parameter(expr->acc.access,
1588 isl_space_copy(dim));
1589 if (!expr->acc.access)
1590 goto error;
1593 isl_space_free(dim);
1594 return expr;
1595 error:
1596 isl_space_free(dim);
1597 return pet_expr_free(expr);
1600 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1601 * in "dim" by a value equal to the corresponding parameter.
1603 static struct pet_stmt *stmt_detect_parameter_accesses(struct pet_stmt *stmt,
1604 __isl_take isl_space *dim)
1606 if (!stmt)
1607 goto error;
1609 stmt->body = expr_detect_parameter_accesses(stmt->body,
1610 isl_space_copy(dim));
1612 if (!stmt->domain || !stmt->schedule || !stmt->body)
1613 goto error;
1615 isl_space_free(dim);
1616 return stmt;
1617 error:
1618 isl_space_free(dim);
1619 return pet_stmt_free(stmt);
1622 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1623 * in "dim" by a value equal to the corresponding parameter.
1625 static struct pet_scop *scop_detect_parameter_accesses(struct pet_scop *scop,
1626 __isl_take isl_space *dim)
1628 int i;
1630 if (!scop)
1631 goto error;
1633 for (i = 0; i < scop->n_stmt; ++i) {
1634 scop->stmts[i] = stmt_detect_parameter_accesses(scop->stmts[i],
1635 isl_space_copy(dim));
1636 if (!scop->stmts[i])
1637 goto error;
1640 isl_space_free(dim);
1641 return scop;
1642 error:
1643 isl_space_free(dim);
1644 return pet_scop_free(scop);
1647 /* Replace all accesses to (0D) arrays that correspond to any of
1648 * the parameters used in "scop" by a value equal
1649 * to the corresponding parameter.
1651 struct pet_scop *pet_scop_detect_parameter_accesses(struct pet_scop *scop)
1653 isl_space *dim;
1655 if (!scop)
1656 return NULL;
1658 dim = isl_set_get_space(scop->context);
1659 dim = scop_collect_params(scop, dim);
1661 scop = scop_detect_parameter_accesses(scop, dim);
1663 return scop;
1666 /* Add all read access relations (if "read" is set) and/or all write
1667 * access relations (if "write" is set) to "accesses" and return the result.
1669 static __isl_give isl_union_map *expr_collect_accesses(struct pet_expr *expr,
1670 int read, int write, __isl_take isl_union_map *accesses)
1672 int i;
1673 isl_id *id;
1674 isl_space *dim;
1676 if (!expr)
1677 return NULL;
1679 for (i = 0; i < expr->n_arg; ++i)
1680 accesses = expr_collect_accesses(expr->args[i],
1681 read, write, accesses);
1683 if (expr->type == pet_expr_access &&
1684 isl_map_has_tuple_id(expr->acc.access, isl_dim_out) &&
1685 ((read && expr->acc.read) || (write && expr->acc.write)))
1686 accesses = isl_union_map_add_map(accesses,
1687 isl_map_copy(expr->acc.access));
1689 return accesses;
1692 /* Collect and return all read access relations (if "read" is set)
1693 * and/or all write * access relations (if "write" is set) in "stmt".
1695 static __isl_give isl_union_map *stmt_collect_accesses(struct pet_stmt *stmt,
1696 int read, int write, __isl_take isl_space *dim)
1698 isl_union_map *accesses;
1700 if (!stmt)
1701 return NULL;
1703 accesses = isl_union_map_empty(dim);
1704 accesses = expr_collect_accesses(stmt->body, read, write, accesses);
1705 accesses = isl_union_map_intersect_domain(accesses,
1706 isl_union_set_from_set(isl_set_copy(stmt->domain)));
1708 return accesses;
1711 /* Collect and return all read access relations (if "read" is set)
1712 * and/or all write * access relations (if "write" is set) in "scop".
1714 static __isl_give isl_union_map *scop_collect_accesses(struct pet_scop *scop,
1715 int read, int write)
1717 int i;
1718 isl_union_map *accesses;
1720 if (!scop)
1721 return NULL;
1723 accesses = isl_union_map_empty(isl_set_get_space(scop->context));
1725 for (i = 0; i < scop->n_stmt; ++i) {
1726 isl_union_map *accesses_i;
1727 isl_space *dim = isl_set_get_space(scop->context);
1728 accesses_i = stmt_collect_accesses(scop->stmts[i],
1729 read, write, dim);
1730 accesses = isl_union_map_union(accesses, accesses_i);
1733 return accesses;
1736 __isl_give isl_union_map *pet_scop_collect_reads(struct pet_scop *scop)
1738 return scop_collect_accesses(scop, 1, 0);
1741 __isl_give isl_union_map *pet_scop_collect_writes(struct pet_scop *scop)
1743 return scop_collect_accesses(scop, 0, 1);
1746 /* Collect and return the union of iteration domains in "scop".
1748 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop)
1750 int i;
1751 isl_set *domain_i;
1752 isl_union_set *domain;
1754 if (!scop)
1755 return NULL;
1757 domain = isl_union_set_empty(isl_set_get_space(scop->context));
1759 for (i = 0; i < scop->n_stmt; ++i) {
1760 domain_i = isl_set_copy(scop->stmts[i]->domain);
1761 domain = isl_union_set_add_set(domain, domain_i);
1764 return domain;
1767 /* Collect and return the schedules of the statements in "scop".
1768 * The range is normalized to the maximal number of scheduling
1769 * dimensions.
1771 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop)
1773 int i, j;
1774 isl_map *schedule_i;
1775 isl_union_map *schedule;
1776 int depth, max_depth = 0;
1778 if (!scop)
1779 return NULL;
1781 schedule = isl_union_map_empty(isl_set_get_space(scop->context));
1783 for (i = 0; i < scop->n_stmt; ++i) {
1784 depth = isl_map_dim(scop->stmts[i]->schedule, isl_dim_out);
1785 if (depth > max_depth)
1786 max_depth = depth;
1789 for (i = 0; i < scop->n_stmt; ++i) {
1790 schedule_i = isl_map_copy(scop->stmts[i]->schedule);
1791 depth = isl_map_dim(schedule_i, isl_dim_out);
1792 schedule_i = isl_map_add_dims(schedule_i, isl_dim_out,
1793 max_depth - depth);
1794 for (j = depth; j < max_depth; ++j)
1795 schedule_i = isl_map_fix_si(schedule_i,
1796 isl_dim_out, j, 0);
1797 schedule = isl_union_map_add_map(schedule, schedule_i);
1800 return schedule;
1803 /* Does expression "expr" write to "id"?
1805 static int expr_writes(struct pet_expr *expr, __isl_keep isl_id *id)
1807 int i;
1808 isl_id *write_id;
1810 for (i = 0; i < expr->n_arg; ++i) {
1811 int writes = expr_writes(expr->args[i], id);
1812 if (writes < 0 || writes)
1813 return writes;
1816 if (expr->type != pet_expr_access)
1817 return 0;
1818 if (!expr->acc.write)
1819 return 0;
1820 if (!isl_map_has_tuple_id(expr->acc.access, isl_dim_out))
1821 return 0;
1823 write_id = isl_map_get_tuple_id(expr->acc.access, isl_dim_out);
1824 isl_id_free(write_id);
1826 if (!write_id)
1827 return -1;
1829 return write_id == id;
1832 /* Does statement "stmt" write to "id"?
1834 static int stmt_writes(struct pet_stmt *stmt, __isl_keep isl_id *id)
1836 return expr_writes(stmt->body, id);
1839 /* Is there any write access in "scop" that accesses "id"?
1841 int pet_scop_writes(struct pet_scop *scop, __isl_keep isl_id *id)
1843 int i;
1845 if (!scop)
1846 return -1;
1848 for (i = 0; i < scop->n_stmt; ++i) {
1849 int writes = stmt_writes(scop->stmts[i], id);
1850 if (writes < 0 || writes)
1851 return writes;
1854 return 0;
1857 /* Reset the user pointer on all parameter ids in "set".
1859 static __isl_give isl_set *set_anonymize(__isl_take isl_set *set)
1861 int i, n;
1863 n = isl_set_dim(set, isl_dim_param);
1864 for (i = 0; i < n; ++i) {
1865 isl_id *id = isl_set_get_dim_id(set, isl_dim_param, i);
1866 const char *name = isl_id_get_name(id);
1867 set = isl_set_set_dim_name(set, isl_dim_param, i, name);
1868 isl_id_free(id);
1871 return set;
1874 /* Reset the user pointer on all parameter ids in "map".
1876 static __isl_give isl_map *map_anonymize(__isl_take isl_map *map)
1878 int i, n;
1880 n = isl_map_dim(map, isl_dim_param);
1881 for (i = 0; i < n; ++i) {
1882 isl_id *id = isl_map_get_dim_id(map, isl_dim_param, i);
1883 const char *name = isl_id_get_name(id);
1884 map = isl_map_set_dim_name(map, isl_dim_param, i, name);
1885 isl_id_free(id);
1888 return map;
1891 /* Reset the user pointer on all parameter ids in "array".
1893 static struct pet_array *array_anonymize(struct pet_array *array)
1895 if (!array)
1896 return NULL;
1898 array->context = set_anonymize(array->context);
1899 array->extent = set_anonymize(array->extent);
1900 if (!array->context || !array->extent)
1901 return pet_array_free(array);
1903 return array;
1906 /* Reset the user pointer on all parameter ids in "access".
1908 static __isl_give isl_map *access_anonymize(__isl_take isl_map *access,
1909 void *user)
1911 access = map_anonymize(access);
1913 return access;
1916 /* Reset the user pointer on all parameter ids in "stmt".
1918 static struct pet_stmt *stmt_anonymize(struct pet_stmt *stmt)
1920 int i;
1921 isl_space *space;
1922 isl_set *domain;
1924 if (!stmt)
1925 return NULL;
1927 stmt->domain = set_anonymize(stmt->domain);
1928 stmt->schedule = map_anonymize(stmt->schedule);
1929 if (!stmt->domain || !stmt->schedule)
1930 return pet_stmt_free(stmt);
1932 for (i = 0; i < stmt->n_arg; ++i) {
1933 stmt->args[i] = pet_expr_foreach_access(stmt->args[i],
1934 &access_anonymize, NULL);
1935 if (!stmt->args[i])
1936 return pet_stmt_free(stmt);
1939 stmt->body = pet_expr_foreach_access(stmt->body,
1940 &access_anonymize, NULL);
1941 if (!stmt->body)
1942 return pet_stmt_free(stmt);
1944 return stmt;
1947 /* Reset the user pointer on all parameter ids in "scop".
1949 struct pet_scop *pet_scop_anonymize(struct pet_scop *scop)
1951 int i;
1953 if (!scop)
1954 return NULL;
1956 scop->context = set_anonymize(scop->context);
1957 scop->context_value = set_anonymize(scop->context_value);
1958 if (!scop->context || !scop->context_value)
1959 return pet_scop_free(scop);
1961 for (i = 0; i < scop->n_array; ++i) {
1962 scop->arrays[i] = array_anonymize(scop->arrays[i]);
1963 if (!scop->arrays[i])
1964 return pet_scop_free(scop);
1967 for (i = 0; i < scop->n_stmt; ++i) {
1968 scop->stmts[i] = stmt_anonymize(scop->stmts[i]);
1969 if (!scop->stmts[i])
1970 return pet_scop_free(scop);
1973 return scop;
1976 /* Given a set "domain", return a wrapped relation with the given set
1977 * as domain and a range of dimension "n_arg", where each coordinate
1978 * is either unbounded or, if the corresponding element of args is of
1979 * type pet_expr_access, bounded by the bounds specified by "value_bounds".
1981 static __isl_give isl_set *apply_value_bounds(__isl_take isl_set *domain,
1982 unsigned n_arg, struct pet_expr **args,
1983 __isl_keep isl_union_map *value_bounds)
1985 int i;
1986 isl_map *map;
1987 isl_space *space;
1988 isl_ctx *ctx = isl_set_get_ctx(domain);
1990 map = isl_map_from_domain(domain);
1991 space = isl_map_get_space(map);
1992 space = isl_space_add_dims(space, isl_dim_out, 1);
1994 for (i = 0; i < n_arg; ++i) {
1995 isl_map *map_i;
1996 struct pet_expr *arg = args[i];
1997 isl_id *id;
1998 isl_space *space2;
2000 map_i = isl_map_universe(isl_space_copy(space));
2001 if (arg->type == pet_expr_access) {
2002 isl_map *vb;
2003 id = isl_map_get_tuple_id(arg->acc.access, isl_dim_out);
2004 space2 = isl_space_alloc(ctx, 0, 0, 1);
2005 space2 = isl_space_set_tuple_id(space2, isl_dim_in, id);
2006 vb = isl_union_map_extract_map(value_bounds, space2);
2007 if (!isl_map_plain_is_empty(vb))
2008 map_i = isl_map_intersect_range(map_i,
2009 isl_map_range(vb));
2010 else
2011 isl_map_free(vb);
2013 map = isl_map_flat_range_product(map, map_i);
2015 isl_space_free(space);
2017 return isl_map_wrap(map);
2020 /* Data used in access_gist() callback.
2022 struct pet_access_gist_data {
2023 isl_set *domain;
2024 isl_union_map *value_bounds;
2027 /* Given an expression "expr" of type pet_expr_access, compute
2028 * the gist of the associated access relation with respect to
2029 * data->domain and the bounds on the values of the arguments
2030 * of the expression.
2032 static struct pet_expr *access_gist(struct pet_expr *expr, void *user)
2034 struct pet_access_gist_data *data = user;
2035 isl_set *domain;
2037 domain = isl_set_copy(data->domain);
2038 if (expr->n_arg > 0)
2039 domain = apply_value_bounds(domain, expr->n_arg, expr->args,
2040 data->value_bounds);
2042 expr->acc.access = isl_map_gist_domain(expr->acc.access, domain);
2043 if (!expr->acc.access)
2044 return pet_expr_free(expr);
2046 return expr;
2049 /* Compute the gist of the iteration domain and all access relations
2050 * of "stmt" based on the constraints on the parameters specified by "context"
2051 * and the constraints on the values of nested accesses specified
2052 * by "value_bounds".
2054 static struct pet_stmt *stmt_gist(struct pet_stmt *stmt,
2055 __isl_keep isl_set *context, __isl_keep isl_union_map *value_bounds)
2057 int i;
2058 isl_space *space;
2059 isl_set *domain;
2060 struct pet_access_gist_data data;
2062 if (!stmt)
2063 return NULL;
2065 data.domain = isl_set_copy(stmt->domain);
2066 data.value_bounds = value_bounds;
2067 if (stmt->n_arg > 0)
2068 data.domain = isl_map_domain(isl_set_unwrap(data.domain));
2070 data.domain = isl_set_intersect_params(data.domain,
2071 isl_set_copy(context));
2073 for (i = 0; i < stmt->n_arg; ++i) {
2074 stmt->args[i] = pet_expr_foreach_access_expr(stmt->args[i],
2075 &access_gist, &data);
2076 if (!stmt->args[i])
2077 goto error;
2080 stmt->body = pet_expr_foreach_access_expr(stmt->body,
2081 &access_gist, &data);
2082 if (!stmt->body)
2083 goto error;
2085 isl_set_free(data.domain);
2087 space = isl_set_get_space(stmt->domain);
2088 if (isl_space_is_wrapping(space))
2089 space = isl_space_domain(isl_space_unwrap(space));
2090 domain = isl_set_universe(space);
2091 domain = isl_set_intersect_params(domain, isl_set_copy(context));
2092 if (stmt->n_arg > 0)
2093 domain = apply_value_bounds(domain, stmt->n_arg, stmt->args,
2094 value_bounds);
2095 stmt->domain = isl_set_gist(stmt->domain, domain);
2096 if (!stmt->domain)
2097 return pet_stmt_free(stmt);
2099 return stmt;
2100 error:
2101 isl_set_free(data.domain);
2102 return pet_stmt_free(stmt);
2105 /* Compute the gist of the extent of the array
2106 * based on the constraints on the parameters specified by "context".
2108 static struct pet_array *array_gist(struct pet_array *array,
2109 __isl_keep isl_set *context)
2111 if (!array)
2112 return NULL;
2114 array->extent = isl_set_gist_params(array->extent,
2115 isl_set_copy(context));
2116 if (!array->extent)
2117 return pet_array_free(array);
2119 return array;
2122 /* Compute the gist of all sets and relations in "scop"
2123 * based on the constraints on the parameters specified by "scop->context"
2124 * and the constraints on the values of nested accesses specified
2125 * by "value_bounds".
2127 struct pet_scop *pet_scop_gist(struct pet_scop *scop,
2128 __isl_keep isl_union_map *value_bounds)
2130 int i;
2132 if (!scop)
2133 return NULL;
2135 scop->context = isl_set_coalesce(scop->context);
2136 if (!scop->context)
2137 return pet_scop_free(scop);
2139 for (i = 0; i < scop->n_array; ++i) {
2140 scop->arrays[i] = array_gist(scop->arrays[i], scop->context);
2141 if (!scop->arrays[i])
2142 return pet_scop_free(scop);
2145 for (i = 0; i < scop->n_stmt; ++i) {
2146 scop->stmts[i] = stmt_gist(scop->stmts[i], scop->context,
2147 value_bounds);
2148 if (!scop->stmts[i])
2149 return pet_scop_free(scop);
2152 return scop;
2155 /* Intersect the context of "scop" with "context".
2156 * To ensure that we don't introduce any unnamed parameters in
2157 * the context of "scop", we first remove the unnamed parameters
2158 * from "context".
2160 struct pet_scop *pet_scop_restrict_context(struct pet_scop *scop,
2161 __isl_take isl_set *context)
2163 if (!scop)
2164 goto error;
2166 context = set_project_out_unnamed_params(context);
2167 scop->context = isl_set_intersect(scop->context, context);
2168 if (!scop->context)
2169 return pet_scop_free(scop);
2171 return scop;
2172 error:
2173 isl_set_free(context);
2174 return pet_scop_free(scop);