2 * Copyright 2011 Leiden University. All rights reserved.
3 * Copyright 2012-2014 Ecole Normale Superieure. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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
43 /* A wrapper around pet_expr_free to be used as an isl_id free user function.
45 static void pet_expr_free_wrap(void *user
)
47 pet_expr_free((pet_expr
*) user
);
50 /* Create an isl_id that refers to the nested access "expr".
52 __isl_give isl_id
*pet_nested_pet_expr(__isl_take pet_expr
*expr
)
56 id
= isl_id_alloc(pet_expr_get_ctx(expr
), "__pet_expr", expr
);
57 id
= isl_id_set_free_user(id
, &pet_expr_free_wrap
);
62 /* Extract a pet_expr from an isl_id created by pet_nested_pet_expr.
63 * Such an isl_id has name "__pet_expr" and
64 * the user pointer points to a pet_expr object.
66 __isl_give pet_expr
*pet_nested_extract_expr(__isl_keep isl_id
*id
)
68 return pet_expr_copy((pet_expr
*) isl_id_get_user(id
));
71 /* Does "id" refer to a nested access created by pet_nested_pet_expr?
73 int pet_nested_in_id(__isl_keep isl_id
*id
)
79 if (!isl_id_get_user(id
))
82 name
= isl_id_get_name(id
);
83 return !strcmp(name
, "__pet_expr");
86 /* Does parameter "pos" of "space" refer to a nested access?
88 static int pet_nested_in_space(__isl_keep isl_space
*space
, int pos
)
93 id
= isl_space_get_dim_id(space
, isl_dim_param
, pos
);
94 nested
= pet_nested_in_id(id
);
100 /* Does parameter "pos" of "set" refer to a nested access?
102 int pet_nested_in_set(__isl_keep isl_set
*set
, int pos
)
107 id
= isl_set_get_dim_id(set
, isl_dim_param
, pos
);
108 nested
= pet_nested_in_id(id
);
114 /* Does parameter "pos" of "map" refer to a nested access?
116 int pet_nested_in_map(__isl_keep isl_map
*map
, int pos
)
121 id
= isl_map_get_dim_id(map
, isl_dim_param
, pos
);
122 nested
= pet_nested_in_id(id
);
128 /* Does "space" involve any parameters that refer to nested accesses?
130 int pet_nested_any_in_space(__isl_keep isl_space
*space
)
135 nparam
= isl_space_dim(space
, isl_dim_param
);
136 for (i
= 0; i
< nparam
; ++i
)
137 if (pet_nested_in_space(space
, i
))
143 /* Does "pa" involve any parameters that refer to nested accesses?
145 int pet_nested_any_in_pw_aff(__isl_keep isl_pw_aff
*pa
)
150 space
= isl_pw_aff_get_space(pa
);
151 nested
= pet_nested_any_in_space(space
);
152 isl_space_free(space
);
157 /* How many parameters of "space" refer to nested accesses?
159 int pet_nested_n_in_space(__isl_keep isl_space
*space
)
164 nparam
= isl_space_dim(space
, isl_dim_param
);
165 for (i
= 0; i
< nparam
; ++i
)
166 if (pet_nested_in_space(space
, i
))
172 /* How many parameters of "map" refer to nested accesses?
174 int pet_nested_n_in_map(__isl_keep isl_map
*map
)
179 space
= isl_map_get_space(map
);
180 n
= pet_nested_n_in_space(space
);
181 isl_space_free(space
);
186 /* How many parameters of "set" refer to nested accesses?
188 int pet_nested_n_in_set(__isl_keep isl_set
*set
)
193 space
= isl_set_get_space(set
);
194 n
= pet_nested_n_in_space(space
);
195 isl_space_free(space
);
200 /* Remove all parameters from "space" that refer to nested accesses.
202 __isl_give isl_space
*pet_nested_remove_from_space(__isl_take isl_space
*space
)
207 nparam
= isl_space_dim(space
, isl_dim_param
);
208 for (i
= nparam
- 1; i
>= 0; --i
)
209 if (pet_nested_in_space(space
, i
))
210 space
= isl_space_drop_dims(space
, isl_dim_param
, i
, 1);
215 /* Remove all parameters from "set" that refer to nested accesses.
217 __isl_give isl_set
*pet_nested_remove_from_set(__isl_take isl_set
*set
)
222 nparam
= isl_set_dim(set
, isl_dim_param
);
223 for (i
= nparam
- 1; i
>= 0; --i
)
224 if (pet_nested_in_set(set
, i
))
225 set
= isl_set_project_out(set
, isl_dim_param
, i
, 1);
230 /* Remove all parameters from "map" that refer to nested accesses.
232 static __isl_give isl_map
*pet_nested_remove_from_map(__isl_take isl_map
*map
)
237 nparam
= isl_map_dim(map
, isl_dim_param
);
238 for (i
= nparam
- 1; i
>= 0; --i
)
239 if (pet_nested_in_map(map
, i
))
240 map
= isl_map_project_out(map
, isl_dim_param
, i
, 1);
245 /* Remove all parameters from "mpa" that refer to nested accesses.
247 static __isl_give isl_multi_pw_aff
*pet_nested_remove_from_multi_pw_aff(
248 __isl_take isl_multi_pw_aff
*mpa
)
254 space
= isl_multi_pw_aff_get_space(mpa
);
255 nparam
= isl_space_dim(space
, isl_dim_param
);
256 for (i
= nparam
- 1; i
>= 0; --i
) {
257 if (!pet_nested_in_space(space
, i
))
259 mpa
= isl_multi_pw_aff_drop_dims(mpa
, isl_dim_param
, i
, 1);
261 isl_space_free(space
);
266 /* Remove all parameters from the index expression and access relation of "expr"
267 * that refer to nested accesses.
269 static __isl_give pet_expr
*expr_remove_nested_parameters(
270 __isl_take pet_expr
*expr
, void *user
)
272 expr
= pet_expr_cow(expr
);
276 expr
->acc
.access
= pet_nested_remove_from_map(expr
->acc
.access
);
277 expr
->acc
.index
= pet_nested_remove_from_multi_pw_aff(expr
->acc
.index
);
278 if (!expr
->acc
.access
|| !expr
->acc
.index
)
279 return pet_expr_free(expr
);
284 /* Remove all nested access parameters from the schedule and all
285 * accesses of "stmt".
286 * There is no need to remove them from the domain as these parameters
287 * have already been removed from the domain when this function is called.
289 struct pet_stmt
*pet_stmt_remove_nested_parameters(struct pet_stmt
*stmt
)
295 stmt
->schedule
= pet_nested_remove_from_map(stmt
->schedule
);
296 stmt
->body
= pet_expr_map_access(stmt
->body
,
297 &expr_remove_nested_parameters
, NULL
);
298 if (!stmt
->schedule
|| !stmt
->body
)
300 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
301 stmt
->args
[i
] = pet_expr_map_access(stmt
->args
[i
],
302 &expr_remove_nested_parameters
, NULL
);
313 /* Set *dim to the dimension of the domain of the access expression "expr" and
316 static int set_dim(__isl_keep pet_expr
*expr
, void *user
)
321 space
= pet_expr_access_get_domain_space(expr
);
322 *dim
= isl_space_dim(space
, isl_dim_set
);
323 isl_space_free(space
);
328 /* Determine the dimension of the domain of the access expressions in "expr".
330 * In particular, return the dimension of the domain of the first access
331 * expression in "expr" as all access expressions should have the same
334 * If "expr" does not contain any access expressions, then we return 0.
336 static int pet_expr_domain_dim(__isl_keep pet_expr
*expr
)
340 if (pet_expr_foreach_access_expr(expr
, &set_dim
, &dim
) >= 0)
346 /* Embed all access expressions in "expr" in the domain "space".
347 * The initial domain of the access expressions
348 * is an anonymous domain of a dimension that may be lower
349 * than the dimension of "space".
350 * We may therefore need to introduce extra dimensions as well as
351 * (potentially) the name of "space".
353 static __isl_give pet_expr
*embed(__isl_take pet_expr
*expr
,
354 __isl_keep isl_space
*space
)
357 isl_multi_pw_aff
*mpa
;
359 n
= pet_expr_domain_dim(expr
);
361 return pet_expr_free(expr
);
363 space
= isl_space_copy(space
);
364 mpa
= isl_multi_pw_aff_from_multi_aff(pet_prefix_projection(space
, n
));
365 expr
= pet_expr_update_domain(expr
, mpa
);
370 /* For each nested access parameter in "space",
371 * construct a corresponding pet_expr, place it in args and
372 * record its position in "param2pos".
373 * The constructed pet_expr objects are embedded in "space"
374 * (with the nested access parameters removed).
375 * "n_arg" is the number of elements that are already in args.
376 * The position recorded in "param2pos" takes this number into account.
377 * If the pet_expr corresponding to a parameter is identical to
378 * the pet_expr corresponding to an earlier parameter, then these two
379 * parameters are made to refer to the same element in args.
381 * Return the final number of elements in args or -1 if an error has occurred.
383 int pet_extract_nested_from_space(__isl_keep isl_space
*space
,
384 int n_arg
, __isl_give pet_expr
**args
, int *param2pos
)
389 domain
= isl_space_copy(space
);
390 domain
= pet_nested_remove_from_space(domain
);
391 nparam
= isl_space_dim(space
, isl_dim_param
);
392 for (i
= 0; i
< nparam
; ++i
) {
394 isl_id
*id
= isl_space_get_dim_id(space
, isl_dim_param
, i
);
396 if (!pet_nested_in_id(id
)) {
401 args
[n_arg
] = embed(pet_nested_extract_expr(id
), domain
);
406 for (j
= 0; j
< n_arg
; ++j
)
407 if (pet_expr_is_equal(args
[j
], args
[n_arg
]))
411 pet_expr_free(args
[n_arg
]);
415 param2pos
[i
] = n_arg
++;
417 isl_space_free(domain
);
422 /* For each nested access parameter in the access relations in "expr",
423 * construct a corresponding pet_expr, append it to the arguments of "expr"
424 * and record its position in "param2pos" (relative to the initial
425 * number of arguments).
426 * n is the number of nested access parameters.
428 __isl_give pet_expr
*pet_expr_extract_nested(__isl_take pet_expr
*expr
, int n
,
436 ctx
= pet_expr_get_ctx(expr
);
437 args
= isl_calloc_array(ctx
, pet_expr
*, n
);
439 return pet_expr_free(expr
);
441 n_arg
= pet_expr_get_n_arg(expr
);
442 space
= pet_expr_access_get_domain_space(expr
);
443 n
= pet_extract_nested_from_space(space
, 0, args
, param2pos
);
444 isl_space_free(space
);
447 expr
= pet_expr_free(expr
);
449 expr
= pet_expr_set_n_arg(expr
, n_arg
+ n
);
451 for (i
= 0; i
< n
; ++i
)
452 expr
= pet_expr_set_arg(expr
, n_arg
+ i
, args
[i
]);
458 /* Are "expr1" and "expr2" both array accesses such that
459 * the access relation of "expr1" is a subset of that of "expr2"?
460 * Only take into account the first "n_arg" arguments.
462 static int is_sub_access(__isl_keep pet_expr
*expr1
, __isl_keep pet_expr
*expr2
,
466 isl_map
*access1
, *access2
;
470 if (!expr1
|| !expr2
)
472 if (pet_expr_get_type(expr1
) != pet_expr_access
)
474 if (pet_expr_get_type(expr2
) != pet_expr_access
)
476 if (pet_expr_is_affine(expr1
))
478 if (pet_expr_is_affine(expr2
))
480 n1
= pet_expr_get_n_arg(expr1
);
483 n2
= pet_expr_get_n_arg(expr2
);
488 for (i
= 0; i
< n1
; ++i
) {
489 pet_expr
*arg1
, *arg2
;
491 arg1
= pet_expr_get_arg(expr1
, i
);
492 arg2
= pet_expr_get_arg(expr2
, i
);
493 equal
= pet_expr_is_equal(arg1
, arg2
);
496 if (equal
< 0 || !equal
)
499 id1
= pet_expr_access_get_id(expr1
);
500 id2
= pet_expr_access_get_id(expr2
);
508 access1
= pet_expr_access_get_access(expr1
);
509 access2
= pet_expr_access_get_access(expr2
);
510 is_subset
= isl_map_is_subset(access1
, access2
);
511 isl_map_free(access1
);
512 isl_map_free(access2
);
517 /* Mark self dependences among the arguments of "expr" starting at "first".
518 * These arguments have already been added to the list of arguments
519 * but are not yet referenced directly from the index expression.
520 * Instead, they are still referenced through parameters encoding
523 * In particular, if "expr" is a read access, then check the arguments
524 * starting at "first" to see if "expr" accesses a subset of
525 * the elements accessed by the argument, or under more restrictive conditions.
526 * If so, then this nested access can be removed from the constraints
527 * governing the outer access. There is no point in restricting
528 * accesses to an array if in order to evaluate the restriction,
529 * we have to access the same elements (or more).
531 * Rather than removing the argument at this point (which would
532 * complicate the resolution of the other nested accesses), we simply
533 * mark it here by replacing it by a NaN pet_expr.
534 * These NaNs are then later removed in remove_marked_self_dependences.
536 static __isl_give pet_expr
*mark_self_dependences(__isl_take pet_expr
*expr
,
541 if (pet_expr_access_is_write(expr
))
544 n
= pet_expr_get_n_arg(expr
);
545 for (i
= first
; i
< n
; ++i
) {
549 arg
= pet_expr_get_arg(expr
, i
);
550 mark
= is_sub_access(expr
, arg
, first
);
553 return pet_expr_free(expr
);
557 arg
= pet_expr_new_int(isl_val_nan(pet_expr_get_ctx(expr
)));
558 expr
= pet_expr_set_arg(expr
, i
, arg
);
564 /* Is "expr" a NaN integer expression?
566 static int expr_is_nan(__isl_keep pet_expr
*expr
)
571 if (pet_expr_get_type(expr
) != pet_expr_int
)
574 v
= pet_expr_int_get_val(expr
);
575 is_nan
= isl_val_is_nan(v
);
581 /* Check if we have marked any self dependences (as NaNs)
582 * in mark_self_dependences and remove them here.
583 * It is safe to project them out since these arguments
584 * can at most be referenced from the condition of the access relation,
585 * but do not appear in the index expression.
586 * "dim" is the dimension of the iteration domain.
588 static __isl_give pet_expr
*remove_marked_self_dependences(
589 __isl_take pet_expr
*expr
, int dim
, int first
)
593 n
= pet_expr_get_n_arg(expr
);
594 for (i
= n
- 1; i
>= first
; --i
) {
598 arg
= pet_expr_get_arg(expr
, i
);
599 is_nan
= expr_is_nan(arg
);
603 expr
= pet_expr_access_project_out_arg(expr
, dim
, i
);
609 /* Look for parameters in any access relation in "expr" that
610 * refer to nested accesses. In particular, these are
611 * parameters with name "__pet_expr".
613 * If there are any such parameters, then the domain of the index
614 * expression and the access relation, which is either "domain" or
615 * [domain -> [a_1,...,a_m]] at this point, is replaced by
616 * [domain -> [t_1,...,t_n]] or [domain -> [a_1,...,a_m,t_1,...,t_n]],
617 * with m the original number of arguments (n_arg) and
618 * n the number of these parameters
619 * (after identifying identical nested accesses).
621 * This transformation is performed in several steps.
622 * We first extract the arguments in pet_expr_extract_nested.
623 * param2pos maps the original parameter position to the position
624 * of the argument beyond the initial (n_arg) number of arguments.
625 * Then we move these parameters to input dimensions.
626 * t2pos maps the positions of these temporary input dimensions
627 * to the positions of the corresponding arguments inside the space
628 * [domain -> [t_1,...,t_n]].
629 * Finally, we express these temporary dimensions in terms of the domain
630 * [domain -> [a_1,...,a_m,t_1,...,t_n]] and precompose index expression and
631 * access relations with this function.
633 __isl_give pet_expr
*pet_expr_resolve_nested(__isl_take pet_expr
*expr
,
634 __isl_keep isl_space
*domain
)
636 int i
, n
, n_arg
, dim
, n_in
;
649 n_arg
= pet_expr_get_n_arg(expr
);
650 for (i
= 0; i
< n_arg
; ++i
) {
652 arg
= pet_expr_get_arg(expr
, i
);
653 arg
= pet_expr_resolve_nested(arg
, domain
);
654 expr
= pet_expr_set_arg(expr
, i
, arg
);
657 if (pet_expr_get_type(expr
) != pet_expr_access
)
660 dim
= isl_space_dim(domain
, isl_dim_set
);
663 space
= pet_expr_access_get_parameter_space(expr
);
664 n
= pet_nested_n_in_space(space
);
665 isl_space_free(space
);
669 expr
= pet_expr_access_align_params(expr
);
673 space
= pet_expr_access_get_parameter_space(expr
);
674 nparam
= isl_space_dim(space
, isl_dim_param
);
675 isl_space_free(space
);
677 ctx
= pet_expr_get_ctx(expr
);
679 param2pos
= isl_alloc_array(ctx
, int, nparam
);
680 t2pos
= isl_alloc_array(ctx
, int, n
);
683 expr
= pet_expr_extract_nested(expr
, n
, param2pos
);
684 expr
= mark_self_dependences(expr
, n_arg
);
689 space
= pet_expr_access_get_parameter_space(expr
);
690 nparam
= isl_space_dim(space
, isl_dim_param
);
691 for (i
= nparam
- 1; i
>= 0; --i
) {
692 isl_id
*id
= isl_space_get_dim_id(space
, isl_dim_param
, i
);
693 if (!pet_nested_in_id(id
)) {
698 expr
= pet_expr_access_move_dims(expr
,
699 isl_dim_in
, n_in
+ n
, isl_dim_param
, i
, 1);
700 t2pos
[n
] = n_in
+ param2pos
[i
];
705 isl_space_free(space
);
707 space
= isl_space_copy(domain
);
708 space
= isl_space_from_domain(space
);
709 space
= isl_space_add_dims(space
, isl_dim_out
,
710 pet_expr_get_n_arg(expr
));
711 space
= isl_space_wrap(space
);
712 ls
= isl_local_space_from_space(isl_space_copy(space
));
713 space
= isl_space_from_domain(space
);
714 space
= isl_space_add_dims(space
, isl_dim_out
, n_in
+ n
);
715 ma
= isl_multi_aff_zero(space
);
717 for (i
= 0; i
< n_in
; ++i
) {
718 aff
= isl_aff_var_on_domain(isl_local_space_copy(ls
),
720 ma
= isl_multi_aff_set_aff(ma
, i
, aff
);
722 for (i
= 0; i
< n
; ++i
) {
723 aff
= isl_aff_var_on_domain(isl_local_space_copy(ls
),
724 isl_dim_set
, t2pos
[i
]);
725 ma
= isl_multi_aff_set_aff(ma
, n_in
+ i
, aff
);
727 isl_local_space_free(ls
);
729 expr
= pet_expr_access_pullback_multi_aff(expr
, ma
);
731 expr
= remove_marked_self_dependences(expr
, dim
, n_arg
);
739 return pet_expr_free(expr
);
742 /* For each nested access parameter in the domain of "stmt",
743 * construct a corresponding pet_expr, place it before the original
744 * elements in stmt->args and record its position in "param2pos".
745 * n is the number of nested access parameters.
747 struct pet_stmt
*pet_stmt_extract_nested(struct pet_stmt
*stmt
, int n
,
756 ctx
= isl_set_get_ctx(stmt
->domain
);
759 args
= isl_calloc_array(ctx
, pet_expr
*, n
+ n_arg
);
763 space
= isl_set_get_space(stmt
->domain
);
764 if (isl_space_is_wrapping(space
))
765 space
= isl_space_domain(isl_space_unwrap(space
));
766 n_arg
= pet_extract_nested_from_space(space
, 0, args
, param2pos
);
767 isl_space_free(space
);
772 for (i
= 0; i
< stmt
->n_arg
; ++i
)
773 args
[n_arg
+ i
] = stmt
->args
[i
];
776 stmt
->n_arg
+= n_arg
;
781 for (i
= 0; i
< n
; ++i
)
782 pet_expr_free(args
[i
]);
789 /* Check whether any of the arguments i of "stmt" starting at position "n"
790 * is equal to one of the first "n" arguments j.
791 * If so, combine the constraints on arguments i and j and remove
794 static struct pet_stmt
*remove_duplicate_arguments(struct pet_stmt
*stmt
, int n
)
803 if (n
== stmt
->n_arg
)
806 map
= isl_set_unwrap(stmt
->domain
);
808 for (i
= stmt
->n_arg
- 1; i
>= n
; --i
) {
809 for (j
= 0; j
< n
; ++j
)
810 if (pet_expr_is_equal(stmt
->args
[i
], stmt
->args
[j
]))
815 map
= isl_map_equate(map
, isl_dim_out
, i
, isl_dim_out
, j
);
816 map
= isl_map_project_out(map
, isl_dim_out
, i
, 1);
818 pet_expr_free(stmt
->args
[i
]);
819 for (j
= i
; j
+ 1 < stmt
->n_arg
; ++j
)
820 stmt
->args
[j
] = stmt
->args
[j
+ 1];
824 stmt
->domain
= isl_map_wrap(map
);
833 /* Look for parameters in the iteration domain of "stmt" that
834 * refer to nested accesses. In particular, these are
835 * parameters with name "__pet_expr".
837 * If there are any such parameters, then as many extra variables
838 * (after identifying identical nested accesses) are inserted in the
839 * range of the map wrapped inside the domain, before the original variables.
840 * If the original domain is not a wrapped map, then a new wrapped
841 * map is created with zero output dimensions.
842 * The parameters are then equated to the corresponding output dimensions
843 * and subsequently projected out, from the iteration domain,
844 * the schedule and the access relations.
845 * For each of the output dimensions, a corresponding argument
846 * expression is inserted, embedded in the current iteration domain.
847 * param2pos maps the position of the parameter to the position
848 * of the corresponding output dimension in the wrapped map.
850 struct pet_stmt
*pet_stmt_resolve_nested(struct pet_stmt
*stmt
)
865 n
= pet_nested_n_in_set(stmt
->domain
);
869 ctx
= isl_set_get_ctx(stmt
->domain
);
872 nparam
= isl_set_dim(stmt
->domain
, isl_dim_param
);
873 param2pos
= isl_alloc_array(ctx
, int, nparam
);
874 stmt
= pet_stmt_extract_nested(stmt
, n
, param2pos
);
880 n
= stmt
->n_arg
- n_arg
;
881 if (isl_set_is_wrapping(stmt
->domain
))
882 map
= isl_set_unwrap(stmt
->domain
);
884 map
= isl_map_from_domain(stmt
->domain
);
885 map
= isl_map_insert_dims(map
, isl_dim_out
, 0, n
);
887 for (i
= nparam
- 1; i
>= 0; --i
) {
890 if (!pet_nested_in_map(map
, i
))
893 id
= pet_expr_access_get_id(stmt
->args
[param2pos
[i
]]);
894 map
= isl_map_set_dim_id(map
, isl_dim_out
, param2pos
[i
], id
);
895 map
= isl_map_equate(map
, isl_dim_param
, i
, isl_dim_out
,
897 map
= isl_map_project_out(map
, isl_dim_param
, i
, 1);
900 stmt
->domain
= isl_map_wrap(map
);
902 stmt
= pet_stmt_remove_nested_parameters(stmt
);
903 stmt
= remove_duplicate_arguments(stmt
, n
);
909 /* For each statement in "scop", move the parameters that correspond
910 * to nested access into the ranges of the domains and create
911 * corresponding argument expressions.
913 struct pet_scop
*pet_scop_resolve_nested(struct pet_scop
*scop
)
920 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
921 scop
->stmts
[i
] = pet_stmt_resolve_nested(scop
->stmts
[i
]);
923 return pet_scop_free(scop
);