add pet_scop_alloc
[pet.git] / scop.c
blobd71ea5b3cf24ac89dd5417bf7a1097f2037a4de2
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 struct pet_scop *pet_scop_alloc(isl_ctx *ctx)
651 return isl_calloc_type(ctx, struct pet_scop);
654 /* Construct a pet_scop with room for n statements.
656 static struct pet_scop *scop_alloc(isl_ctx *ctx, int n)
658 isl_space *space;
659 struct pet_scop *scop;
661 scop = pet_scop_alloc(ctx);
662 if (!scop)
663 return NULL;
665 space = isl_space_params_alloc(ctx, 0);
666 scop->context = isl_set_universe(isl_space_copy(space));
667 scop->context_value = isl_set_universe(space);
668 scop->stmts = isl_calloc_array(ctx, struct pet_stmt *, n);
669 if (!scop->context || !scop->stmts)
670 return pet_scop_free(scop);
672 scop->n_stmt = n;
674 return scop;
677 struct pet_scop *pet_scop_empty(isl_ctx *ctx)
679 return scop_alloc(ctx, 0);
682 /* Update "context" with respect to the valid parameter values for "access".
684 static __isl_give isl_set *access_extract_context(__isl_keep isl_map *access,
685 __isl_take isl_set *context)
687 context = isl_set_intersect(context,
688 isl_map_params(isl_map_copy(access)));
689 return context;
692 /* Update "context" with respect to the valid parameter values for "expr".
694 * If "expr" represents a ternary operator, then a parameter value
695 * needs to be valid for the condition and for at least one of the
696 * remaining two arguments.
697 * If the condition is an affine expression, then we can be a bit more specific.
698 * The parameter then has to be valid for the second argument for
699 * non-zero accesses and valid for the third argument for zero accesses.
701 static __isl_give isl_set *expr_extract_context(struct pet_expr *expr,
702 __isl_take isl_set *context)
704 int i;
706 if (expr->type == pet_expr_ternary) {
707 int is_aff;
708 isl_set *context1, *context2;
710 is_aff = pet_expr_is_affine(expr->args[0]);
711 if (is_aff < 0)
712 goto error;
714 context = expr_extract_context(expr->args[0], context);
715 context1 = expr_extract_context(expr->args[1],
716 isl_set_copy(context));
717 context2 = expr_extract_context(expr->args[2], context);
719 if (is_aff) {
720 isl_map *access;
721 isl_set *zero_set;
723 access = isl_map_copy(expr->args[0]->acc.access);
724 access = isl_map_fix_si(access, isl_dim_out, 0, 0);
725 zero_set = isl_map_params(access);
726 context1 = isl_set_subtract(context1,
727 isl_set_copy(zero_set));
728 context2 = isl_set_intersect(context2, zero_set);
731 context = isl_set_union(context1, context2);
732 context = isl_set_coalesce(context);
734 return context;
737 for (i = 0; i < expr->n_arg; ++i)
738 context = expr_extract_context(expr->args[i], context);
740 if (expr->type == pet_expr_access)
741 context = access_extract_context(expr->acc.access, context);
743 return context;
744 error:
745 isl_set_free(context);
746 return NULL;
749 /* Update "context" with respect to the valid parameter values for "stmt".
751 static __isl_give isl_set *stmt_extract_context(struct pet_stmt *stmt,
752 __isl_take isl_set *context)
754 int i;
756 for (i = 0; i < stmt->n_arg; ++i)
757 context = expr_extract_context(stmt->args[i], context);
759 context = expr_extract_context(stmt->body, context);
761 return context;
764 /* Construct a pet_scop that contains the given pet_stmt.
766 struct pet_scop *pet_scop_from_pet_stmt(isl_ctx *ctx, struct pet_stmt *stmt)
768 struct pet_scop *scop;
770 if (!stmt)
771 return NULL;
773 scop = scop_alloc(ctx, 1);
775 scop->context = stmt_extract_context(stmt, scop->context);
776 if (!scop->context)
777 goto error;
779 scop->stmts[0] = stmt;
781 return scop;
782 error:
783 pet_stmt_free(stmt);
784 pet_scop_free(scop);
785 return NULL;
788 /* Construct a pet_scop that contains the arrays and the statements
789 * in "scop1" and "scop2".
791 struct pet_scop *pet_scop_add(isl_ctx *ctx, struct pet_scop *scop1,
792 struct pet_scop *scop2)
794 int i;
795 struct pet_scop *scop;
797 if (!scop1 || !scop2)
798 goto error;
800 if (scop1->n_stmt == 0) {
801 pet_scop_free(scop1);
802 return scop2;
805 if (scop2->n_stmt == 0) {
806 pet_scop_free(scop2);
807 return scop1;
810 scop = scop_alloc(ctx, scop1->n_stmt + scop2->n_stmt);
811 if (!scop)
812 goto error;
814 scop->arrays = isl_calloc_array(ctx, struct pet_array *,
815 scop1->n_array + scop2->n_array);
816 if (!scop->arrays)
817 goto error;
818 scop->n_array = scop1->n_array + scop2->n_array;
820 for (i = 0; i < scop1->n_stmt; ++i) {
821 scop->stmts[i] = scop1->stmts[i];
822 scop1->stmts[i] = NULL;
825 for (i = 0; i < scop2->n_stmt; ++i) {
826 scop->stmts[scop1->n_stmt + i] = scop2->stmts[i];
827 scop2->stmts[i] = NULL;
830 for (i = 0; i < scop1->n_array; ++i) {
831 scop->arrays[i] = scop1->arrays[i];
832 scop1->arrays[i] = NULL;
835 for (i = 0; i < scop2->n_array; ++i) {
836 scop->arrays[scop1->n_array + i] = scop2->arrays[i];
837 scop2->arrays[i] = NULL;
840 scop = pet_scop_restrict_context(scop, isl_set_copy(scop1->context));
841 scop = pet_scop_restrict_context(scop, isl_set_copy(scop2->context));
843 pet_scop_free(scop1);
844 pet_scop_free(scop2);
845 return scop;
846 error:
847 pet_scop_free(scop1);
848 pet_scop_free(scop2);
849 return NULL;
852 void *pet_scop_free(struct pet_scop *scop)
854 int i;
856 if (!scop)
857 return NULL;
858 isl_set_free(scop->context);
859 isl_set_free(scop->context_value);
860 if (scop->arrays)
861 for (i = 0; i < scop->n_array; ++i)
862 pet_array_free(scop->arrays[i]);
863 free(scop->arrays);
864 if (scop->stmts)
865 for (i = 0; i < scop->n_stmt; ++i)
866 pet_stmt_free(scop->stmts[i]);
867 free(scop->stmts);
868 free(scop);
869 return NULL;
872 void pet_scop_dump(struct pet_scop *scop)
874 int i;
876 if (!scop)
877 return;
879 isl_set_dump(scop->context);
880 isl_set_dump(scop->context_value);
881 for (i = 0; i < scop->n_array; ++i)
882 pet_array_dump(scop->arrays[i]);
883 for (i = 0; i < scop->n_stmt; ++i)
884 pet_stmt_dump(scop->stmts[i]);
887 /* Return 1 if the two pet_arrays are equivalent.
889 * We don't compare element_size as this may be target dependent.
891 int pet_array_is_equal(struct pet_array *array1, struct pet_array *array2)
893 if (!array1 || !array2)
894 return 0;
896 if (!isl_set_is_equal(array1->context, array2->context))
897 return 0;
898 if (!isl_set_is_equal(array1->extent, array2->extent))
899 return 0;
900 if (!!array1->value_bounds != !!array2->value_bounds)
901 return 0;
902 if (array1->value_bounds &&
903 !isl_set_is_equal(array1->value_bounds, array2->value_bounds))
904 return 0;
905 if (strcmp(array1->element_type, array2->element_type))
906 return 0;
907 if (array1->live_out != array2->live_out)
908 return 0;
909 if (array1->uniquely_defined != array2->uniquely_defined)
910 return 0;
912 return 1;
915 /* Return 1 if the two pet_stmts are equivalent.
917 int pet_stmt_is_equal(struct pet_stmt *stmt1, struct pet_stmt *stmt2)
919 int i;
921 if (!stmt1 || !stmt2)
922 return 0;
924 if (stmt1->line != stmt2->line)
925 return 0;
926 if (!isl_set_is_equal(stmt1->domain, stmt2->domain))
927 return 0;
928 if (!isl_map_is_equal(stmt1->schedule, stmt2->schedule))
929 return 0;
930 if (!pet_expr_is_equal(stmt1->body, stmt2->body))
931 return 0;
932 if (stmt1->n_arg != stmt2->n_arg)
933 return 0;
934 for (i = 0; i < stmt1->n_arg; ++i) {
935 if (!pet_expr_is_equal(stmt1->args[i], stmt2->args[i]))
936 return 0;
939 return 1;
942 /* Return 1 if the two pet_scops are equivalent.
944 int pet_scop_is_equal(struct pet_scop *scop1, struct pet_scop *scop2)
946 int i;
948 if (!scop1 || !scop2)
949 return 0;
951 if (!isl_set_is_equal(scop1->context, scop2->context))
952 return 0;
953 if (!isl_set_is_equal(scop1->context_value, scop2->context_value))
954 return 0;
956 if (scop1->n_array != scop2->n_array)
957 return 0;
958 for (i = 0; i < scop1->n_array; ++i)
959 if (!pet_array_is_equal(scop1->arrays[i], scop2->arrays[i]))
960 return 0;
962 if (scop1->n_stmt != scop2->n_stmt)
963 return 0;
964 for (i = 0; i < scop1->n_stmt; ++i)
965 if (!pet_stmt_is_equal(scop1->stmts[i], scop2->stmts[i]))
966 return 0;
968 return 1;
971 /* Prefix the schedule of "stmt" with an extra dimension with constant
972 * value "pos".
974 struct pet_stmt *pet_stmt_prefix(struct pet_stmt *stmt, int pos)
976 if (!stmt)
977 return NULL;
979 stmt->schedule = isl_map_insert_dims(stmt->schedule, isl_dim_out, 0, 1);
980 stmt->schedule = isl_map_fix_si(stmt->schedule, isl_dim_out, 0, pos);
981 if (!stmt->schedule)
982 return pet_stmt_free(stmt);
984 return stmt;
987 /* Prefix the schedules of all statements in "scop" with an extra
988 * dimension with constant value "pos".
990 struct pet_scop *pet_scop_prefix(struct pet_scop *scop, int pos)
992 int i;
994 if (!scop)
995 return NULL;
997 for (i = 0; i < scop->n_stmt; ++i) {
998 scop->stmts[i] = pet_stmt_prefix(scop->stmts[i], pos);
999 if (!scop->stmts[i])
1000 return pet_scop_free(scop);
1003 return scop;
1006 /* Given a set with a parameter at "param_pos" that refers to the
1007 * iterator, "move" the iterator to the first set dimension.
1008 * That is, essentially equate the parameter to the first set dimension
1009 * and then project it out.
1011 * The first set dimension may however refer to a virtual iterator,
1012 * while the parameter refers to the "real" iterator.
1013 * We therefore need to take into account the mapping "iv_map", which
1014 * maps the virtual iterator to the real iterator.
1015 * In particular, we equate the set dimension to the input of the map
1016 * and the parameter to the output of the map and then project out
1017 * everything we don't need anymore.
1019 static __isl_give isl_set *internalize_iv(__isl_take isl_set *set,
1020 int param_pos, __isl_take isl_map *iv_map)
1022 isl_map *map;
1023 map = isl_map_from_domain(set);
1024 map = isl_map_add_dims(map, isl_dim_out, 1);
1025 map = isl_map_equate(map, isl_dim_in, 0, isl_dim_out, 0);
1026 iv_map = isl_map_align_params(iv_map, isl_map_get_space(map));
1027 map = isl_map_apply_range(map, iv_map);
1028 map = isl_map_equate(map, isl_dim_param, param_pos, isl_dim_out, 0);
1029 map = isl_map_project_out(map, isl_dim_param, param_pos, 1);
1030 return isl_map_domain(map);
1033 /* Data used in embed_access.
1034 * extend adds an iterator to the iteration domain
1035 * iv_map maps the virtual iterator to the real iterator
1036 * var_id represents the induction variable of the corresponding loop
1038 struct pet_embed_access {
1039 isl_map *extend;
1040 isl_map *iv_map;
1041 isl_id *var_id;
1044 /* Embed the access relation in an extra outer loop.
1046 * We first update the iteration domain to insert the extra dimension.
1048 * If the access refers to the induction variable, then it is
1049 * turned into an access to the set of integers with index (and value)
1050 * equal to the induction variable.
1052 * If the induction variable appears in the constraints (as a parameter),
1053 * then the parameter is equated to the newly introduced iteration
1054 * domain dimension and subsequently projected out.
1056 * Similarly, if the accessed array is a virtual array (with user
1057 * pointer equal to NULL), as created by create_test_access,
1058 * then it is extended along with the domain of the access.
1060 static __isl_give isl_map *embed_access(__isl_take isl_map *access,
1061 void *user)
1063 struct pet_embed_access *data = user;
1064 isl_id *array_id = NULL;
1065 int pos;
1067 access = update_domain(access, data->extend);
1069 if (isl_map_has_tuple_id(access, isl_dim_out))
1070 array_id = isl_map_get_tuple_id(access, isl_dim_out);
1071 if (array_id == data->var_id ||
1072 (array_id && !isl_id_get_user(array_id))) {
1073 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
1074 access = isl_map_equate(access,
1075 isl_dim_in, 0, isl_dim_out, 0);
1076 if (array_id == data->var_id)
1077 access = isl_map_apply_range(access,
1078 isl_map_copy(data->iv_map));
1079 else
1080 access = isl_map_set_tuple_id(access, isl_dim_out,
1081 isl_id_copy(array_id));
1083 isl_id_free(array_id);
1085 pos = isl_map_find_dim_by_id(access, isl_dim_param, data->var_id);
1086 if (pos >= 0) {
1087 isl_set *set = isl_map_wrap(access);
1088 set = internalize_iv(set, pos, isl_map_copy(data->iv_map));
1089 access = isl_set_unwrap(set);
1091 access = isl_map_set_dim_id(access, isl_dim_in, 0,
1092 isl_id_copy(data->var_id));
1094 return access;
1097 /* Embed all access relations in "expr" in an extra loop.
1098 * "extend" inserts an outer loop iterator in the iteration domains.
1099 * "iv_map" maps the virtual iterator to the real iterator
1100 * "var_id" represents the induction variable.
1102 static struct pet_expr *expr_embed(struct pet_expr *expr,
1103 __isl_take isl_map *extend, __isl_take isl_map *iv_map,
1104 __isl_keep isl_id *var_id)
1106 struct pet_embed_access data =
1107 { .extend = extend, .iv_map = iv_map, .var_id = var_id };
1109 expr = pet_expr_foreach_access(expr, &embed_access, &data);
1110 isl_map_free(iv_map);
1111 isl_map_free(extend);
1112 return expr;
1115 /* Embed the given pet_stmt in an extra outer loop with iteration domain
1116 * "dom" and schedule "sched". "var_id" represents the induction variable
1117 * of the loop. "iv_map" maps a possibly virtual iterator to the real iterator.
1118 * That is, it maps the iterator used in "dom" and the domain of "sched"
1119 * to the iterator that some of the parameters in "stmt" may refer to.
1121 * The iteration domain and schedule of the statement are updated
1122 * according to the iteration domain and schedule of the new loop.
1123 * If stmt->domain is a wrapped map, then the iteration domain
1124 * is the domain of this map, so we need to be careful to adjust
1125 * this domain.
1127 * If the induction variable appears in the constraints (as a parameter)
1128 * of the current iteration domain or the schedule of the statement,
1129 * then the parameter is equated to the newly introduced iteration
1130 * domain dimension and subsequently projected out.
1132 * Finally, all access relations are updated based on the extra loop.
1134 static struct pet_stmt *pet_stmt_embed(struct pet_stmt *stmt,
1135 __isl_take isl_set *dom, __isl_take isl_map *sched,
1136 __isl_take isl_map *iv_map, __isl_take isl_id *var_id)
1138 int i;
1139 int pos;
1140 isl_id *stmt_id;
1141 isl_space *dim;
1142 isl_map *extend;
1144 if (!stmt)
1145 goto error;
1147 if (isl_set_is_wrapping(stmt->domain)) {
1148 isl_map *map;
1149 isl_map *ext;
1150 isl_space *ran_dim;
1152 map = isl_set_unwrap(stmt->domain);
1153 stmt_id = isl_map_get_tuple_id(map, isl_dim_in);
1154 ran_dim = isl_space_range(isl_map_get_space(map));
1155 ext = isl_map_from_domain_and_range(isl_set_copy(dom),
1156 isl_set_universe(ran_dim));
1157 map = isl_map_flat_domain_product(ext, map);
1158 map = isl_map_set_tuple_id(map, isl_dim_in,
1159 isl_id_copy(stmt_id));
1160 dim = isl_space_domain(isl_map_get_space(map));
1161 stmt->domain = isl_map_wrap(map);
1162 } else {
1163 stmt_id = isl_set_get_tuple_id(stmt->domain);
1164 stmt->domain = isl_set_flat_product(isl_set_copy(dom),
1165 stmt->domain);
1166 stmt->domain = isl_set_set_tuple_id(stmt->domain,
1167 isl_id_copy(stmt_id));
1168 dim = isl_set_get_space(stmt->domain);
1171 pos = isl_set_find_dim_by_id(stmt->domain, isl_dim_param, var_id);
1172 if (pos >= 0)
1173 stmt->domain = internalize_iv(stmt->domain, pos,
1174 isl_map_copy(iv_map));
1176 stmt->schedule = isl_map_flat_product(sched, stmt->schedule);
1177 stmt->schedule = isl_map_set_tuple_id(stmt->schedule,
1178 isl_dim_in, stmt_id);
1180 pos = isl_map_find_dim_by_id(stmt->schedule, isl_dim_param, var_id);
1181 if (pos >= 0) {
1182 isl_set *set = isl_map_wrap(stmt->schedule);
1183 set = internalize_iv(set, pos, isl_map_copy(iv_map));
1184 stmt->schedule = isl_set_unwrap(set);
1187 dim = isl_space_map_from_set(dim);
1188 extend = isl_map_identity(dim);
1189 extend = isl_map_remove_dims(extend, isl_dim_in, 0, 1);
1190 extend = isl_map_set_tuple_id(extend, isl_dim_in,
1191 isl_map_get_tuple_id(extend, isl_dim_out));
1192 for (i = 0; i < stmt->n_arg; ++i)
1193 stmt->args[i] = expr_embed(stmt->args[i], isl_map_copy(extend),
1194 isl_map_copy(iv_map), var_id);
1195 stmt->body = expr_embed(stmt->body, extend, iv_map, var_id);
1197 isl_set_free(dom);
1198 isl_id_free(var_id);
1200 for (i = 0; i < stmt->n_arg; ++i)
1201 if (!stmt->args[i])
1202 return pet_stmt_free(stmt);
1203 if (!stmt->domain || !stmt->schedule || !stmt->body)
1204 return pet_stmt_free(stmt);
1205 return stmt;
1206 error:
1207 isl_set_free(dom);
1208 isl_map_free(sched);
1209 isl_map_free(iv_map);
1210 isl_id_free(var_id);
1211 return NULL;
1214 /* Embed the given pet_array in an extra outer loop with iteration domain
1215 * "dom".
1216 * This embedding only has an effect on virtual arrays (those with
1217 * user pointer equal to NULL), which need to be extended along with
1218 * the iteration domain.
1220 static struct pet_array *pet_array_embed(struct pet_array *array,
1221 __isl_take isl_set *dom)
1223 isl_id *array_id = NULL;
1225 if (!array)
1226 goto error;
1228 if (isl_set_has_tuple_id(array->extent))
1229 array_id = isl_set_get_tuple_id(array->extent);
1231 if (array_id && !isl_id_get_user(array_id)) {
1232 array->extent = isl_set_flat_product(dom, array->extent);
1233 array->extent = isl_set_set_tuple_id(array->extent, array_id);
1234 } else {
1235 isl_set_free(dom);
1236 isl_id_free(array_id);
1239 return array;
1240 error:
1241 isl_set_free(dom);
1242 return NULL;
1245 /* Project out all unnamed parameters from "set" and return the result.
1247 static __isl_give isl_set *set_project_out_unnamed_params(
1248 __isl_take isl_set *set)
1250 int i, n;
1252 n = isl_set_dim(set, isl_dim_param);
1253 for (i = n - 1; i >= 0; --i) {
1254 if (isl_set_has_dim_name(set, isl_dim_param, i))
1255 continue;
1256 set = isl_set_project_out(set, isl_dim_param, i, 1);
1259 return set;
1262 /* Update the context with respect to an embedding into a loop
1263 * with iteration domain "dom" and induction variable "id".
1264 * "iv_map" maps a possibly virtual iterator (used in "dom")
1265 * to the real iterator (parameter "id").
1267 * If the current context is independent of "id", we don't need
1268 * to do anything.
1269 * Otherwise, a parameter value is invalid for the embedding if
1270 * any of the corresponding iterator values is invalid.
1271 * That is, a parameter value is valid only if all the corresponding
1272 * iterator values are valid.
1273 * We therefore compute the set of parameters
1275 * forall i in dom : valid (i)
1277 * or
1279 * not exists i in dom : not valid(i)
1281 * i.e.,
1283 * not exists i in dom \ valid(i)
1285 * Before we subtract valid(i) from dom, we first need to map
1286 * the real iterator to the virtual iterator.
1288 * If there are any unnamed parameters in "dom", then we consider
1289 * a parameter value to be valid if it is valid for any value of those
1290 * unnamed parameters. They are therefore projected out at the end.
1292 static __isl_give isl_set *context_embed(__isl_take isl_set *context,
1293 __isl_keep isl_set *dom, __isl_keep isl_map *iv_map,
1294 __isl_keep isl_id *id)
1296 int pos;
1298 pos = isl_set_find_dim_by_id(context, isl_dim_param, id);
1299 if (pos < 0)
1300 return context;
1302 context = isl_set_from_params(context);
1303 context = isl_set_add_dims(context, isl_dim_set, 1);
1304 context = isl_set_equate(context, isl_dim_param, pos, isl_dim_set, 0);
1305 context = isl_set_project_out(context, isl_dim_param, pos, 1);
1306 context = isl_set_apply(context, isl_map_reverse(isl_map_copy(iv_map)));
1307 context = isl_set_subtract(isl_set_copy(dom), context);
1308 context = isl_set_params(context);
1309 context = isl_set_complement(context);
1310 context = set_project_out_unnamed_params(context);
1311 return context;
1314 /* Embed all statements and arrays in "scop" in an extra outer loop
1315 * with iteration domain "dom" and schedule "sched".
1316 * "id" represents the induction variable of the loop.
1317 * "iv_map" maps a possibly virtual iterator to the real iterator.
1318 * That is, it maps the iterator used in "dom" and the domain of "sched"
1319 * to the iterator that some of the parameters in "scop" may refer to.
1321 struct pet_scop *pet_scop_embed(struct pet_scop *scop, __isl_take isl_set *dom,
1322 __isl_take isl_map *sched, __isl_take isl_map *iv_map,
1323 __isl_take isl_id *id)
1325 int i;
1327 if (!scop)
1328 goto error;
1330 scop->context = context_embed(scop->context, dom, iv_map, id);
1331 if (!scop->context)
1332 goto error;
1334 for (i = 0; i < scop->n_stmt; ++i) {
1335 scop->stmts[i] = pet_stmt_embed(scop->stmts[i],
1336 isl_set_copy(dom), isl_map_copy(sched),
1337 isl_map_copy(iv_map), isl_id_copy(id));
1338 if (!scop->stmts[i])
1339 goto error;
1342 for (i = 0; i < scop->n_array; ++i) {
1343 scop->arrays[i] = pet_array_embed(scop->arrays[i],
1344 isl_set_copy(dom));
1345 if (!scop->arrays[i])
1346 goto error;
1349 isl_set_free(dom);
1350 isl_map_free(sched);
1351 isl_map_free(iv_map);
1352 isl_id_free(id);
1353 return scop;
1354 error:
1355 isl_set_free(dom);
1356 isl_map_free(sched);
1357 isl_map_free(iv_map);
1358 isl_id_free(id);
1359 return pet_scop_free(scop);
1362 /* Add extra conditions on the parameters to iteration domain of "stmt".
1364 static struct pet_stmt *stmt_restrict(struct pet_stmt *stmt,
1365 __isl_take isl_set *cond)
1367 if (!stmt)
1368 goto error;
1370 stmt->domain = isl_set_intersect_params(stmt->domain, cond);
1372 return stmt;
1373 error:
1374 isl_set_free(cond);
1375 return pet_stmt_free(stmt);
1378 /* Add extra conditions on the parameters to all iteration domains.
1380 * A parameter value is valid for the result if it was valid
1381 * for the original scop and satisfies "cond" or if it does
1382 * not satisfy "cond" as in this case the scop is not executed
1383 * and the original constraints on the parameters are irrelevant.
1385 struct pet_scop *pet_scop_restrict(struct pet_scop *scop,
1386 __isl_take isl_set *cond)
1388 int i;
1390 if (!scop)
1391 goto error;
1393 scop->context = isl_set_intersect(scop->context, isl_set_copy(cond));
1394 scop->context = isl_set_union(scop->context,
1395 isl_set_complement(isl_set_copy(cond)));
1396 scop->context = isl_set_coalesce(scop->context);
1397 scop->context = set_project_out_unnamed_params(scop->context);
1398 if (!scop->context)
1399 goto error;
1401 for (i = 0; i < scop->n_stmt; ++i) {
1402 scop->stmts[i] = stmt_restrict(scop->stmts[i],
1403 isl_set_copy(cond));
1404 if (!scop->stmts[i])
1405 goto error;
1408 isl_set_free(cond);
1409 return scop;
1410 error:
1411 isl_set_free(cond);
1412 return pet_scop_free(scop);
1415 /* Make the statement "stmt" depend on the value of "test"
1416 * being equal to "satisfied" by adjusting stmt->domain.
1418 * The domain of "test" corresponds to the (zero or more) outer dimensions
1419 * of the iteration domain.
1421 * We insert an argument corresponding to a read to "test"
1422 * from the iteration domain of "stmt" in front of the list of arguments.
1423 * We also insert a corresponding output dimension in the wrapped
1424 * map contained in stmt->domain, with value set to "satisfied".
1426 static struct pet_stmt *stmt_filter(struct pet_stmt *stmt,
1427 __isl_take isl_map *test, int satisfied)
1429 int i;
1430 isl_id *id;
1431 isl_ctx *ctx;
1432 isl_map *map, *add_dom;
1433 isl_set *dom;
1434 int n_test_dom;
1436 if (!stmt || !test)
1437 goto error;
1439 if (isl_set_is_wrapping(stmt->domain))
1440 map = isl_set_unwrap(stmt->domain);
1441 else
1442 map = isl_map_from_domain(stmt->domain);
1443 map = isl_map_insert_dims(map, isl_dim_out, 0, 1);
1444 id = isl_map_get_tuple_id(test, isl_dim_out);
1445 map = isl_map_set_dim_id(map, isl_dim_out, 0, id);
1446 map = isl_map_fix_si(map, isl_dim_out, 0, satisfied);
1447 dom = isl_set_universe(isl_space_domain(isl_map_get_space(map)));
1448 n_test_dom = isl_map_dim(test, isl_dim_in);
1449 add_dom = isl_map_from_range(dom);
1450 add_dom = isl_map_add_dims(add_dom, isl_dim_in, n_test_dom);
1451 for (i = 0; i < n_test_dom; ++i)
1452 add_dom = isl_map_equate(add_dom, isl_dim_in, i,
1453 isl_dim_out, i);
1454 test = isl_map_apply_domain(test, add_dom);
1456 stmt->domain = isl_map_wrap(map);
1458 ctx = isl_map_get_ctx(test);
1459 if (!stmt->args) {
1460 stmt->args = isl_calloc_array(ctx, struct pet_expr *, 1);
1461 if (!stmt->args)
1462 goto error;
1463 } else {
1464 struct pet_expr **args;
1465 args = isl_calloc_array(ctx, struct pet_expr *, 1 + stmt->n_arg);
1466 if (!args)
1467 goto error;
1468 for (i = 0; i < stmt->n_arg; ++i)
1469 args[1 + i] = stmt->args[i];
1470 free(stmt->args);
1471 stmt->args = args;
1473 stmt->n_arg++;
1474 stmt->args[0] = pet_expr_from_access(isl_map_copy(test));
1475 if (!stmt->args[0])
1476 goto error;
1478 isl_map_free(test);
1479 return stmt;
1480 error:
1481 isl_map_free(test);
1482 return pet_stmt_free(stmt);
1485 /* Make all statements in "scop" depend on the value of "test"
1486 * being equal to "satisfied" by adjusting their domains.
1488 struct pet_scop *pet_scop_filter(struct pet_scop *scop,
1489 __isl_take isl_map *test, int satisfied)
1491 int i;
1493 if (!scop)
1494 goto error;
1496 for (i = 0; i < scop->n_stmt; ++i) {
1497 scop->stmts[i] = stmt_filter(scop->stmts[i],
1498 isl_map_copy(test), satisfied);
1499 if (!scop->stmts[i])
1500 goto error;
1503 isl_map_free(test);
1504 return scop;
1505 error:
1506 isl_map_free(test);
1507 return pet_scop_free(scop);
1510 /* Add all parameters in "expr" to "dim" and return the result.
1512 static __isl_give isl_space *expr_collect_params(struct pet_expr *expr,
1513 __isl_take isl_space *dim)
1515 int i;
1517 if (!expr)
1518 goto error;
1519 for (i = 0; i < expr->n_arg; ++i)
1521 dim = expr_collect_params(expr->args[i], dim);
1523 if (expr->type == pet_expr_access)
1524 dim = isl_space_align_params(dim,
1525 isl_map_get_space(expr->acc.access));
1527 return dim;
1528 error:
1529 isl_space_free(dim);
1530 return pet_expr_free(expr);
1533 /* Add all parameters in "stmt" to "dim" and return the result.
1535 static __isl_give isl_space *stmt_collect_params(struct pet_stmt *stmt,
1536 __isl_take isl_space *dim)
1538 if (!stmt)
1539 goto error;
1541 dim = isl_space_align_params(dim, isl_set_get_space(stmt->domain));
1542 dim = isl_space_align_params(dim, isl_map_get_space(stmt->schedule));
1543 dim = expr_collect_params(stmt->body, dim);
1545 return dim;
1546 error:
1547 isl_space_free(dim);
1548 return pet_stmt_free(stmt);
1551 /* Add all parameters in "array" to "dim" and return the result.
1553 static __isl_give isl_space *array_collect_params(struct pet_array *array,
1554 __isl_take isl_space *dim)
1556 if (!array)
1557 goto error;
1559 dim = isl_space_align_params(dim, isl_set_get_space(array->context));
1560 dim = isl_space_align_params(dim, isl_set_get_space(array->extent));
1562 return dim;
1563 error:
1564 isl_space_free(dim);
1565 return pet_array_free(array);
1568 /* Add all parameters in "scop" to "dim" and return the result.
1570 static __isl_give isl_space *scop_collect_params(struct pet_scop *scop,
1571 __isl_take isl_space *dim)
1573 int i;
1575 if (!scop)
1576 goto error;
1578 for (i = 0; i < scop->n_array; ++i)
1579 dim = array_collect_params(scop->arrays[i], dim);
1581 for (i = 0; i < scop->n_stmt; ++i)
1582 dim = stmt_collect_params(scop->stmts[i], dim);
1584 return dim;
1585 error:
1586 isl_space_free(dim);
1587 return pet_scop_free(scop);
1590 /* Add all parameters in "dim" to all access relations in "expr".
1592 static struct pet_expr *expr_propagate_params(struct pet_expr *expr,
1593 __isl_take isl_space *dim)
1595 int i;
1597 if (!expr)
1598 goto error;
1600 for (i = 0; i < expr->n_arg; ++i) {
1601 expr->args[i] =
1602 expr_propagate_params(expr->args[i],
1603 isl_space_copy(dim));
1604 if (!expr->args[i])
1605 goto error;
1608 if (expr->type == pet_expr_access) {
1609 expr->acc.access = isl_map_align_params(expr->acc.access,
1610 isl_space_copy(dim));
1611 if (!expr->acc.access)
1612 goto error;
1615 isl_space_free(dim);
1616 return expr;
1617 error:
1618 isl_space_free(dim);
1619 return pet_expr_free(expr);
1622 /* Add all parameters in "dim" to the domain, schedule and
1623 * all access relations in "stmt".
1625 static struct pet_stmt *stmt_propagate_params(struct pet_stmt *stmt,
1626 __isl_take isl_space *dim)
1628 if (!stmt)
1629 goto error;
1631 stmt->domain = isl_set_align_params(stmt->domain, isl_space_copy(dim));
1632 stmt->schedule = isl_map_align_params(stmt->schedule,
1633 isl_space_copy(dim));
1634 stmt->body = expr_propagate_params(stmt->body, isl_space_copy(dim));
1636 if (!stmt->domain || !stmt->schedule || !stmt->body)
1637 goto error;
1639 isl_space_free(dim);
1640 return stmt;
1641 error:
1642 isl_space_free(dim);
1643 return pet_stmt_free(stmt);
1646 /* Add all parameters in "dim" to "array".
1648 static struct pet_array *array_propagate_params(struct pet_array *array,
1649 __isl_take isl_space *dim)
1651 if (!array)
1652 goto error;
1654 array->context = isl_set_align_params(array->context,
1655 isl_space_copy(dim));
1656 array->extent = isl_set_align_params(array->extent,
1657 isl_space_copy(dim));
1658 if (array->value_bounds) {
1659 array->value_bounds = isl_set_align_params(array->value_bounds,
1660 isl_space_copy(dim));
1661 if (!array->value_bounds)
1662 goto error;
1665 if (!array->context || !array->extent)
1666 goto error;
1668 isl_space_free(dim);
1669 return array;
1670 error:
1671 isl_space_free(dim);
1672 return pet_array_free(array);
1675 /* Add all parameters in "dim" to "scop".
1677 static struct pet_scop *scop_propagate_params(struct pet_scop *scop,
1678 __isl_take isl_space *dim)
1680 int i;
1682 if (!scop)
1683 goto error;
1685 for (i = 0; i < scop->n_array; ++i) {
1686 scop->arrays[i] = array_propagate_params(scop->arrays[i],
1687 isl_space_copy(dim));
1688 if (!scop->arrays[i])
1689 goto error;
1692 for (i = 0; i < scop->n_stmt; ++i) {
1693 scop->stmts[i] = stmt_propagate_params(scop->stmts[i],
1694 isl_space_copy(dim));
1695 if (!scop->stmts[i])
1696 goto error;
1699 isl_space_free(dim);
1700 return scop;
1701 error:
1702 isl_space_free(dim);
1703 return pet_scop_free(scop);
1706 /* Update all isl_sets and isl_maps in "scop" such that they all
1707 * have the same parameters.
1709 struct pet_scop *pet_scop_align_params(struct pet_scop *scop)
1711 isl_space *dim;
1713 if (!scop)
1714 return NULL;
1716 dim = isl_set_get_space(scop->context);
1717 dim = scop_collect_params(scop, dim);
1719 scop->context = isl_set_align_params(scop->context, isl_space_copy(dim));
1720 scop = scop_propagate_params(scop, dim);
1722 return scop;
1725 /* Check if the given access relation accesses a (0D) array that corresponds
1726 * to one of the parameters in "dim". If so, replace the array access
1727 * by an access to the set of integers with as index (and value)
1728 * that parameter.
1730 static __isl_give isl_map *access_detect_parameter(__isl_take isl_map *access,
1731 __isl_take isl_space *dim)
1733 isl_id *array_id = NULL;
1734 int pos = -1;
1736 if (isl_map_has_tuple_id(access, isl_dim_out)) {
1737 array_id = isl_map_get_tuple_id(access, isl_dim_out);
1738 pos = isl_space_find_dim_by_id(dim, isl_dim_param, array_id);
1740 isl_space_free(dim);
1742 if (pos < 0) {
1743 isl_id_free(array_id);
1744 return access;
1747 pos = isl_map_find_dim_by_id(access, isl_dim_param, array_id);
1748 if (pos < 0) {
1749 access = isl_map_insert_dims(access, isl_dim_param, 0, 1);
1750 access = isl_map_set_dim_id(access, isl_dim_param, 0, array_id);
1751 pos = 0;
1752 } else
1753 isl_id_free(array_id);
1755 access = isl_map_insert_dims(access, isl_dim_out, 0, 1);
1756 access = isl_map_equate(access, isl_dim_param, pos, isl_dim_out, 0);
1758 return access;
1761 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1762 * in "dim" by a value equal to the corresponding parameter.
1764 static struct pet_expr *expr_detect_parameter_accesses(struct pet_expr *expr,
1765 __isl_take isl_space *dim)
1767 int i;
1769 if (!expr)
1770 goto error;
1772 for (i = 0; i < expr->n_arg; ++i) {
1773 expr->args[i] =
1774 expr_detect_parameter_accesses(expr->args[i],
1775 isl_space_copy(dim));
1776 if (!expr->args[i])
1777 goto error;
1780 if (expr->type == pet_expr_access) {
1781 expr->acc.access = access_detect_parameter(expr->acc.access,
1782 isl_space_copy(dim));
1783 if (!expr->acc.access)
1784 goto error;
1787 isl_space_free(dim);
1788 return expr;
1789 error:
1790 isl_space_free(dim);
1791 return pet_expr_free(expr);
1794 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1795 * in "dim" by a value equal to the corresponding parameter.
1797 static struct pet_stmt *stmt_detect_parameter_accesses(struct pet_stmt *stmt,
1798 __isl_take isl_space *dim)
1800 if (!stmt)
1801 goto error;
1803 stmt->body = expr_detect_parameter_accesses(stmt->body,
1804 isl_space_copy(dim));
1806 if (!stmt->domain || !stmt->schedule || !stmt->body)
1807 goto error;
1809 isl_space_free(dim);
1810 return stmt;
1811 error:
1812 isl_space_free(dim);
1813 return pet_stmt_free(stmt);
1816 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
1817 * in "dim" by a value equal to the corresponding parameter.
1819 static struct pet_scop *scop_detect_parameter_accesses(struct pet_scop *scop,
1820 __isl_take isl_space *dim)
1822 int i;
1824 if (!scop)
1825 goto error;
1827 for (i = 0; i < scop->n_stmt; ++i) {
1828 scop->stmts[i] = stmt_detect_parameter_accesses(scop->stmts[i],
1829 isl_space_copy(dim));
1830 if (!scop->stmts[i])
1831 goto error;
1834 isl_space_free(dim);
1835 return scop;
1836 error:
1837 isl_space_free(dim);
1838 return pet_scop_free(scop);
1841 /* Replace all accesses to (0D) arrays that correspond to any of
1842 * the parameters used in "scop" by a value equal
1843 * to the corresponding parameter.
1845 struct pet_scop *pet_scop_detect_parameter_accesses(struct pet_scop *scop)
1847 isl_space *dim;
1849 if (!scop)
1850 return NULL;
1852 dim = isl_set_get_space(scop->context);
1853 dim = scop_collect_params(scop, dim);
1855 scop = scop_detect_parameter_accesses(scop, dim);
1857 return scop;
1860 /* Add all read access relations (if "read" is set) and/or all write
1861 * access relations (if "write" is set) to "accesses" and return the result.
1863 static __isl_give isl_union_map *expr_collect_accesses(struct pet_expr *expr,
1864 int read, int write, __isl_take isl_union_map *accesses)
1866 int i;
1867 isl_id *id;
1868 isl_space *dim;
1870 if (!expr)
1871 return NULL;
1873 for (i = 0; i < expr->n_arg; ++i)
1874 accesses = expr_collect_accesses(expr->args[i],
1875 read, write, accesses);
1877 if (expr->type == pet_expr_access &&
1878 isl_map_has_tuple_id(expr->acc.access, isl_dim_out) &&
1879 ((read && expr->acc.read) || (write && expr->acc.write)))
1880 accesses = isl_union_map_add_map(accesses,
1881 isl_map_copy(expr->acc.access));
1883 return accesses;
1886 /* Collect and return all read access relations (if "read" is set)
1887 * and/or all write * access relations (if "write" is set) in "stmt".
1889 static __isl_give isl_union_map *stmt_collect_accesses(struct pet_stmt *stmt,
1890 int read, int write, __isl_take isl_space *dim)
1892 isl_union_map *accesses;
1894 if (!stmt)
1895 return NULL;
1897 accesses = isl_union_map_empty(dim);
1898 accesses = expr_collect_accesses(stmt->body, read, write, accesses);
1899 accesses = isl_union_map_intersect_domain(accesses,
1900 isl_union_set_from_set(isl_set_copy(stmt->domain)));
1902 return accesses;
1905 /* Collect and return all read access relations (if "read" is set)
1906 * and/or all write * access relations (if "write" is set) in "scop".
1908 static __isl_give isl_union_map *scop_collect_accesses(struct pet_scop *scop,
1909 int read, int write)
1911 int i;
1912 isl_union_map *accesses;
1914 if (!scop)
1915 return NULL;
1917 accesses = isl_union_map_empty(isl_set_get_space(scop->context));
1919 for (i = 0; i < scop->n_stmt; ++i) {
1920 isl_union_map *accesses_i;
1921 isl_space *dim = isl_set_get_space(scop->context);
1922 accesses_i = stmt_collect_accesses(scop->stmts[i],
1923 read, write, dim);
1924 accesses = isl_union_map_union(accesses, accesses_i);
1927 return accesses;
1930 __isl_give isl_union_map *pet_scop_collect_reads(struct pet_scop *scop)
1932 return scop_collect_accesses(scop, 1, 0);
1935 __isl_give isl_union_map *pet_scop_collect_writes(struct pet_scop *scop)
1937 return scop_collect_accesses(scop, 0, 1);
1940 /* Collect and return the union of iteration domains in "scop".
1942 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop)
1944 int i;
1945 isl_set *domain_i;
1946 isl_union_set *domain;
1948 if (!scop)
1949 return NULL;
1951 domain = isl_union_set_empty(isl_set_get_space(scop->context));
1953 for (i = 0; i < scop->n_stmt; ++i) {
1954 domain_i = isl_set_copy(scop->stmts[i]->domain);
1955 domain = isl_union_set_add_set(domain, domain_i);
1958 return domain;
1961 /* Collect and return the schedules of the statements in "scop".
1962 * The range is normalized to the maximal number of scheduling
1963 * dimensions.
1965 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop)
1967 int i, j;
1968 isl_map *schedule_i;
1969 isl_union_map *schedule;
1970 int depth, max_depth = 0;
1972 if (!scop)
1973 return NULL;
1975 schedule = isl_union_map_empty(isl_set_get_space(scop->context));
1977 for (i = 0; i < scop->n_stmt; ++i) {
1978 depth = isl_map_dim(scop->stmts[i]->schedule, isl_dim_out);
1979 if (depth > max_depth)
1980 max_depth = depth;
1983 for (i = 0; i < scop->n_stmt; ++i) {
1984 schedule_i = isl_map_copy(scop->stmts[i]->schedule);
1985 depth = isl_map_dim(schedule_i, isl_dim_out);
1986 schedule_i = isl_map_add_dims(schedule_i, isl_dim_out,
1987 max_depth - depth);
1988 for (j = depth; j < max_depth; ++j)
1989 schedule_i = isl_map_fix_si(schedule_i,
1990 isl_dim_out, j, 0);
1991 schedule = isl_union_map_add_map(schedule, schedule_i);
1994 return schedule;
1997 /* Does expression "expr" write to "id"?
1999 static int expr_writes(struct pet_expr *expr, __isl_keep isl_id *id)
2001 int i;
2002 isl_id *write_id;
2004 for (i = 0; i < expr->n_arg; ++i) {
2005 int writes = expr_writes(expr->args[i], id);
2006 if (writes < 0 || writes)
2007 return writes;
2010 if (expr->type != pet_expr_access)
2011 return 0;
2012 if (!expr->acc.write)
2013 return 0;
2014 if (!isl_map_has_tuple_id(expr->acc.access, isl_dim_out))
2015 return 0;
2017 write_id = isl_map_get_tuple_id(expr->acc.access, isl_dim_out);
2018 isl_id_free(write_id);
2020 if (!write_id)
2021 return -1;
2023 return write_id == id;
2026 /* Does statement "stmt" write to "id"?
2028 static int stmt_writes(struct pet_stmt *stmt, __isl_keep isl_id *id)
2030 return expr_writes(stmt->body, id);
2033 /* Is there any write access in "scop" that accesses "id"?
2035 int pet_scop_writes(struct pet_scop *scop, __isl_keep isl_id *id)
2037 int i;
2039 if (!scop)
2040 return -1;
2042 for (i = 0; i < scop->n_stmt; ++i) {
2043 int writes = stmt_writes(scop->stmts[i], id);
2044 if (writes < 0 || writes)
2045 return writes;
2048 return 0;
2051 /* Reset the user pointer on all parameter ids in "set".
2053 static __isl_give isl_set *set_anonymize(__isl_take isl_set *set)
2055 int i, n;
2057 n = isl_set_dim(set, isl_dim_param);
2058 for (i = 0; i < n; ++i) {
2059 isl_id *id = isl_set_get_dim_id(set, isl_dim_param, i);
2060 const char *name = isl_id_get_name(id);
2061 set = isl_set_set_dim_name(set, isl_dim_param, i, name);
2062 isl_id_free(id);
2065 return set;
2068 /* Reset the user pointer on all parameter ids in "map".
2070 static __isl_give isl_map *map_anonymize(__isl_take isl_map *map)
2072 int i, n;
2074 n = isl_map_dim(map, isl_dim_param);
2075 for (i = 0; i < n; ++i) {
2076 isl_id *id = isl_map_get_dim_id(map, isl_dim_param, i);
2077 const char *name = isl_id_get_name(id);
2078 map = isl_map_set_dim_name(map, isl_dim_param, i, name);
2079 isl_id_free(id);
2082 return map;
2085 /* Reset the user pointer on all parameter ids in "array".
2087 static struct pet_array *array_anonymize(struct pet_array *array)
2089 if (!array)
2090 return NULL;
2092 array->context = set_anonymize(array->context);
2093 array->extent = set_anonymize(array->extent);
2094 if (!array->context || !array->extent)
2095 return pet_array_free(array);
2097 return array;
2100 /* Reset the user pointer on all parameter ids in "access".
2102 static __isl_give isl_map *access_anonymize(__isl_take isl_map *access,
2103 void *user)
2105 access = map_anonymize(access);
2107 return access;
2110 /* Reset the user pointer on all parameter ids in "stmt".
2112 static struct pet_stmt *stmt_anonymize(struct pet_stmt *stmt)
2114 int i;
2115 isl_space *space;
2116 isl_set *domain;
2118 if (!stmt)
2119 return NULL;
2121 stmt->domain = set_anonymize(stmt->domain);
2122 stmt->schedule = map_anonymize(stmt->schedule);
2123 if (!stmt->domain || !stmt->schedule)
2124 return pet_stmt_free(stmt);
2126 for (i = 0; i < stmt->n_arg; ++i) {
2127 stmt->args[i] = pet_expr_foreach_access(stmt->args[i],
2128 &access_anonymize, NULL);
2129 if (!stmt->args[i])
2130 return pet_stmt_free(stmt);
2133 stmt->body = pet_expr_foreach_access(stmt->body,
2134 &access_anonymize, NULL);
2135 if (!stmt->body)
2136 return pet_stmt_free(stmt);
2138 return stmt;
2141 /* Reset the user pointer on all parameter ids in "scop".
2143 struct pet_scop *pet_scop_anonymize(struct pet_scop *scop)
2145 int i;
2147 if (!scop)
2148 return NULL;
2150 scop->context = set_anonymize(scop->context);
2151 scop->context_value = set_anonymize(scop->context_value);
2152 if (!scop->context || !scop->context_value)
2153 return pet_scop_free(scop);
2155 for (i = 0; i < scop->n_array; ++i) {
2156 scop->arrays[i] = array_anonymize(scop->arrays[i]);
2157 if (!scop->arrays[i])
2158 return pet_scop_free(scop);
2161 for (i = 0; i < scop->n_stmt; ++i) {
2162 scop->stmts[i] = stmt_anonymize(scop->stmts[i]);
2163 if (!scop->stmts[i])
2164 return pet_scop_free(scop);
2167 return scop;
2170 /* Given a set "domain", return a wrapped relation with the given set
2171 * as domain and a range of dimension "n_arg", where each coordinate
2172 * is either unbounded or, if the corresponding element of args is of
2173 * type pet_expr_access, bounded by the bounds specified by "value_bounds".
2175 static __isl_give isl_set *apply_value_bounds(__isl_take isl_set *domain,
2176 unsigned n_arg, struct pet_expr **args,
2177 __isl_keep isl_union_map *value_bounds)
2179 int i;
2180 isl_map *map;
2181 isl_space *space;
2182 isl_ctx *ctx = isl_set_get_ctx(domain);
2184 map = isl_map_from_domain(domain);
2185 space = isl_map_get_space(map);
2186 space = isl_space_add_dims(space, isl_dim_out, 1);
2188 for (i = 0; i < n_arg; ++i) {
2189 isl_map *map_i;
2190 struct pet_expr *arg = args[i];
2191 isl_id *id;
2192 isl_space *space2;
2194 map_i = isl_map_universe(isl_space_copy(space));
2195 if (arg->type == pet_expr_access) {
2196 isl_map *vb;
2197 id = isl_map_get_tuple_id(arg->acc.access, isl_dim_out);
2198 space2 = isl_space_alloc(ctx, 0, 0, 1);
2199 space2 = isl_space_set_tuple_id(space2, isl_dim_in, id);
2200 vb = isl_union_map_extract_map(value_bounds, space2);
2201 if (!isl_map_plain_is_empty(vb))
2202 map_i = isl_map_intersect_range(map_i,
2203 isl_map_range(vb));
2204 else
2205 isl_map_free(vb);
2207 map = isl_map_flat_range_product(map, map_i);
2209 isl_space_free(space);
2211 return isl_map_wrap(map);
2214 /* Data used in access_gist() callback.
2216 struct pet_access_gist_data {
2217 isl_set *domain;
2218 isl_union_map *value_bounds;
2221 /* Given an expression "expr" of type pet_expr_access, compute
2222 * the gist of the associated access relation with respect to
2223 * data->domain and the bounds on the values of the arguments
2224 * of the expression.
2226 static struct pet_expr *access_gist(struct pet_expr *expr, void *user)
2228 struct pet_access_gist_data *data = user;
2229 isl_set *domain;
2231 domain = isl_set_copy(data->domain);
2232 if (expr->n_arg > 0)
2233 domain = apply_value_bounds(domain, expr->n_arg, expr->args,
2234 data->value_bounds);
2236 expr->acc.access = isl_map_gist_domain(expr->acc.access, domain);
2237 if (!expr->acc.access)
2238 return pet_expr_free(expr);
2240 return expr;
2243 /* Compute the gist of the iteration domain and all access relations
2244 * of "stmt" based on the constraints on the parameters specified by "context"
2245 * and the constraints on the values of nested accesses specified
2246 * by "value_bounds".
2248 static struct pet_stmt *stmt_gist(struct pet_stmt *stmt,
2249 __isl_keep isl_set *context, __isl_keep isl_union_map *value_bounds)
2251 int i;
2252 isl_space *space;
2253 isl_set *domain;
2254 struct pet_access_gist_data data;
2256 if (!stmt)
2257 return NULL;
2259 data.domain = isl_set_copy(stmt->domain);
2260 data.value_bounds = value_bounds;
2261 if (stmt->n_arg > 0)
2262 data.domain = isl_map_domain(isl_set_unwrap(data.domain));
2264 data.domain = isl_set_intersect_params(data.domain,
2265 isl_set_copy(context));
2267 for (i = 0; i < stmt->n_arg; ++i) {
2268 stmt->args[i] = pet_expr_foreach_access_expr(stmt->args[i],
2269 &access_gist, &data);
2270 if (!stmt->args[i])
2271 goto error;
2274 stmt->body = pet_expr_foreach_access_expr(stmt->body,
2275 &access_gist, &data);
2276 if (!stmt->body)
2277 goto error;
2279 isl_set_free(data.domain);
2281 space = isl_set_get_space(stmt->domain);
2282 if (isl_space_is_wrapping(space))
2283 space = isl_space_domain(isl_space_unwrap(space));
2284 domain = isl_set_universe(space);
2285 domain = isl_set_intersect_params(domain, isl_set_copy(context));
2286 if (stmt->n_arg > 0)
2287 domain = apply_value_bounds(domain, stmt->n_arg, stmt->args,
2288 value_bounds);
2289 stmt->domain = isl_set_gist(stmt->domain, domain);
2290 if (!stmt->domain)
2291 return pet_stmt_free(stmt);
2293 return stmt;
2294 error:
2295 isl_set_free(data.domain);
2296 return pet_stmt_free(stmt);
2299 /* Compute the gist of the extent of the array
2300 * based on the constraints on the parameters specified by "context".
2302 static struct pet_array *array_gist(struct pet_array *array,
2303 __isl_keep isl_set *context)
2305 if (!array)
2306 return NULL;
2308 array->extent = isl_set_gist_params(array->extent,
2309 isl_set_copy(context));
2310 if (!array->extent)
2311 return pet_array_free(array);
2313 return array;
2316 /* Compute the gist of all sets and relations in "scop"
2317 * based on the constraints on the parameters specified by "scop->context"
2318 * and the constraints on the values of nested accesses specified
2319 * by "value_bounds".
2321 struct pet_scop *pet_scop_gist(struct pet_scop *scop,
2322 __isl_keep isl_union_map *value_bounds)
2324 int i;
2326 if (!scop)
2327 return NULL;
2329 scop->context = isl_set_coalesce(scop->context);
2330 if (!scop->context)
2331 return pet_scop_free(scop);
2333 for (i = 0; i < scop->n_array; ++i) {
2334 scop->arrays[i] = array_gist(scop->arrays[i], scop->context);
2335 if (!scop->arrays[i])
2336 return pet_scop_free(scop);
2339 for (i = 0; i < scop->n_stmt; ++i) {
2340 scop->stmts[i] = stmt_gist(scop->stmts[i], scop->context,
2341 value_bounds);
2342 if (!scop->stmts[i])
2343 return pet_scop_free(scop);
2346 return scop;
2349 /* Intersect the context of "scop" with "context".
2350 * To ensure that we don't introduce any unnamed parameters in
2351 * the context of "scop", we first remove the unnamed parameters
2352 * from "context".
2354 struct pet_scop *pet_scop_restrict_context(struct pet_scop *scop,
2355 __isl_take isl_set *context)
2357 if (!scop)
2358 goto error;
2360 context = set_project_out_unnamed_params(context);
2361 scop->context = isl_set_intersect(scop->context, context);
2362 if (!scop->context)
2363 return pet_scop_free(scop);
2365 return scop;
2366 error:
2367 isl_set_free(context);
2368 return pet_scop_free(scop);
2371 /* Drop the current context of "scop". That is, replace the context
2372 * by a universal set.
2374 struct pet_scop *pet_scop_reset_context(struct pet_scop *scop)
2376 isl_space *space;
2378 if (!scop)
2379 return NULL;
2381 space = isl_set_get_space(scop->context);
2382 isl_set_free(scop->context);
2383 scop->context = isl_set_universe(space);
2384 if (!scop->context)
2385 return pet_scop_free(scop);
2387 return scop;