2 * Copyright 2011 Sven Verdoolaege
3 * Copyright 2012-2014 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege,
8 * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
12 #include <isl_space_private.h>
14 #include <isl_reordering.h>
16 #include <isl_multi_macro.h>
18 #define MULTI_NAME(BASE) "isl_multi_" #BASE
20 isl_ctx
*FN(MULTI(BASE
),get_ctx
)(__isl_keep
MULTI(BASE
) *multi
)
22 return multi
? isl_space_get_ctx(multi
->space
) : NULL
;
25 /* Return the space of "multi".
27 __isl_keep isl_space
*FN(MULTI(BASE
),peek_space
)(__isl_keep
MULTI(BASE
) *multi
)
29 return multi
? multi
->space
: NULL
;
32 __isl_give isl_space
*FN(MULTI(BASE
),get_space
)(__isl_keep
MULTI(BASE
) *multi
)
34 return isl_space_copy(FN(MULTI(BASE
),peek_space
)(multi
));
37 __isl_give isl_space
*FN(MULTI(BASE
),get_domain_space
)(
38 __isl_keep
MULTI(BASE
) *multi
)
40 return multi
? isl_space_domain(isl_space_copy(multi
->space
)) : NULL
;
43 /* Allocate a multi expression living in "space".
45 * If the number of base expressions is zero, then make sure
46 * there is enough room in the structure for the explicit domain,
47 * in case the type supports such an explicit domain.
49 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),alloc
)(__isl_take isl_space
*space
)
55 n
= isl_space_dim(space
, isl_dim_out
);
59 ctx
= isl_space_get_ctx(space
);
61 multi
= isl_calloc(ctx
, MULTI(BASE
),
62 sizeof(MULTI(BASE
)) + (n
- 1) * sizeof(struct EL
*));
64 multi
= isl_calloc(ctx
, MULTI(BASE
), sizeof(MULTI(BASE
)));
71 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
))
72 multi
= FN(MULTI(BASE
),init_explicit_domain
)(multi
);
75 isl_space_free(space
);
79 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),dup
)(__isl_keep
MULTI(BASE
) *multi
)
87 dup
= FN(MULTI(BASE
),alloc
)(isl_space_copy(multi
->space
));
91 for (i
= 0; i
< multi
->n
; ++i
)
92 dup
= FN(FN(MULTI(BASE
),set
),BASE
)(dup
, i
,
93 FN(EL
,copy
)(multi
->u
.p
[i
]));
94 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
))
95 dup
= FN(MULTI(BASE
),copy_explicit_domain
)(dup
, multi
);
100 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),cow
)(__isl_take
MULTI(BASE
) *multi
)
109 return FN(MULTI(BASE
),dup
)(multi
);
112 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),copy
)(__isl_keep
MULTI(BASE
) *multi
)
121 __isl_null
MULTI(BASE
) *FN(MULTI(BASE
),free
)(__isl_take
MULTI(BASE
) *multi
)
128 if (--multi
->ref
> 0)
131 isl_space_free(multi
->space
);
132 for (i
= 0; i
< multi
->n
; ++i
)
133 FN(EL
,free
)(multi
->u
.p
[i
]);
134 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
))
135 FN(MULTI(BASE
),free_explicit_domain
)(multi
);
141 /* Return the space of "multi".
142 * The caller is not allowed to modify "multi" between this call
143 * and the call to *_restore_space because the number
144 * of references needs to stay the same.
145 * The only exception is that isl_multi_*_free can be called instead.
146 * No copy is taken of multi->space if "multi" has only one reference
147 * such that it can be modified inplace if both have only a single reference.
149 __isl_give isl_space
*FN(MULTI(BASE
),take_space
)(__isl_keep
MULTI(BASE
) *multi
)
156 return FN(MULTI(BASE
),get_space
)(multi
);
157 space
= multi
->space
;
162 /* Set the space of "multi" to "space", where the space of "multi"
163 * may be missing due to a preceding call to isl_multi_*_take_space.
164 * However, in this case, "multi" only has a single reference and
165 * then the call to isl_multi_*_cow has no effect.
167 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),restore_space
)(
168 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_space
*space
)
170 if (!multi
|| !space
)
173 if (multi
->space
== space
) {
174 isl_space_free(space
);
178 multi
= FN(MULTI(BASE
),cow
)(multi
);
181 isl_space_free(multi
->space
);
182 multi
->space
= space
;
186 FN(MULTI(BASE
),free
)(multi
);
187 isl_space_free(space
);
191 isl_size
FN(MULTI(BASE
),dim
)(__isl_keep
MULTI(BASE
) *multi
,
192 enum isl_dim_type type
)
194 return isl_space_dim(FN(MULTI(BASE
),peek_space
)(multi
), type
);
197 /* Return the number of base expressions in "multi".
199 isl_size
FN(MULTI(BASE
),size
)(__isl_keep
MULTI(BASE
) *multi
)
201 return multi
? multi
->n
: isl_size_error
;
205 #define TYPE MULTI(BASE)
207 #include "check_type_range_templ.c"
209 /* Return the base expression at position "pos" in "multi".
211 static __isl_give EL
*FN(MULTI(BASE
),peek_at
)(__isl_keep
MULTI(BASE
) *multi
,
214 if (FN(MULTI(BASE
),check_range
)(multi
, isl_dim_out
, pos
, 1) < 0)
216 return multi
->u
.p
[pos
];
219 /* Return a copy of the base expression at position "pos" in "multi".
221 __isl_give EL
*FN(MULTI(BASE
),get_at
)(__isl_keep
MULTI(BASE
) *multi
, int pos
)
223 return FN(EL
,copy
)(FN(MULTI(BASE
),peek_at
)(multi
, pos
));
226 /* This is an alternative name for the function above.
228 __isl_give EL
*FN(FN(MULTI(BASE
),get
),BASE
)(__isl_keep
MULTI(BASE
) *multi
,
231 return FN(MULTI(BASE
),get_at
)(multi
, pos
);
234 /* Return the base expression at position "pos" in "multi".
235 * This may be either a copy or the base expression itself
236 * if there is only one reference to "multi".
237 * This allows the base expression to be modified inplace
238 * if both the multi expression and this base expression
239 * have only a single reference.
240 * The caller is not allowed to modify "multi" between this call and
241 * the subsequent call to isl_multi_*_restore_at_*.
242 * The only exception is that isl_multi_*_free can be called instead.
244 static __isl_give EL
*FN(MULTI(BASE
),take_at
)(__isl_keep
MULTI(BASE
) *multi
,
252 return FN(MULTI(BASE
),get_at
)(multi
, pos
);
253 if (FN(MULTI(BASE
),check_range
)(multi
, isl_dim_out
, pos
, 1) < 0)
255 el
= multi
->u
.p
[pos
];
256 multi
->u
.p
[pos
] = NULL
;
260 /* Set the element at position "pos" of "multi" to "el",
261 * where the position may be empty if "multi" has only a single reference.
263 static __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),restore_at
)(
264 __isl_take
MULTI(BASE
) *multi
, int pos
, __isl_take EL
*el
)
266 if (FN(MULTI(BASE
),check_range
)(multi
, isl_dim_out
, pos
, 1) < 0 || !el
)
269 if (multi
->u
.p
[pos
] == el
) {
274 multi
= FN(MULTI(BASE
),cow
)(multi
);
278 FN(EL
,free
)(multi
->u
.p
[pos
]);
279 multi
->u
.p
[pos
] = el
;
283 FN(MULTI(BASE
),free
)(multi
);
288 /* Set the element at position "pos" of "multi" to "el",
289 * where the position may be empty if "multi" has only a single reference.
290 * However, the space of "multi" is available and is checked
291 * for compatibility with "el".
293 static __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),restore_check_space
)(
294 __isl_take
MULTI(BASE
) *multi
, int pos
, __isl_take EL
*el
)
298 space
= FN(MULTI(BASE
),peek_space
)(multi
);
299 if (FN(EL
,check_match_domain_space
)(el
, space
) < 0)
300 multi
= FN(MULTI(BASE
),free
)(multi
);
301 return FN(MULTI(BASE
),restore_at
)(multi
, pos
, el
);
304 /* Replace the base expression at position "pos" in "multi" with "el".
306 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),set_at
)(
307 __isl_take
MULTI(BASE
) *multi
, int pos
, __isl_take EL
*el
)
309 isl_space
*multi_space
= NULL
;
310 isl_space
*el_space
= NULL
;
313 multi_space
= FN(MULTI(BASE
),get_space
)(multi
);
314 match
= FN(EL
,matching_params
)(el
, multi_space
);
318 multi
= FN(MULTI(BASE
),align_params
)(multi
,
319 FN(EL
,get_space
)(el
));
320 isl_space_free(multi_space
);
321 multi_space
= FN(MULTI(BASE
),get_space
)(multi
);
322 el
= FN(EL
,align_params
)(el
, isl_space_copy(multi_space
));
325 multi
= FN(MULTI(BASE
),restore_check_space
)(multi
, pos
, el
);
327 isl_space_free(multi_space
);
328 isl_space_free(el_space
);
332 FN(MULTI(BASE
),free
)(multi
);
334 isl_space_free(multi_space
);
335 isl_space_free(el_space
);
339 /* This is an alternative name for the function above.
341 __isl_give
MULTI(BASE
) *FN(FN(MULTI(BASE
),set
),BASE
)(
342 __isl_take
MULTI(BASE
) *multi
, int pos
, __isl_take EL
*el
)
344 return FN(MULTI(BASE
),set_at
)(multi
, pos
, el
);
347 /* Return the base expressions of "multi" as a list.
349 __isl_give
LIST(EL
) *FN(MULTI(BASE
),get_list
)(
350 __isl_keep
MULTI(BASE
) *multi
)
356 n
= FN(MULTI(BASE
),size
)(multi
);
359 list
= FN(LIST(EL
),alloc
)(FN(MULTI(BASE
),get_ctx(multi
)), n
);
360 for (i
= 0; i
< n
; ++i
) {
361 EL
*el
= FN(MULTI(BASE
),get_at
)(multi
, i
);
362 list
= FN(LIST(EL
),add
)(list
, el
);
368 /* Reset the space of "multi". This function is called from isl_pw_templ.c
369 * and doesn't know if the space of an element object is represented
370 * directly or through its domain. It therefore passes along both,
371 * which we pass along to the element function since we don't know how
372 * that is represented either.
374 * If "multi" has an explicit domain, then the caller is expected
375 * to make sure that any modification that would change the dimensions
376 * of the explicit domain has bee applied before this function is called.
378 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),reset_space_and_domain
)(
379 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_space
*space
,
380 __isl_take isl_space
*domain
)
385 n
= FN(MULTI(BASE
),size
)(multi
);
386 if (n
< 0 || !space
|| !domain
)
389 for (i
= 0; i
< n
; ++i
) {
392 el
= FN(MULTI(BASE
),take_at
)(multi
, i
);
393 el
= FN(EL
,reset_domain_space
)(el
, isl_space_copy(domain
));
394 multi
= FN(MULTI(BASE
),restore_at
)(multi
, i
, el
);
396 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
))
397 multi
= FN(MULTI(BASE
),reset_explicit_domain_space
)(multi
,
398 isl_space_copy(domain
));
399 isl_space_free(domain
);
401 multi
= FN(MULTI(BASE
),restore_space
)(multi
, space
);
405 isl_space_free(domain
);
406 isl_space_free(space
);
407 FN(MULTI(BASE
),free
)(multi
);
411 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),reset_domain_space
)(
412 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_space
*domain
)
416 space
= isl_space_extend_domain_with_range(isl_space_copy(domain
),
417 isl_space_copy(multi
->space
));
418 return FN(MULTI(BASE
),reset_space_and_domain
)(multi
, space
, domain
);
421 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),reset_space
)(
422 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_space
*space
)
426 domain
= isl_space_domain(isl_space_copy(space
));
427 return FN(MULTI(BASE
),reset_space_and_domain
)(multi
, space
, domain
);
430 /* Reset the user pointer on all identifiers of parameters and tuples
431 * of the space of "multi".
433 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),reset_user
)(
434 __isl_take
MULTI(BASE
) *multi
)
438 space
= FN(MULTI(BASE
),get_space
)(multi
);
439 space
= isl_space_reset_user(space
);
441 return FN(MULTI(BASE
),reset_space
)(multi
, space
);
444 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),realign_domain
)(
445 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_reordering
*exp
)
451 n
= FN(MULTI(BASE
),size
)(multi
);
455 for (i
= 0; i
< n
; ++i
) {
458 el
= FN(MULTI(BASE
),take_at
)(multi
, i
);
459 el
= FN(EL
,realign_domain
)(el
, isl_reordering_copy(exp
));
460 multi
= FN(MULTI(BASE
),restore_at
)(multi
, i
, el
);
463 space
= isl_reordering_get_space(exp
);
464 multi
= FN(MULTI(BASE
),reset_domain_space
)(multi
, space
);
466 isl_reordering_free(exp
);
469 isl_reordering_free(exp
);
470 FN(MULTI(BASE
),free
)(multi
);
474 /* Align the parameters of "multi" to those of "model".
476 * If "multi" has an explicit domain, then align the parameters
477 * of the domain first.
479 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),align_params
)(
480 __isl_take
MULTI(BASE
) *multi
, __isl_take isl_space
*model
)
483 isl_bool equal_params
;
486 if (!multi
|| !model
)
489 equal_params
= isl_space_has_equal_params(multi
->space
, model
);
490 if (equal_params
< 0)
493 isl_space_free(model
);
497 ctx
= isl_space_get_ctx(model
);
498 if (!isl_space_has_named_params(model
))
499 isl_die(ctx
, isl_error_invalid
,
500 "model has unnamed parameters", goto error
);
501 if (!isl_space_has_named_params(multi
->space
))
502 isl_die(ctx
, isl_error_invalid
,
503 "input has unnamed parameters", goto error
);
505 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
)) {
506 multi
= FN(MULTI(BASE
),align_explicit_domain_params
)(multi
,
507 isl_space_copy(model
));
511 exp
= isl_parameter_alignment_reordering(multi
->space
, model
);
512 exp
= isl_reordering_extend_space(exp
,
513 FN(MULTI(BASE
),get_domain_space
)(multi
));
514 multi
= FN(MULTI(BASE
),realign_domain
)(multi
, exp
);
516 isl_space_free(model
);
519 isl_space_free(model
);
520 FN(MULTI(BASE
),free
)(multi
);
524 /* Create a multi expression in the given space with the elements of "list"
525 * as base expressions.
527 * Since isl_multi_*_restore_* assumes that the element and
528 * the multi expression have matching spaces, the alignment
529 * (if any) needs to be performed beforehand.
531 __isl_give
MULTI(BASE
) *FN(FN(MULTI(BASE
),from
),LIST(BASE
))(
532 __isl_take isl_space
*space
, __isl_take
LIST(EL
) *list
)
539 dim
= isl_space_dim(space
, isl_dim_out
);
540 n
= FN(FN(LIST(EL
),n
),BASE
)(list
);
541 if (dim
< 0 || n
< 0)
544 ctx
= isl_space_get_ctx(space
);
546 isl_die(ctx
, isl_error_invalid
,
547 "invalid number of elements in list", goto error
);
549 for (i
= 0; i
< n
; ++i
) {
550 EL
*el
= FN(LIST(EL
),peek
)(list
, i
);
551 space
= isl_space_align_params(space
, FN(EL
,get_space
)(el
));
553 multi
= FN(MULTI(BASE
),alloc
)(isl_space_copy(space
));
554 for (i
= 0; i
< n
; ++i
) {
555 EL
*el
= FN(FN(LIST(EL
),get
),BASE
)(list
, i
);
556 el
= FN(EL
,align_params
)(el
, isl_space_copy(space
));
557 multi
= FN(MULTI(BASE
),restore_check_space
)(multi
, i
, el
);
560 isl_space_free(space
);
561 FN(LIST(EL
),free
)(list
);
564 isl_space_free(space
);
565 FN(LIST(EL
),free
)(list
);
569 /* This function performs the same operation as isl_multi_*_from_*_list,
570 * but is considered as a function on an isl_space when exported.
572 __isl_give
MULTI(BASE
) *FN(isl_space_multi
,BASE
)(__isl_take isl_space
*space
,
573 __isl_take
LIST(EL
) *list
)
575 return FN(FN(MULTI(BASE
),from
),LIST(BASE
))(space
, list
);
578 /* Drop the "n" output dimensions of "multi" starting at "first",
579 * where the space is assumed to have been adjusted already.
581 static __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),drop_output_dims
)(
582 __isl_take
MULTI(BASE
) *multi
, unsigned first
, unsigned n
)
586 multi
= FN(MULTI(BASE
),cow
)(multi
);
590 for (i
= 0; i
< n
; ++i
)
591 FN(EL
,free
)(multi
->u
.p
[first
+ i
]);
592 for (i
= first
; i
+ n
< multi
->n
; ++i
)
593 multi
->u
.p
[i
] = multi
->u
.p
[i
+ n
];
595 if (n
> 0 && FN(MULTI(BASE
),has_explicit_domain
)(multi
))
596 multi
= FN(MULTI(BASE
),init_explicit_domain
)(multi
);
601 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),drop_dims
)(
602 __isl_take
MULTI(BASE
) *multi
,
603 enum isl_dim_type type
, unsigned first
, unsigned n
)
609 if (FN(MULTI(BASE
),check_range
)(multi
, type
, first
, n
) < 0)
610 return FN(MULTI(BASE
),free
)(multi
);
612 space
= FN(MULTI(BASE
),take_space
)(multi
);
613 space
= isl_space_drop_dims(space
, type
, first
, n
);
614 multi
= FN(MULTI(BASE
),restore_space
)(multi
, space
);
616 if (type
== isl_dim_out
)
617 return FN(MULTI(BASE
),drop_output_dims
)(multi
, first
, n
);
619 if (FN(MULTI(BASE
),has_explicit_domain
)(multi
))
620 multi
= FN(MULTI(BASE
),drop_explicit_domain_dims
)(multi
,
623 size
= FN(MULTI(BASE
),size
)(multi
);
625 return FN(MULTI(BASE
),free
)(multi
);
626 for (i
= 0; i
< size
; ++i
) {
629 el
= FN(MULTI(BASE
),take_at
)(multi
, i
);
630 el
= FN(EL
,drop_dims
)(el
, type
, first
, n
);
631 multi
= FN(MULTI(BASE
),restore_at
)(multi
, i
, el
);
638 #define TYPE MULTI(BASE)
640 #include "isl_check_named_params_templ.c"
642 #include "isl_align_params_bin_templ.c"
644 /* Given two MULTI(BASE)s A -> B and C -> D,
645 * construct a MULTI(BASE) (A * C) -> [B -> D].
647 * If "multi1" and/or "multi2" has an explicit domain, then
648 * intersect the domain of the result with these explicit domains.
650 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),range_product
)(
651 __isl_take
MULTI(BASE
) *multi1
, __isl_take
MULTI(BASE
) *multi2
)
659 FN(MULTI(BASE
),align_params_bin
)(&multi1
, &multi2
);
660 n1
= FN(MULTI(BASE
),size
)(multi1
);
661 n2
= FN(MULTI(BASE
),size
)(multi2
);
662 if (n1
< 0 || n2
< 0)
665 space
= isl_space_range_product(FN(MULTI(BASE
),get_space
)(multi1
),
666 FN(MULTI(BASE
),get_space
)(multi2
));
667 res
= FN(MULTI(BASE
),alloc
)(space
);
669 for (i
= 0; i
< n1
; ++i
) {
670 el
= FN(FN(MULTI(BASE
),get
),BASE
)(multi1
, i
);
671 res
= FN(FN(MULTI(BASE
),set
),BASE
)(res
, i
, el
);
674 for (i
= 0; i
< n2
; ++i
) {
675 el
= FN(FN(MULTI(BASE
),get
),BASE
)(multi2
, i
);
676 res
= FN(FN(MULTI(BASE
),set
),BASE
)(res
, n1
+ i
, el
);
679 if (FN(MULTI(BASE
),has_explicit_domain
)(multi1
))
680 res
= FN(MULTI(BASE
),intersect_explicit_domain
)(res
, multi1
);
681 if (FN(MULTI(BASE
),has_explicit_domain
)(multi2
))
682 res
= FN(MULTI(BASE
),intersect_explicit_domain
)(res
, multi2
);
684 FN(MULTI(BASE
),free
)(multi1
);
685 FN(MULTI(BASE
),free
)(multi2
);
688 FN(MULTI(BASE
),free
)(multi1
);
689 FN(MULTI(BASE
),free
)(multi2
);
693 /* Is the range of "multi" a wrapped relation?
695 isl_bool
FN(MULTI(BASE
),range_is_wrapping
)(__isl_keep
MULTI(BASE
) *multi
)
698 return isl_bool_error
;
699 return isl_space_range_is_wrapping(multi
->space
);
702 /* Given a function A -> [B -> C], extract the function A -> B.
704 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),range_factor_domain
)(
705 __isl_take
MULTI(BASE
) *multi
)
708 isl_size total
, keep
;
710 total
= FN(MULTI(BASE
),dim
)(multi
, isl_dim_out
);
712 return FN(MULTI(BASE
),free
)(multi
);
713 if (!isl_space_range_is_wrapping(multi
->space
))
714 isl_die(FN(MULTI(BASE
),get_ctx
)(multi
), isl_error_invalid
,
715 "range is not a product",
716 return FN(MULTI(BASE
),free
)(multi
));
718 space
= FN(MULTI(BASE
),get_space
)(multi
);
719 space
= isl_space_range_factor_domain(space
);
720 keep
= isl_space_dim(space
, isl_dim_out
);
722 multi
= FN(MULTI(BASE
),free
)(multi
);
723 multi
= FN(MULTI(BASE
),drop_dims
)(multi
,
724 isl_dim_out
, keep
, total
- keep
);
725 multi
= FN(MULTI(BASE
),reset_space
)(multi
, space
);
730 /* Given a function A -> [B -> C], extract the function A -> C.
732 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),range_factor_range
)(
733 __isl_take
MULTI(BASE
) *multi
)
736 isl_size total
, keep
;
738 total
= FN(MULTI(BASE
),dim
)(multi
, isl_dim_out
);
740 return FN(MULTI(BASE
),free
)(multi
);
741 if (!isl_space_range_is_wrapping(multi
->space
))
742 isl_die(FN(MULTI(BASE
),get_ctx
)(multi
), isl_error_invalid
,
743 "range is not a product",
744 return FN(MULTI(BASE
),free
)(multi
));
746 space
= FN(MULTI(BASE
),get_space
)(multi
);
747 space
= isl_space_range_factor_range(space
);
748 keep
= isl_space_dim(space
, isl_dim_out
);
750 multi
= FN(MULTI(BASE
),free
)(multi
);
751 multi
= FN(MULTI(BASE
),drop_dims
)(multi
, isl_dim_out
, 0, total
- keep
);
752 multi
= FN(MULTI(BASE
),reset_space
)(multi
, space
);
757 /* Given a function [B -> C], extract the function C.
759 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),factor_range
)(
760 __isl_take
MULTI(BASE
) *multi
)
763 isl_size total
, keep
;
765 total
= FN(MULTI(BASE
),dim
)(multi
, isl_dim_set
);
767 return FN(MULTI(BASE
),free
)(multi
);
768 if (!isl_space_is_wrapping(multi
->space
))
769 isl_die(FN(MULTI(BASE
),get_ctx
)(multi
), isl_error_invalid
,
770 "not a product", return FN(MULTI(BASE
),free
)(multi
));
772 space
= FN(MULTI(BASE
),get_space
)(multi
);
773 space
= isl_space_factor_range(space
);
774 keep
= isl_space_dim(space
, isl_dim_set
);
776 multi
= FN(MULTI(BASE
),free
)(multi
);
777 multi
= FN(MULTI(BASE
),drop_dims
)(multi
, isl_dim_set
, 0, total
- keep
);
778 multi
= FN(MULTI(BASE
),reset_space
)(multi
, space
);
783 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),flatten_range
)(
784 __isl_take
MULTI(BASE
) *multi
)
788 space
= FN(MULTI(BASE
),take_space
)(multi
);
789 space
= isl_space_flatten_range(space
);
790 multi
= FN(MULTI(BASE
),restore_space
)(multi
, space
);
795 /* Given two MULTI(BASE)s A -> B and C -> D,
796 * construct a MULTI(BASE) (A * C) -> (B, D).
798 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),flat_range_product
)(
799 __isl_take
MULTI(BASE
) *multi1
, __isl_take
MULTI(BASE
) *multi2
)
803 multi
= FN(MULTI(BASE
),range_product
)(multi1
, multi2
);
804 multi
= FN(MULTI(BASE
),flatten_range
)(multi
);
808 /* Given two multi expressions, "multi1"
812 * where B2 starts at position "pos", and "multi2"
816 * return the multi expression
820 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),range_splice
)(
821 __isl_take
MULTI(BASE
) *multi1
, unsigned pos
,
822 __isl_take
MULTI(BASE
) *multi2
)
827 dim
= FN(MULTI(BASE
),size
)(multi1
);
828 if (dim
< 0 || !multi2
)
831 if (FN(MULTI(BASE
),check_range
)(multi1
, isl_dim_out
, pos
, 0) < 0)
834 res
= FN(MULTI(BASE
),copy
)(multi1
);
835 res
= FN(MULTI(BASE
),drop_dims
)(res
, isl_dim_out
, pos
, dim
- pos
);
836 multi1
= FN(MULTI(BASE
),drop_dims
)(multi1
, isl_dim_out
, 0, pos
);
838 res
= FN(MULTI(BASE
),flat_range_product
)(res
, multi2
);
839 res
= FN(MULTI(BASE
),flat_range_product
)(res
, multi1
);
843 FN(MULTI(BASE
),free
)(multi1
);
844 FN(MULTI(BASE
),free
)(multi2
);
849 #define TYPE MULTI(BASE)
852 #include "isl_type_has_equal_space_bin_templ.c"
854 #include "isl_type_check_equal_space_templ.c"
856 /* This function is currently only used from isl_aff.c
858 static __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),bin_op
)(
859 __isl_take
MULTI(BASE
) *multi1
, __isl_take
MULTI(BASE
) *multi2
,
860 __isl_give EL
*(*fn
)(__isl_take EL
*, __isl_take EL
*))
861 __attribute__ ((unused
));
863 /* Pairwise perform "fn" to the elements of "multi1" and "multi2" and
866 * If "multi2" has an explicit domain, then
867 * intersect the domain of the result with this explicit domain.
869 static __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),bin_op
)(
870 __isl_take
MULTI(BASE
) *multi1
, __isl_take
MULTI(BASE
) *multi2
,
871 __isl_give EL
*(*fn
)(__isl_take EL
*, __isl_take EL
*))
876 FN(MULTI(BASE
),align_params_bin
)(&multi1
, &multi2
);
877 n
= FN(MULTI(BASE
),size
)(multi1
);
878 if (n
< 0 || FN(MULTI(BASE
),check_equal_space
)(multi1
, multi2
) < 0)
881 for (i
= 0; i
< n
; ++i
) {
884 el2
= FN(MULTI(BASE
),get_at
)(multi2
, i
);
885 el1
= FN(MULTI(BASE
),take_at
)(multi1
, i
);
887 multi1
= FN(MULTI(BASE
),restore_at
)(multi1
, i
, el1
);
890 if (FN(MULTI(BASE
),has_explicit_domain
)(multi2
))
891 multi1
= FN(MULTI(BASE
),intersect_explicit_domain
)(multi1
,
894 FN(MULTI(BASE
),free
)(multi2
);
897 FN(MULTI(BASE
),free
)(multi1
);
898 FN(MULTI(BASE
),free
)(multi2
);
902 /* Only used on some multi-expressions.
904 static isl_bool
FN(MULTI(BASE
),any
)(__isl_keep
MULTI(BASE
) *multi
,
905 isl_bool (*test
)(__isl_keep EL
*)) __attribute__ ((unused
));
907 /* Does "test" succeed on any base expression of "multi"?
909 static isl_bool
FN(MULTI(BASE
),any
)(__isl_keep
MULTI(BASE
) *multi
,
910 isl_bool (*test
)(__isl_keep EL
*))
915 n
= FN(MULTI(BASE
),size
)(multi
);
917 return isl_bool_error
;
919 for (i
= 0; i
< n
; ++i
) {
920 isl_bool any
= test(multi
->u
.p
[i
]);
925 return isl_bool_false
;
928 /* Only used on some multi-expressions.
930 static isl_bool
FN(MULTI(BASE
),every
)(__isl_keep
MULTI(BASE
) *multi
,
931 isl_bool (*test
)(__isl_keep EL
*)) __attribute__ ((unused
));
933 /* Does "test" succeed on every base expression of "multi"?
935 static isl_bool
FN(MULTI(BASE
),every
)(__isl_keep
MULTI(BASE
) *multi
,
936 isl_bool (*test
)(__isl_keep EL
*))
941 n
= FN(MULTI(BASE
),size
)(multi
);
943 return isl_bool_error
;
945 for (i
= 0; i
< n
; ++i
) {
946 isl_bool every
= test(multi
->u
.p
[i
]);
947 if (every
< 0 || !every
)
951 return isl_bool_true
;
954 /* Convert a multiple expression defined over a parameter domain
955 * into one that is defined over a zero-dimensional set.
957 __isl_give
MULTI(BASE
) *FN(MULTI(BASE
),from_range
)(
958 __isl_take
MULTI(BASE
) *multi
)
964 if (!isl_space_is_set(multi
->space
))
965 isl_die(FN(MULTI(BASE
),get_ctx
)(multi
), isl_error_invalid
,
966 "not living in a set space",
967 return FN(MULTI(BASE
),free
)(multi
));
969 space
= FN(MULTI(BASE
),get_space
)(multi
);
970 space
= isl_space_from_range(space
);
971 multi
= FN(MULTI(BASE
),reset_space
)(multi
, space
);
976 /* Are "multi1" and "multi2" obviously equal?
978 isl_bool
FN(MULTI(BASE
),plain_is_equal
)(__isl_keep
MULTI(BASE
) *multi1
,
979 __isl_keep
MULTI(BASE
) *multi2
)
984 if (!multi1
|| !multi2
)
985 return isl_bool_error
;
986 if (multi1
->n
!= multi2
->n
)
987 return isl_bool_false
;
988 equal
= isl_space_is_equal(multi1
->space
, multi2
->space
);
989 if (equal
< 0 || !equal
)
992 for (i
= 0; i
< multi1
->n
; ++i
) {
993 equal
= FN(EL
,plain_is_equal
)(multi1
->u
.p
[i
], multi2
->u
.p
[i
]);
994 if (equal
< 0 || !equal
)
998 if (FN(MULTI(BASE
),has_explicit_domain
)(multi1
) ||
999 FN(MULTI(BASE
),has_explicit_domain
)(multi2
)) {
1000 equal
= FN(MULTI(BASE
),equal_explicit_domain
)(multi1
, multi2
);
1001 if (equal
< 0 || !equal
)
1005 return isl_bool_true
;