isl_basic_map_remove_redundancies: sort constraints
[isl.git] / isl_aff.c
blob79aed95ec0af33a279c54b1f61bfdf3cb2de45f7
1 /*
2 * Copyright 2011 INRIA Saclay
3 * Copyright 2011 Sven Verdoolaege
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
10 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
11 * 91893 Orsay, France
12 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
13 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
14 * B.P. 105 - 78153 Le Chesnay, France
17 #include <isl_ctx_private.h>
18 #define ISL_DIM_H
19 #include <isl_map_private.h>
20 #include <isl_union_map_private.h>
21 #include <isl_aff_private.h>
22 #include <isl_space_private.h>
23 #include <isl_local_space_private.h>
24 #include <isl_vec_private.h>
25 #include <isl_mat_private.h>
26 #include <isl/constraint.h>
27 #include <isl_seq.h>
28 #include <isl/set.h>
29 #include <isl_val_private.h>
30 #include <isl/deprecated/aff_int.h>
31 #include <isl_config.h>
33 #undef BASE
34 #define BASE aff
36 #include <isl_list_templ.c>
38 #undef BASE
39 #define BASE pw_aff
41 #include <isl_list_templ.c>
43 #undef BASE
44 #define BASE union_pw_aff
46 #include <isl_list_templ.c>
48 #undef BASE
49 #define BASE union_pw_multi_aff
51 #include <isl_list_templ.c>
53 __isl_give isl_aff *isl_aff_alloc_vec(__isl_take isl_local_space *ls,
54 __isl_take isl_vec *v)
56 isl_aff *aff;
58 if (!ls || !v)
59 goto error;
61 aff = isl_calloc_type(v->ctx, struct isl_aff);
62 if (!aff)
63 goto error;
65 aff->ref = 1;
66 aff->ls = ls;
67 aff->v = v;
69 return aff;
70 error:
71 isl_local_space_free(ls);
72 isl_vec_free(v);
73 return NULL;
76 __isl_give isl_aff *isl_aff_alloc(__isl_take isl_local_space *ls)
78 isl_ctx *ctx;
79 isl_vec *v;
80 unsigned total;
82 if (!ls)
83 return NULL;
85 ctx = isl_local_space_get_ctx(ls);
86 if (!isl_local_space_divs_known(ls))
87 isl_die(ctx, isl_error_invalid, "local space has unknown divs",
88 goto error);
89 if (!isl_local_space_is_set(ls))
90 isl_die(ctx, isl_error_invalid,
91 "domain of affine expression should be a set",
92 goto error);
94 total = isl_local_space_dim(ls, isl_dim_all);
95 v = isl_vec_alloc(ctx, 1 + 1 + total);
96 return isl_aff_alloc_vec(ls, v);
97 error:
98 isl_local_space_free(ls);
99 return NULL;
102 __isl_give isl_aff *isl_aff_zero_on_domain(__isl_take isl_local_space *ls)
104 isl_aff *aff;
106 aff = isl_aff_alloc(ls);
107 if (!aff)
108 return NULL;
110 isl_int_set_si(aff->v->el[0], 1);
111 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
113 return aff;
116 /* Return a piecewise affine expression defined on the specified domain
117 * that is equal to zero.
119 __isl_give isl_pw_aff *isl_pw_aff_zero_on_domain(__isl_take isl_local_space *ls)
121 return isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls));
124 /* Return an affine expression defined on the specified domain
125 * that represents NaN.
127 __isl_give isl_aff *isl_aff_nan_on_domain(__isl_take isl_local_space *ls)
129 isl_aff *aff;
131 aff = isl_aff_alloc(ls);
132 if (!aff)
133 return NULL;
135 isl_seq_clr(aff->v->el, aff->v->size);
137 return aff;
140 /* Return a piecewise affine expression defined on the specified domain
141 * that represents NaN.
143 __isl_give isl_pw_aff *isl_pw_aff_nan_on_domain(__isl_take isl_local_space *ls)
145 return isl_pw_aff_from_aff(isl_aff_nan_on_domain(ls));
148 /* Return an affine expression that is equal to "val" on
149 * domain local space "ls".
151 __isl_give isl_aff *isl_aff_val_on_domain(__isl_take isl_local_space *ls,
152 __isl_take isl_val *val)
154 isl_aff *aff;
156 if (!ls || !val)
157 goto error;
158 if (!isl_val_is_rat(val))
159 isl_die(isl_val_get_ctx(val), isl_error_invalid,
160 "expecting rational value", goto error);
162 aff = isl_aff_alloc(isl_local_space_copy(ls));
163 if (!aff)
164 goto error;
166 isl_seq_clr(aff->v->el + 2, aff->v->size - 2);
167 isl_int_set(aff->v->el[1], val->n);
168 isl_int_set(aff->v->el[0], val->d);
170 isl_local_space_free(ls);
171 isl_val_free(val);
172 return aff;
173 error:
174 isl_local_space_free(ls);
175 isl_val_free(val);
176 return NULL;
179 /* Return an affine expression that is equal to the specified dimension
180 * in "ls".
182 __isl_give isl_aff *isl_aff_var_on_domain(__isl_take isl_local_space *ls,
183 enum isl_dim_type type, unsigned pos)
185 isl_space *space;
186 isl_aff *aff;
188 if (!ls)
189 return NULL;
191 space = isl_local_space_get_space(ls);
192 if (!space)
193 goto error;
194 if (isl_space_is_map(space))
195 isl_die(isl_space_get_ctx(space), isl_error_invalid,
196 "expecting (parameter) set space", goto error);
197 if (pos >= isl_local_space_dim(ls, type))
198 isl_die(isl_space_get_ctx(space), isl_error_invalid,
199 "position out of bounds", goto error);
201 isl_space_free(space);
202 aff = isl_aff_alloc(ls);
203 if (!aff)
204 return NULL;
206 pos += isl_local_space_offset(aff->ls, type);
208 isl_int_set_si(aff->v->el[0], 1);
209 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
210 isl_int_set_si(aff->v->el[1 + pos], 1);
212 return aff;
213 error:
214 isl_local_space_free(ls);
215 isl_space_free(space);
216 return NULL;
219 /* Return a piecewise affine expression that is equal to
220 * the specified dimension in "ls".
222 __isl_give isl_pw_aff *isl_pw_aff_var_on_domain(__isl_take isl_local_space *ls,
223 enum isl_dim_type type, unsigned pos)
225 return isl_pw_aff_from_aff(isl_aff_var_on_domain(ls, type, pos));
228 __isl_give isl_aff *isl_aff_copy(__isl_keep isl_aff *aff)
230 if (!aff)
231 return NULL;
233 aff->ref++;
234 return aff;
237 __isl_give isl_aff *isl_aff_dup(__isl_keep isl_aff *aff)
239 if (!aff)
240 return NULL;
242 return isl_aff_alloc_vec(isl_local_space_copy(aff->ls),
243 isl_vec_copy(aff->v));
246 __isl_give isl_aff *isl_aff_cow(__isl_take isl_aff *aff)
248 if (!aff)
249 return NULL;
251 if (aff->ref == 1)
252 return aff;
253 aff->ref--;
254 return isl_aff_dup(aff);
257 __isl_null isl_aff *isl_aff_free(__isl_take isl_aff *aff)
259 if (!aff)
260 return NULL;
262 if (--aff->ref > 0)
263 return NULL;
265 isl_local_space_free(aff->ls);
266 isl_vec_free(aff->v);
268 free(aff);
270 return NULL;
273 isl_ctx *isl_aff_get_ctx(__isl_keep isl_aff *aff)
275 return aff ? isl_local_space_get_ctx(aff->ls) : NULL;
278 /* Return a hash value that digests "aff".
280 uint32_t isl_aff_get_hash(__isl_keep isl_aff *aff)
282 uint32_t hash, ls_hash, v_hash;
284 if (!aff)
285 return 0;
287 hash = isl_hash_init();
288 ls_hash = isl_local_space_get_hash(aff->ls);
289 isl_hash_hash(hash, ls_hash);
290 v_hash = isl_vec_get_hash(aff->v);
291 isl_hash_hash(hash, v_hash);
293 return hash;
296 /* Externally, an isl_aff has a map space, but internally, the
297 * ls field corresponds to the domain of that space.
299 int isl_aff_dim(__isl_keep isl_aff *aff, enum isl_dim_type type)
301 if (!aff)
302 return 0;
303 if (type == isl_dim_out)
304 return 1;
305 if (type == isl_dim_in)
306 type = isl_dim_set;
307 return isl_local_space_dim(aff->ls, type);
310 /* Return the position of the dimension of the given type and name
311 * in "aff".
312 * Return -1 if no such dimension can be found.
314 int isl_aff_find_dim_by_name(__isl_keep isl_aff *aff, enum isl_dim_type type,
315 const char *name)
317 if (!aff)
318 return -1;
319 if (type == isl_dim_out)
320 return -1;
321 if (type == isl_dim_in)
322 type = isl_dim_set;
323 return isl_local_space_find_dim_by_name(aff->ls, type, name);
326 __isl_give isl_space *isl_aff_get_domain_space(__isl_keep isl_aff *aff)
328 return aff ? isl_local_space_get_space(aff->ls) : NULL;
331 __isl_give isl_space *isl_aff_get_space(__isl_keep isl_aff *aff)
333 isl_space *space;
334 if (!aff)
335 return NULL;
336 space = isl_local_space_get_space(aff->ls);
337 space = isl_space_from_domain(space);
338 space = isl_space_add_dims(space, isl_dim_out, 1);
339 return space;
342 __isl_give isl_local_space *isl_aff_get_domain_local_space(
343 __isl_keep isl_aff *aff)
345 return aff ? isl_local_space_copy(aff->ls) : NULL;
348 __isl_give isl_local_space *isl_aff_get_local_space(__isl_keep isl_aff *aff)
350 isl_local_space *ls;
351 if (!aff)
352 return NULL;
353 ls = isl_local_space_copy(aff->ls);
354 ls = isl_local_space_from_domain(ls);
355 ls = isl_local_space_add_dims(ls, isl_dim_out, 1);
356 return ls;
359 /* Externally, an isl_aff has a map space, but internally, the
360 * ls field corresponds to the domain of that space.
362 const char *isl_aff_get_dim_name(__isl_keep isl_aff *aff,
363 enum isl_dim_type type, unsigned pos)
365 if (!aff)
366 return NULL;
367 if (type == isl_dim_out)
368 return NULL;
369 if (type == isl_dim_in)
370 type = isl_dim_set;
371 return isl_local_space_get_dim_name(aff->ls, type, pos);
374 __isl_give isl_aff *isl_aff_reset_domain_space(__isl_take isl_aff *aff,
375 __isl_take isl_space *dim)
377 aff = isl_aff_cow(aff);
378 if (!aff || !dim)
379 goto error;
381 aff->ls = isl_local_space_reset_space(aff->ls, dim);
382 if (!aff->ls)
383 return isl_aff_free(aff);
385 return aff;
386 error:
387 isl_aff_free(aff);
388 isl_space_free(dim);
389 return NULL;
392 /* Reset the space of "aff". This function is called from isl_pw_templ.c
393 * and doesn't know if the space of an element object is represented
394 * directly or through its domain. It therefore passes along both.
396 __isl_give isl_aff *isl_aff_reset_space_and_domain(__isl_take isl_aff *aff,
397 __isl_take isl_space *space, __isl_take isl_space *domain)
399 isl_space_free(space);
400 return isl_aff_reset_domain_space(aff, domain);
403 /* Reorder the coefficients of the affine expression based
404 * on the given reodering.
405 * The reordering r is assumed to have been extended with the local
406 * variables.
408 static __isl_give isl_vec *vec_reorder(__isl_take isl_vec *vec,
409 __isl_take isl_reordering *r, int n_div)
411 isl_vec *res;
412 int i;
414 if (!vec || !r)
415 goto error;
417 res = isl_vec_alloc(vec->ctx,
418 2 + isl_space_dim(r->dim, isl_dim_all) + n_div);
419 isl_seq_cpy(res->el, vec->el, 2);
420 isl_seq_clr(res->el + 2, res->size - 2);
421 for (i = 0; i < r->len; ++i)
422 isl_int_set(res->el[2 + r->pos[i]], vec->el[2 + i]);
424 isl_reordering_free(r);
425 isl_vec_free(vec);
426 return res;
427 error:
428 isl_vec_free(vec);
429 isl_reordering_free(r);
430 return NULL;
433 /* Reorder the dimensions of the domain of "aff" according
434 * to the given reordering.
436 __isl_give isl_aff *isl_aff_realign_domain(__isl_take isl_aff *aff,
437 __isl_take isl_reordering *r)
439 aff = isl_aff_cow(aff);
440 if (!aff)
441 goto error;
443 r = isl_reordering_extend(r, aff->ls->div->n_row);
444 aff->v = vec_reorder(aff->v, isl_reordering_copy(r),
445 aff->ls->div->n_row);
446 aff->ls = isl_local_space_realign(aff->ls, r);
448 if (!aff->v || !aff->ls)
449 return isl_aff_free(aff);
451 return aff;
452 error:
453 isl_aff_free(aff);
454 isl_reordering_free(r);
455 return NULL;
458 __isl_give isl_aff *isl_aff_align_params(__isl_take isl_aff *aff,
459 __isl_take isl_space *model)
461 if (!aff || !model)
462 goto error;
464 if (!isl_space_match(aff->ls->dim, isl_dim_param,
465 model, isl_dim_param)) {
466 isl_reordering *exp;
468 model = isl_space_drop_dims(model, isl_dim_in,
469 0, isl_space_dim(model, isl_dim_in));
470 model = isl_space_drop_dims(model, isl_dim_out,
471 0, isl_space_dim(model, isl_dim_out));
472 exp = isl_parameter_alignment_reordering(aff->ls->dim, model);
473 exp = isl_reordering_extend_space(exp,
474 isl_aff_get_domain_space(aff));
475 aff = isl_aff_realign_domain(aff, exp);
478 isl_space_free(model);
479 return aff;
480 error:
481 isl_space_free(model);
482 isl_aff_free(aff);
483 return NULL;
486 /* Is "aff" obviously equal to zero?
488 * If the denominator is zero, then "aff" is not equal to zero.
490 isl_bool isl_aff_plain_is_zero(__isl_keep isl_aff *aff)
492 if (!aff)
493 return isl_bool_error;
495 if (isl_int_is_zero(aff->v->el[0]))
496 return isl_bool_false;
497 return isl_seq_first_non_zero(aff->v->el + 1, aff->v->size - 1) < 0;
500 /* Does "aff" represent NaN?
502 isl_bool isl_aff_is_nan(__isl_keep isl_aff *aff)
504 if (!aff)
505 return isl_bool_error;
507 return isl_seq_first_non_zero(aff->v->el, 2) < 0;
510 /* Does "pa" involve any NaNs?
512 isl_bool isl_pw_aff_involves_nan(__isl_keep isl_pw_aff *pa)
514 int i;
516 if (!pa)
517 return isl_bool_error;
518 if (pa->n == 0)
519 return isl_bool_false;
521 for (i = 0; i < pa->n; ++i) {
522 isl_bool is_nan = isl_aff_is_nan(pa->p[i].aff);
523 if (is_nan < 0 || is_nan)
524 return is_nan;
527 return isl_bool_false;
530 /* Are "aff1" and "aff2" obviously equal?
532 * NaN is not equal to anything, not even to another NaN.
534 isl_bool isl_aff_plain_is_equal(__isl_keep isl_aff *aff1,
535 __isl_keep isl_aff *aff2)
537 isl_bool equal;
539 if (!aff1 || !aff2)
540 return isl_bool_error;
542 if (isl_aff_is_nan(aff1) || isl_aff_is_nan(aff2))
543 return isl_bool_false;
545 equal = isl_local_space_is_equal(aff1->ls, aff2->ls);
546 if (equal < 0 || !equal)
547 return equal;
549 return isl_vec_is_equal(aff1->v, aff2->v);
552 /* Return the common denominator of "aff" in "v".
554 * We cannot return anything meaningful in case of a NaN.
556 int isl_aff_get_denominator(__isl_keep isl_aff *aff, isl_int *v)
558 if (!aff)
559 return -1;
560 if (isl_aff_is_nan(aff))
561 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
562 "cannot get denominator of NaN", return -1);
563 isl_int_set(*v, aff->v->el[0]);
564 return 0;
567 /* Return the common denominator of "aff".
569 __isl_give isl_val *isl_aff_get_denominator_val(__isl_keep isl_aff *aff)
571 isl_ctx *ctx;
573 if (!aff)
574 return NULL;
576 ctx = isl_aff_get_ctx(aff);
577 if (isl_aff_is_nan(aff))
578 return isl_val_nan(ctx);
579 return isl_val_int_from_isl_int(ctx, aff->v->el[0]);
582 /* Return the constant term of "aff" in "v".
584 * We cannot return anything meaningful in case of a NaN.
586 int isl_aff_get_constant(__isl_keep isl_aff *aff, isl_int *v)
588 if (!aff)
589 return -1;
590 if (isl_aff_is_nan(aff))
591 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
592 "cannot get constant term of NaN", return -1);
593 isl_int_set(*v, aff->v->el[1]);
594 return 0;
597 /* Return the constant term of "aff".
599 __isl_give isl_val *isl_aff_get_constant_val(__isl_keep isl_aff *aff)
601 isl_ctx *ctx;
602 isl_val *v;
604 if (!aff)
605 return NULL;
607 ctx = isl_aff_get_ctx(aff);
608 if (isl_aff_is_nan(aff))
609 return isl_val_nan(ctx);
610 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1], aff->v->el[0]);
611 return isl_val_normalize(v);
614 /* Return the coefficient of the variable of type "type" at position "pos"
615 * of "aff" in "v".
617 * We cannot return anything meaningful in case of a NaN.
619 int isl_aff_get_coefficient(__isl_keep isl_aff *aff,
620 enum isl_dim_type type, int pos, isl_int *v)
622 if (!aff)
623 return -1;
625 if (type == isl_dim_out)
626 isl_die(aff->v->ctx, isl_error_invalid,
627 "output/set dimension does not have a coefficient",
628 return -1);
629 if (type == isl_dim_in)
630 type = isl_dim_set;
632 if (pos >= isl_local_space_dim(aff->ls, type))
633 isl_die(aff->v->ctx, isl_error_invalid,
634 "position out of bounds", return -1);
636 if (isl_aff_is_nan(aff))
637 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
638 "cannot get coefficient of NaN", return -1);
639 pos += isl_local_space_offset(aff->ls, type);
640 isl_int_set(*v, aff->v->el[1 + pos]);
642 return 0;
645 /* Return the coefficient of the variable of type "type" at position "pos"
646 * of "aff".
648 __isl_give isl_val *isl_aff_get_coefficient_val(__isl_keep isl_aff *aff,
649 enum isl_dim_type type, int pos)
651 isl_ctx *ctx;
652 isl_val *v;
654 if (!aff)
655 return NULL;
657 ctx = isl_aff_get_ctx(aff);
658 if (type == isl_dim_out)
659 isl_die(ctx, isl_error_invalid,
660 "output/set dimension does not have a coefficient",
661 return NULL);
662 if (type == isl_dim_in)
663 type = isl_dim_set;
665 if (pos >= isl_local_space_dim(aff->ls, type))
666 isl_die(ctx, isl_error_invalid,
667 "position out of bounds", return NULL);
669 if (isl_aff_is_nan(aff))
670 return isl_val_nan(ctx);
671 pos += isl_local_space_offset(aff->ls, type);
672 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1 + pos], aff->v->el[0]);
673 return isl_val_normalize(v);
676 /* Return the sign of the coefficient of the variable of type "type"
677 * at position "pos" of "aff".
679 int isl_aff_coefficient_sgn(__isl_keep isl_aff *aff, enum isl_dim_type type,
680 int pos)
682 isl_ctx *ctx;
684 if (!aff)
685 return 0;
687 ctx = isl_aff_get_ctx(aff);
688 if (type == isl_dim_out)
689 isl_die(ctx, isl_error_invalid,
690 "output/set dimension does not have a coefficient",
691 return 0);
692 if (type == isl_dim_in)
693 type = isl_dim_set;
695 if (pos >= isl_local_space_dim(aff->ls, type))
696 isl_die(ctx, isl_error_invalid,
697 "position out of bounds", return 0);
699 pos += isl_local_space_offset(aff->ls, type);
700 return isl_int_sgn(aff->v->el[1 + pos]);
703 /* Replace the denominator of "aff" by "v".
705 * A NaN is unaffected by this operation.
707 __isl_give isl_aff *isl_aff_set_denominator(__isl_take isl_aff *aff, isl_int v)
709 if (!aff)
710 return NULL;
711 if (isl_aff_is_nan(aff))
712 return aff;
713 aff = isl_aff_cow(aff);
714 if (!aff)
715 return NULL;
717 aff->v = isl_vec_cow(aff->v);
718 if (!aff->v)
719 return isl_aff_free(aff);
721 isl_int_set(aff->v->el[0], v);
723 return aff;
726 /* Replace the numerator of the constant term of "aff" by "v".
728 * A NaN is unaffected by this operation.
730 __isl_give isl_aff *isl_aff_set_constant(__isl_take isl_aff *aff, isl_int v)
732 if (!aff)
733 return NULL;
734 if (isl_aff_is_nan(aff))
735 return aff;
736 aff = isl_aff_cow(aff);
737 if (!aff)
738 return NULL;
740 aff->v = isl_vec_cow(aff->v);
741 if (!aff->v)
742 return isl_aff_free(aff);
744 isl_int_set(aff->v->el[1], v);
746 return aff;
749 /* Replace the constant term of "aff" by "v".
751 * A NaN is unaffected by this operation.
753 __isl_give isl_aff *isl_aff_set_constant_val(__isl_take isl_aff *aff,
754 __isl_take isl_val *v)
756 if (!aff || !v)
757 goto error;
759 if (isl_aff_is_nan(aff)) {
760 isl_val_free(v);
761 return aff;
764 if (!isl_val_is_rat(v))
765 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
766 "expecting rational value", goto error);
768 if (isl_int_eq(aff->v->el[1], v->n) &&
769 isl_int_eq(aff->v->el[0], v->d)) {
770 isl_val_free(v);
771 return aff;
774 aff = isl_aff_cow(aff);
775 if (!aff)
776 goto error;
777 aff->v = isl_vec_cow(aff->v);
778 if (!aff->v)
779 goto error;
781 if (isl_int_eq(aff->v->el[0], v->d)) {
782 isl_int_set(aff->v->el[1], v->n);
783 } else if (isl_int_is_one(v->d)) {
784 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
785 } else {
786 isl_seq_scale(aff->v->el + 1,
787 aff->v->el + 1, v->d, aff->v->size - 1);
788 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
789 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
790 aff->v = isl_vec_normalize(aff->v);
791 if (!aff->v)
792 goto error;
795 isl_val_free(v);
796 return aff;
797 error:
798 isl_aff_free(aff);
799 isl_val_free(v);
800 return NULL;
803 /* Add "v" to the constant term of "aff".
805 * A NaN is unaffected by this operation.
807 __isl_give isl_aff *isl_aff_add_constant(__isl_take isl_aff *aff, isl_int v)
809 if (isl_int_is_zero(v))
810 return aff;
812 if (!aff)
813 return NULL;
814 if (isl_aff_is_nan(aff))
815 return aff;
816 aff = isl_aff_cow(aff);
817 if (!aff)
818 return NULL;
820 aff->v = isl_vec_cow(aff->v);
821 if (!aff->v)
822 return isl_aff_free(aff);
824 isl_int_addmul(aff->v->el[1], aff->v->el[0], v);
826 return aff;
829 /* Add "v" to the constant term of "aff".
831 * A NaN is unaffected by this operation.
833 __isl_give isl_aff *isl_aff_add_constant_val(__isl_take isl_aff *aff,
834 __isl_take isl_val *v)
836 if (!aff || !v)
837 goto error;
839 if (isl_aff_is_nan(aff) || isl_val_is_zero(v)) {
840 isl_val_free(v);
841 return aff;
844 if (!isl_val_is_rat(v))
845 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
846 "expecting rational value", goto error);
848 aff = isl_aff_cow(aff);
849 if (!aff)
850 goto error;
852 aff->v = isl_vec_cow(aff->v);
853 if (!aff->v)
854 goto error;
856 if (isl_int_is_one(v->d)) {
857 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
858 } else if (isl_int_eq(aff->v->el[0], v->d)) {
859 isl_int_add(aff->v->el[1], aff->v->el[1], v->n);
860 aff->v = isl_vec_normalize(aff->v);
861 if (!aff->v)
862 goto error;
863 } else {
864 isl_seq_scale(aff->v->el + 1,
865 aff->v->el + 1, v->d, aff->v->size - 1);
866 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
867 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
868 aff->v = isl_vec_normalize(aff->v);
869 if (!aff->v)
870 goto error;
873 isl_val_free(v);
874 return aff;
875 error:
876 isl_aff_free(aff);
877 isl_val_free(v);
878 return NULL;
881 __isl_give isl_aff *isl_aff_add_constant_si(__isl_take isl_aff *aff, int v)
883 isl_int t;
885 isl_int_init(t);
886 isl_int_set_si(t, v);
887 aff = isl_aff_add_constant(aff, t);
888 isl_int_clear(t);
890 return aff;
893 /* Add "v" to the numerator of the constant term of "aff".
895 * A NaN is unaffected by this operation.
897 __isl_give isl_aff *isl_aff_add_constant_num(__isl_take isl_aff *aff, isl_int v)
899 if (isl_int_is_zero(v))
900 return aff;
902 if (!aff)
903 return NULL;
904 if (isl_aff_is_nan(aff))
905 return aff;
906 aff = isl_aff_cow(aff);
907 if (!aff)
908 return NULL;
910 aff->v = isl_vec_cow(aff->v);
911 if (!aff->v)
912 return isl_aff_free(aff);
914 isl_int_add(aff->v->el[1], aff->v->el[1], v);
916 return aff;
919 /* Add "v" to the numerator of the constant term of "aff".
921 * A NaN is unaffected by this operation.
923 __isl_give isl_aff *isl_aff_add_constant_num_si(__isl_take isl_aff *aff, int v)
925 isl_int t;
927 if (v == 0)
928 return aff;
930 isl_int_init(t);
931 isl_int_set_si(t, v);
932 aff = isl_aff_add_constant_num(aff, t);
933 isl_int_clear(t);
935 return aff;
938 /* Replace the numerator of the constant term of "aff" by "v".
940 * A NaN is unaffected by this operation.
942 __isl_give isl_aff *isl_aff_set_constant_si(__isl_take isl_aff *aff, int v)
944 if (!aff)
945 return NULL;
946 if (isl_aff_is_nan(aff))
947 return aff;
948 aff = isl_aff_cow(aff);
949 if (!aff)
950 return NULL;
952 aff->v = isl_vec_cow(aff->v);
953 if (!aff->v)
954 return isl_aff_free(aff);
956 isl_int_set_si(aff->v->el[1], v);
958 return aff;
961 /* Replace the numerator of the coefficient of the variable of type "type"
962 * at position "pos" of "aff" by "v".
964 * A NaN is unaffected by this operation.
966 __isl_give isl_aff *isl_aff_set_coefficient(__isl_take isl_aff *aff,
967 enum isl_dim_type type, int pos, isl_int v)
969 if (!aff)
970 return NULL;
972 if (type == isl_dim_out)
973 isl_die(aff->v->ctx, isl_error_invalid,
974 "output/set dimension does not have a coefficient",
975 return isl_aff_free(aff));
976 if (type == isl_dim_in)
977 type = isl_dim_set;
979 if (pos >= isl_local_space_dim(aff->ls, type))
980 isl_die(aff->v->ctx, isl_error_invalid,
981 "position out of bounds", return isl_aff_free(aff));
983 if (isl_aff_is_nan(aff))
984 return aff;
985 aff = isl_aff_cow(aff);
986 if (!aff)
987 return NULL;
989 aff->v = isl_vec_cow(aff->v);
990 if (!aff->v)
991 return isl_aff_free(aff);
993 pos += isl_local_space_offset(aff->ls, type);
994 isl_int_set(aff->v->el[1 + pos], v);
996 return aff;
999 /* Replace the numerator of the coefficient of the variable of type "type"
1000 * at position "pos" of "aff" by "v".
1002 * A NaN is unaffected by this operation.
1004 __isl_give isl_aff *isl_aff_set_coefficient_si(__isl_take isl_aff *aff,
1005 enum isl_dim_type type, int pos, int v)
1007 if (!aff)
1008 return NULL;
1010 if (type == isl_dim_out)
1011 isl_die(aff->v->ctx, isl_error_invalid,
1012 "output/set dimension does not have a coefficient",
1013 return isl_aff_free(aff));
1014 if (type == isl_dim_in)
1015 type = isl_dim_set;
1017 if (pos < 0 || pos >= isl_local_space_dim(aff->ls, type))
1018 isl_die(aff->v->ctx, isl_error_invalid,
1019 "position out of bounds", return isl_aff_free(aff));
1021 if (isl_aff_is_nan(aff))
1022 return aff;
1023 pos += isl_local_space_offset(aff->ls, type);
1024 if (isl_int_cmp_si(aff->v->el[1 + pos], v) == 0)
1025 return aff;
1027 aff = isl_aff_cow(aff);
1028 if (!aff)
1029 return NULL;
1031 aff->v = isl_vec_cow(aff->v);
1032 if (!aff->v)
1033 return isl_aff_free(aff);
1035 isl_int_set_si(aff->v->el[1 + pos], v);
1037 return aff;
1040 /* Replace the coefficient of the variable of type "type" at position "pos"
1041 * of "aff" by "v".
1043 * A NaN is unaffected by this operation.
1045 __isl_give isl_aff *isl_aff_set_coefficient_val(__isl_take isl_aff *aff,
1046 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1048 if (!aff || !v)
1049 goto error;
1051 if (type == isl_dim_out)
1052 isl_die(aff->v->ctx, isl_error_invalid,
1053 "output/set dimension does not have a coefficient",
1054 goto error);
1055 if (type == isl_dim_in)
1056 type = isl_dim_set;
1058 if (pos >= isl_local_space_dim(aff->ls, type))
1059 isl_die(aff->v->ctx, isl_error_invalid,
1060 "position out of bounds", goto error);
1062 if (isl_aff_is_nan(aff)) {
1063 isl_val_free(v);
1064 return aff;
1066 if (!isl_val_is_rat(v))
1067 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1068 "expecting rational value", goto error);
1070 pos += isl_local_space_offset(aff->ls, type);
1071 if (isl_int_eq(aff->v->el[1 + pos], v->n) &&
1072 isl_int_eq(aff->v->el[0], v->d)) {
1073 isl_val_free(v);
1074 return aff;
1077 aff = isl_aff_cow(aff);
1078 if (!aff)
1079 goto error;
1080 aff->v = isl_vec_cow(aff->v);
1081 if (!aff->v)
1082 goto error;
1084 if (isl_int_eq(aff->v->el[0], v->d)) {
1085 isl_int_set(aff->v->el[1 + pos], v->n);
1086 } else if (isl_int_is_one(v->d)) {
1087 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1088 } else {
1089 isl_seq_scale(aff->v->el + 1,
1090 aff->v->el + 1, v->d, aff->v->size - 1);
1091 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1092 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1093 aff->v = isl_vec_normalize(aff->v);
1094 if (!aff->v)
1095 goto error;
1098 isl_val_free(v);
1099 return aff;
1100 error:
1101 isl_aff_free(aff);
1102 isl_val_free(v);
1103 return NULL;
1106 /* Add "v" to the coefficient of the variable of type "type"
1107 * at position "pos" of "aff".
1109 * A NaN is unaffected by this operation.
1111 __isl_give isl_aff *isl_aff_add_coefficient(__isl_take isl_aff *aff,
1112 enum isl_dim_type type, int pos, isl_int v)
1114 if (!aff)
1115 return NULL;
1117 if (type == isl_dim_out)
1118 isl_die(aff->v->ctx, isl_error_invalid,
1119 "output/set dimension does not have a coefficient",
1120 return isl_aff_free(aff));
1121 if (type == isl_dim_in)
1122 type = isl_dim_set;
1124 if (pos >= isl_local_space_dim(aff->ls, type))
1125 isl_die(aff->v->ctx, isl_error_invalid,
1126 "position out of bounds", return isl_aff_free(aff));
1128 if (isl_aff_is_nan(aff))
1129 return aff;
1130 aff = isl_aff_cow(aff);
1131 if (!aff)
1132 return NULL;
1134 aff->v = isl_vec_cow(aff->v);
1135 if (!aff->v)
1136 return isl_aff_free(aff);
1138 pos += isl_local_space_offset(aff->ls, type);
1139 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v);
1141 return aff;
1144 /* Add "v" to the coefficient of the variable of type "type"
1145 * at position "pos" of "aff".
1147 * A NaN is unaffected by this operation.
1149 __isl_give isl_aff *isl_aff_add_coefficient_val(__isl_take isl_aff *aff,
1150 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1152 if (!aff || !v)
1153 goto error;
1155 if (isl_val_is_zero(v)) {
1156 isl_val_free(v);
1157 return aff;
1160 if (type == isl_dim_out)
1161 isl_die(aff->v->ctx, isl_error_invalid,
1162 "output/set dimension does not have a coefficient",
1163 goto error);
1164 if (type == isl_dim_in)
1165 type = isl_dim_set;
1167 if (pos >= isl_local_space_dim(aff->ls, type))
1168 isl_die(aff->v->ctx, isl_error_invalid,
1169 "position out of bounds", goto error);
1171 if (isl_aff_is_nan(aff)) {
1172 isl_val_free(v);
1173 return aff;
1175 if (!isl_val_is_rat(v))
1176 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1177 "expecting rational value", goto error);
1179 aff = isl_aff_cow(aff);
1180 if (!aff)
1181 goto error;
1183 aff->v = isl_vec_cow(aff->v);
1184 if (!aff->v)
1185 goto error;
1187 pos += isl_local_space_offset(aff->ls, type);
1188 if (isl_int_is_one(v->d)) {
1189 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1190 } else if (isl_int_eq(aff->v->el[0], v->d)) {
1191 isl_int_add(aff->v->el[1 + pos], aff->v->el[1 + pos], v->n);
1192 aff->v = isl_vec_normalize(aff->v);
1193 if (!aff->v)
1194 goto error;
1195 } else {
1196 isl_seq_scale(aff->v->el + 1,
1197 aff->v->el + 1, v->d, aff->v->size - 1);
1198 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1199 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1200 aff->v = isl_vec_normalize(aff->v);
1201 if (!aff->v)
1202 goto error;
1205 isl_val_free(v);
1206 return aff;
1207 error:
1208 isl_aff_free(aff);
1209 isl_val_free(v);
1210 return NULL;
1213 __isl_give isl_aff *isl_aff_add_coefficient_si(__isl_take isl_aff *aff,
1214 enum isl_dim_type type, int pos, int v)
1216 isl_int t;
1218 isl_int_init(t);
1219 isl_int_set_si(t, v);
1220 aff = isl_aff_add_coefficient(aff, type, pos, t);
1221 isl_int_clear(t);
1223 return aff;
1226 __isl_give isl_aff *isl_aff_get_div(__isl_keep isl_aff *aff, int pos)
1228 if (!aff)
1229 return NULL;
1231 return isl_local_space_get_div(aff->ls, pos);
1234 /* Return the negation of "aff".
1236 * As a special case, -NaN = NaN.
1238 __isl_give isl_aff *isl_aff_neg(__isl_take isl_aff *aff)
1240 if (!aff)
1241 return NULL;
1242 if (isl_aff_is_nan(aff))
1243 return aff;
1244 aff = isl_aff_cow(aff);
1245 if (!aff)
1246 return NULL;
1247 aff->v = isl_vec_cow(aff->v);
1248 if (!aff->v)
1249 return isl_aff_free(aff);
1251 isl_seq_neg(aff->v->el + 1, aff->v->el + 1, aff->v->size - 1);
1253 return aff;
1256 /* Remove divs from the local space that do not appear in the affine
1257 * expression.
1258 * We currently only remove divs at the end.
1259 * Some intermediate divs may also not appear directly in the affine
1260 * expression, but we would also need to check that no other divs are
1261 * defined in terms of them.
1263 __isl_give isl_aff *isl_aff_remove_unused_divs(__isl_take isl_aff *aff)
1265 int pos;
1266 int off;
1267 int n;
1269 if (!aff)
1270 return NULL;
1272 n = isl_local_space_dim(aff->ls, isl_dim_div);
1273 off = isl_local_space_offset(aff->ls, isl_dim_div);
1275 pos = isl_seq_last_non_zero(aff->v->el + 1 + off, n) + 1;
1276 if (pos == n)
1277 return aff;
1279 aff = isl_aff_cow(aff);
1280 if (!aff)
1281 return NULL;
1283 aff->ls = isl_local_space_drop_dims(aff->ls, isl_dim_div, pos, n - pos);
1284 aff->v = isl_vec_drop_els(aff->v, 1 + off + pos, n - pos);
1285 if (!aff->ls || !aff->v)
1286 return isl_aff_free(aff);
1288 return aff;
1291 /* Given two affine expressions "p" of length p_len (including the
1292 * denominator and the constant term) and "subs" of length subs_len,
1293 * plug in "subs" for the variable at position "pos".
1294 * The variables of "subs" and "p" are assumed to match up to subs_len,
1295 * but "p" may have additional variables.
1296 * "v" is an initialized isl_int that can be used internally.
1298 * In particular, if "p" represents the expression
1300 * (a i + g)/m
1302 * with i the variable at position "pos" and "subs" represents the expression
1304 * f/d
1306 * then the result represents the expression
1308 * (a f + d g)/(m d)
1311 void isl_seq_substitute(isl_int *p, int pos, isl_int *subs,
1312 int p_len, int subs_len, isl_int v)
1314 isl_int_set(v, p[1 + pos]);
1315 isl_int_set_si(p[1 + pos], 0);
1316 isl_seq_combine(p + 1, subs[0], p + 1, v, subs + 1, subs_len - 1);
1317 isl_seq_scale(p + subs_len, p + subs_len, subs[0], p_len - subs_len);
1318 isl_int_mul(p[0], p[0], subs[0]);
1321 /* Look for any divs in the aff->ls with a denominator equal to one
1322 * and plug them into the affine expression and any subsequent divs
1323 * that may reference the div.
1325 static __isl_give isl_aff *plug_in_integral_divs(__isl_take isl_aff *aff)
1327 int i, n;
1328 int len;
1329 isl_int v;
1330 isl_vec *vec;
1331 isl_local_space *ls;
1332 unsigned pos;
1334 if (!aff)
1335 return NULL;
1337 n = isl_local_space_dim(aff->ls, isl_dim_div);
1338 len = aff->v->size;
1339 for (i = 0; i < n; ++i) {
1340 if (!isl_int_is_one(aff->ls->div->row[i][0]))
1341 continue;
1342 ls = isl_local_space_copy(aff->ls);
1343 ls = isl_local_space_substitute_seq(ls, isl_dim_div, i,
1344 aff->ls->div->row[i], len, i + 1, n - (i + 1));
1345 vec = isl_vec_copy(aff->v);
1346 vec = isl_vec_cow(vec);
1347 if (!ls || !vec)
1348 goto error;
1350 isl_int_init(v);
1352 pos = isl_local_space_offset(aff->ls, isl_dim_div) + i;
1353 isl_seq_substitute(vec->el, pos, aff->ls->div->row[i],
1354 len, len, v);
1356 isl_int_clear(v);
1358 isl_vec_free(aff->v);
1359 aff->v = vec;
1360 isl_local_space_free(aff->ls);
1361 aff->ls = ls;
1364 return aff;
1365 error:
1366 isl_vec_free(vec);
1367 isl_local_space_free(ls);
1368 return isl_aff_free(aff);
1371 /* Look for any divs j that appear with a unit coefficient inside
1372 * the definitions of other divs i and plug them into the definitions
1373 * of the divs i.
1375 * In particular, an expression of the form
1377 * floor((f(..) + floor(g(..)/n))/m)
1379 * is simplified to
1381 * floor((n * f(..) + g(..))/(n * m))
1383 * This simplification is correct because we can move the expression
1384 * f(..) into the inner floor in the original expression to obtain
1386 * floor(floor((n * f(..) + g(..))/n)/m)
1388 * from which we can derive the simplified expression.
1390 static __isl_give isl_aff *plug_in_unit_divs(__isl_take isl_aff *aff)
1392 int i, j, n;
1393 int off;
1395 if (!aff)
1396 return NULL;
1398 n = isl_local_space_dim(aff->ls, isl_dim_div);
1399 off = isl_local_space_offset(aff->ls, isl_dim_div);
1400 for (i = 1; i < n; ++i) {
1401 for (j = 0; j < i; ++j) {
1402 if (!isl_int_is_one(aff->ls->div->row[i][1 + off + j]))
1403 continue;
1404 aff->ls = isl_local_space_substitute_seq(aff->ls,
1405 isl_dim_div, j, aff->ls->div->row[j],
1406 aff->v->size, i, 1);
1407 if (!aff->ls)
1408 return isl_aff_free(aff);
1412 return aff;
1415 /* Swap divs "a" and "b" in "aff", which is assumed to be non-NULL.
1417 * Even though this function is only called on isl_affs with a single
1418 * reference, we are careful to only change aff->v and aff->ls together.
1420 static __isl_give isl_aff *swap_div(__isl_take isl_aff *aff, int a, int b)
1422 unsigned off = isl_local_space_offset(aff->ls, isl_dim_div);
1423 isl_local_space *ls;
1424 isl_vec *v;
1426 ls = isl_local_space_copy(aff->ls);
1427 ls = isl_local_space_swap_div(ls, a, b);
1428 v = isl_vec_copy(aff->v);
1429 v = isl_vec_cow(v);
1430 if (!ls || !v)
1431 goto error;
1433 isl_int_swap(v->el[1 + off + a], v->el[1 + off + b]);
1434 isl_vec_free(aff->v);
1435 aff->v = v;
1436 isl_local_space_free(aff->ls);
1437 aff->ls = ls;
1439 return aff;
1440 error:
1441 isl_vec_free(v);
1442 isl_local_space_free(ls);
1443 return isl_aff_free(aff);
1446 /* Merge divs "a" and "b" in "aff", which is assumed to be non-NULL.
1448 * We currently do not actually remove div "b", but simply add its
1449 * coefficient to that of "a" and then zero it out.
1451 static __isl_give isl_aff *merge_divs(__isl_take isl_aff *aff, int a, int b)
1453 unsigned off = isl_local_space_offset(aff->ls, isl_dim_div);
1455 if (isl_int_is_zero(aff->v->el[1 + off + b]))
1456 return aff;
1458 aff->v = isl_vec_cow(aff->v);
1459 if (!aff->v)
1460 return isl_aff_free(aff);
1462 isl_int_add(aff->v->el[1 + off + a],
1463 aff->v->el[1 + off + a], aff->v->el[1 + off + b]);
1464 isl_int_set_si(aff->v->el[1 + off + b], 0);
1466 return aff;
1469 /* Sort the divs in the local space of "aff" according to
1470 * the comparison function "cmp_row" in isl_local_space.c,
1471 * combining the coefficients of identical divs.
1473 * Reordering divs does not change the semantics of "aff",
1474 * so there is no need to call isl_aff_cow.
1475 * Moreover, this function is currently only called on isl_affs
1476 * with a single reference.
1478 static __isl_give isl_aff *sort_divs(__isl_take isl_aff *aff)
1480 int i, j, n;
1482 if (!aff)
1483 return NULL;
1485 n = isl_aff_dim(aff, isl_dim_div);
1486 for (i = 1; i < n; ++i) {
1487 for (j = i - 1; j >= 0; --j) {
1488 int cmp = isl_mat_cmp_div(aff->ls->div, j, j + 1);
1489 if (cmp < 0)
1490 break;
1491 if (cmp == 0)
1492 aff = merge_divs(aff, j, j + 1);
1493 else
1494 aff = swap_div(aff, j, j + 1);
1495 if (!aff)
1496 return NULL;
1500 return aff;
1503 /* Normalize the representation of "aff".
1505 * This function should only be called of "new" isl_affs, i.e.,
1506 * with only a single reference. We therefore do not need to
1507 * worry about affecting other instances.
1509 __isl_give isl_aff *isl_aff_normalize(__isl_take isl_aff *aff)
1511 if (!aff)
1512 return NULL;
1513 aff->v = isl_vec_normalize(aff->v);
1514 if (!aff->v)
1515 return isl_aff_free(aff);
1516 aff = plug_in_integral_divs(aff);
1517 aff = plug_in_unit_divs(aff);
1518 aff = sort_divs(aff);
1519 aff = isl_aff_remove_unused_divs(aff);
1520 return aff;
1523 /* Given f, return floor(f).
1524 * If f is an integer expression, then just return f.
1525 * If f is a constant, then return the constant floor(f).
1526 * Otherwise, if f = g/m, write g = q m + r,
1527 * create a new div d = [r/m] and return the expression q + d.
1528 * The coefficients in r are taken to lie between -m/2 and m/2.
1530 * As a special case, floor(NaN) = NaN.
1532 __isl_give isl_aff *isl_aff_floor(__isl_take isl_aff *aff)
1534 int i;
1535 int size;
1536 isl_ctx *ctx;
1537 isl_vec *div;
1539 if (!aff)
1540 return NULL;
1542 if (isl_aff_is_nan(aff))
1543 return aff;
1544 if (isl_int_is_one(aff->v->el[0]))
1545 return aff;
1547 aff = isl_aff_cow(aff);
1548 if (!aff)
1549 return NULL;
1551 aff->v = isl_vec_cow(aff->v);
1552 if (!aff->v)
1553 return isl_aff_free(aff);
1555 if (isl_aff_is_cst(aff)) {
1556 isl_int_fdiv_q(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1557 isl_int_set_si(aff->v->el[0], 1);
1558 return aff;
1561 div = isl_vec_copy(aff->v);
1562 div = isl_vec_cow(div);
1563 if (!div)
1564 return isl_aff_free(aff);
1566 ctx = isl_aff_get_ctx(aff);
1567 isl_int_fdiv_q(aff->v->el[0], aff->v->el[0], ctx->two);
1568 for (i = 1; i < aff->v->size; ++i) {
1569 isl_int_fdiv_r(div->el[i], div->el[i], div->el[0]);
1570 isl_int_fdiv_q(aff->v->el[i], aff->v->el[i], div->el[0]);
1571 if (isl_int_gt(div->el[i], aff->v->el[0])) {
1572 isl_int_sub(div->el[i], div->el[i], div->el[0]);
1573 isl_int_add_ui(aff->v->el[i], aff->v->el[i], 1);
1577 aff->ls = isl_local_space_add_div(aff->ls, div);
1578 if (!aff->ls)
1579 return isl_aff_free(aff);
1581 size = aff->v->size;
1582 aff->v = isl_vec_extend(aff->v, size + 1);
1583 if (!aff->v)
1584 return isl_aff_free(aff);
1585 isl_int_set_si(aff->v->el[0], 1);
1586 isl_int_set_si(aff->v->el[size], 1);
1588 aff = isl_aff_normalize(aff);
1590 return aff;
1593 /* Compute
1595 * aff mod m = aff - m * floor(aff/m)
1597 __isl_give isl_aff *isl_aff_mod(__isl_take isl_aff *aff, isl_int m)
1599 isl_aff *res;
1601 res = isl_aff_copy(aff);
1602 aff = isl_aff_scale_down(aff, m);
1603 aff = isl_aff_floor(aff);
1604 aff = isl_aff_scale(aff, m);
1605 res = isl_aff_sub(res, aff);
1607 return res;
1610 /* Compute
1612 * aff mod m = aff - m * floor(aff/m)
1614 * with m an integer value.
1616 __isl_give isl_aff *isl_aff_mod_val(__isl_take isl_aff *aff,
1617 __isl_take isl_val *m)
1619 isl_aff *res;
1621 if (!aff || !m)
1622 goto error;
1624 if (!isl_val_is_int(m))
1625 isl_die(isl_val_get_ctx(m), isl_error_invalid,
1626 "expecting integer modulo", goto error);
1628 res = isl_aff_copy(aff);
1629 aff = isl_aff_scale_down_val(aff, isl_val_copy(m));
1630 aff = isl_aff_floor(aff);
1631 aff = isl_aff_scale_val(aff, m);
1632 res = isl_aff_sub(res, aff);
1634 return res;
1635 error:
1636 isl_aff_free(aff);
1637 isl_val_free(m);
1638 return NULL;
1641 /* Compute
1643 * pwaff mod m = pwaff - m * floor(pwaff/m)
1645 __isl_give isl_pw_aff *isl_pw_aff_mod(__isl_take isl_pw_aff *pwaff, isl_int m)
1647 isl_pw_aff *res;
1649 res = isl_pw_aff_copy(pwaff);
1650 pwaff = isl_pw_aff_scale_down(pwaff, m);
1651 pwaff = isl_pw_aff_floor(pwaff);
1652 pwaff = isl_pw_aff_scale(pwaff, m);
1653 res = isl_pw_aff_sub(res, pwaff);
1655 return res;
1658 /* Compute
1660 * pa mod m = pa - m * floor(pa/m)
1662 * with m an integer value.
1664 __isl_give isl_pw_aff *isl_pw_aff_mod_val(__isl_take isl_pw_aff *pa,
1665 __isl_take isl_val *m)
1667 if (!pa || !m)
1668 goto error;
1669 if (!isl_val_is_int(m))
1670 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
1671 "expecting integer modulo", goto error);
1672 pa = isl_pw_aff_mod(pa, m->n);
1673 isl_val_free(m);
1674 return pa;
1675 error:
1676 isl_pw_aff_free(pa);
1677 isl_val_free(m);
1678 return NULL;
1681 /* Given f, return ceil(f).
1682 * If f is an integer expression, then just return f.
1683 * Otherwise, let f be the expression
1685 * e/m
1687 * then return
1689 * floor((e + m - 1)/m)
1691 * As a special case, ceil(NaN) = NaN.
1693 __isl_give isl_aff *isl_aff_ceil(__isl_take isl_aff *aff)
1695 if (!aff)
1696 return NULL;
1698 if (isl_aff_is_nan(aff))
1699 return aff;
1700 if (isl_int_is_one(aff->v->el[0]))
1701 return aff;
1703 aff = isl_aff_cow(aff);
1704 if (!aff)
1705 return NULL;
1706 aff->v = isl_vec_cow(aff->v);
1707 if (!aff->v)
1708 return isl_aff_free(aff);
1710 isl_int_add(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1711 isl_int_sub_ui(aff->v->el[1], aff->v->el[1], 1);
1712 aff = isl_aff_floor(aff);
1714 return aff;
1717 /* Apply the expansion computed by isl_merge_divs.
1718 * The expansion itself is given by "exp" while the resulting
1719 * list of divs is given by "div".
1721 __isl_give isl_aff *isl_aff_expand_divs(__isl_take isl_aff *aff,
1722 __isl_take isl_mat *div, int *exp)
1724 int old_n_div;
1725 int new_n_div;
1726 int offset;
1728 aff = isl_aff_cow(aff);
1729 if (!aff || !div)
1730 goto error;
1732 old_n_div = isl_local_space_dim(aff->ls, isl_dim_div);
1733 new_n_div = isl_mat_rows(div);
1734 offset = 1 + isl_local_space_offset(aff->ls, isl_dim_div);
1736 aff->v = isl_vec_expand(aff->v, offset, old_n_div, exp, new_n_div);
1737 aff->ls = isl_local_space_replace_divs(aff->ls, div);
1738 if (!aff->v || !aff->ls)
1739 return isl_aff_free(aff);
1740 return aff;
1741 error:
1742 isl_aff_free(aff);
1743 isl_mat_free(div);
1744 return NULL;
1747 /* Add two affine expressions that live in the same local space.
1749 static __isl_give isl_aff *add_expanded(__isl_take isl_aff *aff1,
1750 __isl_take isl_aff *aff2)
1752 isl_int gcd, f;
1754 aff1 = isl_aff_cow(aff1);
1755 if (!aff1 || !aff2)
1756 goto error;
1758 aff1->v = isl_vec_cow(aff1->v);
1759 if (!aff1->v)
1760 goto error;
1762 isl_int_init(gcd);
1763 isl_int_init(f);
1764 isl_int_gcd(gcd, aff1->v->el[0], aff2->v->el[0]);
1765 isl_int_divexact(f, aff2->v->el[0], gcd);
1766 isl_seq_scale(aff1->v->el + 1, aff1->v->el + 1, f, aff1->v->size - 1);
1767 isl_int_divexact(f, aff1->v->el[0], gcd);
1768 isl_seq_addmul(aff1->v->el + 1, f, aff2->v->el + 1, aff1->v->size - 1);
1769 isl_int_divexact(f, aff2->v->el[0], gcd);
1770 isl_int_mul(aff1->v->el[0], aff1->v->el[0], f);
1771 isl_int_clear(f);
1772 isl_int_clear(gcd);
1774 isl_aff_free(aff2);
1775 return aff1;
1776 error:
1777 isl_aff_free(aff1);
1778 isl_aff_free(aff2);
1779 return NULL;
1782 /* Return the sum of "aff1" and "aff2".
1784 * If either of the two is NaN, then the result is NaN.
1786 __isl_give isl_aff *isl_aff_add(__isl_take isl_aff *aff1,
1787 __isl_take isl_aff *aff2)
1789 isl_ctx *ctx;
1790 int *exp1 = NULL;
1791 int *exp2 = NULL;
1792 isl_mat *div;
1793 int n_div1, n_div2;
1795 if (!aff1 || !aff2)
1796 goto error;
1798 ctx = isl_aff_get_ctx(aff1);
1799 if (!isl_space_is_equal(aff1->ls->dim, aff2->ls->dim))
1800 isl_die(ctx, isl_error_invalid,
1801 "spaces don't match", goto error);
1803 if (isl_aff_is_nan(aff1)) {
1804 isl_aff_free(aff2);
1805 return aff1;
1807 if (isl_aff_is_nan(aff2)) {
1808 isl_aff_free(aff1);
1809 return aff2;
1812 n_div1 = isl_aff_dim(aff1, isl_dim_div);
1813 n_div2 = isl_aff_dim(aff2, isl_dim_div);
1814 if (n_div1 == 0 && n_div2 == 0)
1815 return add_expanded(aff1, aff2);
1817 exp1 = isl_alloc_array(ctx, int, n_div1);
1818 exp2 = isl_alloc_array(ctx, int, n_div2);
1819 if ((n_div1 && !exp1) || (n_div2 && !exp2))
1820 goto error;
1822 div = isl_merge_divs(aff1->ls->div, aff2->ls->div, exp1, exp2);
1823 aff1 = isl_aff_expand_divs(aff1, isl_mat_copy(div), exp1);
1824 aff2 = isl_aff_expand_divs(aff2, div, exp2);
1825 free(exp1);
1826 free(exp2);
1828 return add_expanded(aff1, aff2);
1829 error:
1830 free(exp1);
1831 free(exp2);
1832 isl_aff_free(aff1);
1833 isl_aff_free(aff2);
1834 return NULL;
1837 __isl_give isl_aff *isl_aff_sub(__isl_take isl_aff *aff1,
1838 __isl_take isl_aff *aff2)
1840 return isl_aff_add(aff1, isl_aff_neg(aff2));
1843 /* Return the result of scaling "aff" by a factor of "f".
1845 * As a special case, f * NaN = NaN.
1847 __isl_give isl_aff *isl_aff_scale(__isl_take isl_aff *aff, isl_int f)
1849 isl_int gcd;
1851 if (!aff)
1852 return NULL;
1853 if (isl_aff_is_nan(aff))
1854 return aff;
1856 if (isl_int_is_one(f))
1857 return aff;
1859 aff = isl_aff_cow(aff);
1860 if (!aff)
1861 return NULL;
1862 aff->v = isl_vec_cow(aff->v);
1863 if (!aff->v)
1864 return isl_aff_free(aff);
1866 if (isl_int_is_pos(f) && isl_int_is_divisible_by(aff->v->el[0], f)) {
1867 isl_int_divexact(aff->v->el[0], aff->v->el[0], f);
1868 return aff;
1871 isl_int_init(gcd);
1872 isl_int_gcd(gcd, aff->v->el[0], f);
1873 isl_int_divexact(aff->v->el[0], aff->v->el[0], gcd);
1874 isl_int_divexact(gcd, f, gcd);
1875 isl_seq_scale(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
1876 isl_int_clear(gcd);
1878 return aff;
1881 /* Multiple "aff" by "v".
1883 __isl_give isl_aff *isl_aff_scale_val(__isl_take isl_aff *aff,
1884 __isl_take isl_val *v)
1886 if (!aff || !v)
1887 goto error;
1889 if (isl_val_is_one(v)) {
1890 isl_val_free(v);
1891 return aff;
1894 if (!isl_val_is_rat(v))
1895 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1896 "expecting rational factor", goto error);
1898 aff = isl_aff_scale(aff, v->n);
1899 aff = isl_aff_scale_down(aff, v->d);
1901 isl_val_free(v);
1902 return aff;
1903 error:
1904 isl_aff_free(aff);
1905 isl_val_free(v);
1906 return NULL;
1909 /* Return the result of scaling "aff" down by a factor of "f".
1911 * As a special case, NaN/f = NaN.
1913 __isl_give isl_aff *isl_aff_scale_down(__isl_take isl_aff *aff, isl_int f)
1915 isl_int gcd;
1917 if (!aff)
1918 return NULL;
1919 if (isl_aff_is_nan(aff))
1920 return aff;
1922 if (isl_int_is_one(f))
1923 return aff;
1925 aff = isl_aff_cow(aff);
1926 if (!aff)
1927 return NULL;
1929 if (isl_int_is_zero(f))
1930 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1931 "cannot scale down by zero", return isl_aff_free(aff));
1933 aff->v = isl_vec_cow(aff->v);
1934 if (!aff->v)
1935 return isl_aff_free(aff);
1937 isl_int_init(gcd);
1938 isl_seq_gcd(aff->v->el + 1, aff->v->size - 1, &gcd);
1939 isl_int_gcd(gcd, gcd, f);
1940 isl_seq_scale_down(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
1941 isl_int_divexact(gcd, f, gcd);
1942 isl_int_mul(aff->v->el[0], aff->v->el[0], gcd);
1943 isl_int_clear(gcd);
1945 return aff;
1948 /* Divide "aff" by "v".
1950 __isl_give isl_aff *isl_aff_scale_down_val(__isl_take isl_aff *aff,
1951 __isl_take isl_val *v)
1953 if (!aff || !v)
1954 goto error;
1956 if (isl_val_is_one(v)) {
1957 isl_val_free(v);
1958 return aff;
1961 if (!isl_val_is_rat(v))
1962 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1963 "expecting rational factor", goto error);
1964 if (!isl_val_is_pos(v))
1965 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1966 "factor needs to be positive", goto error);
1968 aff = isl_aff_scale(aff, v->d);
1969 aff = isl_aff_scale_down(aff, v->n);
1971 isl_val_free(v);
1972 return aff;
1973 error:
1974 isl_aff_free(aff);
1975 isl_val_free(v);
1976 return NULL;
1979 __isl_give isl_aff *isl_aff_scale_down_ui(__isl_take isl_aff *aff, unsigned f)
1981 isl_int v;
1983 if (f == 1)
1984 return aff;
1986 isl_int_init(v);
1987 isl_int_set_ui(v, f);
1988 aff = isl_aff_scale_down(aff, v);
1989 isl_int_clear(v);
1991 return aff;
1994 __isl_give isl_aff *isl_aff_set_dim_name(__isl_take isl_aff *aff,
1995 enum isl_dim_type type, unsigned pos, const char *s)
1997 aff = isl_aff_cow(aff);
1998 if (!aff)
1999 return NULL;
2000 if (type == isl_dim_out)
2001 isl_die(aff->v->ctx, isl_error_invalid,
2002 "cannot set name of output/set dimension",
2003 return isl_aff_free(aff));
2004 if (type == isl_dim_in)
2005 type = isl_dim_set;
2006 aff->ls = isl_local_space_set_dim_name(aff->ls, type, pos, s);
2007 if (!aff->ls)
2008 return isl_aff_free(aff);
2010 return aff;
2013 __isl_give isl_aff *isl_aff_set_dim_id(__isl_take isl_aff *aff,
2014 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
2016 aff = isl_aff_cow(aff);
2017 if (!aff)
2018 goto error;
2019 if (type == isl_dim_out)
2020 isl_die(aff->v->ctx, isl_error_invalid,
2021 "cannot set name of output/set dimension",
2022 goto error);
2023 if (type == isl_dim_in)
2024 type = isl_dim_set;
2025 aff->ls = isl_local_space_set_dim_id(aff->ls, type, pos, id);
2026 if (!aff->ls)
2027 return isl_aff_free(aff);
2029 return aff;
2030 error:
2031 isl_id_free(id);
2032 isl_aff_free(aff);
2033 return NULL;
2036 /* Replace the identifier of the input tuple of "aff" by "id".
2037 * type is currently required to be equal to isl_dim_in
2039 __isl_give isl_aff *isl_aff_set_tuple_id(__isl_take isl_aff *aff,
2040 enum isl_dim_type type, __isl_take isl_id *id)
2042 aff = isl_aff_cow(aff);
2043 if (!aff)
2044 goto error;
2045 if (type != isl_dim_out)
2046 isl_die(aff->v->ctx, isl_error_invalid,
2047 "cannot only set id of input tuple", goto error);
2048 aff->ls = isl_local_space_set_tuple_id(aff->ls, isl_dim_set, id);
2049 if (!aff->ls)
2050 return isl_aff_free(aff);
2052 return aff;
2053 error:
2054 isl_id_free(id);
2055 isl_aff_free(aff);
2056 return NULL;
2059 /* Exploit the equalities in "eq" to simplify the affine expression
2060 * and the expressions of the integer divisions in the local space.
2061 * The integer divisions in this local space are assumed to appear
2062 * as regular dimensions in "eq".
2064 static __isl_give isl_aff *isl_aff_substitute_equalities_lifted(
2065 __isl_take isl_aff *aff, __isl_take isl_basic_set *eq)
2067 int i, j;
2068 unsigned total;
2069 unsigned n_div;
2071 if (!eq)
2072 goto error;
2073 if (eq->n_eq == 0) {
2074 isl_basic_set_free(eq);
2075 return aff;
2078 aff = isl_aff_cow(aff);
2079 if (!aff)
2080 goto error;
2082 aff->ls = isl_local_space_substitute_equalities(aff->ls,
2083 isl_basic_set_copy(eq));
2084 aff->v = isl_vec_cow(aff->v);
2085 if (!aff->ls || !aff->v)
2086 goto error;
2088 total = 1 + isl_space_dim(eq->dim, isl_dim_all);
2089 n_div = eq->n_div;
2090 for (i = 0; i < eq->n_eq; ++i) {
2091 j = isl_seq_last_non_zero(eq->eq[i], total + n_div);
2092 if (j < 0 || j == 0 || j >= total)
2093 continue;
2095 isl_seq_elim(aff->v->el + 1, eq->eq[i], j, total,
2096 &aff->v->el[0]);
2099 isl_basic_set_free(eq);
2100 aff = isl_aff_normalize(aff);
2101 return aff;
2102 error:
2103 isl_basic_set_free(eq);
2104 isl_aff_free(aff);
2105 return NULL;
2108 /* Exploit the equalities in "eq" to simplify the affine expression
2109 * and the expressions of the integer divisions in the local space.
2111 __isl_give isl_aff *isl_aff_substitute_equalities(__isl_take isl_aff *aff,
2112 __isl_take isl_basic_set *eq)
2114 int n_div;
2116 if (!aff || !eq)
2117 goto error;
2118 n_div = isl_local_space_dim(aff->ls, isl_dim_div);
2119 if (n_div > 0)
2120 eq = isl_basic_set_add_dims(eq, isl_dim_set, n_div);
2121 return isl_aff_substitute_equalities_lifted(aff, eq);
2122 error:
2123 isl_basic_set_free(eq);
2124 isl_aff_free(aff);
2125 return NULL;
2128 /* Look for equalities among the variables shared by context and aff
2129 * and the integer divisions of aff, if any.
2130 * The equalities are then used to eliminate coefficients and/or integer
2131 * divisions from aff.
2133 __isl_give isl_aff *isl_aff_gist(__isl_take isl_aff *aff,
2134 __isl_take isl_set *context)
2136 isl_basic_set *hull;
2137 int n_div;
2139 if (!aff)
2140 goto error;
2141 n_div = isl_local_space_dim(aff->ls, isl_dim_div);
2142 if (n_div > 0) {
2143 isl_basic_set *bset;
2144 isl_local_space *ls;
2145 context = isl_set_add_dims(context, isl_dim_set, n_div);
2146 ls = isl_aff_get_domain_local_space(aff);
2147 bset = isl_basic_set_from_local_space(ls);
2148 bset = isl_basic_set_lift(bset);
2149 bset = isl_basic_set_flatten(bset);
2150 context = isl_set_intersect(context,
2151 isl_set_from_basic_set(bset));
2154 hull = isl_set_affine_hull(context);
2155 return isl_aff_substitute_equalities_lifted(aff, hull);
2156 error:
2157 isl_aff_free(aff);
2158 isl_set_free(context);
2159 return NULL;
2162 __isl_give isl_aff *isl_aff_gist_params(__isl_take isl_aff *aff,
2163 __isl_take isl_set *context)
2165 isl_set *dom_context = isl_set_universe(isl_aff_get_domain_space(aff));
2166 dom_context = isl_set_intersect_params(dom_context, context);
2167 return isl_aff_gist(aff, dom_context);
2170 /* Return a basic set containing those elements in the space
2171 * of aff where it is positive. "rational" should not be set.
2173 * If "aff" is NaN, then it is not positive.
2175 static __isl_give isl_basic_set *aff_pos_basic_set(__isl_take isl_aff *aff,
2176 int rational)
2178 isl_constraint *ineq;
2179 isl_basic_set *bset;
2180 isl_val *c;
2182 if (!aff)
2183 return NULL;
2184 if (isl_aff_is_nan(aff)) {
2185 isl_space *space = isl_aff_get_domain_space(aff);
2186 isl_aff_free(aff);
2187 return isl_basic_set_empty(space);
2189 if (rational)
2190 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2191 "rational sets not supported", goto error);
2193 ineq = isl_inequality_from_aff(aff);
2194 c = isl_constraint_get_constant_val(ineq);
2195 c = isl_val_sub_ui(c, 1);
2196 ineq = isl_constraint_set_constant_val(ineq, c);
2198 bset = isl_basic_set_from_constraint(ineq);
2199 bset = isl_basic_set_simplify(bset);
2200 return bset;
2201 error:
2202 isl_aff_free(aff);
2203 return NULL;
2206 /* Return a basic set containing those elements in the space
2207 * of aff where it is non-negative.
2208 * If "rational" is set, then return a rational basic set.
2210 * If "aff" is NaN, then it is not non-negative (it's not negative either).
2212 static __isl_give isl_basic_set *aff_nonneg_basic_set(
2213 __isl_take isl_aff *aff, int rational)
2215 isl_constraint *ineq;
2216 isl_basic_set *bset;
2218 if (!aff)
2219 return NULL;
2220 if (isl_aff_is_nan(aff)) {
2221 isl_space *space = isl_aff_get_domain_space(aff);
2222 isl_aff_free(aff);
2223 return isl_basic_set_empty(space);
2226 ineq = isl_inequality_from_aff(aff);
2228 bset = isl_basic_set_from_constraint(ineq);
2229 if (rational)
2230 bset = isl_basic_set_set_rational(bset);
2231 bset = isl_basic_set_simplify(bset);
2232 return bset;
2235 /* Return a basic set containing those elements in the space
2236 * of aff where it is non-negative.
2238 __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
2240 return aff_nonneg_basic_set(aff, 0);
2243 /* Return a basic set containing those elements in the domain space
2244 * of aff where it is negative.
2246 __isl_give isl_basic_set *isl_aff_neg_basic_set(__isl_take isl_aff *aff)
2248 aff = isl_aff_neg(aff);
2249 aff = isl_aff_add_constant_num_si(aff, -1);
2250 return isl_aff_nonneg_basic_set(aff);
2253 /* Return a basic set containing those elements in the space
2254 * of aff where it is zero.
2255 * If "rational" is set, then return a rational basic set.
2257 * If "aff" is NaN, then it is not zero.
2259 static __isl_give isl_basic_set *aff_zero_basic_set(__isl_take isl_aff *aff,
2260 int rational)
2262 isl_constraint *ineq;
2263 isl_basic_set *bset;
2265 if (!aff)
2266 return NULL;
2267 if (isl_aff_is_nan(aff)) {
2268 isl_space *space = isl_aff_get_domain_space(aff);
2269 isl_aff_free(aff);
2270 return isl_basic_set_empty(space);
2273 ineq = isl_equality_from_aff(aff);
2275 bset = isl_basic_set_from_constraint(ineq);
2276 if (rational)
2277 bset = isl_basic_set_set_rational(bset);
2278 bset = isl_basic_set_simplify(bset);
2279 return bset;
2282 /* Return a basic set containing those elements in the space
2283 * of aff where it is zero.
2285 __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
2287 return aff_zero_basic_set(aff, 0);
2290 /* Return a basic set containing those elements in the shared space
2291 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2293 __isl_give isl_basic_set *isl_aff_ge_basic_set(__isl_take isl_aff *aff1,
2294 __isl_take isl_aff *aff2)
2296 aff1 = isl_aff_sub(aff1, aff2);
2298 return isl_aff_nonneg_basic_set(aff1);
2301 /* Return a set containing those elements in the shared space
2302 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2304 __isl_give isl_set *isl_aff_ge_set(__isl_take isl_aff *aff1,
2305 __isl_take isl_aff *aff2)
2307 return isl_set_from_basic_set(isl_aff_ge_basic_set(aff1, aff2));
2310 /* Return a basic set containing those elements in the shared space
2311 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2313 __isl_give isl_basic_set *isl_aff_le_basic_set(__isl_take isl_aff *aff1,
2314 __isl_take isl_aff *aff2)
2316 return isl_aff_ge_basic_set(aff2, aff1);
2319 /* Return a set containing those elements in the shared space
2320 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2322 __isl_give isl_set *isl_aff_le_set(__isl_take isl_aff *aff1,
2323 __isl_take isl_aff *aff2)
2325 return isl_aff_ge_set(aff2, aff1);
2328 /* Return a basic set containing those elements in the shared space
2329 * of aff1 and aff2 where aff1 and aff2 are equal.
2331 __isl_give isl_basic_set *isl_aff_eq_basic_set(__isl_take isl_aff *aff1,
2332 __isl_take isl_aff *aff2)
2334 aff1 = isl_aff_sub(aff1, aff2);
2336 return isl_aff_zero_basic_set(aff1);
2339 /* Return a set containing those elements in the shared space
2340 * of aff1 and aff2 where aff1 and aff2 are equal.
2342 __isl_give isl_set *isl_aff_eq_set(__isl_take isl_aff *aff1,
2343 __isl_take isl_aff *aff2)
2345 return isl_set_from_basic_set(isl_aff_eq_basic_set(aff1, aff2));
2348 __isl_give isl_aff *isl_aff_add_on_domain(__isl_keep isl_set *dom,
2349 __isl_take isl_aff *aff1, __isl_take isl_aff *aff2)
2351 aff1 = isl_aff_add(aff1, aff2);
2352 aff1 = isl_aff_gist(aff1, isl_set_copy(dom));
2353 return aff1;
2356 int isl_aff_is_empty(__isl_keep isl_aff *aff)
2358 if (!aff)
2359 return -1;
2361 return 0;
2364 /* Check whether the given affine expression has non-zero coefficient
2365 * for any dimension in the given range or if any of these dimensions
2366 * appear with non-zero coefficients in any of the integer divisions
2367 * involved in the affine expression.
2369 isl_bool isl_aff_involves_dims(__isl_keep isl_aff *aff,
2370 enum isl_dim_type type, unsigned first, unsigned n)
2372 int i;
2373 isl_ctx *ctx;
2374 int *active = NULL;
2375 isl_bool involves = isl_bool_false;
2377 if (!aff)
2378 return isl_bool_error;
2379 if (n == 0)
2380 return isl_bool_false;
2382 ctx = isl_aff_get_ctx(aff);
2383 if (first + n > isl_aff_dim(aff, type))
2384 isl_die(ctx, isl_error_invalid,
2385 "range out of bounds", return isl_bool_error);
2387 active = isl_local_space_get_active(aff->ls, aff->v->el + 2);
2388 if (!active)
2389 goto error;
2391 first += isl_local_space_offset(aff->ls, type) - 1;
2392 for (i = 0; i < n; ++i)
2393 if (active[first + i]) {
2394 involves = isl_bool_true;
2395 break;
2398 free(active);
2400 return involves;
2401 error:
2402 free(active);
2403 return isl_bool_error;
2406 __isl_give isl_aff *isl_aff_drop_dims(__isl_take isl_aff *aff,
2407 enum isl_dim_type type, unsigned first, unsigned n)
2409 isl_ctx *ctx;
2411 if (!aff)
2412 return NULL;
2413 if (type == isl_dim_out)
2414 isl_die(aff->v->ctx, isl_error_invalid,
2415 "cannot drop output/set dimension",
2416 return isl_aff_free(aff));
2417 if (type == isl_dim_in)
2418 type = isl_dim_set;
2419 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2420 return aff;
2422 ctx = isl_aff_get_ctx(aff);
2423 if (first + n > isl_local_space_dim(aff->ls, type))
2424 isl_die(ctx, isl_error_invalid, "range out of bounds",
2425 return isl_aff_free(aff));
2427 aff = isl_aff_cow(aff);
2428 if (!aff)
2429 return NULL;
2431 aff->ls = isl_local_space_drop_dims(aff->ls, type, first, n);
2432 if (!aff->ls)
2433 return isl_aff_free(aff);
2435 first += 1 + isl_local_space_offset(aff->ls, type);
2436 aff->v = isl_vec_drop_els(aff->v, first, n);
2437 if (!aff->v)
2438 return isl_aff_free(aff);
2440 return aff;
2443 /* Project the domain of the affine expression onto its parameter space.
2444 * The affine expression may not involve any of the domain dimensions.
2446 __isl_give isl_aff *isl_aff_project_domain_on_params(__isl_take isl_aff *aff)
2448 isl_space *space;
2449 unsigned n;
2450 int involves;
2452 n = isl_aff_dim(aff, isl_dim_in);
2453 involves = isl_aff_involves_dims(aff, isl_dim_in, 0, n);
2454 if (involves < 0)
2455 return isl_aff_free(aff);
2456 if (involves)
2457 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2458 "affine expression involves some of the domain dimensions",
2459 return isl_aff_free(aff));
2460 aff = isl_aff_drop_dims(aff, isl_dim_in, 0, n);
2461 space = isl_aff_get_domain_space(aff);
2462 space = isl_space_params(space);
2463 aff = isl_aff_reset_domain_space(aff, space);
2464 return aff;
2467 __isl_give isl_aff *isl_aff_insert_dims(__isl_take isl_aff *aff,
2468 enum isl_dim_type type, unsigned first, unsigned n)
2470 isl_ctx *ctx;
2472 if (!aff)
2473 return NULL;
2474 if (type == isl_dim_out)
2475 isl_die(aff->v->ctx, isl_error_invalid,
2476 "cannot insert output/set dimensions",
2477 return isl_aff_free(aff));
2478 if (type == isl_dim_in)
2479 type = isl_dim_set;
2480 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2481 return aff;
2483 ctx = isl_aff_get_ctx(aff);
2484 if (first > isl_local_space_dim(aff->ls, type))
2485 isl_die(ctx, isl_error_invalid, "position out of bounds",
2486 return isl_aff_free(aff));
2488 aff = isl_aff_cow(aff);
2489 if (!aff)
2490 return NULL;
2492 aff->ls = isl_local_space_insert_dims(aff->ls, type, first, n);
2493 if (!aff->ls)
2494 return isl_aff_free(aff);
2496 first += 1 + isl_local_space_offset(aff->ls, type);
2497 aff->v = isl_vec_insert_zero_els(aff->v, first, n);
2498 if (!aff->v)
2499 return isl_aff_free(aff);
2501 return aff;
2504 __isl_give isl_aff *isl_aff_add_dims(__isl_take isl_aff *aff,
2505 enum isl_dim_type type, unsigned n)
2507 unsigned pos;
2509 pos = isl_aff_dim(aff, type);
2511 return isl_aff_insert_dims(aff, type, pos, n);
2514 __isl_give isl_pw_aff *isl_pw_aff_add_dims(__isl_take isl_pw_aff *pwaff,
2515 enum isl_dim_type type, unsigned n)
2517 unsigned pos;
2519 pos = isl_pw_aff_dim(pwaff, type);
2521 return isl_pw_aff_insert_dims(pwaff, type, pos, n);
2524 /* Move the "n" dimensions of "src_type" starting at "src_pos" of "aff"
2525 * to dimensions of "dst_type" at "dst_pos".
2527 * We only support moving input dimensions to parameters and vice versa.
2529 __isl_give isl_aff *isl_aff_move_dims(__isl_take isl_aff *aff,
2530 enum isl_dim_type dst_type, unsigned dst_pos,
2531 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
2533 unsigned g_dst_pos;
2534 unsigned g_src_pos;
2536 if (!aff)
2537 return NULL;
2538 if (n == 0 &&
2539 !isl_local_space_is_named_or_nested(aff->ls, src_type) &&
2540 !isl_local_space_is_named_or_nested(aff->ls, dst_type))
2541 return aff;
2543 if (dst_type == isl_dim_out || src_type == isl_dim_out)
2544 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2545 "cannot move output/set dimension",
2546 return isl_aff_free(aff));
2547 if (dst_type == isl_dim_div || src_type == isl_dim_div)
2548 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2549 "cannot move divs", return isl_aff_free(aff));
2550 if (dst_type == isl_dim_in)
2551 dst_type = isl_dim_set;
2552 if (src_type == isl_dim_in)
2553 src_type = isl_dim_set;
2555 if (src_pos + n > isl_local_space_dim(aff->ls, src_type))
2556 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2557 "range out of bounds", return isl_aff_free(aff));
2558 if (dst_type == src_type)
2559 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2560 "moving dims within the same type not supported",
2561 return isl_aff_free(aff));
2563 aff = isl_aff_cow(aff);
2564 if (!aff)
2565 return NULL;
2567 g_src_pos = 1 + isl_local_space_offset(aff->ls, src_type) + src_pos;
2568 g_dst_pos = 1 + isl_local_space_offset(aff->ls, dst_type) + dst_pos;
2569 if (dst_type > src_type)
2570 g_dst_pos -= n;
2572 aff->v = isl_vec_move_els(aff->v, g_dst_pos, g_src_pos, n);
2573 aff->ls = isl_local_space_move_dims(aff->ls, dst_type, dst_pos,
2574 src_type, src_pos, n);
2575 if (!aff->v || !aff->ls)
2576 return isl_aff_free(aff);
2578 aff = sort_divs(aff);
2580 return aff;
2583 __isl_give isl_pw_aff *isl_pw_aff_from_aff(__isl_take isl_aff *aff)
2585 isl_set *dom = isl_set_universe(isl_aff_get_domain_space(aff));
2586 return isl_pw_aff_alloc(dom, aff);
2589 #undef PW
2590 #define PW isl_pw_aff
2591 #undef EL
2592 #define EL isl_aff
2593 #undef EL_IS_ZERO
2594 #define EL_IS_ZERO is_empty
2595 #undef ZERO
2596 #define ZERO empty
2597 #undef IS_ZERO
2598 #define IS_ZERO is_empty
2599 #undef FIELD
2600 #define FIELD aff
2601 #undef DEFAULT_IS_ZERO
2602 #define DEFAULT_IS_ZERO 0
2604 #define NO_EVAL
2605 #define NO_OPT
2606 #define NO_LIFT
2607 #define NO_MORPH
2609 #include <isl_pw_templ.c>
2610 #include <isl_pw_hash.c>
2611 #include <isl_pw_union_opt.c>
2613 #undef UNION
2614 #define UNION isl_union_pw_aff
2615 #undef PART
2616 #define PART isl_pw_aff
2617 #undef PARTS
2618 #define PARTS pw_aff
2620 #include <isl_union_single.c>
2621 #include <isl_union_neg.c>
2623 static __isl_give isl_set *align_params_pw_pw_set_and(
2624 __isl_take isl_pw_aff *pwaff1, __isl_take isl_pw_aff *pwaff2,
2625 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
2626 __isl_take isl_pw_aff *pwaff2))
2628 if (!pwaff1 || !pwaff2)
2629 goto error;
2630 if (isl_space_match(pwaff1->dim, isl_dim_param,
2631 pwaff2->dim, isl_dim_param))
2632 return fn(pwaff1, pwaff2);
2633 if (!isl_space_has_named_params(pwaff1->dim) ||
2634 !isl_space_has_named_params(pwaff2->dim))
2635 isl_die(isl_pw_aff_get_ctx(pwaff1), isl_error_invalid,
2636 "unaligned unnamed parameters", goto error);
2637 pwaff1 = isl_pw_aff_align_params(pwaff1, isl_pw_aff_get_space(pwaff2));
2638 pwaff2 = isl_pw_aff_align_params(pwaff2, isl_pw_aff_get_space(pwaff1));
2639 return fn(pwaff1, pwaff2);
2640 error:
2641 isl_pw_aff_free(pwaff1);
2642 isl_pw_aff_free(pwaff2);
2643 return NULL;
2646 /* Align the parameters of the to isl_pw_aff arguments and
2647 * then apply a function "fn" on them that returns an isl_map.
2649 static __isl_give isl_map *align_params_pw_pw_map_and(
2650 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2,
2651 __isl_give isl_map *(*fn)(__isl_take isl_pw_aff *pa1,
2652 __isl_take isl_pw_aff *pa2))
2654 if (!pa1 || !pa2)
2655 goto error;
2656 if (isl_space_match(pa1->dim, isl_dim_param, pa2->dim, isl_dim_param))
2657 return fn(pa1, pa2);
2658 if (!isl_space_has_named_params(pa1->dim) ||
2659 !isl_space_has_named_params(pa2->dim))
2660 isl_die(isl_pw_aff_get_ctx(pa1), isl_error_invalid,
2661 "unaligned unnamed parameters", goto error);
2662 pa1 = isl_pw_aff_align_params(pa1, isl_pw_aff_get_space(pa2));
2663 pa2 = isl_pw_aff_align_params(pa2, isl_pw_aff_get_space(pa1));
2664 return fn(pa1, pa2);
2665 error:
2666 isl_pw_aff_free(pa1);
2667 isl_pw_aff_free(pa2);
2668 return NULL;
2671 /* Compute a piecewise quasi-affine expression with a domain that
2672 * is the union of those of pwaff1 and pwaff2 and such that on each
2673 * cell, the quasi-affine expression is the maximum of those of pwaff1
2674 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2675 * cell, then the associated expression is the defined one.
2677 static __isl_give isl_pw_aff *pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
2678 __isl_take isl_pw_aff *pwaff2)
2680 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_ge_set);
2683 __isl_give isl_pw_aff *isl_pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
2684 __isl_take isl_pw_aff *pwaff2)
2686 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2,
2687 &pw_aff_union_max);
2690 /* Compute a piecewise quasi-affine expression with a domain that
2691 * is the union of those of pwaff1 and pwaff2 and such that on each
2692 * cell, the quasi-affine expression is the minimum of those of pwaff1
2693 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2694 * cell, then the associated expression is the defined one.
2696 static __isl_give isl_pw_aff *pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
2697 __isl_take isl_pw_aff *pwaff2)
2699 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_le_set);
2702 __isl_give isl_pw_aff *isl_pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
2703 __isl_take isl_pw_aff *pwaff2)
2705 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2,
2706 &pw_aff_union_min);
2709 __isl_give isl_pw_aff *isl_pw_aff_union_opt(__isl_take isl_pw_aff *pwaff1,
2710 __isl_take isl_pw_aff *pwaff2, int max)
2712 if (max)
2713 return isl_pw_aff_union_max(pwaff1, pwaff2);
2714 else
2715 return isl_pw_aff_union_min(pwaff1, pwaff2);
2718 /* Construct a map with as domain the domain of pwaff and
2719 * one-dimensional range corresponding to the affine expressions.
2721 static __isl_give isl_map *map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
2723 int i;
2724 isl_space *dim;
2725 isl_map *map;
2727 if (!pwaff)
2728 return NULL;
2730 dim = isl_pw_aff_get_space(pwaff);
2731 map = isl_map_empty(dim);
2733 for (i = 0; i < pwaff->n; ++i) {
2734 isl_basic_map *bmap;
2735 isl_map *map_i;
2737 bmap = isl_basic_map_from_aff(isl_aff_copy(pwaff->p[i].aff));
2738 map_i = isl_map_from_basic_map(bmap);
2739 map_i = isl_map_intersect_domain(map_i,
2740 isl_set_copy(pwaff->p[i].set));
2741 map = isl_map_union_disjoint(map, map_i);
2744 isl_pw_aff_free(pwaff);
2746 return map;
2749 /* Construct a map with as domain the domain of pwaff and
2750 * one-dimensional range corresponding to the affine expressions.
2752 __isl_give isl_map *isl_map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
2754 if (!pwaff)
2755 return NULL;
2756 if (isl_space_is_set(pwaff->dim))
2757 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
2758 "space of input is not a map", goto error);
2759 return map_from_pw_aff(pwaff);
2760 error:
2761 isl_pw_aff_free(pwaff);
2762 return NULL;
2765 /* Construct a one-dimensional set with as parameter domain
2766 * the domain of pwaff and the single set dimension
2767 * corresponding to the affine expressions.
2769 __isl_give isl_set *isl_set_from_pw_aff(__isl_take isl_pw_aff *pwaff)
2771 if (!pwaff)
2772 return NULL;
2773 if (!isl_space_is_set(pwaff->dim))
2774 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
2775 "space of input is not a set", goto error);
2776 return map_from_pw_aff(pwaff);
2777 error:
2778 isl_pw_aff_free(pwaff);
2779 return NULL;
2782 /* Return a set containing those elements in the domain
2783 * of "pwaff" where it satisfies "fn" (if complement is 0) or
2784 * does not satisfy "fn" (if complement is 1).
2786 * The pieces with a NaN never belong to the result since
2787 * NaN does not satisfy any property.
2789 static __isl_give isl_set *pw_aff_locus(__isl_take isl_pw_aff *pwaff,
2790 __isl_give isl_basic_set *(*fn)(__isl_take isl_aff *aff, int rational),
2791 int complement)
2793 int i;
2794 isl_set *set;
2796 if (!pwaff)
2797 return NULL;
2799 set = isl_set_empty(isl_pw_aff_get_domain_space(pwaff));
2801 for (i = 0; i < pwaff->n; ++i) {
2802 isl_basic_set *bset;
2803 isl_set *set_i, *locus;
2804 int rational;
2806 if (isl_aff_is_nan(pwaff->p[i].aff))
2807 continue;
2809 rational = isl_set_has_rational(pwaff->p[i].set);
2810 bset = fn(isl_aff_copy(pwaff->p[i].aff), rational);
2811 locus = isl_set_from_basic_set(bset);
2812 set_i = isl_set_copy(pwaff->p[i].set);
2813 if (complement)
2814 set_i = isl_set_subtract(set_i, locus);
2815 else
2816 set_i = isl_set_intersect(set_i, locus);
2817 set = isl_set_union_disjoint(set, set_i);
2820 isl_pw_aff_free(pwaff);
2822 return set;
2825 /* Return a set containing those elements in the domain
2826 * of "pa" where it is positive.
2828 __isl_give isl_set *isl_pw_aff_pos_set(__isl_take isl_pw_aff *pa)
2830 return pw_aff_locus(pa, &aff_pos_basic_set, 0);
2833 /* Return a set containing those elements in the domain
2834 * of pwaff where it is non-negative.
2836 __isl_give isl_set *isl_pw_aff_nonneg_set(__isl_take isl_pw_aff *pwaff)
2838 return pw_aff_locus(pwaff, &aff_nonneg_basic_set, 0);
2841 /* Return a set containing those elements in the domain
2842 * of pwaff where it is zero.
2844 __isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
2846 return pw_aff_locus(pwaff, &aff_zero_basic_set, 0);
2849 /* Return a set containing those elements in the domain
2850 * of pwaff where it is not zero.
2852 __isl_give isl_set *isl_pw_aff_non_zero_set(__isl_take isl_pw_aff *pwaff)
2854 return pw_aff_locus(pwaff, &aff_zero_basic_set, 1);
2857 /* Return a set containing those elements in the shared domain
2858 * of pwaff1 and pwaff2 where pwaff1 is greater than (or equal) to pwaff2.
2860 * We compute the difference on the shared domain and then construct
2861 * the set of values where this difference is non-negative.
2862 * If strict is set, we first subtract 1 from the difference.
2863 * If equal is set, we only return the elements where pwaff1 and pwaff2
2864 * are equal.
2866 static __isl_give isl_set *pw_aff_gte_set(__isl_take isl_pw_aff *pwaff1,
2867 __isl_take isl_pw_aff *pwaff2, int strict, int equal)
2869 isl_set *set1, *set2;
2871 set1 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff1));
2872 set2 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff2));
2873 set1 = isl_set_intersect(set1, set2);
2874 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, isl_set_copy(set1));
2875 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, isl_set_copy(set1));
2876 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_neg(pwaff2));
2878 if (strict) {
2879 isl_space *dim = isl_set_get_space(set1);
2880 isl_aff *aff;
2881 aff = isl_aff_zero_on_domain(isl_local_space_from_space(dim));
2882 aff = isl_aff_add_constant_si(aff, -1);
2883 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_alloc(set1, aff));
2884 } else
2885 isl_set_free(set1);
2887 if (equal)
2888 return isl_pw_aff_zero_set(pwaff1);
2889 return isl_pw_aff_nonneg_set(pwaff1);
2892 /* Return a set containing those elements in the shared domain
2893 * of pwaff1 and pwaff2 where pwaff1 is equal to pwaff2.
2895 static __isl_give isl_set *pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
2896 __isl_take isl_pw_aff *pwaff2)
2898 return pw_aff_gte_set(pwaff1, pwaff2, 0, 1);
2901 __isl_give isl_set *isl_pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
2902 __isl_take isl_pw_aff *pwaff2)
2904 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_eq_set);
2907 /* Return a set containing those elements in the shared domain
2908 * of pwaff1 and pwaff2 where pwaff1 is greater than or equal to pwaff2.
2910 static __isl_give isl_set *pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
2911 __isl_take isl_pw_aff *pwaff2)
2913 return pw_aff_gte_set(pwaff1, pwaff2, 0, 0);
2916 __isl_give isl_set *isl_pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
2917 __isl_take isl_pw_aff *pwaff2)
2919 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ge_set);
2922 /* Return a set containing those elements in the shared domain
2923 * of pwaff1 and pwaff2 where pwaff1 is strictly greater than pwaff2.
2925 static __isl_give isl_set *pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
2926 __isl_take isl_pw_aff *pwaff2)
2928 return pw_aff_gte_set(pwaff1, pwaff2, 1, 0);
2931 __isl_give isl_set *isl_pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
2932 __isl_take isl_pw_aff *pwaff2)
2934 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_gt_set);
2937 __isl_give isl_set *isl_pw_aff_le_set(__isl_take isl_pw_aff *pwaff1,
2938 __isl_take isl_pw_aff *pwaff2)
2940 return isl_pw_aff_ge_set(pwaff2, pwaff1);
2943 __isl_give isl_set *isl_pw_aff_lt_set(__isl_take isl_pw_aff *pwaff1,
2944 __isl_take isl_pw_aff *pwaff2)
2946 return isl_pw_aff_gt_set(pwaff2, pwaff1);
2949 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
2950 * where the function values are ordered in the same way as "order",
2951 * which returns a set in the shared domain of its two arguments.
2952 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
2954 * Let "pa1" and "pa2" be defined on domains A and B respectively.
2955 * We first pull back the two functions such that they are defined on
2956 * the domain [A -> B]. Then we apply "order", resulting in a set
2957 * in the space [A -> B]. Finally, we unwrap this set to obtain
2958 * a map in the space A -> B.
2960 static __isl_give isl_map *isl_pw_aff_order_map_aligned(
2961 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2,
2962 __isl_give isl_set *(*order)(__isl_take isl_pw_aff *pa1,
2963 __isl_take isl_pw_aff *pa2))
2965 isl_space *space1, *space2;
2966 isl_multi_aff *ma;
2967 isl_set *set;
2969 space1 = isl_space_domain(isl_pw_aff_get_space(pa1));
2970 space2 = isl_space_domain(isl_pw_aff_get_space(pa2));
2971 space1 = isl_space_map_from_domain_and_range(space1, space2);
2972 ma = isl_multi_aff_domain_map(isl_space_copy(space1));
2973 pa1 = isl_pw_aff_pullback_multi_aff(pa1, ma);
2974 ma = isl_multi_aff_range_map(space1);
2975 pa2 = isl_pw_aff_pullback_multi_aff(pa2, ma);
2976 set = order(pa1, pa2);
2978 return isl_set_unwrap(set);
2981 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
2982 * where the function values are equal.
2983 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
2985 static __isl_give isl_map *isl_pw_aff_eq_map_aligned(__isl_take isl_pw_aff *pa1,
2986 __isl_take isl_pw_aff *pa2)
2988 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_eq_set);
2991 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
2992 * where the function values are equal.
2994 __isl_give isl_map *isl_pw_aff_eq_map(__isl_take isl_pw_aff *pa1,
2995 __isl_take isl_pw_aff *pa2)
2997 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_eq_map_aligned);
3000 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3001 * where the function value of "pa1" is less than the function value of "pa2".
3002 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3004 static __isl_give isl_map *isl_pw_aff_lt_map_aligned(__isl_take isl_pw_aff *pa1,
3005 __isl_take isl_pw_aff *pa2)
3007 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_lt_set);
3010 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3011 * where the function value of "pa1" is less than the function value of "pa2".
3013 __isl_give isl_map *isl_pw_aff_lt_map(__isl_take isl_pw_aff *pa1,
3014 __isl_take isl_pw_aff *pa2)
3016 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_lt_map_aligned);
3019 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3020 * where the function value of "pa1" is greater than the function value
3021 * of "pa2".
3022 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3024 static __isl_give isl_map *isl_pw_aff_gt_map_aligned(__isl_take isl_pw_aff *pa1,
3025 __isl_take isl_pw_aff *pa2)
3027 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_gt_set);
3030 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3031 * where the function value of "pa1" is greater than the function value
3032 * of "pa2".
3034 __isl_give isl_map *isl_pw_aff_gt_map(__isl_take isl_pw_aff *pa1,
3035 __isl_take isl_pw_aff *pa2)
3037 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_gt_map_aligned);
3040 /* Return a set containing those elements in the shared domain
3041 * of the elements of list1 and list2 where each element in list1
3042 * has the relation specified by "fn" with each element in list2.
3044 static __isl_give isl_set *pw_aff_list_set(__isl_take isl_pw_aff_list *list1,
3045 __isl_take isl_pw_aff_list *list2,
3046 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
3047 __isl_take isl_pw_aff *pwaff2))
3049 int i, j;
3050 isl_ctx *ctx;
3051 isl_set *set;
3053 if (!list1 || !list2)
3054 goto error;
3056 ctx = isl_pw_aff_list_get_ctx(list1);
3057 if (list1->n < 1 || list2->n < 1)
3058 isl_die(ctx, isl_error_invalid,
3059 "list should contain at least one element", goto error);
3061 set = isl_set_universe(isl_pw_aff_get_domain_space(list1->p[0]));
3062 for (i = 0; i < list1->n; ++i)
3063 for (j = 0; j < list2->n; ++j) {
3064 isl_set *set_ij;
3066 set_ij = fn(isl_pw_aff_copy(list1->p[i]),
3067 isl_pw_aff_copy(list2->p[j]));
3068 set = isl_set_intersect(set, set_ij);
3071 isl_pw_aff_list_free(list1);
3072 isl_pw_aff_list_free(list2);
3073 return set;
3074 error:
3075 isl_pw_aff_list_free(list1);
3076 isl_pw_aff_list_free(list2);
3077 return NULL;
3080 /* Return a set containing those elements in the shared domain
3081 * of the elements of list1 and list2 where each element in list1
3082 * is equal to each element in list2.
3084 __isl_give isl_set *isl_pw_aff_list_eq_set(__isl_take isl_pw_aff_list *list1,
3085 __isl_take isl_pw_aff_list *list2)
3087 return pw_aff_list_set(list1, list2, &isl_pw_aff_eq_set);
3090 __isl_give isl_set *isl_pw_aff_list_ne_set(__isl_take isl_pw_aff_list *list1,
3091 __isl_take isl_pw_aff_list *list2)
3093 return pw_aff_list_set(list1, list2, &isl_pw_aff_ne_set);
3096 /* Return a set containing those elements in the shared domain
3097 * of the elements of list1 and list2 where each element in list1
3098 * is less than or equal to each element in list2.
3100 __isl_give isl_set *isl_pw_aff_list_le_set(__isl_take isl_pw_aff_list *list1,
3101 __isl_take isl_pw_aff_list *list2)
3103 return pw_aff_list_set(list1, list2, &isl_pw_aff_le_set);
3106 __isl_give isl_set *isl_pw_aff_list_lt_set(__isl_take isl_pw_aff_list *list1,
3107 __isl_take isl_pw_aff_list *list2)
3109 return pw_aff_list_set(list1, list2, &isl_pw_aff_lt_set);
3112 __isl_give isl_set *isl_pw_aff_list_ge_set(__isl_take isl_pw_aff_list *list1,
3113 __isl_take isl_pw_aff_list *list2)
3115 return pw_aff_list_set(list1, list2, &isl_pw_aff_ge_set);
3118 __isl_give isl_set *isl_pw_aff_list_gt_set(__isl_take isl_pw_aff_list *list1,
3119 __isl_take isl_pw_aff_list *list2)
3121 return pw_aff_list_set(list1, list2, &isl_pw_aff_gt_set);
3125 /* Return a set containing those elements in the shared domain
3126 * of pwaff1 and pwaff2 where pwaff1 is not equal to pwaff2.
3128 static __isl_give isl_set *pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
3129 __isl_take isl_pw_aff *pwaff2)
3131 isl_set *set_lt, *set_gt;
3133 set_lt = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff1),
3134 isl_pw_aff_copy(pwaff2));
3135 set_gt = isl_pw_aff_gt_set(pwaff1, pwaff2);
3136 return isl_set_union_disjoint(set_lt, set_gt);
3139 __isl_give isl_set *isl_pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
3140 __isl_take isl_pw_aff *pwaff2)
3142 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ne_set);
3145 __isl_give isl_pw_aff *isl_pw_aff_scale_down(__isl_take isl_pw_aff *pwaff,
3146 isl_int v)
3148 int i;
3150 if (isl_int_is_one(v))
3151 return pwaff;
3152 if (!isl_int_is_pos(v))
3153 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
3154 "factor needs to be positive",
3155 return isl_pw_aff_free(pwaff));
3156 pwaff = isl_pw_aff_cow(pwaff);
3157 if (!pwaff)
3158 return NULL;
3159 if (pwaff->n == 0)
3160 return pwaff;
3162 for (i = 0; i < pwaff->n; ++i) {
3163 pwaff->p[i].aff = isl_aff_scale_down(pwaff->p[i].aff, v);
3164 if (!pwaff->p[i].aff)
3165 return isl_pw_aff_free(pwaff);
3168 return pwaff;
3171 __isl_give isl_pw_aff *isl_pw_aff_floor(__isl_take isl_pw_aff *pwaff)
3173 int i;
3175 pwaff = isl_pw_aff_cow(pwaff);
3176 if (!pwaff)
3177 return NULL;
3178 if (pwaff->n == 0)
3179 return pwaff;
3181 for (i = 0; i < pwaff->n; ++i) {
3182 pwaff->p[i].aff = isl_aff_floor(pwaff->p[i].aff);
3183 if (!pwaff->p[i].aff)
3184 return isl_pw_aff_free(pwaff);
3187 return pwaff;
3190 __isl_give isl_pw_aff *isl_pw_aff_ceil(__isl_take isl_pw_aff *pwaff)
3192 int i;
3194 pwaff = isl_pw_aff_cow(pwaff);
3195 if (!pwaff)
3196 return NULL;
3197 if (pwaff->n == 0)
3198 return pwaff;
3200 for (i = 0; i < pwaff->n; ++i) {
3201 pwaff->p[i].aff = isl_aff_ceil(pwaff->p[i].aff);
3202 if (!pwaff->p[i].aff)
3203 return isl_pw_aff_free(pwaff);
3206 return pwaff;
3209 /* Assuming that "cond1" and "cond2" are disjoint,
3210 * return an affine expression that is equal to pwaff1 on cond1
3211 * and to pwaff2 on cond2.
3213 static __isl_give isl_pw_aff *isl_pw_aff_select(
3214 __isl_take isl_set *cond1, __isl_take isl_pw_aff *pwaff1,
3215 __isl_take isl_set *cond2, __isl_take isl_pw_aff *pwaff2)
3217 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, cond1);
3218 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, cond2);
3220 return isl_pw_aff_add_disjoint(pwaff1, pwaff2);
3223 /* Return an affine expression that is equal to pwaff_true for elements
3224 * where "cond" is non-zero and to pwaff_false for elements where "cond"
3225 * is zero.
3226 * That is, return cond ? pwaff_true : pwaff_false;
3228 * If "cond" involves and NaN, then we conservatively return a NaN
3229 * on its entire domain. In principle, we could consider the pieces
3230 * where it is NaN separately from those where it is not.
3232 * If "pwaff_true" and "pwaff_false" are obviously equal to each other,
3233 * then only use the domain of "cond" to restrict the domain.
3235 __isl_give isl_pw_aff *isl_pw_aff_cond(__isl_take isl_pw_aff *cond,
3236 __isl_take isl_pw_aff *pwaff_true, __isl_take isl_pw_aff *pwaff_false)
3238 isl_set *cond_true, *cond_false;
3239 isl_bool equal;
3241 if (!cond)
3242 goto error;
3243 if (isl_pw_aff_involves_nan(cond)) {
3244 isl_space *space = isl_pw_aff_get_domain_space(cond);
3245 isl_local_space *ls = isl_local_space_from_space(space);
3246 isl_pw_aff_free(cond);
3247 isl_pw_aff_free(pwaff_true);
3248 isl_pw_aff_free(pwaff_false);
3249 return isl_pw_aff_nan_on_domain(ls);
3252 pwaff_true = isl_pw_aff_align_params(pwaff_true,
3253 isl_pw_aff_get_space(pwaff_false));
3254 pwaff_false = isl_pw_aff_align_params(pwaff_false,
3255 isl_pw_aff_get_space(pwaff_true));
3256 equal = isl_pw_aff_plain_is_equal(pwaff_true, pwaff_false);
3257 if (equal < 0)
3258 goto error;
3259 if (equal) {
3260 isl_set *dom;
3262 dom = isl_set_coalesce(isl_pw_aff_domain(cond));
3263 isl_pw_aff_free(pwaff_false);
3264 return isl_pw_aff_intersect_domain(pwaff_true, dom);
3267 cond_true = isl_pw_aff_non_zero_set(isl_pw_aff_copy(cond));
3268 cond_false = isl_pw_aff_zero_set(cond);
3269 return isl_pw_aff_select(cond_true, pwaff_true,
3270 cond_false, pwaff_false);
3271 error:
3272 isl_pw_aff_free(cond);
3273 isl_pw_aff_free(pwaff_true);
3274 isl_pw_aff_free(pwaff_false);
3275 return NULL;
3278 isl_bool isl_aff_is_cst(__isl_keep isl_aff *aff)
3280 if (!aff)
3281 return isl_bool_error;
3283 return isl_seq_first_non_zero(aff->v->el + 2, aff->v->size - 2) == -1;
3286 /* Check whether pwaff is a piecewise constant.
3288 isl_bool isl_pw_aff_is_cst(__isl_keep isl_pw_aff *pwaff)
3290 int i;
3292 if (!pwaff)
3293 return isl_bool_error;
3295 for (i = 0; i < pwaff->n; ++i) {
3296 isl_bool is_cst = isl_aff_is_cst(pwaff->p[i].aff);
3297 if (is_cst < 0 || !is_cst)
3298 return is_cst;
3301 return isl_bool_true;
3304 /* Are all elements of "mpa" piecewise constants?
3306 isl_bool isl_multi_pw_aff_is_cst(__isl_keep isl_multi_pw_aff *mpa)
3308 int i;
3310 if (!mpa)
3311 return isl_bool_error;
3313 for (i = 0; i < mpa->n; ++i) {
3314 isl_bool is_cst = isl_pw_aff_is_cst(mpa->p[i]);
3315 if (is_cst < 0 || !is_cst)
3316 return is_cst;
3319 return isl_bool_true;
3322 /* Return the product of "aff1" and "aff2".
3324 * If either of the two is NaN, then the result is NaN.
3326 * Otherwise, at least one of "aff1" or "aff2" needs to be a constant.
3328 __isl_give isl_aff *isl_aff_mul(__isl_take isl_aff *aff1,
3329 __isl_take isl_aff *aff2)
3331 if (!aff1 || !aff2)
3332 goto error;
3334 if (isl_aff_is_nan(aff1)) {
3335 isl_aff_free(aff2);
3336 return aff1;
3338 if (isl_aff_is_nan(aff2)) {
3339 isl_aff_free(aff1);
3340 return aff2;
3343 if (!isl_aff_is_cst(aff2) && isl_aff_is_cst(aff1))
3344 return isl_aff_mul(aff2, aff1);
3346 if (!isl_aff_is_cst(aff2))
3347 isl_die(isl_aff_get_ctx(aff1), isl_error_invalid,
3348 "at least one affine expression should be constant",
3349 goto error);
3351 aff1 = isl_aff_cow(aff1);
3352 if (!aff1 || !aff2)
3353 goto error;
3355 aff1 = isl_aff_scale(aff1, aff2->v->el[1]);
3356 aff1 = isl_aff_scale_down(aff1, aff2->v->el[0]);
3358 isl_aff_free(aff2);
3359 return aff1;
3360 error:
3361 isl_aff_free(aff1);
3362 isl_aff_free(aff2);
3363 return NULL;
3366 /* Divide "aff1" by "aff2", assuming "aff2" is a constant.
3368 * If either of the two is NaN, then the result is NaN.
3370 __isl_give isl_aff *isl_aff_div(__isl_take isl_aff *aff1,
3371 __isl_take isl_aff *aff2)
3373 int is_cst;
3374 int neg;
3376 if (!aff1 || !aff2)
3377 goto error;
3379 if (isl_aff_is_nan(aff1)) {
3380 isl_aff_free(aff2);
3381 return aff1;
3383 if (isl_aff_is_nan(aff2)) {
3384 isl_aff_free(aff1);
3385 return aff2;
3388 is_cst = isl_aff_is_cst(aff2);
3389 if (is_cst < 0)
3390 goto error;
3391 if (!is_cst)
3392 isl_die(isl_aff_get_ctx(aff2), isl_error_invalid,
3393 "second argument should be a constant", goto error);
3395 if (!aff2)
3396 goto error;
3398 neg = isl_int_is_neg(aff2->v->el[1]);
3399 if (neg) {
3400 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3401 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3404 aff1 = isl_aff_scale(aff1, aff2->v->el[0]);
3405 aff1 = isl_aff_scale_down(aff1, aff2->v->el[1]);
3407 if (neg) {
3408 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3409 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3412 isl_aff_free(aff2);
3413 return aff1;
3414 error:
3415 isl_aff_free(aff1);
3416 isl_aff_free(aff2);
3417 return NULL;
3420 static __isl_give isl_pw_aff *pw_aff_add(__isl_take isl_pw_aff *pwaff1,
3421 __isl_take isl_pw_aff *pwaff2)
3423 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_add);
3426 __isl_give isl_pw_aff *isl_pw_aff_add(__isl_take isl_pw_aff *pwaff1,
3427 __isl_take isl_pw_aff *pwaff2)
3429 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_add);
3432 __isl_give isl_pw_aff *isl_pw_aff_union_add(__isl_take isl_pw_aff *pwaff1,
3433 __isl_take isl_pw_aff *pwaff2)
3435 return isl_pw_aff_union_add_(pwaff1, pwaff2);
3438 static __isl_give isl_pw_aff *pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
3439 __isl_take isl_pw_aff *pwaff2)
3441 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_mul);
3444 __isl_give isl_pw_aff *isl_pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
3445 __isl_take isl_pw_aff *pwaff2)
3447 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_mul);
3450 static __isl_give isl_pw_aff *pw_aff_div(__isl_take isl_pw_aff *pa1,
3451 __isl_take isl_pw_aff *pa2)
3453 return isl_pw_aff_on_shared_domain(pa1, pa2, &isl_aff_div);
3456 /* Divide "pa1" by "pa2", assuming "pa2" is a piecewise constant.
3458 __isl_give isl_pw_aff *isl_pw_aff_div(__isl_take isl_pw_aff *pa1,
3459 __isl_take isl_pw_aff *pa2)
3461 int is_cst;
3463 is_cst = isl_pw_aff_is_cst(pa2);
3464 if (is_cst < 0)
3465 goto error;
3466 if (!is_cst)
3467 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3468 "second argument should be a piecewise constant",
3469 goto error);
3470 return isl_pw_aff_align_params_pw_pw_and(pa1, pa2, &pw_aff_div);
3471 error:
3472 isl_pw_aff_free(pa1);
3473 isl_pw_aff_free(pa2);
3474 return NULL;
3477 /* Compute the quotient of the integer division of "pa1" by "pa2"
3478 * with rounding towards zero.
3479 * "pa2" is assumed to be a piecewise constant.
3481 * In particular, return
3483 * pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2)
3486 __isl_give isl_pw_aff *isl_pw_aff_tdiv_q(__isl_take isl_pw_aff *pa1,
3487 __isl_take isl_pw_aff *pa2)
3489 int is_cst;
3490 isl_set *cond;
3491 isl_pw_aff *f, *c;
3493 is_cst = isl_pw_aff_is_cst(pa2);
3494 if (is_cst < 0)
3495 goto error;
3496 if (!is_cst)
3497 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3498 "second argument should be a piecewise constant",
3499 goto error);
3501 pa1 = isl_pw_aff_div(pa1, pa2);
3503 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(pa1));
3504 f = isl_pw_aff_floor(isl_pw_aff_copy(pa1));
3505 c = isl_pw_aff_ceil(pa1);
3506 return isl_pw_aff_cond(isl_set_indicator_function(cond), f, c);
3507 error:
3508 isl_pw_aff_free(pa1);
3509 isl_pw_aff_free(pa2);
3510 return NULL;
3513 /* Compute the remainder of the integer division of "pa1" by "pa2"
3514 * with rounding towards zero.
3515 * "pa2" is assumed to be a piecewise constant.
3517 * In particular, return
3519 * pa1 - pa2 * (pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2))
3522 __isl_give isl_pw_aff *isl_pw_aff_tdiv_r(__isl_take isl_pw_aff *pa1,
3523 __isl_take isl_pw_aff *pa2)
3525 int is_cst;
3526 isl_pw_aff *res;
3528 is_cst = isl_pw_aff_is_cst(pa2);
3529 if (is_cst < 0)
3530 goto error;
3531 if (!is_cst)
3532 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3533 "second argument should be a piecewise constant",
3534 goto error);
3535 res = isl_pw_aff_tdiv_q(isl_pw_aff_copy(pa1), isl_pw_aff_copy(pa2));
3536 res = isl_pw_aff_mul(pa2, res);
3537 res = isl_pw_aff_sub(pa1, res);
3538 return res;
3539 error:
3540 isl_pw_aff_free(pa1);
3541 isl_pw_aff_free(pa2);
3542 return NULL;
3545 static __isl_give isl_pw_aff *pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3546 __isl_take isl_pw_aff *pwaff2)
3548 isl_set *le;
3549 isl_set *dom;
3551 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3552 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3553 le = isl_pw_aff_le_set(isl_pw_aff_copy(pwaff1),
3554 isl_pw_aff_copy(pwaff2));
3555 dom = isl_set_subtract(dom, isl_set_copy(le));
3556 return isl_pw_aff_select(le, pwaff1, dom, pwaff2);
3559 __isl_give isl_pw_aff *isl_pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3560 __isl_take isl_pw_aff *pwaff2)
3562 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_min);
3565 static __isl_give isl_pw_aff *pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3566 __isl_take isl_pw_aff *pwaff2)
3568 isl_set *ge;
3569 isl_set *dom;
3571 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3572 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3573 ge = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff1),
3574 isl_pw_aff_copy(pwaff2));
3575 dom = isl_set_subtract(dom, isl_set_copy(ge));
3576 return isl_pw_aff_select(ge, pwaff1, dom, pwaff2);
3579 __isl_give isl_pw_aff *isl_pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3580 __isl_take isl_pw_aff *pwaff2)
3582 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_max);
3585 static __isl_give isl_pw_aff *pw_aff_list_reduce(
3586 __isl_take isl_pw_aff_list *list,
3587 __isl_give isl_pw_aff *(*fn)(__isl_take isl_pw_aff *pwaff1,
3588 __isl_take isl_pw_aff *pwaff2))
3590 int i;
3591 isl_ctx *ctx;
3592 isl_pw_aff *res;
3594 if (!list)
3595 return NULL;
3597 ctx = isl_pw_aff_list_get_ctx(list);
3598 if (list->n < 1)
3599 isl_die(ctx, isl_error_invalid,
3600 "list should contain at least one element", goto error);
3602 res = isl_pw_aff_copy(list->p[0]);
3603 for (i = 1; i < list->n; ++i)
3604 res = fn(res, isl_pw_aff_copy(list->p[i]));
3606 isl_pw_aff_list_free(list);
3607 return res;
3608 error:
3609 isl_pw_aff_list_free(list);
3610 return NULL;
3613 /* Return an isl_pw_aff that maps each element in the intersection of the
3614 * domains of the elements of list to the minimal corresponding affine
3615 * expression.
3617 __isl_give isl_pw_aff *isl_pw_aff_list_min(__isl_take isl_pw_aff_list *list)
3619 return pw_aff_list_reduce(list, &isl_pw_aff_min);
3622 /* Return an isl_pw_aff that maps each element in the intersection of the
3623 * domains of the elements of list to the maximal corresponding affine
3624 * expression.
3626 __isl_give isl_pw_aff *isl_pw_aff_list_max(__isl_take isl_pw_aff_list *list)
3628 return pw_aff_list_reduce(list, &isl_pw_aff_max);
3631 /* Mark the domains of "pwaff" as rational.
3633 __isl_give isl_pw_aff *isl_pw_aff_set_rational(__isl_take isl_pw_aff *pwaff)
3635 int i;
3637 pwaff = isl_pw_aff_cow(pwaff);
3638 if (!pwaff)
3639 return NULL;
3640 if (pwaff->n == 0)
3641 return pwaff;
3643 for (i = 0; i < pwaff->n; ++i) {
3644 pwaff->p[i].set = isl_set_set_rational(pwaff->p[i].set);
3645 if (!pwaff->p[i].set)
3646 return isl_pw_aff_free(pwaff);
3649 return pwaff;
3652 /* Mark the domains of the elements of "list" as rational.
3654 __isl_give isl_pw_aff_list *isl_pw_aff_list_set_rational(
3655 __isl_take isl_pw_aff_list *list)
3657 int i, n;
3659 if (!list)
3660 return NULL;
3661 if (list->n == 0)
3662 return list;
3664 n = list->n;
3665 for (i = 0; i < n; ++i) {
3666 isl_pw_aff *pa;
3668 pa = isl_pw_aff_list_get_pw_aff(list, i);
3669 pa = isl_pw_aff_set_rational(pa);
3670 list = isl_pw_aff_list_set_pw_aff(list, i, pa);
3673 return list;
3676 /* Do the parameters of "aff" match those of "space"?
3678 int isl_aff_matching_params(__isl_keep isl_aff *aff,
3679 __isl_keep isl_space *space)
3681 isl_space *aff_space;
3682 int match;
3684 if (!aff || !space)
3685 return -1;
3687 aff_space = isl_aff_get_domain_space(aff);
3689 match = isl_space_match(space, isl_dim_param, aff_space, isl_dim_param);
3691 isl_space_free(aff_space);
3692 return match;
3695 /* Check that the domain space of "aff" matches "space".
3697 * Return 0 on success and -1 on error.
3699 int isl_aff_check_match_domain_space(__isl_keep isl_aff *aff,
3700 __isl_keep isl_space *space)
3702 isl_space *aff_space;
3703 int match;
3705 if (!aff || !space)
3706 return -1;
3708 aff_space = isl_aff_get_domain_space(aff);
3710 match = isl_space_match(space, isl_dim_param, aff_space, isl_dim_param);
3711 if (match < 0)
3712 goto error;
3713 if (!match)
3714 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
3715 "parameters don't match", goto error);
3716 match = isl_space_tuple_is_equal(space, isl_dim_in,
3717 aff_space, isl_dim_set);
3718 if (match < 0)
3719 goto error;
3720 if (!match)
3721 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
3722 "domains don't match", goto error);
3723 isl_space_free(aff_space);
3724 return 0;
3725 error:
3726 isl_space_free(aff_space);
3727 return -1;
3730 #undef BASE
3731 #define BASE aff
3732 #undef DOMBASE
3733 #define DOMBASE set
3734 #define NO_DOMAIN
3736 #include <isl_multi_templ.c>
3737 #include <isl_multi_apply_set.c>
3738 #include <isl_multi_cmp.c>
3739 #include <isl_multi_floor.c>
3740 #include <isl_multi_gist.c>
3742 #undef NO_DOMAIN
3744 /* Remove any internal structure of the domain of "ma".
3745 * If there is any such internal structure in the input,
3746 * then the name of the corresponding space is also removed.
3748 __isl_give isl_multi_aff *isl_multi_aff_flatten_domain(
3749 __isl_take isl_multi_aff *ma)
3751 isl_space *space;
3753 if (!ma)
3754 return NULL;
3756 if (!ma->space->nested[0])
3757 return ma;
3759 space = isl_multi_aff_get_space(ma);
3760 space = isl_space_flatten_domain(space);
3761 ma = isl_multi_aff_reset_space(ma, space);
3763 return ma;
3766 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
3767 * of the space to its domain.
3769 __isl_give isl_multi_aff *isl_multi_aff_domain_map(__isl_take isl_space *space)
3771 int i, n_in;
3772 isl_local_space *ls;
3773 isl_multi_aff *ma;
3775 if (!space)
3776 return NULL;
3777 if (!isl_space_is_map(space))
3778 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3779 "not a map space", goto error);
3781 n_in = isl_space_dim(space, isl_dim_in);
3782 space = isl_space_domain_map(space);
3784 ma = isl_multi_aff_alloc(isl_space_copy(space));
3785 if (n_in == 0) {
3786 isl_space_free(space);
3787 return ma;
3790 space = isl_space_domain(space);
3791 ls = isl_local_space_from_space(space);
3792 for (i = 0; i < n_in; ++i) {
3793 isl_aff *aff;
3795 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3796 isl_dim_set, i);
3797 ma = isl_multi_aff_set_aff(ma, i, aff);
3799 isl_local_space_free(ls);
3800 return ma;
3801 error:
3802 isl_space_free(space);
3803 return NULL;
3806 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
3807 * of the space to its range.
3809 __isl_give isl_multi_aff *isl_multi_aff_range_map(__isl_take isl_space *space)
3811 int i, n_in, n_out;
3812 isl_local_space *ls;
3813 isl_multi_aff *ma;
3815 if (!space)
3816 return NULL;
3817 if (!isl_space_is_map(space))
3818 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3819 "not a map space", goto error);
3821 n_in = isl_space_dim(space, isl_dim_in);
3822 n_out = isl_space_dim(space, isl_dim_out);
3823 space = isl_space_range_map(space);
3825 ma = isl_multi_aff_alloc(isl_space_copy(space));
3826 if (n_out == 0) {
3827 isl_space_free(space);
3828 return ma;
3831 space = isl_space_domain(space);
3832 ls = isl_local_space_from_space(space);
3833 for (i = 0; i < n_out; ++i) {
3834 isl_aff *aff;
3836 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3837 isl_dim_set, n_in + i);
3838 ma = isl_multi_aff_set_aff(ma, i, aff);
3840 isl_local_space_free(ls);
3841 return ma;
3842 error:
3843 isl_space_free(space);
3844 return NULL;
3847 /* Given a map space, return an isl_pw_multi_aff that maps a wrapped copy
3848 * of the space to its range.
3850 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_map(
3851 __isl_take isl_space *space)
3853 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_range_map(space));
3856 /* Given the space of a set and a range of set dimensions,
3857 * construct an isl_multi_aff that projects out those dimensions.
3859 __isl_give isl_multi_aff *isl_multi_aff_project_out_map(
3860 __isl_take isl_space *space, enum isl_dim_type type,
3861 unsigned first, unsigned n)
3863 int i, dim;
3864 isl_local_space *ls;
3865 isl_multi_aff *ma;
3867 if (!space)
3868 return NULL;
3869 if (!isl_space_is_set(space))
3870 isl_die(isl_space_get_ctx(space), isl_error_unsupported,
3871 "expecting set space", goto error);
3872 if (type != isl_dim_set)
3873 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3874 "only set dimensions can be projected out", goto error);
3876 dim = isl_space_dim(space, isl_dim_set);
3877 if (first + n > dim)
3878 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3879 "range out of bounds", goto error);
3881 space = isl_space_from_domain(space);
3882 space = isl_space_add_dims(space, isl_dim_out, dim - n);
3884 if (dim == n)
3885 return isl_multi_aff_alloc(space);
3887 ma = isl_multi_aff_alloc(isl_space_copy(space));
3888 space = isl_space_domain(space);
3889 ls = isl_local_space_from_space(space);
3891 for (i = 0; i < first; ++i) {
3892 isl_aff *aff;
3894 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3895 isl_dim_set, i);
3896 ma = isl_multi_aff_set_aff(ma, i, aff);
3899 for (i = 0; i < dim - (first + n); ++i) {
3900 isl_aff *aff;
3902 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
3903 isl_dim_set, first + n + i);
3904 ma = isl_multi_aff_set_aff(ma, first + i, aff);
3907 isl_local_space_free(ls);
3908 return ma;
3909 error:
3910 isl_space_free(space);
3911 return NULL;
3914 /* Given the space of a set and a range of set dimensions,
3915 * construct an isl_pw_multi_aff that projects out those dimensions.
3917 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_project_out_map(
3918 __isl_take isl_space *space, enum isl_dim_type type,
3919 unsigned first, unsigned n)
3921 isl_multi_aff *ma;
3923 ma = isl_multi_aff_project_out_map(space, type, first, n);
3924 return isl_pw_multi_aff_from_multi_aff(ma);
3927 /* Create an isl_pw_multi_aff with the given isl_multi_aff on a universe
3928 * domain.
3930 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_aff(
3931 __isl_take isl_multi_aff *ma)
3933 isl_set *dom = isl_set_universe(isl_multi_aff_get_domain_space(ma));
3934 return isl_pw_multi_aff_alloc(dom, ma);
3937 /* Create a piecewise multi-affine expression in the given space that maps each
3938 * input dimension to the corresponding output dimension.
3940 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_identity(
3941 __isl_take isl_space *space)
3943 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_identity(space));
3946 /* Exploit the equalities in "eq" to simplify the affine expressions.
3948 static __isl_give isl_multi_aff *isl_multi_aff_substitute_equalities(
3949 __isl_take isl_multi_aff *maff, __isl_take isl_basic_set *eq)
3951 int i;
3953 maff = isl_multi_aff_cow(maff);
3954 if (!maff || !eq)
3955 goto error;
3957 for (i = 0; i < maff->n; ++i) {
3958 maff->p[i] = isl_aff_substitute_equalities(maff->p[i],
3959 isl_basic_set_copy(eq));
3960 if (!maff->p[i])
3961 goto error;
3964 isl_basic_set_free(eq);
3965 return maff;
3966 error:
3967 isl_basic_set_free(eq);
3968 isl_multi_aff_free(maff);
3969 return NULL;
3972 __isl_give isl_multi_aff *isl_multi_aff_scale(__isl_take isl_multi_aff *maff,
3973 isl_int f)
3975 int i;
3977 maff = isl_multi_aff_cow(maff);
3978 if (!maff)
3979 return NULL;
3981 for (i = 0; i < maff->n; ++i) {
3982 maff->p[i] = isl_aff_scale(maff->p[i], f);
3983 if (!maff->p[i])
3984 return isl_multi_aff_free(maff);
3987 return maff;
3990 __isl_give isl_multi_aff *isl_multi_aff_add_on_domain(__isl_keep isl_set *dom,
3991 __isl_take isl_multi_aff *maff1, __isl_take isl_multi_aff *maff2)
3993 maff1 = isl_multi_aff_add(maff1, maff2);
3994 maff1 = isl_multi_aff_gist(maff1, isl_set_copy(dom));
3995 return maff1;
3998 int isl_multi_aff_is_empty(__isl_keep isl_multi_aff *maff)
4000 if (!maff)
4001 return -1;
4003 return 0;
4006 /* Return the set of domain elements where "ma1" is lexicographically
4007 * smaller than or equal to "ma2".
4009 __isl_give isl_set *isl_multi_aff_lex_le_set(__isl_take isl_multi_aff *ma1,
4010 __isl_take isl_multi_aff *ma2)
4012 return isl_multi_aff_lex_ge_set(ma2, ma1);
4015 /* Return the set of domain elements where "ma1" is lexicographically
4016 * smaller than "ma2".
4018 __isl_give isl_set *isl_multi_aff_lex_lt_set(__isl_take isl_multi_aff *ma1,
4019 __isl_take isl_multi_aff *ma2)
4021 return isl_multi_aff_lex_gt_set(ma2, ma1);
4024 /* Return the set of domain elements where "ma1" and "ma2"
4025 * satisfy "order".
4027 static __isl_give isl_set *isl_multi_aff_order_set(
4028 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2,
4029 __isl_give isl_map *order(__isl_take isl_space *set_space))
4031 isl_space *space;
4032 isl_map *map1, *map2;
4033 isl_map *map, *ge;
4035 map1 = isl_map_from_multi_aff(ma1);
4036 map2 = isl_map_from_multi_aff(ma2);
4037 map = isl_map_range_product(map1, map2);
4038 space = isl_space_range(isl_map_get_space(map));
4039 space = isl_space_domain(isl_space_unwrap(space));
4040 ge = order(space);
4041 map = isl_map_intersect_range(map, isl_map_wrap(ge));
4043 return isl_map_domain(map);
4046 /* Return the set of domain elements where "ma1" is lexicographically
4047 * greater than or equal to "ma2".
4049 __isl_give isl_set *isl_multi_aff_lex_ge_set(__isl_take isl_multi_aff *ma1,
4050 __isl_take isl_multi_aff *ma2)
4052 return isl_multi_aff_order_set(ma1, ma2, &isl_map_lex_ge);
4055 /* Return the set of domain elements where "ma1" is lexicographically
4056 * greater than "ma2".
4058 __isl_give isl_set *isl_multi_aff_lex_gt_set(__isl_take isl_multi_aff *ma1,
4059 __isl_take isl_multi_aff *ma2)
4061 return isl_multi_aff_order_set(ma1, ma2, &isl_map_lex_gt);
4064 #undef PW
4065 #define PW isl_pw_multi_aff
4066 #undef EL
4067 #define EL isl_multi_aff
4068 #undef EL_IS_ZERO
4069 #define EL_IS_ZERO is_empty
4070 #undef ZERO
4071 #define ZERO empty
4072 #undef IS_ZERO
4073 #define IS_ZERO is_empty
4074 #undef FIELD
4075 #define FIELD maff
4076 #undef DEFAULT_IS_ZERO
4077 #define DEFAULT_IS_ZERO 0
4079 #define NO_SUB
4080 #define NO_EVAL
4081 #define NO_OPT
4082 #define NO_INVOLVES_DIMS
4083 #define NO_INSERT_DIMS
4084 #define NO_LIFT
4085 #define NO_MORPH
4087 #include <isl_pw_templ.c>
4088 #include <isl_pw_union_opt.c>
4090 #undef NO_SUB
4092 #undef UNION
4093 #define UNION isl_union_pw_multi_aff
4094 #undef PART
4095 #define PART isl_pw_multi_aff
4096 #undef PARTS
4097 #define PARTS pw_multi_aff
4099 #include <isl_union_multi.c>
4100 #include <isl_union_neg.c>
4102 static __isl_give isl_pw_multi_aff *pw_multi_aff_union_lexmax(
4103 __isl_take isl_pw_multi_aff *pma1,
4104 __isl_take isl_pw_multi_aff *pma2)
4106 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4107 &isl_multi_aff_lex_ge_set);
4110 /* Given two piecewise multi affine expressions, return a piecewise
4111 * multi-affine expression defined on the union of the definition domains
4112 * of the inputs that is equal to the lexicographic maximum of the two
4113 * inputs on each cell. If only one of the two inputs is defined on
4114 * a given cell, then it is considered to be the maximum.
4116 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmax(
4117 __isl_take isl_pw_multi_aff *pma1,
4118 __isl_take isl_pw_multi_aff *pma2)
4120 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4121 &pw_multi_aff_union_lexmax);
4124 static __isl_give isl_pw_multi_aff *pw_multi_aff_union_lexmin(
4125 __isl_take isl_pw_multi_aff *pma1,
4126 __isl_take isl_pw_multi_aff *pma2)
4128 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4129 &isl_multi_aff_lex_le_set);
4132 /* Given two piecewise multi affine expressions, return a piecewise
4133 * multi-affine expression defined on the union of the definition domains
4134 * of the inputs that is equal to the lexicographic minimum of the two
4135 * inputs on each cell. If only one of the two inputs is defined on
4136 * a given cell, then it is considered to be the minimum.
4138 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmin(
4139 __isl_take isl_pw_multi_aff *pma1,
4140 __isl_take isl_pw_multi_aff *pma2)
4142 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4143 &pw_multi_aff_union_lexmin);
4146 static __isl_give isl_pw_multi_aff *pw_multi_aff_add(
4147 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4149 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4150 &isl_multi_aff_add);
4153 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_add(
4154 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4156 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4157 &pw_multi_aff_add);
4160 static __isl_give isl_pw_multi_aff *pw_multi_aff_sub(
4161 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4163 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4164 &isl_multi_aff_sub);
4167 /* Subtract "pma2" from "pma1" and return the result.
4169 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_sub(
4170 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4172 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4173 &pw_multi_aff_sub);
4176 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_add(
4177 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4179 return isl_pw_multi_aff_union_add_(pma1, pma2);
4182 /* Compute the sum of "upa1" and "upa2" on the union of their domains,
4183 * with the actual sum on the shared domain and
4184 * the defined expression on the symmetric difference of the domains.
4186 __isl_give isl_union_pw_aff *isl_union_pw_aff_union_add(
4187 __isl_take isl_union_pw_aff *upa1, __isl_take isl_union_pw_aff *upa2)
4189 return isl_union_pw_aff_union_add_(upa1, upa2);
4192 /* Compute the sum of "upma1" and "upma2" on the union of their domains,
4193 * with the actual sum on the shared domain and
4194 * the defined expression on the symmetric difference of the domains.
4196 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_union_add(
4197 __isl_take isl_union_pw_multi_aff *upma1,
4198 __isl_take isl_union_pw_multi_aff *upma2)
4200 return isl_union_pw_multi_aff_union_add_(upma1, upma2);
4203 /* Given two piecewise multi-affine expressions A -> B and C -> D,
4204 * construct a piecewise multi-affine expression [A -> C] -> [B -> D].
4206 static __isl_give isl_pw_multi_aff *pw_multi_aff_product(
4207 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4209 int i, j, n;
4210 isl_space *space;
4211 isl_pw_multi_aff *res;
4213 if (!pma1 || !pma2)
4214 goto error;
4216 n = pma1->n * pma2->n;
4217 space = isl_space_product(isl_space_copy(pma1->dim),
4218 isl_space_copy(pma2->dim));
4219 res = isl_pw_multi_aff_alloc_size(space, n);
4221 for (i = 0; i < pma1->n; ++i) {
4222 for (j = 0; j < pma2->n; ++j) {
4223 isl_set *domain;
4224 isl_multi_aff *ma;
4226 domain = isl_set_product(isl_set_copy(pma1->p[i].set),
4227 isl_set_copy(pma2->p[j].set));
4228 ma = isl_multi_aff_product(
4229 isl_multi_aff_copy(pma1->p[i].maff),
4230 isl_multi_aff_copy(pma2->p[j].maff));
4231 res = isl_pw_multi_aff_add_piece(res, domain, ma);
4235 isl_pw_multi_aff_free(pma1);
4236 isl_pw_multi_aff_free(pma2);
4237 return res;
4238 error:
4239 isl_pw_multi_aff_free(pma1);
4240 isl_pw_multi_aff_free(pma2);
4241 return NULL;
4244 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_product(
4245 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4247 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4248 &pw_multi_aff_product);
4251 /* Construct a map mapping the domain of the piecewise multi-affine expression
4252 * to its range, with each dimension in the range equated to the
4253 * corresponding affine expression on its cell.
4255 __isl_give isl_map *isl_map_from_pw_multi_aff(__isl_take isl_pw_multi_aff *pma)
4257 int i;
4258 isl_map *map;
4260 if (!pma)
4261 return NULL;
4263 map = isl_map_empty(isl_pw_multi_aff_get_space(pma));
4265 for (i = 0; i < pma->n; ++i) {
4266 isl_multi_aff *maff;
4267 isl_basic_map *bmap;
4268 isl_map *map_i;
4270 maff = isl_multi_aff_copy(pma->p[i].maff);
4271 bmap = isl_basic_map_from_multi_aff(maff);
4272 map_i = isl_map_from_basic_map(bmap);
4273 map_i = isl_map_intersect_domain(map_i,
4274 isl_set_copy(pma->p[i].set));
4275 map = isl_map_union_disjoint(map, map_i);
4278 isl_pw_multi_aff_free(pma);
4279 return map;
4282 __isl_give isl_set *isl_set_from_pw_multi_aff(__isl_take isl_pw_multi_aff *pma)
4284 if (!pma)
4285 return NULL;
4287 if (!isl_space_is_set(pma->dim))
4288 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
4289 "isl_pw_multi_aff cannot be converted into an isl_set",
4290 goto error);
4292 return isl_map_from_pw_multi_aff(pma);
4293 error:
4294 isl_pw_multi_aff_free(pma);
4295 return NULL;
4298 /* Subtract the initial "n" elements in "ma" with coefficients in "c" and
4299 * denominator "denom".
4300 * "denom" is allowed to be negative, in which case the actual denominator
4301 * is -denom and the expressions are added instead.
4303 static __isl_give isl_aff *subtract_initial(__isl_take isl_aff *aff,
4304 __isl_keep isl_multi_aff *ma, int n, isl_int *c, isl_int denom)
4306 int i, first;
4307 int sign;
4308 isl_int d;
4310 first = isl_seq_first_non_zero(c, n);
4311 if (first == -1)
4312 return aff;
4314 sign = isl_int_sgn(denom);
4315 isl_int_init(d);
4316 isl_int_abs(d, denom);
4317 for (i = first; i < n; ++i) {
4318 isl_aff *aff_i;
4320 if (isl_int_is_zero(c[i]))
4321 continue;
4322 aff_i = isl_multi_aff_get_aff(ma, i);
4323 aff_i = isl_aff_scale(aff_i, c[i]);
4324 aff_i = isl_aff_scale_down(aff_i, d);
4325 if (sign >= 0)
4326 aff = isl_aff_sub(aff, aff_i);
4327 else
4328 aff = isl_aff_add(aff, aff_i);
4330 isl_int_clear(d);
4332 return aff;
4335 /* Extract an affine expression that expresses the output dimension "pos"
4336 * of "bmap" in terms of the parameters and input dimensions from
4337 * equality "eq".
4338 * Note that this expression may involve integer divisions defined
4339 * in terms of parameters and input dimensions.
4340 * The equality may also involve references to earlier (but not later)
4341 * output dimensions. These are replaced by the corresponding elements
4342 * in "ma".
4344 * If the equality is of the form
4346 * f(i) + h(j) + a x + g(i) = 0,
4348 * with f(i) a linear combinations of the parameters and input dimensions,
4349 * g(i) a linear combination of integer divisions defined in terms of the same
4350 * and h(j) a linear combinations of earlier output dimensions,
4351 * then the affine expression is
4353 * (-f(i) - g(i))/a - h(j)/a
4355 * If the equality is of the form
4357 * f(i) + h(j) - a x + g(i) = 0,
4359 * then the affine expression is
4361 * (f(i) + g(i))/a - h(j)/(-a)
4364 * If "div" refers to an integer division (i.e., it is smaller than
4365 * the number of integer divisions), then the equality constraint
4366 * does involve an integer division (the one at position "div") that
4367 * is defined in terms of output dimensions. However, this integer
4368 * division can be eliminated by exploiting a pair of constraints
4369 * x >= l and x <= l + n, with n smaller than the coefficient of "div"
4370 * in the equality constraint. "ineq" refers to inequality x >= l, i.e.,
4371 * -l + x >= 0.
4372 * In particular, let
4374 * x = e(i) + m floor(...)
4376 * with e(i) the expression derived above and floor(...) the integer
4377 * division involving output dimensions.
4378 * From
4380 * l <= x <= l + n,
4382 * we have
4384 * 0 <= x - l <= n
4386 * This means
4388 * e(i) + m floor(...) - l = (e(i) + m floor(...) - l) mod m
4389 * = (e(i) - l) mod m
4391 * Therefore,
4393 * x - l = (e(i) - l) mod m
4395 * or
4397 * x = ((e(i) - l) mod m) + l
4399 * The variable "shift" below contains the expression -l, which may
4400 * also involve a linear combination of earlier output dimensions.
4402 static __isl_give isl_aff *extract_aff_from_equality(
4403 __isl_keep isl_basic_map *bmap, int pos, int eq, int div, int ineq,
4404 __isl_keep isl_multi_aff *ma)
4406 unsigned o_out;
4407 unsigned n_div, n_out;
4408 isl_ctx *ctx;
4409 isl_local_space *ls;
4410 isl_aff *aff, *shift;
4411 isl_val *mod;
4413 ctx = isl_basic_map_get_ctx(bmap);
4414 ls = isl_basic_map_get_local_space(bmap);
4415 ls = isl_local_space_domain(ls);
4416 aff = isl_aff_alloc(isl_local_space_copy(ls));
4417 if (!aff)
4418 goto error;
4419 o_out = isl_basic_map_offset(bmap, isl_dim_out);
4420 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4421 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4422 if (isl_int_is_neg(bmap->eq[eq][o_out + pos])) {
4423 isl_seq_cpy(aff->v->el + 1, bmap->eq[eq], o_out);
4424 isl_seq_cpy(aff->v->el + 1 + o_out,
4425 bmap->eq[eq] + o_out + n_out, n_div);
4426 } else {
4427 isl_seq_neg(aff->v->el + 1, bmap->eq[eq], o_out);
4428 isl_seq_neg(aff->v->el + 1 + o_out,
4429 bmap->eq[eq] + o_out + n_out, n_div);
4431 if (div < n_div)
4432 isl_int_set_si(aff->v->el[1 + o_out + div], 0);
4433 isl_int_abs(aff->v->el[0], bmap->eq[eq][o_out + pos]);
4434 aff = subtract_initial(aff, ma, pos, bmap->eq[eq] + o_out,
4435 bmap->eq[eq][o_out + pos]);
4436 if (div < n_div) {
4437 shift = isl_aff_alloc(isl_local_space_copy(ls));
4438 if (!shift)
4439 goto error;
4440 isl_seq_cpy(shift->v->el + 1, bmap->ineq[ineq], o_out);
4441 isl_seq_cpy(shift->v->el + 1 + o_out,
4442 bmap->ineq[ineq] + o_out + n_out, n_div);
4443 isl_int_set_si(shift->v->el[0], 1);
4444 shift = subtract_initial(shift, ma, pos,
4445 bmap->ineq[ineq] + o_out, ctx->negone);
4446 aff = isl_aff_add(aff, isl_aff_copy(shift));
4447 mod = isl_val_int_from_isl_int(ctx,
4448 bmap->eq[eq][o_out + n_out + div]);
4449 mod = isl_val_abs(mod);
4450 aff = isl_aff_mod_val(aff, mod);
4451 aff = isl_aff_sub(aff, shift);
4454 isl_local_space_free(ls);
4455 return aff;
4456 error:
4457 isl_local_space_free(ls);
4458 isl_aff_free(aff);
4459 return NULL;
4462 /* Given a basic map with output dimensions defined
4463 * in terms of the parameters input dimensions and earlier
4464 * output dimensions using an equality (and possibly a pair on inequalities),
4465 * extract an isl_aff that expresses output dimension "pos" in terms
4466 * of the parameters and input dimensions.
4467 * Note that this expression may involve integer divisions defined
4468 * in terms of parameters and input dimensions.
4469 * "ma" contains the expressions corresponding to earlier output dimensions.
4471 * This function shares some similarities with
4472 * isl_basic_map_has_defining_equality and isl_constraint_get_bound.
4474 static __isl_give isl_aff *extract_isl_aff_from_basic_map(
4475 __isl_keep isl_basic_map *bmap, int pos, __isl_keep isl_multi_aff *ma)
4477 int eq, div, ineq;
4478 isl_aff *aff;
4480 if (!bmap)
4481 return NULL;
4482 eq = isl_basic_map_output_defining_equality(bmap, pos, &div, &ineq);
4483 if (eq >= bmap->n_eq)
4484 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4485 "unable to find suitable equality", return NULL);
4486 aff = extract_aff_from_equality(bmap, pos, eq, div, ineq, ma);
4488 aff = isl_aff_remove_unused_divs(aff);
4489 return aff;
4492 /* Given a basic map where each output dimension is defined
4493 * in terms of the parameters and input dimensions using an equality,
4494 * extract an isl_multi_aff that expresses the output dimensions in terms
4495 * of the parameters and input dimensions.
4497 static __isl_give isl_multi_aff *extract_isl_multi_aff_from_basic_map(
4498 __isl_take isl_basic_map *bmap)
4500 int i;
4501 unsigned n_out;
4502 isl_multi_aff *ma;
4504 if (!bmap)
4505 return NULL;
4507 ma = isl_multi_aff_alloc(isl_basic_map_get_space(bmap));
4508 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4510 for (i = 0; i < n_out; ++i) {
4511 isl_aff *aff;
4513 aff = extract_isl_aff_from_basic_map(bmap, i, ma);
4514 ma = isl_multi_aff_set_aff(ma, i, aff);
4517 isl_basic_map_free(bmap);
4519 return ma;
4522 /* Given a basic set where each set dimension is defined
4523 * in terms of the parameters using an equality,
4524 * extract an isl_multi_aff that expresses the set dimensions in terms
4525 * of the parameters.
4527 __isl_give isl_multi_aff *isl_multi_aff_from_basic_set_equalities(
4528 __isl_take isl_basic_set *bset)
4530 return extract_isl_multi_aff_from_basic_map(bset);
4533 /* Create an isl_pw_multi_aff that is equivalent to
4534 * isl_map_intersect_domain(isl_map_from_basic_map(bmap), domain).
4535 * The given basic map is such that each output dimension is defined
4536 * in terms of the parameters and input dimensions using an equality.
4538 * Since some applications expect the result of isl_pw_multi_aff_from_map
4539 * to only contain integer affine expressions, we compute the floor
4540 * of the expression before returning.
4542 * Remove all constraints involving local variables without
4543 * an explicit representation (resulting in the removal of those
4544 * local variables) prior to the actual extraction to ensure
4545 * that the local spaces in which the resulting affine expressions
4546 * are created do not contain any unknown local variables.
4547 * Removing such constraints is safe because constraints involving
4548 * unknown local variables are not used to determine whether
4549 * a basic map is obviously single-valued.
4551 static __isl_give isl_pw_multi_aff *plain_pw_multi_aff_from_map(
4552 __isl_take isl_set *domain, __isl_take isl_basic_map *bmap)
4554 isl_multi_aff *ma;
4556 bmap = isl_basic_map_drop_constraint_involving_unknown_divs(bmap);
4557 ma = extract_isl_multi_aff_from_basic_map(bmap);
4558 ma = isl_multi_aff_floor(ma);
4559 return isl_pw_multi_aff_alloc(domain, ma);
4562 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
4563 * This obviously only works if the input "map" is single-valued.
4564 * If so, we compute the lexicographic minimum of the image in the form
4565 * of an isl_pw_multi_aff. Since the image is unique, it is equal
4566 * to its lexicographic minimum.
4567 * If the input is not single-valued, we produce an error.
4569 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_base(
4570 __isl_take isl_map *map)
4572 int i;
4573 int sv;
4574 isl_pw_multi_aff *pma;
4576 sv = isl_map_is_single_valued(map);
4577 if (sv < 0)
4578 goto error;
4579 if (!sv)
4580 isl_die(isl_map_get_ctx(map), isl_error_invalid,
4581 "map is not single-valued", goto error);
4582 map = isl_map_make_disjoint(map);
4583 if (!map)
4584 return NULL;
4586 pma = isl_pw_multi_aff_empty(isl_map_get_space(map));
4588 for (i = 0; i < map->n; ++i) {
4589 isl_pw_multi_aff *pma_i;
4590 isl_basic_map *bmap;
4591 bmap = isl_basic_map_copy(map->p[i]);
4592 pma_i = isl_basic_map_lexmin_pw_multi_aff(bmap);
4593 pma = isl_pw_multi_aff_add_disjoint(pma, pma_i);
4596 isl_map_free(map);
4597 return pma;
4598 error:
4599 isl_map_free(map);
4600 return NULL;
4603 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
4604 * taking into account that the output dimension at position "d"
4605 * can be represented as
4607 * x = floor((e(...) + c1) / m)
4609 * given that constraint "i" is of the form
4611 * e(...) + c1 - m x >= 0
4614 * Let "map" be of the form
4616 * A -> B
4618 * We construct a mapping
4620 * A -> [A -> x = floor(...)]
4622 * apply that to the map, obtaining
4624 * [A -> x = floor(...)] -> B
4626 * and equate dimension "d" to x.
4627 * We then compute a isl_pw_multi_aff representation of the resulting map
4628 * and plug in the mapping above.
4630 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_div(
4631 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i)
4633 isl_ctx *ctx;
4634 isl_space *space;
4635 isl_local_space *ls;
4636 isl_multi_aff *ma;
4637 isl_aff *aff;
4638 isl_vec *v;
4639 isl_map *insert;
4640 int offset;
4641 int n;
4642 int n_in;
4643 isl_pw_multi_aff *pma;
4644 int is_set;
4646 is_set = isl_map_is_set(map);
4648 offset = isl_basic_map_offset(hull, isl_dim_out);
4649 ctx = isl_map_get_ctx(map);
4650 space = isl_space_domain(isl_map_get_space(map));
4651 n_in = isl_space_dim(space, isl_dim_set);
4652 n = isl_space_dim(space, isl_dim_all);
4654 v = isl_vec_alloc(ctx, 1 + 1 + n);
4655 if (v) {
4656 isl_int_neg(v->el[0], hull->ineq[i][offset + d]);
4657 isl_seq_cpy(v->el + 1, hull->ineq[i], 1 + n);
4659 isl_basic_map_free(hull);
4661 ls = isl_local_space_from_space(isl_space_copy(space));
4662 aff = isl_aff_alloc_vec(ls, v);
4663 aff = isl_aff_floor(aff);
4664 if (is_set) {
4665 isl_space_free(space);
4666 ma = isl_multi_aff_from_aff(aff);
4667 } else {
4668 ma = isl_multi_aff_identity(isl_space_map_from_set(space));
4669 ma = isl_multi_aff_range_product(ma,
4670 isl_multi_aff_from_aff(aff));
4673 insert = isl_map_from_multi_aff(isl_multi_aff_copy(ma));
4674 map = isl_map_apply_domain(map, insert);
4675 map = isl_map_equate(map, isl_dim_in, n_in, isl_dim_out, d);
4676 pma = isl_pw_multi_aff_from_map(map);
4677 pma = isl_pw_multi_aff_pullback_multi_aff(pma, ma);
4679 return pma;
4682 /* Is constraint "c" of the form
4684 * e(...) + c1 - m x >= 0
4686 * or
4688 * -e(...) + c2 + m x >= 0
4690 * where m > 1 and e only depends on parameters and input dimemnsions?
4692 * "offset" is the offset of the output dimensions
4693 * "pos" is the position of output dimension x.
4695 static int is_potential_div_constraint(isl_int *c, int offset, int d, int total)
4697 if (isl_int_is_zero(c[offset + d]))
4698 return 0;
4699 if (isl_int_is_one(c[offset + d]))
4700 return 0;
4701 if (isl_int_is_negone(c[offset + d]))
4702 return 0;
4703 if (isl_seq_first_non_zero(c + offset, d) != -1)
4704 return 0;
4705 if (isl_seq_first_non_zero(c + offset + d + 1,
4706 total - (offset + d + 1)) != -1)
4707 return 0;
4708 return 1;
4711 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
4713 * As a special case, we first check if there is any pair of constraints,
4714 * shared by all the basic maps in "map" that force a given dimension
4715 * to be equal to the floor of some affine combination of the input dimensions.
4717 * In particular, if we can find two constraints
4719 * e(...) + c1 - m x >= 0 i.e., m x <= e(...) + c1
4721 * and
4723 * -e(...) + c2 + m x >= 0 i.e., m x >= e(...) - c2
4725 * where m > 1 and e only depends on parameters and input dimemnsions,
4726 * and such that
4728 * c1 + c2 < m i.e., -c2 >= c1 - (m - 1)
4730 * then we know that we can take
4732 * x = floor((e(...) + c1) / m)
4734 * without having to perform any computation.
4736 * Note that we know that
4738 * c1 + c2 >= 1
4740 * If c1 + c2 were 0, then we would have detected an equality during
4741 * simplification. If c1 + c2 were negative, then we would have detected
4742 * a contradiction.
4744 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_div(
4745 __isl_take isl_map *map)
4747 int d, dim;
4748 int i, j, n;
4749 int offset, total;
4750 isl_int sum;
4751 isl_basic_map *hull;
4753 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
4754 if (!hull)
4755 goto error;
4757 isl_int_init(sum);
4758 dim = isl_map_dim(map, isl_dim_out);
4759 offset = isl_basic_map_offset(hull, isl_dim_out);
4760 total = 1 + isl_basic_map_total_dim(hull);
4761 n = hull->n_ineq;
4762 for (d = 0; d < dim; ++d) {
4763 for (i = 0; i < n; ++i) {
4764 if (!is_potential_div_constraint(hull->ineq[i],
4765 offset, d, total))
4766 continue;
4767 for (j = i + 1; j < n; ++j) {
4768 if (!isl_seq_is_neg(hull->ineq[i] + 1,
4769 hull->ineq[j] + 1, total - 1))
4770 continue;
4771 isl_int_add(sum, hull->ineq[i][0],
4772 hull->ineq[j][0]);
4773 if (isl_int_abs_lt(sum,
4774 hull->ineq[i][offset + d]))
4775 break;
4778 if (j >= n)
4779 continue;
4780 isl_int_clear(sum);
4781 if (isl_int_is_pos(hull->ineq[j][offset + d]))
4782 j = i;
4783 return pw_multi_aff_from_map_div(map, hull, d, j);
4786 isl_int_clear(sum);
4787 isl_basic_map_free(hull);
4788 return pw_multi_aff_from_map_base(map);
4789 error:
4790 isl_map_free(map);
4791 isl_basic_map_free(hull);
4792 return NULL;
4795 /* Given an affine expression
4797 * [A -> B] -> f(A,B)
4799 * construct an isl_multi_aff
4801 * [A -> B] -> B'
4803 * such that dimension "d" in B' is set to "aff" and the remaining
4804 * dimensions are set equal to the corresponding dimensions in B.
4805 * "n_in" is the dimension of the space A.
4806 * "n_out" is the dimension of the space B.
4808 * If "is_set" is set, then the affine expression is of the form
4810 * [B] -> f(B)
4812 * and we construct an isl_multi_aff
4814 * B -> B'
4816 static __isl_give isl_multi_aff *range_map(__isl_take isl_aff *aff, int d,
4817 unsigned n_in, unsigned n_out, int is_set)
4819 int i;
4820 isl_multi_aff *ma;
4821 isl_space *space, *space2;
4822 isl_local_space *ls;
4824 space = isl_aff_get_domain_space(aff);
4825 ls = isl_local_space_from_space(isl_space_copy(space));
4826 space2 = isl_space_copy(space);
4827 if (!is_set)
4828 space2 = isl_space_range(isl_space_unwrap(space2));
4829 space = isl_space_map_from_domain_and_range(space, space2);
4830 ma = isl_multi_aff_alloc(space);
4831 ma = isl_multi_aff_set_aff(ma, d, aff);
4833 for (i = 0; i < n_out; ++i) {
4834 if (i == d)
4835 continue;
4836 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4837 isl_dim_set, n_in + i);
4838 ma = isl_multi_aff_set_aff(ma, i, aff);
4841 isl_local_space_free(ls);
4843 return ma;
4846 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
4847 * taking into account that the dimension at position "d" can be written as
4849 * x = m a + f(..) (1)
4851 * where m is equal to "gcd".
4852 * "i" is the index of the equality in "hull" that defines f(..).
4853 * In particular, the equality is of the form
4855 * f(..) - x + m g(existentials) = 0
4857 * or
4859 * -f(..) + x + m g(existentials) = 0
4861 * We basically plug (1) into "map", resulting in a map with "a"
4862 * in the range instead of "x". The corresponding isl_pw_multi_aff
4863 * defining "a" is then plugged back into (1) to obtain a definition for "x".
4865 * Specifically, given the input map
4867 * A -> B
4869 * We first wrap it into a set
4871 * [A -> B]
4873 * and define (1) on top of the corresponding space, resulting in "aff".
4874 * We use this to create an isl_multi_aff that maps the output position "d"
4875 * from "a" to "x", leaving all other (intput and output) dimensions unchanged.
4876 * We plug this into the wrapped map, unwrap the result and compute the
4877 * corresponding isl_pw_multi_aff.
4878 * The result is an expression
4880 * A -> T(A)
4882 * We adjust that to
4884 * A -> [A -> T(A)]
4886 * so that we can plug that into "aff", after extending the latter to
4887 * a mapping
4889 * [A -> B] -> B'
4892 * If "map" is actually a set, then there is no "A" space, meaning
4893 * that we do not need to perform any wrapping, and that the result
4894 * of the recursive call is of the form
4896 * [T]
4898 * which is plugged into a mapping of the form
4900 * B -> B'
4902 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_stride(
4903 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i,
4904 isl_int gcd)
4906 isl_set *set;
4907 isl_space *space;
4908 isl_local_space *ls;
4909 isl_aff *aff;
4910 isl_multi_aff *ma;
4911 isl_pw_multi_aff *pma, *id;
4912 unsigned n_in;
4913 unsigned o_out;
4914 unsigned n_out;
4915 int is_set;
4917 is_set = isl_map_is_set(map);
4919 n_in = isl_basic_map_dim(hull, isl_dim_in);
4920 n_out = isl_basic_map_dim(hull, isl_dim_out);
4921 o_out = isl_basic_map_offset(hull, isl_dim_out);
4923 if (is_set)
4924 set = map;
4925 else
4926 set = isl_map_wrap(map);
4927 space = isl_space_map_from_set(isl_set_get_space(set));
4928 ma = isl_multi_aff_identity(space);
4929 ls = isl_local_space_from_space(isl_set_get_space(set));
4930 aff = isl_aff_alloc(ls);
4931 if (aff) {
4932 isl_int_set_si(aff->v->el[0], 1);
4933 if (isl_int_is_one(hull->eq[i][o_out + d]))
4934 isl_seq_neg(aff->v->el + 1, hull->eq[i],
4935 aff->v->size - 1);
4936 else
4937 isl_seq_cpy(aff->v->el + 1, hull->eq[i],
4938 aff->v->size - 1);
4939 isl_int_set(aff->v->el[1 + o_out + d], gcd);
4941 ma = isl_multi_aff_set_aff(ma, n_in + d, isl_aff_copy(aff));
4942 set = isl_set_preimage_multi_aff(set, ma);
4944 ma = range_map(aff, d, n_in, n_out, is_set);
4946 if (is_set)
4947 map = set;
4948 else
4949 map = isl_set_unwrap(set);
4950 pma = isl_pw_multi_aff_from_map(map);
4952 if (!is_set) {
4953 space = isl_pw_multi_aff_get_domain_space(pma);
4954 space = isl_space_map_from_set(space);
4955 id = isl_pw_multi_aff_identity(space);
4956 pma = isl_pw_multi_aff_range_product(id, pma);
4958 id = isl_pw_multi_aff_from_multi_aff(ma);
4959 pma = isl_pw_multi_aff_pullback_pw_multi_aff(id, pma);
4961 isl_basic_map_free(hull);
4962 return pma;
4965 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
4966 * "hull" contains the equalities valid for "map".
4968 * Check if any of the output dimensions is "strided".
4969 * That is, we check if it can be written as
4971 * x = m a + f(..)
4973 * with m greater than 1, a some combination of existentially quantified
4974 * variables and f an expression in the parameters and input dimensions.
4975 * If so, we remove the stride in pw_multi_aff_from_map_stride.
4977 * Otherwise, we continue with pw_multi_aff_from_map_check_div for a further
4978 * special case.
4980 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_strides(
4981 __isl_take isl_map *map, __isl_take isl_basic_map *hull)
4983 int i, j;
4984 unsigned n_out;
4985 unsigned o_out;
4986 unsigned n_div;
4987 unsigned o_div;
4988 isl_int gcd;
4990 n_div = isl_basic_map_dim(hull, isl_dim_div);
4991 o_div = isl_basic_map_offset(hull, isl_dim_div);
4993 if (n_div == 0) {
4994 isl_basic_map_free(hull);
4995 return pw_multi_aff_from_map_check_div(map);
4998 isl_int_init(gcd);
5000 n_out = isl_basic_map_dim(hull, isl_dim_out);
5001 o_out = isl_basic_map_offset(hull, isl_dim_out);
5003 for (i = 0; i < n_out; ++i) {
5004 for (j = 0; j < hull->n_eq; ++j) {
5005 isl_int *eq = hull->eq[j];
5006 isl_pw_multi_aff *res;
5008 if (!isl_int_is_one(eq[o_out + i]) &&
5009 !isl_int_is_negone(eq[o_out + i]))
5010 continue;
5011 if (isl_seq_first_non_zero(eq + o_out, i) != -1)
5012 continue;
5013 if (isl_seq_first_non_zero(eq + o_out + i + 1,
5014 n_out - (i + 1)) != -1)
5015 continue;
5016 isl_seq_gcd(eq + o_div, n_div, &gcd);
5017 if (isl_int_is_zero(gcd))
5018 continue;
5019 if (isl_int_is_one(gcd))
5020 continue;
5022 res = pw_multi_aff_from_map_stride(map, hull,
5023 i, j, gcd);
5024 isl_int_clear(gcd);
5025 return res;
5029 isl_int_clear(gcd);
5030 isl_basic_map_free(hull);
5031 return pw_multi_aff_from_map_check_div(map);
5034 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5036 * As a special case, we first check if all output dimensions are uniquely
5037 * defined in terms of the parameters and input dimensions over the entire
5038 * domain. If so, we extract the desired isl_pw_multi_aff directly
5039 * from the affine hull of "map" and its domain.
5041 * Otherwise, continue with pw_multi_aff_from_map_check_strides for more
5042 * special cases.
5044 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_map(__isl_take isl_map *map)
5046 isl_bool sv;
5047 isl_basic_map *hull;
5049 if (!map)
5050 return NULL;
5052 if (isl_map_n_basic_map(map) == 1) {
5053 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5054 hull = isl_basic_map_plain_affine_hull(hull);
5055 sv = isl_basic_map_plain_is_single_valued(hull);
5056 if (sv >= 0 && sv)
5057 return plain_pw_multi_aff_from_map(isl_map_domain(map),
5058 hull);
5059 isl_basic_map_free(hull);
5061 map = isl_map_detect_equalities(map);
5062 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5063 sv = isl_basic_map_plain_is_single_valued(hull);
5064 if (sv >= 0 && sv)
5065 return plain_pw_multi_aff_from_map(isl_map_domain(map), hull);
5066 if (sv >= 0)
5067 return pw_multi_aff_from_map_check_strides(map, hull);
5068 isl_basic_map_free(hull);
5069 isl_map_free(map);
5070 return NULL;
5073 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_set(__isl_take isl_set *set)
5075 return isl_pw_multi_aff_from_map(set);
5078 /* Convert "map" into an isl_pw_multi_aff (if possible) and
5079 * add it to *user.
5081 static isl_stat pw_multi_aff_from_map(__isl_take isl_map *map, void *user)
5083 isl_union_pw_multi_aff **upma = user;
5084 isl_pw_multi_aff *pma;
5086 pma = isl_pw_multi_aff_from_map(map);
5087 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
5089 return *upma ? isl_stat_ok : isl_stat_error;
5092 /* Create an isl_union_pw_multi_aff with the given isl_aff on a universe
5093 * domain.
5095 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_aff(
5096 __isl_take isl_aff *aff)
5098 isl_multi_aff *ma;
5099 isl_pw_multi_aff *pma;
5101 ma = isl_multi_aff_from_aff(aff);
5102 pma = isl_pw_multi_aff_from_multi_aff(ma);
5103 return isl_union_pw_multi_aff_from_pw_multi_aff(pma);
5106 /* Try and create an isl_union_pw_multi_aff that is equivalent
5107 * to the given isl_union_map.
5108 * The isl_union_map is required to be single-valued in each space.
5109 * Otherwise, an error is produced.
5111 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_map(
5112 __isl_take isl_union_map *umap)
5114 isl_space *space;
5115 isl_union_pw_multi_aff *upma;
5117 space = isl_union_map_get_space(umap);
5118 upma = isl_union_pw_multi_aff_empty(space);
5119 if (isl_union_map_foreach_map(umap, &pw_multi_aff_from_map, &upma) < 0)
5120 upma = isl_union_pw_multi_aff_free(upma);
5121 isl_union_map_free(umap);
5123 return upma;
5126 /* Try and create an isl_union_pw_multi_aff that is equivalent
5127 * to the given isl_union_set.
5128 * The isl_union_set is required to be a singleton in each space.
5129 * Otherwise, an error is produced.
5131 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_set(
5132 __isl_take isl_union_set *uset)
5134 return isl_union_pw_multi_aff_from_union_map(uset);
5137 /* Return the piecewise affine expression "set ? 1 : 0".
5139 __isl_give isl_pw_aff *isl_set_indicator_function(__isl_take isl_set *set)
5141 isl_pw_aff *pa;
5142 isl_space *space = isl_set_get_space(set);
5143 isl_local_space *ls = isl_local_space_from_space(space);
5144 isl_aff *zero = isl_aff_zero_on_domain(isl_local_space_copy(ls));
5145 isl_aff *one = isl_aff_zero_on_domain(ls);
5147 one = isl_aff_add_constant_si(one, 1);
5148 pa = isl_pw_aff_alloc(isl_set_copy(set), one);
5149 set = isl_set_complement(set);
5150 pa = isl_pw_aff_add_disjoint(pa, isl_pw_aff_alloc(set, zero));
5152 return pa;
5155 /* Plug in "subs" for dimension "type", "pos" of "aff".
5157 * Let i be the dimension to replace and let "subs" be of the form
5159 * f/d
5161 * and "aff" of the form
5163 * (a i + g)/m
5165 * The result is
5167 * (a f + d g')/(m d)
5169 * where g' is the result of plugging in "subs" in each of the integer
5170 * divisions in g.
5172 __isl_give isl_aff *isl_aff_substitute(__isl_take isl_aff *aff,
5173 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
5175 isl_ctx *ctx;
5176 isl_int v;
5178 aff = isl_aff_cow(aff);
5179 if (!aff || !subs)
5180 return isl_aff_free(aff);
5182 ctx = isl_aff_get_ctx(aff);
5183 if (!isl_space_is_equal(aff->ls->dim, subs->ls->dim))
5184 isl_die(ctx, isl_error_invalid,
5185 "spaces don't match", return isl_aff_free(aff));
5186 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
5187 isl_die(ctx, isl_error_unsupported,
5188 "cannot handle divs yet", return isl_aff_free(aff));
5190 aff->ls = isl_local_space_substitute(aff->ls, type, pos, subs);
5191 if (!aff->ls)
5192 return isl_aff_free(aff);
5194 aff->v = isl_vec_cow(aff->v);
5195 if (!aff->v)
5196 return isl_aff_free(aff);
5198 pos += isl_local_space_offset(aff->ls, type);
5200 isl_int_init(v);
5201 isl_seq_substitute(aff->v->el, pos, subs->v->el,
5202 aff->v->size, subs->v->size, v);
5203 isl_int_clear(v);
5205 return aff;
5208 /* Plug in "subs" for dimension "type", "pos" in each of the affine
5209 * expressions in "maff".
5211 __isl_give isl_multi_aff *isl_multi_aff_substitute(
5212 __isl_take isl_multi_aff *maff, enum isl_dim_type type, unsigned pos,
5213 __isl_keep isl_aff *subs)
5215 int i;
5217 maff = isl_multi_aff_cow(maff);
5218 if (!maff || !subs)
5219 return isl_multi_aff_free(maff);
5221 if (type == isl_dim_in)
5222 type = isl_dim_set;
5224 for (i = 0; i < maff->n; ++i) {
5225 maff->p[i] = isl_aff_substitute(maff->p[i], type, pos, subs);
5226 if (!maff->p[i])
5227 return isl_multi_aff_free(maff);
5230 return maff;
5233 /* Plug in "subs" for dimension "type", "pos" of "pma".
5235 * pma is of the form
5237 * A_i(v) -> M_i(v)
5239 * while subs is of the form
5241 * v' = B_j(v) -> S_j
5243 * Each pair i,j such that C_ij = A_i \cap B_i is non-empty
5244 * has a contribution in the result, in particular
5246 * C_ij(S_j) -> M_i(S_j)
5248 * Note that plugging in S_j in C_ij may also result in an empty set
5249 * and this contribution should simply be discarded.
5251 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_substitute(
5252 __isl_take isl_pw_multi_aff *pma, enum isl_dim_type type, unsigned pos,
5253 __isl_keep isl_pw_aff *subs)
5255 int i, j, n;
5256 isl_pw_multi_aff *res;
5258 if (!pma || !subs)
5259 return isl_pw_multi_aff_free(pma);
5261 n = pma->n * subs->n;
5262 res = isl_pw_multi_aff_alloc_size(isl_space_copy(pma->dim), n);
5264 for (i = 0; i < pma->n; ++i) {
5265 for (j = 0; j < subs->n; ++j) {
5266 isl_set *common;
5267 isl_multi_aff *res_ij;
5268 int empty;
5270 common = isl_set_intersect(
5271 isl_set_copy(pma->p[i].set),
5272 isl_set_copy(subs->p[j].set));
5273 common = isl_set_substitute(common,
5274 type, pos, subs->p[j].aff);
5275 empty = isl_set_plain_is_empty(common);
5276 if (empty < 0 || empty) {
5277 isl_set_free(common);
5278 if (empty < 0)
5279 goto error;
5280 continue;
5283 res_ij = isl_multi_aff_substitute(
5284 isl_multi_aff_copy(pma->p[i].maff),
5285 type, pos, subs->p[j].aff);
5287 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
5291 isl_pw_multi_aff_free(pma);
5292 return res;
5293 error:
5294 isl_pw_multi_aff_free(pma);
5295 isl_pw_multi_aff_free(res);
5296 return NULL;
5299 /* Compute the preimage of a range of dimensions in the affine expression "src"
5300 * under "ma" and put the result in "dst". The number of dimensions in "src"
5301 * that precede the range is given by "n_before". The number of dimensions
5302 * in the range is given by the number of output dimensions of "ma".
5303 * The number of dimensions that follow the range is given by "n_after".
5304 * If "has_denom" is set (to one),
5305 * then "src" and "dst" have an extra initial denominator.
5306 * "n_div_ma" is the number of existentials in "ma"
5307 * "n_div_bset" is the number of existentials in "src"
5308 * The resulting "dst" (which is assumed to have been allocated by
5309 * the caller) contains coefficients for both sets of existentials,
5310 * first those in "ma" and then those in "src".
5311 * f, c1, c2 and g are temporary objects that have been initialized
5312 * by the caller.
5314 * Let src represent the expression
5316 * (a(p) + f_u u + b v + f_w w + c(divs))/d
5318 * and let ma represent the expressions
5320 * v_i = (r_i(p) + s_i(y) + t_i(divs'))/m_i
5322 * We start out with the following expression for dst:
5324 * (a(p) + f_u u + 0 y + f_w w + 0 divs' + c(divs) + f \sum_i b_i v_i)/d
5326 * with the multiplication factor f initially equal to 1
5327 * and f \sum_i b_i v_i kept separately.
5328 * For each x_i that we substitute, we multiply the numerator
5329 * (and denominator) of dst by c_1 = m_i and add the numerator
5330 * of the x_i expression multiplied by c_2 = f b_i,
5331 * after removing the common factors of c_1 and c_2.
5332 * The multiplication factor f also needs to be multiplied by c_1
5333 * for the next x_j, j > i.
5335 void isl_seq_preimage(isl_int *dst, isl_int *src,
5336 __isl_keep isl_multi_aff *ma, int n_before, int n_after,
5337 int n_div_ma, int n_div_bmap,
5338 isl_int f, isl_int c1, isl_int c2, isl_int g, int has_denom)
5340 int i;
5341 int n_param, n_in, n_out;
5342 int o_dst, o_src;
5344 n_param = isl_multi_aff_dim(ma, isl_dim_param);
5345 n_in = isl_multi_aff_dim(ma, isl_dim_in);
5346 n_out = isl_multi_aff_dim(ma, isl_dim_out);
5348 isl_seq_cpy(dst, src, has_denom + 1 + n_param + n_before);
5349 o_dst = o_src = has_denom + 1 + n_param + n_before;
5350 isl_seq_clr(dst + o_dst, n_in);
5351 o_dst += n_in;
5352 o_src += n_out;
5353 isl_seq_cpy(dst + o_dst, src + o_src, n_after);
5354 o_dst += n_after;
5355 o_src += n_after;
5356 isl_seq_clr(dst + o_dst, n_div_ma);
5357 o_dst += n_div_ma;
5358 isl_seq_cpy(dst + o_dst, src + o_src, n_div_bmap);
5360 isl_int_set_si(f, 1);
5362 for (i = 0; i < n_out; ++i) {
5363 int offset = has_denom + 1 + n_param + n_before + i;
5365 if (isl_int_is_zero(src[offset]))
5366 continue;
5367 isl_int_set(c1, ma->p[i]->v->el[0]);
5368 isl_int_mul(c2, f, src[offset]);
5369 isl_int_gcd(g, c1, c2);
5370 isl_int_divexact(c1, c1, g);
5371 isl_int_divexact(c2, c2, g);
5373 isl_int_mul(f, f, c1);
5374 o_dst = has_denom;
5375 o_src = 1;
5376 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5377 c2, ma->p[i]->v->el + o_src, 1 + n_param);
5378 o_dst += 1 + n_param;
5379 o_src += 1 + n_param;
5380 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_before);
5381 o_dst += n_before;
5382 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5383 c2, ma->p[i]->v->el + o_src, n_in);
5384 o_dst += n_in;
5385 o_src += n_in;
5386 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_after);
5387 o_dst += n_after;
5388 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5389 c2, ma->p[i]->v->el + o_src, n_div_ma);
5390 o_dst += n_div_ma;
5391 o_src += n_div_ma;
5392 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_div_bmap);
5393 if (has_denom)
5394 isl_int_mul(dst[0], dst[0], c1);
5398 /* Compute the pullback of "aff" by the function represented by "ma".
5399 * In other words, plug in "ma" in "aff". The result is an affine expression
5400 * defined over the domain space of "ma".
5402 * If "aff" is represented by
5404 * (a(p) + b x + c(divs))/d
5406 * and ma is represented by
5408 * x = D(p) + F(y) + G(divs')
5410 * then the result is
5412 * (a(p) + b D(p) + b F(y) + b G(divs') + c(divs))/d
5414 * The divs in the local space of the input are similarly adjusted
5415 * through a call to isl_local_space_preimage_multi_aff.
5417 __isl_give isl_aff *isl_aff_pullback_multi_aff(__isl_take isl_aff *aff,
5418 __isl_take isl_multi_aff *ma)
5420 isl_aff *res = NULL;
5421 isl_local_space *ls;
5422 int n_div_aff, n_div_ma;
5423 isl_int f, c1, c2, g;
5425 ma = isl_multi_aff_align_divs(ma);
5426 if (!aff || !ma)
5427 goto error;
5429 n_div_aff = isl_aff_dim(aff, isl_dim_div);
5430 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
5432 ls = isl_aff_get_domain_local_space(aff);
5433 ls = isl_local_space_preimage_multi_aff(ls, isl_multi_aff_copy(ma));
5434 res = isl_aff_alloc(ls);
5435 if (!res)
5436 goto error;
5438 isl_int_init(f);
5439 isl_int_init(c1);
5440 isl_int_init(c2);
5441 isl_int_init(g);
5443 isl_seq_preimage(res->v->el, aff->v->el, ma, 0, 0, n_div_ma, n_div_aff,
5444 f, c1, c2, g, 1);
5446 isl_int_clear(f);
5447 isl_int_clear(c1);
5448 isl_int_clear(c2);
5449 isl_int_clear(g);
5451 isl_aff_free(aff);
5452 isl_multi_aff_free(ma);
5453 res = isl_aff_normalize(res);
5454 return res;
5455 error:
5456 isl_aff_free(aff);
5457 isl_multi_aff_free(ma);
5458 isl_aff_free(res);
5459 return NULL;
5462 /* Compute the pullback of "aff1" by the function represented by "aff2".
5463 * In other words, plug in "aff2" in "aff1". The result is an affine expression
5464 * defined over the domain space of "aff1".
5466 * The domain of "aff1" should match the range of "aff2", which means
5467 * that it should be single-dimensional.
5469 __isl_give isl_aff *isl_aff_pullback_aff(__isl_take isl_aff *aff1,
5470 __isl_take isl_aff *aff2)
5472 isl_multi_aff *ma;
5474 ma = isl_multi_aff_from_aff(aff2);
5475 return isl_aff_pullback_multi_aff(aff1, ma);
5478 /* Compute the pullback of "ma1" by the function represented by "ma2".
5479 * In other words, plug in "ma2" in "ma1".
5481 * The parameters of "ma1" and "ma2" are assumed to have been aligned.
5483 static __isl_give isl_multi_aff *isl_multi_aff_pullback_multi_aff_aligned(
5484 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
5486 int i;
5487 isl_space *space = NULL;
5489 ma2 = isl_multi_aff_align_divs(ma2);
5490 ma1 = isl_multi_aff_cow(ma1);
5491 if (!ma1 || !ma2)
5492 goto error;
5494 space = isl_space_join(isl_multi_aff_get_space(ma2),
5495 isl_multi_aff_get_space(ma1));
5497 for (i = 0; i < ma1->n; ++i) {
5498 ma1->p[i] = isl_aff_pullback_multi_aff(ma1->p[i],
5499 isl_multi_aff_copy(ma2));
5500 if (!ma1->p[i])
5501 goto error;
5504 ma1 = isl_multi_aff_reset_space(ma1, space);
5505 isl_multi_aff_free(ma2);
5506 return ma1;
5507 error:
5508 isl_space_free(space);
5509 isl_multi_aff_free(ma2);
5510 isl_multi_aff_free(ma1);
5511 return NULL;
5514 /* Compute the pullback of "ma1" by the function represented by "ma2".
5515 * In other words, plug in "ma2" in "ma1".
5517 __isl_give isl_multi_aff *isl_multi_aff_pullback_multi_aff(
5518 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
5520 return isl_multi_aff_align_params_multi_multi_and(ma1, ma2,
5521 &isl_multi_aff_pullback_multi_aff_aligned);
5524 /* Extend the local space of "dst" to include the divs
5525 * in the local space of "src".
5527 * If "src" does not have any divs or if the local spaces of "dst" and
5528 * "src" are the same, then no extension is required.
5530 __isl_give isl_aff *isl_aff_align_divs(__isl_take isl_aff *dst,
5531 __isl_keep isl_aff *src)
5533 isl_ctx *ctx;
5534 int src_n_div, dst_n_div;
5535 int *exp1 = NULL;
5536 int *exp2 = NULL;
5537 isl_bool equal;
5538 isl_mat *div;
5540 if (!src || !dst)
5541 return isl_aff_free(dst);
5543 ctx = isl_aff_get_ctx(src);
5544 equal = isl_local_space_has_equal_space(src->ls, dst->ls);
5545 if (equal < 0)
5546 return isl_aff_free(dst);
5547 if (!equal)
5548 isl_die(ctx, isl_error_invalid,
5549 "spaces don't match", goto error);
5551 src_n_div = isl_local_space_dim(src->ls, isl_dim_div);
5552 if (src_n_div == 0)
5553 return dst;
5554 equal = isl_local_space_is_equal(src->ls, dst->ls);
5555 if (equal < 0)
5556 return isl_aff_free(dst);
5557 if (equal)
5558 return dst;
5560 dst_n_div = isl_local_space_dim(dst->ls, isl_dim_div);
5561 exp1 = isl_alloc_array(ctx, int, src_n_div);
5562 exp2 = isl_alloc_array(ctx, int, dst_n_div);
5563 if (!exp1 || (dst_n_div && !exp2))
5564 goto error;
5566 div = isl_merge_divs(src->ls->div, dst->ls->div, exp1, exp2);
5567 dst = isl_aff_expand_divs(dst, div, exp2);
5568 free(exp1);
5569 free(exp2);
5571 return dst;
5572 error:
5573 free(exp1);
5574 free(exp2);
5575 return isl_aff_free(dst);
5578 /* Adjust the local spaces of the affine expressions in "maff"
5579 * such that they all have the save divs.
5581 __isl_give isl_multi_aff *isl_multi_aff_align_divs(
5582 __isl_take isl_multi_aff *maff)
5584 int i;
5586 if (!maff)
5587 return NULL;
5588 if (maff->n == 0)
5589 return maff;
5590 maff = isl_multi_aff_cow(maff);
5591 if (!maff)
5592 return NULL;
5594 for (i = 1; i < maff->n; ++i)
5595 maff->p[0] = isl_aff_align_divs(maff->p[0], maff->p[i]);
5596 for (i = 1; i < maff->n; ++i) {
5597 maff->p[i] = isl_aff_align_divs(maff->p[i], maff->p[0]);
5598 if (!maff->p[i])
5599 return isl_multi_aff_free(maff);
5602 return maff;
5605 __isl_give isl_aff *isl_aff_lift(__isl_take isl_aff *aff)
5607 aff = isl_aff_cow(aff);
5608 if (!aff)
5609 return NULL;
5611 aff->ls = isl_local_space_lift(aff->ls);
5612 if (!aff->ls)
5613 return isl_aff_free(aff);
5615 return aff;
5618 /* Lift "maff" to a space with extra dimensions such that the result
5619 * has no more existentially quantified variables.
5620 * If "ls" is not NULL, then *ls is assigned the local space that lies
5621 * at the basis of the lifting applied to "maff".
5623 __isl_give isl_multi_aff *isl_multi_aff_lift(__isl_take isl_multi_aff *maff,
5624 __isl_give isl_local_space **ls)
5626 int i;
5627 isl_space *space;
5628 unsigned n_div;
5630 if (ls)
5631 *ls = NULL;
5633 if (!maff)
5634 return NULL;
5636 if (maff->n == 0) {
5637 if (ls) {
5638 isl_space *space = isl_multi_aff_get_domain_space(maff);
5639 *ls = isl_local_space_from_space(space);
5640 if (!*ls)
5641 return isl_multi_aff_free(maff);
5643 return maff;
5646 maff = isl_multi_aff_cow(maff);
5647 maff = isl_multi_aff_align_divs(maff);
5648 if (!maff)
5649 return NULL;
5651 n_div = isl_aff_dim(maff->p[0], isl_dim_div);
5652 space = isl_multi_aff_get_space(maff);
5653 space = isl_space_lift(isl_space_domain(space), n_div);
5654 space = isl_space_extend_domain_with_range(space,
5655 isl_multi_aff_get_space(maff));
5656 if (!space)
5657 return isl_multi_aff_free(maff);
5658 isl_space_free(maff->space);
5659 maff->space = space;
5661 if (ls) {
5662 *ls = isl_aff_get_domain_local_space(maff->p[0]);
5663 if (!*ls)
5664 return isl_multi_aff_free(maff);
5667 for (i = 0; i < maff->n; ++i) {
5668 maff->p[i] = isl_aff_lift(maff->p[i]);
5669 if (!maff->p[i])
5670 goto error;
5673 return maff;
5674 error:
5675 if (ls)
5676 isl_local_space_free(*ls);
5677 return isl_multi_aff_free(maff);
5681 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma".
5683 __isl_give isl_pw_aff *isl_pw_multi_aff_get_pw_aff(
5684 __isl_keep isl_pw_multi_aff *pma, int pos)
5686 int i;
5687 int n_out;
5688 isl_space *space;
5689 isl_pw_aff *pa;
5691 if (!pma)
5692 return NULL;
5694 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
5695 if (pos < 0 || pos >= n_out)
5696 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
5697 "index out of bounds", return NULL);
5699 space = isl_pw_multi_aff_get_space(pma);
5700 space = isl_space_drop_dims(space, isl_dim_out,
5701 pos + 1, n_out - pos - 1);
5702 space = isl_space_drop_dims(space, isl_dim_out, 0, pos);
5704 pa = isl_pw_aff_alloc_size(space, pma->n);
5705 for (i = 0; i < pma->n; ++i) {
5706 isl_aff *aff;
5707 aff = isl_multi_aff_get_aff(pma->p[i].maff, pos);
5708 pa = isl_pw_aff_add_piece(pa, isl_set_copy(pma->p[i].set), aff);
5711 return pa;
5714 /* Return an isl_pw_multi_aff with the given "set" as domain and
5715 * an unnamed zero-dimensional range.
5717 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_domain(
5718 __isl_take isl_set *set)
5720 isl_multi_aff *ma;
5721 isl_space *space;
5723 space = isl_set_get_space(set);
5724 space = isl_space_from_domain(space);
5725 ma = isl_multi_aff_zero(space);
5726 return isl_pw_multi_aff_alloc(set, ma);
5729 /* Add an isl_pw_multi_aff with the given "set" as domain and
5730 * an unnamed zero-dimensional range to *user.
5732 static isl_stat add_pw_multi_aff_from_domain(__isl_take isl_set *set,
5733 void *user)
5735 isl_union_pw_multi_aff **upma = user;
5736 isl_pw_multi_aff *pma;
5738 pma = isl_pw_multi_aff_from_domain(set);
5739 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
5741 return isl_stat_ok;
5744 /* Return an isl_union_pw_multi_aff with the given "uset" as domain and
5745 * an unnamed zero-dimensional range.
5747 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_domain(
5748 __isl_take isl_union_set *uset)
5750 isl_space *space;
5751 isl_union_pw_multi_aff *upma;
5753 if (!uset)
5754 return NULL;
5756 space = isl_union_set_get_space(uset);
5757 upma = isl_union_pw_multi_aff_empty(space);
5759 if (isl_union_set_foreach_set(uset,
5760 &add_pw_multi_aff_from_domain, &upma) < 0)
5761 goto error;
5763 isl_union_set_free(uset);
5764 return upma;
5765 error:
5766 isl_union_set_free(uset);
5767 isl_union_pw_multi_aff_free(upma);
5768 return NULL;
5771 /* Convert "pma" to an isl_map and add it to *umap.
5773 static isl_stat map_from_pw_multi_aff(__isl_take isl_pw_multi_aff *pma,
5774 void *user)
5776 isl_union_map **umap = user;
5777 isl_map *map;
5779 map = isl_map_from_pw_multi_aff(pma);
5780 *umap = isl_union_map_add_map(*umap, map);
5782 return isl_stat_ok;
5785 /* Construct a union map mapping the domain of the union
5786 * piecewise multi-affine expression to its range, with each dimension
5787 * in the range equated to the corresponding affine expression on its cell.
5789 __isl_give isl_union_map *isl_union_map_from_union_pw_multi_aff(
5790 __isl_take isl_union_pw_multi_aff *upma)
5792 isl_space *space;
5793 isl_union_map *umap;
5795 if (!upma)
5796 return NULL;
5798 space = isl_union_pw_multi_aff_get_space(upma);
5799 umap = isl_union_map_empty(space);
5801 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
5802 &map_from_pw_multi_aff, &umap) < 0)
5803 goto error;
5805 isl_union_pw_multi_aff_free(upma);
5806 return umap;
5807 error:
5808 isl_union_pw_multi_aff_free(upma);
5809 isl_union_map_free(umap);
5810 return NULL;
5813 /* Local data for bin_entry and the callback "fn".
5815 struct isl_union_pw_multi_aff_bin_data {
5816 isl_union_pw_multi_aff *upma2;
5817 isl_union_pw_multi_aff *res;
5818 isl_pw_multi_aff *pma;
5819 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user);
5822 /* Given an isl_pw_multi_aff from upma1, store it in data->pma
5823 * and call data->fn for each isl_pw_multi_aff in data->upma2.
5825 static isl_stat bin_entry(__isl_take isl_pw_multi_aff *pma, void *user)
5827 struct isl_union_pw_multi_aff_bin_data *data = user;
5828 isl_stat r;
5830 data->pma = pma;
5831 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma2,
5832 data->fn, data);
5833 isl_pw_multi_aff_free(pma);
5835 return r;
5838 /* Call "fn" on each pair of isl_pw_multi_affs in "upma1" and "upma2".
5839 * The isl_pw_multi_aff from upma1 is stored in data->pma (where data is
5840 * passed as user field) and the isl_pw_multi_aff from upma2 is available
5841 * as *entry. The callback should adjust data->res if desired.
5843 static __isl_give isl_union_pw_multi_aff *bin_op(
5844 __isl_take isl_union_pw_multi_aff *upma1,
5845 __isl_take isl_union_pw_multi_aff *upma2,
5846 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user))
5848 isl_space *space;
5849 struct isl_union_pw_multi_aff_bin_data data = { NULL, NULL, NULL, fn };
5851 space = isl_union_pw_multi_aff_get_space(upma2);
5852 upma1 = isl_union_pw_multi_aff_align_params(upma1, space);
5853 space = isl_union_pw_multi_aff_get_space(upma1);
5854 upma2 = isl_union_pw_multi_aff_align_params(upma2, space);
5856 if (!upma1 || !upma2)
5857 goto error;
5859 data.upma2 = upma2;
5860 data.res = isl_union_pw_multi_aff_alloc_same_size(upma1);
5861 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma1,
5862 &bin_entry, &data) < 0)
5863 goto error;
5865 isl_union_pw_multi_aff_free(upma1);
5866 isl_union_pw_multi_aff_free(upma2);
5867 return data.res;
5868 error:
5869 isl_union_pw_multi_aff_free(upma1);
5870 isl_union_pw_multi_aff_free(upma2);
5871 isl_union_pw_multi_aff_free(data.res);
5872 return NULL;
5875 /* Given two aligned isl_pw_multi_affs A -> B and C -> D,
5876 * construct an isl_pw_multi_aff (A * C) -> [B -> D].
5878 static __isl_give isl_pw_multi_aff *pw_multi_aff_range_product(
5879 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
5881 isl_space *space;
5883 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
5884 isl_pw_multi_aff_get_space(pma2));
5885 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
5886 &isl_multi_aff_range_product);
5889 /* Given two isl_pw_multi_affs A -> B and C -> D,
5890 * construct an isl_pw_multi_aff (A * C) -> [B -> D].
5892 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_product(
5893 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
5895 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
5896 &pw_multi_aff_range_product);
5899 /* Given two aligned isl_pw_multi_affs A -> B and C -> D,
5900 * construct an isl_pw_multi_aff (A * C) -> (B, D).
5902 static __isl_give isl_pw_multi_aff *pw_multi_aff_flat_range_product(
5903 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
5905 isl_space *space;
5907 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
5908 isl_pw_multi_aff_get_space(pma2));
5909 space = isl_space_flatten_range(space);
5910 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
5911 &isl_multi_aff_flat_range_product);
5914 /* Given two isl_pw_multi_affs A -> B and C -> D,
5915 * construct an isl_pw_multi_aff (A * C) -> (B, D).
5917 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_flat_range_product(
5918 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
5920 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
5921 &pw_multi_aff_flat_range_product);
5924 /* If data->pma and "pma2" have the same domain space, then compute
5925 * their flat range product and the result to data->res.
5927 static isl_stat flat_range_product_entry(__isl_take isl_pw_multi_aff *pma2,
5928 void *user)
5930 struct isl_union_pw_multi_aff_bin_data *data = user;
5932 if (!isl_space_tuple_is_equal(data->pma->dim, isl_dim_in,
5933 pma2->dim, isl_dim_in)) {
5934 isl_pw_multi_aff_free(pma2);
5935 return isl_stat_ok;
5938 pma2 = isl_pw_multi_aff_flat_range_product(
5939 isl_pw_multi_aff_copy(data->pma), pma2);
5941 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
5943 return isl_stat_ok;
5946 /* Given two isl_union_pw_multi_affs A -> B and C -> D,
5947 * construct an isl_union_pw_multi_aff (A * C) -> (B, D).
5949 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_flat_range_product(
5950 __isl_take isl_union_pw_multi_aff *upma1,
5951 __isl_take isl_union_pw_multi_aff *upma2)
5953 return bin_op(upma1, upma2, &flat_range_product_entry);
5956 /* Replace the affine expressions at position "pos" in "pma" by "pa".
5957 * The parameters are assumed to have been aligned.
5959 * The implementation essentially performs an isl_pw_*_on_shared_domain,
5960 * except that it works on two different isl_pw_* types.
5962 static __isl_give isl_pw_multi_aff *pw_multi_aff_set_pw_aff(
5963 __isl_take isl_pw_multi_aff *pma, unsigned pos,
5964 __isl_take isl_pw_aff *pa)
5966 int i, j, n;
5967 isl_pw_multi_aff *res = NULL;
5969 if (!pma || !pa)
5970 goto error;
5972 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_in,
5973 pa->dim, isl_dim_in))
5974 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
5975 "domains don't match", goto error);
5976 if (pos >= isl_pw_multi_aff_dim(pma, isl_dim_out))
5977 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
5978 "index out of bounds", goto error);
5980 n = pma->n * pa->n;
5981 res = isl_pw_multi_aff_alloc_size(isl_pw_multi_aff_get_space(pma), n);
5983 for (i = 0; i < pma->n; ++i) {
5984 for (j = 0; j < pa->n; ++j) {
5985 isl_set *common;
5986 isl_multi_aff *res_ij;
5987 int empty;
5989 common = isl_set_intersect(isl_set_copy(pma->p[i].set),
5990 isl_set_copy(pa->p[j].set));
5991 empty = isl_set_plain_is_empty(common);
5992 if (empty < 0 || empty) {
5993 isl_set_free(common);
5994 if (empty < 0)
5995 goto error;
5996 continue;
5999 res_ij = isl_multi_aff_set_aff(
6000 isl_multi_aff_copy(pma->p[i].maff), pos,
6001 isl_aff_copy(pa->p[j].aff));
6002 res_ij = isl_multi_aff_gist(res_ij,
6003 isl_set_copy(common));
6005 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
6009 isl_pw_multi_aff_free(pma);
6010 isl_pw_aff_free(pa);
6011 return res;
6012 error:
6013 isl_pw_multi_aff_free(pma);
6014 isl_pw_aff_free(pa);
6015 return isl_pw_multi_aff_free(res);
6018 /* Replace the affine expressions at position "pos" in "pma" by "pa".
6020 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_set_pw_aff(
6021 __isl_take isl_pw_multi_aff *pma, unsigned pos,
6022 __isl_take isl_pw_aff *pa)
6024 if (!pma || !pa)
6025 goto error;
6026 if (isl_space_match(pma->dim, isl_dim_param, pa->dim, isl_dim_param))
6027 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6028 if (!isl_space_has_named_params(pma->dim) ||
6029 !isl_space_has_named_params(pa->dim))
6030 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
6031 "unaligned unnamed parameters", goto error);
6032 pma = isl_pw_multi_aff_align_params(pma, isl_pw_aff_get_space(pa));
6033 pa = isl_pw_aff_align_params(pa, isl_pw_multi_aff_get_space(pma));
6034 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6035 error:
6036 isl_pw_multi_aff_free(pma);
6037 isl_pw_aff_free(pa);
6038 return NULL;
6041 /* Do the parameters of "pa" match those of "space"?
6043 int isl_pw_aff_matching_params(__isl_keep isl_pw_aff *pa,
6044 __isl_keep isl_space *space)
6046 isl_space *pa_space;
6047 int match;
6049 if (!pa || !space)
6050 return -1;
6052 pa_space = isl_pw_aff_get_space(pa);
6054 match = isl_space_match(space, isl_dim_param, pa_space, isl_dim_param);
6056 isl_space_free(pa_space);
6057 return match;
6060 /* Check that the domain space of "pa" matches "space".
6062 * Return 0 on success and -1 on error.
6064 int isl_pw_aff_check_match_domain_space(__isl_keep isl_pw_aff *pa,
6065 __isl_keep isl_space *space)
6067 isl_space *pa_space;
6068 int match;
6070 if (!pa || !space)
6071 return -1;
6073 pa_space = isl_pw_aff_get_space(pa);
6075 match = isl_space_match(space, isl_dim_param, pa_space, isl_dim_param);
6076 if (match < 0)
6077 goto error;
6078 if (!match)
6079 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6080 "parameters don't match", goto error);
6081 match = isl_space_tuple_is_equal(space, isl_dim_in,
6082 pa_space, isl_dim_in);
6083 if (match < 0)
6084 goto error;
6085 if (!match)
6086 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6087 "domains don't match", goto error);
6088 isl_space_free(pa_space);
6089 return 0;
6090 error:
6091 isl_space_free(pa_space);
6092 return -1;
6095 #undef BASE
6096 #define BASE pw_aff
6097 #undef DOMBASE
6098 #define DOMBASE set
6100 #include <isl_multi_templ.c>
6101 #include <isl_multi_apply_set.c>
6102 #include <isl_multi_coalesce.c>
6103 #include <isl_multi_gist.c>
6104 #include <isl_multi_hash.c>
6105 #include <isl_multi_intersect.c>
6107 /* Scale the elements of "pma" by the corresponding elements of "mv".
6109 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_scale_multi_val(
6110 __isl_take isl_pw_multi_aff *pma, __isl_take isl_multi_val *mv)
6112 int i;
6114 pma = isl_pw_multi_aff_cow(pma);
6115 if (!pma || !mv)
6116 goto error;
6117 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_out,
6118 mv->space, isl_dim_set))
6119 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
6120 "spaces don't match", goto error);
6121 if (!isl_space_match(pma->dim, isl_dim_param,
6122 mv->space, isl_dim_param)) {
6123 pma = isl_pw_multi_aff_align_params(pma,
6124 isl_multi_val_get_space(mv));
6125 mv = isl_multi_val_align_params(mv,
6126 isl_pw_multi_aff_get_space(pma));
6127 if (!pma || !mv)
6128 goto error;
6131 for (i = 0; i < pma->n; ++i) {
6132 pma->p[i].maff = isl_multi_aff_scale_multi_val(pma->p[i].maff,
6133 isl_multi_val_copy(mv));
6134 if (!pma->p[i].maff)
6135 goto error;
6138 isl_multi_val_free(mv);
6139 return pma;
6140 error:
6141 isl_multi_val_free(mv);
6142 isl_pw_multi_aff_free(pma);
6143 return NULL;
6146 /* This function is called for each entry of an isl_union_pw_multi_aff.
6147 * If the space of the entry matches that of data->mv,
6148 * then apply isl_pw_multi_aff_scale_multi_val and return the result.
6149 * Otherwise, return an empty isl_pw_multi_aff.
6151 static __isl_give isl_pw_multi_aff *union_pw_multi_aff_scale_multi_val_entry(
6152 __isl_take isl_pw_multi_aff *pma, void *user)
6154 isl_multi_val *mv = user;
6156 if (!pma)
6157 return NULL;
6158 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_out,
6159 mv->space, isl_dim_set)) {
6160 isl_space *space = isl_pw_multi_aff_get_space(pma);
6161 isl_pw_multi_aff_free(pma);
6162 return isl_pw_multi_aff_empty(space);
6165 return isl_pw_multi_aff_scale_multi_val(pma, isl_multi_val_copy(mv));
6168 /* Scale the elements of "upma" by the corresponding elements of "mv",
6169 * for those entries that match the space of "mv".
6171 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_scale_multi_val(
6172 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_multi_val *mv)
6174 upma = isl_union_pw_multi_aff_align_params(upma,
6175 isl_multi_val_get_space(mv));
6176 mv = isl_multi_val_align_params(mv,
6177 isl_union_pw_multi_aff_get_space(upma));
6178 if (!upma || !mv)
6179 goto error;
6181 return isl_union_pw_multi_aff_transform(upma,
6182 &union_pw_multi_aff_scale_multi_val_entry, mv);
6184 isl_multi_val_free(mv);
6185 return upma;
6186 error:
6187 isl_multi_val_free(mv);
6188 isl_union_pw_multi_aff_free(upma);
6189 return NULL;
6192 /* Construct and return a piecewise multi affine expression
6193 * in the given space with value zero in each of the output dimensions and
6194 * a universe domain.
6196 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_zero(__isl_take isl_space *space)
6198 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_zero(space));
6201 /* Construct and return a piecewise multi affine expression
6202 * that is equal to the given piecewise affine expression.
6204 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_pw_aff(
6205 __isl_take isl_pw_aff *pa)
6207 int i;
6208 isl_space *space;
6209 isl_pw_multi_aff *pma;
6211 if (!pa)
6212 return NULL;
6214 space = isl_pw_aff_get_space(pa);
6215 pma = isl_pw_multi_aff_alloc_size(space, pa->n);
6217 for (i = 0; i < pa->n; ++i) {
6218 isl_set *set;
6219 isl_multi_aff *ma;
6221 set = isl_set_copy(pa->p[i].set);
6222 ma = isl_multi_aff_from_aff(isl_aff_copy(pa->p[i].aff));
6223 pma = isl_pw_multi_aff_add_piece(pma, set, ma);
6226 isl_pw_aff_free(pa);
6227 return pma;
6230 /* Construct a set or map mapping the shared (parameter) domain
6231 * of the piecewise affine expressions to the range of "mpa"
6232 * with each dimension in the range equated to the
6233 * corresponding piecewise affine expression.
6235 static __isl_give isl_map *map_from_multi_pw_aff(
6236 __isl_take isl_multi_pw_aff *mpa)
6238 int i;
6239 isl_space *space;
6240 isl_map *map;
6242 if (!mpa)
6243 return NULL;
6245 if (isl_space_dim(mpa->space, isl_dim_out) != mpa->n)
6246 isl_die(isl_multi_pw_aff_get_ctx(mpa), isl_error_internal,
6247 "invalid space", goto error);
6249 space = isl_multi_pw_aff_get_domain_space(mpa);
6250 map = isl_map_universe(isl_space_from_domain(space));
6252 for (i = 0; i < mpa->n; ++i) {
6253 isl_pw_aff *pa;
6254 isl_map *map_i;
6256 pa = isl_pw_aff_copy(mpa->p[i]);
6257 map_i = map_from_pw_aff(pa);
6259 map = isl_map_flat_range_product(map, map_i);
6262 map = isl_map_reset_space(map, isl_multi_pw_aff_get_space(mpa));
6264 isl_multi_pw_aff_free(mpa);
6265 return map;
6266 error:
6267 isl_multi_pw_aff_free(mpa);
6268 return NULL;
6271 /* Construct a map mapping the shared domain
6272 * of the piecewise affine expressions to the range of "mpa"
6273 * with each dimension in the range equated to the
6274 * corresponding piecewise affine expression.
6276 __isl_give isl_map *isl_map_from_multi_pw_aff(__isl_take isl_multi_pw_aff *mpa)
6278 if (!mpa)
6279 return NULL;
6280 if (isl_space_is_set(mpa->space))
6281 isl_die(isl_multi_pw_aff_get_ctx(mpa), isl_error_internal,
6282 "space of input is not a map", goto error);
6284 return map_from_multi_pw_aff(mpa);
6285 error:
6286 isl_multi_pw_aff_free(mpa);
6287 return NULL;
6290 /* Construct a set mapping the shared parameter domain
6291 * of the piecewise affine expressions to the space of "mpa"
6292 * with each dimension in the range equated to the
6293 * corresponding piecewise affine expression.
6295 __isl_give isl_set *isl_set_from_multi_pw_aff(__isl_take isl_multi_pw_aff *mpa)
6297 if (!mpa)
6298 return NULL;
6299 if (!isl_space_is_set(mpa->space))
6300 isl_die(isl_multi_pw_aff_get_ctx(mpa), isl_error_internal,
6301 "space of input is not a set", goto error);
6303 return map_from_multi_pw_aff(mpa);
6304 error:
6305 isl_multi_pw_aff_free(mpa);
6306 return NULL;
6309 /* Construct and return a piecewise multi affine expression
6310 * that is equal to the given multi piecewise affine expression
6311 * on the shared domain of the piecewise affine expressions.
6313 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_pw_aff(
6314 __isl_take isl_multi_pw_aff *mpa)
6316 int i;
6317 isl_space *space;
6318 isl_pw_aff *pa;
6319 isl_pw_multi_aff *pma;
6321 if (!mpa)
6322 return NULL;
6324 space = isl_multi_pw_aff_get_space(mpa);
6326 if (mpa->n == 0) {
6327 isl_multi_pw_aff_free(mpa);
6328 return isl_pw_multi_aff_zero(space);
6331 pa = isl_multi_pw_aff_get_pw_aff(mpa, 0);
6332 pma = isl_pw_multi_aff_from_pw_aff(pa);
6334 for (i = 1; i < mpa->n; ++i) {
6335 isl_pw_multi_aff *pma_i;
6337 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
6338 pma_i = isl_pw_multi_aff_from_pw_aff(pa);
6339 pma = isl_pw_multi_aff_range_product(pma, pma_i);
6342 pma = isl_pw_multi_aff_reset_space(pma, space);
6344 isl_multi_pw_aff_free(mpa);
6345 return pma;
6348 /* Construct and return a multi piecewise affine expression
6349 * that is equal to the given multi affine expression.
6351 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_multi_aff(
6352 __isl_take isl_multi_aff *ma)
6354 int i, n;
6355 isl_multi_pw_aff *mpa;
6357 if (!ma)
6358 return NULL;
6360 n = isl_multi_aff_dim(ma, isl_dim_out);
6361 mpa = isl_multi_pw_aff_alloc(isl_multi_aff_get_space(ma));
6363 for (i = 0; i < n; ++i) {
6364 isl_pw_aff *pa;
6366 pa = isl_pw_aff_from_aff(isl_multi_aff_get_aff(ma, i));
6367 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
6370 isl_multi_aff_free(ma);
6371 return mpa;
6374 /* Construct and return a multi piecewise affine expression
6375 * that is equal to the given piecewise multi affine expression.
6377 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_pw_multi_aff(
6378 __isl_take isl_pw_multi_aff *pma)
6380 int i, n;
6381 isl_space *space;
6382 isl_multi_pw_aff *mpa;
6384 if (!pma)
6385 return NULL;
6387 n = isl_pw_multi_aff_dim(pma, isl_dim_out);
6388 space = isl_pw_multi_aff_get_space(pma);
6389 mpa = isl_multi_pw_aff_alloc(space);
6391 for (i = 0; i < n; ++i) {
6392 isl_pw_aff *pa;
6394 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
6395 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
6398 isl_pw_multi_aff_free(pma);
6399 return mpa;
6402 /* Do "pa1" and "pa2" represent the same function?
6404 * We first check if they are obviously equal.
6405 * If not, we convert them to maps and check if those are equal.
6407 * If "pa1" or "pa2" contain any NaNs, then they are considered
6408 * not to be the same. A NaN is not equal to anything, not even
6409 * to another NaN.
6411 int isl_pw_aff_is_equal(__isl_keep isl_pw_aff *pa1, __isl_keep isl_pw_aff *pa2)
6413 int equal;
6414 isl_bool has_nan;
6415 isl_map *map1, *map2;
6417 if (!pa1 || !pa2)
6418 return -1;
6420 equal = isl_pw_aff_plain_is_equal(pa1, pa2);
6421 if (equal < 0 || equal)
6422 return equal;
6423 has_nan = isl_pw_aff_involves_nan(pa1);
6424 if (has_nan >= 0 && !has_nan)
6425 has_nan = isl_pw_aff_involves_nan(pa2);
6426 if (has_nan < 0)
6427 return -1;
6428 if (has_nan)
6429 return 0;
6431 map1 = map_from_pw_aff(isl_pw_aff_copy(pa1));
6432 map2 = map_from_pw_aff(isl_pw_aff_copy(pa2));
6433 equal = isl_map_is_equal(map1, map2);
6434 isl_map_free(map1);
6435 isl_map_free(map2);
6437 return equal;
6440 /* Do "mpa1" and "mpa2" represent the same function?
6442 * Note that we cannot convert the entire isl_multi_pw_aff
6443 * to a map because the domains of the piecewise affine expressions
6444 * may not be the same.
6446 isl_bool isl_multi_pw_aff_is_equal(__isl_keep isl_multi_pw_aff *mpa1,
6447 __isl_keep isl_multi_pw_aff *mpa2)
6449 int i;
6450 isl_bool equal;
6452 if (!mpa1 || !mpa2)
6453 return isl_bool_error;
6455 if (!isl_space_match(mpa1->space, isl_dim_param,
6456 mpa2->space, isl_dim_param)) {
6457 if (!isl_space_has_named_params(mpa1->space))
6458 return isl_bool_false;
6459 if (!isl_space_has_named_params(mpa2->space))
6460 return isl_bool_false;
6461 mpa1 = isl_multi_pw_aff_copy(mpa1);
6462 mpa2 = isl_multi_pw_aff_copy(mpa2);
6463 mpa1 = isl_multi_pw_aff_align_params(mpa1,
6464 isl_multi_pw_aff_get_space(mpa2));
6465 mpa2 = isl_multi_pw_aff_align_params(mpa2,
6466 isl_multi_pw_aff_get_space(mpa1));
6467 equal = isl_multi_pw_aff_is_equal(mpa1, mpa2);
6468 isl_multi_pw_aff_free(mpa1);
6469 isl_multi_pw_aff_free(mpa2);
6470 return equal;
6473 equal = isl_space_is_equal(mpa1->space, mpa2->space);
6474 if (equal < 0 || !equal)
6475 return equal;
6477 for (i = 0; i < mpa1->n; ++i) {
6478 equal = isl_pw_aff_is_equal(mpa1->p[i], mpa2->p[i]);
6479 if (equal < 0 || !equal)
6480 return equal;
6483 return isl_bool_true;
6486 /* Compute the pullback of "mpa" by the function represented by "ma".
6487 * In other words, plug in "ma" in "mpa".
6489 * The parameters of "mpa" and "ma" are assumed to have been aligned.
6491 static __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_aff_aligned(
6492 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_multi_aff *ma)
6494 int i;
6495 isl_space *space = NULL;
6497 mpa = isl_multi_pw_aff_cow(mpa);
6498 if (!mpa || !ma)
6499 goto error;
6501 space = isl_space_join(isl_multi_aff_get_space(ma),
6502 isl_multi_pw_aff_get_space(mpa));
6503 if (!space)
6504 goto error;
6506 for (i = 0; i < mpa->n; ++i) {
6507 mpa->p[i] = isl_pw_aff_pullback_multi_aff(mpa->p[i],
6508 isl_multi_aff_copy(ma));
6509 if (!mpa->p[i])
6510 goto error;
6513 isl_multi_aff_free(ma);
6514 isl_space_free(mpa->space);
6515 mpa->space = space;
6516 return mpa;
6517 error:
6518 isl_space_free(space);
6519 isl_multi_pw_aff_free(mpa);
6520 isl_multi_aff_free(ma);
6521 return NULL;
6524 /* Compute the pullback of "mpa" by the function represented by "ma".
6525 * In other words, plug in "ma" in "mpa".
6527 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_aff(
6528 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_multi_aff *ma)
6530 if (!mpa || !ma)
6531 goto error;
6532 if (isl_space_match(mpa->space, isl_dim_param,
6533 ma->space, isl_dim_param))
6534 return isl_multi_pw_aff_pullback_multi_aff_aligned(mpa, ma);
6535 mpa = isl_multi_pw_aff_align_params(mpa, isl_multi_aff_get_space(ma));
6536 ma = isl_multi_aff_align_params(ma, isl_multi_pw_aff_get_space(mpa));
6537 return isl_multi_pw_aff_pullback_multi_aff_aligned(mpa, ma);
6538 error:
6539 isl_multi_pw_aff_free(mpa);
6540 isl_multi_aff_free(ma);
6541 return NULL;
6544 /* Compute the pullback of "mpa" by the function represented by "pma".
6545 * In other words, plug in "pma" in "mpa".
6547 * The parameters of "mpa" and "mpa" are assumed to have been aligned.
6549 static __isl_give isl_multi_pw_aff *
6550 isl_multi_pw_aff_pullback_pw_multi_aff_aligned(
6551 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_multi_aff *pma)
6553 int i;
6554 isl_space *space = NULL;
6556 mpa = isl_multi_pw_aff_cow(mpa);
6557 if (!mpa || !pma)
6558 goto error;
6560 space = isl_space_join(isl_pw_multi_aff_get_space(pma),
6561 isl_multi_pw_aff_get_space(mpa));
6563 for (i = 0; i < mpa->n; ++i) {
6564 mpa->p[i] = isl_pw_aff_pullback_pw_multi_aff_aligned(mpa->p[i],
6565 isl_pw_multi_aff_copy(pma));
6566 if (!mpa->p[i])
6567 goto error;
6570 isl_pw_multi_aff_free(pma);
6571 isl_space_free(mpa->space);
6572 mpa->space = space;
6573 return mpa;
6574 error:
6575 isl_space_free(space);
6576 isl_multi_pw_aff_free(mpa);
6577 isl_pw_multi_aff_free(pma);
6578 return NULL;
6581 /* Compute the pullback of "mpa" by the function represented by "pma".
6582 * In other words, plug in "pma" in "mpa".
6584 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_pw_multi_aff(
6585 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_multi_aff *pma)
6587 if (!mpa || !pma)
6588 goto error;
6589 if (isl_space_match(mpa->space, isl_dim_param, pma->dim, isl_dim_param))
6590 return isl_multi_pw_aff_pullback_pw_multi_aff_aligned(mpa, pma);
6591 mpa = isl_multi_pw_aff_align_params(mpa,
6592 isl_pw_multi_aff_get_space(pma));
6593 pma = isl_pw_multi_aff_align_params(pma,
6594 isl_multi_pw_aff_get_space(mpa));
6595 return isl_multi_pw_aff_pullback_pw_multi_aff_aligned(mpa, pma);
6596 error:
6597 isl_multi_pw_aff_free(mpa);
6598 isl_pw_multi_aff_free(pma);
6599 return NULL;
6602 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
6603 * with the domain of "aff". The domain of the result is the same
6604 * as that of "mpa".
6605 * "mpa" and "aff" are assumed to have been aligned.
6607 * We first extract the parametric constant from "aff", defined
6608 * over the correct domain.
6609 * Then we add the appropriate combinations of the members of "mpa".
6610 * Finally, we add the integer divisions through recursive calls.
6612 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff_aligned(
6613 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
6615 int i, n_in, n_div;
6616 isl_space *space;
6617 isl_val *v;
6618 isl_pw_aff *pa;
6619 isl_aff *tmp;
6621 n_in = isl_aff_dim(aff, isl_dim_in);
6622 n_div = isl_aff_dim(aff, isl_dim_div);
6624 space = isl_space_domain(isl_multi_pw_aff_get_space(mpa));
6625 tmp = isl_aff_copy(aff);
6626 tmp = isl_aff_drop_dims(tmp, isl_dim_div, 0, n_div);
6627 tmp = isl_aff_drop_dims(tmp, isl_dim_in, 0, n_in);
6628 tmp = isl_aff_add_dims(tmp, isl_dim_in,
6629 isl_space_dim(space, isl_dim_set));
6630 tmp = isl_aff_reset_domain_space(tmp, space);
6631 pa = isl_pw_aff_from_aff(tmp);
6633 for (i = 0; i < n_in; ++i) {
6634 isl_pw_aff *pa_i;
6636 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
6637 continue;
6638 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
6639 pa_i = isl_multi_pw_aff_get_pw_aff(mpa, i);
6640 pa_i = isl_pw_aff_scale_val(pa_i, v);
6641 pa = isl_pw_aff_add(pa, pa_i);
6644 for (i = 0; i < n_div; ++i) {
6645 isl_aff *div;
6646 isl_pw_aff *pa_i;
6648 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
6649 continue;
6650 div = isl_aff_get_div(aff, i);
6651 pa_i = isl_multi_pw_aff_apply_aff_aligned(
6652 isl_multi_pw_aff_copy(mpa), div);
6653 pa_i = isl_pw_aff_floor(pa_i);
6654 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
6655 pa_i = isl_pw_aff_scale_val(pa_i, v);
6656 pa = isl_pw_aff_add(pa, pa_i);
6659 isl_multi_pw_aff_free(mpa);
6660 isl_aff_free(aff);
6662 return pa;
6665 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
6666 * with the domain of "aff". The domain of the result is the same
6667 * as that of "mpa".
6669 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff(
6670 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
6672 if (!aff || !mpa)
6673 goto error;
6674 if (isl_space_match(aff->ls->dim, isl_dim_param,
6675 mpa->space, isl_dim_param))
6676 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
6678 aff = isl_aff_align_params(aff, isl_multi_pw_aff_get_space(mpa));
6679 mpa = isl_multi_pw_aff_align_params(mpa, isl_aff_get_space(aff));
6681 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
6682 error:
6683 isl_aff_free(aff);
6684 isl_multi_pw_aff_free(mpa);
6685 return NULL;
6688 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
6689 * with the domain of "pa". The domain of the result is the same
6690 * as that of "mpa".
6691 * "mpa" and "pa" are assumed to have been aligned.
6693 * We consider each piece in turn. Note that the domains of the
6694 * pieces are assumed to be disjoint and they remain disjoint
6695 * after taking the preimage (over the same function).
6697 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff_aligned(
6698 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
6700 isl_space *space;
6701 isl_pw_aff *res;
6702 int i;
6704 if (!mpa || !pa)
6705 goto error;
6707 space = isl_space_join(isl_multi_pw_aff_get_space(mpa),
6708 isl_pw_aff_get_space(pa));
6709 res = isl_pw_aff_empty(space);
6711 for (i = 0; i < pa->n; ++i) {
6712 isl_pw_aff *pa_i;
6713 isl_set *domain;
6715 pa_i = isl_multi_pw_aff_apply_aff_aligned(
6716 isl_multi_pw_aff_copy(mpa),
6717 isl_aff_copy(pa->p[i].aff));
6718 domain = isl_set_copy(pa->p[i].set);
6719 domain = isl_set_preimage_multi_pw_aff(domain,
6720 isl_multi_pw_aff_copy(mpa));
6721 pa_i = isl_pw_aff_intersect_domain(pa_i, domain);
6722 res = isl_pw_aff_add_disjoint(res, pa_i);
6725 isl_pw_aff_free(pa);
6726 isl_multi_pw_aff_free(mpa);
6727 return res;
6728 error:
6729 isl_pw_aff_free(pa);
6730 isl_multi_pw_aff_free(mpa);
6731 return NULL;
6734 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
6735 * with the domain of "pa". The domain of the result is the same
6736 * as that of "mpa".
6738 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff(
6739 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
6741 if (!pa || !mpa)
6742 goto error;
6743 if (isl_space_match(pa->dim, isl_dim_param, mpa->space, isl_dim_param))
6744 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
6746 pa = isl_pw_aff_align_params(pa, isl_multi_pw_aff_get_space(mpa));
6747 mpa = isl_multi_pw_aff_align_params(mpa, isl_pw_aff_get_space(pa));
6749 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
6750 error:
6751 isl_pw_aff_free(pa);
6752 isl_multi_pw_aff_free(mpa);
6753 return NULL;
6756 /* Compute the pullback of "pa" by the function represented by "mpa".
6757 * In other words, plug in "mpa" in "pa".
6758 * "pa" and "mpa" are assumed to have been aligned.
6760 * The pullback is computed by applying "pa" to "mpa".
6762 static __isl_give isl_pw_aff *isl_pw_aff_pullback_multi_pw_aff_aligned(
6763 __isl_take isl_pw_aff *pa, __isl_take isl_multi_pw_aff *mpa)
6765 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
6768 /* Compute the pullback of "pa" by the function represented by "mpa".
6769 * In other words, plug in "mpa" in "pa".
6771 * The pullback is computed by applying "pa" to "mpa".
6773 __isl_give isl_pw_aff *isl_pw_aff_pullback_multi_pw_aff(
6774 __isl_take isl_pw_aff *pa, __isl_take isl_multi_pw_aff *mpa)
6776 return isl_multi_pw_aff_apply_pw_aff(mpa, pa);
6779 /* Compute the pullback of "mpa1" by the function represented by "mpa2".
6780 * In other words, plug in "mpa2" in "mpa1".
6782 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
6784 * We pullback each member of "mpa1" in turn.
6786 static __isl_give isl_multi_pw_aff *
6787 isl_multi_pw_aff_pullback_multi_pw_aff_aligned(
6788 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
6790 int i;
6791 isl_space *space = NULL;
6793 mpa1 = isl_multi_pw_aff_cow(mpa1);
6794 if (!mpa1 || !mpa2)
6795 goto error;
6797 space = isl_space_join(isl_multi_pw_aff_get_space(mpa2),
6798 isl_multi_pw_aff_get_space(mpa1));
6800 for (i = 0; i < mpa1->n; ++i) {
6801 mpa1->p[i] = isl_pw_aff_pullback_multi_pw_aff_aligned(
6802 mpa1->p[i], isl_multi_pw_aff_copy(mpa2));
6803 if (!mpa1->p[i])
6804 goto error;
6807 mpa1 = isl_multi_pw_aff_reset_space(mpa1, space);
6809 isl_multi_pw_aff_free(mpa2);
6810 return mpa1;
6811 error:
6812 isl_space_free(space);
6813 isl_multi_pw_aff_free(mpa1);
6814 isl_multi_pw_aff_free(mpa2);
6815 return NULL;
6818 /* Compute the pullback of "mpa1" by the function represented by "mpa2".
6819 * In other words, plug in "mpa2" in "mpa1".
6821 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_pw_aff(
6822 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
6824 return isl_multi_pw_aff_align_params_multi_multi_and(mpa1, mpa2,
6825 &isl_multi_pw_aff_pullback_multi_pw_aff_aligned);
6828 /* Align the parameters of "mpa1" and "mpa2", check that the ranges
6829 * of "mpa1" and "mpa2" live in the same space, construct map space
6830 * between the domain spaces of "mpa1" and "mpa2" and call "order"
6831 * with this map space as extract argument.
6833 static __isl_give isl_map *isl_multi_pw_aff_order_map(
6834 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
6835 __isl_give isl_map *(*order)(__isl_keep isl_multi_pw_aff *mpa1,
6836 __isl_keep isl_multi_pw_aff *mpa2, __isl_take isl_space *space))
6838 int match;
6839 isl_space *space1, *space2;
6840 isl_map *res;
6842 mpa1 = isl_multi_pw_aff_align_params(mpa1,
6843 isl_multi_pw_aff_get_space(mpa2));
6844 mpa2 = isl_multi_pw_aff_align_params(mpa2,
6845 isl_multi_pw_aff_get_space(mpa1));
6846 if (!mpa1 || !mpa2)
6847 goto error;
6848 match = isl_space_tuple_is_equal(mpa1->space, isl_dim_out,
6849 mpa2->space, isl_dim_out);
6850 if (match < 0)
6851 goto error;
6852 if (!match)
6853 isl_die(isl_multi_pw_aff_get_ctx(mpa1), isl_error_invalid,
6854 "range spaces don't match", goto error);
6855 space1 = isl_space_domain(isl_multi_pw_aff_get_space(mpa1));
6856 space2 = isl_space_domain(isl_multi_pw_aff_get_space(mpa2));
6857 space1 = isl_space_map_from_domain_and_range(space1, space2);
6859 res = order(mpa1, mpa2, space1);
6860 isl_multi_pw_aff_free(mpa1);
6861 isl_multi_pw_aff_free(mpa2);
6862 return res;
6863 error:
6864 isl_multi_pw_aff_free(mpa1);
6865 isl_multi_pw_aff_free(mpa2);
6866 return NULL;
6869 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6870 * where the function values are equal. "space" is the space of the result.
6871 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
6873 * "mpa1" and "mpa2" are equal when each of the pairs of elements
6874 * in the sequences are equal.
6876 static __isl_give isl_map *isl_multi_pw_aff_eq_map_on_space(
6877 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
6878 __isl_take isl_space *space)
6880 int i, n;
6881 isl_map *res;
6883 res = isl_map_universe(space);
6885 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
6886 for (i = 0; i < n; ++i) {
6887 isl_pw_aff *pa1, *pa2;
6888 isl_map *map;
6890 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
6891 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
6892 map = isl_pw_aff_eq_map(pa1, pa2);
6893 res = isl_map_intersect(res, map);
6896 return res;
6899 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6900 * where the function values are equal.
6902 __isl_give isl_map *isl_multi_pw_aff_eq_map(__isl_take isl_multi_pw_aff *mpa1,
6903 __isl_take isl_multi_pw_aff *mpa2)
6905 return isl_multi_pw_aff_order_map(mpa1, mpa2,
6906 &isl_multi_pw_aff_eq_map_on_space);
6909 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6910 * where the function values of "mpa1" is lexicographically satisfies "base"
6911 * compared to that of "mpa2". "space" is the space of the result.
6912 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
6914 * "mpa1" lexicographically satisfies "base" compared to "mpa2"
6915 * if its i-th element satisfies "base" when compared to
6916 * the i-th element of "mpa2" while all previous elements are
6917 * pairwise equal.
6919 static __isl_give isl_map *isl_multi_pw_aff_lex_map_on_space(
6920 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
6921 __isl_give isl_map *(*base)(__isl_take isl_pw_aff *pa1,
6922 __isl_take isl_pw_aff *pa2),
6923 __isl_take isl_space *space)
6925 int i, n;
6926 isl_map *res, *rest;
6928 res = isl_map_empty(isl_space_copy(space));
6929 rest = isl_map_universe(space);
6931 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
6932 for (i = 0; i < n; ++i) {
6933 isl_pw_aff *pa1, *pa2;
6934 isl_map *map;
6936 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
6937 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
6938 map = base(pa1, pa2);
6939 map = isl_map_intersect(map, isl_map_copy(rest));
6940 res = isl_map_union(res, map);
6942 if (i == n - 1)
6943 continue;
6945 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
6946 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
6947 map = isl_pw_aff_eq_map(pa1, pa2);
6948 rest = isl_map_intersect(rest, map);
6951 isl_map_free(rest);
6952 return res;
6955 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6956 * where the function value of "mpa1" is lexicographically less than that
6957 * of "mpa2". "space" is the space of the result.
6958 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
6960 * "mpa1" is less than "mpa2" if its i-th element is smaller
6961 * than the i-th element of "mpa2" while all previous elements are
6962 * pairwise equal.
6964 __isl_give isl_map *isl_multi_pw_aff_lex_lt_map_on_space(
6965 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
6966 __isl_take isl_space *space)
6968 return isl_multi_pw_aff_lex_map_on_space(mpa1, mpa2,
6969 &isl_pw_aff_lt_map, space);
6972 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6973 * where the function value of "mpa1" is lexicographically less than that
6974 * of "mpa2".
6976 __isl_give isl_map *isl_multi_pw_aff_lex_lt_map(
6977 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
6979 return isl_multi_pw_aff_order_map(mpa1, mpa2,
6980 &isl_multi_pw_aff_lex_lt_map_on_space);
6983 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
6984 * where the function value of "mpa1" is lexicographically greater than that
6985 * of "mpa2". "space" is the space of the result.
6986 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
6988 * "mpa1" is greater than "mpa2" if its i-th element is greater
6989 * than the i-th element of "mpa2" while all previous elements are
6990 * pairwise equal.
6992 __isl_give isl_map *isl_multi_pw_aff_lex_gt_map_on_space(
6993 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
6994 __isl_take isl_space *space)
6996 return isl_multi_pw_aff_lex_map_on_space(mpa1, mpa2,
6997 &isl_pw_aff_gt_map, space);
7000 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7001 * where the function value of "mpa1" is lexicographically greater than that
7002 * of "mpa2".
7004 __isl_give isl_map *isl_multi_pw_aff_lex_gt_map(
7005 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
7007 return isl_multi_pw_aff_order_map(mpa1, mpa2,
7008 &isl_multi_pw_aff_lex_gt_map_on_space);
7011 /* Compare two isl_affs.
7013 * Return -1 if "aff1" is "smaller" than "aff2", 1 if "aff1" is "greater"
7014 * than "aff2" and 0 if they are equal.
7016 * The order is fairly arbitrary. We do consider expressions that only involve
7017 * earlier dimensions as "smaller".
7019 int isl_aff_plain_cmp(__isl_keep isl_aff *aff1, __isl_keep isl_aff *aff2)
7021 int cmp;
7022 int last1, last2;
7024 if (aff1 == aff2)
7025 return 0;
7027 if (!aff1)
7028 return -1;
7029 if (!aff2)
7030 return 1;
7032 cmp = isl_local_space_cmp(aff1->ls, aff2->ls);
7033 if (cmp != 0)
7034 return cmp;
7036 last1 = isl_seq_last_non_zero(aff1->v->el + 1, aff1->v->size - 1);
7037 last2 = isl_seq_last_non_zero(aff2->v->el + 1, aff1->v->size - 1);
7038 if (last1 != last2)
7039 return last1 - last2;
7041 return isl_seq_cmp(aff1->v->el, aff2->v->el, aff1->v->size);
7044 /* Compare two isl_pw_affs.
7046 * Return -1 if "pa1" is "smaller" than "pa2", 1 if "pa1" is "greater"
7047 * than "pa2" and 0 if they are equal.
7049 * The order is fairly arbitrary. We do consider expressions that only involve
7050 * earlier dimensions as "smaller".
7052 int isl_pw_aff_plain_cmp(__isl_keep isl_pw_aff *pa1,
7053 __isl_keep isl_pw_aff *pa2)
7055 int i;
7056 int cmp;
7058 if (pa1 == pa2)
7059 return 0;
7061 if (!pa1)
7062 return -1;
7063 if (!pa2)
7064 return 1;
7066 cmp = isl_space_cmp(pa1->dim, pa2->dim);
7067 if (cmp != 0)
7068 return cmp;
7070 if (pa1->n != pa2->n)
7071 return pa1->n - pa2->n;
7073 for (i = 0; i < pa1->n; ++i) {
7074 cmp = isl_set_plain_cmp(pa1->p[i].set, pa2->p[i].set);
7075 if (cmp != 0)
7076 return cmp;
7077 cmp = isl_aff_plain_cmp(pa1->p[i].aff, pa2->p[i].aff);
7078 if (cmp != 0)
7079 return cmp;
7082 return 0;
7085 /* Return a piecewise affine expression that is equal to "v" on "domain".
7087 __isl_give isl_pw_aff *isl_pw_aff_val_on_domain(__isl_take isl_set *domain,
7088 __isl_take isl_val *v)
7090 isl_space *space;
7091 isl_local_space *ls;
7092 isl_aff *aff;
7094 space = isl_set_get_space(domain);
7095 ls = isl_local_space_from_space(space);
7096 aff = isl_aff_val_on_domain(ls, v);
7098 return isl_pw_aff_alloc(domain, aff);
7101 /* Return a multi affine expression that is equal to "mv" on domain
7102 * space "space".
7104 __isl_give isl_multi_aff *isl_multi_aff_multi_val_on_space(
7105 __isl_take isl_space *space, __isl_take isl_multi_val *mv)
7107 int i, n;
7108 isl_space *space2;
7109 isl_local_space *ls;
7110 isl_multi_aff *ma;
7112 if (!space || !mv)
7113 goto error;
7115 n = isl_multi_val_dim(mv, isl_dim_set);
7116 space2 = isl_multi_val_get_space(mv);
7117 space2 = isl_space_align_params(space2, isl_space_copy(space));
7118 space = isl_space_align_params(space, isl_space_copy(space2));
7119 space = isl_space_map_from_domain_and_range(space, space2);
7120 ma = isl_multi_aff_alloc(isl_space_copy(space));
7121 ls = isl_local_space_from_space(isl_space_domain(space));
7122 for (i = 0; i < n; ++i) {
7123 isl_val *v;
7124 isl_aff *aff;
7126 v = isl_multi_val_get_val(mv, i);
7127 aff = isl_aff_val_on_domain(isl_local_space_copy(ls), v);
7128 ma = isl_multi_aff_set_aff(ma, i, aff);
7130 isl_local_space_free(ls);
7132 isl_multi_val_free(mv);
7133 return ma;
7134 error:
7135 isl_space_free(space);
7136 isl_multi_val_free(mv);
7137 return NULL;
7140 /* Return a piecewise multi-affine expression
7141 * that is equal to "mv" on "domain".
7143 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_multi_val_on_domain(
7144 __isl_take isl_set *domain, __isl_take isl_multi_val *mv)
7146 isl_space *space;
7147 isl_multi_aff *ma;
7149 space = isl_set_get_space(domain);
7150 ma = isl_multi_aff_multi_val_on_space(space, mv);
7152 return isl_pw_multi_aff_alloc(domain, ma);
7155 /* Internal data structure for isl_union_pw_multi_aff_multi_val_on_domain.
7156 * mv is the value that should be attained on each domain set
7157 * res collects the results
7159 struct isl_union_pw_multi_aff_multi_val_on_domain_data {
7160 isl_multi_val *mv;
7161 isl_union_pw_multi_aff *res;
7164 /* Create an isl_pw_multi_aff equal to data->mv on "domain"
7165 * and add it to data->res.
7167 static isl_stat pw_multi_aff_multi_val_on_domain(__isl_take isl_set *domain,
7168 void *user)
7170 struct isl_union_pw_multi_aff_multi_val_on_domain_data *data = user;
7171 isl_pw_multi_aff *pma;
7172 isl_multi_val *mv;
7174 mv = isl_multi_val_copy(data->mv);
7175 pma = isl_pw_multi_aff_multi_val_on_domain(domain, mv);
7176 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
7178 return data->res ? isl_stat_ok : isl_stat_error;
7181 /* Return a union piecewise multi-affine expression
7182 * that is equal to "mv" on "domain".
7184 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_multi_val_on_domain(
7185 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
7187 struct isl_union_pw_multi_aff_multi_val_on_domain_data data;
7188 isl_space *space;
7190 space = isl_union_set_get_space(domain);
7191 data.res = isl_union_pw_multi_aff_empty(space);
7192 data.mv = mv;
7193 if (isl_union_set_foreach_set(domain,
7194 &pw_multi_aff_multi_val_on_domain, &data) < 0)
7195 data.res = isl_union_pw_multi_aff_free(data.res);
7196 isl_union_set_free(domain);
7197 isl_multi_val_free(mv);
7198 return data.res;
7201 /* Compute the pullback of data->pma by the function represented by "pma2",
7202 * provided the spaces match, and add the results to data->res.
7204 static isl_stat pullback_entry(__isl_take isl_pw_multi_aff *pma2, void *user)
7206 struct isl_union_pw_multi_aff_bin_data *data = user;
7208 if (!isl_space_tuple_is_equal(data->pma->dim, isl_dim_in,
7209 pma2->dim, isl_dim_out)) {
7210 isl_pw_multi_aff_free(pma2);
7211 return isl_stat_ok;
7214 pma2 = isl_pw_multi_aff_pullback_pw_multi_aff(
7215 isl_pw_multi_aff_copy(data->pma), pma2);
7217 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
7218 if (!data->res)
7219 return isl_stat_error;
7221 return isl_stat_ok;
7224 /* Compute the pullback of "upma1" by the function represented by "upma2".
7226 __isl_give isl_union_pw_multi_aff *
7227 isl_union_pw_multi_aff_pullback_union_pw_multi_aff(
7228 __isl_take isl_union_pw_multi_aff *upma1,
7229 __isl_take isl_union_pw_multi_aff *upma2)
7231 return bin_op(upma1, upma2, &pullback_entry);
7234 /* Check that the domain space of "upa" matches "space".
7236 * Return 0 on success and -1 on error.
7238 * This function is called from isl_multi_union_pw_aff_set_union_pw_aff and
7239 * can in principle never fail since the space "space" is that
7240 * of the isl_multi_union_pw_aff and is a set space such that
7241 * there is no domain space to match.
7243 * We check the parameters and double-check that "space" is
7244 * indeed that of a set.
7246 static int isl_union_pw_aff_check_match_domain_space(
7247 __isl_keep isl_union_pw_aff *upa, __isl_keep isl_space *space)
7249 isl_space *upa_space;
7250 int match;
7252 if (!upa || !space)
7253 return -1;
7255 match = isl_space_is_set(space);
7256 if (match < 0)
7257 return -1;
7258 if (!match)
7259 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7260 "expecting set space", return -1);
7262 upa_space = isl_union_pw_aff_get_space(upa);
7263 match = isl_space_match(space, isl_dim_param, upa_space, isl_dim_param);
7264 if (match < 0)
7265 goto error;
7266 if (!match)
7267 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7268 "parameters don't match", goto error);
7270 isl_space_free(upa_space);
7271 return 0;
7272 error:
7273 isl_space_free(upa_space);
7274 return -1;
7277 /* Do the parameters of "upa" match those of "space"?
7279 static int isl_union_pw_aff_matching_params(__isl_keep isl_union_pw_aff *upa,
7280 __isl_keep isl_space *space)
7282 isl_space *upa_space;
7283 int match;
7285 if (!upa || !space)
7286 return -1;
7288 upa_space = isl_union_pw_aff_get_space(upa);
7290 match = isl_space_match(space, isl_dim_param, upa_space, isl_dim_param);
7292 isl_space_free(upa_space);
7293 return match;
7296 /* Internal data structure for isl_union_pw_aff_reset_domain_space.
7297 * space represents the new parameters.
7298 * res collects the results.
7300 struct isl_union_pw_aff_reset_params_data {
7301 isl_space *space;
7302 isl_union_pw_aff *res;
7305 /* Replace the parameters of "pa" by data->space and
7306 * add the result to data->res.
7308 static isl_stat reset_params(__isl_take isl_pw_aff *pa, void *user)
7310 struct isl_union_pw_aff_reset_params_data *data = user;
7311 isl_space *space;
7313 space = isl_pw_aff_get_space(pa);
7314 space = isl_space_replace(space, isl_dim_param, data->space);
7315 pa = isl_pw_aff_reset_space(pa, space);
7316 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7318 return data->res ? isl_stat_ok : isl_stat_error;
7321 /* Replace the domain space of "upa" by "space".
7322 * Since a union expression does not have a (single) domain space,
7323 * "space" is necessarily a parameter space.
7325 * Since the order and the names of the parameters determine
7326 * the hash value, we need to create a new hash table.
7328 static __isl_give isl_union_pw_aff *isl_union_pw_aff_reset_domain_space(
7329 __isl_take isl_union_pw_aff *upa, __isl_take isl_space *space)
7331 struct isl_union_pw_aff_reset_params_data data = { space };
7332 int match;
7334 match = isl_union_pw_aff_matching_params(upa, space);
7335 if (match < 0)
7336 upa = isl_union_pw_aff_free(upa);
7337 else if (match) {
7338 isl_space_free(space);
7339 return upa;
7342 data.res = isl_union_pw_aff_empty(isl_space_copy(space));
7343 if (isl_union_pw_aff_foreach_pw_aff(upa, &reset_params, &data) < 0)
7344 data.res = isl_union_pw_aff_free(data.res);
7346 isl_union_pw_aff_free(upa);
7347 isl_space_free(space);
7348 return data.res;
7351 /* Return the floor of "pa".
7353 static __isl_give isl_pw_aff *floor_entry(__isl_take isl_pw_aff *pa, void *user)
7355 return isl_pw_aff_floor(pa);
7358 /* Given f, return floor(f).
7360 __isl_give isl_union_pw_aff *isl_union_pw_aff_floor(
7361 __isl_take isl_union_pw_aff *upa)
7363 return isl_union_pw_aff_transform_inplace(upa, &floor_entry, NULL);
7366 /* Compute
7368 * upa mod m = upa - m * floor(upa/m)
7370 * with m an integer value.
7372 __isl_give isl_union_pw_aff *isl_union_pw_aff_mod_val(
7373 __isl_take isl_union_pw_aff *upa, __isl_take isl_val *m)
7375 isl_union_pw_aff *res;
7377 if (!upa || !m)
7378 goto error;
7380 if (!isl_val_is_int(m))
7381 isl_die(isl_val_get_ctx(m), isl_error_invalid,
7382 "expecting integer modulo", goto error);
7383 if (!isl_val_is_pos(m))
7384 isl_die(isl_val_get_ctx(m), isl_error_invalid,
7385 "expecting positive modulo", goto error);
7387 res = isl_union_pw_aff_copy(upa);
7388 upa = isl_union_pw_aff_scale_down_val(upa, isl_val_copy(m));
7389 upa = isl_union_pw_aff_floor(upa);
7390 upa = isl_union_pw_aff_scale_val(upa, m);
7391 res = isl_union_pw_aff_sub(res, upa);
7393 return res;
7394 error:
7395 isl_val_free(m);
7396 isl_union_pw_aff_free(upa);
7397 return NULL;
7400 /* Internal data structure for isl_union_pw_aff_aff_on_domain.
7401 * "aff" is the symbolic value that the resulting isl_union_pw_aff
7402 * needs to attain.
7403 * "res" collects the results.
7405 struct isl_union_pw_aff_aff_on_domain_data {
7406 isl_aff *aff;
7407 isl_union_pw_aff *res;
7410 /* Construct a piecewise affine expression that is equal to data->aff
7411 * on "domain" and add the result to data->res.
7413 static isl_stat pw_aff_aff_on_domain(__isl_take isl_set *domain, void *user)
7415 struct isl_union_pw_aff_aff_on_domain_data *data = user;
7416 isl_pw_aff *pa;
7417 isl_aff *aff;
7418 int dim;
7420 aff = isl_aff_copy(data->aff);
7421 dim = isl_set_dim(domain, isl_dim_set);
7422 aff = isl_aff_add_dims(aff, isl_dim_in, dim);
7423 aff = isl_aff_reset_domain_space(aff, isl_set_get_space(domain));
7424 pa = isl_pw_aff_alloc(domain, aff);
7425 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7427 return data->res ? isl_stat_ok : isl_stat_error;
7430 /* Internal data structure for isl_union_pw_multi_aff_get_union_pw_aff.
7431 * pos is the output position that needs to be extracted.
7432 * res collects the results.
7434 struct isl_union_pw_multi_aff_get_union_pw_aff_data {
7435 int pos;
7436 isl_union_pw_aff *res;
7439 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma"
7440 * (assuming it has such a dimension) and add it to data->res.
7442 static isl_stat get_union_pw_aff(__isl_take isl_pw_multi_aff *pma, void *user)
7444 struct isl_union_pw_multi_aff_get_union_pw_aff_data *data = user;
7445 int n_out;
7446 isl_pw_aff *pa;
7448 if (!pma)
7449 return isl_stat_error;
7451 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
7452 if (data->pos >= n_out) {
7453 isl_pw_multi_aff_free(pma);
7454 return isl_stat_ok;
7457 pa = isl_pw_multi_aff_get_pw_aff(pma, data->pos);
7458 isl_pw_multi_aff_free(pma);
7460 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7462 return data->res ? isl_stat_ok : isl_stat_error;
7465 /* Extract an isl_union_pw_aff corresponding to
7466 * output dimension "pos" of "upma".
7468 __isl_give isl_union_pw_aff *isl_union_pw_multi_aff_get_union_pw_aff(
7469 __isl_keep isl_union_pw_multi_aff *upma, int pos)
7471 struct isl_union_pw_multi_aff_get_union_pw_aff_data data;
7472 isl_space *space;
7474 if (!upma)
7475 return NULL;
7477 if (pos < 0)
7478 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
7479 "cannot extract at negative position", return NULL);
7481 space = isl_union_pw_multi_aff_get_space(upma);
7482 data.res = isl_union_pw_aff_empty(space);
7483 data.pos = pos;
7484 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
7485 &get_union_pw_aff, &data) < 0)
7486 data.res = isl_union_pw_aff_free(data.res);
7488 return data.res;
7491 /* Return a union piecewise affine expression
7492 * that is equal to "aff" on "domain".
7494 * Construct an isl_pw_aff on each of the sets in "domain" and
7495 * collect the results.
7497 __isl_give isl_union_pw_aff *isl_union_pw_aff_aff_on_domain(
7498 __isl_take isl_union_set *domain, __isl_take isl_aff *aff)
7500 struct isl_union_pw_aff_aff_on_domain_data data;
7501 isl_space *space;
7503 if (!domain || !aff)
7504 goto error;
7505 if (!isl_local_space_is_params(aff->ls))
7506 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
7507 "expecting parametric expression", goto error);
7509 space = isl_union_set_get_space(domain);
7510 data.res = isl_union_pw_aff_empty(space);
7511 data.aff = aff;
7512 if (isl_union_set_foreach_set(domain, &pw_aff_aff_on_domain, &data) < 0)
7513 data.res = isl_union_pw_aff_free(data.res);
7514 isl_union_set_free(domain);
7515 isl_aff_free(aff);
7516 return data.res;
7517 error:
7518 isl_union_set_free(domain);
7519 isl_aff_free(aff);
7520 return NULL;
7523 /* Internal data structure for isl_union_pw_aff_val_on_domain.
7524 * "v" is the value that the resulting isl_union_pw_aff needs to attain.
7525 * "res" collects the results.
7527 struct isl_union_pw_aff_val_on_domain_data {
7528 isl_val *v;
7529 isl_union_pw_aff *res;
7532 /* Construct a piecewise affine expression that is equal to data->v
7533 * on "domain" and add the result to data->res.
7535 static isl_stat pw_aff_val_on_domain(__isl_take isl_set *domain, void *user)
7537 struct isl_union_pw_aff_val_on_domain_data *data = user;
7538 isl_pw_aff *pa;
7539 isl_val *v;
7541 v = isl_val_copy(data->v);
7542 pa = isl_pw_aff_val_on_domain(domain, v);
7543 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7545 return data->res ? isl_stat_ok : isl_stat_error;
7548 /* Return a union piecewise affine expression
7549 * that is equal to "v" on "domain".
7551 * Construct an isl_pw_aff on each of the sets in "domain" and
7552 * collect the results.
7554 __isl_give isl_union_pw_aff *isl_union_pw_aff_val_on_domain(
7555 __isl_take isl_union_set *domain, __isl_take isl_val *v)
7557 struct isl_union_pw_aff_val_on_domain_data data;
7558 isl_space *space;
7560 space = isl_union_set_get_space(domain);
7561 data.res = isl_union_pw_aff_empty(space);
7562 data.v = v;
7563 if (isl_union_set_foreach_set(domain, &pw_aff_val_on_domain, &data) < 0)
7564 data.res = isl_union_pw_aff_free(data.res);
7565 isl_union_set_free(domain);
7566 isl_val_free(v);
7567 return data.res;
7570 /* Construct a piecewise multi affine expression
7571 * that is equal to "pa" and add it to upma.
7573 static isl_stat pw_multi_aff_from_pw_aff_entry(__isl_take isl_pw_aff *pa,
7574 void *user)
7576 isl_union_pw_multi_aff **upma = user;
7577 isl_pw_multi_aff *pma;
7579 pma = isl_pw_multi_aff_from_pw_aff(pa);
7580 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
7582 return *upma ? isl_stat_ok : isl_stat_error;
7585 /* Construct and return a union piecewise multi affine expression
7586 * that is equal to the given union piecewise affine expression.
7588 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_pw_aff(
7589 __isl_take isl_union_pw_aff *upa)
7591 isl_space *space;
7592 isl_union_pw_multi_aff *upma;
7594 if (!upa)
7595 return NULL;
7597 space = isl_union_pw_aff_get_space(upa);
7598 upma = isl_union_pw_multi_aff_empty(space);
7600 if (isl_union_pw_aff_foreach_pw_aff(upa,
7601 &pw_multi_aff_from_pw_aff_entry, &upma) < 0)
7602 upma = isl_union_pw_multi_aff_free(upma);
7604 isl_union_pw_aff_free(upa);
7605 return upma;
7608 /* Compute the set of elements in the domain of "pa" where it is zero and
7609 * add this set to "uset".
7611 static isl_stat zero_union_set(__isl_take isl_pw_aff *pa, void *user)
7613 isl_union_set **uset = (isl_union_set **)user;
7615 *uset = isl_union_set_add_set(*uset, isl_pw_aff_zero_set(pa));
7617 return *uset ? isl_stat_ok : isl_stat_error;
7620 /* Return a union set containing those elements in the domain
7621 * of "upa" where it is zero.
7623 __isl_give isl_union_set *isl_union_pw_aff_zero_union_set(
7624 __isl_take isl_union_pw_aff *upa)
7626 isl_union_set *zero;
7628 zero = isl_union_set_empty(isl_union_pw_aff_get_space(upa));
7629 if (isl_union_pw_aff_foreach_pw_aff(upa, &zero_union_set, &zero) < 0)
7630 zero = isl_union_set_free(zero);
7632 isl_union_pw_aff_free(upa);
7633 return zero;
7636 /* Convert "pa" to an isl_map and add it to *umap.
7638 static isl_stat map_from_pw_aff_entry(__isl_take isl_pw_aff *pa, void *user)
7640 isl_union_map **umap = user;
7641 isl_map *map;
7643 map = isl_map_from_pw_aff(pa);
7644 *umap = isl_union_map_add_map(*umap, map);
7646 return *umap ? isl_stat_ok : isl_stat_error;
7649 /* Construct a union map mapping the domain of the union
7650 * piecewise affine expression to its range, with the single output dimension
7651 * equated to the corresponding affine expressions on their cells.
7653 __isl_give isl_union_map *isl_union_map_from_union_pw_aff(
7654 __isl_take isl_union_pw_aff *upa)
7656 isl_space *space;
7657 isl_union_map *umap;
7659 if (!upa)
7660 return NULL;
7662 space = isl_union_pw_aff_get_space(upa);
7663 umap = isl_union_map_empty(space);
7665 if (isl_union_pw_aff_foreach_pw_aff(upa, &map_from_pw_aff_entry,
7666 &umap) < 0)
7667 umap = isl_union_map_free(umap);
7669 isl_union_pw_aff_free(upa);
7670 return umap;
7673 /* Internal data structure for isl_union_pw_aff_pullback_union_pw_multi_aff.
7674 * upma is the function that is plugged in.
7675 * pa is the current part of the function in which upma is plugged in.
7676 * res collects the results.
7678 struct isl_union_pw_aff_pullback_upma_data {
7679 isl_union_pw_multi_aff *upma;
7680 isl_pw_aff *pa;
7681 isl_union_pw_aff *res;
7684 /* Check if "pma" can be plugged into data->pa.
7685 * If so, perform the pullback and add the result to data->res.
7687 static isl_stat pa_pb_pma(__isl_take isl_pw_multi_aff *pma, void *user)
7689 struct isl_union_pw_aff_pullback_upma_data *data = user;
7690 isl_pw_aff *pa;
7692 if (!isl_space_tuple_is_equal(data->pa->dim, isl_dim_in,
7693 pma->dim, isl_dim_out)) {
7694 isl_pw_multi_aff_free(pma);
7695 return isl_stat_ok;
7698 pa = isl_pw_aff_copy(data->pa);
7699 pa = isl_pw_aff_pullback_pw_multi_aff(pa, pma);
7701 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7703 return data->res ? isl_stat_ok : isl_stat_error;
7706 /* Check if any of the elements of data->upma can be plugged into pa,
7707 * add if so add the result to data->res.
7709 static isl_stat upa_pb_upma(__isl_take isl_pw_aff *pa, void *user)
7711 struct isl_union_pw_aff_pullback_upma_data *data = user;
7712 isl_stat r;
7714 data->pa = pa;
7715 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma,
7716 &pa_pb_pma, data);
7717 isl_pw_aff_free(pa);
7719 return r;
7722 /* Compute the pullback of "upa" by the function represented by "upma".
7723 * In other words, plug in "upma" in "upa". The result contains
7724 * expressions defined over the domain space of "upma".
7726 * Run over all pairs of elements in "upa" and "upma", perform
7727 * the pullback when appropriate and collect the results.
7728 * If the hash value were based on the domain space rather than
7729 * the function space, then we could run through all elements
7730 * of "upma" and directly pick out the corresponding element of "upa".
7732 __isl_give isl_union_pw_aff *isl_union_pw_aff_pullback_union_pw_multi_aff(
7733 __isl_take isl_union_pw_aff *upa,
7734 __isl_take isl_union_pw_multi_aff *upma)
7736 struct isl_union_pw_aff_pullback_upma_data data = { NULL, NULL };
7737 isl_space *space;
7739 space = isl_union_pw_multi_aff_get_space(upma);
7740 upa = isl_union_pw_aff_align_params(upa, space);
7741 space = isl_union_pw_aff_get_space(upa);
7742 upma = isl_union_pw_multi_aff_align_params(upma, space);
7744 if (!upa || !upma)
7745 goto error;
7747 data.upma = upma;
7748 data.res = isl_union_pw_aff_alloc_same_size(upa);
7749 if (isl_union_pw_aff_foreach_pw_aff(upa, &upa_pb_upma, &data) < 0)
7750 data.res = isl_union_pw_aff_free(data.res);
7752 isl_union_pw_aff_free(upa);
7753 isl_union_pw_multi_aff_free(upma);
7754 return data.res;
7755 error:
7756 isl_union_pw_aff_free(upa);
7757 isl_union_pw_multi_aff_free(upma);
7758 return NULL;
7761 #undef BASE
7762 #define BASE union_pw_aff
7763 #undef DOMBASE
7764 #define DOMBASE union_set
7766 #define NO_MOVE_DIMS
7767 #define NO_DIMS
7768 #define NO_DOMAIN
7769 #define NO_PRODUCT
7770 #define NO_SPLICE
7771 #define NO_ZERO
7772 #define NO_IDENTITY
7773 #define NO_GIST
7775 #include <isl_multi_templ.c>
7776 #include <isl_multi_apply_set.c>
7777 #include <isl_multi_apply_union_set.c>
7778 #include <isl_multi_coalesce.c>
7779 #include <isl_multi_floor.c>
7780 #include <isl_multi_gist.c>
7781 #include <isl_multi_intersect.c>
7783 /* Construct a multiple union piecewise affine expression
7784 * in the given space with value zero in each of the output dimensions.
7786 * Since there is no canonical zero value for
7787 * a union piecewise affine expression, we can only construct
7788 * zero-dimensional "zero" value.
7790 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_zero(
7791 __isl_take isl_space *space)
7793 if (!space)
7794 return NULL;
7796 if (!isl_space_is_set(space))
7797 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7798 "expecting set space", goto error);
7799 if (isl_space_dim(space , isl_dim_out) != 0)
7800 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7801 "expecting 0D space", goto error);
7803 return isl_multi_union_pw_aff_alloc(space);
7804 error:
7805 isl_space_free(space);
7806 return NULL;
7809 /* Compute the sum of "mupa1" and "mupa2" on the union of their domains,
7810 * with the actual sum on the shared domain and
7811 * the defined expression on the symmetric difference of the domains.
7813 * We simply iterate over the elements in both arguments and
7814 * call isl_union_pw_aff_union_add on each of them.
7816 static __isl_give isl_multi_union_pw_aff *
7817 isl_multi_union_pw_aff_union_add_aligned(
7818 __isl_take isl_multi_union_pw_aff *mupa1,
7819 __isl_take isl_multi_union_pw_aff *mupa2)
7821 return isl_multi_union_pw_aff_bin_op(mupa1, mupa2,
7822 &isl_union_pw_aff_union_add);
7825 /* Compute the sum of "mupa1" and "mupa2" on the union of their domains,
7826 * with the actual sum on the shared domain and
7827 * the defined expression on the symmetric difference of the domains.
7829 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_union_add(
7830 __isl_take isl_multi_union_pw_aff *mupa1,
7831 __isl_take isl_multi_union_pw_aff *mupa2)
7833 return isl_multi_union_pw_aff_align_params_multi_multi_and(mupa1, mupa2,
7834 &isl_multi_union_pw_aff_union_add_aligned);
7837 /* Construct and return a multi union piecewise affine expression
7838 * that is equal to the given multi affine expression.
7840 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_aff(
7841 __isl_take isl_multi_aff *ma)
7843 isl_multi_pw_aff *mpa;
7845 mpa = isl_multi_pw_aff_from_multi_aff(ma);
7846 return isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
7849 /* Construct and return a multi union piecewise affine expression
7850 * that is equal to the given multi piecewise affine expression.
7852 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_pw_aff(
7853 __isl_take isl_multi_pw_aff *mpa)
7855 int i, n;
7856 isl_space *space;
7857 isl_multi_union_pw_aff *mupa;
7859 if (!mpa)
7860 return NULL;
7862 space = isl_multi_pw_aff_get_space(mpa);
7863 space = isl_space_range(space);
7864 mupa = isl_multi_union_pw_aff_alloc(space);
7866 n = isl_multi_pw_aff_dim(mpa, isl_dim_out);
7867 for (i = 0; i < n; ++i) {
7868 isl_pw_aff *pa;
7869 isl_union_pw_aff *upa;
7871 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
7872 upa = isl_union_pw_aff_from_pw_aff(pa);
7873 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
7876 isl_multi_pw_aff_free(mpa);
7878 return mupa;
7881 /* Extract the range space of "pma" and assign it to *space.
7882 * If *space has already been set (through a previous call to this function),
7883 * then check that the range space is the same.
7885 static isl_stat extract_space(__isl_take isl_pw_multi_aff *pma, void *user)
7887 isl_space **space = user;
7888 isl_space *pma_space;
7889 isl_bool equal;
7891 pma_space = isl_space_range(isl_pw_multi_aff_get_space(pma));
7892 isl_pw_multi_aff_free(pma);
7894 if (!pma_space)
7895 return isl_stat_error;
7896 if (!*space) {
7897 *space = pma_space;
7898 return isl_stat_ok;
7901 equal = isl_space_is_equal(pma_space, *space);
7902 isl_space_free(pma_space);
7904 if (equal < 0)
7905 return isl_stat_error;
7906 if (!equal)
7907 isl_die(isl_space_get_ctx(*space), isl_error_invalid,
7908 "range spaces not the same", return isl_stat_error);
7909 return isl_stat_ok;
7912 /* Construct and return a multi union piecewise affine expression
7913 * that is equal to the given union piecewise multi affine expression.
7915 * In order to be able to perform the conversion, the input
7916 * needs to be non-empty and may only involve a single range space.
7918 __isl_give isl_multi_union_pw_aff *
7919 isl_multi_union_pw_aff_from_union_pw_multi_aff(
7920 __isl_take isl_union_pw_multi_aff *upma)
7922 isl_space *space = NULL;
7923 isl_multi_union_pw_aff *mupa;
7924 int i, n;
7926 if (!upma)
7927 return NULL;
7928 if (isl_union_pw_multi_aff_n_pw_multi_aff(upma) == 0)
7929 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
7930 "cannot extract range space from empty input",
7931 goto error);
7932 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma, &extract_space,
7933 &space) < 0)
7934 goto error;
7936 if (!space)
7937 goto error;
7939 n = isl_space_dim(space, isl_dim_set);
7940 mupa = isl_multi_union_pw_aff_alloc(space);
7942 for (i = 0; i < n; ++i) {
7943 isl_union_pw_aff *upa;
7945 upa = isl_union_pw_multi_aff_get_union_pw_aff(upma, i);
7946 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
7949 isl_union_pw_multi_aff_free(upma);
7950 return mupa;
7951 error:
7952 isl_space_free(space);
7953 isl_union_pw_multi_aff_free(upma);
7954 return NULL;
7957 /* Try and create an isl_multi_union_pw_aff that is equivalent
7958 * to the given isl_union_map.
7959 * The isl_union_map is required to be single-valued in each space.
7960 * Moreover, it cannot be empty and all range spaces need to be the same.
7961 * Otherwise, an error is produced.
7963 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_union_map(
7964 __isl_take isl_union_map *umap)
7966 isl_union_pw_multi_aff *upma;
7968 upma = isl_union_pw_multi_aff_from_union_map(umap);
7969 return isl_multi_union_pw_aff_from_union_pw_multi_aff(upma);
7972 /* Return a multiple union piecewise affine expression
7973 * that is equal to "mv" on "domain", assuming "domain" and "mv"
7974 * have been aligned.
7976 static __isl_give isl_multi_union_pw_aff *
7977 isl_multi_union_pw_aff_multi_val_on_domain_aligned(
7978 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
7980 int i, n;
7981 isl_space *space;
7982 isl_multi_union_pw_aff *mupa;
7984 if (!domain || !mv)
7985 goto error;
7987 n = isl_multi_val_dim(mv, isl_dim_set);
7988 space = isl_multi_val_get_space(mv);
7989 mupa = isl_multi_union_pw_aff_alloc(space);
7990 for (i = 0; i < n; ++i) {
7991 isl_val *v;
7992 isl_union_pw_aff *upa;
7994 v = isl_multi_val_get_val(mv, i);
7995 upa = isl_union_pw_aff_val_on_domain(isl_union_set_copy(domain),
7997 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8000 isl_union_set_free(domain);
8001 isl_multi_val_free(mv);
8002 return mupa;
8003 error:
8004 isl_union_set_free(domain);
8005 isl_multi_val_free(mv);
8006 return NULL;
8009 /* Return a multiple union piecewise affine expression
8010 * that is equal to "mv" on "domain".
8012 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_val_on_domain(
8013 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
8015 if (!domain || !mv)
8016 goto error;
8017 if (isl_space_match(domain->dim, isl_dim_param,
8018 mv->space, isl_dim_param))
8019 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(
8020 domain, mv);
8021 domain = isl_union_set_align_params(domain,
8022 isl_multi_val_get_space(mv));
8023 mv = isl_multi_val_align_params(mv, isl_union_set_get_space(domain));
8024 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(domain, mv);
8025 error:
8026 isl_union_set_free(domain);
8027 isl_multi_val_free(mv);
8028 return NULL;
8031 /* Return a multiple union piecewise affine expression
8032 * that is equal to "ma" on "domain", assuming "domain" and "ma"
8033 * have been aligned.
8035 static __isl_give isl_multi_union_pw_aff *
8036 isl_multi_union_pw_aff_multi_aff_on_domain_aligned(
8037 __isl_take isl_union_set *domain, __isl_take isl_multi_aff *ma)
8039 int i, n;
8040 isl_space *space;
8041 isl_multi_union_pw_aff *mupa;
8043 if (!domain || !ma)
8044 goto error;
8046 n = isl_multi_aff_dim(ma, isl_dim_set);
8047 space = isl_multi_aff_get_space(ma);
8048 mupa = isl_multi_union_pw_aff_alloc(space);
8049 for (i = 0; i < n; ++i) {
8050 isl_aff *aff;
8051 isl_union_pw_aff *upa;
8053 aff = isl_multi_aff_get_aff(ma, i);
8054 upa = isl_union_pw_aff_aff_on_domain(isl_union_set_copy(domain),
8055 aff);
8056 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8059 isl_union_set_free(domain);
8060 isl_multi_aff_free(ma);
8061 return mupa;
8062 error:
8063 isl_union_set_free(domain);
8064 isl_multi_aff_free(ma);
8065 return NULL;
8068 /* Return a multiple union piecewise affine expression
8069 * that is equal to "ma" on "domain".
8071 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_aff_on_domain(
8072 __isl_take isl_union_set *domain, __isl_take isl_multi_aff *ma)
8074 if (!domain || !ma)
8075 goto error;
8076 if (isl_space_match(domain->dim, isl_dim_param,
8077 ma->space, isl_dim_param))
8078 return isl_multi_union_pw_aff_multi_aff_on_domain_aligned(
8079 domain, ma);
8080 domain = isl_union_set_align_params(domain,
8081 isl_multi_aff_get_space(ma));
8082 ma = isl_multi_aff_align_params(ma, isl_union_set_get_space(domain));
8083 return isl_multi_union_pw_aff_multi_aff_on_domain_aligned(domain, ma);
8084 error:
8085 isl_union_set_free(domain);
8086 isl_multi_aff_free(ma);
8087 return NULL;
8090 /* Return a union set containing those elements in the domains
8091 * of the elements of "mupa" where they are all zero.
8093 __isl_give isl_union_set *isl_multi_union_pw_aff_zero_union_set(
8094 __isl_take isl_multi_union_pw_aff *mupa)
8096 int i, n;
8097 isl_union_pw_aff *upa;
8098 isl_union_set *zero;
8100 if (!mupa)
8101 return NULL;
8103 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8104 if (n == 0)
8105 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8106 "cannot determine zero set "
8107 "of zero-dimensional function", goto error);
8109 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8110 zero = isl_union_pw_aff_zero_union_set(upa);
8112 for (i = 1; i < n; ++i) {
8113 isl_union_set *zero_i;
8115 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8116 zero_i = isl_union_pw_aff_zero_union_set(upa);
8118 zero = isl_union_set_intersect(zero, zero_i);
8121 isl_multi_union_pw_aff_free(mupa);
8122 return zero;
8123 error:
8124 isl_multi_union_pw_aff_free(mupa);
8125 return NULL;
8128 /* Construct a union map mapping the shared domain
8129 * of the union piecewise affine expressions to the range of "mupa"
8130 * with each dimension in the range equated to the
8131 * corresponding union piecewise affine expression.
8133 * The input cannot be zero-dimensional as there is
8134 * no way to extract a domain from a zero-dimensional isl_multi_union_pw_aff.
8136 __isl_give isl_union_map *isl_union_map_from_multi_union_pw_aff(
8137 __isl_take isl_multi_union_pw_aff *mupa)
8139 int i, n;
8140 isl_space *space;
8141 isl_union_map *umap;
8142 isl_union_pw_aff *upa;
8144 if (!mupa)
8145 return NULL;
8147 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8148 if (n == 0)
8149 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8150 "cannot determine domain of zero-dimensional "
8151 "isl_multi_union_pw_aff", goto error);
8153 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8154 umap = isl_union_map_from_union_pw_aff(upa);
8156 for (i = 1; i < n; ++i) {
8157 isl_union_map *umap_i;
8159 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8160 umap_i = isl_union_map_from_union_pw_aff(upa);
8161 umap = isl_union_map_flat_range_product(umap, umap_i);
8164 space = isl_multi_union_pw_aff_get_space(mupa);
8165 umap = isl_union_map_reset_range_space(umap, space);
8167 isl_multi_union_pw_aff_free(mupa);
8168 return umap;
8169 error:
8170 isl_multi_union_pw_aff_free(mupa);
8171 return NULL;
8174 /* Internal data structure for isl_union_pw_multi_aff_reset_range_space.
8175 * "range" is the space from which to set the range space.
8176 * "res" collects the results.
8178 struct isl_union_pw_multi_aff_reset_range_space_data {
8179 isl_space *range;
8180 isl_union_pw_multi_aff *res;
8183 /* Replace the range space of "pma" by the range space of data->range and
8184 * add the result to data->res.
8186 static isl_stat reset_range_space(__isl_take isl_pw_multi_aff *pma, void *user)
8188 struct isl_union_pw_multi_aff_reset_range_space_data *data = user;
8189 isl_space *space;
8191 space = isl_pw_multi_aff_get_space(pma);
8192 space = isl_space_domain(space);
8193 space = isl_space_extend_domain_with_range(space,
8194 isl_space_copy(data->range));
8195 pma = isl_pw_multi_aff_reset_space(pma, space);
8196 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
8198 return data->res ? isl_stat_ok : isl_stat_error;
8201 /* Replace the range space of all the piecewise affine expressions in "upma" by
8202 * the range space of "space".
8204 * This assumes that all these expressions have the same output dimension.
8206 * Since the spaces of the expressions change, so do their hash values.
8207 * We therefore need to create a new isl_union_pw_multi_aff.
8208 * Note that the hash value is currently computed based on the entire
8209 * space even though there can only be a single expression with a given
8210 * domain space.
8212 static __isl_give isl_union_pw_multi_aff *
8213 isl_union_pw_multi_aff_reset_range_space(
8214 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_space *space)
8216 struct isl_union_pw_multi_aff_reset_range_space_data data = { space };
8217 isl_space *space_upma;
8219 space_upma = isl_union_pw_multi_aff_get_space(upma);
8220 data.res = isl_union_pw_multi_aff_empty(space_upma);
8221 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
8222 &reset_range_space, &data) < 0)
8223 data.res = isl_union_pw_multi_aff_free(data.res);
8225 isl_space_free(space);
8226 isl_union_pw_multi_aff_free(upma);
8227 return data.res;
8230 /* Construct and return a union piecewise multi affine expression
8231 * that is equal to the given multi union piecewise affine expression.
8233 * In order to be able to perform the conversion, the input
8234 * needs to have a least one output dimension.
8236 __isl_give isl_union_pw_multi_aff *
8237 isl_union_pw_multi_aff_from_multi_union_pw_aff(
8238 __isl_take isl_multi_union_pw_aff *mupa)
8240 int i, n;
8241 isl_space *space;
8242 isl_union_pw_multi_aff *upma;
8243 isl_union_pw_aff *upa;
8245 if (!mupa)
8246 return NULL;
8248 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8249 if (n == 0)
8250 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8251 "cannot determine domain of zero-dimensional "
8252 "isl_multi_union_pw_aff", goto error);
8254 space = isl_multi_union_pw_aff_get_space(mupa);
8255 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8256 upma = isl_union_pw_multi_aff_from_union_pw_aff(upa);
8258 for (i = 1; i < n; ++i) {
8259 isl_union_pw_multi_aff *upma_i;
8261 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8262 upma_i = isl_union_pw_multi_aff_from_union_pw_aff(upa);
8263 upma = isl_union_pw_multi_aff_flat_range_product(upma, upma_i);
8266 upma = isl_union_pw_multi_aff_reset_range_space(upma, space);
8268 isl_multi_union_pw_aff_free(mupa);
8269 return upma;
8270 error:
8271 isl_multi_union_pw_aff_free(mupa);
8272 return NULL;
8275 /* Intersect the range of "mupa" with "range".
8276 * That is, keep only those domain elements that have a function value
8277 * in "range".
8279 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_intersect_range(
8280 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_set *range)
8282 isl_union_pw_multi_aff *upma;
8283 isl_union_set *domain;
8284 isl_space *space;
8285 int n;
8286 int match;
8288 if (!mupa || !range)
8289 goto error;
8291 space = isl_set_get_space(range);
8292 match = isl_space_tuple_is_equal(mupa->space, isl_dim_set,
8293 space, isl_dim_set);
8294 isl_space_free(space);
8295 if (match < 0)
8296 goto error;
8297 if (!match)
8298 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8299 "space don't match", goto error);
8300 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8301 if (n == 0)
8302 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8303 "cannot intersect range of zero-dimensional "
8304 "isl_multi_union_pw_aff", goto error);
8306 upma = isl_union_pw_multi_aff_from_multi_union_pw_aff(
8307 isl_multi_union_pw_aff_copy(mupa));
8308 domain = isl_union_set_from_set(range);
8309 domain = isl_union_set_preimage_union_pw_multi_aff(domain, upma);
8310 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, domain);
8312 return mupa;
8313 error:
8314 isl_multi_union_pw_aff_free(mupa);
8315 isl_set_free(range);
8316 return NULL;
8319 /* Return the shared domain of the elements of "mupa".
8321 __isl_give isl_union_set *isl_multi_union_pw_aff_domain(
8322 __isl_take isl_multi_union_pw_aff *mupa)
8324 int i, n;
8325 isl_union_pw_aff *upa;
8326 isl_union_set *dom;
8328 if (!mupa)
8329 return NULL;
8331 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8332 if (n == 0)
8333 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8334 "cannot determine domain", goto error);
8336 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8337 dom = isl_union_pw_aff_domain(upa);
8338 for (i = 1; i < n; ++i) {
8339 isl_union_set *dom_i;
8341 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8342 dom_i = isl_union_pw_aff_domain(upa);
8343 dom = isl_union_set_intersect(dom, dom_i);
8346 isl_multi_union_pw_aff_free(mupa);
8347 return dom;
8348 error:
8349 isl_multi_union_pw_aff_free(mupa);
8350 return NULL;
8353 /* Apply "aff" to "mupa". The space of "mupa" is equal to the domain of "aff".
8354 * In particular, the spaces have been aligned.
8355 * The result is defined over the shared domain of the elements of "mupa"
8357 * We first extract the parametric constant part of "aff" and
8358 * define that over the shared domain.
8359 * Then we iterate over all input dimensions of "aff" and add the corresponding
8360 * multiples of the elements of "mupa".
8361 * Finally, we consider the integer divisions, calling the function
8362 * recursively to obtain an isl_union_pw_aff corresponding to the
8363 * integer division argument.
8365 static __isl_give isl_union_pw_aff *multi_union_pw_aff_apply_aff(
8366 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
8368 int i, n_in, n_div;
8369 isl_union_pw_aff *upa;
8370 isl_union_set *uset;
8371 isl_val *v;
8372 isl_aff *cst;
8374 n_in = isl_aff_dim(aff, isl_dim_in);
8375 n_div = isl_aff_dim(aff, isl_dim_div);
8377 uset = isl_multi_union_pw_aff_domain(isl_multi_union_pw_aff_copy(mupa));
8378 cst = isl_aff_copy(aff);
8379 cst = isl_aff_drop_dims(cst, isl_dim_div, 0, n_div);
8380 cst = isl_aff_drop_dims(cst, isl_dim_in, 0, n_in);
8381 cst = isl_aff_project_domain_on_params(cst);
8382 upa = isl_union_pw_aff_aff_on_domain(uset, cst);
8384 for (i = 0; i < n_in; ++i) {
8385 isl_union_pw_aff *upa_i;
8387 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
8388 continue;
8389 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
8390 upa_i = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8391 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
8392 upa = isl_union_pw_aff_add(upa, upa_i);
8395 for (i = 0; i < n_div; ++i) {
8396 isl_aff *div;
8397 isl_union_pw_aff *upa_i;
8399 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
8400 continue;
8401 div = isl_aff_get_div(aff, i);
8402 upa_i = multi_union_pw_aff_apply_aff(
8403 isl_multi_union_pw_aff_copy(mupa), div);
8404 upa_i = isl_union_pw_aff_floor(upa_i);
8405 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
8406 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
8407 upa = isl_union_pw_aff_add(upa, upa_i);
8410 isl_multi_union_pw_aff_free(mupa);
8411 isl_aff_free(aff);
8413 return upa;
8416 /* Apply "aff" to "mupa". The space of "mupa" needs to be compatible
8417 * with the domain of "aff".
8418 * Furthermore, the dimension of this space needs to be greater than zero.
8419 * The result is defined over the shared domain of the elements of "mupa"
8421 * We perform these checks and then hand over control to
8422 * multi_union_pw_aff_apply_aff.
8424 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_aff(
8425 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
8427 isl_space *space1, *space2;
8428 int equal;
8430 mupa = isl_multi_union_pw_aff_align_params(mupa,
8431 isl_aff_get_space(aff));
8432 aff = isl_aff_align_params(aff, isl_multi_union_pw_aff_get_space(mupa));
8433 if (!mupa || !aff)
8434 goto error;
8436 space1 = isl_multi_union_pw_aff_get_space(mupa);
8437 space2 = isl_aff_get_domain_space(aff);
8438 equal = isl_space_is_equal(space1, space2);
8439 isl_space_free(space1);
8440 isl_space_free(space2);
8441 if (equal < 0)
8442 goto error;
8443 if (!equal)
8444 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
8445 "spaces don't match", goto error);
8446 if (isl_aff_dim(aff, isl_dim_in) == 0)
8447 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
8448 "cannot determine domains", goto error);
8450 return multi_union_pw_aff_apply_aff(mupa, aff);
8451 error:
8452 isl_multi_union_pw_aff_free(mupa);
8453 isl_aff_free(aff);
8454 return NULL;
8457 /* Apply "ma" to "mupa". The space of "mupa" needs to be compatible
8458 * with the domain of "ma".
8459 * Furthermore, the dimension of this space needs to be greater than zero,
8460 * unless the dimension of the target space of "ma" is also zero.
8461 * The result is defined over the shared domain of the elements of "mupa"
8463 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_multi_aff(
8464 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_multi_aff *ma)
8466 isl_space *space1, *space2;
8467 isl_multi_union_pw_aff *res;
8468 int equal;
8469 int i, n_out;
8471 mupa = isl_multi_union_pw_aff_align_params(mupa,
8472 isl_multi_aff_get_space(ma));
8473 ma = isl_multi_aff_align_params(ma,
8474 isl_multi_union_pw_aff_get_space(mupa));
8475 if (!mupa || !ma)
8476 goto error;
8478 space1 = isl_multi_union_pw_aff_get_space(mupa);
8479 space2 = isl_multi_aff_get_domain_space(ma);
8480 equal = isl_space_is_equal(space1, space2);
8481 isl_space_free(space1);
8482 isl_space_free(space2);
8483 if (equal < 0)
8484 goto error;
8485 if (!equal)
8486 isl_die(isl_multi_aff_get_ctx(ma), isl_error_invalid,
8487 "spaces don't match", goto error);
8488 n_out = isl_multi_aff_dim(ma, isl_dim_out);
8489 if (isl_multi_aff_dim(ma, isl_dim_in) == 0 && n_out != 0)
8490 isl_die(isl_multi_aff_get_ctx(ma), isl_error_invalid,
8491 "cannot determine domains", goto error);
8493 space1 = isl_space_range(isl_multi_aff_get_space(ma));
8494 res = isl_multi_union_pw_aff_alloc(space1);
8496 for (i = 0; i < n_out; ++i) {
8497 isl_aff *aff;
8498 isl_union_pw_aff *upa;
8500 aff = isl_multi_aff_get_aff(ma, i);
8501 upa = multi_union_pw_aff_apply_aff(
8502 isl_multi_union_pw_aff_copy(mupa), aff);
8503 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
8506 isl_multi_aff_free(ma);
8507 isl_multi_union_pw_aff_free(mupa);
8508 return res;
8509 error:
8510 isl_multi_union_pw_aff_free(mupa);
8511 isl_multi_aff_free(ma);
8512 return NULL;
8515 /* Apply "pa" to "mupa". The space of "mupa" needs to be compatible
8516 * with the domain of "pa".
8517 * Furthermore, the dimension of this space needs to be greater than zero.
8518 * The result is defined over the shared domain of the elements of "mupa"
8520 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_pw_aff(
8521 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_pw_aff *pa)
8523 int i;
8524 int equal;
8525 isl_space *space, *space2;
8526 isl_union_pw_aff *upa;
8528 mupa = isl_multi_union_pw_aff_align_params(mupa,
8529 isl_pw_aff_get_space(pa));
8530 pa = isl_pw_aff_align_params(pa,
8531 isl_multi_union_pw_aff_get_space(mupa));
8532 if (!mupa || !pa)
8533 goto error;
8535 space = isl_multi_union_pw_aff_get_space(mupa);
8536 space2 = isl_pw_aff_get_domain_space(pa);
8537 equal = isl_space_is_equal(space, space2);
8538 isl_space_free(space);
8539 isl_space_free(space2);
8540 if (equal < 0)
8541 goto error;
8542 if (!equal)
8543 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
8544 "spaces don't match", goto error);
8545 if (isl_pw_aff_dim(pa, isl_dim_in) == 0)
8546 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
8547 "cannot determine domains", goto error);
8549 space = isl_space_params(isl_multi_union_pw_aff_get_space(mupa));
8550 upa = isl_union_pw_aff_empty(space);
8552 for (i = 0; i < pa->n; ++i) {
8553 isl_aff *aff;
8554 isl_set *domain;
8555 isl_multi_union_pw_aff *mupa_i;
8556 isl_union_pw_aff *upa_i;
8558 mupa_i = isl_multi_union_pw_aff_copy(mupa);
8559 domain = isl_set_copy(pa->p[i].set);
8560 mupa_i = isl_multi_union_pw_aff_intersect_range(mupa_i, domain);
8561 aff = isl_aff_copy(pa->p[i].aff);
8562 upa_i = multi_union_pw_aff_apply_aff(mupa_i, aff);
8563 upa = isl_union_pw_aff_union_add(upa, upa_i);
8566 isl_multi_union_pw_aff_free(mupa);
8567 isl_pw_aff_free(pa);
8568 return upa;
8569 error:
8570 isl_multi_union_pw_aff_free(mupa);
8571 isl_pw_aff_free(pa);
8572 return NULL;
8575 /* Apply "pma" to "mupa". The space of "mupa" needs to be compatible
8576 * with the domain of "pma".
8577 * Furthermore, the dimension of this space needs to be greater than zero,
8578 * unless the dimension of the target space of "pma" is also zero.
8579 * The result is defined over the shared domain of the elements of "mupa"
8581 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_pw_multi_aff(
8582 __isl_take isl_multi_union_pw_aff *mupa,
8583 __isl_take isl_pw_multi_aff *pma)
8585 isl_space *space1, *space2;
8586 isl_multi_union_pw_aff *res;
8587 int equal;
8588 int i, n_out;
8590 mupa = isl_multi_union_pw_aff_align_params(mupa,
8591 isl_pw_multi_aff_get_space(pma));
8592 pma = isl_pw_multi_aff_align_params(pma,
8593 isl_multi_union_pw_aff_get_space(mupa));
8594 if (!mupa || !pma)
8595 goto error;
8597 space1 = isl_multi_union_pw_aff_get_space(mupa);
8598 space2 = isl_pw_multi_aff_get_domain_space(pma);
8599 equal = isl_space_is_equal(space1, space2);
8600 isl_space_free(space1);
8601 isl_space_free(space2);
8602 if (equal < 0)
8603 goto error;
8604 if (!equal)
8605 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
8606 "spaces don't match", goto error);
8607 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
8608 if (isl_pw_multi_aff_dim(pma, isl_dim_in) == 0 && n_out != 0)
8609 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
8610 "cannot determine domains", goto error);
8612 space1 = isl_space_range(isl_pw_multi_aff_get_space(pma));
8613 res = isl_multi_union_pw_aff_alloc(space1);
8615 for (i = 0; i < n_out; ++i) {
8616 isl_pw_aff *pa;
8617 isl_union_pw_aff *upa;
8619 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
8620 upa = isl_multi_union_pw_aff_apply_pw_aff(
8621 isl_multi_union_pw_aff_copy(mupa), pa);
8622 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
8625 isl_pw_multi_aff_free(pma);
8626 isl_multi_union_pw_aff_free(mupa);
8627 return res;
8628 error:
8629 isl_multi_union_pw_aff_free(mupa);
8630 isl_pw_multi_aff_free(pma);
8631 return NULL;
8634 /* Compute the pullback of "mupa" by the function represented by "upma".
8635 * In other words, plug in "upma" in "mupa". The result contains
8636 * expressions defined over the domain space of "upma".
8638 * Run over all elements of "mupa" and plug in "upma" in each of them.
8640 __isl_give isl_multi_union_pw_aff *
8641 isl_multi_union_pw_aff_pullback_union_pw_multi_aff(
8642 __isl_take isl_multi_union_pw_aff *mupa,
8643 __isl_take isl_union_pw_multi_aff *upma)
8645 int i, n;
8647 mupa = isl_multi_union_pw_aff_align_params(mupa,
8648 isl_union_pw_multi_aff_get_space(upma));
8649 upma = isl_union_pw_multi_aff_align_params(upma,
8650 isl_multi_union_pw_aff_get_space(mupa));
8651 if (!mupa || !upma)
8652 goto error;
8654 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8655 for (i = 0; i < n; ++i) {
8656 isl_union_pw_aff *upa;
8658 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8659 upa = isl_union_pw_aff_pullback_union_pw_multi_aff(upa,
8660 isl_union_pw_multi_aff_copy(upma));
8661 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8664 isl_union_pw_multi_aff_free(upma);
8665 return mupa;
8666 error:
8667 isl_multi_union_pw_aff_free(mupa);
8668 isl_union_pw_multi_aff_free(upma);
8669 return NULL;
8672 /* Extract the sequence of elements in "mupa" with domain space "space"
8673 * (ignoring parameters).
8675 * For the elements of "mupa" that are not defined on the specified space,
8676 * the corresponding element in the result is empty.
8678 __isl_give isl_multi_pw_aff *isl_multi_union_pw_aff_extract_multi_pw_aff(
8679 __isl_keep isl_multi_union_pw_aff *mupa, __isl_take isl_space *space)
8681 int i, n;
8682 isl_space *space_mpa = NULL;
8683 isl_multi_pw_aff *mpa;
8685 if (!mupa || !space)
8686 goto error;
8688 space_mpa = isl_multi_union_pw_aff_get_space(mupa);
8689 if (!isl_space_match(space_mpa, isl_dim_param, space, isl_dim_param)) {
8690 space = isl_space_drop_dims(space, isl_dim_param,
8691 0, isl_space_dim(space, isl_dim_param));
8692 space = isl_space_align_params(space,
8693 isl_space_copy(space_mpa));
8694 if (!space)
8695 goto error;
8697 space_mpa = isl_space_map_from_domain_and_range(isl_space_copy(space),
8698 space_mpa);
8699 mpa = isl_multi_pw_aff_alloc(space_mpa);
8701 space = isl_space_from_domain(space);
8702 space = isl_space_add_dims(space, isl_dim_out, 1);
8703 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8704 for (i = 0; i < n; ++i) {
8705 isl_union_pw_aff *upa;
8706 isl_pw_aff *pa;
8708 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8709 pa = isl_union_pw_aff_extract_pw_aff(upa,
8710 isl_space_copy(space));
8711 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
8712 isl_union_pw_aff_free(upa);
8715 isl_space_free(space);
8716 return mpa;
8717 error:
8718 isl_space_free(space_mpa);
8719 isl_space_free(space);
8720 return NULL;