1 #define xFN(TYPE,NAME) TYPE ## _ ## NAME
2 #define FN(TYPE,NAME) xFN(TYPE,NAME)
3 #define xS(TYPE,NAME) struct TYPE ## _ ## NAME
4 #define S(TYPE,NAME) xS(TYPE,NAME)
7 static __isl_give PW *FN(PW,alloc_)(__isl_take isl_dim *dim,
8 enum isl_fold type, int n)
10 static __isl_give PW *FN(PW,alloc_)(__isl_take isl_dim *dim, int n)
17 isl_assert(dim->ctx, n >= 0, goto error);
18 pw = isl_alloc(dim->ctx, struct PW,
19 sizeof(struct PW) + (n - 1) * sizeof(S(PW,piece)));
37 __isl_give PW *FN(PW,zero)(__isl_take isl_dim *dim, enum isl_fold type)
39 return FN(PW,alloc_)(dim, type, 0);
42 __isl_give PW *FN(PW,zero)(__isl_take isl_dim *dim)
44 return FN(PW,alloc_)(dim, 0);
48 __isl_give PW *FN(PW,add_piece)(__isl_take PW *pw,
49 __isl_take isl_set *set, __isl_take EL *el)
51 if (!pw || !set || !el)
54 if (isl_set_fast_is_empty(set) || FN(EL,IS_ZERO)(el)) {
61 if (pw->type != el->type)
62 isl_die(set->ctx, isl_error_invalid, "fold types don't match",
65 isl_assert(set->ctx, isl_dim_equal(pw->dim, el->dim), goto error);
66 isl_assert(set->ctx, pw->n < pw->size, goto error);
68 pw->p[pw->n].set = set;
69 pw->p[pw->n].FIELD = el;
81 __isl_give PW *FN(PW,alloc)(enum isl_fold type,
82 __isl_take isl_set *set, __isl_take EL *el)
84 __isl_give PW *FN(PW,alloc)(__isl_take isl_set *set, __isl_take EL *el)
93 pw = FN(PW,alloc_)(isl_set_get_dim(set), type, 1);
95 pw = FN(PW,alloc_)(isl_set_get_dim(set), 1);
98 return FN(PW,add_piece)(pw, set, el);
105 __isl_give PW *FN(PW,dup)(__isl_keep PW *pw)
114 dup = FN(PW,alloc_)(isl_dim_copy(pw->dim), pw->type, pw->n);
116 dup = FN(PW,alloc_)(isl_dim_copy(pw->dim), pw->n);
121 for (i = 0; i < pw->n; ++i)
122 dup = FN(PW,add_piece)(dup, isl_set_copy(pw->p[i].set),
123 FN(EL,copy)(pw->p[i].FIELD));
131 __isl_give PW *FN(PW,cow)(__isl_take PW *pw)
139 return FN(PW,dup)(pw);
142 __isl_give PW *FN(PW,copy)(__isl_keep PW *pw)
151 void FN(PW,free)(__isl_take PW *pw)
160 for (i = 0; i < pw->n; ++i) {
161 isl_set_free(pw->p[i].set);
162 FN(EL,free)(pw->p[i].FIELD);
164 isl_dim_free(pw->dim);
168 int FN(PW,is_zero)(__isl_keep PW *pw)
176 __isl_give PW *FN(PW,add)(__isl_take PW *pw1, __isl_take PW *pw2)
186 if (pw1->type != pw2->type)
187 isl_die(pw1->dim->ctx, isl_error_invalid,
188 "fold types don't match", goto error);
190 isl_assert(pw1->dim->ctx, isl_dim_equal(pw1->dim, pw2->dim), goto error);
192 if (FN(PW,is_zero)(pw1)) {
197 if (FN(PW,is_zero)(pw2)) {
202 n = (pw1->n + 1) * (pw2->n + 1);
204 res = FN(PW,alloc_)(isl_dim_copy(pw1->dim), pw1->type, n);
206 res = FN(PW,alloc_)(isl_dim_copy(pw1->dim), n);
209 for (i = 0; i < pw1->n; ++i) {
210 set = isl_set_copy(pw1->p[i].set);
211 for (j = 0; j < pw2->n; ++j) {
212 struct isl_set *common;
214 set = isl_set_subtract(set,
215 isl_set_copy(pw2->p[j].set));
216 common = isl_set_intersect(isl_set_copy(pw1->p[i].set),
217 isl_set_copy(pw2->p[j].set));
218 if (isl_set_fast_is_empty(common)) {
219 isl_set_free(common);
223 sum = FN(EL,add_on_domain)(common,
224 FN(EL,copy)(pw1->p[i].FIELD),
225 FN(EL,copy)(pw2->p[j].FIELD));
227 res = FN(PW,add_piece)(res, common, sum);
229 res = FN(PW,add_piece)(res, set, FN(EL,copy)(pw1->p[i].FIELD));
232 for (j = 0; j < pw2->n; ++j) {
233 set = isl_set_copy(pw2->p[j].set);
234 for (i = 0; i < pw1->n; ++i)
235 set = isl_set_subtract(set,
236 isl_set_copy(pw1->p[i].set));
237 res = FN(PW,add_piece)(res, set, FN(EL,copy)(pw2->p[j].FIELD));
250 __isl_give PW *FN(PW,add_disjoint)(__isl_take PW *pw1, __isl_take PW *pw2)
259 if (pw1->type != pw2->type)
260 isl_die(pw1->dim->ctx, isl_error_invalid,
261 "fold types don't match", goto error);
263 isl_assert(pw1->dim->ctx, isl_dim_equal(pw1->dim, pw2->dim), goto error);
265 if (FN(PW,is_zero)(pw1)) {
270 if (FN(PW,is_zero)(pw2)) {
276 res = FN(PW,alloc_)(isl_dim_copy(pw1->dim), pw1->type, pw1->n + pw2->n);
278 res = FN(PW,alloc_)(isl_dim_copy(pw1->dim), pw1->n + pw2->n);
281 for (i = 0; i < pw1->n; ++i)
282 res = FN(PW,add_piece)(res,
283 isl_set_copy(pw1->p[i].set),
284 FN(EL,copy)(pw1->p[i].FIELD));
286 for (i = 0; i < pw2->n; ++i)
287 res = FN(PW,add_piece)(res,
288 isl_set_copy(pw2->p[i].set),
289 FN(EL,copy)(pw2->p[i].FIELD));
301 __isl_give isl_qpolynomial *FN(PW,eval)(__isl_take PW *pw,
302 __isl_take isl_point *pnt)
310 isl_assert(pnt->dim->ctx, isl_dim_equal(pnt->dim, pw->dim), goto error);
312 for (i = 0; i < pw->n; ++i) {
313 found = isl_set_contains_point(pw->p[i].set, pnt);
320 qp = FN(EL,eval)(FN(EL,copy)(pw->p[i].FIELD),
321 isl_point_copy(pnt));
323 qp = isl_qpolynomial_zero(isl_dim_copy(pw->dim));
333 __isl_give isl_set *FN(PW,domain)(__isl_take PW *pw)
341 dom = isl_set_empty(isl_dim_copy(pw->dim));
342 for (i = 0; i < pw->n; ++i)
343 dom = isl_set_union_disjoint(dom, isl_set_copy(pw->p[i].set));
350 __isl_give PW *FN(PW,intersect_domain)(__isl_take PW *pw, __isl_take isl_set *set)
366 for (i = pw->n - 1; i >= 0; --i) {
368 pw->p[i].set = isl_set_intersect(pw->p[i].set, isl_set_copy(set));
371 aff = isl_set_affine_hull(isl_set_copy(pw->p[i].set));
372 pw->p[i].FIELD = FN(EL,substitute_equalities)(pw->p[i].FIELD,
374 if (isl_set_fast_is_empty(pw->p[i].set)) {
375 isl_set_free(pw->p[i].set);
376 FN(EL,free)(pw->p[i].FIELD);
378 pw->p[i] = pw->p[pw->n - 1];
391 __isl_give PW *FN(PW,gist)(__isl_take PW *pw, __isl_take isl_set *context)
394 isl_basic_set *hull = NULL;
400 isl_set_free(context);
404 hull = isl_set_simple_hull(isl_set_copy(context));
410 for (i = 0; i < pw->n; ++i) {
411 pw->p[i].set = isl_set_gist_basic_set(pw->p[i].set,
412 isl_basic_set_copy(hull));
417 isl_basic_set_free(hull);
418 isl_set_free(context);
423 isl_basic_set_free(hull);
424 isl_set_free(context);
428 __isl_give PW *FN(PW,coalesce)(__isl_take PW *pw)
437 for (i = pw->n - 1; i >= 0; --i) {
438 for (j = i - 1; j >= 0; --j) {
439 if (!FN(EL,is_equal)(pw->p[i].FIELD, pw->p[j].FIELD))
441 pw->p[j].set = isl_set_union(pw->p[j].set,
443 FN(EL,free)(pw->p[i].FIELD);
445 pw->p[i] = pw->p[pw->n - 1];
451 pw->p[i].set = isl_set_coalesce(pw->p[i].set);
462 isl_ctx *FN(PW,get_ctx)(__isl_keep PW *pw)
464 return pw ? pw->dim->ctx : NULL;
467 int FN(PW,involves_dims)(__isl_keep PW *pw, enum isl_dim_type type,
468 unsigned first, unsigned n)
474 if (pw->n == 0 || n == 0)
476 for (i = 0; i < pw->n; ++i) {
477 int involves = FN(EL,involves_dims)(pw->p[i].FIELD,
479 if (involves < 0 || involves)
485 __isl_give PW *FN(PW,drop_dims)(__isl_take PW *pw,
486 enum isl_dim_type type, unsigned first, unsigned n)
492 if (n == 0 && !isl_dim_get_tuple_name(pw->dim, type))
498 pw->dim = isl_dim_drop(pw->dim, type, first, n);
501 for (i = 0; i < pw->n; ++i) {
502 pw->p[i].set = isl_set_drop(pw->p[i].set, type, first, n);
505 pw->p[i].FIELD = FN(EL,drop_dims)(pw->p[i].FIELD, type, first, n);
516 __isl_give PW *FN(PW,insert_dims)(__isl_take PW *pw, enum isl_dim_type type,
517 unsigned first, unsigned n)
523 if (n == 0 && !isl_dim_is_named_or_nested(pw->dim, type))
530 pw->dim = isl_dim_insert(pw->dim, type, first, n);
534 for (i = 0; i < pw->n; ++i) {
535 pw->p[i].set = isl_set_insert(pw->p[i].set, type, first, n);
538 pw->p[i].FIELD = FN(EL,insert_dims)(pw->p[i].FIELD,
550 __isl_give PW *FN(PW,fix_dim)(__isl_take PW *pw,
551 enum isl_dim_type type, unsigned pos, isl_int v)
561 for (i = 0; i < pw->n; ++i) {
562 pw->p[i].set = isl_set_fix(pw->p[i].set, type, pos, v);
573 unsigned FN(PW,dim)(__isl_keep PW *pw, enum isl_dim_type type)
575 return pw ? isl_dim_size(pw->dim, type) : 0;
578 __isl_give PW *FN(PW,split_dims)(__isl_take PW *pw,
579 enum isl_dim_type type, unsigned first, unsigned n)
593 for (i = 0; i < pw->n; ++i) {
594 pw->p[i].set = isl_set_split_dims(pw->p[i].set, type, first, n);
605 /* Compute the maximal value attained by the piecewise quasipolynomial
606 * on its domain or zero if the domain is empty.
607 * In the worst case, the domain is scanned completely,
608 * so the domain is assumed to be bounded.
610 __isl_give isl_qpolynomial *FN(PW,opt)(__isl_take PW *pw, int max)
613 isl_qpolynomial *opt;
619 isl_dim *dim = isl_dim_copy(pw->dim);
621 return isl_qpolynomial_zero(dim);
624 opt = FN(EL,opt_on_domain)(FN(EL,copy)(pw->p[0].FIELD),
625 isl_set_copy(pw->p[0].set), max);
626 for (i = 1; i < pw->n; ++i) {
627 isl_qpolynomial *opt_i;
628 opt_i = FN(EL,opt_on_domain)(FN(EL,copy)(pw->p[i].FIELD),
629 isl_set_copy(pw->p[i].set), max);
631 opt = isl_qpolynomial_max_cst(opt, opt_i);
633 opt = isl_qpolynomial_min_cst(opt, opt_i);
640 __isl_give isl_qpolynomial *FN(PW,max)(__isl_take PW *pw)
642 return FN(PW,opt)(pw, 1);
645 __isl_give isl_qpolynomial *FN(PW,min)(__isl_take PW *pw)
647 return FN(PW,opt)(pw, 0);
650 __isl_give isl_dim *FN(PW,get_dim)(__isl_keep PW *pw)
652 return pw ? isl_dim_copy(pw->dim) : NULL;
655 __isl_give PW *FN(PW,reset_dim)(__isl_take PW *pw, __isl_take isl_dim *dim)
663 for (i = 0; i < pw->n; ++i) {
664 pw->p[i].set = isl_set_reset_dim(pw->p[i].set,
668 pw->p[i].FIELD = FN(EL,reset_dim)(pw->p[i].FIELD,
673 isl_dim_free(pw->dim);
683 int FN(PW,has_equal_dim)(__isl_keep PW *pw1, __isl_keep PW *pw2)
688 return isl_dim_equal(pw1->dim, pw2->dim);
691 __isl_give PW *FN(PW,morph)(__isl_take PW *pw, __isl_take isl_morph *morph)
698 isl_assert(pw->dim->ctx, isl_dim_equal(pw->dim, morph->dom->dim),
704 isl_dim_free(pw->dim);
705 pw->dim = isl_dim_copy(morph->ran->dim);
709 for (i = 0; i < pw->n; ++i) {
710 pw->p[i].set = isl_morph_set(isl_morph_copy(morph), pw->p[i].set);
713 pw->p[i].FIELD = FN(EL,morph)(pw->p[i].FIELD,
714 isl_morph_copy(morph));
719 isl_morph_free(morph);
724 isl_morph_free(morph);
728 int FN(PW,foreach_piece)(__isl_keep PW *pw,
729 int (*fn)(__isl_take isl_set *set, __isl_take EL *el, void *user),
737 for (i = 0; i < pw->n; ++i)
738 if (fn(isl_set_copy(pw->p[i].set),
739 FN(EL,copy)(pw->p[i].FIELD), user) < 0)
745 static int any_divs(__isl_keep isl_set *set)
752 for (i = 0; i < set->n; ++i)
753 if (set->p[i]->n_div > 0)
759 static int foreach_lifted_subset(__isl_take isl_set *set, __isl_take EL *el,
760 int (*fn)(__isl_take isl_set *set, __isl_take EL *el,
761 void *user), void *user)
768 for (i = 0; i < set->n; ++i) {
772 lift = isl_set_from_basic_set(isl_basic_set_copy(set->p[i]));
773 lift = isl_set_lift(lift);
775 copy = FN(EL,copy)(el);
776 copy = FN(EL,lift)(copy, isl_set_get_dim(lift));
778 if (fn(lift, copy, user) < 0)
792 int FN(PW,foreach_lifted_piece)(__isl_keep PW *pw,
793 int (*fn)(__isl_take isl_set *set, __isl_take EL *el,
794 void *user), void *user)
801 for (i = 0; i < pw->n; ++i) {
805 set = isl_set_copy(pw->p[i].set);
806 el = FN(EL,copy)(pw->p[i].FIELD);
807 if (!any_divs(set)) {
808 if (fn(set, el, user) < 0)
812 if (foreach_lifted_subset(set, el, fn, user) < 0)
819 __isl_give PW *FN(PW,move_dims)(__isl_take PW *pw,
820 enum isl_dim_type dst_type, unsigned dst_pos,
821 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
829 pw->dim = isl_dim_move(pw->dim, dst_type, dst_pos, src_type, src_pos, n);
833 for (i = 0; i < pw->n; ++i) {
834 pw->p[i].set = isl_set_move_dims(pw->p[i].set,
836 src_type, src_pos, n);
839 pw->p[i].FIELD = FN(EL,move_dims)(pw->p[i].FIELD,
840 dst_type, dst_pos, src_type, src_pos, n);
851 __isl_give PW *FN(PW,realign)(__isl_take PW *pw, __isl_take isl_reordering *exp)
859 for (i = 0; i < pw->n; ++i) {
860 pw->p[i].set = isl_set_realign(pw->p[i].set,
861 isl_reordering_copy(exp));
864 pw->p[i].FIELD = FN(EL,realign)(pw->p[i].FIELD,
865 isl_reordering_copy(exp));
870 pw = FN(PW,reset_dim)(pw, isl_dim_copy(exp->dim));
872 isl_reordering_free(exp);
875 isl_reordering_free(exp);