add exported isl_aff_bind_id
[isl.git] / isl_aff.c
blobc5e61bfa543f0278a578717b2163591cdd6d389e
1 /*
2 * Copyright 2011 INRIA Saclay
3 * Copyright 2011 Sven Verdoolaege
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2018 Cerebras Systems
8 * Use of this software is governed by the MIT license
10 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
11 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
12 * 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
14 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
15 * B.P. 105 - 78153 Le Chesnay, France
16 * and Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA
19 #include <isl_ctx_private.h>
20 #include <isl_map_private.h>
21 #include <isl_union_map_private.h>
22 #include <isl_aff_private.h>
23 #include <isl_space_private.h>
24 #include <isl_local_space_private.h>
25 #include <isl_vec_private.h>
26 #include <isl_mat_private.h>
27 #include <isl/id.h>
28 #include <isl/constraint.h>
29 #include <isl_seq.h>
30 #include <isl/set.h>
31 #include <isl_val_private.h>
32 #include <isl_point_private.h>
33 #include <isl_config.h>
35 #undef EL_BASE
36 #define EL_BASE aff
38 #include <isl_list_templ.c>
40 #undef EL_BASE
41 #define EL_BASE pw_aff
43 #include <isl_list_templ.c>
45 #undef EL_BASE
46 #define EL_BASE pw_multi_aff
48 #include <isl_list_templ.c>
50 #undef EL_BASE
51 #define EL_BASE union_pw_aff
53 #include <isl_list_templ.c>
55 #undef EL_BASE
56 #define EL_BASE union_pw_multi_aff
58 #include <isl_list_templ.c>
60 __isl_give isl_aff *isl_aff_alloc_vec(__isl_take isl_local_space *ls,
61 __isl_take isl_vec *v)
63 isl_aff *aff;
65 if (!ls || !v)
66 goto error;
68 aff = isl_calloc_type(v->ctx, struct isl_aff);
69 if (!aff)
70 goto error;
72 aff->ref = 1;
73 aff->ls = ls;
74 aff->v = v;
76 return aff;
77 error:
78 isl_local_space_free(ls);
79 isl_vec_free(v);
80 return NULL;
83 __isl_give isl_aff *isl_aff_alloc(__isl_take isl_local_space *ls)
85 isl_ctx *ctx;
86 isl_vec *v;
87 isl_size total;
89 if (!ls)
90 return NULL;
92 ctx = isl_local_space_get_ctx(ls);
93 if (!isl_local_space_divs_known(ls))
94 isl_die(ctx, isl_error_invalid, "local space has unknown divs",
95 goto error);
96 if (!isl_local_space_is_set(ls))
97 isl_die(ctx, isl_error_invalid,
98 "domain of affine expression should be a set",
99 goto error);
101 total = isl_local_space_dim(ls, isl_dim_all);
102 if (total < 0)
103 goto error;
104 v = isl_vec_alloc(ctx, 1 + 1 + total);
105 return isl_aff_alloc_vec(ls, v);
106 error:
107 isl_local_space_free(ls);
108 return NULL;
111 __isl_give isl_aff *isl_aff_zero_on_domain(__isl_take isl_local_space *ls)
113 isl_aff *aff;
115 aff = isl_aff_alloc(ls);
116 if (!aff)
117 return NULL;
119 isl_int_set_si(aff->v->el[0], 1);
120 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
122 return aff;
125 /* Return a piecewise affine expression defined on the specified domain
126 * that is equal to zero.
128 __isl_give isl_pw_aff *isl_pw_aff_zero_on_domain(__isl_take isl_local_space *ls)
130 return isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls));
133 /* Return an affine expression defined on the specified domain
134 * that represents NaN.
136 __isl_give isl_aff *isl_aff_nan_on_domain(__isl_take isl_local_space *ls)
138 isl_aff *aff;
140 aff = isl_aff_alloc(ls);
141 if (!aff)
142 return NULL;
144 isl_seq_clr(aff->v->el, aff->v->size);
146 return aff;
149 /* Return a piecewise affine expression defined on the specified domain
150 * that represents NaN.
152 __isl_give isl_pw_aff *isl_pw_aff_nan_on_domain(__isl_take isl_local_space *ls)
154 return isl_pw_aff_from_aff(isl_aff_nan_on_domain(ls));
157 /* Return an affine expression that is equal to "val" on
158 * domain local space "ls".
160 __isl_give isl_aff *isl_aff_val_on_domain(__isl_take isl_local_space *ls,
161 __isl_take isl_val *val)
163 isl_aff *aff;
165 if (!ls || !val)
166 goto error;
167 if (!isl_val_is_rat(val))
168 isl_die(isl_val_get_ctx(val), isl_error_invalid,
169 "expecting rational value", goto error);
171 aff = isl_aff_alloc(isl_local_space_copy(ls));
172 if (!aff)
173 goto error;
175 isl_seq_clr(aff->v->el + 2, aff->v->size - 2);
176 isl_int_set(aff->v->el[1], val->n);
177 isl_int_set(aff->v->el[0], val->d);
179 isl_local_space_free(ls);
180 isl_val_free(val);
181 return aff;
182 error:
183 isl_local_space_free(ls);
184 isl_val_free(val);
185 return NULL;
188 /* Return an affine expression that is equal to the specified dimension
189 * in "ls".
191 __isl_give isl_aff *isl_aff_var_on_domain(__isl_take isl_local_space *ls,
192 enum isl_dim_type type, unsigned pos)
194 isl_space *space;
195 isl_aff *aff;
197 if (!ls)
198 return NULL;
200 space = isl_local_space_get_space(ls);
201 if (!space)
202 goto error;
203 if (isl_space_is_map(space))
204 isl_die(isl_space_get_ctx(space), isl_error_invalid,
205 "expecting (parameter) set space", goto error);
206 if (isl_local_space_check_range(ls, type, pos, 1) < 0)
207 goto error;
209 isl_space_free(space);
210 aff = isl_aff_alloc(ls);
211 if (!aff)
212 return NULL;
214 pos += isl_local_space_offset(aff->ls, type);
216 isl_int_set_si(aff->v->el[0], 1);
217 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
218 isl_int_set_si(aff->v->el[1 + pos], 1);
220 return aff;
221 error:
222 isl_local_space_free(ls);
223 isl_space_free(space);
224 return NULL;
227 /* Return a piecewise affine expression that is equal to
228 * the specified dimension in "ls".
230 __isl_give isl_pw_aff *isl_pw_aff_var_on_domain(__isl_take isl_local_space *ls,
231 enum isl_dim_type type, unsigned pos)
233 return isl_pw_aff_from_aff(isl_aff_var_on_domain(ls, type, pos));
236 /* Return an affine expression that is equal to the parameter
237 * in the domain space "space" with identifier "id".
239 __isl_give isl_aff *isl_aff_param_on_domain_space_id(
240 __isl_take isl_space *space, __isl_take isl_id *id)
242 int pos;
243 isl_local_space *ls;
245 if (!space || !id)
246 goto error;
247 pos = isl_space_find_dim_by_id(space, isl_dim_param, id);
248 if (pos < 0)
249 isl_die(isl_space_get_ctx(space), isl_error_invalid,
250 "parameter not found in space", goto error);
251 isl_id_free(id);
252 ls = isl_local_space_from_space(space);
253 return isl_aff_var_on_domain(ls, isl_dim_param, pos);
254 error:
255 isl_space_free(space);
256 isl_id_free(id);
257 return NULL;
260 __isl_give isl_aff *isl_aff_copy(__isl_keep isl_aff *aff)
262 if (!aff)
263 return NULL;
265 aff->ref++;
266 return aff;
269 __isl_give isl_aff *isl_aff_dup(__isl_keep isl_aff *aff)
271 if (!aff)
272 return NULL;
274 return isl_aff_alloc_vec(isl_local_space_copy(aff->ls),
275 isl_vec_copy(aff->v));
278 __isl_give isl_aff *isl_aff_cow(__isl_take isl_aff *aff)
280 if (!aff)
281 return NULL;
283 if (aff->ref == 1)
284 return aff;
285 aff->ref--;
286 return isl_aff_dup(aff);
289 __isl_null isl_aff *isl_aff_free(__isl_take isl_aff *aff)
291 if (!aff)
292 return NULL;
294 if (--aff->ref > 0)
295 return NULL;
297 isl_local_space_free(aff->ls);
298 isl_vec_free(aff->v);
300 free(aff);
302 return NULL;
305 isl_ctx *isl_aff_get_ctx(__isl_keep isl_aff *aff)
307 return aff ? isl_local_space_get_ctx(aff->ls) : NULL;
310 /* Return a hash value that digests "aff".
312 uint32_t isl_aff_get_hash(__isl_keep isl_aff *aff)
314 uint32_t hash, ls_hash, v_hash;
316 if (!aff)
317 return 0;
319 hash = isl_hash_init();
320 ls_hash = isl_local_space_get_hash(aff->ls);
321 isl_hash_hash(hash, ls_hash);
322 v_hash = isl_vec_get_hash(aff->v);
323 isl_hash_hash(hash, v_hash);
325 return hash;
328 /* Externally, an isl_aff has a map space, but internally, the
329 * ls field corresponds to the domain of that space.
331 isl_size isl_aff_dim(__isl_keep isl_aff *aff, enum isl_dim_type type)
333 if (!aff)
334 return isl_size_error;
335 if (type == isl_dim_out)
336 return 1;
337 if (type == isl_dim_in)
338 type = isl_dim_set;
339 return isl_local_space_dim(aff->ls, type);
342 /* Return the position of the dimension of the given type and name
343 * in "aff".
344 * Return -1 if no such dimension can be found.
346 int isl_aff_find_dim_by_name(__isl_keep isl_aff *aff, enum isl_dim_type type,
347 const char *name)
349 if (!aff)
350 return -1;
351 if (type == isl_dim_out)
352 return -1;
353 if (type == isl_dim_in)
354 type = isl_dim_set;
355 return isl_local_space_find_dim_by_name(aff->ls, type, name);
358 /* Return the domain space of "aff".
360 static __isl_keep isl_space *isl_aff_peek_domain_space(__isl_keep isl_aff *aff)
362 return aff ? isl_local_space_peek_space(aff->ls) : NULL;
365 __isl_give isl_space *isl_aff_get_domain_space(__isl_keep isl_aff *aff)
367 return isl_space_copy(isl_aff_peek_domain_space(aff));
370 __isl_give isl_space *isl_aff_get_space(__isl_keep isl_aff *aff)
372 isl_space *space;
373 if (!aff)
374 return NULL;
375 space = isl_local_space_get_space(aff->ls);
376 space = isl_space_from_domain(space);
377 space = isl_space_add_dims(space, isl_dim_out, 1);
378 return space;
381 __isl_give isl_local_space *isl_aff_get_domain_local_space(
382 __isl_keep isl_aff *aff)
384 return aff ? isl_local_space_copy(aff->ls) : NULL;
387 __isl_give isl_local_space *isl_aff_get_local_space(__isl_keep isl_aff *aff)
389 isl_local_space *ls;
390 if (!aff)
391 return NULL;
392 ls = isl_local_space_copy(aff->ls);
393 ls = isl_local_space_from_domain(ls);
394 ls = isl_local_space_add_dims(ls, isl_dim_out, 1);
395 return ls;
398 /* Return the local space of the domain of "aff".
399 * This may be either a copy or the local space itself
400 * if there is only one reference to "aff".
401 * This allows the local space to be modified inplace
402 * if both the expression and its local space have only a single reference.
403 * The caller is not allowed to modify "aff" between this call and
404 * a subsequent call to isl_aff_restore_domain_local_space.
405 * The only exception is that isl_aff_free can be called instead.
407 __isl_give isl_local_space *isl_aff_take_domain_local_space(
408 __isl_keep isl_aff *aff)
410 isl_local_space *ls;
412 if (!aff)
413 return NULL;
414 if (aff->ref != 1)
415 return isl_aff_get_domain_local_space(aff);
416 ls = aff->ls;
417 aff->ls = NULL;
418 return ls;
421 /* Set the local space of the domain of "aff" to "ls",
422 * where the local space of "aff" may be missing
423 * due to a preceding call to isl_aff_take_domain_local_space.
424 * However, in this case, "aff" only has a single reference and
425 * then the call to isl_aff_cow has no effect.
427 __isl_give isl_aff *isl_aff_restore_domain_local_space(
428 __isl_keep isl_aff *aff, __isl_take isl_local_space *ls)
430 if (!aff || !ls)
431 goto error;
433 if (aff->ls == ls) {
434 isl_local_space_free(ls);
435 return aff;
438 aff = isl_aff_cow(aff);
439 if (!aff)
440 goto error;
441 isl_local_space_free(aff->ls);
442 aff->ls = ls;
444 return aff;
445 error:
446 isl_aff_free(aff);
447 isl_local_space_free(ls);
448 return NULL;
451 /* Externally, an isl_aff has a map space, but internally, the
452 * ls field corresponds to the domain of that space.
454 const char *isl_aff_get_dim_name(__isl_keep isl_aff *aff,
455 enum isl_dim_type type, unsigned pos)
457 if (!aff)
458 return NULL;
459 if (type == isl_dim_out)
460 return NULL;
461 if (type == isl_dim_in)
462 type = isl_dim_set;
463 return isl_local_space_get_dim_name(aff->ls, type, pos);
466 __isl_give isl_aff *isl_aff_reset_domain_space(__isl_take isl_aff *aff,
467 __isl_take isl_space *dim)
469 aff = isl_aff_cow(aff);
470 if (!aff || !dim)
471 goto error;
473 aff->ls = isl_local_space_reset_space(aff->ls, dim);
474 if (!aff->ls)
475 return isl_aff_free(aff);
477 return aff;
478 error:
479 isl_aff_free(aff);
480 isl_space_free(dim);
481 return NULL;
484 /* Reset the space of "aff". This function is called from isl_pw_templ.c
485 * and doesn't know if the space of an element object is represented
486 * directly or through its domain. It therefore passes along both.
488 __isl_give isl_aff *isl_aff_reset_space_and_domain(__isl_take isl_aff *aff,
489 __isl_take isl_space *space, __isl_take isl_space *domain)
491 isl_space_free(space);
492 return isl_aff_reset_domain_space(aff, domain);
495 /* Reorder the coefficients of the affine expression based
496 * on the given reordering.
497 * The reordering r is assumed to have been extended with the local
498 * variables.
500 static __isl_give isl_vec *vec_reorder(__isl_take isl_vec *vec,
501 __isl_take isl_reordering *r, int n_div)
503 isl_space *space;
504 isl_vec *res;
505 isl_size dim;
506 int i;
508 if (!vec || !r)
509 goto error;
511 space = isl_reordering_peek_space(r);
512 dim = isl_space_dim(space, isl_dim_all);
513 if (dim < 0)
514 goto error;
515 res = isl_vec_alloc(vec->ctx, 2 + dim + n_div);
516 if (!res)
517 goto error;
518 isl_seq_cpy(res->el, vec->el, 2);
519 isl_seq_clr(res->el + 2, res->size - 2);
520 for (i = 0; i < r->len; ++i)
521 isl_int_set(res->el[2 + r->pos[i]], vec->el[2 + i]);
523 isl_reordering_free(r);
524 isl_vec_free(vec);
525 return res;
526 error:
527 isl_vec_free(vec);
528 isl_reordering_free(r);
529 return NULL;
532 /* Reorder the dimensions of the domain of "aff" according
533 * to the given reordering.
535 __isl_give isl_aff *isl_aff_realign_domain(__isl_take isl_aff *aff,
536 __isl_take isl_reordering *r)
538 aff = isl_aff_cow(aff);
539 if (!aff)
540 goto error;
542 r = isl_reordering_extend(r, aff->ls->div->n_row);
543 aff->v = vec_reorder(aff->v, isl_reordering_copy(r),
544 aff->ls->div->n_row);
545 aff->ls = isl_local_space_realign(aff->ls, r);
547 if (!aff->v || !aff->ls)
548 return isl_aff_free(aff);
550 return aff;
551 error:
552 isl_aff_free(aff);
553 isl_reordering_free(r);
554 return NULL;
557 __isl_give isl_aff *isl_aff_align_params(__isl_take isl_aff *aff,
558 __isl_take isl_space *model)
560 isl_bool equal_params;
562 if (!aff || !model)
563 goto error;
565 equal_params = isl_space_has_equal_params(aff->ls->dim, model);
566 if (equal_params < 0)
567 goto error;
568 if (!equal_params) {
569 isl_reordering *exp;
571 exp = isl_parameter_alignment_reordering(aff->ls->dim, model);
572 exp = isl_reordering_extend_space(exp,
573 isl_aff_get_domain_space(aff));
574 aff = isl_aff_realign_domain(aff, exp);
577 isl_space_free(model);
578 return aff;
579 error:
580 isl_space_free(model);
581 isl_aff_free(aff);
582 return NULL;
585 /* Given an affine function "aff" defined over a parameter domain,
586 * convert it to a function defined over a domain corresponding
587 * to "domain".
588 * Any parameters with identifiers in "domain" are reinterpreted
589 * as the corresponding domain dimensions.
591 __isl_give isl_aff *isl_aff_unbind_params_insert_domain(
592 __isl_take isl_aff *aff, __isl_take isl_multi_id *domain)
594 isl_bool is_params;
595 isl_space *space;
596 isl_reordering *r;
598 space = isl_aff_peek_domain_space(aff);
599 is_params = isl_space_is_params(space);
600 if (is_params < 0)
601 domain = isl_multi_id_free(domain);
602 else if (!is_params)
603 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
604 "expecting function with parameter domain",
605 domain = isl_multi_id_free(domain));
606 r = isl_reordering_unbind_params_insert_domain(space, domain);
607 isl_multi_id_free(domain);
609 return isl_aff_realign_domain(aff, r);
612 /* Is "aff" obviously equal to zero?
614 * If the denominator is zero, then "aff" is not equal to zero.
616 isl_bool isl_aff_plain_is_zero(__isl_keep isl_aff *aff)
618 int pos;
620 if (!aff)
621 return isl_bool_error;
623 if (isl_int_is_zero(aff->v->el[0]))
624 return isl_bool_false;
625 pos = isl_seq_first_non_zero(aff->v->el + 1, aff->v->size - 1);
626 return isl_bool_ok(pos < 0);
629 /* Does "aff" represent NaN?
631 isl_bool isl_aff_is_nan(__isl_keep isl_aff *aff)
633 if (!aff)
634 return isl_bool_error;
636 return isl_bool_ok(isl_seq_first_non_zero(aff->v->el, 2) < 0);
639 /* Are "aff1" and "aff2" obviously equal?
641 * NaN is not equal to anything, not even to another NaN.
643 isl_bool isl_aff_plain_is_equal(__isl_keep isl_aff *aff1,
644 __isl_keep isl_aff *aff2)
646 isl_bool equal;
648 if (!aff1 || !aff2)
649 return isl_bool_error;
651 if (isl_aff_is_nan(aff1) || isl_aff_is_nan(aff2))
652 return isl_bool_false;
654 equal = isl_local_space_is_equal(aff1->ls, aff2->ls);
655 if (equal < 0 || !equal)
656 return equal;
658 return isl_vec_is_equal(aff1->v, aff2->v);
661 /* Return the common denominator of "aff" in "v".
663 * We cannot return anything meaningful in case of a NaN.
665 isl_stat isl_aff_get_denominator(__isl_keep isl_aff *aff, isl_int *v)
667 if (!aff)
668 return isl_stat_error;
669 if (isl_aff_is_nan(aff))
670 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
671 "cannot get denominator of NaN", return isl_stat_error);
672 isl_int_set(*v, aff->v->el[0]);
673 return isl_stat_ok;
676 /* Return the common denominator of "aff".
678 __isl_give isl_val *isl_aff_get_denominator_val(__isl_keep isl_aff *aff)
680 isl_ctx *ctx;
682 if (!aff)
683 return NULL;
685 ctx = isl_aff_get_ctx(aff);
686 if (isl_aff_is_nan(aff))
687 return isl_val_nan(ctx);
688 return isl_val_int_from_isl_int(ctx, aff->v->el[0]);
691 /* Return the constant term of "aff".
693 __isl_give isl_val *isl_aff_get_constant_val(__isl_keep isl_aff *aff)
695 isl_ctx *ctx;
696 isl_val *v;
698 if (!aff)
699 return NULL;
701 ctx = isl_aff_get_ctx(aff);
702 if (isl_aff_is_nan(aff))
703 return isl_val_nan(ctx);
704 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1], aff->v->el[0]);
705 return isl_val_normalize(v);
708 /* Return the coefficient of the variable of type "type" at position "pos"
709 * of "aff".
711 __isl_give isl_val *isl_aff_get_coefficient_val(__isl_keep isl_aff *aff,
712 enum isl_dim_type type, int pos)
714 isl_ctx *ctx;
715 isl_val *v;
717 if (!aff)
718 return NULL;
720 ctx = isl_aff_get_ctx(aff);
721 if (type == isl_dim_out)
722 isl_die(ctx, isl_error_invalid,
723 "output/set dimension does not have a coefficient",
724 return NULL);
725 if (type == isl_dim_in)
726 type = isl_dim_set;
728 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
729 return NULL;
731 if (isl_aff_is_nan(aff))
732 return isl_val_nan(ctx);
733 pos += isl_local_space_offset(aff->ls, type);
734 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1 + pos], aff->v->el[0]);
735 return isl_val_normalize(v);
738 /* Return the sign of the coefficient of the variable of type "type"
739 * at position "pos" of "aff".
741 int isl_aff_coefficient_sgn(__isl_keep isl_aff *aff, enum isl_dim_type type,
742 int pos)
744 isl_ctx *ctx;
746 if (!aff)
747 return 0;
749 ctx = isl_aff_get_ctx(aff);
750 if (type == isl_dim_out)
751 isl_die(ctx, isl_error_invalid,
752 "output/set dimension does not have a coefficient",
753 return 0);
754 if (type == isl_dim_in)
755 type = isl_dim_set;
757 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
758 return 0;
760 pos += isl_local_space_offset(aff->ls, type);
761 return isl_int_sgn(aff->v->el[1 + pos]);
764 /* Replace the numerator of the constant term of "aff" by "v".
766 * A NaN is unaffected by this operation.
768 __isl_give isl_aff *isl_aff_set_constant(__isl_take isl_aff *aff, isl_int v)
770 if (!aff)
771 return NULL;
772 if (isl_aff_is_nan(aff))
773 return aff;
774 aff = isl_aff_cow(aff);
775 if (!aff)
776 return NULL;
778 aff->v = isl_vec_cow(aff->v);
779 if (!aff->v)
780 return isl_aff_free(aff);
782 isl_int_set(aff->v->el[1], v);
784 return aff;
787 /* Replace the constant term of "aff" by "v".
789 * A NaN is unaffected by this operation.
791 __isl_give isl_aff *isl_aff_set_constant_val(__isl_take isl_aff *aff,
792 __isl_take isl_val *v)
794 if (!aff || !v)
795 goto error;
797 if (isl_aff_is_nan(aff)) {
798 isl_val_free(v);
799 return aff;
802 if (!isl_val_is_rat(v))
803 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
804 "expecting rational value", goto error);
806 if (isl_int_eq(aff->v->el[1], v->n) &&
807 isl_int_eq(aff->v->el[0], v->d)) {
808 isl_val_free(v);
809 return aff;
812 aff = isl_aff_cow(aff);
813 if (!aff)
814 goto error;
815 aff->v = isl_vec_cow(aff->v);
816 if (!aff->v)
817 goto error;
819 if (isl_int_eq(aff->v->el[0], v->d)) {
820 isl_int_set(aff->v->el[1], v->n);
821 } else if (isl_int_is_one(v->d)) {
822 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
823 } else {
824 isl_seq_scale(aff->v->el + 1,
825 aff->v->el + 1, v->d, aff->v->size - 1);
826 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
827 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
828 aff->v = isl_vec_normalize(aff->v);
829 if (!aff->v)
830 goto error;
833 isl_val_free(v);
834 return aff;
835 error:
836 isl_aff_free(aff);
837 isl_val_free(v);
838 return NULL;
841 /* Add "v" to the constant term of "aff".
843 * A NaN is unaffected by this operation.
845 __isl_give isl_aff *isl_aff_add_constant(__isl_take isl_aff *aff, isl_int v)
847 if (isl_int_is_zero(v))
848 return aff;
850 if (!aff)
851 return NULL;
852 if (isl_aff_is_nan(aff))
853 return aff;
854 aff = isl_aff_cow(aff);
855 if (!aff)
856 return NULL;
858 aff->v = isl_vec_cow(aff->v);
859 if (!aff->v)
860 return isl_aff_free(aff);
862 isl_int_addmul(aff->v->el[1], aff->v->el[0], v);
864 return aff;
867 /* Add "v" to the constant term of "aff".
869 * A NaN is unaffected by this operation.
871 __isl_give isl_aff *isl_aff_add_constant_val(__isl_take isl_aff *aff,
872 __isl_take isl_val *v)
874 if (!aff || !v)
875 goto error;
877 if (isl_aff_is_nan(aff) || isl_val_is_zero(v)) {
878 isl_val_free(v);
879 return aff;
882 if (!isl_val_is_rat(v))
883 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
884 "expecting rational value", goto error);
886 aff = isl_aff_cow(aff);
887 if (!aff)
888 goto error;
890 aff->v = isl_vec_cow(aff->v);
891 if (!aff->v)
892 goto error;
894 if (isl_int_is_one(v->d)) {
895 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
896 } else if (isl_int_eq(aff->v->el[0], v->d)) {
897 isl_int_add(aff->v->el[1], aff->v->el[1], v->n);
898 aff->v = isl_vec_normalize(aff->v);
899 if (!aff->v)
900 goto error;
901 } else {
902 isl_seq_scale(aff->v->el + 1,
903 aff->v->el + 1, v->d, aff->v->size - 1);
904 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
905 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
906 aff->v = isl_vec_normalize(aff->v);
907 if (!aff->v)
908 goto error;
911 isl_val_free(v);
912 return aff;
913 error:
914 isl_aff_free(aff);
915 isl_val_free(v);
916 return NULL;
919 __isl_give isl_aff *isl_aff_add_constant_si(__isl_take isl_aff *aff, int v)
921 isl_int t;
923 isl_int_init(t);
924 isl_int_set_si(t, v);
925 aff = isl_aff_add_constant(aff, t);
926 isl_int_clear(t);
928 return aff;
931 /* Add "v" to the numerator of the constant term of "aff".
933 * A NaN is unaffected by this operation.
935 __isl_give isl_aff *isl_aff_add_constant_num(__isl_take isl_aff *aff, isl_int v)
937 if (isl_int_is_zero(v))
938 return aff;
940 if (!aff)
941 return NULL;
942 if (isl_aff_is_nan(aff))
943 return aff;
944 aff = isl_aff_cow(aff);
945 if (!aff)
946 return NULL;
948 aff->v = isl_vec_cow(aff->v);
949 if (!aff->v)
950 return isl_aff_free(aff);
952 isl_int_add(aff->v->el[1], aff->v->el[1], v);
954 return aff;
957 /* Add "v" to the numerator of the constant term of "aff".
959 * A NaN is unaffected by this operation.
961 __isl_give isl_aff *isl_aff_add_constant_num_si(__isl_take isl_aff *aff, int v)
963 isl_int t;
965 if (v == 0)
966 return aff;
968 isl_int_init(t);
969 isl_int_set_si(t, v);
970 aff = isl_aff_add_constant_num(aff, t);
971 isl_int_clear(t);
973 return aff;
976 /* Replace the numerator of the constant term of "aff" by "v".
978 * A NaN is unaffected by this operation.
980 __isl_give isl_aff *isl_aff_set_constant_si(__isl_take isl_aff *aff, int v)
982 if (!aff)
983 return NULL;
984 if (isl_aff_is_nan(aff))
985 return aff;
986 aff = isl_aff_cow(aff);
987 if (!aff)
988 return NULL;
990 aff->v = isl_vec_cow(aff->v);
991 if (!aff->v)
992 return isl_aff_free(aff);
994 isl_int_set_si(aff->v->el[1], 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(__isl_take isl_aff *aff,
1005 enum isl_dim_type type, int pos, isl_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 (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1018 return isl_aff_free(aff);
1020 if (isl_aff_is_nan(aff))
1021 return aff;
1022 aff = isl_aff_cow(aff);
1023 if (!aff)
1024 return NULL;
1026 aff->v = isl_vec_cow(aff->v);
1027 if (!aff->v)
1028 return isl_aff_free(aff);
1030 pos += isl_local_space_offset(aff->ls, type);
1031 isl_int_set(aff->v->el[1 + pos], v);
1033 return aff;
1036 /* Replace the numerator of the coefficient of the variable of type "type"
1037 * at position "pos" of "aff" by "v".
1039 * A NaN is unaffected by this operation.
1041 __isl_give isl_aff *isl_aff_set_coefficient_si(__isl_take isl_aff *aff,
1042 enum isl_dim_type type, int pos, int v)
1044 if (!aff)
1045 return NULL;
1047 if (type == isl_dim_out)
1048 isl_die(aff->v->ctx, isl_error_invalid,
1049 "output/set dimension does not have a coefficient",
1050 return isl_aff_free(aff));
1051 if (type == isl_dim_in)
1052 type = isl_dim_set;
1054 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1055 return isl_aff_free(aff);
1057 if (isl_aff_is_nan(aff))
1058 return aff;
1059 pos += isl_local_space_offset(aff->ls, type);
1060 if (isl_int_cmp_si(aff->v->el[1 + pos], v) == 0)
1061 return aff;
1063 aff = isl_aff_cow(aff);
1064 if (!aff)
1065 return NULL;
1067 aff->v = isl_vec_cow(aff->v);
1068 if (!aff->v)
1069 return isl_aff_free(aff);
1071 isl_int_set_si(aff->v->el[1 + pos], v);
1073 return aff;
1076 /* Replace the coefficient of the variable of type "type" at position "pos"
1077 * of "aff" by "v".
1079 * A NaN is unaffected by this operation.
1081 __isl_give isl_aff *isl_aff_set_coefficient_val(__isl_take isl_aff *aff,
1082 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1084 if (!aff || !v)
1085 goto error;
1087 if (type == isl_dim_out)
1088 isl_die(aff->v->ctx, isl_error_invalid,
1089 "output/set dimension does not have a coefficient",
1090 goto error);
1091 if (type == isl_dim_in)
1092 type = isl_dim_set;
1094 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1095 return isl_aff_free(aff);
1097 if (isl_aff_is_nan(aff)) {
1098 isl_val_free(v);
1099 return aff;
1101 if (!isl_val_is_rat(v))
1102 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1103 "expecting rational value", goto error);
1105 pos += isl_local_space_offset(aff->ls, type);
1106 if (isl_int_eq(aff->v->el[1 + pos], v->n) &&
1107 isl_int_eq(aff->v->el[0], v->d)) {
1108 isl_val_free(v);
1109 return aff;
1112 aff = isl_aff_cow(aff);
1113 if (!aff)
1114 goto error;
1115 aff->v = isl_vec_cow(aff->v);
1116 if (!aff->v)
1117 goto error;
1119 if (isl_int_eq(aff->v->el[0], v->d)) {
1120 isl_int_set(aff->v->el[1 + pos], v->n);
1121 } else if (isl_int_is_one(v->d)) {
1122 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1123 } else {
1124 isl_seq_scale(aff->v->el + 1,
1125 aff->v->el + 1, v->d, aff->v->size - 1);
1126 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1127 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1128 aff->v = isl_vec_normalize(aff->v);
1129 if (!aff->v)
1130 goto error;
1133 isl_val_free(v);
1134 return aff;
1135 error:
1136 isl_aff_free(aff);
1137 isl_val_free(v);
1138 return NULL;
1141 /* Add "v" to the coefficient of the variable of type "type"
1142 * at position "pos" of "aff".
1144 * A NaN is unaffected by this operation.
1146 __isl_give isl_aff *isl_aff_add_coefficient(__isl_take isl_aff *aff,
1147 enum isl_dim_type type, int pos, isl_int v)
1149 if (!aff)
1150 return NULL;
1152 if (type == isl_dim_out)
1153 isl_die(aff->v->ctx, isl_error_invalid,
1154 "output/set dimension does not have a coefficient",
1155 return isl_aff_free(aff));
1156 if (type == isl_dim_in)
1157 type = isl_dim_set;
1159 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1160 return isl_aff_free(aff);
1162 if (isl_aff_is_nan(aff))
1163 return aff;
1164 aff = isl_aff_cow(aff);
1165 if (!aff)
1166 return NULL;
1168 aff->v = isl_vec_cow(aff->v);
1169 if (!aff->v)
1170 return isl_aff_free(aff);
1172 pos += isl_local_space_offset(aff->ls, type);
1173 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v);
1175 return aff;
1178 /* Add "v" to the coefficient of the variable of type "type"
1179 * at position "pos" of "aff".
1181 * A NaN is unaffected by this operation.
1183 __isl_give isl_aff *isl_aff_add_coefficient_val(__isl_take isl_aff *aff,
1184 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1186 if (!aff || !v)
1187 goto error;
1189 if (isl_val_is_zero(v)) {
1190 isl_val_free(v);
1191 return aff;
1194 if (type == isl_dim_out)
1195 isl_die(aff->v->ctx, isl_error_invalid,
1196 "output/set dimension does not have a coefficient",
1197 goto error);
1198 if (type == isl_dim_in)
1199 type = isl_dim_set;
1201 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1202 goto error;
1204 if (isl_aff_is_nan(aff)) {
1205 isl_val_free(v);
1206 return aff;
1208 if (!isl_val_is_rat(v))
1209 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1210 "expecting rational value", goto error);
1212 aff = isl_aff_cow(aff);
1213 if (!aff)
1214 goto error;
1216 aff->v = isl_vec_cow(aff->v);
1217 if (!aff->v)
1218 goto error;
1220 pos += isl_local_space_offset(aff->ls, type);
1221 if (isl_int_is_one(v->d)) {
1222 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1223 } else if (isl_int_eq(aff->v->el[0], v->d)) {
1224 isl_int_add(aff->v->el[1 + pos], aff->v->el[1 + pos], v->n);
1225 aff->v = isl_vec_normalize(aff->v);
1226 if (!aff->v)
1227 goto error;
1228 } else {
1229 isl_seq_scale(aff->v->el + 1,
1230 aff->v->el + 1, v->d, aff->v->size - 1);
1231 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1232 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1233 aff->v = isl_vec_normalize(aff->v);
1234 if (!aff->v)
1235 goto error;
1238 isl_val_free(v);
1239 return aff;
1240 error:
1241 isl_aff_free(aff);
1242 isl_val_free(v);
1243 return NULL;
1246 __isl_give isl_aff *isl_aff_add_coefficient_si(__isl_take isl_aff *aff,
1247 enum isl_dim_type type, int pos, int v)
1249 isl_int t;
1251 isl_int_init(t);
1252 isl_int_set_si(t, v);
1253 aff = isl_aff_add_coefficient(aff, type, pos, t);
1254 isl_int_clear(t);
1256 return aff;
1259 __isl_give isl_aff *isl_aff_get_div(__isl_keep isl_aff *aff, int pos)
1261 if (!aff)
1262 return NULL;
1264 return isl_local_space_get_div(aff->ls, pos);
1267 /* Return the negation of "aff".
1269 * As a special case, -NaN = NaN.
1271 __isl_give isl_aff *isl_aff_neg(__isl_take isl_aff *aff)
1273 if (!aff)
1274 return NULL;
1275 if (isl_aff_is_nan(aff))
1276 return aff;
1277 aff = isl_aff_cow(aff);
1278 if (!aff)
1279 return NULL;
1280 aff->v = isl_vec_cow(aff->v);
1281 if (!aff->v)
1282 return isl_aff_free(aff);
1284 isl_seq_neg(aff->v->el + 1, aff->v->el + 1, aff->v->size - 1);
1286 return aff;
1289 /* Remove divs from the local space that do not appear in the affine
1290 * expression.
1291 * We currently only remove divs at the end.
1292 * Some intermediate divs may also not appear directly in the affine
1293 * expression, but we would also need to check that no other divs are
1294 * defined in terms of them.
1296 __isl_give isl_aff *isl_aff_remove_unused_divs(__isl_take isl_aff *aff)
1298 int pos;
1299 int off;
1300 isl_size n;
1302 if (!aff)
1303 return NULL;
1305 n = isl_local_space_dim(aff->ls, isl_dim_div);
1306 if (n < 0)
1307 return isl_aff_free(aff);
1308 off = isl_local_space_offset(aff->ls, isl_dim_div);
1310 pos = isl_seq_last_non_zero(aff->v->el + 1 + off, n) + 1;
1311 if (pos == n)
1312 return aff;
1314 aff = isl_aff_cow(aff);
1315 if (!aff)
1316 return NULL;
1318 aff->ls = isl_local_space_drop_dims(aff->ls, isl_dim_div, pos, n - pos);
1319 aff->v = isl_vec_drop_els(aff->v, 1 + off + pos, n - pos);
1320 if (!aff->ls || !aff->v)
1321 return isl_aff_free(aff);
1323 return aff;
1326 /* Look for any divs in the aff->ls with a denominator equal to one
1327 * and plug them into the affine expression and any subsequent divs
1328 * that may reference the div.
1330 static __isl_give isl_aff *plug_in_integral_divs(__isl_take isl_aff *aff)
1332 int i;
1333 isl_size n;
1334 int len;
1335 isl_int v;
1336 isl_vec *vec;
1337 isl_local_space *ls;
1338 unsigned pos;
1340 if (!aff)
1341 return NULL;
1343 n = isl_local_space_dim(aff->ls, isl_dim_div);
1344 if (n < 0)
1345 return isl_aff_free(aff);
1346 len = aff->v->size;
1347 for (i = 0; i < n; ++i) {
1348 if (!isl_int_is_one(aff->ls->div->row[i][0]))
1349 continue;
1350 ls = isl_local_space_copy(aff->ls);
1351 ls = isl_local_space_substitute_seq(ls, isl_dim_div, i,
1352 aff->ls->div->row[i], len, i + 1, n - (i + 1));
1353 vec = isl_vec_copy(aff->v);
1354 vec = isl_vec_cow(vec);
1355 if (!ls || !vec)
1356 goto error;
1358 isl_int_init(v);
1360 pos = isl_local_space_offset(aff->ls, isl_dim_div) + i;
1361 isl_seq_substitute(vec->el, pos, aff->ls->div->row[i],
1362 len, len, v);
1364 isl_int_clear(v);
1366 isl_vec_free(aff->v);
1367 aff->v = vec;
1368 isl_local_space_free(aff->ls);
1369 aff->ls = ls;
1372 return aff;
1373 error:
1374 isl_vec_free(vec);
1375 isl_local_space_free(ls);
1376 return isl_aff_free(aff);
1379 /* Look for any divs j that appear with a unit coefficient inside
1380 * the definitions of other divs i and plug them into the definitions
1381 * of the divs i.
1383 * In particular, an expression of the form
1385 * floor((f(..) + floor(g(..)/n))/m)
1387 * is simplified to
1389 * floor((n * f(..) + g(..))/(n * m))
1391 * This simplification is correct because we can move the expression
1392 * f(..) into the inner floor in the original expression to obtain
1394 * floor(floor((n * f(..) + g(..))/n)/m)
1396 * from which we can derive the simplified expression.
1398 static __isl_give isl_aff *plug_in_unit_divs(__isl_take isl_aff *aff)
1400 int i, j;
1401 isl_size n;
1402 int off;
1404 if (!aff)
1405 return NULL;
1407 n = isl_local_space_dim(aff->ls, isl_dim_div);
1408 if (n < 0)
1409 return isl_aff_free(aff);
1410 off = isl_local_space_offset(aff->ls, isl_dim_div);
1411 for (i = 1; i < n; ++i) {
1412 for (j = 0; j < i; ++j) {
1413 if (!isl_int_is_one(aff->ls->div->row[i][1 + off + j]))
1414 continue;
1415 aff->ls = isl_local_space_substitute_seq(aff->ls,
1416 isl_dim_div, j, aff->ls->div->row[j],
1417 aff->v->size, i, 1);
1418 if (!aff->ls)
1419 return isl_aff_free(aff);
1423 return aff;
1426 /* Swap divs "a" and "b" in "aff", which is assumed to be non-NULL.
1428 * Even though this function is only called on isl_affs with a single
1429 * reference, we are careful to only change aff->v and aff->ls together.
1431 static __isl_give isl_aff *swap_div(__isl_take isl_aff *aff, int a, int b)
1433 unsigned off = isl_local_space_offset(aff->ls, isl_dim_div);
1434 isl_local_space *ls;
1435 isl_vec *v;
1437 ls = isl_local_space_copy(aff->ls);
1438 ls = isl_local_space_swap_div(ls, a, b);
1439 v = isl_vec_copy(aff->v);
1440 v = isl_vec_cow(v);
1441 if (!ls || !v)
1442 goto error;
1444 isl_int_swap(v->el[1 + off + a], v->el[1 + off + b]);
1445 isl_vec_free(aff->v);
1446 aff->v = v;
1447 isl_local_space_free(aff->ls);
1448 aff->ls = ls;
1450 return aff;
1451 error:
1452 isl_vec_free(v);
1453 isl_local_space_free(ls);
1454 return isl_aff_free(aff);
1457 /* Merge divs "a" and "b" in "aff", which is assumed to be non-NULL.
1459 * We currently do not actually remove div "b", but simply add its
1460 * coefficient to that of "a" and then zero it out.
1462 static __isl_give isl_aff *merge_divs(__isl_take isl_aff *aff, int a, int b)
1464 unsigned off = isl_local_space_offset(aff->ls, isl_dim_div);
1466 if (isl_int_is_zero(aff->v->el[1 + off + b]))
1467 return aff;
1469 aff->v = isl_vec_cow(aff->v);
1470 if (!aff->v)
1471 return isl_aff_free(aff);
1473 isl_int_add(aff->v->el[1 + off + a],
1474 aff->v->el[1 + off + a], aff->v->el[1 + off + b]);
1475 isl_int_set_si(aff->v->el[1 + off + b], 0);
1477 return aff;
1480 /* Sort the divs in the local space of "aff" according to
1481 * the comparison function "cmp_row" in isl_local_space.c,
1482 * combining the coefficients of identical divs.
1484 * Reordering divs does not change the semantics of "aff",
1485 * so there is no need to call isl_aff_cow.
1486 * Moreover, this function is currently only called on isl_affs
1487 * with a single reference.
1489 static __isl_give isl_aff *sort_divs(__isl_take isl_aff *aff)
1491 isl_size n;
1492 int i, j;
1494 n = isl_aff_dim(aff, isl_dim_div);
1495 if (n < 0)
1496 return isl_aff_free(aff);
1497 for (i = 1; i < n; ++i) {
1498 for (j = i - 1; j >= 0; --j) {
1499 int cmp = isl_mat_cmp_div(aff->ls->div, j, j + 1);
1500 if (cmp < 0)
1501 break;
1502 if (cmp == 0)
1503 aff = merge_divs(aff, j, j + 1);
1504 else
1505 aff = swap_div(aff, j, j + 1);
1506 if (!aff)
1507 return NULL;
1511 return aff;
1514 /* Normalize the representation of "aff".
1516 * This function should only be called of "new" isl_affs, i.e.,
1517 * with only a single reference. We therefore do not need to
1518 * worry about affecting other instances.
1520 __isl_give isl_aff *isl_aff_normalize(__isl_take isl_aff *aff)
1522 if (!aff)
1523 return NULL;
1524 aff->v = isl_vec_normalize(aff->v);
1525 if (!aff->v)
1526 return isl_aff_free(aff);
1527 aff = plug_in_integral_divs(aff);
1528 aff = plug_in_unit_divs(aff);
1529 aff = sort_divs(aff);
1530 aff = isl_aff_remove_unused_divs(aff);
1531 return aff;
1534 /* Given f, return floor(f).
1535 * If f is an integer expression, then just return f.
1536 * If f is a constant, then return the constant floor(f).
1537 * Otherwise, if f = g/m, write g = q m + r,
1538 * create a new div d = [r/m] and return the expression q + d.
1539 * The coefficients in r are taken to lie between -m/2 and m/2.
1541 * reduce_div_coefficients performs the same normalization.
1543 * As a special case, floor(NaN) = NaN.
1545 __isl_give isl_aff *isl_aff_floor(__isl_take isl_aff *aff)
1547 int i;
1548 int size;
1549 isl_ctx *ctx;
1550 isl_vec *div;
1552 if (!aff)
1553 return NULL;
1555 if (isl_aff_is_nan(aff))
1556 return aff;
1557 if (isl_int_is_one(aff->v->el[0]))
1558 return aff;
1560 aff = isl_aff_cow(aff);
1561 if (!aff)
1562 return NULL;
1564 aff->v = isl_vec_cow(aff->v);
1565 if (!aff->v)
1566 return isl_aff_free(aff);
1568 if (isl_aff_is_cst(aff)) {
1569 isl_int_fdiv_q(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1570 isl_int_set_si(aff->v->el[0], 1);
1571 return aff;
1574 div = isl_vec_copy(aff->v);
1575 div = isl_vec_cow(div);
1576 if (!div)
1577 return isl_aff_free(aff);
1579 ctx = isl_aff_get_ctx(aff);
1580 isl_int_fdiv_q(aff->v->el[0], aff->v->el[0], ctx->two);
1581 for (i = 1; i < aff->v->size; ++i) {
1582 isl_int_fdiv_r(div->el[i], div->el[i], div->el[0]);
1583 isl_int_fdiv_q(aff->v->el[i], aff->v->el[i], div->el[0]);
1584 if (isl_int_gt(div->el[i], aff->v->el[0])) {
1585 isl_int_sub(div->el[i], div->el[i], div->el[0]);
1586 isl_int_add_ui(aff->v->el[i], aff->v->el[i], 1);
1590 aff->ls = isl_local_space_add_div(aff->ls, div);
1591 if (!aff->ls)
1592 return isl_aff_free(aff);
1594 size = aff->v->size;
1595 aff->v = isl_vec_extend(aff->v, size + 1);
1596 if (!aff->v)
1597 return isl_aff_free(aff);
1598 isl_int_set_si(aff->v->el[0], 1);
1599 isl_int_set_si(aff->v->el[size], 1);
1601 aff = isl_aff_normalize(aff);
1603 return aff;
1606 /* Compute
1608 * aff mod m = aff - m * floor(aff/m)
1610 * with m an integer value.
1612 __isl_give isl_aff *isl_aff_mod_val(__isl_take isl_aff *aff,
1613 __isl_take isl_val *m)
1615 isl_aff *res;
1617 if (!aff || !m)
1618 goto error;
1620 if (!isl_val_is_int(m))
1621 isl_die(isl_val_get_ctx(m), isl_error_invalid,
1622 "expecting integer modulo", goto error);
1624 res = isl_aff_copy(aff);
1625 aff = isl_aff_scale_down_val(aff, isl_val_copy(m));
1626 aff = isl_aff_floor(aff);
1627 aff = isl_aff_scale_val(aff, m);
1628 res = isl_aff_sub(res, aff);
1630 return res;
1631 error:
1632 isl_aff_free(aff);
1633 isl_val_free(m);
1634 return NULL;
1637 /* Compute
1639 * pwaff mod m = pwaff - m * floor(pwaff/m)
1641 __isl_give isl_pw_aff *isl_pw_aff_mod(__isl_take isl_pw_aff *pwaff, isl_int m)
1643 isl_pw_aff *res;
1645 res = isl_pw_aff_copy(pwaff);
1646 pwaff = isl_pw_aff_scale_down(pwaff, m);
1647 pwaff = isl_pw_aff_floor(pwaff);
1648 pwaff = isl_pw_aff_scale(pwaff, m);
1649 res = isl_pw_aff_sub(res, pwaff);
1651 return res;
1654 /* Compute
1656 * pa mod m = pa - m * floor(pa/m)
1658 * with m an integer value.
1660 __isl_give isl_pw_aff *isl_pw_aff_mod_val(__isl_take isl_pw_aff *pa,
1661 __isl_take isl_val *m)
1663 if (!pa || !m)
1664 goto error;
1665 if (!isl_val_is_int(m))
1666 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
1667 "expecting integer modulo", goto error);
1668 pa = isl_pw_aff_mod(pa, m->n);
1669 isl_val_free(m);
1670 return pa;
1671 error:
1672 isl_pw_aff_free(pa);
1673 isl_val_free(m);
1674 return NULL;
1677 /* Given f, return ceil(f).
1678 * If f is an integer expression, then just return f.
1679 * Otherwise, let f be the expression
1681 * e/m
1683 * then return
1685 * floor((e + m - 1)/m)
1687 * As a special case, ceil(NaN) = NaN.
1689 __isl_give isl_aff *isl_aff_ceil(__isl_take isl_aff *aff)
1691 if (!aff)
1692 return NULL;
1694 if (isl_aff_is_nan(aff))
1695 return aff;
1696 if (isl_int_is_one(aff->v->el[0]))
1697 return aff;
1699 aff = isl_aff_cow(aff);
1700 if (!aff)
1701 return NULL;
1702 aff->v = isl_vec_cow(aff->v);
1703 if (!aff->v)
1704 return isl_aff_free(aff);
1706 isl_int_add(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1707 isl_int_sub_ui(aff->v->el[1], aff->v->el[1], 1);
1708 aff = isl_aff_floor(aff);
1710 return aff;
1713 /* Apply the expansion computed by isl_merge_divs.
1714 * The expansion itself is given by "exp" while the resulting
1715 * list of divs is given by "div".
1717 __isl_give isl_aff *isl_aff_expand_divs(__isl_take isl_aff *aff,
1718 __isl_take isl_mat *div, int *exp)
1720 isl_size old_n_div;
1721 isl_size new_n_div;
1722 int offset;
1724 aff = isl_aff_cow(aff);
1725 if (!aff || !div)
1726 goto error;
1728 old_n_div = isl_local_space_dim(aff->ls, isl_dim_div);
1729 new_n_div = isl_mat_rows(div);
1730 if (old_n_div < 0 || new_n_div < 0)
1731 goto error;
1732 offset = 1 + isl_local_space_offset(aff->ls, isl_dim_div);
1734 aff->v = isl_vec_expand(aff->v, offset, old_n_div, exp, new_n_div);
1735 aff->ls = isl_local_space_replace_divs(aff->ls, div);
1736 if (!aff->v || !aff->ls)
1737 return isl_aff_free(aff);
1738 return aff;
1739 error:
1740 isl_aff_free(aff);
1741 isl_mat_free(div);
1742 return NULL;
1745 /* Add two affine expressions that live in the same local space.
1747 static __isl_give isl_aff *add_expanded(__isl_take isl_aff *aff1,
1748 __isl_take isl_aff *aff2)
1750 isl_int gcd, f;
1752 aff1 = isl_aff_cow(aff1);
1753 if (!aff1 || !aff2)
1754 goto error;
1756 aff1->v = isl_vec_cow(aff1->v);
1757 if (!aff1->v)
1758 goto error;
1760 isl_int_init(gcd);
1761 isl_int_init(f);
1762 isl_int_gcd(gcd, aff1->v->el[0], aff2->v->el[0]);
1763 isl_int_divexact(f, aff2->v->el[0], gcd);
1764 isl_seq_scale(aff1->v->el + 1, aff1->v->el + 1, f, aff1->v->size - 1);
1765 isl_int_divexact(f, aff1->v->el[0], gcd);
1766 isl_seq_addmul(aff1->v->el + 1, f, aff2->v->el + 1, aff1->v->size - 1);
1767 isl_int_divexact(f, aff2->v->el[0], gcd);
1768 isl_int_mul(aff1->v->el[0], aff1->v->el[0], f);
1769 isl_int_clear(f);
1770 isl_int_clear(gcd);
1772 isl_aff_free(aff2);
1773 return aff1;
1774 error:
1775 isl_aff_free(aff1);
1776 isl_aff_free(aff2);
1777 return NULL;
1780 /* Return the sum of "aff1" and "aff2".
1782 * If either of the two is NaN, then the result is NaN.
1784 __isl_give isl_aff *isl_aff_add(__isl_take isl_aff *aff1,
1785 __isl_take isl_aff *aff2)
1787 isl_ctx *ctx;
1788 int *exp1 = NULL;
1789 int *exp2 = NULL;
1790 isl_mat *div;
1791 isl_size n_div1, n_div2;
1793 if (!aff1 || !aff2)
1794 goto error;
1796 ctx = isl_aff_get_ctx(aff1);
1797 if (!isl_space_is_equal(aff1->ls->dim, aff2->ls->dim))
1798 isl_die(ctx, isl_error_invalid,
1799 "spaces don't match", goto error);
1801 if (isl_aff_is_nan(aff1)) {
1802 isl_aff_free(aff2);
1803 return aff1;
1805 if (isl_aff_is_nan(aff2)) {
1806 isl_aff_free(aff1);
1807 return aff2;
1810 n_div1 = isl_aff_dim(aff1, isl_dim_div);
1811 n_div2 = isl_aff_dim(aff2, isl_dim_div);
1812 if (n_div1 < 0 || n_div2 < 0)
1813 goto error;
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_in)
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 o_div;
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 o_div = isl_basic_set_offset(eq, isl_dim_div);
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], o_div + n_div);
2092 if (j < 0 || j == 0 || j >= o_div)
2093 continue;
2095 isl_seq_elim(aff->v->el + 1, eq->eq[i], j, o_div,
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 isl_size 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 goto error;
2121 if (n_div > 0)
2122 eq = isl_basic_set_add_dims(eq, isl_dim_set, n_div);
2123 return isl_aff_substitute_equalities_lifted(aff, eq);
2124 error:
2125 isl_basic_set_free(eq);
2126 isl_aff_free(aff);
2127 return NULL;
2130 /* Look for equalities among the variables shared by context and aff
2131 * and the integer divisions of aff, if any.
2132 * The equalities are then used to eliminate coefficients and/or integer
2133 * divisions from aff.
2135 __isl_give isl_aff *isl_aff_gist(__isl_take isl_aff *aff,
2136 __isl_take isl_set *context)
2138 isl_local_space *ls;
2139 isl_basic_set *hull;
2141 ls = isl_aff_get_domain_local_space(aff);
2142 context = isl_local_space_lift_set(ls, context);
2144 hull = isl_set_affine_hull(context);
2145 return isl_aff_substitute_equalities_lifted(aff, hull);
2148 __isl_give isl_aff *isl_aff_gist_params(__isl_take isl_aff *aff,
2149 __isl_take isl_set *context)
2151 isl_set *dom_context = isl_set_universe(isl_aff_get_domain_space(aff));
2152 dom_context = isl_set_intersect_params(dom_context, context);
2153 return isl_aff_gist(aff, dom_context);
2156 /* Return a basic set containing those elements in the space
2157 * of aff where it is positive. "rational" should not be set.
2159 * If "aff" is NaN, then it is not positive.
2161 static __isl_give isl_basic_set *aff_pos_basic_set(__isl_take isl_aff *aff,
2162 int rational)
2164 isl_constraint *ineq;
2165 isl_basic_set *bset;
2166 isl_val *c;
2168 if (!aff)
2169 return NULL;
2170 if (isl_aff_is_nan(aff)) {
2171 isl_space *space = isl_aff_get_domain_space(aff);
2172 isl_aff_free(aff);
2173 return isl_basic_set_empty(space);
2175 if (rational)
2176 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2177 "rational sets not supported", goto error);
2179 ineq = isl_inequality_from_aff(aff);
2180 c = isl_constraint_get_constant_val(ineq);
2181 c = isl_val_sub_ui(c, 1);
2182 ineq = isl_constraint_set_constant_val(ineq, c);
2184 bset = isl_basic_set_from_constraint(ineq);
2185 bset = isl_basic_set_simplify(bset);
2186 return bset;
2187 error:
2188 isl_aff_free(aff);
2189 return NULL;
2192 /* Return a basic set containing those elements in the space
2193 * of aff where it is non-negative.
2194 * If "rational" is set, then return a rational basic set.
2196 * If "aff" is NaN, then it is not non-negative (it's not negative either).
2198 static __isl_give isl_basic_set *aff_nonneg_basic_set(
2199 __isl_take isl_aff *aff, int rational)
2201 isl_constraint *ineq;
2202 isl_basic_set *bset;
2204 if (!aff)
2205 return NULL;
2206 if (isl_aff_is_nan(aff)) {
2207 isl_space *space = isl_aff_get_domain_space(aff);
2208 isl_aff_free(aff);
2209 return isl_basic_set_empty(space);
2212 ineq = isl_inequality_from_aff(aff);
2214 bset = isl_basic_set_from_constraint(ineq);
2215 if (rational)
2216 bset = isl_basic_set_set_rational(bset);
2217 bset = isl_basic_set_simplify(bset);
2218 return bset;
2221 /* Return a basic set containing those elements in the space
2222 * of aff where it is non-negative.
2224 __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
2226 return aff_nonneg_basic_set(aff, 0);
2229 /* Return a basic set containing those elements in the domain space
2230 * of "aff" where it is positive.
2232 __isl_give isl_basic_set *isl_aff_pos_basic_set(__isl_take isl_aff *aff)
2234 aff = isl_aff_add_constant_num_si(aff, -1);
2235 return isl_aff_nonneg_basic_set(aff);
2238 /* Return a basic set containing those elements in the domain space
2239 * of aff where it is negative.
2241 __isl_give isl_basic_set *isl_aff_neg_basic_set(__isl_take isl_aff *aff)
2243 aff = isl_aff_neg(aff);
2244 return isl_aff_pos_basic_set(aff);
2247 /* Return a basic set containing those elements in the space
2248 * of aff where it is zero.
2249 * If "rational" is set, then return a rational basic set.
2251 * If "aff" is NaN, then it is not zero.
2253 static __isl_give isl_basic_set *aff_zero_basic_set(__isl_take isl_aff *aff,
2254 int rational)
2256 isl_constraint *ineq;
2257 isl_basic_set *bset;
2259 if (!aff)
2260 return NULL;
2261 if (isl_aff_is_nan(aff)) {
2262 isl_space *space = isl_aff_get_domain_space(aff);
2263 isl_aff_free(aff);
2264 return isl_basic_set_empty(space);
2267 ineq = isl_equality_from_aff(aff);
2269 bset = isl_basic_set_from_constraint(ineq);
2270 if (rational)
2271 bset = isl_basic_set_set_rational(bset);
2272 bset = isl_basic_set_simplify(bset);
2273 return bset;
2276 /* Return a basic set containing those elements in the space
2277 * of aff where it is zero.
2279 __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
2281 return aff_zero_basic_set(aff, 0);
2284 /* Return a basic set containing those elements in the shared space
2285 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2287 __isl_give isl_basic_set *isl_aff_ge_basic_set(__isl_take isl_aff *aff1,
2288 __isl_take isl_aff *aff2)
2290 aff1 = isl_aff_sub(aff1, aff2);
2292 return isl_aff_nonneg_basic_set(aff1);
2295 /* Return a basic set containing those elements in the shared domain space
2296 * of "aff1" and "aff2" where "aff1" is greater than "aff2".
2298 __isl_give isl_basic_set *isl_aff_gt_basic_set(__isl_take isl_aff *aff1,
2299 __isl_take isl_aff *aff2)
2301 aff1 = isl_aff_sub(aff1, aff2);
2303 return isl_aff_pos_basic_set(aff1);
2306 /* Return a set containing those elements in the shared space
2307 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2309 __isl_give isl_set *isl_aff_ge_set(__isl_take isl_aff *aff1,
2310 __isl_take isl_aff *aff2)
2312 return isl_set_from_basic_set(isl_aff_ge_basic_set(aff1, aff2));
2315 /* Return a set containing those elements in the shared domain space
2316 * of aff1 and aff2 where aff1 is greater than aff2.
2318 * If either of the two inputs is NaN, then the result is empty,
2319 * as comparisons with NaN always return false.
2321 __isl_give isl_set *isl_aff_gt_set(__isl_take isl_aff *aff1,
2322 __isl_take isl_aff *aff2)
2324 return isl_set_from_basic_set(isl_aff_gt_basic_set(aff1, aff2));
2327 /* Return a basic set containing those elements in the shared space
2328 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2330 __isl_give isl_basic_set *isl_aff_le_basic_set(__isl_take isl_aff *aff1,
2331 __isl_take isl_aff *aff2)
2333 return isl_aff_ge_basic_set(aff2, aff1);
2336 /* Return a basic set containing those elements in the shared domain space
2337 * of "aff1" and "aff2" where "aff1" is smaller than "aff2".
2339 __isl_give isl_basic_set *isl_aff_lt_basic_set(__isl_take isl_aff *aff1,
2340 __isl_take isl_aff *aff2)
2342 return isl_aff_gt_basic_set(aff2, aff1);
2345 /* Return a set containing those elements in the shared space
2346 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2348 __isl_give isl_set *isl_aff_le_set(__isl_take isl_aff *aff1,
2349 __isl_take isl_aff *aff2)
2351 return isl_aff_ge_set(aff2, aff1);
2354 /* Return a set containing those elements in the shared domain space
2355 * of "aff1" and "aff2" where "aff1" is smaller than "aff2".
2357 __isl_give isl_set *isl_aff_lt_set(__isl_take isl_aff *aff1,
2358 __isl_take isl_aff *aff2)
2360 return isl_set_from_basic_set(isl_aff_lt_basic_set(aff1, aff2));
2363 /* Return a basic set containing those elements in the shared space
2364 * of aff1 and aff2 where aff1 and aff2 are equal.
2366 __isl_give isl_basic_set *isl_aff_eq_basic_set(__isl_take isl_aff *aff1,
2367 __isl_take isl_aff *aff2)
2369 aff1 = isl_aff_sub(aff1, aff2);
2371 return isl_aff_zero_basic_set(aff1);
2374 /* Return a set containing those elements in the shared space
2375 * of aff1 and aff2 where aff1 and aff2 are equal.
2377 __isl_give isl_set *isl_aff_eq_set(__isl_take isl_aff *aff1,
2378 __isl_take isl_aff *aff2)
2380 return isl_set_from_basic_set(isl_aff_eq_basic_set(aff1, aff2));
2383 /* Return a set containing those elements in the shared domain space
2384 * of aff1 and aff2 where aff1 and aff2 are not equal.
2386 * If either of the two inputs is NaN, then the result is empty,
2387 * as comparisons with NaN always return false.
2389 __isl_give isl_set *isl_aff_ne_set(__isl_take isl_aff *aff1,
2390 __isl_take isl_aff *aff2)
2392 isl_set *set_lt, *set_gt;
2394 set_lt = isl_aff_lt_set(isl_aff_copy(aff1),
2395 isl_aff_copy(aff2));
2396 set_gt = isl_aff_gt_set(aff1, aff2);
2397 return isl_set_union_disjoint(set_lt, set_gt);
2400 __isl_give isl_aff *isl_aff_add_on_domain(__isl_keep isl_set *dom,
2401 __isl_take isl_aff *aff1, __isl_take isl_aff *aff2)
2403 aff1 = isl_aff_add(aff1, aff2);
2404 aff1 = isl_aff_gist(aff1, isl_set_copy(dom));
2405 return aff1;
2408 int isl_aff_is_empty(__isl_keep isl_aff *aff)
2410 if (!aff)
2411 return -1;
2413 return 0;
2416 #undef TYPE
2417 #define TYPE isl_aff
2418 static
2419 #include "check_type_range_templ.c"
2421 /* Check whether the given affine expression has non-zero coefficient
2422 * for any dimension in the given range or if any of these dimensions
2423 * appear with non-zero coefficients in any of the integer divisions
2424 * involved in the affine expression.
2426 isl_bool isl_aff_involves_dims(__isl_keep isl_aff *aff,
2427 enum isl_dim_type type, unsigned first, unsigned n)
2429 int i;
2430 int *active = NULL;
2431 isl_bool involves = isl_bool_false;
2433 if (!aff)
2434 return isl_bool_error;
2435 if (n == 0)
2436 return isl_bool_false;
2437 if (isl_aff_check_range(aff, type, first, n) < 0)
2438 return isl_bool_error;
2440 active = isl_local_space_get_active(aff->ls, aff->v->el + 2);
2441 if (!active)
2442 goto error;
2444 first += isl_local_space_offset(aff->ls, type) - 1;
2445 for (i = 0; i < n; ++i)
2446 if (active[first + i]) {
2447 involves = isl_bool_true;
2448 break;
2451 free(active);
2453 return involves;
2454 error:
2455 free(active);
2456 return isl_bool_error;
2459 __isl_give isl_aff *isl_aff_drop_dims(__isl_take isl_aff *aff,
2460 enum isl_dim_type type, unsigned first, unsigned n)
2462 isl_ctx *ctx;
2464 if (!aff)
2465 return NULL;
2466 if (type == isl_dim_out)
2467 isl_die(aff->v->ctx, isl_error_invalid,
2468 "cannot drop output/set dimension",
2469 return isl_aff_free(aff));
2470 if (type == isl_dim_in)
2471 type = isl_dim_set;
2472 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2473 return aff;
2475 ctx = isl_aff_get_ctx(aff);
2476 if (isl_local_space_check_range(aff->ls, type, first, n) < 0)
2477 return isl_aff_free(aff);
2479 aff = isl_aff_cow(aff);
2480 if (!aff)
2481 return NULL;
2483 aff->ls = isl_local_space_drop_dims(aff->ls, type, first, n);
2484 if (!aff->ls)
2485 return isl_aff_free(aff);
2487 first += 1 + isl_local_space_offset(aff->ls, type);
2488 aff->v = isl_vec_drop_els(aff->v, first, n);
2489 if (!aff->v)
2490 return isl_aff_free(aff);
2492 return aff;
2495 /* Drop the "n" domain dimensions starting at "first" from "aff",
2496 * after checking that they do not appear in the affine expression.
2498 static __isl_give isl_aff *drop_domain(__isl_take isl_aff *aff, unsigned first,
2499 unsigned n)
2501 isl_bool involves;
2503 involves = isl_aff_involves_dims(aff, isl_dim_in, first, n);
2504 if (involves < 0)
2505 return isl_aff_free(aff);
2506 if (involves)
2507 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2508 "affine expression involves some of the domain dimensions",
2509 return isl_aff_free(aff));
2510 return isl_aff_drop_dims(aff, isl_dim_in, first, n);
2513 /* Project the domain of the affine expression onto its parameter space.
2514 * The affine expression may not involve any of the domain dimensions.
2516 __isl_give isl_aff *isl_aff_project_domain_on_params(__isl_take isl_aff *aff)
2518 isl_space *space;
2519 isl_size n;
2521 n = isl_aff_dim(aff, isl_dim_in);
2522 if (n < 0)
2523 return isl_aff_free(aff);
2524 aff = drop_domain(aff, 0, n);
2525 space = isl_aff_get_domain_space(aff);
2526 space = isl_space_params(space);
2527 aff = isl_aff_reset_domain_space(aff, space);
2528 return aff;
2531 /* Check that the domain of "aff" is a product.
2533 static isl_stat check_domain_product(__isl_keep isl_aff *aff)
2535 isl_bool is_product;
2537 is_product = isl_space_is_product(isl_aff_peek_domain_space(aff));
2538 if (is_product < 0)
2539 return isl_stat_error;
2540 if (!is_product)
2541 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2542 "domain is not a product", return isl_stat_error);
2543 return isl_stat_ok;
2546 /* Given an affine function with a domain of the form [A -> B] that
2547 * does not depend on B, return the same function on domain A.
2549 __isl_give isl_aff *isl_aff_domain_factor_domain(__isl_take isl_aff *aff)
2551 isl_space *space;
2552 isl_size n, n_in;
2554 if (check_domain_product(aff) < 0)
2555 return isl_aff_free(aff);
2556 space = isl_aff_get_domain_space(aff);
2557 n = isl_space_dim(space, isl_dim_set);
2558 space = isl_space_factor_domain(space);
2559 n_in = isl_space_dim(space, isl_dim_set);
2560 if (n < 0 || n_in < 0)
2561 aff = isl_aff_free(aff);
2562 else
2563 aff = drop_domain(aff, n_in, n - n_in);
2564 aff = isl_aff_reset_domain_space(aff, space);
2565 return aff;
2568 /* Convert an affine expression defined over a parameter domain
2569 * into one that is defined over a zero-dimensional set.
2571 __isl_give isl_aff *isl_aff_from_range(__isl_take isl_aff *aff)
2573 isl_local_space *ls;
2575 ls = isl_aff_take_domain_local_space(aff);
2576 ls = isl_local_space_set_from_params(ls);
2577 aff = isl_aff_restore_domain_local_space(aff, ls);
2579 return aff;
2582 __isl_give isl_aff *isl_aff_insert_dims(__isl_take isl_aff *aff,
2583 enum isl_dim_type type, unsigned first, unsigned n)
2585 isl_ctx *ctx;
2587 if (!aff)
2588 return NULL;
2589 if (type == isl_dim_out)
2590 isl_die(aff->v->ctx, isl_error_invalid,
2591 "cannot insert output/set dimensions",
2592 return isl_aff_free(aff));
2593 if (type == isl_dim_in)
2594 type = isl_dim_set;
2595 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2596 return aff;
2598 ctx = isl_aff_get_ctx(aff);
2599 if (isl_local_space_check_range(aff->ls, type, first, 0) < 0)
2600 return isl_aff_free(aff);
2602 aff = isl_aff_cow(aff);
2603 if (!aff)
2604 return NULL;
2606 aff->ls = isl_local_space_insert_dims(aff->ls, type, first, n);
2607 if (!aff->ls)
2608 return isl_aff_free(aff);
2610 first += 1 + isl_local_space_offset(aff->ls, type);
2611 aff->v = isl_vec_insert_zero_els(aff->v, first, n);
2612 if (!aff->v)
2613 return isl_aff_free(aff);
2615 return aff;
2618 __isl_give isl_aff *isl_aff_add_dims(__isl_take isl_aff *aff,
2619 enum isl_dim_type type, unsigned n)
2621 isl_size pos;
2623 pos = isl_aff_dim(aff, type);
2624 if (pos < 0)
2625 return isl_aff_free(aff);
2627 return isl_aff_insert_dims(aff, type, pos, n);
2630 __isl_give isl_pw_aff *isl_pw_aff_add_dims(__isl_take isl_pw_aff *pwaff,
2631 enum isl_dim_type type, unsigned n)
2633 isl_size pos;
2635 pos = isl_pw_aff_dim(pwaff, type);
2636 if (pos < 0)
2637 return isl_pw_aff_free(pwaff);
2639 return isl_pw_aff_insert_dims(pwaff, type, pos, n);
2642 /* Move the "n" dimensions of "src_type" starting at "src_pos" of "aff"
2643 * to dimensions of "dst_type" at "dst_pos".
2645 * We only support moving input dimensions to parameters and vice versa.
2647 __isl_give isl_aff *isl_aff_move_dims(__isl_take isl_aff *aff,
2648 enum isl_dim_type dst_type, unsigned dst_pos,
2649 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
2651 unsigned g_dst_pos;
2652 unsigned g_src_pos;
2654 if (!aff)
2655 return NULL;
2656 if (n == 0 &&
2657 !isl_local_space_is_named_or_nested(aff->ls, src_type) &&
2658 !isl_local_space_is_named_or_nested(aff->ls, dst_type))
2659 return aff;
2661 if (dst_type == isl_dim_out || src_type == isl_dim_out)
2662 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2663 "cannot move output/set dimension",
2664 return isl_aff_free(aff));
2665 if (dst_type == isl_dim_div || src_type == isl_dim_div)
2666 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2667 "cannot move divs", return isl_aff_free(aff));
2668 if (dst_type == isl_dim_in)
2669 dst_type = isl_dim_set;
2670 if (src_type == isl_dim_in)
2671 src_type = isl_dim_set;
2673 if (isl_local_space_check_range(aff->ls, src_type, src_pos, n) < 0)
2674 return isl_aff_free(aff);
2675 if (dst_type == src_type)
2676 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2677 "moving dims within the same type not supported",
2678 return isl_aff_free(aff));
2680 aff = isl_aff_cow(aff);
2681 if (!aff)
2682 return NULL;
2684 g_src_pos = 1 + isl_local_space_offset(aff->ls, src_type) + src_pos;
2685 g_dst_pos = 1 + isl_local_space_offset(aff->ls, dst_type) + dst_pos;
2686 if (dst_type > src_type)
2687 g_dst_pos -= n;
2689 aff->v = isl_vec_move_els(aff->v, g_dst_pos, g_src_pos, n);
2690 aff->ls = isl_local_space_move_dims(aff->ls, dst_type, dst_pos,
2691 src_type, src_pos, n);
2692 if (!aff->v || !aff->ls)
2693 return isl_aff_free(aff);
2695 aff = sort_divs(aff);
2697 return aff;
2700 __isl_give isl_pw_aff *isl_pw_aff_from_aff(__isl_take isl_aff *aff)
2702 isl_set *dom = isl_set_universe(isl_aff_get_domain_space(aff));
2703 return isl_pw_aff_alloc(dom, aff);
2706 #define isl_aff_involves_nan isl_aff_is_nan
2708 #undef PW
2709 #define PW isl_pw_aff
2710 #undef EL
2711 #define EL isl_aff
2712 #undef EL_IS_ZERO
2713 #define EL_IS_ZERO is_empty
2714 #undef ZERO
2715 #define ZERO empty
2716 #undef IS_ZERO
2717 #define IS_ZERO is_empty
2718 #undef FIELD
2719 #define FIELD aff
2720 #undef DEFAULT_IS_ZERO
2721 #define DEFAULT_IS_ZERO 0
2723 #define NO_OPT
2724 #define NO_LIFT
2725 #define NO_MORPH
2727 #include <isl_pw_templ.c>
2728 #include <isl_pw_eval.c>
2729 #include <isl_pw_hash.c>
2730 #include <isl_pw_union_opt.c>
2732 #undef BASE
2733 #define BASE pw_aff
2735 #include <isl_union_single.c>
2736 #include <isl_union_neg.c>
2738 static __isl_give isl_set *align_params_pw_pw_set_and(
2739 __isl_take isl_pw_aff *pwaff1, __isl_take isl_pw_aff *pwaff2,
2740 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
2741 __isl_take isl_pw_aff *pwaff2))
2743 isl_bool equal_params;
2745 if (!pwaff1 || !pwaff2)
2746 goto error;
2747 equal_params = isl_space_has_equal_params(pwaff1->dim, pwaff2->dim);
2748 if (equal_params < 0)
2749 goto error;
2750 if (equal_params)
2751 return fn(pwaff1, pwaff2);
2752 if (isl_pw_aff_check_named_params(pwaff1) < 0 ||
2753 isl_pw_aff_check_named_params(pwaff2) < 0)
2754 goto error;
2755 pwaff1 = isl_pw_aff_align_params(pwaff1, isl_pw_aff_get_space(pwaff2));
2756 pwaff2 = isl_pw_aff_align_params(pwaff2, isl_pw_aff_get_space(pwaff1));
2757 return fn(pwaff1, pwaff2);
2758 error:
2759 isl_pw_aff_free(pwaff1);
2760 isl_pw_aff_free(pwaff2);
2761 return NULL;
2764 /* Align the parameters of the to isl_pw_aff arguments and
2765 * then apply a function "fn" on them that returns an isl_map.
2767 static __isl_give isl_map *align_params_pw_pw_map_and(
2768 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2,
2769 __isl_give isl_map *(*fn)(__isl_take isl_pw_aff *pa1,
2770 __isl_take isl_pw_aff *pa2))
2772 isl_bool equal_params;
2774 if (!pa1 || !pa2)
2775 goto error;
2776 equal_params = isl_space_has_equal_params(pa1->dim, pa2->dim);
2777 if (equal_params < 0)
2778 goto error;
2779 if (equal_params)
2780 return fn(pa1, pa2);
2781 if (isl_pw_aff_check_named_params(pa1) < 0 ||
2782 isl_pw_aff_check_named_params(pa2) < 0)
2783 goto error;
2784 pa1 = isl_pw_aff_align_params(pa1, isl_pw_aff_get_space(pa2));
2785 pa2 = isl_pw_aff_align_params(pa2, isl_pw_aff_get_space(pa1));
2786 return fn(pa1, pa2);
2787 error:
2788 isl_pw_aff_free(pa1);
2789 isl_pw_aff_free(pa2);
2790 return NULL;
2793 /* Compute a piecewise quasi-affine expression with a domain that
2794 * is the union of those of pwaff1 and pwaff2 and such that on each
2795 * cell, the quasi-affine expression is the maximum of those of pwaff1
2796 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2797 * cell, then the associated expression is the defined one.
2799 static __isl_give isl_pw_aff *pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
2800 __isl_take isl_pw_aff *pwaff2)
2802 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_ge_set);
2805 __isl_give isl_pw_aff *isl_pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
2806 __isl_take isl_pw_aff *pwaff2)
2808 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2,
2809 &pw_aff_union_max);
2812 /* Compute a piecewise quasi-affine expression with a domain that
2813 * is the union of those of pwaff1 and pwaff2 and such that on each
2814 * cell, the quasi-affine expression is the minimum of those of pwaff1
2815 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2816 * cell, then the associated expression is the defined one.
2818 static __isl_give isl_pw_aff *pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
2819 __isl_take isl_pw_aff *pwaff2)
2821 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_le_set);
2824 __isl_give isl_pw_aff *isl_pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
2825 __isl_take isl_pw_aff *pwaff2)
2827 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2,
2828 &pw_aff_union_min);
2831 __isl_give isl_pw_aff *isl_pw_aff_union_opt(__isl_take isl_pw_aff *pwaff1,
2832 __isl_take isl_pw_aff *pwaff2, int max)
2834 if (max)
2835 return isl_pw_aff_union_max(pwaff1, pwaff2);
2836 else
2837 return isl_pw_aff_union_min(pwaff1, pwaff2);
2840 /* Return a set containing those elements in the domain
2841 * of "pwaff" where it satisfies "fn" (if complement is 0) or
2842 * does not satisfy "fn" (if complement is 1).
2844 * The pieces with a NaN never belong to the result since
2845 * NaN does not satisfy any property.
2847 static __isl_give isl_set *pw_aff_locus(__isl_take isl_pw_aff *pwaff,
2848 __isl_give isl_basic_set *(*fn)(__isl_take isl_aff *aff, int rational),
2849 int complement)
2851 int i;
2852 isl_set *set;
2854 if (!pwaff)
2855 return NULL;
2857 set = isl_set_empty(isl_pw_aff_get_domain_space(pwaff));
2859 for (i = 0; i < pwaff->n; ++i) {
2860 isl_basic_set *bset;
2861 isl_set *set_i, *locus;
2862 isl_bool rational;
2864 if (isl_aff_is_nan(pwaff->p[i].aff))
2865 continue;
2867 rational = isl_set_has_rational(pwaff->p[i].set);
2868 bset = fn(isl_aff_copy(pwaff->p[i].aff), rational);
2869 locus = isl_set_from_basic_set(bset);
2870 set_i = isl_set_copy(pwaff->p[i].set);
2871 if (complement)
2872 set_i = isl_set_subtract(set_i, locus);
2873 else
2874 set_i = isl_set_intersect(set_i, locus);
2875 set = isl_set_union_disjoint(set, set_i);
2878 isl_pw_aff_free(pwaff);
2880 return set;
2883 /* Return a set containing those elements in the domain
2884 * of "pa" where it is positive.
2886 __isl_give isl_set *isl_pw_aff_pos_set(__isl_take isl_pw_aff *pa)
2888 return pw_aff_locus(pa, &aff_pos_basic_set, 0);
2891 /* Return a set containing those elements in the domain
2892 * of pwaff where it is non-negative.
2894 __isl_give isl_set *isl_pw_aff_nonneg_set(__isl_take isl_pw_aff *pwaff)
2896 return pw_aff_locus(pwaff, &aff_nonneg_basic_set, 0);
2899 /* Return a set containing those elements in the domain
2900 * of pwaff where it is zero.
2902 __isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
2904 return pw_aff_locus(pwaff, &aff_zero_basic_set, 0);
2907 /* Return a set containing those elements in the domain
2908 * of pwaff where it is not zero.
2910 __isl_give isl_set *isl_pw_aff_non_zero_set(__isl_take isl_pw_aff *pwaff)
2912 return pw_aff_locus(pwaff, &aff_zero_basic_set, 1);
2915 /* Bind the affine function "aff" to the parameter "id",
2916 * returning the elements in the domain where the affine expression
2917 * is equal to the parameter.
2919 __isl_give isl_basic_set *isl_aff_bind_id(__isl_take isl_aff *aff,
2920 __isl_take isl_id *id)
2922 isl_space *space;
2923 isl_aff *aff_id;
2925 space = isl_aff_get_domain_space(aff);
2926 space = isl_space_add_param_id(space, isl_id_copy(id));
2928 aff = isl_aff_align_params(aff, isl_space_copy(space));
2929 aff_id = isl_aff_param_on_domain_space_id(space, id);
2931 return isl_aff_eq_basic_set(aff, aff_id);
2934 /* Return a set containing those elements in the shared domain
2935 * of pwaff1 and pwaff2 where pwaff1 is greater than (or equal) to pwaff2.
2937 * We compute the difference on the shared domain and then construct
2938 * the set of values where this difference is non-negative.
2939 * If strict is set, we first subtract 1 from the difference.
2940 * If equal is set, we only return the elements where pwaff1 and pwaff2
2941 * are equal.
2943 static __isl_give isl_set *pw_aff_gte_set(__isl_take isl_pw_aff *pwaff1,
2944 __isl_take isl_pw_aff *pwaff2, int strict, int equal)
2946 isl_set *set1, *set2;
2948 set1 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff1));
2949 set2 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff2));
2950 set1 = isl_set_intersect(set1, set2);
2951 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, isl_set_copy(set1));
2952 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, isl_set_copy(set1));
2953 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_neg(pwaff2));
2955 if (strict) {
2956 isl_space *space = isl_set_get_space(set1);
2957 isl_aff *aff;
2958 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
2959 aff = isl_aff_add_constant_si(aff, -1);
2960 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_alloc(set1, aff));
2961 } else
2962 isl_set_free(set1);
2964 if (equal)
2965 return isl_pw_aff_zero_set(pwaff1);
2966 return isl_pw_aff_nonneg_set(pwaff1);
2969 /* Return a set containing those elements in the shared domain
2970 * of pwaff1 and pwaff2 where pwaff1 is equal to pwaff2.
2972 static __isl_give isl_set *pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
2973 __isl_take isl_pw_aff *pwaff2)
2975 return pw_aff_gte_set(pwaff1, pwaff2, 0, 1);
2978 __isl_give isl_set *isl_pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
2979 __isl_take isl_pw_aff *pwaff2)
2981 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_eq_set);
2984 /* Return a set containing those elements in the shared domain
2985 * of pwaff1 and pwaff2 where pwaff1 is greater than or equal to pwaff2.
2987 static __isl_give isl_set *pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
2988 __isl_take isl_pw_aff *pwaff2)
2990 return pw_aff_gte_set(pwaff1, pwaff2, 0, 0);
2993 __isl_give isl_set *isl_pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
2994 __isl_take isl_pw_aff *pwaff2)
2996 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ge_set);
2999 /* Return a set containing those elements in the shared domain
3000 * of pwaff1 and pwaff2 where pwaff1 is strictly greater than pwaff2.
3002 static __isl_give isl_set *pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
3003 __isl_take isl_pw_aff *pwaff2)
3005 return pw_aff_gte_set(pwaff1, pwaff2, 1, 0);
3008 __isl_give isl_set *isl_pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
3009 __isl_take isl_pw_aff *pwaff2)
3011 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_gt_set);
3014 __isl_give isl_set *isl_pw_aff_le_set(__isl_take isl_pw_aff *pwaff1,
3015 __isl_take isl_pw_aff *pwaff2)
3017 return isl_pw_aff_ge_set(pwaff2, pwaff1);
3020 __isl_give isl_set *isl_pw_aff_lt_set(__isl_take isl_pw_aff *pwaff1,
3021 __isl_take isl_pw_aff *pwaff2)
3023 return isl_pw_aff_gt_set(pwaff2, pwaff1);
3026 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3027 * where the function values are ordered in the same way as "order",
3028 * which returns a set in the shared domain of its two arguments.
3029 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3031 * Let "pa1" and "pa2" be defined on domains A and B respectively.
3032 * We first pull back the two functions such that they are defined on
3033 * the domain [A -> B]. Then we apply "order", resulting in a set
3034 * in the space [A -> B]. Finally, we unwrap this set to obtain
3035 * a map in the space A -> B.
3037 static __isl_give isl_map *isl_pw_aff_order_map_aligned(
3038 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2,
3039 __isl_give isl_set *(*order)(__isl_take isl_pw_aff *pa1,
3040 __isl_take isl_pw_aff *pa2))
3042 isl_space *space1, *space2;
3043 isl_multi_aff *ma;
3044 isl_set *set;
3046 space1 = isl_space_domain(isl_pw_aff_get_space(pa1));
3047 space2 = isl_space_domain(isl_pw_aff_get_space(pa2));
3048 space1 = isl_space_map_from_domain_and_range(space1, space2);
3049 ma = isl_multi_aff_domain_map(isl_space_copy(space1));
3050 pa1 = isl_pw_aff_pullback_multi_aff(pa1, ma);
3051 ma = isl_multi_aff_range_map(space1);
3052 pa2 = isl_pw_aff_pullback_multi_aff(pa2, ma);
3053 set = order(pa1, pa2);
3055 return isl_set_unwrap(set);
3058 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3059 * where the function values are equal.
3060 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3062 static __isl_give isl_map *isl_pw_aff_eq_map_aligned(__isl_take isl_pw_aff *pa1,
3063 __isl_take isl_pw_aff *pa2)
3065 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_eq_set);
3068 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3069 * where the function values are equal.
3071 __isl_give isl_map *isl_pw_aff_eq_map(__isl_take isl_pw_aff *pa1,
3072 __isl_take isl_pw_aff *pa2)
3074 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_eq_map_aligned);
3077 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3078 * where the function value of "pa1" is less than the function value of "pa2".
3079 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3081 static __isl_give isl_map *isl_pw_aff_lt_map_aligned(__isl_take isl_pw_aff *pa1,
3082 __isl_take isl_pw_aff *pa2)
3084 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_lt_set);
3087 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3088 * where the function value of "pa1" is less than the function value of "pa2".
3090 __isl_give isl_map *isl_pw_aff_lt_map(__isl_take isl_pw_aff *pa1,
3091 __isl_take isl_pw_aff *pa2)
3093 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_lt_map_aligned);
3096 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3097 * where the function value of "pa1" is greater than the function value
3098 * of "pa2".
3099 * The parameters of "pa1" and "pa2" are assumed to have been aligned.
3101 static __isl_give isl_map *isl_pw_aff_gt_map_aligned(__isl_take isl_pw_aff *pa1,
3102 __isl_take isl_pw_aff *pa2)
3104 return isl_pw_aff_order_map_aligned(pa1, pa2, &isl_pw_aff_gt_set);
3107 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3108 * where the function value of "pa1" is greater than the function value
3109 * of "pa2".
3111 __isl_give isl_map *isl_pw_aff_gt_map(__isl_take isl_pw_aff *pa1,
3112 __isl_take isl_pw_aff *pa2)
3114 return align_params_pw_pw_map_and(pa1, pa2, &isl_pw_aff_gt_map_aligned);
3117 /* Return a set containing those elements in the shared domain
3118 * of the elements of list1 and list2 where each element in list1
3119 * has the relation specified by "fn" with each element in list2.
3121 static __isl_give isl_set *pw_aff_list_set(__isl_take isl_pw_aff_list *list1,
3122 __isl_take isl_pw_aff_list *list2,
3123 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
3124 __isl_take isl_pw_aff *pwaff2))
3126 int i, j;
3127 isl_ctx *ctx;
3128 isl_set *set;
3130 if (!list1 || !list2)
3131 goto error;
3133 ctx = isl_pw_aff_list_get_ctx(list1);
3134 if (list1->n < 1 || list2->n < 1)
3135 isl_die(ctx, isl_error_invalid,
3136 "list should contain at least one element", goto error);
3138 set = isl_set_universe(isl_pw_aff_get_domain_space(list1->p[0]));
3139 for (i = 0; i < list1->n; ++i)
3140 for (j = 0; j < list2->n; ++j) {
3141 isl_set *set_ij;
3143 set_ij = fn(isl_pw_aff_copy(list1->p[i]),
3144 isl_pw_aff_copy(list2->p[j]));
3145 set = isl_set_intersect(set, set_ij);
3148 isl_pw_aff_list_free(list1);
3149 isl_pw_aff_list_free(list2);
3150 return set;
3151 error:
3152 isl_pw_aff_list_free(list1);
3153 isl_pw_aff_list_free(list2);
3154 return NULL;
3157 /* Return a set containing those elements in the shared domain
3158 * of the elements of list1 and list2 where each element in list1
3159 * is equal to each element in list2.
3161 __isl_give isl_set *isl_pw_aff_list_eq_set(__isl_take isl_pw_aff_list *list1,
3162 __isl_take isl_pw_aff_list *list2)
3164 return pw_aff_list_set(list1, list2, &isl_pw_aff_eq_set);
3167 __isl_give isl_set *isl_pw_aff_list_ne_set(__isl_take isl_pw_aff_list *list1,
3168 __isl_take isl_pw_aff_list *list2)
3170 return pw_aff_list_set(list1, list2, &isl_pw_aff_ne_set);
3173 /* Return a set containing those elements in the shared domain
3174 * of the elements of list1 and list2 where each element in list1
3175 * is less than or equal to each element in list2.
3177 __isl_give isl_set *isl_pw_aff_list_le_set(__isl_take isl_pw_aff_list *list1,
3178 __isl_take isl_pw_aff_list *list2)
3180 return pw_aff_list_set(list1, list2, &isl_pw_aff_le_set);
3183 __isl_give isl_set *isl_pw_aff_list_lt_set(__isl_take isl_pw_aff_list *list1,
3184 __isl_take isl_pw_aff_list *list2)
3186 return pw_aff_list_set(list1, list2, &isl_pw_aff_lt_set);
3189 __isl_give isl_set *isl_pw_aff_list_ge_set(__isl_take isl_pw_aff_list *list1,
3190 __isl_take isl_pw_aff_list *list2)
3192 return pw_aff_list_set(list1, list2, &isl_pw_aff_ge_set);
3195 __isl_give isl_set *isl_pw_aff_list_gt_set(__isl_take isl_pw_aff_list *list1,
3196 __isl_take isl_pw_aff_list *list2)
3198 return pw_aff_list_set(list1, list2, &isl_pw_aff_gt_set);
3202 /* Return a set containing those elements in the shared domain
3203 * of pwaff1 and pwaff2 where pwaff1 is not equal to pwaff2.
3205 static __isl_give isl_set *pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
3206 __isl_take isl_pw_aff *pwaff2)
3208 isl_set *set_lt, *set_gt;
3210 set_lt = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff1),
3211 isl_pw_aff_copy(pwaff2));
3212 set_gt = isl_pw_aff_gt_set(pwaff1, pwaff2);
3213 return isl_set_union_disjoint(set_lt, set_gt);
3216 __isl_give isl_set *isl_pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
3217 __isl_take isl_pw_aff *pwaff2)
3219 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ne_set);
3222 __isl_give isl_pw_aff *isl_pw_aff_scale_down(__isl_take isl_pw_aff *pwaff,
3223 isl_int v)
3225 int i;
3227 if (isl_int_is_one(v))
3228 return pwaff;
3229 if (!isl_int_is_pos(v))
3230 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
3231 "factor needs to be positive",
3232 return isl_pw_aff_free(pwaff));
3233 pwaff = isl_pw_aff_cow(pwaff);
3234 if (!pwaff)
3235 return NULL;
3236 if (pwaff->n == 0)
3237 return pwaff;
3239 for (i = 0; i < pwaff->n; ++i) {
3240 pwaff->p[i].aff = isl_aff_scale_down(pwaff->p[i].aff, v);
3241 if (!pwaff->p[i].aff)
3242 return isl_pw_aff_free(pwaff);
3245 return pwaff;
3248 __isl_give isl_pw_aff *isl_pw_aff_floor(__isl_take isl_pw_aff *pwaff)
3250 int i;
3252 pwaff = isl_pw_aff_cow(pwaff);
3253 if (!pwaff)
3254 return NULL;
3255 if (pwaff->n == 0)
3256 return pwaff;
3258 for (i = 0; i < pwaff->n; ++i) {
3259 pwaff->p[i].aff = isl_aff_floor(pwaff->p[i].aff);
3260 if (!pwaff->p[i].aff)
3261 return isl_pw_aff_free(pwaff);
3264 return pwaff;
3267 __isl_give isl_pw_aff *isl_pw_aff_ceil(__isl_take isl_pw_aff *pwaff)
3269 int i;
3271 pwaff = isl_pw_aff_cow(pwaff);
3272 if (!pwaff)
3273 return NULL;
3274 if (pwaff->n == 0)
3275 return pwaff;
3277 for (i = 0; i < pwaff->n; ++i) {
3278 pwaff->p[i].aff = isl_aff_ceil(pwaff->p[i].aff);
3279 if (!pwaff->p[i].aff)
3280 return isl_pw_aff_free(pwaff);
3283 return pwaff;
3286 /* Assuming that "cond1" and "cond2" are disjoint,
3287 * return an affine expression that is equal to pwaff1 on cond1
3288 * and to pwaff2 on cond2.
3290 static __isl_give isl_pw_aff *isl_pw_aff_select(
3291 __isl_take isl_set *cond1, __isl_take isl_pw_aff *pwaff1,
3292 __isl_take isl_set *cond2, __isl_take isl_pw_aff *pwaff2)
3294 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, cond1);
3295 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, cond2);
3297 return isl_pw_aff_add_disjoint(pwaff1, pwaff2);
3300 /* Return an affine expression that is equal to pwaff_true for elements
3301 * where "cond" is non-zero and to pwaff_false for elements where "cond"
3302 * is zero.
3303 * That is, return cond ? pwaff_true : pwaff_false;
3305 * If "cond" involves and NaN, then we conservatively return a NaN
3306 * on its entire domain. In principle, we could consider the pieces
3307 * where it is NaN separately from those where it is not.
3309 * If "pwaff_true" and "pwaff_false" are obviously equal to each other,
3310 * then only use the domain of "cond" to restrict the domain.
3312 __isl_give isl_pw_aff *isl_pw_aff_cond(__isl_take isl_pw_aff *cond,
3313 __isl_take isl_pw_aff *pwaff_true, __isl_take isl_pw_aff *pwaff_false)
3315 isl_set *cond_true, *cond_false;
3316 isl_bool equal;
3318 if (!cond)
3319 goto error;
3320 if (isl_pw_aff_involves_nan(cond)) {
3321 isl_space *space = isl_pw_aff_get_domain_space(cond);
3322 isl_local_space *ls = isl_local_space_from_space(space);
3323 isl_pw_aff_free(cond);
3324 isl_pw_aff_free(pwaff_true);
3325 isl_pw_aff_free(pwaff_false);
3326 return isl_pw_aff_nan_on_domain(ls);
3329 pwaff_true = isl_pw_aff_align_params(pwaff_true,
3330 isl_pw_aff_get_space(pwaff_false));
3331 pwaff_false = isl_pw_aff_align_params(pwaff_false,
3332 isl_pw_aff_get_space(pwaff_true));
3333 equal = isl_pw_aff_plain_is_equal(pwaff_true, pwaff_false);
3334 if (equal < 0)
3335 goto error;
3336 if (equal) {
3337 isl_set *dom;
3339 dom = isl_set_coalesce(isl_pw_aff_domain(cond));
3340 isl_pw_aff_free(pwaff_false);
3341 return isl_pw_aff_intersect_domain(pwaff_true, dom);
3344 cond_true = isl_pw_aff_non_zero_set(isl_pw_aff_copy(cond));
3345 cond_false = isl_pw_aff_zero_set(cond);
3346 return isl_pw_aff_select(cond_true, pwaff_true,
3347 cond_false, pwaff_false);
3348 error:
3349 isl_pw_aff_free(cond);
3350 isl_pw_aff_free(pwaff_true);
3351 isl_pw_aff_free(pwaff_false);
3352 return NULL;
3355 isl_bool isl_aff_is_cst(__isl_keep isl_aff *aff)
3357 int pos;
3359 if (!aff)
3360 return isl_bool_error;
3362 pos = isl_seq_first_non_zero(aff->v->el + 2, aff->v->size - 2);
3363 return isl_bool_ok(pos == -1);
3366 /* Check whether pwaff is a piecewise constant.
3368 isl_bool isl_pw_aff_is_cst(__isl_keep isl_pw_aff *pwaff)
3370 int i;
3372 if (!pwaff)
3373 return isl_bool_error;
3375 for (i = 0; i < pwaff->n; ++i) {
3376 isl_bool is_cst = isl_aff_is_cst(pwaff->p[i].aff);
3377 if (is_cst < 0 || !is_cst)
3378 return is_cst;
3381 return isl_bool_true;
3384 /* Are all elements of "mpa" piecewise constants?
3386 isl_bool isl_multi_pw_aff_is_cst(__isl_keep isl_multi_pw_aff *mpa)
3388 int i;
3390 if (!mpa)
3391 return isl_bool_error;
3393 for (i = 0; i < mpa->n; ++i) {
3394 isl_bool is_cst = isl_pw_aff_is_cst(mpa->u.p[i]);
3395 if (is_cst < 0 || !is_cst)
3396 return is_cst;
3399 return isl_bool_true;
3402 /* Return the product of "aff1" and "aff2".
3404 * If either of the two is NaN, then the result is NaN.
3406 * Otherwise, at least one of "aff1" or "aff2" needs to be a constant.
3408 __isl_give isl_aff *isl_aff_mul(__isl_take isl_aff *aff1,
3409 __isl_take isl_aff *aff2)
3411 if (!aff1 || !aff2)
3412 goto error;
3414 if (isl_aff_is_nan(aff1)) {
3415 isl_aff_free(aff2);
3416 return aff1;
3418 if (isl_aff_is_nan(aff2)) {
3419 isl_aff_free(aff1);
3420 return aff2;
3423 if (!isl_aff_is_cst(aff2) && isl_aff_is_cst(aff1))
3424 return isl_aff_mul(aff2, aff1);
3426 if (!isl_aff_is_cst(aff2))
3427 isl_die(isl_aff_get_ctx(aff1), isl_error_invalid,
3428 "at least one affine expression should be constant",
3429 goto error);
3431 aff1 = isl_aff_cow(aff1);
3432 if (!aff1 || !aff2)
3433 goto error;
3435 aff1 = isl_aff_scale(aff1, aff2->v->el[1]);
3436 aff1 = isl_aff_scale_down(aff1, aff2->v->el[0]);
3438 isl_aff_free(aff2);
3439 return aff1;
3440 error:
3441 isl_aff_free(aff1);
3442 isl_aff_free(aff2);
3443 return NULL;
3446 /* Divide "aff1" by "aff2", assuming "aff2" is a constant.
3448 * If either of the two is NaN, then the result is NaN.
3450 __isl_give isl_aff *isl_aff_div(__isl_take isl_aff *aff1,
3451 __isl_take isl_aff *aff2)
3453 int is_cst;
3454 int neg;
3456 if (!aff1 || !aff2)
3457 goto error;
3459 if (isl_aff_is_nan(aff1)) {
3460 isl_aff_free(aff2);
3461 return aff1;
3463 if (isl_aff_is_nan(aff2)) {
3464 isl_aff_free(aff1);
3465 return aff2;
3468 is_cst = isl_aff_is_cst(aff2);
3469 if (is_cst < 0)
3470 goto error;
3471 if (!is_cst)
3472 isl_die(isl_aff_get_ctx(aff2), isl_error_invalid,
3473 "second argument should be a constant", goto error);
3475 if (!aff2)
3476 goto error;
3478 neg = isl_int_is_neg(aff2->v->el[1]);
3479 if (neg) {
3480 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3481 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3484 aff1 = isl_aff_scale(aff1, aff2->v->el[0]);
3485 aff1 = isl_aff_scale_down(aff1, aff2->v->el[1]);
3487 if (neg) {
3488 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3489 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3492 isl_aff_free(aff2);
3493 return aff1;
3494 error:
3495 isl_aff_free(aff1);
3496 isl_aff_free(aff2);
3497 return NULL;
3500 static __isl_give isl_pw_aff *pw_aff_add(__isl_take isl_pw_aff *pwaff1,
3501 __isl_take isl_pw_aff *pwaff2)
3503 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_add);
3506 __isl_give isl_pw_aff *isl_pw_aff_add(__isl_take isl_pw_aff *pwaff1,
3507 __isl_take isl_pw_aff *pwaff2)
3509 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_add);
3512 __isl_give isl_pw_aff *isl_pw_aff_union_add(__isl_take isl_pw_aff *pwaff1,
3513 __isl_take isl_pw_aff *pwaff2)
3515 return isl_pw_aff_union_add_(pwaff1, pwaff2);
3518 static __isl_give isl_pw_aff *pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
3519 __isl_take isl_pw_aff *pwaff2)
3521 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_mul);
3524 __isl_give isl_pw_aff *isl_pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
3525 __isl_take isl_pw_aff *pwaff2)
3527 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_mul);
3530 static __isl_give isl_pw_aff *pw_aff_div(__isl_take isl_pw_aff *pa1,
3531 __isl_take isl_pw_aff *pa2)
3533 return isl_pw_aff_on_shared_domain(pa1, pa2, &isl_aff_div);
3536 /* Divide "pa1" by "pa2", assuming "pa2" is a piecewise constant.
3538 __isl_give isl_pw_aff *isl_pw_aff_div(__isl_take isl_pw_aff *pa1,
3539 __isl_take isl_pw_aff *pa2)
3541 int is_cst;
3543 is_cst = isl_pw_aff_is_cst(pa2);
3544 if (is_cst < 0)
3545 goto error;
3546 if (!is_cst)
3547 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3548 "second argument should be a piecewise constant",
3549 goto error);
3550 return isl_pw_aff_align_params_pw_pw_and(pa1, pa2, &pw_aff_div);
3551 error:
3552 isl_pw_aff_free(pa1);
3553 isl_pw_aff_free(pa2);
3554 return NULL;
3557 /* Compute the quotient of the integer division of "pa1" by "pa2"
3558 * with rounding towards zero.
3559 * "pa2" is assumed to be a piecewise constant.
3561 * In particular, return
3563 * pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2)
3566 __isl_give isl_pw_aff *isl_pw_aff_tdiv_q(__isl_take isl_pw_aff *pa1,
3567 __isl_take isl_pw_aff *pa2)
3569 int is_cst;
3570 isl_set *cond;
3571 isl_pw_aff *f, *c;
3573 is_cst = isl_pw_aff_is_cst(pa2);
3574 if (is_cst < 0)
3575 goto error;
3576 if (!is_cst)
3577 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3578 "second argument should be a piecewise constant",
3579 goto error);
3581 pa1 = isl_pw_aff_div(pa1, pa2);
3583 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(pa1));
3584 f = isl_pw_aff_floor(isl_pw_aff_copy(pa1));
3585 c = isl_pw_aff_ceil(pa1);
3586 return isl_pw_aff_cond(isl_set_indicator_function(cond), f, c);
3587 error:
3588 isl_pw_aff_free(pa1);
3589 isl_pw_aff_free(pa2);
3590 return NULL;
3593 /* Compute the remainder of the integer division of "pa1" by "pa2"
3594 * with rounding towards zero.
3595 * "pa2" is assumed to be a piecewise constant.
3597 * In particular, return
3599 * pa1 - pa2 * (pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2))
3602 __isl_give isl_pw_aff *isl_pw_aff_tdiv_r(__isl_take isl_pw_aff *pa1,
3603 __isl_take isl_pw_aff *pa2)
3605 int is_cst;
3606 isl_pw_aff *res;
3608 is_cst = isl_pw_aff_is_cst(pa2);
3609 if (is_cst < 0)
3610 goto error;
3611 if (!is_cst)
3612 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3613 "second argument should be a piecewise constant",
3614 goto error);
3615 res = isl_pw_aff_tdiv_q(isl_pw_aff_copy(pa1), isl_pw_aff_copy(pa2));
3616 res = isl_pw_aff_mul(pa2, res);
3617 res = isl_pw_aff_sub(pa1, res);
3618 return res;
3619 error:
3620 isl_pw_aff_free(pa1);
3621 isl_pw_aff_free(pa2);
3622 return NULL;
3625 /* Does either of "pa1" or "pa2" involve any NaN2?
3627 static isl_bool either_involves_nan(__isl_keep isl_pw_aff *pa1,
3628 __isl_keep isl_pw_aff *pa2)
3630 isl_bool has_nan;
3632 has_nan = isl_pw_aff_involves_nan(pa1);
3633 if (has_nan < 0 || has_nan)
3634 return has_nan;
3635 return isl_pw_aff_involves_nan(pa2);
3638 /* Replace "pa1" and "pa2" (at least one of which involves a NaN)
3639 * by a NaN on their shared domain.
3641 * In principle, the result could be refined to only being NaN
3642 * on the parts of this domain where at least one of "pa1" or "pa2" is NaN.
3644 static __isl_give isl_pw_aff *replace_by_nan(__isl_take isl_pw_aff *pa1,
3645 __isl_take isl_pw_aff *pa2)
3647 isl_local_space *ls;
3648 isl_set *dom;
3649 isl_pw_aff *pa;
3651 dom = isl_set_intersect(isl_pw_aff_domain(pa1), isl_pw_aff_domain(pa2));
3652 ls = isl_local_space_from_space(isl_set_get_space(dom));
3653 pa = isl_pw_aff_nan_on_domain(ls);
3654 pa = isl_pw_aff_intersect_domain(pa, dom);
3656 return pa;
3659 static __isl_give isl_pw_aff *pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3660 __isl_take isl_pw_aff *pwaff2)
3662 isl_set *le;
3663 isl_set *dom;
3665 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3666 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3667 le = isl_pw_aff_le_set(isl_pw_aff_copy(pwaff1),
3668 isl_pw_aff_copy(pwaff2));
3669 dom = isl_set_subtract(dom, isl_set_copy(le));
3670 return isl_pw_aff_select(le, pwaff1, dom, pwaff2);
3673 static __isl_give isl_pw_aff *pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3674 __isl_take isl_pw_aff *pwaff2)
3676 isl_set *ge;
3677 isl_set *dom;
3679 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3680 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3681 ge = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff1),
3682 isl_pw_aff_copy(pwaff2));
3683 dom = isl_set_subtract(dom, isl_set_copy(ge));
3684 return isl_pw_aff_select(ge, pwaff1, dom, pwaff2);
3687 /* Return an expression for the minimum (if "max" is not set) or
3688 * the maximum (if "max" is set) of "pa1" and "pa2".
3689 * If either expression involves any NaN, then return a NaN
3690 * on the shared domain as result.
3692 static __isl_give isl_pw_aff *pw_aff_min_max(__isl_take isl_pw_aff *pa1,
3693 __isl_take isl_pw_aff *pa2, int max)
3695 isl_bool has_nan;
3697 has_nan = either_involves_nan(pa1, pa2);
3698 if (has_nan < 0)
3699 pa1 = isl_pw_aff_free(pa1);
3700 else if (has_nan)
3701 return replace_by_nan(pa1, pa2);
3703 if (max)
3704 return isl_pw_aff_align_params_pw_pw_and(pa1, pa2, &pw_aff_max);
3705 else
3706 return isl_pw_aff_align_params_pw_pw_and(pa1, pa2, &pw_aff_min);
3709 /* Return an expression for the minimum of "pwaff1" and "pwaff2".
3711 __isl_give isl_pw_aff *isl_pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3712 __isl_take isl_pw_aff *pwaff2)
3714 return pw_aff_min_max(pwaff1, pwaff2, 0);
3717 /* Return an expression for the maximum of "pwaff1" and "pwaff2".
3719 __isl_give isl_pw_aff *isl_pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3720 __isl_take isl_pw_aff *pwaff2)
3722 return pw_aff_min_max(pwaff1, pwaff2, 1);
3725 static __isl_give isl_pw_aff *pw_aff_list_reduce(
3726 __isl_take isl_pw_aff_list *list,
3727 __isl_give isl_pw_aff *(*fn)(__isl_take isl_pw_aff *pwaff1,
3728 __isl_take isl_pw_aff *pwaff2))
3730 int i;
3731 isl_ctx *ctx;
3732 isl_pw_aff *res;
3734 if (!list)
3735 return NULL;
3737 ctx = isl_pw_aff_list_get_ctx(list);
3738 if (list->n < 1)
3739 isl_die(ctx, isl_error_invalid,
3740 "list should contain at least one element", goto error);
3742 res = isl_pw_aff_copy(list->p[0]);
3743 for (i = 1; i < list->n; ++i)
3744 res = fn(res, isl_pw_aff_copy(list->p[i]));
3746 isl_pw_aff_list_free(list);
3747 return res;
3748 error:
3749 isl_pw_aff_list_free(list);
3750 return NULL;
3753 /* Return an isl_pw_aff that maps each element in the intersection of the
3754 * domains of the elements of list to the minimal corresponding affine
3755 * expression.
3757 __isl_give isl_pw_aff *isl_pw_aff_list_min(__isl_take isl_pw_aff_list *list)
3759 return pw_aff_list_reduce(list, &isl_pw_aff_min);
3762 /* Return an isl_pw_aff that maps each element in the intersection of the
3763 * domains of the elements of list to the maximal corresponding affine
3764 * expression.
3766 __isl_give isl_pw_aff *isl_pw_aff_list_max(__isl_take isl_pw_aff_list *list)
3768 return pw_aff_list_reduce(list, &isl_pw_aff_max);
3771 /* Mark the domains of "pwaff" as rational.
3773 __isl_give isl_pw_aff *isl_pw_aff_set_rational(__isl_take isl_pw_aff *pwaff)
3775 int i;
3777 pwaff = isl_pw_aff_cow(pwaff);
3778 if (!pwaff)
3779 return NULL;
3780 if (pwaff->n == 0)
3781 return pwaff;
3783 for (i = 0; i < pwaff->n; ++i) {
3784 pwaff->p[i].set = isl_set_set_rational(pwaff->p[i].set);
3785 if (!pwaff->p[i].set)
3786 return isl_pw_aff_free(pwaff);
3789 return pwaff;
3792 /* Mark the domains of the elements of "list" as rational.
3794 __isl_give isl_pw_aff_list *isl_pw_aff_list_set_rational(
3795 __isl_take isl_pw_aff_list *list)
3797 int i, n;
3799 if (!list)
3800 return NULL;
3801 if (list->n == 0)
3802 return list;
3804 n = list->n;
3805 for (i = 0; i < n; ++i) {
3806 isl_pw_aff *pa;
3808 pa = isl_pw_aff_list_get_pw_aff(list, i);
3809 pa = isl_pw_aff_set_rational(pa);
3810 list = isl_pw_aff_list_set_pw_aff(list, i, pa);
3813 return list;
3816 /* Do the parameters of "aff" match those of "space"?
3818 isl_bool isl_aff_matching_params(__isl_keep isl_aff *aff,
3819 __isl_keep isl_space *space)
3821 isl_space *aff_space;
3822 isl_bool match;
3824 if (!aff || !space)
3825 return isl_bool_error;
3827 aff_space = isl_aff_get_domain_space(aff);
3829 match = isl_space_has_equal_params(space, aff_space);
3831 isl_space_free(aff_space);
3832 return match;
3835 /* Check that the domain space of "aff" matches "space".
3837 isl_stat isl_aff_check_match_domain_space(__isl_keep isl_aff *aff,
3838 __isl_keep isl_space *space)
3840 isl_space *aff_space;
3841 isl_bool match;
3843 if (!aff || !space)
3844 return isl_stat_error;
3846 aff_space = isl_aff_get_domain_space(aff);
3848 match = isl_space_has_equal_params(space, aff_space);
3849 if (match < 0)
3850 goto error;
3851 if (!match)
3852 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
3853 "parameters don't match", goto error);
3854 match = isl_space_tuple_is_equal(space, isl_dim_in,
3855 aff_space, isl_dim_set);
3856 if (match < 0)
3857 goto error;
3858 if (!match)
3859 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
3860 "domains don't match", goto error);
3861 isl_space_free(aff_space);
3862 return isl_stat_ok;
3863 error:
3864 isl_space_free(aff_space);
3865 return isl_stat_error;
3868 #undef BASE
3869 #define BASE aff
3870 #undef DOMBASE
3871 #define DOMBASE set
3873 #include <isl_multi_no_explicit_domain.c>
3874 #include <isl_multi_templ.c>
3875 #include <isl_multi_apply_set.c>
3876 #include <isl_multi_arith_templ.c>
3877 #include <isl_multi_cmp.c>
3878 #include <isl_multi_dim_id_templ.c>
3879 #include <isl_multi_dims.c>
3880 #include <isl_multi_floor.c>
3881 #include <isl_multi_from_base_templ.c>
3882 #include <isl_multi_gist.c>
3883 #include <isl_multi_identity_templ.c>
3884 #include <isl_multi_move_dims_templ.c>
3885 #include <isl_multi_nan_templ.c>
3886 #include <isl_multi_product_templ.c>
3887 #include <isl_multi_splice_templ.c>
3888 #include <isl_multi_tuple_id_templ.c>
3889 #include <isl_multi_zero_templ.c>
3891 /* Construct an isl_multi_aff living in "space" that corresponds
3892 * to the affine transformation matrix "mat".
3894 __isl_give isl_multi_aff *isl_multi_aff_from_aff_mat(
3895 __isl_take isl_space *space, __isl_take isl_mat *mat)
3897 isl_ctx *ctx;
3898 isl_local_space *ls = NULL;
3899 isl_multi_aff *ma = NULL;
3900 isl_size n_row, n_col, n_out, total;
3901 int i;
3903 if (!space || !mat)
3904 goto error;
3906 ctx = isl_mat_get_ctx(mat);
3908 n_row = isl_mat_rows(mat);
3909 n_col = isl_mat_cols(mat);
3910 n_out = isl_space_dim(space, isl_dim_out);
3911 total = isl_space_dim(space, isl_dim_all);
3912 if (n_row < 0 || n_col < 0 || n_out < 0 || total < 0)
3913 goto error;
3914 if (n_row < 1)
3915 isl_die(ctx, isl_error_invalid,
3916 "insufficient number of rows", goto error);
3917 if (n_col < 1)
3918 isl_die(ctx, isl_error_invalid,
3919 "insufficient number of columns", goto error);
3920 if (1 + n_out != n_row || 2 + total != n_row + n_col)
3921 isl_die(ctx, isl_error_invalid,
3922 "dimension mismatch", goto error);
3924 ma = isl_multi_aff_zero(isl_space_copy(space));
3925 ls = isl_local_space_from_space(isl_space_domain(space));
3927 for (i = 0; i < n_row - 1; ++i) {
3928 isl_vec *v;
3929 isl_aff *aff;
3931 v = isl_vec_alloc(ctx, 1 + n_col);
3932 if (!v)
3933 goto error;
3934 isl_int_set(v->el[0], mat->row[0][0]);
3935 isl_seq_cpy(v->el + 1, mat->row[1 + i], n_col);
3936 v = isl_vec_normalize(v);
3937 aff = isl_aff_alloc_vec(isl_local_space_copy(ls), v);
3938 ma = isl_multi_aff_set_aff(ma, i, aff);
3941 isl_local_space_free(ls);
3942 isl_mat_free(mat);
3943 return ma;
3944 error:
3945 isl_local_space_free(ls);
3946 isl_mat_free(mat);
3947 isl_multi_aff_free(ma);
3948 return NULL;
3951 /* Remove any internal structure of the domain of "ma".
3952 * If there is any such internal structure in the input,
3953 * then the name of the corresponding space is also removed.
3955 __isl_give isl_multi_aff *isl_multi_aff_flatten_domain(
3956 __isl_take isl_multi_aff *ma)
3958 isl_space *space;
3960 if (!ma)
3961 return NULL;
3963 if (!ma->space->nested[0])
3964 return ma;
3966 space = isl_multi_aff_get_space(ma);
3967 space = isl_space_flatten_domain(space);
3968 ma = isl_multi_aff_reset_space(ma, space);
3970 return ma;
3973 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
3974 * of the space to its domain.
3976 __isl_give isl_multi_aff *isl_multi_aff_domain_map(__isl_take isl_space *space)
3978 int i;
3979 isl_size n_in;
3980 isl_local_space *ls;
3981 isl_multi_aff *ma;
3983 if (!space)
3984 return NULL;
3985 if (!isl_space_is_map(space))
3986 isl_die(isl_space_get_ctx(space), isl_error_invalid,
3987 "not a map space", goto error);
3989 n_in = isl_space_dim(space, isl_dim_in);
3990 if (n_in < 0)
3991 goto error;
3992 space = isl_space_domain_map(space);
3994 ma = isl_multi_aff_alloc(isl_space_copy(space));
3995 if (n_in == 0) {
3996 isl_space_free(space);
3997 return ma;
4000 space = isl_space_domain(space);
4001 ls = isl_local_space_from_space(space);
4002 for (i = 0; i < n_in; ++i) {
4003 isl_aff *aff;
4005 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4006 isl_dim_set, i);
4007 ma = isl_multi_aff_set_aff(ma, i, aff);
4009 isl_local_space_free(ls);
4010 return ma;
4011 error:
4012 isl_space_free(space);
4013 return NULL;
4016 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
4017 * of the space to its range.
4019 __isl_give isl_multi_aff *isl_multi_aff_range_map(__isl_take isl_space *space)
4021 int i;
4022 isl_size n_in, n_out;
4023 isl_local_space *ls;
4024 isl_multi_aff *ma;
4026 if (!space)
4027 return NULL;
4028 if (!isl_space_is_map(space))
4029 isl_die(isl_space_get_ctx(space), isl_error_invalid,
4030 "not a map space", goto error);
4032 n_in = isl_space_dim(space, isl_dim_in);
4033 n_out = isl_space_dim(space, isl_dim_out);
4034 if (n_in < 0 || n_out < 0)
4035 goto error;
4036 space = isl_space_range_map(space);
4038 ma = isl_multi_aff_alloc(isl_space_copy(space));
4039 if (n_out == 0) {
4040 isl_space_free(space);
4041 return ma;
4044 space = isl_space_domain(space);
4045 ls = isl_local_space_from_space(space);
4046 for (i = 0; i < n_out; ++i) {
4047 isl_aff *aff;
4049 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4050 isl_dim_set, n_in + i);
4051 ma = isl_multi_aff_set_aff(ma, i, aff);
4053 isl_local_space_free(ls);
4054 return ma;
4055 error:
4056 isl_space_free(space);
4057 return NULL;
4060 /* Given a map space, return an isl_pw_multi_aff that maps a wrapped copy
4061 * of the space to its range.
4063 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_map(
4064 __isl_take isl_space *space)
4066 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_range_map(space));
4069 /* Given the space of a set and a range of set dimensions,
4070 * construct an isl_multi_aff that projects out those dimensions.
4072 __isl_give isl_multi_aff *isl_multi_aff_project_out_map(
4073 __isl_take isl_space *space, enum isl_dim_type type,
4074 unsigned first, unsigned n)
4076 int i;
4077 isl_size dim;
4078 isl_local_space *ls;
4079 isl_multi_aff *ma;
4081 if (!space)
4082 return NULL;
4083 if (!isl_space_is_set(space))
4084 isl_die(isl_space_get_ctx(space), isl_error_unsupported,
4085 "expecting set space", goto error);
4086 if (type != isl_dim_set)
4087 isl_die(isl_space_get_ctx(space), isl_error_invalid,
4088 "only set dimensions can be projected out", goto error);
4089 if (isl_space_check_range(space, type, first, n) < 0)
4090 goto error;
4092 dim = isl_space_dim(space, isl_dim_set);
4093 if (dim < 0)
4094 goto error;
4096 space = isl_space_from_domain(space);
4097 space = isl_space_add_dims(space, isl_dim_out, dim - n);
4099 if (dim == n)
4100 return isl_multi_aff_alloc(space);
4102 ma = isl_multi_aff_alloc(isl_space_copy(space));
4103 space = isl_space_domain(space);
4104 ls = isl_local_space_from_space(space);
4106 for (i = 0; i < first; ++i) {
4107 isl_aff *aff;
4109 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4110 isl_dim_set, i);
4111 ma = isl_multi_aff_set_aff(ma, i, aff);
4114 for (i = 0; i < dim - (first + n); ++i) {
4115 isl_aff *aff;
4117 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4118 isl_dim_set, first + n + i);
4119 ma = isl_multi_aff_set_aff(ma, first + i, aff);
4122 isl_local_space_free(ls);
4123 return ma;
4124 error:
4125 isl_space_free(space);
4126 return NULL;
4129 /* Given the space of a set and a range of set dimensions,
4130 * construct an isl_pw_multi_aff that projects out those dimensions.
4132 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_project_out_map(
4133 __isl_take isl_space *space, enum isl_dim_type type,
4134 unsigned first, unsigned n)
4136 isl_multi_aff *ma;
4138 ma = isl_multi_aff_project_out_map(space, type, first, n);
4139 return isl_pw_multi_aff_from_multi_aff(ma);
4142 /* Create an isl_pw_multi_aff with the given isl_multi_aff on a universe
4143 * domain.
4145 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_aff(
4146 __isl_take isl_multi_aff *ma)
4148 isl_set *dom = isl_set_universe(isl_multi_aff_get_domain_space(ma));
4149 return isl_pw_multi_aff_alloc(dom, ma);
4152 /* Create a piecewise multi-affine expression in the given space that maps each
4153 * input dimension to the corresponding output dimension.
4155 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_identity(
4156 __isl_take isl_space *space)
4158 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_identity(space));
4161 /* Exploit the equalities in "eq" to simplify the affine expressions.
4163 static __isl_give isl_multi_aff *isl_multi_aff_substitute_equalities(
4164 __isl_take isl_multi_aff *maff, __isl_take isl_basic_set *eq)
4166 int i;
4168 maff = isl_multi_aff_cow(maff);
4169 if (!maff || !eq)
4170 goto error;
4172 for (i = 0; i < maff->n; ++i) {
4173 maff->u.p[i] = isl_aff_substitute_equalities(maff->u.p[i],
4174 isl_basic_set_copy(eq));
4175 if (!maff->u.p[i])
4176 goto error;
4179 isl_basic_set_free(eq);
4180 return maff;
4181 error:
4182 isl_basic_set_free(eq);
4183 isl_multi_aff_free(maff);
4184 return NULL;
4187 __isl_give isl_multi_aff *isl_multi_aff_scale(__isl_take isl_multi_aff *maff,
4188 isl_int f)
4190 int i;
4192 maff = isl_multi_aff_cow(maff);
4193 if (!maff)
4194 return NULL;
4196 for (i = 0; i < maff->n; ++i) {
4197 maff->u.p[i] = isl_aff_scale(maff->u.p[i], f);
4198 if (!maff->u.p[i])
4199 return isl_multi_aff_free(maff);
4202 return maff;
4205 __isl_give isl_multi_aff *isl_multi_aff_add_on_domain(__isl_keep isl_set *dom,
4206 __isl_take isl_multi_aff *maff1, __isl_take isl_multi_aff *maff2)
4208 maff1 = isl_multi_aff_add(maff1, maff2);
4209 maff1 = isl_multi_aff_gist(maff1, isl_set_copy(dom));
4210 return maff1;
4213 int isl_multi_aff_is_empty(__isl_keep isl_multi_aff *maff)
4215 if (!maff)
4216 return -1;
4218 return 0;
4221 /* Return the set of domain elements where "ma1" is lexicographically
4222 * smaller than or equal to "ma2".
4224 __isl_give isl_set *isl_multi_aff_lex_le_set(__isl_take isl_multi_aff *ma1,
4225 __isl_take isl_multi_aff *ma2)
4227 return isl_multi_aff_lex_ge_set(ma2, ma1);
4230 /* Return the set of domain elements where "ma1" is lexicographically
4231 * smaller than "ma2".
4233 __isl_give isl_set *isl_multi_aff_lex_lt_set(__isl_take isl_multi_aff *ma1,
4234 __isl_take isl_multi_aff *ma2)
4236 return isl_multi_aff_lex_gt_set(ma2, ma1);
4239 /* Return the set of domain elements where "ma1" and "ma2"
4240 * satisfy "order".
4242 static __isl_give isl_set *isl_multi_aff_order_set(
4243 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2,
4244 __isl_give isl_map *order(__isl_take isl_space *set_space))
4246 isl_space *space;
4247 isl_map *map1, *map2;
4248 isl_map *map, *ge;
4250 map1 = isl_map_from_multi_aff_internal(ma1);
4251 map2 = isl_map_from_multi_aff_internal(ma2);
4252 map = isl_map_range_product(map1, map2);
4253 space = isl_space_range(isl_map_get_space(map));
4254 space = isl_space_domain(isl_space_unwrap(space));
4255 ge = order(space);
4256 map = isl_map_intersect_range(map, isl_map_wrap(ge));
4258 return isl_map_domain(map);
4261 /* Return the set of domain elements where "ma1" is lexicographically
4262 * greater than or equal to "ma2".
4264 __isl_give isl_set *isl_multi_aff_lex_ge_set(__isl_take isl_multi_aff *ma1,
4265 __isl_take isl_multi_aff *ma2)
4267 return isl_multi_aff_order_set(ma1, ma2, &isl_map_lex_ge);
4270 /* Return the set of domain elements where "ma1" is lexicographically
4271 * greater than "ma2".
4273 __isl_give isl_set *isl_multi_aff_lex_gt_set(__isl_take isl_multi_aff *ma1,
4274 __isl_take isl_multi_aff *ma2)
4276 return isl_multi_aff_order_set(ma1, ma2, &isl_map_lex_gt);
4279 #undef PW
4280 #define PW isl_pw_multi_aff
4281 #undef EL
4282 #define EL isl_multi_aff
4283 #undef EL_IS_ZERO
4284 #define EL_IS_ZERO is_empty
4285 #undef ZERO
4286 #define ZERO empty
4287 #undef IS_ZERO
4288 #define IS_ZERO is_empty
4289 #undef FIELD
4290 #define FIELD maff
4291 #undef DEFAULT_IS_ZERO
4292 #define DEFAULT_IS_ZERO 0
4294 #define NO_SUB
4295 #define NO_OPT
4296 #define NO_INSERT_DIMS
4297 #define NO_LIFT
4298 #define NO_MORPH
4300 #include <isl_pw_templ.c>
4301 #include <isl_pw_union_opt.c>
4303 #undef NO_SUB
4305 #undef BASE
4306 #define BASE pw_multi_aff
4308 #include <isl_union_multi.c>
4309 #include <isl_union_neg.c>
4311 static __isl_give isl_pw_multi_aff *pw_multi_aff_union_lexmax(
4312 __isl_take isl_pw_multi_aff *pma1,
4313 __isl_take isl_pw_multi_aff *pma2)
4315 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4316 &isl_multi_aff_lex_ge_set);
4319 /* Given two piecewise multi affine expressions, return a piecewise
4320 * multi-affine expression defined on the union of the definition domains
4321 * of the inputs that is equal to the lexicographic maximum of the two
4322 * inputs on each cell. If only one of the two inputs is defined on
4323 * a given cell, then it is considered to be the maximum.
4325 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmax(
4326 __isl_take isl_pw_multi_aff *pma1,
4327 __isl_take isl_pw_multi_aff *pma2)
4329 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4330 &pw_multi_aff_union_lexmax);
4333 static __isl_give isl_pw_multi_aff *pw_multi_aff_union_lexmin(
4334 __isl_take isl_pw_multi_aff *pma1,
4335 __isl_take isl_pw_multi_aff *pma2)
4337 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4338 &isl_multi_aff_lex_le_set);
4341 /* Given two piecewise multi affine expressions, return a piecewise
4342 * multi-affine expression defined on the union of the definition domains
4343 * of the inputs that is equal to the lexicographic minimum of the two
4344 * inputs on each cell. If only one of the two inputs is defined on
4345 * a given cell, then it is considered to be the minimum.
4347 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmin(
4348 __isl_take isl_pw_multi_aff *pma1,
4349 __isl_take isl_pw_multi_aff *pma2)
4351 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4352 &pw_multi_aff_union_lexmin);
4355 static __isl_give isl_pw_multi_aff *pw_multi_aff_add(
4356 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4358 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4359 &isl_multi_aff_add);
4362 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_add(
4363 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4365 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4366 &pw_multi_aff_add);
4369 static __isl_give isl_pw_multi_aff *pw_multi_aff_sub(
4370 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4372 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4373 &isl_multi_aff_sub);
4376 /* Subtract "pma2" from "pma1" and return the result.
4378 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_sub(
4379 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4381 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4382 &pw_multi_aff_sub);
4385 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_add(
4386 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4388 return isl_pw_multi_aff_union_add_(pma1, pma2);
4391 /* Compute the sum of "upa1" and "upa2" on the union of their domains,
4392 * with the actual sum on the shared domain and
4393 * the defined expression on the symmetric difference of the domains.
4395 __isl_give isl_union_pw_aff *isl_union_pw_aff_union_add(
4396 __isl_take isl_union_pw_aff *upa1, __isl_take isl_union_pw_aff *upa2)
4398 return isl_union_pw_aff_union_add_(upa1, upa2);
4401 /* Compute the sum of "upma1" and "upma2" on the union of their domains,
4402 * with the actual sum on the shared domain and
4403 * the defined expression on the symmetric difference of the domains.
4405 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_union_add(
4406 __isl_take isl_union_pw_multi_aff *upma1,
4407 __isl_take isl_union_pw_multi_aff *upma2)
4409 return isl_union_pw_multi_aff_union_add_(upma1, upma2);
4412 /* Given two piecewise multi-affine expressions A -> B and C -> D,
4413 * construct a piecewise multi-affine expression [A -> C] -> [B -> D].
4415 static __isl_give isl_pw_multi_aff *pw_multi_aff_product(
4416 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4418 int i, j, n;
4419 isl_space *space;
4420 isl_pw_multi_aff *res;
4422 if (!pma1 || !pma2)
4423 goto error;
4425 n = pma1->n * pma2->n;
4426 space = isl_space_product(isl_space_copy(pma1->dim),
4427 isl_space_copy(pma2->dim));
4428 res = isl_pw_multi_aff_alloc_size(space, n);
4430 for (i = 0; i < pma1->n; ++i) {
4431 for (j = 0; j < pma2->n; ++j) {
4432 isl_set *domain;
4433 isl_multi_aff *ma;
4435 domain = isl_set_product(isl_set_copy(pma1->p[i].set),
4436 isl_set_copy(pma2->p[j].set));
4437 ma = isl_multi_aff_product(
4438 isl_multi_aff_copy(pma1->p[i].maff),
4439 isl_multi_aff_copy(pma2->p[j].maff));
4440 res = isl_pw_multi_aff_add_piece(res, domain, ma);
4444 isl_pw_multi_aff_free(pma1);
4445 isl_pw_multi_aff_free(pma2);
4446 return res;
4447 error:
4448 isl_pw_multi_aff_free(pma1);
4449 isl_pw_multi_aff_free(pma2);
4450 return NULL;
4453 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_product(
4454 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4456 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
4457 &pw_multi_aff_product);
4460 /* Subtract the initial "n" elements in "ma" with coefficients in "c" and
4461 * denominator "denom".
4462 * "denom" is allowed to be negative, in which case the actual denominator
4463 * is -denom and the expressions are added instead.
4465 static __isl_give isl_aff *subtract_initial(__isl_take isl_aff *aff,
4466 __isl_keep isl_multi_aff *ma, int n, isl_int *c, isl_int denom)
4468 int i, first;
4469 int sign;
4470 isl_int d;
4472 first = isl_seq_first_non_zero(c, n);
4473 if (first == -1)
4474 return aff;
4476 sign = isl_int_sgn(denom);
4477 isl_int_init(d);
4478 isl_int_abs(d, denom);
4479 for (i = first; i < n; ++i) {
4480 isl_aff *aff_i;
4482 if (isl_int_is_zero(c[i]))
4483 continue;
4484 aff_i = isl_multi_aff_get_aff(ma, i);
4485 aff_i = isl_aff_scale(aff_i, c[i]);
4486 aff_i = isl_aff_scale_down(aff_i, d);
4487 if (sign >= 0)
4488 aff = isl_aff_sub(aff, aff_i);
4489 else
4490 aff = isl_aff_add(aff, aff_i);
4492 isl_int_clear(d);
4494 return aff;
4497 /* Extract an affine expression that expresses the output dimension "pos"
4498 * of "bmap" in terms of the parameters and input dimensions from
4499 * equality "eq".
4500 * Note that this expression may involve integer divisions defined
4501 * in terms of parameters and input dimensions.
4502 * The equality may also involve references to earlier (but not later)
4503 * output dimensions. These are replaced by the corresponding elements
4504 * in "ma".
4506 * If the equality is of the form
4508 * f(i) + h(j) + a x + g(i) = 0,
4510 * with f(i) a linear combinations of the parameters and input dimensions,
4511 * g(i) a linear combination of integer divisions defined in terms of the same
4512 * and h(j) a linear combinations of earlier output dimensions,
4513 * then the affine expression is
4515 * (-f(i) - g(i))/a - h(j)/a
4517 * If the equality is of the form
4519 * f(i) + h(j) - a x + g(i) = 0,
4521 * then the affine expression is
4523 * (f(i) + g(i))/a - h(j)/(-a)
4526 * If "div" refers to an integer division (i.e., it is smaller than
4527 * the number of integer divisions), then the equality constraint
4528 * does involve an integer division (the one at position "div") that
4529 * is defined in terms of output dimensions. However, this integer
4530 * division can be eliminated by exploiting a pair of constraints
4531 * x >= l and x <= l + n, with n smaller than the coefficient of "div"
4532 * in the equality constraint. "ineq" refers to inequality x >= l, i.e.,
4533 * -l + x >= 0.
4534 * In particular, let
4536 * x = e(i) + m floor(...)
4538 * with e(i) the expression derived above and floor(...) the integer
4539 * division involving output dimensions.
4540 * From
4542 * l <= x <= l + n,
4544 * we have
4546 * 0 <= x - l <= n
4548 * This means
4550 * e(i) + m floor(...) - l = (e(i) + m floor(...) - l) mod m
4551 * = (e(i) - l) mod m
4553 * Therefore,
4555 * x - l = (e(i) - l) mod m
4557 * or
4559 * x = ((e(i) - l) mod m) + l
4561 * The variable "shift" below contains the expression -l, which may
4562 * also involve a linear combination of earlier output dimensions.
4564 static __isl_give isl_aff *extract_aff_from_equality(
4565 __isl_keep isl_basic_map *bmap, int pos, int eq, int div, int ineq,
4566 __isl_keep isl_multi_aff *ma)
4568 unsigned o_out;
4569 isl_size n_div, n_out;
4570 isl_ctx *ctx;
4571 isl_local_space *ls;
4572 isl_aff *aff, *shift;
4573 isl_val *mod;
4575 ctx = isl_basic_map_get_ctx(bmap);
4576 ls = isl_basic_map_get_local_space(bmap);
4577 ls = isl_local_space_domain(ls);
4578 aff = isl_aff_alloc(isl_local_space_copy(ls));
4579 if (!aff)
4580 goto error;
4581 o_out = isl_basic_map_offset(bmap, isl_dim_out);
4582 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4583 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4584 if (n_out < 0 || n_div < 0)
4585 goto error;
4586 if (isl_int_is_neg(bmap->eq[eq][o_out + pos])) {
4587 isl_seq_cpy(aff->v->el + 1, bmap->eq[eq], o_out);
4588 isl_seq_cpy(aff->v->el + 1 + o_out,
4589 bmap->eq[eq] + o_out + n_out, n_div);
4590 } else {
4591 isl_seq_neg(aff->v->el + 1, bmap->eq[eq], o_out);
4592 isl_seq_neg(aff->v->el + 1 + o_out,
4593 bmap->eq[eq] + o_out + n_out, n_div);
4595 if (div < n_div)
4596 isl_int_set_si(aff->v->el[1 + o_out + div], 0);
4597 isl_int_abs(aff->v->el[0], bmap->eq[eq][o_out + pos]);
4598 aff = subtract_initial(aff, ma, pos, bmap->eq[eq] + o_out,
4599 bmap->eq[eq][o_out + pos]);
4600 if (div < n_div) {
4601 shift = isl_aff_alloc(isl_local_space_copy(ls));
4602 if (!shift)
4603 goto error;
4604 isl_seq_cpy(shift->v->el + 1, bmap->ineq[ineq], o_out);
4605 isl_seq_cpy(shift->v->el + 1 + o_out,
4606 bmap->ineq[ineq] + o_out + n_out, n_div);
4607 isl_int_set_si(shift->v->el[0], 1);
4608 shift = subtract_initial(shift, ma, pos,
4609 bmap->ineq[ineq] + o_out, ctx->negone);
4610 aff = isl_aff_add(aff, isl_aff_copy(shift));
4611 mod = isl_val_int_from_isl_int(ctx,
4612 bmap->eq[eq][o_out + n_out + div]);
4613 mod = isl_val_abs(mod);
4614 aff = isl_aff_mod_val(aff, mod);
4615 aff = isl_aff_sub(aff, shift);
4618 isl_local_space_free(ls);
4619 return aff;
4620 error:
4621 isl_local_space_free(ls);
4622 isl_aff_free(aff);
4623 return NULL;
4626 /* Given a basic map with output dimensions defined
4627 * in terms of the parameters input dimensions and earlier
4628 * output dimensions using an equality (and possibly a pair on inequalities),
4629 * extract an isl_aff that expresses output dimension "pos" in terms
4630 * of the parameters and input dimensions.
4631 * Note that this expression may involve integer divisions defined
4632 * in terms of parameters and input dimensions.
4633 * "ma" contains the expressions corresponding to earlier output dimensions.
4635 * This function shares some similarities with
4636 * isl_basic_map_has_defining_equality and isl_constraint_get_bound.
4638 static __isl_give isl_aff *extract_isl_aff_from_basic_map(
4639 __isl_keep isl_basic_map *bmap, int pos, __isl_keep isl_multi_aff *ma)
4641 int eq, div, ineq;
4642 isl_aff *aff;
4644 if (!bmap)
4645 return NULL;
4646 eq = isl_basic_map_output_defining_equality(bmap, pos, &div, &ineq);
4647 if (eq >= bmap->n_eq)
4648 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
4649 "unable to find suitable equality", return NULL);
4650 aff = extract_aff_from_equality(bmap, pos, eq, div, ineq, ma);
4652 aff = isl_aff_remove_unused_divs(aff);
4653 return aff;
4656 /* Given a basic map where each output dimension is defined
4657 * in terms of the parameters and input dimensions using an equality,
4658 * extract an isl_multi_aff that expresses the output dimensions in terms
4659 * of the parameters and input dimensions.
4661 static __isl_give isl_multi_aff *extract_isl_multi_aff_from_basic_map(
4662 __isl_take isl_basic_map *bmap)
4664 int i;
4665 isl_size n_out;
4666 isl_multi_aff *ma;
4668 if (!bmap)
4669 return NULL;
4671 ma = isl_multi_aff_alloc(isl_basic_map_get_space(bmap));
4672 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4673 if (n_out < 0)
4674 ma = isl_multi_aff_free(ma);
4676 for (i = 0; i < n_out; ++i) {
4677 isl_aff *aff;
4679 aff = extract_isl_aff_from_basic_map(bmap, i, ma);
4680 ma = isl_multi_aff_set_aff(ma, i, aff);
4683 isl_basic_map_free(bmap);
4685 return ma;
4688 /* Given a basic set where each set dimension is defined
4689 * in terms of the parameters using an equality,
4690 * extract an isl_multi_aff that expresses the set dimensions in terms
4691 * of the parameters.
4693 __isl_give isl_multi_aff *isl_multi_aff_from_basic_set_equalities(
4694 __isl_take isl_basic_set *bset)
4696 return extract_isl_multi_aff_from_basic_map(bset);
4699 /* Create an isl_pw_multi_aff that is equivalent to
4700 * isl_map_intersect_domain(isl_map_from_basic_map(bmap), domain).
4701 * The given basic map is such that each output dimension is defined
4702 * in terms of the parameters and input dimensions using an equality.
4704 * Since some applications expect the result of isl_pw_multi_aff_from_map
4705 * to only contain integer affine expressions, we compute the floor
4706 * of the expression before returning.
4708 * Remove all constraints involving local variables without
4709 * an explicit representation (resulting in the removal of those
4710 * local variables) prior to the actual extraction to ensure
4711 * that the local spaces in which the resulting affine expressions
4712 * are created do not contain any unknown local variables.
4713 * Removing such constraints is safe because constraints involving
4714 * unknown local variables are not used to determine whether
4715 * a basic map is obviously single-valued.
4717 static __isl_give isl_pw_multi_aff *plain_pw_multi_aff_from_map(
4718 __isl_take isl_set *domain, __isl_take isl_basic_map *bmap)
4720 isl_multi_aff *ma;
4722 bmap = isl_basic_map_drop_constraint_involving_unknown_divs(bmap);
4723 ma = extract_isl_multi_aff_from_basic_map(bmap);
4724 ma = isl_multi_aff_floor(ma);
4725 return isl_pw_multi_aff_alloc(domain, ma);
4728 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
4729 * This obviously only works if the input "map" is single-valued.
4730 * If so, we compute the lexicographic minimum of the image in the form
4731 * of an isl_pw_multi_aff. Since the image is unique, it is equal
4732 * to its lexicographic minimum.
4733 * If the input is not single-valued, we produce an error.
4735 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_base(
4736 __isl_take isl_map *map)
4738 int i;
4739 int sv;
4740 isl_pw_multi_aff *pma;
4742 sv = isl_map_is_single_valued(map);
4743 if (sv < 0)
4744 goto error;
4745 if (!sv)
4746 isl_die(isl_map_get_ctx(map), isl_error_invalid,
4747 "map is not single-valued", goto error);
4748 map = isl_map_make_disjoint(map);
4749 if (!map)
4750 return NULL;
4752 pma = isl_pw_multi_aff_empty(isl_map_get_space(map));
4754 for (i = 0; i < map->n; ++i) {
4755 isl_pw_multi_aff *pma_i;
4756 isl_basic_map *bmap;
4757 bmap = isl_basic_map_copy(map->p[i]);
4758 pma_i = isl_basic_map_lexmin_pw_multi_aff(bmap);
4759 pma = isl_pw_multi_aff_add_disjoint(pma, pma_i);
4762 isl_map_free(map);
4763 return pma;
4764 error:
4765 isl_map_free(map);
4766 return NULL;
4769 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
4770 * taking into account that the output dimension at position "d"
4771 * can be represented as
4773 * x = floor((e(...) + c1) / m)
4775 * given that constraint "i" is of the form
4777 * e(...) + c1 - m x >= 0
4780 * Let "map" be of the form
4782 * A -> B
4784 * We construct a mapping
4786 * A -> [A -> x = floor(...)]
4788 * apply that to the map, obtaining
4790 * [A -> x = floor(...)] -> B
4792 * and equate dimension "d" to x.
4793 * We then compute a isl_pw_multi_aff representation of the resulting map
4794 * and plug in the mapping above.
4796 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_div(
4797 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i)
4799 isl_ctx *ctx;
4800 isl_space *space = NULL;
4801 isl_local_space *ls;
4802 isl_multi_aff *ma;
4803 isl_aff *aff;
4804 isl_vec *v;
4805 isl_map *insert;
4806 int offset;
4807 isl_size n;
4808 isl_size n_in;
4809 isl_pw_multi_aff *pma;
4810 isl_bool is_set;
4812 is_set = isl_map_is_set(map);
4813 if (is_set < 0)
4814 goto error;
4816 offset = isl_basic_map_offset(hull, isl_dim_out);
4817 ctx = isl_map_get_ctx(map);
4818 space = isl_space_domain(isl_map_get_space(map));
4819 n_in = isl_space_dim(space, isl_dim_set);
4820 n = isl_space_dim(space, isl_dim_all);
4821 if (n_in < 0 || n < 0)
4822 goto error;
4824 v = isl_vec_alloc(ctx, 1 + 1 + n);
4825 if (v) {
4826 isl_int_neg(v->el[0], hull->ineq[i][offset + d]);
4827 isl_seq_cpy(v->el + 1, hull->ineq[i], 1 + n);
4829 isl_basic_map_free(hull);
4831 ls = isl_local_space_from_space(isl_space_copy(space));
4832 aff = isl_aff_alloc_vec(ls, v);
4833 aff = isl_aff_floor(aff);
4834 if (is_set) {
4835 isl_space_free(space);
4836 ma = isl_multi_aff_from_aff(aff);
4837 } else {
4838 ma = isl_multi_aff_identity(isl_space_map_from_set(space));
4839 ma = isl_multi_aff_range_product(ma,
4840 isl_multi_aff_from_aff(aff));
4843 insert = isl_map_from_multi_aff_internal(isl_multi_aff_copy(ma));
4844 map = isl_map_apply_domain(map, insert);
4845 map = isl_map_equate(map, isl_dim_in, n_in, isl_dim_out, d);
4846 pma = isl_pw_multi_aff_from_map(map);
4847 pma = isl_pw_multi_aff_pullback_multi_aff(pma, ma);
4849 return pma;
4850 error:
4851 isl_space_free(space);
4852 isl_map_free(map);
4853 isl_basic_map_free(hull);
4854 return NULL;
4857 /* Is constraint "c" of the form
4859 * e(...) + c1 - m x >= 0
4861 * or
4863 * -e(...) + c2 + m x >= 0
4865 * where m > 1 and e only depends on parameters and input dimemnsions?
4867 * "offset" is the offset of the output dimensions
4868 * "pos" is the position of output dimension x.
4870 static int is_potential_div_constraint(isl_int *c, int offset, int d, int total)
4872 if (isl_int_is_zero(c[offset + d]))
4873 return 0;
4874 if (isl_int_is_one(c[offset + d]))
4875 return 0;
4876 if (isl_int_is_negone(c[offset + d]))
4877 return 0;
4878 if (isl_seq_first_non_zero(c + offset, d) != -1)
4879 return 0;
4880 if (isl_seq_first_non_zero(c + offset + d + 1,
4881 total - (offset + d + 1)) != -1)
4882 return 0;
4883 return 1;
4886 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
4888 * As a special case, we first check if there is any pair of constraints,
4889 * shared by all the basic maps in "map" that force a given dimension
4890 * to be equal to the floor of some affine combination of the input dimensions.
4892 * In particular, if we can find two constraints
4894 * e(...) + c1 - m x >= 0 i.e., m x <= e(...) + c1
4896 * and
4898 * -e(...) + c2 + m x >= 0 i.e., m x >= e(...) - c2
4900 * where m > 1 and e only depends on parameters and input dimemnsions,
4901 * and such that
4903 * c1 + c2 < m i.e., -c2 >= c1 - (m - 1)
4905 * then we know that we can take
4907 * x = floor((e(...) + c1) / m)
4909 * without having to perform any computation.
4911 * Note that we know that
4913 * c1 + c2 >= 1
4915 * If c1 + c2 were 0, then we would have detected an equality during
4916 * simplification. If c1 + c2 were negative, then we would have detected
4917 * a contradiction.
4919 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_div(
4920 __isl_take isl_map *map)
4922 int d;
4923 isl_size dim;
4924 int i, j, n;
4925 int offset;
4926 isl_size total;
4927 isl_int sum;
4928 isl_basic_map *hull;
4930 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
4931 dim = isl_map_dim(map, isl_dim_out);
4932 total = isl_basic_map_dim(hull, isl_dim_all);
4933 if (dim < 0 || total < 0)
4934 goto error;
4936 isl_int_init(sum);
4937 offset = isl_basic_map_offset(hull, isl_dim_out);
4938 n = hull->n_ineq;
4939 for (d = 0; d < dim; ++d) {
4940 for (i = 0; i < n; ++i) {
4941 if (!is_potential_div_constraint(hull->ineq[i],
4942 offset, d, 1 + total))
4943 continue;
4944 for (j = i + 1; j < n; ++j) {
4945 if (!isl_seq_is_neg(hull->ineq[i] + 1,
4946 hull->ineq[j] + 1, total))
4947 continue;
4948 isl_int_add(sum, hull->ineq[i][0],
4949 hull->ineq[j][0]);
4950 if (isl_int_abs_lt(sum,
4951 hull->ineq[i][offset + d]))
4952 break;
4955 if (j >= n)
4956 continue;
4957 isl_int_clear(sum);
4958 if (isl_int_is_pos(hull->ineq[j][offset + d]))
4959 j = i;
4960 return pw_multi_aff_from_map_div(map, hull, d, j);
4963 isl_int_clear(sum);
4964 isl_basic_map_free(hull);
4965 return pw_multi_aff_from_map_base(map);
4966 error:
4967 isl_map_free(map);
4968 isl_basic_map_free(hull);
4969 return NULL;
4972 /* Given an affine expression
4974 * [A -> B] -> f(A,B)
4976 * construct an isl_multi_aff
4978 * [A -> B] -> B'
4980 * such that dimension "d" in B' is set to "aff" and the remaining
4981 * dimensions are set equal to the corresponding dimensions in B.
4982 * "n_in" is the dimension of the space A.
4983 * "n_out" is the dimension of the space B.
4985 * If "is_set" is set, then the affine expression is of the form
4987 * [B] -> f(B)
4989 * and we construct an isl_multi_aff
4991 * B -> B'
4993 static __isl_give isl_multi_aff *range_map(__isl_take isl_aff *aff, int d,
4994 unsigned n_in, unsigned n_out, int is_set)
4996 int i;
4997 isl_multi_aff *ma;
4998 isl_space *space, *space2;
4999 isl_local_space *ls;
5001 space = isl_aff_get_domain_space(aff);
5002 ls = isl_local_space_from_space(isl_space_copy(space));
5003 space2 = isl_space_copy(space);
5004 if (!is_set)
5005 space2 = isl_space_range(isl_space_unwrap(space2));
5006 space = isl_space_map_from_domain_and_range(space, space2);
5007 ma = isl_multi_aff_alloc(space);
5008 ma = isl_multi_aff_set_aff(ma, d, aff);
5010 for (i = 0; i < n_out; ++i) {
5011 if (i == d)
5012 continue;
5013 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
5014 isl_dim_set, n_in + i);
5015 ma = isl_multi_aff_set_aff(ma, i, aff);
5018 isl_local_space_free(ls);
5020 return ma;
5023 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
5024 * taking into account that the dimension at position "d" can be written as
5026 * x = m a + f(..) (1)
5028 * where m is equal to "gcd".
5029 * "i" is the index of the equality in "hull" that defines f(..).
5030 * In particular, the equality is of the form
5032 * f(..) - x + m g(existentials) = 0
5034 * or
5036 * -f(..) + x + m g(existentials) = 0
5038 * We basically plug (1) into "map", resulting in a map with "a"
5039 * in the range instead of "x". The corresponding isl_pw_multi_aff
5040 * defining "a" is then plugged back into (1) to obtain a definition for "x".
5042 * Specifically, given the input map
5044 * A -> B
5046 * We first wrap it into a set
5048 * [A -> B]
5050 * and define (1) on top of the corresponding space, resulting in "aff".
5051 * We use this to create an isl_multi_aff that maps the output position "d"
5052 * from "a" to "x", leaving all other (intput and output) dimensions unchanged.
5053 * We plug this into the wrapped map, unwrap the result and compute the
5054 * corresponding isl_pw_multi_aff.
5055 * The result is an expression
5057 * A -> T(A)
5059 * We adjust that to
5061 * A -> [A -> T(A)]
5063 * so that we can plug that into "aff", after extending the latter to
5064 * a mapping
5066 * [A -> B] -> B'
5069 * If "map" is actually a set, then there is no "A" space, meaning
5070 * that we do not need to perform any wrapping, and that the result
5071 * of the recursive call is of the form
5073 * [T]
5075 * which is plugged into a mapping of the form
5077 * B -> B'
5079 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_stride(
5080 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i,
5081 isl_int gcd)
5083 isl_set *set;
5084 isl_space *space;
5085 isl_local_space *ls;
5086 isl_aff *aff;
5087 isl_multi_aff *ma;
5088 isl_pw_multi_aff *pma, *id;
5089 isl_size n_in;
5090 unsigned o_out;
5091 isl_size n_out;
5092 isl_bool is_set;
5094 is_set = isl_map_is_set(map);
5095 if (is_set < 0)
5096 goto error;
5098 n_in = isl_basic_map_dim(hull, isl_dim_in);
5099 n_out = isl_basic_map_dim(hull, isl_dim_out);
5100 if (n_in < 0 || n_out < 0)
5101 goto error;
5102 o_out = isl_basic_map_offset(hull, isl_dim_out);
5104 if (is_set)
5105 set = map;
5106 else
5107 set = isl_map_wrap(map);
5108 space = isl_space_map_from_set(isl_set_get_space(set));
5109 ma = isl_multi_aff_identity(space);
5110 ls = isl_local_space_from_space(isl_set_get_space(set));
5111 aff = isl_aff_alloc(ls);
5112 if (aff) {
5113 isl_int_set_si(aff->v->el[0], 1);
5114 if (isl_int_is_one(hull->eq[i][o_out + d]))
5115 isl_seq_neg(aff->v->el + 1, hull->eq[i],
5116 aff->v->size - 1);
5117 else
5118 isl_seq_cpy(aff->v->el + 1, hull->eq[i],
5119 aff->v->size - 1);
5120 isl_int_set(aff->v->el[1 + o_out + d], gcd);
5122 ma = isl_multi_aff_set_aff(ma, n_in + d, isl_aff_copy(aff));
5123 set = isl_set_preimage_multi_aff(set, ma);
5125 ma = range_map(aff, d, n_in, n_out, is_set);
5127 if (is_set)
5128 map = set;
5129 else
5130 map = isl_set_unwrap(set);
5131 pma = isl_pw_multi_aff_from_map(map);
5133 if (!is_set) {
5134 space = isl_pw_multi_aff_get_domain_space(pma);
5135 space = isl_space_map_from_set(space);
5136 id = isl_pw_multi_aff_identity(space);
5137 pma = isl_pw_multi_aff_range_product(id, pma);
5139 id = isl_pw_multi_aff_from_multi_aff(ma);
5140 pma = isl_pw_multi_aff_pullback_pw_multi_aff(id, pma);
5142 isl_basic_map_free(hull);
5143 return pma;
5144 error:
5145 isl_map_free(map);
5146 isl_basic_map_free(hull);
5147 return NULL;
5150 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5151 * "hull" contains the equalities valid for "map".
5153 * Check if any of the output dimensions is "strided".
5154 * That is, we check if it can be written as
5156 * x = m a + f(..)
5158 * with m greater than 1, a some combination of existentially quantified
5159 * variables and f an expression in the parameters and input dimensions.
5160 * If so, we remove the stride in pw_multi_aff_from_map_stride.
5162 * Otherwise, we continue with pw_multi_aff_from_map_check_div for a further
5163 * special case.
5165 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_strides(
5166 __isl_take isl_map *map, __isl_take isl_basic_map *hull)
5168 int i, j;
5169 isl_size n_out;
5170 unsigned o_out;
5171 isl_size n_div;
5172 unsigned o_div;
5173 isl_int gcd;
5175 n_div = isl_basic_map_dim(hull, isl_dim_div);
5176 n_out = isl_basic_map_dim(hull, isl_dim_out);
5177 if (n_div < 0 || n_out < 0)
5178 goto error;
5180 if (n_div == 0) {
5181 isl_basic_map_free(hull);
5182 return pw_multi_aff_from_map_check_div(map);
5185 isl_int_init(gcd);
5187 o_div = isl_basic_map_offset(hull, isl_dim_div);
5188 o_out = isl_basic_map_offset(hull, isl_dim_out);
5190 for (i = 0; i < n_out; ++i) {
5191 for (j = 0; j < hull->n_eq; ++j) {
5192 isl_int *eq = hull->eq[j];
5193 isl_pw_multi_aff *res;
5195 if (!isl_int_is_one(eq[o_out + i]) &&
5196 !isl_int_is_negone(eq[o_out + i]))
5197 continue;
5198 if (isl_seq_first_non_zero(eq + o_out, i) != -1)
5199 continue;
5200 if (isl_seq_first_non_zero(eq + o_out + i + 1,
5201 n_out - (i + 1)) != -1)
5202 continue;
5203 isl_seq_gcd(eq + o_div, n_div, &gcd);
5204 if (isl_int_is_zero(gcd))
5205 continue;
5206 if (isl_int_is_one(gcd))
5207 continue;
5209 res = pw_multi_aff_from_map_stride(map, hull,
5210 i, j, gcd);
5211 isl_int_clear(gcd);
5212 return res;
5216 isl_int_clear(gcd);
5217 isl_basic_map_free(hull);
5218 return pw_multi_aff_from_map_check_div(map);
5219 error:
5220 isl_map_free(map);
5221 isl_basic_map_free(hull);
5222 return NULL;
5225 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5227 * As a special case, we first check if all output dimensions are uniquely
5228 * defined in terms of the parameters and input dimensions over the entire
5229 * domain. If so, we extract the desired isl_pw_multi_aff directly
5230 * from the affine hull of "map" and its domain.
5232 * Otherwise, continue with pw_multi_aff_from_map_check_strides for more
5233 * special cases.
5235 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_map(__isl_take isl_map *map)
5237 isl_bool sv;
5238 isl_size n;
5239 isl_basic_map *hull;
5241 n = isl_map_n_basic_map(map);
5242 if (n < 0)
5243 goto error;
5245 if (n == 1) {
5246 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5247 hull = isl_basic_map_plain_affine_hull(hull);
5248 sv = isl_basic_map_plain_is_single_valued(hull);
5249 if (sv >= 0 && sv)
5250 return plain_pw_multi_aff_from_map(isl_map_domain(map),
5251 hull);
5252 isl_basic_map_free(hull);
5254 map = isl_map_detect_equalities(map);
5255 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5256 sv = isl_basic_map_plain_is_single_valued(hull);
5257 if (sv >= 0 && sv)
5258 return plain_pw_multi_aff_from_map(isl_map_domain(map), hull);
5259 if (sv >= 0)
5260 return pw_multi_aff_from_map_check_strides(map, hull);
5261 isl_basic_map_free(hull);
5262 error:
5263 isl_map_free(map);
5264 return NULL;
5267 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_set(__isl_take isl_set *set)
5269 return isl_pw_multi_aff_from_map(set);
5272 /* Convert "map" into an isl_pw_multi_aff (if possible) and
5273 * add it to *user.
5275 static isl_stat pw_multi_aff_from_map(__isl_take isl_map *map, void *user)
5277 isl_union_pw_multi_aff **upma = user;
5278 isl_pw_multi_aff *pma;
5280 pma = isl_pw_multi_aff_from_map(map);
5281 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
5283 return *upma ? isl_stat_ok : isl_stat_error;
5286 /* Create an isl_union_pw_multi_aff with the given isl_aff on a universe
5287 * domain.
5289 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_aff(
5290 __isl_take isl_aff *aff)
5292 isl_multi_aff *ma;
5293 isl_pw_multi_aff *pma;
5295 ma = isl_multi_aff_from_aff(aff);
5296 pma = isl_pw_multi_aff_from_multi_aff(ma);
5297 return isl_union_pw_multi_aff_from_pw_multi_aff(pma);
5300 /* Try and create an isl_union_pw_multi_aff that is equivalent
5301 * to the given isl_union_map.
5302 * The isl_union_map is required to be single-valued in each space.
5303 * Otherwise, an error is produced.
5305 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_map(
5306 __isl_take isl_union_map *umap)
5308 isl_space *space;
5309 isl_union_pw_multi_aff *upma;
5311 space = isl_union_map_get_space(umap);
5312 upma = isl_union_pw_multi_aff_empty(space);
5313 if (isl_union_map_foreach_map(umap, &pw_multi_aff_from_map, &upma) < 0)
5314 upma = isl_union_pw_multi_aff_free(upma);
5315 isl_union_map_free(umap);
5317 return upma;
5320 /* Try and create an isl_union_pw_multi_aff that is equivalent
5321 * to the given isl_union_set.
5322 * The isl_union_set is required to be a singleton in each space.
5323 * Otherwise, an error is produced.
5325 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_set(
5326 __isl_take isl_union_set *uset)
5328 return isl_union_pw_multi_aff_from_union_map(uset);
5331 /* Return the piecewise affine expression "set ? 1 : 0".
5333 __isl_give isl_pw_aff *isl_set_indicator_function(__isl_take isl_set *set)
5335 isl_pw_aff *pa;
5336 isl_space *space = isl_set_get_space(set);
5337 isl_local_space *ls = isl_local_space_from_space(space);
5338 isl_aff *zero = isl_aff_zero_on_domain(isl_local_space_copy(ls));
5339 isl_aff *one = isl_aff_zero_on_domain(ls);
5341 one = isl_aff_add_constant_si(one, 1);
5342 pa = isl_pw_aff_alloc(isl_set_copy(set), one);
5343 set = isl_set_complement(set);
5344 pa = isl_pw_aff_add_disjoint(pa, isl_pw_aff_alloc(set, zero));
5346 return pa;
5349 /* Plug in "subs" for dimension "type", "pos" of "aff".
5351 * Let i be the dimension to replace and let "subs" be of the form
5353 * f/d
5355 * and "aff" of the form
5357 * (a i + g)/m
5359 * The result is
5361 * (a f + d g')/(m d)
5363 * where g' is the result of plugging in "subs" in each of the integer
5364 * divisions in g.
5366 __isl_give isl_aff *isl_aff_substitute(__isl_take isl_aff *aff,
5367 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
5369 isl_ctx *ctx;
5370 isl_int v;
5371 isl_size n_div;
5373 aff = isl_aff_cow(aff);
5374 if (!aff || !subs)
5375 return isl_aff_free(aff);
5377 ctx = isl_aff_get_ctx(aff);
5378 if (!isl_space_is_equal(aff->ls->dim, subs->ls->dim))
5379 isl_die(ctx, isl_error_invalid,
5380 "spaces don't match", return isl_aff_free(aff));
5381 n_div = isl_local_space_dim(subs->ls, isl_dim_div);
5382 if (n_div < 0)
5383 return isl_aff_free(aff);
5384 if (n_div != 0)
5385 isl_die(ctx, isl_error_unsupported,
5386 "cannot handle divs yet", return isl_aff_free(aff));
5388 aff->ls = isl_local_space_substitute(aff->ls, type, pos, subs);
5389 if (!aff->ls)
5390 return isl_aff_free(aff);
5392 aff->v = isl_vec_cow(aff->v);
5393 if (!aff->v)
5394 return isl_aff_free(aff);
5396 pos += isl_local_space_offset(aff->ls, type);
5398 isl_int_init(v);
5399 isl_seq_substitute(aff->v->el, pos, subs->v->el,
5400 aff->v->size, subs->v->size, v);
5401 isl_int_clear(v);
5403 return aff;
5406 /* Plug in "subs" for dimension "type", "pos" in each of the affine
5407 * expressions in "maff".
5409 __isl_give isl_multi_aff *isl_multi_aff_substitute(
5410 __isl_take isl_multi_aff *maff, enum isl_dim_type type, unsigned pos,
5411 __isl_keep isl_aff *subs)
5413 int i;
5415 maff = isl_multi_aff_cow(maff);
5416 if (!maff || !subs)
5417 return isl_multi_aff_free(maff);
5419 if (type == isl_dim_in)
5420 type = isl_dim_set;
5422 for (i = 0; i < maff->n; ++i) {
5423 maff->u.p[i] = isl_aff_substitute(maff->u.p[i],
5424 type, pos, subs);
5425 if (!maff->u.p[i])
5426 return isl_multi_aff_free(maff);
5429 return maff;
5432 /* Plug in "subs" for dimension "type", "pos" of "pma".
5434 * pma is of the form
5436 * A_i(v) -> M_i(v)
5438 * while subs is of the form
5440 * v' = B_j(v) -> S_j
5442 * Each pair i,j such that C_ij = A_i \cap B_i is non-empty
5443 * has a contribution in the result, in particular
5445 * C_ij(S_j) -> M_i(S_j)
5447 * Note that plugging in S_j in C_ij may also result in an empty set
5448 * and this contribution should simply be discarded.
5450 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_substitute(
5451 __isl_take isl_pw_multi_aff *pma, enum isl_dim_type type, unsigned pos,
5452 __isl_keep isl_pw_aff *subs)
5454 int i, j, n;
5455 isl_pw_multi_aff *res;
5457 if (!pma || !subs)
5458 return isl_pw_multi_aff_free(pma);
5460 n = pma->n * subs->n;
5461 res = isl_pw_multi_aff_alloc_size(isl_space_copy(pma->dim), n);
5463 for (i = 0; i < pma->n; ++i) {
5464 for (j = 0; j < subs->n; ++j) {
5465 isl_set *common;
5466 isl_multi_aff *res_ij;
5467 int empty;
5469 common = isl_set_intersect(
5470 isl_set_copy(pma->p[i].set),
5471 isl_set_copy(subs->p[j].set));
5472 common = isl_set_substitute(common,
5473 type, pos, subs->p[j].aff);
5474 empty = isl_set_plain_is_empty(common);
5475 if (empty < 0 || empty) {
5476 isl_set_free(common);
5477 if (empty < 0)
5478 goto error;
5479 continue;
5482 res_ij = isl_multi_aff_substitute(
5483 isl_multi_aff_copy(pma->p[i].maff),
5484 type, pos, subs->p[j].aff);
5486 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
5490 isl_pw_multi_aff_free(pma);
5491 return res;
5492 error:
5493 isl_pw_multi_aff_free(pma);
5494 isl_pw_multi_aff_free(res);
5495 return NULL;
5498 /* Compute the preimage of a range of dimensions in the affine expression "src"
5499 * under "ma" and put the result in "dst". The number of dimensions in "src"
5500 * that precede the range is given by "n_before". The number of dimensions
5501 * in the range is given by the number of output dimensions of "ma".
5502 * The number of dimensions that follow the range is given by "n_after".
5503 * If "has_denom" is set (to one),
5504 * then "src" and "dst" have an extra initial denominator.
5505 * "n_div_ma" is the number of existentials in "ma"
5506 * "n_div_bset" is the number of existentials in "src"
5507 * The resulting "dst" (which is assumed to have been allocated by
5508 * the caller) contains coefficients for both sets of existentials,
5509 * first those in "ma" and then those in "src".
5510 * f, c1, c2 and g are temporary objects that have been initialized
5511 * by the caller.
5513 * Let src represent the expression
5515 * (a(p) + f_u u + b v + f_w w + c(divs))/d
5517 * and let ma represent the expressions
5519 * v_i = (r_i(p) + s_i(y) + t_i(divs'))/m_i
5521 * We start out with the following expression for dst:
5523 * (a(p) + f_u u + 0 y + f_w w + 0 divs' + c(divs) + f \sum_i b_i v_i)/d
5525 * with the multiplication factor f initially equal to 1
5526 * and f \sum_i b_i v_i kept separately.
5527 * For each x_i that we substitute, we multiply the numerator
5528 * (and denominator) of dst by c_1 = m_i and add the numerator
5529 * of the x_i expression multiplied by c_2 = f b_i,
5530 * after removing the common factors of c_1 and c_2.
5531 * The multiplication factor f also needs to be multiplied by c_1
5532 * for the next x_j, j > i.
5534 isl_stat isl_seq_preimage(isl_int *dst, isl_int *src,
5535 __isl_keep isl_multi_aff *ma, int n_before, int n_after,
5536 int n_div_ma, int n_div_bmap,
5537 isl_int f, isl_int c1, isl_int c2, isl_int g, int has_denom)
5539 int i;
5540 isl_size n_param, n_in, n_out;
5541 int o_dst, o_src;
5543 n_param = isl_multi_aff_dim(ma, isl_dim_param);
5544 n_in = isl_multi_aff_dim(ma, isl_dim_in);
5545 n_out = isl_multi_aff_dim(ma, isl_dim_out);
5546 if (n_param < 0 || n_in < 0 || n_out < 0)
5547 return isl_stat_error;
5549 isl_seq_cpy(dst, src, has_denom + 1 + n_param + n_before);
5550 o_dst = o_src = has_denom + 1 + n_param + n_before;
5551 isl_seq_clr(dst + o_dst, n_in);
5552 o_dst += n_in;
5553 o_src += n_out;
5554 isl_seq_cpy(dst + o_dst, src + o_src, n_after);
5555 o_dst += n_after;
5556 o_src += n_after;
5557 isl_seq_clr(dst + o_dst, n_div_ma);
5558 o_dst += n_div_ma;
5559 isl_seq_cpy(dst + o_dst, src + o_src, n_div_bmap);
5561 isl_int_set_si(f, 1);
5563 for (i = 0; i < n_out; ++i) {
5564 int offset = has_denom + 1 + n_param + n_before + i;
5566 if (isl_int_is_zero(src[offset]))
5567 continue;
5568 isl_int_set(c1, ma->u.p[i]->v->el[0]);
5569 isl_int_mul(c2, f, src[offset]);
5570 isl_int_gcd(g, c1, c2);
5571 isl_int_divexact(c1, c1, g);
5572 isl_int_divexact(c2, c2, g);
5574 isl_int_mul(f, f, c1);
5575 o_dst = has_denom;
5576 o_src = 1;
5577 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5578 c2, ma->u.p[i]->v->el + o_src, 1 + n_param);
5579 o_dst += 1 + n_param;
5580 o_src += 1 + n_param;
5581 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_before);
5582 o_dst += n_before;
5583 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5584 c2, ma->u.p[i]->v->el + o_src, n_in);
5585 o_dst += n_in;
5586 o_src += n_in;
5587 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_after);
5588 o_dst += n_after;
5589 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
5590 c2, ma->u.p[i]->v->el + o_src, n_div_ma);
5591 o_dst += n_div_ma;
5592 o_src += n_div_ma;
5593 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_div_bmap);
5594 if (has_denom)
5595 isl_int_mul(dst[0], dst[0], c1);
5598 return isl_stat_ok;
5601 /* Compute the pullback of "aff" by the function represented by "ma".
5602 * In other words, plug in "ma" in "aff". The result is an affine expression
5603 * defined over the domain space of "ma".
5605 * If "aff" is represented by
5607 * (a(p) + b x + c(divs))/d
5609 * and ma is represented by
5611 * x = D(p) + F(y) + G(divs')
5613 * then the result is
5615 * (a(p) + b D(p) + b F(y) + b G(divs') + c(divs))/d
5617 * The divs in the local space of the input are similarly adjusted
5618 * through a call to isl_local_space_preimage_multi_aff.
5620 __isl_give isl_aff *isl_aff_pullback_multi_aff(__isl_take isl_aff *aff,
5621 __isl_take isl_multi_aff *ma)
5623 isl_aff *res = NULL;
5624 isl_local_space *ls;
5625 isl_size n_div_aff, n_div_ma;
5626 isl_int f, c1, c2, g;
5628 ma = isl_multi_aff_align_divs(ma);
5629 if (!aff || !ma)
5630 goto error;
5632 n_div_aff = isl_aff_dim(aff, isl_dim_div);
5633 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
5634 if (n_div_aff < 0 || n_div_ma < 0)
5635 goto error;
5637 ls = isl_aff_get_domain_local_space(aff);
5638 ls = isl_local_space_preimage_multi_aff(ls, isl_multi_aff_copy(ma));
5639 res = isl_aff_alloc(ls);
5640 if (!res)
5641 goto error;
5643 isl_int_init(f);
5644 isl_int_init(c1);
5645 isl_int_init(c2);
5646 isl_int_init(g);
5648 if (isl_seq_preimage(res->v->el, aff->v->el, ma, 0, 0,
5649 n_div_ma, n_div_aff, f, c1, c2, g, 1) < 0)
5650 res = isl_aff_free(res);
5652 isl_int_clear(f);
5653 isl_int_clear(c1);
5654 isl_int_clear(c2);
5655 isl_int_clear(g);
5657 isl_aff_free(aff);
5658 isl_multi_aff_free(ma);
5659 res = isl_aff_normalize(res);
5660 return res;
5661 error:
5662 isl_aff_free(aff);
5663 isl_multi_aff_free(ma);
5664 isl_aff_free(res);
5665 return NULL;
5668 /* Compute the pullback of "aff1" by the function represented by "aff2".
5669 * In other words, plug in "aff2" in "aff1". The result is an affine expression
5670 * defined over the domain space of "aff1".
5672 * The domain of "aff1" should match the range of "aff2", which means
5673 * that it should be single-dimensional.
5675 __isl_give isl_aff *isl_aff_pullback_aff(__isl_take isl_aff *aff1,
5676 __isl_take isl_aff *aff2)
5678 isl_multi_aff *ma;
5680 ma = isl_multi_aff_from_aff(aff2);
5681 return isl_aff_pullback_multi_aff(aff1, ma);
5684 /* Compute the pullback of "ma1" by the function represented by "ma2".
5685 * In other words, plug in "ma2" in "ma1".
5687 * The parameters of "ma1" and "ma2" are assumed to have been aligned.
5689 static __isl_give isl_multi_aff *isl_multi_aff_pullback_multi_aff_aligned(
5690 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
5692 int i;
5693 isl_space *space = NULL;
5695 ma2 = isl_multi_aff_align_divs(ma2);
5696 ma1 = isl_multi_aff_cow(ma1);
5697 if (!ma1 || !ma2)
5698 goto error;
5700 space = isl_space_join(isl_multi_aff_get_space(ma2),
5701 isl_multi_aff_get_space(ma1));
5703 for (i = 0; i < ma1->n; ++i) {
5704 ma1->u.p[i] = isl_aff_pullback_multi_aff(ma1->u.p[i],
5705 isl_multi_aff_copy(ma2));
5706 if (!ma1->u.p[i])
5707 goto error;
5710 ma1 = isl_multi_aff_reset_space(ma1, space);
5711 isl_multi_aff_free(ma2);
5712 return ma1;
5713 error:
5714 isl_space_free(space);
5715 isl_multi_aff_free(ma2);
5716 isl_multi_aff_free(ma1);
5717 return NULL;
5720 /* Compute the pullback of "ma1" by the function represented by "ma2".
5721 * In other words, plug in "ma2" in "ma1".
5723 __isl_give isl_multi_aff *isl_multi_aff_pullback_multi_aff(
5724 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
5726 return isl_multi_aff_align_params_multi_multi_and(ma1, ma2,
5727 &isl_multi_aff_pullback_multi_aff_aligned);
5730 /* Extend the local space of "dst" to include the divs
5731 * in the local space of "src".
5733 * If "src" does not have any divs or if the local spaces of "dst" and
5734 * "src" are the same, then no extension is required.
5736 __isl_give isl_aff *isl_aff_align_divs(__isl_take isl_aff *dst,
5737 __isl_keep isl_aff *src)
5739 isl_ctx *ctx;
5740 isl_size src_n_div, dst_n_div;
5741 int *exp1 = NULL;
5742 int *exp2 = NULL;
5743 isl_bool equal;
5744 isl_mat *div;
5746 if (!src || !dst)
5747 return isl_aff_free(dst);
5749 ctx = isl_aff_get_ctx(src);
5750 equal = isl_local_space_has_equal_space(src->ls, dst->ls);
5751 if (equal < 0)
5752 return isl_aff_free(dst);
5753 if (!equal)
5754 isl_die(ctx, isl_error_invalid,
5755 "spaces don't match", goto error);
5757 src_n_div = isl_local_space_dim(src->ls, isl_dim_div);
5758 dst_n_div = isl_local_space_dim(dst->ls, isl_dim_div);
5759 if (src_n_div == 0)
5760 return dst;
5761 equal = isl_local_space_is_equal(src->ls, dst->ls);
5762 if (equal < 0 || src_n_div < 0 || dst_n_div < 0)
5763 return isl_aff_free(dst);
5764 if (equal)
5765 return dst;
5767 exp1 = isl_alloc_array(ctx, int, src_n_div);
5768 exp2 = isl_alloc_array(ctx, int, dst_n_div);
5769 if (!exp1 || (dst_n_div && !exp2))
5770 goto error;
5772 div = isl_merge_divs(src->ls->div, dst->ls->div, exp1, exp2);
5773 dst = isl_aff_expand_divs(dst, div, exp2);
5774 free(exp1);
5775 free(exp2);
5777 return dst;
5778 error:
5779 free(exp1);
5780 free(exp2);
5781 return isl_aff_free(dst);
5784 /* Adjust the local spaces of the affine expressions in "maff"
5785 * such that they all have the save divs.
5787 __isl_give isl_multi_aff *isl_multi_aff_align_divs(
5788 __isl_take isl_multi_aff *maff)
5790 int i;
5792 if (!maff)
5793 return NULL;
5794 if (maff->n == 0)
5795 return maff;
5796 maff = isl_multi_aff_cow(maff);
5797 if (!maff)
5798 return NULL;
5800 for (i = 1; i < maff->n; ++i)
5801 maff->u.p[0] = isl_aff_align_divs(maff->u.p[0], maff->u.p[i]);
5802 for (i = 1; i < maff->n; ++i) {
5803 maff->u.p[i] = isl_aff_align_divs(maff->u.p[i], maff->u.p[0]);
5804 if (!maff->u.p[i])
5805 return isl_multi_aff_free(maff);
5808 return maff;
5811 __isl_give isl_aff *isl_aff_lift(__isl_take isl_aff *aff)
5813 aff = isl_aff_cow(aff);
5814 if (!aff)
5815 return NULL;
5817 aff->ls = isl_local_space_lift(aff->ls);
5818 if (!aff->ls)
5819 return isl_aff_free(aff);
5821 return aff;
5824 /* Lift "maff" to a space with extra dimensions such that the result
5825 * has no more existentially quantified variables.
5826 * If "ls" is not NULL, then *ls is assigned the local space that lies
5827 * at the basis of the lifting applied to "maff".
5829 __isl_give isl_multi_aff *isl_multi_aff_lift(__isl_take isl_multi_aff *maff,
5830 __isl_give isl_local_space **ls)
5832 int i;
5833 isl_space *space;
5834 isl_size n_div;
5836 if (ls)
5837 *ls = NULL;
5839 if (!maff)
5840 return NULL;
5842 if (maff->n == 0) {
5843 if (ls) {
5844 isl_space *space = isl_multi_aff_get_domain_space(maff);
5845 *ls = isl_local_space_from_space(space);
5846 if (!*ls)
5847 return isl_multi_aff_free(maff);
5849 return maff;
5852 maff = isl_multi_aff_cow(maff);
5853 maff = isl_multi_aff_align_divs(maff);
5854 if (!maff)
5855 return NULL;
5857 n_div = isl_aff_dim(maff->u.p[0], isl_dim_div);
5858 if (n_div < 0)
5859 return isl_multi_aff_free(maff);
5860 space = isl_multi_aff_get_space(maff);
5861 space = isl_space_lift(isl_space_domain(space), n_div);
5862 space = isl_space_extend_domain_with_range(space,
5863 isl_multi_aff_get_space(maff));
5864 if (!space)
5865 return isl_multi_aff_free(maff);
5866 isl_space_free(maff->space);
5867 maff->space = space;
5869 if (ls) {
5870 *ls = isl_aff_get_domain_local_space(maff->u.p[0]);
5871 if (!*ls)
5872 return isl_multi_aff_free(maff);
5875 for (i = 0; i < maff->n; ++i) {
5876 maff->u.p[i] = isl_aff_lift(maff->u.p[i]);
5877 if (!maff->u.p[i])
5878 goto error;
5881 return maff;
5882 error:
5883 if (ls)
5884 isl_local_space_free(*ls);
5885 return isl_multi_aff_free(maff);
5888 #undef TYPE
5889 #define TYPE isl_pw_multi_aff
5890 static
5891 #include "check_type_range_templ.c"
5893 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma".
5895 __isl_give isl_pw_aff *isl_pw_multi_aff_get_pw_aff(
5896 __isl_keep isl_pw_multi_aff *pma, int pos)
5898 int i;
5899 isl_size n_out;
5900 isl_space *space;
5901 isl_pw_aff *pa;
5903 if (isl_pw_multi_aff_check_range(pma, isl_dim_out, pos, 1) < 0)
5904 return NULL;
5906 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
5907 if (n_out < 0)
5908 return NULL;
5910 space = isl_pw_multi_aff_get_space(pma);
5911 space = isl_space_drop_dims(space, isl_dim_out,
5912 pos + 1, n_out - pos - 1);
5913 space = isl_space_drop_dims(space, isl_dim_out, 0, pos);
5915 pa = isl_pw_aff_alloc_size(space, pma->n);
5916 for (i = 0; i < pma->n; ++i) {
5917 isl_aff *aff;
5918 aff = isl_multi_aff_get_aff(pma->p[i].maff, pos);
5919 pa = isl_pw_aff_add_piece(pa, isl_set_copy(pma->p[i].set), aff);
5922 return pa;
5925 /* Return an isl_pw_multi_aff with the given "set" as domain and
5926 * an unnamed zero-dimensional range.
5928 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_domain(
5929 __isl_take isl_set *set)
5931 isl_multi_aff *ma;
5932 isl_space *space;
5934 space = isl_set_get_space(set);
5935 space = isl_space_from_domain(space);
5936 ma = isl_multi_aff_zero(space);
5937 return isl_pw_multi_aff_alloc(set, ma);
5940 /* Add an isl_pw_multi_aff with the given "set" as domain and
5941 * an unnamed zero-dimensional range to *user.
5943 static isl_stat add_pw_multi_aff_from_domain(__isl_take isl_set *set,
5944 void *user)
5946 isl_union_pw_multi_aff **upma = user;
5947 isl_pw_multi_aff *pma;
5949 pma = isl_pw_multi_aff_from_domain(set);
5950 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
5952 return isl_stat_ok;
5955 /* Return an isl_union_pw_multi_aff with the given "uset" as domain and
5956 * an unnamed zero-dimensional range.
5958 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_domain(
5959 __isl_take isl_union_set *uset)
5961 isl_space *space;
5962 isl_union_pw_multi_aff *upma;
5964 if (!uset)
5965 return NULL;
5967 space = isl_union_set_get_space(uset);
5968 upma = isl_union_pw_multi_aff_empty(space);
5970 if (isl_union_set_foreach_set(uset,
5971 &add_pw_multi_aff_from_domain, &upma) < 0)
5972 goto error;
5974 isl_union_set_free(uset);
5975 return upma;
5976 error:
5977 isl_union_set_free(uset);
5978 isl_union_pw_multi_aff_free(upma);
5979 return NULL;
5982 /* Local data for bin_entry and the callback "fn".
5984 struct isl_union_pw_multi_aff_bin_data {
5985 isl_union_pw_multi_aff *upma2;
5986 isl_union_pw_multi_aff *res;
5987 isl_pw_multi_aff *pma;
5988 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user);
5991 /* Given an isl_pw_multi_aff from upma1, store it in data->pma
5992 * and call data->fn for each isl_pw_multi_aff in data->upma2.
5994 static isl_stat bin_entry(__isl_take isl_pw_multi_aff *pma, void *user)
5996 struct isl_union_pw_multi_aff_bin_data *data = user;
5997 isl_stat r;
5999 data->pma = pma;
6000 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma2,
6001 data->fn, data);
6002 isl_pw_multi_aff_free(pma);
6004 return r;
6007 /* Call "fn" on each pair of isl_pw_multi_affs in "upma1" and "upma2".
6008 * The isl_pw_multi_aff from upma1 is stored in data->pma (where data is
6009 * passed as user field) and the isl_pw_multi_aff from upma2 is available
6010 * as *entry. The callback should adjust data->res if desired.
6012 static __isl_give isl_union_pw_multi_aff *bin_op(
6013 __isl_take isl_union_pw_multi_aff *upma1,
6014 __isl_take isl_union_pw_multi_aff *upma2,
6015 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user))
6017 isl_space *space;
6018 struct isl_union_pw_multi_aff_bin_data data = { NULL, NULL, NULL, fn };
6020 space = isl_union_pw_multi_aff_get_space(upma2);
6021 upma1 = isl_union_pw_multi_aff_align_params(upma1, space);
6022 space = isl_union_pw_multi_aff_get_space(upma1);
6023 upma2 = isl_union_pw_multi_aff_align_params(upma2, space);
6025 if (!upma1 || !upma2)
6026 goto error;
6028 data.upma2 = upma2;
6029 data.res = isl_union_pw_multi_aff_alloc_same_size(upma1);
6030 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma1,
6031 &bin_entry, &data) < 0)
6032 goto error;
6034 isl_union_pw_multi_aff_free(upma1);
6035 isl_union_pw_multi_aff_free(upma2);
6036 return data.res;
6037 error:
6038 isl_union_pw_multi_aff_free(upma1);
6039 isl_union_pw_multi_aff_free(upma2);
6040 isl_union_pw_multi_aff_free(data.res);
6041 return NULL;
6044 /* Given two aligned isl_pw_multi_affs A -> B and C -> D,
6045 * construct an isl_pw_multi_aff (A * C) -> [B -> D].
6047 static __isl_give isl_pw_multi_aff *pw_multi_aff_range_product(
6048 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6050 isl_space *space;
6052 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
6053 isl_pw_multi_aff_get_space(pma2));
6054 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
6055 &isl_multi_aff_range_product);
6058 /* Given two isl_pw_multi_affs A -> B and C -> D,
6059 * construct an isl_pw_multi_aff (A * C) -> [B -> D].
6061 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_product(
6062 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6064 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
6065 &pw_multi_aff_range_product);
6068 /* Given two aligned isl_pw_multi_affs A -> B and C -> D,
6069 * construct an isl_pw_multi_aff (A * C) -> (B, D).
6071 static __isl_give isl_pw_multi_aff *pw_multi_aff_flat_range_product(
6072 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6074 isl_space *space;
6076 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
6077 isl_pw_multi_aff_get_space(pma2));
6078 space = isl_space_flatten_range(space);
6079 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
6080 &isl_multi_aff_flat_range_product);
6083 /* Given two isl_pw_multi_affs A -> B and C -> D,
6084 * construct an isl_pw_multi_aff (A * C) -> (B, D).
6086 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_flat_range_product(
6087 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6089 return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
6090 &pw_multi_aff_flat_range_product);
6093 /* If data->pma and "pma2" have the same domain space, then compute
6094 * their flat range product and the result to data->res.
6096 static isl_stat flat_range_product_entry(__isl_take isl_pw_multi_aff *pma2,
6097 void *user)
6099 struct isl_union_pw_multi_aff_bin_data *data = user;
6101 if (!isl_space_tuple_is_equal(data->pma->dim, isl_dim_in,
6102 pma2->dim, isl_dim_in)) {
6103 isl_pw_multi_aff_free(pma2);
6104 return isl_stat_ok;
6107 pma2 = isl_pw_multi_aff_flat_range_product(
6108 isl_pw_multi_aff_copy(data->pma), pma2);
6110 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
6112 return isl_stat_ok;
6115 /* Given two isl_union_pw_multi_affs A -> B and C -> D,
6116 * construct an isl_union_pw_multi_aff (A * C) -> (B, D).
6118 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_flat_range_product(
6119 __isl_take isl_union_pw_multi_aff *upma1,
6120 __isl_take isl_union_pw_multi_aff *upma2)
6122 return bin_op(upma1, upma2, &flat_range_product_entry);
6125 /* Replace the affine expressions at position "pos" in "pma" by "pa".
6126 * The parameters are assumed to have been aligned.
6128 * The implementation essentially performs an isl_pw_*_on_shared_domain,
6129 * except that it works on two different isl_pw_* types.
6131 static __isl_give isl_pw_multi_aff *pw_multi_aff_set_pw_aff(
6132 __isl_take isl_pw_multi_aff *pma, unsigned pos,
6133 __isl_take isl_pw_aff *pa)
6135 int i, j, n;
6136 isl_pw_multi_aff *res = NULL;
6138 if (!pma || !pa)
6139 goto error;
6141 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_in,
6142 pa->dim, isl_dim_in))
6143 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
6144 "domains don't match", goto error);
6145 if (isl_pw_multi_aff_check_range(pma, isl_dim_out, pos, 1) < 0)
6146 goto error;
6148 n = pma->n * pa->n;
6149 res = isl_pw_multi_aff_alloc_size(isl_pw_multi_aff_get_space(pma), n);
6151 for (i = 0; i < pma->n; ++i) {
6152 for (j = 0; j < pa->n; ++j) {
6153 isl_set *common;
6154 isl_multi_aff *res_ij;
6155 int empty;
6157 common = isl_set_intersect(isl_set_copy(pma->p[i].set),
6158 isl_set_copy(pa->p[j].set));
6159 empty = isl_set_plain_is_empty(common);
6160 if (empty < 0 || empty) {
6161 isl_set_free(common);
6162 if (empty < 0)
6163 goto error;
6164 continue;
6167 res_ij = isl_multi_aff_set_aff(
6168 isl_multi_aff_copy(pma->p[i].maff), pos,
6169 isl_aff_copy(pa->p[j].aff));
6170 res_ij = isl_multi_aff_gist(res_ij,
6171 isl_set_copy(common));
6173 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
6177 isl_pw_multi_aff_free(pma);
6178 isl_pw_aff_free(pa);
6179 return res;
6180 error:
6181 isl_pw_multi_aff_free(pma);
6182 isl_pw_aff_free(pa);
6183 return isl_pw_multi_aff_free(res);
6186 /* Replace the affine expressions at position "pos" in "pma" by "pa".
6188 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_set_pw_aff(
6189 __isl_take isl_pw_multi_aff *pma, unsigned pos,
6190 __isl_take isl_pw_aff *pa)
6192 isl_bool equal_params;
6194 if (!pma || !pa)
6195 goto error;
6196 equal_params = isl_space_has_equal_params(pma->dim, pa->dim);
6197 if (equal_params < 0)
6198 goto error;
6199 if (equal_params)
6200 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6201 if (isl_pw_multi_aff_check_named_params(pma) < 0 ||
6202 isl_pw_aff_check_named_params(pa) < 0)
6203 goto error;
6204 pma = isl_pw_multi_aff_align_params(pma, isl_pw_aff_get_space(pa));
6205 pa = isl_pw_aff_align_params(pa, isl_pw_multi_aff_get_space(pma));
6206 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6207 error:
6208 isl_pw_multi_aff_free(pma);
6209 isl_pw_aff_free(pa);
6210 return NULL;
6213 /* Do the parameters of "pa" match those of "space"?
6215 isl_bool isl_pw_aff_matching_params(__isl_keep isl_pw_aff *pa,
6216 __isl_keep isl_space *space)
6218 isl_space *pa_space;
6219 isl_bool match;
6221 if (!pa || !space)
6222 return isl_bool_error;
6224 pa_space = isl_pw_aff_get_space(pa);
6226 match = isl_space_has_equal_params(space, pa_space);
6228 isl_space_free(pa_space);
6229 return match;
6232 /* Check that the domain space of "pa" matches "space".
6234 isl_stat isl_pw_aff_check_match_domain_space(__isl_keep isl_pw_aff *pa,
6235 __isl_keep isl_space *space)
6237 isl_space *pa_space;
6238 isl_bool match;
6240 if (!pa || !space)
6241 return isl_stat_error;
6243 pa_space = isl_pw_aff_get_space(pa);
6245 match = isl_space_has_equal_params(space, pa_space);
6246 if (match < 0)
6247 goto error;
6248 if (!match)
6249 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6250 "parameters don't match", goto error);
6251 match = isl_space_tuple_is_equal(space, isl_dim_in,
6252 pa_space, isl_dim_in);
6253 if (match < 0)
6254 goto error;
6255 if (!match)
6256 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6257 "domains don't match", goto error);
6258 isl_space_free(pa_space);
6259 return isl_stat_ok;
6260 error:
6261 isl_space_free(pa_space);
6262 return isl_stat_error;
6265 #undef BASE
6266 #define BASE pw_aff
6267 #undef DOMBASE
6268 #define DOMBASE set
6270 #include <isl_multi_explicit_domain.c>
6271 #include <isl_multi_pw_aff_explicit_domain.c>
6272 #include <isl_multi_templ.c>
6273 #include <isl_multi_apply_set.c>
6274 #include <isl_multi_arith_templ.c>
6275 #include <isl_multi_coalesce.c>
6276 #include <isl_multi_domain_templ.c>
6277 #include <isl_multi_dim_id_templ.c>
6278 #include <isl_multi_dims.c>
6279 #include <isl_multi_from_base_templ.c>
6280 #include <isl_multi_gist.c>
6281 #include <isl_multi_hash.c>
6282 #include <isl_multi_identity_templ.c>
6283 #include <isl_multi_align_set.c>
6284 #include <isl_multi_intersect.c>
6285 #include <isl_multi_move_dims_templ.c>
6286 #include <isl_multi_nan_templ.c>
6287 #include <isl_multi_param_templ.c>
6288 #include <isl_multi_product_templ.c>
6289 #include <isl_multi_splice_templ.c>
6290 #include <isl_multi_tuple_id_templ.c>
6291 #include <isl_multi_zero_templ.c>
6293 /* Does "mpa" have a non-trivial explicit domain?
6295 * The explicit domain, if present, is trivial if it represents
6296 * an (obviously) universe set.
6298 isl_bool isl_multi_pw_aff_has_non_trivial_domain(
6299 __isl_keep isl_multi_pw_aff *mpa)
6301 if (!mpa)
6302 return isl_bool_error;
6303 if (!isl_multi_pw_aff_has_explicit_domain(mpa))
6304 return isl_bool_false;
6305 return isl_bool_not(isl_set_plain_is_universe(mpa->u.dom));
6308 /* Scale the elements of "pma" by the corresponding elements of "mv".
6310 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_scale_multi_val(
6311 __isl_take isl_pw_multi_aff *pma, __isl_take isl_multi_val *mv)
6313 int i;
6314 isl_bool equal_params;
6316 pma = isl_pw_multi_aff_cow(pma);
6317 if (!pma || !mv)
6318 goto error;
6319 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_out,
6320 mv->space, isl_dim_set))
6321 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
6322 "spaces don't match", goto error);
6323 equal_params = isl_space_has_equal_params(pma->dim, mv->space);
6324 if (equal_params < 0)
6325 goto error;
6326 if (!equal_params) {
6327 pma = isl_pw_multi_aff_align_params(pma,
6328 isl_multi_val_get_space(mv));
6329 mv = isl_multi_val_align_params(mv,
6330 isl_pw_multi_aff_get_space(pma));
6331 if (!pma || !mv)
6332 goto error;
6335 for (i = 0; i < pma->n; ++i) {
6336 pma->p[i].maff = isl_multi_aff_scale_multi_val(pma->p[i].maff,
6337 isl_multi_val_copy(mv));
6338 if (!pma->p[i].maff)
6339 goto error;
6342 isl_multi_val_free(mv);
6343 return pma;
6344 error:
6345 isl_multi_val_free(mv);
6346 isl_pw_multi_aff_free(pma);
6347 return NULL;
6350 /* This function is called for each entry of an isl_union_pw_multi_aff.
6351 * If the space of the entry matches that of data->mv,
6352 * then apply isl_pw_multi_aff_scale_multi_val and return the result.
6353 * Otherwise, return an empty isl_pw_multi_aff.
6355 static __isl_give isl_pw_multi_aff *union_pw_multi_aff_scale_multi_val_entry(
6356 __isl_take isl_pw_multi_aff *pma, void *user)
6358 isl_multi_val *mv = user;
6360 if (!pma)
6361 return NULL;
6362 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_out,
6363 mv->space, isl_dim_set)) {
6364 isl_space *space = isl_pw_multi_aff_get_space(pma);
6365 isl_pw_multi_aff_free(pma);
6366 return isl_pw_multi_aff_empty(space);
6369 return isl_pw_multi_aff_scale_multi_val(pma, isl_multi_val_copy(mv));
6372 /* Scale the elements of "upma" by the corresponding elements of "mv",
6373 * for those entries that match the space of "mv".
6375 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_scale_multi_val(
6376 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_multi_val *mv)
6378 upma = isl_union_pw_multi_aff_align_params(upma,
6379 isl_multi_val_get_space(mv));
6380 mv = isl_multi_val_align_params(mv,
6381 isl_union_pw_multi_aff_get_space(upma));
6382 if (!upma || !mv)
6383 goto error;
6385 return isl_union_pw_multi_aff_transform(upma,
6386 &union_pw_multi_aff_scale_multi_val_entry, mv);
6388 isl_multi_val_free(mv);
6389 return upma;
6390 error:
6391 isl_multi_val_free(mv);
6392 isl_union_pw_multi_aff_free(upma);
6393 return NULL;
6396 /* Construct and return a piecewise multi affine expression
6397 * in the given space with value zero in each of the output dimensions and
6398 * a universe domain.
6400 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_zero(__isl_take isl_space *space)
6402 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_zero(space));
6405 /* Construct and return a piecewise multi affine expression
6406 * that is equal to the given piecewise affine expression.
6408 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_pw_aff(
6409 __isl_take isl_pw_aff *pa)
6411 int i;
6412 isl_space *space;
6413 isl_pw_multi_aff *pma;
6415 if (!pa)
6416 return NULL;
6418 space = isl_pw_aff_get_space(pa);
6419 pma = isl_pw_multi_aff_alloc_size(space, pa->n);
6421 for (i = 0; i < pa->n; ++i) {
6422 isl_set *set;
6423 isl_multi_aff *ma;
6425 set = isl_set_copy(pa->p[i].set);
6426 ma = isl_multi_aff_from_aff(isl_aff_copy(pa->p[i].aff));
6427 pma = isl_pw_multi_aff_add_piece(pma, set, ma);
6430 isl_pw_aff_free(pa);
6431 return pma;
6434 /* Construct and return a piecewise multi affine expression
6435 * that is equal to the given multi piecewise affine expression
6436 * on the shared domain of the piecewise affine expressions,
6437 * in the special case of a 0D multi piecewise affine expression.
6439 * Create a piecewise multi affine expression with the explicit domain of
6440 * the 0D multi piecewise affine expression as domain.
6442 static __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_pw_aff_0D(
6443 __isl_take isl_multi_pw_aff *mpa)
6445 isl_space *space;
6446 isl_set *dom;
6447 isl_multi_aff *ma;
6449 space = isl_multi_pw_aff_get_space(mpa);
6450 dom = isl_multi_pw_aff_get_explicit_domain(mpa);
6451 isl_multi_pw_aff_free(mpa);
6453 ma = isl_multi_aff_zero(space);
6454 return isl_pw_multi_aff_alloc(dom, ma);
6457 /* Construct and return a piecewise multi affine expression
6458 * that is equal to the given multi piecewise affine expression
6459 * on the shared domain of the piecewise affine expressions.
6461 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_pw_aff(
6462 __isl_take isl_multi_pw_aff *mpa)
6464 int i;
6465 isl_space *space;
6466 isl_pw_aff *pa;
6467 isl_pw_multi_aff *pma;
6469 if (!mpa)
6470 return NULL;
6472 if (mpa->n == 0)
6473 return isl_pw_multi_aff_from_multi_pw_aff_0D(mpa);
6475 space = isl_multi_pw_aff_get_space(mpa);
6476 pa = isl_multi_pw_aff_get_pw_aff(mpa, 0);
6477 pma = isl_pw_multi_aff_from_pw_aff(pa);
6479 for (i = 1; i < mpa->n; ++i) {
6480 isl_pw_multi_aff *pma_i;
6482 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
6483 pma_i = isl_pw_multi_aff_from_pw_aff(pa);
6484 pma = isl_pw_multi_aff_range_product(pma, pma_i);
6487 pma = isl_pw_multi_aff_reset_space(pma, space);
6489 isl_multi_pw_aff_free(mpa);
6490 return pma;
6493 /* Construct and return a multi piecewise affine expression
6494 * that is equal to the given multi affine expression.
6496 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_multi_aff(
6497 __isl_take isl_multi_aff *ma)
6499 int i;
6500 isl_size n;
6501 isl_multi_pw_aff *mpa;
6503 n = isl_multi_aff_dim(ma, isl_dim_out);
6504 if (n < 0)
6505 ma = isl_multi_aff_free(ma);
6506 if (!ma)
6507 return NULL;
6509 mpa = isl_multi_pw_aff_alloc(isl_multi_aff_get_space(ma));
6511 for (i = 0; i < n; ++i) {
6512 isl_pw_aff *pa;
6514 pa = isl_pw_aff_from_aff(isl_multi_aff_get_aff(ma, i));
6515 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
6518 isl_multi_aff_free(ma);
6519 return mpa;
6522 /* Construct and return a multi piecewise affine expression
6523 * that is equal to the given piecewise multi affine expression.
6525 * If the resulting multi piecewise affine expression has
6526 * an explicit domain, then assign it the domain of the input.
6527 * In other cases, the domain is stored in the individual elements.
6529 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_pw_multi_aff(
6530 __isl_take isl_pw_multi_aff *pma)
6532 int i;
6533 isl_size n;
6534 isl_space *space;
6535 isl_multi_pw_aff *mpa;
6537 n = isl_pw_multi_aff_dim(pma, isl_dim_out);
6538 if (n < 0)
6539 pma = isl_pw_multi_aff_free(pma);
6540 space = isl_pw_multi_aff_get_space(pma);
6541 mpa = isl_multi_pw_aff_alloc(space);
6543 for (i = 0; i < n; ++i) {
6544 isl_pw_aff *pa;
6546 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
6547 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
6549 if (isl_multi_pw_aff_has_explicit_domain(mpa)) {
6550 isl_set *dom;
6552 dom = isl_pw_multi_aff_domain(isl_pw_multi_aff_copy(pma));
6553 mpa = isl_multi_pw_aff_intersect_domain(mpa, dom);
6556 isl_pw_multi_aff_free(pma);
6557 return mpa;
6560 /* Do "pa1" and "pa2" represent the same function?
6562 * We first check if they are obviously equal.
6563 * If not, we convert them to maps and check if those are equal.
6565 * If "pa1" or "pa2" contain any NaNs, then they are considered
6566 * not to be the same. A NaN is not equal to anything, not even
6567 * to another NaN.
6569 isl_bool isl_pw_aff_is_equal(__isl_keep isl_pw_aff *pa1,
6570 __isl_keep isl_pw_aff *pa2)
6572 isl_bool equal;
6573 isl_bool has_nan;
6574 isl_map *map1, *map2;
6576 if (!pa1 || !pa2)
6577 return isl_bool_error;
6579 equal = isl_pw_aff_plain_is_equal(pa1, pa2);
6580 if (equal < 0 || equal)
6581 return equal;
6582 has_nan = either_involves_nan(pa1, pa2);
6583 if (has_nan < 0)
6584 return isl_bool_error;
6585 if (has_nan)
6586 return isl_bool_false;
6588 map1 = isl_map_from_pw_aff_internal(isl_pw_aff_copy(pa1));
6589 map2 = isl_map_from_pw_aff_internal(isl_pw_aff_copy(pa2));
6590 equal = isl_map_is_equal(map1, map2);
6591 isl_map_free(map1);
6592 isl_map_free(map2);
6594 return equal;
6597 /* Do "mpa1" and "mpa2" represent the same function?
6599 * Note that we cannot convert the entire isl_multi_pw_aff
6600 * to a map because the domains of the piecewise affine expressions
6601 * may not be the same.
6603 isl_bool isl_multi_pw_aff_is_equal(__isl_keep isl_multi_pw_aff *mpa1,
6604 __isl_keep isl_multi_pw_aff *mpa2)
6606 int i;
6607 isl_bool equal, equal_params;
6609 if (!mpa1 || !mpa2)
6610 return isl_bool_error;
6612 equal_params = isl_space_has_equal_params(mpa1->space, mpa2->space);
6613 if (equal_params < 0)
6614 return isl_bool_error;
6615 if (!equal_params) {
6616 if (!isl_space_has_named_params(mpa1->space))
6617 return isl_bool_false;
6618 if (!isl_space_has_named_params(mpa2->space))
6619 return isl_bool_false;
6620 mpa1 = isl_multi_pw_aff_copy(mpa1);
6621 mpa2 = isl_multi_pw_aff_copy(mpa2);
6622 mpa1 = isl_multi_pw_aff_align_params(mpa1,
6623 isl_multi_pw_aff_get_space(mpa2));
6624 mpa2 = isl_multi_pw_aff_align_params(mpa2,
6625 isl_multi_pw_aff_get_space(mpa1));
6626 equal = isl_multi_pw_aff_is_equal(mpa1, mpa2);
6627 isl_multi_pw_aff_free(mpa1);
6628 isl_multi_pw_aff_free(mpa2);
6629 return equal;
6632 equal = isl_space_is_equal(mpa1->space, mpa2->space);
6633 if (equal < 0 || !equal)
6634 return equal;
6636 for (i = 0; i < mpa1->n; ++i) {
6637 equal = isl_pw_aff_is_equal(mpa1->u.p[i], mpa2->u.p[i]);
6638 if (equal < 0 || !equal)
6639 return equal;
6642 return isl_bool_true;
6645 /* Do "pma1" and "pma2" represent the same function?
6647 * First check if they are obviously equal.
6648 * If not, then convert them to maps and check if those are equal.
6650 * If "pa1" or "pa2" contain any NaNs, then they are considered
6651 * not to be the same. A NaN is not equal to anything, not even
6652 * to another NaN.
6654 isl_bool isl_pw_multi_aff_is_equal(__isl_keep isl_pw_multi_aff *pma1,
6655 __isl_keep isl_pw_multi_aff *pma2)
6657 isl_bool equal;
6658 isl_bool has_nan;
6659 isl_map *map1, *map2;
6661 if (!pma1 || !pma2)
6662 return isl_bool_error;
6664 equal = isl_pw_multi_aff_plain_is_equal(pma1, pma2);
6665 if (equal < 0 || equal)
6666 return equal;
6667 has_nan = isl_pw_multi_aff_involves_nan(pma1);
6668 if (has_nan >= 0 && !has_nan)
6669 has_nan = isl_pw_multi_aff_involves_nan(pma2);
6670 if (has_nan < 0 || has_nan)
6671 return isl_bool_not(has_nan);
6673 map1 = isl_map_from_pw_multi_aff(isl_pw_multi_aff_copy(pma1));
6674 map2 = isl_map_from_pw_multi_aff(isl_pw_multi_aff_copy(pma2));
6675 equal = isl_map_is_equal(map1, map2);
6676 isl_map_free(map1);
6677 isl_map_free(map2);
6679 return equal;
6682 /* Compute the pullback of "mpa" by the function represented by "ma".
6683 * In other words, plug in "ma" in "mpa".
6685 * The parameters of "mpa" and "ma" are assumed to have been aligned.
6687 * If "mpa" has an explicit domain, then it is this domain
6688 * that needs to undergo a pullback, i.e., a preimage.
6690 static __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_aff_aligned(
6691 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_multi_aff *ma)
6693 int i;
6694 isl_space *space = NULL;
6696 mpa = isl_multi_pw_aff_cow(mpa);
6697 if (!mpa || !ma)
6698 goto error;
6700 space = isl_space_join(isl_multi_aff_get_space(ma),
6701 isl_multi_pw_aff_get_space(mpa));
6702 if (!space)
6703 goto error;
6705 for (i = 0; i < mpa->n; ++i) {
6706 mpa->u.p[i] = isl_pw_aff_pullback_multi_aff(mpa->u.p[i],
6707 isl_multi_aff_copy(ma));
6708 if (!mpa->u.p[i])
6709 goto error;
6711 if (isl_multi_pw_aff_has_explicit_domain(mpa)) {
6712 mpa->u.dom = isl_set_preimage_multi_aff(mpa->u.dom,
6713 isl_multi_aff_copy(ma));
6714 if (!mpa->u.dom)
6715 goto error;
6718 isl_multi_aff_free(ma);
6719 isl_space_free(mpa->space);
6720 mpa->space = space;
6721 return mpa;
6722 error:
6723 isl_space_free(space);
6724 isl_multi_pw_aff_free(mpa);
6725 isl_multi_aff_free(ma);
6726 return NULL;
6729 /* Compute the pullback of "mpa" by the function represented by "ma".
6730 * In other words, plug in "ma" in "mpa".
6732 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_aff(
6733 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_multi_aff *ma)
6735 isl_bool equal_params;
6737 if (!mpa || !ma)
6738 goto error;
6739 equal_params = isl_space_has_equal_params(mpa->space, ma->space);
6740 if (equal_params < 0)
6741 goto error;
6742 if (equal_params)
6743 return isl_multi_pw_aff_pullback_multi_aff_aligned(mpa, ma);
6744 mpa = isl_multi_pw_aff_align_params(mpa, isl_multi_aff_get_space(ma));
6745 ma = isl_multi_aff_align_params(ma, isl_multi_pw_aff_get_space(mpa));
6746 return isl_multi_pw_aff_pullback_multi_aff_aligned(mpa, ma);
6747 error:
6748 isl_multi_pw_aff_free(mpa);
6749 isl_multi_aff_free(ma);
6750 return NULL;
6753 /* Compute the pullback of "mpa" by the function represented by "pma".
6754 * In other words, plug in "pma" in "mpa".
6756 * The parameters of "mpa" and "mpa" are assumed to have been aligned.
6758 * If "mpa" has an explicit domain, then it is this domain
6759 * that needs to undergo a pullback, i.e., a preimage.
6761 static __isl_give isl_multi_pw_aff *
6762 isl_multi_pw_aff_pullback_pw_multi_aff_aligned(
6763 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_multi_aff *pma)
6765 int i;
6766 isl_space *space = NULL;
6768 mpa = isl_multi_pw_aff_cow(mpa);
6769 if (!mpa || !pma)
6770 goto error;
6772 space = isl_space_join(isl_pw_multi_aff_get_space(pma),
6773 isl_multi_pw_aff_get_space(mpa));
6775 for (i = 0; i < mpa->n; ++i) {
6776 mpa->u.p[i] = isl_pw_aff_pullback_pw_multi_aff_aligned(
6777 mpa->u.p[i], isl_pw_multi_aff_copy(pma));
6778 if (!mpa->u.p[i])
6779 goto error;
6781 if (isl_multi_pw_aff_has_explicit_domain(mpa)) {
6782 mpa->u.dom = isl_set_preimage_pw_multi_aff(mpa->u.dom,
6783 isl_pw_multi_aff_copy(pma));
6784 if (!mpa->u.dom)
6785 goto error;
6788 isl_pw_multi_aff_free(pma);
6789 isl_space_free(mpa->space);
6790 mpa->space = space;
6791 return mpa;
6792 error:
6793 isl_space_free(space);
6794 isl_multi_pw_aff_free(mpa);
6795 isl_pw_multi_aff_free(pma);
6796 return NULL;
6799 /* Compute the pullback of "mpa" by the function represented by "pma".
6800 * In other words, plug in "pma" in "mpa".
6802 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_pw_multi_aff(
6803 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_multi_aff *pma)
6805 isl_bool equal_params;
6807 if (!mpa || !pma)
6808 goto error;
6809 equal_params = isl_space_has_equal_params(mpa->space, pma->dim);
6810 if (equal_params < 0)
6811 goto error;
6812 if (equal_params)
6813 return isl_multi_pw_aff_pullback_pw_multi_aff_aligned(mpa, pma);
6814 mpa = isl_multi_pw_aff_align_params(mpa,
6815 isl_pw_multi_aff_get_space(pma));
6816 pma = isl_pw_multi_aff_align_params(pma,
6817 isl_multi_pw_aff_get_space(mpa));
6818 return isl_multi_pw_aff_pullback_pw_multi_aff_aligned(mpa, pma);
6819 error:
6820 isl_multi_pw_aff_free(mpa);
6821 isl_pw_multi_aff_free(pma);
6822 return NULL;
6825 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
6826 * with the domain of "aff". The domain of the result is the same
6827 * as that of "mpa".
6828 * "mpa" and "aff" are assumed to have been aligned.
6830 * We first extract the parametric constant from "aff", defined
6831 * over the correct domain.
6832 * Then we add the appropriate combinations of the members of "mpa".
6833 * Finally, we add the integer divisions through recursive calls.
6835 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff_aligned(
6836 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
6838 int i;
6839 isl_size n_in, n_div, n_mpa_in;
6840 isl_space *space;
6841 isl_val *v;
6842 isl_pw_aff *pa;
6843 isl_aff *tmp;
6845 n_in = isl_aff_dim(aff, isl_dim_in);
6846 n_div = isl_aff_dim(aff, isl_dim_div);
6847 n_mpa_in = isl_multi_pw_aff_dim(mpa, isl_dim_in);
6848 if (n_in < 0 || n_div < 0 || n_mpa_in < 0)
6849 goto error;
6851 space = isl_space_domain(isl_multi_pw_aff_get_space(mpa));
6852 tmp = isl_aff_copy(aff);
6853 tmp = isl_aff_drop_dims(tmp, isl_dim_div, 0, n_div);
6854 tmp = isl_aff_drop_dims(tmp, isl_dim_in, 0, n_in);
6855 tmp = isl_aff_add_dims(tmp, isl_dim_in, n_mpa_in);
6856 tmp = isl_aff_reset_domain_space(tmp, space);
6857 pa = isl_pw_aff_from_aff(tmp);
6859 for (i = 0; i < n_in; ++i) {
6860 isl_pw_aff *pa_i;
6862 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
6863 continue;
6864 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
6865 pa_i = isl_multi_pw_aff_get_pw_aff(mpa, i);
6866 pa_i = isl_pw_aff_scale_val(pa_i, v);
6867 pa = isl_pw_aff_add(pa, pa_i);
6870 for (i = 0; i < n_div; ++i) {
6871 isl_aff *div;
6872 isl_pw_aff *pa_i;
6874 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
6875 continue;
6876 div = isl_aff_get_div(aff, i);
6877 pa_i = isl_multi_pw_aff_apply_aff_aligned(
6878 isl_multi_pw_aff_copy(mpa), div);
6879 pa_i = isl_pw_aff_floor(pa_i);
6880 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
6881 pa_i = isl_pw_aff_scale_val(pa_i, v);
6882 pa = isl_pw_aff_add(pa, pa_i);
6885 isl_multi_pw_aff_free(mpa);
6886 isl_aff_free(aff);
6888 return pa;
6889 error:
6890 isl_multi_pw_aff_free(mpa);
6891 isl_aff_free(aff);
6892 return NULL;
6895 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
6896 * with the domain of "aff". The domain of the result is the same
6897 * as that of "mpa".
6899 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff(
6900 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
6902 isl_bool equal_params;
6904 if (!aff || !mpa)
6905 goto error;
6906 equal_params = isl_space_has_equal_params(aff->ls->dim, mpa->space);
6907 if (equal_params < 0)
6908 goto error;
6909 if (equal_params)
6910 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
6912 aff = isl_aff_align_params(aff, isl_multi_pw_aff_get_space(mpa));
6913 mpa = isl_multi_pw_aff_align_params(mpa, isl_aff_get_space(aff));
6915 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
6916 error:
6917 isl_aff_free(aff);
6918 isl_multi_pw_aff_free(mpa);
6919 return NULL;
6922 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
6923 * with the domain of "pa". The domain of the result is the same
6924 * as that of "mpa".
6925 * "mpa" and "pa" are assumed to have been aligned.
6927 * We consider each piece in turn. Note that the domains of the
6928 * pieces are assumed to be disjoint and they remain disjoint
6929 * after taking the preimage (over the same function).
6931 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff_aligned(
6932 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
6934 isl_space *space;
6935 isl_pw_aff *res;
6936 int i;
6938 if (!mpa || !pa)
6939 goto error;
6941 space = isl_space_join(isl_multi_pw_aff_get_space(mpa),
6942 isl_pw_aff_get_space(pa));
6943 res = isl_pw_aff_empty(space);
6945 for (i = 0; i < pa->n; ++i) {
6946 isl_pw_aff *pa_i;
6947 isl_set *domain;
6949 pa_i = isl_multi_pw_aff_apply_aff_aligned(
6950 isl_multi_pw_aff_copy(mpa),
6951 isl_aff_copy(pa->p[i].aff));
6952 domain = isl_set_copy(pa->p[i].set);
6953 domain = isl_set_preimage_multi_pw_aff(domain,
6954 isl_multi_pw_aff_copy(mpa));
6955 pa_i = isl_pw_aff_intersect_domain(pa_i, domain);
6956 res = isl_pw_aff_add_disjoint(res, pa_i);
6959 isl_pw_aff_free(pa);
6960 isl_multi_pw_aff_free(mpa);
6961 return res;
6962 error:
6963 isl_pw_aff_free(pa);
6964 isl_multi_pw_aff_free(mpa);
6965 return NULL;
6968 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
6969 * with the domain of "pa". The domain of the result is the same
6970 * as that of "mpa".
6972 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff(
6973 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
6975 isl_bool equal_params;
6977 if (!pa || !mpa)
6978 goto error;
6979 equal_params = isl_space_has_equal_params(pa->dim, mpa->space);
6980 if (equal_params < 0)
6981 goto error;
6982 if (equal_params)
6983 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
6985 pa = isl_pw_aff_align_params(pa, isl_multi_pw_aff_get_space(mpa));
6986 mpa = isl_multi_pw_aff_align_params(mpa, isl_pw_aff_get_space(pa));
6988 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
6989 error:
6990 isl_pw_aff_free(pa);
6991 isl_multi_pw_aff_free(mpa);
6992 return NULL;
6995 /* Compute the pullback of "pa" by the function represented by "mpa".
6996 * In other words, plug in "mpa" in "pa".
6997 * "pa" and "mpa" are assumed to have been aligned.
6999 * The pullback is computed by applying "pa" to "mpa".
7001 static __isl_give isl_pw_aff *isl_pw_aff_pullback_multi_pw_aff_aligned(
7002 __isl_take isl_pw_aff *pa, __isl_take isl_multi_pw_aff *mpa)
7004 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
7007 /* Compute the pullback of "pa" by the function represented by "mpa".
7008 * In other words, plug in "mpa" in "pa".
7010 * The pullback is computed by applying "pa" to "mpa".
7012 __isl_give isl_pw_aff *isl_pw_aff_pullback_multi_pw_aff(
7013 __isl_take isl_pw_aff *pa, __isl_take isl_multi_pw_aff *mpa)
7015 return isl_multi_pw_aff_apply_pw_aff(mpa, pa);
7018 /* Compute the pullback of "mpa1" by the function represented by "mpa2".
7019 * In other words, plug in "mpa2" in "mpa1".
7021 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7023 * We pullback each member of "mpa1" in turn.
7025 * If "mpa1" has an explicit domain, then it is this domain
7026 * that needs to undergo a pullback instead, i.e., a preimage.
7028 static __isl_give isl_multi_pw_aff *
7029 isl_multi_pw_aff_pullback_multi_pw_aff_aligned(
7030 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
7032 int i;
7033 isl_space *space = NULL;
7035 mpa1 = isl_multi_pw_aff_cow(mpa1);
7036 if (!mpa1 || !mpa2)
7037 goto error;
7039 space = isl_space_join(isl_multi_pw_aff_get_space(mpa2),
7040 isl_multi_pw_aff_get_space(mpa1));
7042 for (i = 0; i < mpa1->n; ++i) {
7043 mpa1->u.p[i] = isl_pw_aff_pullback_multi_pw_aff_aligned(
7044 mpa1->u.p[i], isl_multi_pw_aff_copy(mpa2));
7045 if (!mpa1->u.p[i])
7046 goto error;
7049 if (isl_multi_pw_aff_has_explicit_domain(mpa1)) {
7050 mpa1->u.dom = isl_set_preimage_multi_pw_aff(mpa1->u.dom,
7051 isl_multi_pw_aff_copy(mpa2));
7052 if (!mpa1->u.dom)
7053 goto error;
7055 mpa1 = isl_multi_pw_aff_reset_space(mpa1, space);
7057 isl_multi_pw_aff_free(mpa2);
7058 return mpa1;
7059 error:
7060 isl_space_free(space);
7061 isl_multi_pw_aff_free(mpa1);
7062 isl_multi_pw_aff_free(mpa2);
7063 return NULL;
7066 /* Compute the pullback of "mpa1" by the function represented by "mpa2".
7067 * In other words, plug in "mpa2" in "mpa1".
7069 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_pullback_multi_pw_aff(
7070 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
7072 return isl_multi_pw_aff_align_params_multi_multi_and(mpa1, mpa2,
7073 &isl_multi_pw_aff_pullback_multi_pw_aff_aligned);
7076 /* Align the parameters of "mpa1" and "mpa2", check that the ranges
7077 * of "mpa1" and "mpa2" live in the same space, construct map space
7078 * between the domain spaces of "mpa1" and "mpa2" and call "order"
7079 * with this map space as extract argument.
7081 static __isl_give isl_map *isl_multi_pw_aff_order_map(
7082 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
7083 __isl_give isl_map *(*order)(__isl_keep isl_multi_pw_aff *mpa1,
7084 __isl_keep isl_multi_pw_aff *mpa2, __isl_take isl_space *space))
7086 int match;
7087 isl_space *space1, *space2;
7088 isl_map *res;
7090 mpa1 = isl_multi_pw_aff_align_params(mpa1,
7091 isl_multi_pw_aff_get_space(mpa2));
7092 mpa2 = isl_multi_pw_aff_align_params(mpa2,
7093 isl_multi_pw_aff_get_space(mpa1));
7094 if (!mpa1 || !mpa2)
7095 goto error;
7096 match = isl_space_tuple_is_equal(mpa1->space, isl_dim_out,
7097 mpa2->space, isl_dim_out);
7098 if (match < 0)
7099 goto error;
7100 if (!match)
7101 isl_die(isl_multi_pw_aff_get_ctx(mpa1), isl_error_invalid,
7102 "range spaces don't match", goto error);
7103 space1 = isl_space_domain(isl_multi_pw_aff_get_space(mpa1));
7104 space2 = isl_space_domain(isl_multi_pw_aff_get_space(mpa2));
7105 space1 = isl_space_map_from_domain_and_range(space1, space2);
7107 res = order(mpa1, mpa2, space1);
7108 isl_multi_pw_aff_free(mpa1);
7109 isl_multi_pw_aff_free(mpa2);
7110 return res;
7111 error:
7112 isl_multi_pw_aff_free(mpa1);
7113 isl_multi_pw_aff_free(mpa2);
7114 return NULL;
7117 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7118 * where the function values are equal. "space" is the space of the result.
7119 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7121 * "mpa1" and "mpa2" are equal when each of the pairs of elements
7122 * in the sequences are equal.
7124 static __isl_give isl_map *isl_multi_pw_aff_eq_map_on_space(
7125 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7126 __isl_take isl_space *space)
7128 int i;
7129 isl_size n;
7130 isl_map *res;
7132 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
7133 if (n < 0)
7134 space = isl_space_free(space);
7135 res = isl_map_universe(space);
7137 for (i = 0; i < n; ++i) {
7138 isl_pw_aff *pa1, *pa2;
7139 isl_map *map;
7141 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7142 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7143 map = isl_pw_aff_eq_map(pa1, pa2);
7144 res = isl_map_intersect(res, map);
7147 return res;
7150 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7151 * where the function values are equal.
7153 __isl_give isl_map *isl_multi_pw_aff_eq_map(__isl_take isl_multi_pw_aff *mpa1,
7154 __isl_take isl_multi_pw_aff *mpa2)
7156 return isl_multi_pw_aff_order_map(mpa1, mpa2,
7157 &isl_multi_pw_aff_eq_map_on_space);
7160 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7161 * where the function values of "mpa1" is lexicographically satisfies "base"
7162 * compared to that of "mpa2". "space" is the space of the result.
7163 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7165 * "mpa1" lexicographically satisfies "base" compared to "mpa2"
7166 * if its i-th element satisfies "base" when compared to
7167 * the i-th element of "mpa2" while all previous elements are
7168 * pairwise equal.
7170 static __isl_give isl_map *isl_multi_pw_aff_lex_map_on_space(
7171 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7172 __isl_give isl_map *(*base)(__isl_take isl_pw_aff *pa1,
7173 __isl_take isl_pw_aff *pa2),
7174 __isl_take isl_space *space)
7176 int i;
7177 isl_size n;
7178 isl_map *res, *rest;
7180 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
7181 if (n < 0)
7182 space = isl_space_free(space);
7183 res = isl_map_empty(isl_space_copy(space));
7184 rest = isl_map_universe(space);
7186 for (i = 0; i < n; ++i) {
7187 isl_pw_aff *pa1, *pa2;
7188 isl_map *map;
7190 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7191 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7192 map = base(pa1, pa2);
7193 map = isl_map_intersect(map, isl_map_copy(rest));
7194 res = isl_map_union(res, map);
7196 if (i == n - 1)
7197 continue;
7199 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7200 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7201 map = isl_pw_aff_eq_map(pa1, pa2);
7202 rest = isl_map_intersect(rest, map);
7205 isl_map_free(rest);
7206 return res;
7209 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7210 * where the function value of "mpa1" is lexicographically less than that
7211 * of "mpa2". "space" is the space of the result.
7212 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7214 * "mpa1" is less than "mpa2" if its i-th element is smaller
7215 * than the i-th element of "mpa2" while all previous elements are
7216 * pairwise equal.
7218 __isl_give isl_map *isl_multi_pw_aff_lex_lt_map_on_space(
7219 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7220 __isl_take isl_space *space)
7222 return isl_multi_pw_aff_lex_map_on_space(mpa1, mpa2,
7223 &isl_pw_aff_lt_map, space);
7226 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7227 * where the function value of "mpa1" is lexicographically less than that
7228 * of "mpa2".
7230 __isl_give isl_map *isl_multi_pw_aff_lex_lt_map(
7231 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
7233 return isl_multi_pw_aff_order_map(mpa1, mpa2,
7234 &isl_multi_pw_aff_lex_lt_map_on_space);
7237 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7238 * where the function value of "mpa1" is lexicographically greater than that
7239 * of "mpa2". "space" is the space of the result.
7240 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7242 * "mpa1" is greater than "mpa2" if its i-th element is greater
7243 * than the i-th element of "mpa2" while all previous elements are
7244 * pairwise equal.
7246 __isl_give isl_map *isl_multi_pw_aff_lex_gt_map_on_space(
7247 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7248 __isl_take isl_space *space)
7250 return isl_multi_pw_aff_lex_map_on_space(mpa1, mpa2,
7251 &isl_pw_aff_gt_map, space);
7254 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7255 * where the function value of "mpa1" is lexicographically greater than that
7256 * of "mpa2".
7258 __isl_give isl_map *isl_multi_pw_aff_lex_gt_map(
7259 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2)
7261 return isl_multi_pw_aff_order_map(mpa1, mpa2,
7262 &isl_multi_pw_aff_lex_gt_map_on_space);
7265 /* Compare two isl_affs.
7267 * Return -1 if "aff1" is "smaller" than "aff2", 1 if "aff1" is "greater"
7268 * than "aff2" and 0 if they are equal.
7270 * The order is fairly arbitrary. We do consider expressions that only involve
7271 * earlier dimensions as "smaller".
7273 int isl_aff_plain_cmp(__isl_keep isl_aff *aff1, __isl_keep isl_aff *aff2)
7275 int cmp;
7276 int last1, last2;
7278 if (aff1 == aff2)
7279 return 0;
7281 if (!aff1)
7282 return -1;
7283 if (!aff2)
7284 return 1;
7286 cmp = isl_local_space_cmp(aff1->ls, aff2->ls);
7287 if (cmp != 0)
7288 return cmp;
7290 last1 = isl_seq_last_non_zero(aff1->v->el + 1, aff1->v->size - 1);
7291 last2 = isl_seq_last_non_zero(aff2->v->el + 1, aff1->v->size - 1);
7292 if (last1 != last2)
7293 return last1 - last2;
7295 return isl_seq_cmp(aff1->v->el, aff2->v->el, aff1->v->size);
7298 /* Compare two isl_pw_affs.
7300 * Return -1 if "pa1" is "smaller" than "pa2", 1 if "pa1" is "greater"
7301 * than "pa2" and 0 if they are equal.
7303 * The order is fairly arbitrary. We do consider expressions that only involve
7304 * earlier dimensions as "smaller".
7306 int isl_pw_aff_plain_cmp(__isl_keep isl_pw_aff *pa1,
7307 __isl_keep isl_pw_aff *pa2)
7309 int i;
7310 int cmp;
7312 if (pa1 == pa2)
7313 return 0;
7315 if (!pa1)
7316 return -1;
7317 if (!pa2)
7318 return 1;
7320 cmp = isl_space_cmp(pa1->dim, pa2->dim);
7321 if (cmp != 0)
7322 return cmp;
7324 if (pa1->n != pa2->n)
7325 return pa1->n - pa2->n;
7327 for (i = 0; i < pa1->n; ++i) {
7328 cmp = isl_set_plain_cmp(pa1->p[i].set, pa2->p[i].set);
7329 if (cmp != 0)
7330 return cmp;
7331 cmp = isl_aff_plain_cmp(pa1->p[i].aff, pa2->p[i].aff);
7332 if (cmp != 0)
7333 return cmp;
7336 return 0;
7339 /* Return a piecewise affine expression that is equal to "v" on "domain".
7341 __isl_give isl_pw_aff *isl_pw_aff_val_on_domain(__isl_take isl_set *domain,
7342 __isl_take isl_val *v)
7344 isl_space *space;
7345 isl_local_space *ls;
7346 isl_aff *aff;
7348 space = isl_set_get_space(domain);
7349 ls = isl_local_space_from_space(space);
7350 aff = isl_aff_val_on_domain(ls, v);
7352 return isl_pw_aff_alloc(domain, aff);
7355 /* Return a multi affine expression that is equal to "mv" on domain
7356 * space "space".
7358 __isl_give isl_multi_aff *isl_multi_aff_multi_val_on_space(
7359 __isl_take isl_space *space, __isl_take isl_multi_val *mv)
7361 int i;
7362 isl_size n;
7363 isl_space *space2;
7364 isl_local_space *ls;
7365 isl_multi_aff *ma;
7367 n = isl_multi_val_dim(mv, isl_dim_set);
7368 if (!space || n < 0)
7369 goto error;
7371 space2 = isl_multi_val_get_space(mv);
7372 space2 = isl_space_align_params(space2, isl_space_copy(space));
7373 space = isl_space_align_params(space, isl_space_copy(space2));
7374 space = isl_space_map_from_domain_and_range(space, space2);
7375 ma = isl_multi_aff_alloc(isl_space_copy(space));
7376 ls = isl_local_space_from_space(isl_space_domain(space));
7377 for (i = 0; i < n; ++i) {
7378 isl_val *v;
7379 isl_aff *aff;
7381 v = isl_multi_val_get_val(mv, i);
7382 aff = isl_aff_val_on_domain(isl_local_space_copy(ls), v);
7383 ma = isl_multi_aff_set_aff(ma, i, aff);
7385 isl_local_space_free(ls);
7387 isl_multi_val_free(mv);
7388 return ma;
7389 error:
7390 isl_space_free(space);
7391 isl_multi_val_free(mv);
7392 return NULL;
7395 /* Return a piecewise multi-affine expression
7396 * that is equal to "mv" on "domain".
7398 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_multi_val_on_domain(
7399 __isl_take isl_set *domain, __isl_take isl_multi_val *mv)
7401 isl_space *space;
7402 isl_multi_aff *ma;
7404 space = isl_set_get_space(domain);
7405 ma = isl_multi_aff_multi_val_on_space(space, mv);
7407 return isl_pw_multi_aff_alloc(domain, ma);
7410 /* Internal data structure for isl_union_pw_multi_aff_multi_val_on_domain.
7411 * mv is the value that should be attained on each domain set
7412 * res collects the results
7414 struct isl_union_pw_multi_aff_multi_val_on_domain_data {
7415 isl_multi_val *mv;
7416 isl_union_pw_multi_aff *res;
7419 /* Create an isl_pw_multi_aff equal to data->mv on "domain"
7420 * and add it to data->res.
7422 static isl_stat pw_multi_aff_multi_val_on_domain(__isl_take isl_set *domain,
7423 void *user)
7425 struct isl_union_pw_multi_aff_multi_val_on_domain_data *data = user;
7426 isl_pw_multi_aff *pma;
7427 isl_multi_val *mv;
7429 mv = isl_multi_val_copy(data->mv);
7430 pma = isl_pw_multi_aff_multi_val_on_domain(domain, mv);
7431 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
7433 return data->res ? isl_stat_ok : isl_stat_error;
7436 /* Return a union piecewise multi-affine expression
7437 * that is equal to "mv" on "domain".
7439 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_multi_val_on_domain(
7440 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
7442 struct isl_union_pw_multi_aff_multi_val_on_domain_data data;
7443 isl_space *space;
7445 space = isl_union_set_get_space(domain);
7446 data.res = isl_union_pw_multi_aff_empty(space);
7447 data.mv = mv;
7448 if (isl_union_set_foreach_set(domain,
7449 &pw_multi_aff_multi_val_on_domain, &data) < 0)
7450 data.res = isl_union_pw_multi_aff_free(data.res);
7451 isl_union_set_free(domain);
7452 isl_multi_val_free(mv);
7453 return data.res;
7456 /* Compute the pullback of data->pma by the function represented by "pma2",
7457 * provided the spaces match, and add the results to data->res.
7459 static isl_stat pullback_entry(__isl_take isl_pw_multi_aff *pma2, void *user)
7461 struct isl_union_pw_multi_aff_bin_data *data = user;
7463 if (!isl_space_tuple_is_equal(data->pma->dim, isl_dim_in,
7464 pma2->dim, isl_dim_out)) {
7465 isl_pw_multi_aff_free(pma2);
7466 return isl_stat_ok;
7469 pma2 = isl_pw_multi_aff_pullback_pw_multi_aff(
7470 isl_pw_multi_aff_copy(data->pma), pma2);
7472 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
7473 if (!data->res)
7474 return isl_stat_error;
7476 return isl_stat_ok;
7479 /* Compute the pullback of "upma1" by the function represented by "upma2".
7481 __isl_give isl_union_pw_multi_aff *
7482 isl_union_pw_multi_aff_pullback_union_pw_multi_aff(
7483 __isl_take isl_union_pw_multi_aff *upma1,
7484 __isl_take isl_union_pw_multi_aff *upma2)
7486 return bin_op(upma1, upma2, &pullback_entry);
7489 /* Check that the domain space of "upa" matches "space".
7491 * This function is called from isl_multi_union_pw_aff_set_union_pw_aff and
7492 * can in principle never fail since the space "space" is that
7493 * of the isl_multi_union_pw_aff and is a set space such that
7494 * there is no domain space to match.
7496 * We check the parameters and double-check that "space" is
7497 * indeed that of a set.
7499 static isl_stat isl_union_pw_aff_check_match_domain_space(
7500 __isl_keep isl_union_pw_aff *upa, __isl_keep isl_space *space)
7502 isl_space *upa_space;
7503 isl_bool match;
7505 if (!upa || !space)
7506 return isl_stat_error;
7508 match = isl_space_is_set(space);
7509 if (match < 0)
7510 return isl_stat_error;
7511 if (!match)
7512 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7513 "expecting set space", return isl_stat_error);
7515 upa_space = isl_union_pw_aff_get_space(upa);
7516 match = isl_space_has_equal_params(space, upa_space);
7517 if (match < 0)
7518 goto error;
7519 if (!match)
7520 isl_die(isl_space_get_ctx(space), isl_error_invalid,
7521 "parameters don't match", goto error);
7523 isl_space_free(upa_space);
7524 return isl_stat_ok;
7525 error:
7526 isl_space_free(upa_space);
7527 return isl_stat_error;
7530 /* Do the parameters of "upa" match those of "space"?
7532 static isl_bool isl_union_pw_aff_matching_params(
7533 __isl_keep isl_union_pw_aff *upa, __isl_keep isl_space *space)
7535 isl_space *upa_space;
7536 isl_bool match;
7538 if (!upa || !space)
7539 return isl_bool_error;
7541 upa_space = isl_union_pw_aff_get_space(upa);
7543 match = isl_space_has_equal_params(space, upa_space);
7545 isl_space_free(upa_space);
7546 return match;
7549 /* Internal data structure for isl_union_pw_aff_reset_domain_space.
7550 * space represents the new parameters.
7551 * res collects the results.
7553 struct isl_union_pw_aff_reset_params_data {
7554 isl_space *space;
7555 isl_union_pw_aff *res;
7558 /* Replace the parameters of "pa" by data->space and
7559 * add the result to data->res.
7561 static isl_stat reset_params(__isl_take isl_pw_aff *pa, void *user)
7563 struct isl_union_pw_aff_reset_params_data *data = user;
7564 isl_space *space;
7566 space = isl_pw_aff_get_space(pa);
7567 space = isl_space_replace_params(space, data->space);
7568 pa = isl_pw_aff_reset_space(pa, space);
7569 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7571 return data->res ? isl_stat_ok : isl_stat_error;
7574 /* Replace the domain space of "upa" by "space".
7575 * Since a union expression does not have a (single) domain space,
7576 * "space" is necessarily a parameter space.
7578 * Since the order and the names of the parameters determine
7579 * the hash value, we need to create a new hash table.
7581 static __isl_give isl_union_pw_aff *isl_union_pw_aff_reset_domain_space(
7582 __isl_take isl_union_pw_aff *upa, __isl_take isl_space *space)
7584 struct isl_union_pw_aff_reset_params_data data = { space };
7585 isl_bool match;
7587 match = isl_union_pw_aff_matching_params(upa, space);
7588 if (match < 0)
7589 upa = isl_union_pw_aff_free(upa);
7590 else if (match) {
7591 isl_space_free(space);
7592 return upa;
7595 data.res = isl_union_pw_aff_empty(isl_space_copy(space));
7596 if (isl_union_pw_aff_foreach_pw_aff(upa, &reset_params, &data) < 0)
7597 data.res = isl_union_pw_aff_free(data.res);
7599 isl_union_pw_aff_free(upa);
7600 isl_space_free(space);
7601 return data.res;
7604 /* Return the floor of "pa".
7606 static __isl_give isl_pw_aff *floor_entry(__isl_take isl_pw_aff *pa, void *user)
7608 return isl_pw_aff_floor(pa);
7611 /* Given f, return floor(f).
7613 __isl_give isl_union_pw_aff *isl_union_pw_aff_floor(
7614 __isl_take isl_union_pw_aff *upa)
7616 return isl_union_pw_aff_transform_inplace(upa, &floor_entry, NULL);
7619 /* Compute
7621 * upa mod m = upa - m * floor(upa/m)
7623 * with m an integer value.
7625 __isl_give isl_union_pw_aff *isl_union_pw_aff_mod_val(
7626 __isl_take isl_union_pw_aff *upa, __isl_take isl_val *m)
7628 isl_union_pw_aff *res;
7630 if (!upa || !m)
7631 goto error;
7633 if (!isl_val_is_int(m))
7634 isl_die(isl_val_get_ctx(m), isl_error_invalid,
7635 "expecting integer modulo", goto error);
7636 if (!isl_val_is_pos(m))
7637 isl_die(isl_val_get_ctx(m), isl_error_invalid,
7638 "expecting positive modulo", goto error);
7640 res = isl_union_pw_aff_copy(upa);
7641 upa = isl_union_pw_aff_scale_down_val(upa, isl_val_copy(m));
7642 upa = isl_union_pw_aff_floor(upa);
7643 upa = isl_union_pw_aff_scale_val(upa, m);
7644 res = isl_union_pw_aff_sub(res, upa);
7646 return res;
7647 error:
7648 isl_val_free(m);
7649 isl_union_pw_aff_free(upa);
7650 return NULL;
7653 /* Internal data structure for isl_union_pw_multi_aff_get_union_pw_aff.
7654 * pos is the output position that needs to be extracted.
7655 * res collects the results.
7657 struct isl_union_pw_multi_aff_get_union_pw_aff_data {
7658 int pos;
7659 isl_union_pw_aff *res;
7662 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma"
7663 * (assuming it has such a dimension) and add it to data->res.
7665 static isl_stat get_union_pw_aff(__isl_take isl_pw_multi_aff *pma, void *user)
7667 struct isl_union_pw_multi_aff_get_union_pw_aff_data *data = user;
7668 isl_size n_out;
7669 isl_pw_aff *pa;
7671 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
7672 if (n_out < 0)
7673 return isl_stat_error;
7674 if (data->pos >= n_out) {
7675 isl_pw_multi_aff_free(pma);
7676 return isl_stat_ok;
7679 pa = isl_pw_multi_aff_get_pw_aff(pma, data->pos);
7680 isl_pw_multi_aff_free(pma);
7682 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7684 return data->res ? isl_stat_ok : isl_stat_error;
7687 /* Extract an isl_union_pw_aff corresponding to
7688 * output dimension "pos" of "upma".
7690 __isl_give isl_union_pw_aff *isl_union_pw_multi_aff_get_union_pw_aff(
7691 __isl_keep isl_union_pw_multi_aff *upma, int pos)
7693 struct isl_union_pw_multi_aff_get_union_pw_aff_data data;
7694 isl_space *space;
7696 if (!upma)
7697 return NULL;
7699 if (pos < 0)
7700 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
7701 "cannot extract at negative position", return NULL);
7703 space = isl_union_pw_multi_aff_get_space(upma);
7704 data.res = isl_union_pw_aff_empty(space);
7705 data.pos = pos;
7706 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
7707 &get_union_pw_aff, &data) < 0)
7708 data.res = isl_union_pw_aff_free(data.res);
7710 return data.res;
7713 /* Return a union piecewise affine expression
7714 * that is equal to "aff" on "domain".
7716 __isl_give isl_union_pw_aff *isl_union_pw_aff_aff_on_domain(
7717 __isl_take isl_union_set *domain, __isl_take isl_aff *aff)
7719 isl_pw_aff *pa;
7721 pa = isl_pw_aff_from_aff(aff);
7722 return isl_union_pw_aff_pw_aff_on_domain(domain, pa);
7725 /* Return a union piecewise affine expression
7726 * that is equal to the parameter identified by "id" on "domain".
7728 * Make sure the parameter appears in the space passed to
7729 * isl_aff_param_on_domain_space_id.
7731 __isl_give isl_union_pw_aff *isl_union_pw_aff_param_on_domain_id(
7732 __isl_take isl_union_set *domain, __isl_take isl_id *id)
7734 isl_space *space;
7735 isl_aff *aff;
7737 space = isl_union_set_get_space(domain);
7738 space = isl_space_add_param_id(space, isl_id_copy(id));
7739 aff = isl_aff_param_on_domain_space_id(space, id);
7740 return isl_union_pw_aff_aff_on_domain(domain, aff);
7743 /* Internal data structure for isl_union_pw_aff_pw_aff_on_domain.
7744 * "pa" is the piecewise symbolic value that the resulting isl_union_pw_aff
7745 * needs to attain.
7746 * "res" collects the results.
7748 struct isl_union_pw_aff_pw_aff_on_domain_data {
7749 isl_pw_aff *pa;
7750 isl_union_pw_aff *res;
7753 /* Construct a piecewise affine expression that is equal to data->pa
7754 * on "domain" and add the result to data->res.
7756 static isl_stat pw_aff_on_domain(__isl_take isl_set *domain, void *user)
7758 struct isl_union_pw_aff_pw_aff_on_domain_data *data = user;
7759 isl_pw_aff *pa;
7760 isl_size dim;
7762 pa = isl_pw_aff_copy(data->pa);
7763 dim = isl_set_dim(domain, isl_dim_set);
7764 if (dim < 0)
7765 pa = isl_pw_aff_free(pa);
7766 pa = isl_pw_aff_from_range(pa);
7767 pa = isl_pw_aff_add_dims(pa, isl_dim_in, dim);
7768 pa = isl_pw_aff_reset_domain_space(pa, isl_set_get_space(domain));
7769 pa = isl_pw_aff_intersect_domain(pa, domain);
7770 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7772 return data->res ? isl_stat_ok : isl_stat_error;
7775 /* Return a union piecewise affine expression
7776 * that is equal to "pa" on "domain", assuming "domain" and "pa"
7777 * have been aligned.
7779 * Construct an isl_pw_aff on each of the sets in "domain" and
7780 * collect the results.
7782 static __isl_give isl_union_pw_aff *isl_union_pw_aff_pw_aff_on_domain_aligned(
7783 __isl_take isl_union_set *domain, __isl_take isl_pw_aff *pa)
7785 struct isl_union_pw_aff_pw_aff_on_domain_data data;
7786 isl_space *space;
7788 space = isl_union_set_get_space(domain);
7789 data.res = isl_union_pw_aff_empty(space);
7790 data.pa = pa;
7791 if (isl_union_set_foreach_set(domain, &pw_aff_on_domain, &data) < 0)
7792 data.res = isl_union_pw_aff_free(data.res);
7793 isl_union_set_free(domain);
7794 isl_pw_aff_free(pa);
7795 return data.res;
7798 /* Return a union piecewise affine expression
7799 * that is equal to "pa" on "domain".
7801 * Check that "pa" is a parametric expression,
7802 * align the parameters if needed and call
7803 * isl_union_pw_aff_pw_aff_on_domain_aligned.
7805 __isl_give isl_union_pw_aff *isl_union_pw_aff_pw_aff_on_domain(
7806 __isl_take isl_union_set *domain, __isl_take isl_pw_aff *pa)
7808 isl_bool is_set;
7809 isl_bool equal_params;
7810 isl_space *domain_space, *pa_space;
7812 pa_space = isl_pw_aff_peek_space(pa);
7813 is_set = isl_space_is_set(pa_space);
7814 if (is_set < 0)
7815 goto error;
7816 if (!is_set)
7817 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
7818 "expecting parametric expression", goto error);
7820 domain_space = isl_union_set_get_space(domain);
7821 pa_space = isl_pw_aff_get_space(pa);
7822 equal_params = isl_space_has_equal_params(domain_space, pa_space);
7823 if (equal_params >= 0 && !equal_params) {
7824 isl_space *space;
7826 space = isl_space_align_params(domain_space, pa_space);
7827 pa = isl_pw_aff_align_params(pa, isl_space_copy(space));
7828 domain = isl_union_set_align_params(domain, space);
7829 } else {
7830 isl_space_free(domain_space);
7831 isl_space_free(pa_space);
7834 if (equal_params < 0)
7835 goto error;
7836 return isl_union_pw_aff_pw_aff_on_domain_aligned(domain, pa);
7837 error:
7838 isl_union_set_free(domain);
7839 isl_pw_aff_free(pa);
7840 return NULL;
7843 /* Internal data structure for isl_union_pw_aff_val_on_domain.
7844 * "v" is the value that the resulting isl_union_pw_aff needs to attain.
7845 * "res" collects the results.
7847 struct isl_union_pw_aff_val_on_domain_data {
7848 isl_val *v;
7849 isl_union_pw_aff *res;
7852 /* Construct a piecewise affine expression that is equal to data->v
7853 * on "domain" and add the result to data->res.
7855 static isl_stat pw_aff_val_on_domain(__isl_take isl_set *domain, void *user)
7857 struct isl_union_pw_aff_val_on_domain_data *data = user;
7858 isl_pw_aff *pa;
7859 isl_val *v;
7861 v = isl_val_copy(data->v);
7862 pa = isl_pw_aff_val_on_domain(domain, v);
7863 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7865 return data->res ? isl_stat_ok : isl_stat_error;
7868 /* Return a union piecewise affine expression
7869 * that is equal to "v" on "domain".
7871 * Construct an isl_pw_aff on each of the sets in "domain" and
7872 * collect the results.
7874 __isl_give isl_union_pw_aff *isl_union_pw_aff_val_on_domain(
7875 __isl_take isl_union_set *domain, __isl_take isl_val *v)
7877 struct isl_union_pw_aff_val_on_domain_data data;
7878 isl_space *space;
7880 space = isl_union_set_get_space(domain);
7881 data.res = isl_union_pw_aff_empty(space);
7882 data.v = v;
7883 if (isl_union_set_foreach_set(domain, &pw_aff_val_on_domain, &data) < 0)
7884 data.res = isl_union_pw_aff_free(data.res);
7885 isl_union_set_free(domain);
7886 isl_val_free(v);
7887 return data.res;
7890 /* Construct a piecewise multi affine expression
7891 * that is equal to "pa" and add it to upma.
7893 static isl_stat pw_multi_aff_from_pw_aff_entry(__isl_take isl_pw_aff *pa,
7894 void *user)
7896 isl_union_pw_multi_aff **upma = user;
7897 isl_pw_multi_aff *pma;
7899 pma = isl_pw_multi_aff_from_pw_aff(pa);
7900 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
7902 return *upma ? isl_stat_ok : isl_stat_error;
7905 /* Construct and return a union piecewise multi affine expression
7906 * that is equal to the given union piecewise affine expression.
7908 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_pw_aff(
7909 __isl_take isl_union_pw_aff *upa)
7911 isl_space *space;
7912 isl_union_pw_multi_aff *upma;
7914 if (!upa)
7915 return NULL;
7917 space = isl_union_pw_aff_get_space(upa);
7918 upma = isl_union_pw_multi_aff_empty(space);
7920 if (isl_union_pw_aff_foreach_pw_aff(upa,
7921 &pw_multi_aff_from_pw_aff_entry, &upma) < 0)
7922 upma = isl_union_pw_multi_aff_free(upma);
7924 isl_union_pw_aff_free(upa);
7925 return upma;
7928 /* Compute the set of elements in the domain of "pa" where it is zero and
7929 * add this set to "uset".
7931 static isl_stat zero_union_set(__isl_take isl_pw_aff *pa, void *user)
7933 isl_union_set **uset = (isl_union_set **)user;
7935 *uset = isl_union_set_add_set(*uset, isl_pw_aff_zero_set(pa));
7937 return *uset ? isl_stat_ok : isl_stat_error;
7940 /* Return a union set containing those elements in the domain
7941 * of "upa" where it is zero.
7943 __isl_give isl_union_set *isl_union_pw_aff_zero_union_set(
7944 __isl_take isl_union_pw_aff *upa)
7946 isl_union_set *zero;
7948 zero = isl_union_set_empty(isl_union_pw_aff_get_space(upa));
7949 if (isl_union_pw_aff_foreach_pw_aff(upa, &zero_union_set, &zero) < 0)
7950 zero = isl_union_set_free(zero);
7952 isl_union_pw_aff_free(upa);
7953 return zero;
7956 /* Internal data structure for isl_union_pw_aff_pullback_union_pw_multi_aff.
7957 * upma is the function that is plugged in.
7958 * pa is the current part of the function in which upma is plugged in.
7959 * res collects the results.
7961 struct isl_union_pw_aff_pullback_upma_data {
7962 isl_union_pw_multi_aff *upma;
7963 isl_pw_aff *pa;
7964 isl_union_pw_aff *res;
7967 /* Check if "pma" can be plugged into data->pa.
7968 * If so, perform the pullback and add the result to data->res.
7970 static isl_stat pa_pb_pma(__isl_take isl_pw_multi_aff *pma, void *user)
7972 struct isl_union_pw_aff_pullback_upma_data *data = user;
7973 isl_pw_aff *pa;
7975 if (!isl_space_tuple_is_equal(data->pa->dim, isl_dim_in,
7976 pma->dim, isl_dim_out)) {
7977 isl_pw_multi_aff_free(pma);
7978 return isl_stat_ok;
7981 pa = isl_pw_aff_copy(data->pa);
7982 pa = isl_pw_aff_pullback_pw_multi_aff(pa, pma);
7984 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
7986 return data->res ? isl_stat_ok : isl_stat_error;
7989 /* Check if any of the elements of data->upma can be plugged into pa,
7990 * add if so add the result to data->res.
7992 static isl_stat upa_pb_upma(__isl_take isl_pw_aff *pa, void *user)
7994 struct isl_union_pw_aff_pullback_upma_data *data = user;
7995 isl_stat r;
7997 data->pa = pa;
7998 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma,
7999 &pa_pb_pma, data);
8000 isl_pw_aff_free(pa);
8002 return r;
8005 /* Compute the pullback of "upa" by the function represented by "upma".
8006 * In other words, plug in "upma" in "upa". The result contains
8007 * expressions defined over the domain space of "upma".
8009 * Run over all pairs of elements in "upa" and "upma", perform
8010 * the pullback when appropriate and collect the results.
8011 * If the hash value were based on the domain space rather than
8012 * the function space, then we could run through all elements
8013 * of "upma" and directly pick out the corresponding element of "upa".
8015 __isl_give isl_union_pw_aff *isl_union_pw_aff_pullback_union_pw_multi_aff(
8016 __isl_take isl_union_pw_aff *upa,
8017 __isl_take isl_union_pw_multi_aff *upma)
8019 struct isl_union_pw_aff_pullback_upma_data data = { NULL, NULL };
8020 isl_space *space;
8022 space = isl_union_pw_multi_aff_get_space(upma);
8023 upa = isl_union_pw_aff_align_params(upa, space);
8024 space = isl_union_pw_aff_get_space(upa);
8025 upma = isl_union_pw_multi_aff_align_params(upma, space);
8027 if (!upa || !upma)
8028 goto error;
8030 data.upma = upma;
8031 data.res = isl_union_pw_aff_alloc_same_size(upa);
8032 if (isl_union_pw_aff_foreach_pw_aff(upa, &upa_pb_upma, &data) < 0)
8033 data.res = isl_union_pw_aff_free(data.res);
8035 isl_union_pw_aff_free(upa);
8036 isl_union_pw_multi_aff_free(upma);
8037 return data.res;
8038 error:
8039 isl_union_pw_aff_free(upa);
8040 isl_union_pw_multi_aff_free(upma);
8041 return NULL;
8044 #undef BASE
8045 #define BASE union_pw_aff
8046 #undef DOMBASE
8047 #define DOMBASE union_set
8049 #include <isl_multi_explicit_domain.c>
8050 #include <isl_multi_union_pw_aff_explicit_domain.c>
8051 #include <isl_multi_templ.c>
8052 #include <isl_multi_apply_set.c>
8053 #include <isl_multi_apply_union_set.c>
8054 #include <isl_multi_arith_templ.c>
8055 #include <isl_multi_coalesce.c>
8056 #include <isl_multi_dim_id_templ.c>
8057 #include <isl_multi_floor.c>
8058 #include <isl_multi_from_base_templ.c>
8059 #include <isl_multi_gist.c>
8060 #include <isl_multi_align_set.c>
8061 #include <isl_multi_align_union_set.c>
8062 #include <isl_multi_intersect.c>
8063 #include <isl_multi_nan_templ.c>
8064 #include <isl_multi_tuple_id_templ.c>
8066 /* Does "mupa" have a non-trivial explicit domain?
8068 * The explicit domain, if present, is trivial if it represents
8069 * an (obviously) universe parameter set.
8071 isl_bool isl_multi_union_pw_aff_has_non_trivial_domain(
8072 __isl_keep isl_multi_union_pw_aff *mupa)
8074 isl_bool is_params, trivial;
8075 isl_set *set;
8077 if (!mupa)
8078 return isl_bool_error;
8079 if (!isl_multi_union_pw_aff_has_explicit_domain(mupa))
8080 return isl_bool_false;
8081 is_params = isl_union_set_is_params(mupa->u.dom);
8082 if (is_params < 0 || !is_params)
8083 return isl_bool_not(is_params);
8084 set = isl_set_from_union_set(isl_union_set_copy(mupa->u.dom));
8085 trivial = isl_set_plain_is_universe(set);
8086 isl_set_free(set);
8087 return isl_bool_not(trivial);
8090 /* Construct a multiple union piecewise affine expression
8091 * in the given space with value zero in each of the output dimensions.
8093 * Since there is no canonical zero value for
8094 * a union piecewise affine expression, we can only construct
8095 * a zero-dimensional "zero" value.
8097 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_zero(
8098 __isl_take isl_space *space)
8100 isl_bool params;
8101 isl_size dim;
8103 if (!space)
8104 return NULL;
8106 params = isl_space_is_params(space);
8107 if (params < 0)
8108 goto error;
8109 if (params)
8110 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8111 "expecting proper set space", goto error);
8112 if (!isl_space_is_set(space))
8113 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8114 "expecting set space", goto error);
8115 dim = isl_space_dim(space, isl_dim_out);
8116 if (dim < 0)
8117 goto error;
8118 if (dim != 0)
8119 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8120 "expecting 0D space", goto error);
8122 return isl_multi_union_pw_aff_alloc(space);
8123 error:
8124 isl_space_free(space);
8125 return NULL;
8128 /* Compute the sum of "mupa1" and "mupa2" on the union of their domains,
8129 * with the actual sum on the shared domain and
8130 * the defined expression on the symmetric difference of the domains.
8132 * We simply iterate over the elements in both arguments and
8133 * call isl_union_pw_aff_union_add on each of them, if there is
8134 * at least one element.
8136 * Otherwise, the two expressions have an explicit domain and
8137 * the union of these explicit domains is computed.
8138 * This assumes that the explicit domains are either both in terms
8139 * of specific domains elements or both in terms of parameters.
8140 * However, if one of the expressions does not have any constraints
8141 * on its explicit domain, then this is allowed as well and the result
8142 * is the expression with no constraints on its explicit domain.
8144 static __isl_give isl_multi_union_pw_aff *
8145 isl_multi_union_pw_aff_union_add_aligned(
8146 __isl_take isl_multi_union_pw_aff *mupa1,
8147 __isl_take isl_multi_union_pw_aff *mupa2)
8149 isl_bool has_domain, is_params1, is_params2;
8151 if (isl_multi_union_pw_aff_check_equal_space(mupa1, mupa2) < 0)
8152 goto error;
8153 if (mupa1->n > 0)
8154 return isl_multi_union_pw_aff_bin_op(mupa1, mupa2,
8155 &isl_union_pw_aff_union_add);
8156 if (isl_multi_union_pw_aff_check_has_explicit_domain(mupa1) < 0 ||
8157 isl_multi_union_pw_aff_check_has_explicit_domain(mupa2) < 0)
8158 goto error;
8160 has_domain = isl_multi_union_pw_aff_has_non_trivial_domain(mupa1);
8161 if (has_domain < 0)
8162 goto error;
8163 if (!has_domain) {
8164 isl_multi_union_pw_aff_free(mupa2);
8165 return mupa1;
8167 has_domain = isl_multi_union_pw_aff_has_non_trivial_domain(mupa2);
8168 if (has_domain < 0)
8169 goto error;
8170 if (!has_domain) {
8171 isl_multi_union_pw_aff_free(mupa1);
8172 return mupa2;
8175 is_params1 = isl_union_set_is_params(mupa1->u.dom);
8176 is_params2 = isl_union_set_is_params(mupa2->u.dom);
8177 if (is_params1 < 0 || is_params2 < 0)
8178 goto error;
8179 if (is_params1 != is_params2)
8180 isl_die(isl_multi_union_pw_aff_get_ctx(mupa1),
8181 isl_error_invalid,
8182 "cannot compute union of concrete domain and "
8183 "parameter constraints", goto error);
8184 mupa1 = isl_multi_union_pw_aff_cow(mupa1);
8185 if (!mupa1)
8186 goto error;
8187 mupa1->u.dom = isl_union_set_union(mupa1->u.dom,
8188 isl_union_set_copy(mupa2->u.dom));
8189 if (!mupa1->u.dom)
8190 goto error;
8191 isl_multi_union_pw_aff_free(mupa2);
8192 return mupa1;
8193 error:
8194 isl_multi_union_pw_aff_free(mupa1);
8195 isl_multi_union_pw_aff_free(mupa2);
8196 return NULL;
8199 /* Compute the sum of "mupa1" and "mupa2" on the union of their domains,
8200 * with the actual sum on the shared domain and
8201 * the defined expression on the symmetric difference of the domains.
8203 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_union_add(
8204 __isl_take isl_multi_union_pw_aff *mupa1,
8205 __isl_take isl_multi_union_pw_aff *mupa2)
8207 return isl_multi_union_pw_aff_align_params_multi_multi_and(mupa1, mupa2,
8208 &isl_multi_union_pw_aff_union_add_aligned);
8211 /* Construct and return a multi union piecewise affine expression
8212 * that is equal to the given multi affine expression.
8214 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_aff(
8215 __isl_take isl_multi_aff *ma)
8217 isl_multi_pw_aff *mpa;
8219 mpa = isl_multi_pw_aff_from_multi_aff(ma);
8220 return isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
8223 /* Construct and return a multi union piecewise affine expression
8224 * that is equal to the given multi piecewise affine expression.
8226 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_pw_aff(
8227 __isl_take isl_multi_pw_aff *mpa)
8229 int i;
8230 isl_size n;
8231 isl_space *space;
8232 isl_multi_union_pw_aff *mupa;
8234 n = isl_multi_pw_aff_dim(mpa, isl_dim_out);
8235 if (n < 0)
8236 mpa = isl_multi_pw_aff_free(mpa);
8237 if (!mpa)
8238 return NULL;
8240 space = isl_multi_pw_aff_get_space(mpa);
8241 space = isl_space_range(space);
8242 mupa = isl_multi_union_pw_aff_alloc(space);
8244 for (i = 0; i < n; ++i) {
8245 isl_pw_aff *pa;
8246 isl_union_pw_aff *upa;
8248 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
8249 upa = isl_union_pw_aff_from_pw_aff(pa);
8250 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8253 isl_multi_pw_aff_free(mpa);
8255 return mupa;
8258 /* Extract the range space of "pma" and assign it to *space.
8259 * If *space has already been set (through a previous call to this function),
8260 * then check that the range space is the same.
8262 static isl_stat extract_space(__isl_take isl_pw_multi_aff *pma, void *user)
8264 isl_space **space = user;
8265 isl_space *pma_space;
8266 isl_bool equal;
8268 pma_space = isl_space_range(isl_pw_multi_aff_get_space(pma));
8269 isl_pw_multi_aff_free(pma);
8271 if (!pma_space)
8272 return isl_stat_error;
8273 if (!*space) {
8274 *space = pma_space;
8275 return isl_stat_ok;
8278 equal = isl_space_is_equal(pma_space, *space);
8279 isl_space_free(pma_space);
8281 if (equal < 0)
8282 return isl_stat_error;
8283 if (!equal)
8284 isl_die(isl_space_get_ctx(*space), isl_error_invalid,
8285 "range spaces not the same", return isl_stat_error);
8286 return isl_stat_ok;
8289 /* Construct and return a multi union piecewise affine expression
8290 * that is equal to the given union piecewise multi affine expression.
8292 * In order to be able to perform the conversion, the input
8293 * needs to be non-empty and may only involve a single range space.
8295 * If the resulting multi union piecewise affine expression has
8296 * an explicit domain, then assign it the domain of the input.
8297 * In other cases, the domain is stored in the individual elements.
8299 __isl_give isl_multi_union_pw_aff *
8300 isl_multi_union_pw_aff_from_union_pw_multi_aff(
8301 __isl_take isl_union_pw_multi_aff *upma)
8303 isl_space *space = NULL;
8304 isl_multi_union_pw_aff *mupa;
8305 int i;
8306 isl_size n;
8308 n = isl_union_pw_multi_aff_n_pw_multi_aff(upma);
8309 if (n < 0)
8310 goto error;
8311 if (n == 0)
8312 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
8313 "cannot extract range space from empty input",
8314 goto error);
8315 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma, &extract_space,
8316 &space) < 0)
8317 goto error;
8319 if (!space)
8320 goto error;
8322 n = isl_space_dim(space, isl_dim_set);
8323 if (n < 0)
8324 space = isl_space_free(space);
8325 mupa = isl_multi_union_pw_aff_alloc(space);
8327 for (i = 0; i < n; ++i) {
8328 isl_union_pw_aff *upa;
8330 upa = isl_union_pw_multi_aff_get_union_pw_aff(upma, i);
8331 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8333 if (isl_multi_union_pw_aff_has_explicit_domain(mupa)) {
8334 isl_union_set *dom;
8335 isl_union_pw_multi_aff *copy;
8337 copy = isl_union_pw_multi_aff_copy(upma);
8338 dom = isl_union_pw_multi_aff_domain(copy);
8339 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, dom);
8342 isl_union_pw_multi_aff_free(upma);
8343 return mupa;
8344 error:
8345 isl_space_free(space);
8346 isl_union_pw_multi_aff_free(upma);
8347 return NULL;
8350 /* Try and create an isl_multi_union_pw_aff that is equivalent
8351 * to the given isl_union_map.
8352 * The isl_union_map is required to be single-valued in each space.
8353 * Moreover, it cannot be empty and all range spaces need to be the same.
8354 * Otherwise, an error is produced.
8356 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_union_map(
8357 __isl_take isl_union_map *umap)
8359 isl_union_pw_multi_aff *upma;
8361 upma = isl_union_pw_multi_aff_from_union_map(umap);
8362 return isl_multi_union_pw_aff_from_union_pw_multi_aff(upma);
8365 /* Return a multiple union piecewise affine expression
8366 * that is equal to "mv" on "domain", assuming "domain" and "mv"
8367 * have been aligned.
8369 * If the resulting multi union piecewise affine expression has
8370 * an explicit domain, then assign it the input domain.
8371 * In other cases, the domain is stored in the individual elements.
8373 static __isl_give isl_multi_union_pw_aff *
8374 isl_multi_union_pw_aff_multi_val_on_domain_aligned(
8375 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
8377 int i;
8378 isl_size n;
8379 isl_space *space;
8380 isl_multi_union_pw_aff *mupa;
8382 n = isl_multi_val_dim(mv, isl_dim_set);
8383 if (!domain || n < 0)
8384 goto error;
8386 space = isl_multi_val_get_space(mv);
8387 mupa = isl_multi_union_pw_aff_alloc(space);
8388 for (i = 0; i < n; ++i) {
8389 isl_val *v;
8390 isl_union_pw_aff *upa;
8392 v = isl_multi_val_get_val(mv, i);
8393 upa = isl_union_pw_aff_val_on_domain(isl_union_set_copy(domain),
8395 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8397 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
8398 mupa = isl_multi_union_pw_aff_intersect_domain(mupa,
8399 isl_union_set_copy(domain));
8401 isl_union_set_free(domain);
8402 isl_multi_val_free(mv);
8403 return mupa;
8404 error:
8405 isl_union_set_free(domain);
8406 isl_multi_val_free(mv);
8407 return NULL;
8410 /* Return a multiple union piecewise affine expression
8411 * that is equal to "mv" on "domain".
8413 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_val_on_domain(
8414 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
8416 isl_bool equal_params;
8418 if (!domain || !mv)
8419 goto error;
8420 equal_params = isl_space_has_equal_params(domain->dim, mv->space);
8421 if (equal_params < 0)
8422 goto error;
8423 if (equal_params)
8424 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(
8425 domain, mv);
8426 domain = isl_union_set_align_params(domain,
8427 isl_multi_val_get_space(mv));
8428 mv = isl_multi_val_align_params(mv, isl_union_set_get_space(domain));
8429 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(domain, mv);
8430 error:
8431 isl_union_set_free(domain);
8432 isl_multi_val_free(mv);
8433 return NULL;
8436 /* Return a multiple union piecewise affine expression
8437 * that is equal to "ma" on "domain".
8439 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_aff_on_domain(
8440 __isl_take isl_union_set *domain, __isl_take isl_multi_aff *ma)
8442 isl_pw_multi_aff *pma;
8444 pma = isl_pw_multi_aff_from_multi_aff(ma);
8445 return isl_multi_union_pw_aff_pw_multi_aff_on_domain(domain, pma);
8448 /* Return a multiple union piecewise affine expression
8449 * that is equal to "pma" on "domain", assuming "domain" and "pma"
8450 * have been aligned.
8452 * If the resulting multi union piecewise affine expression has
8453 * an explicit domain, then assign it the input domain.
8454 * In other cases, the domain is stored in the individual elements.
8456 static __isl_give isl_multi_union_pw_aff *
8457 isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(
8458 __isl_take isl_union_set *domain, __isl_take isl_pw_multi_aff *pma)
8460 int i;
8461 isl_size n;
8462 isl_space *space;
8463 isl_multi_union_pw_aff *mupa;
8465 n = isl_pw_multi_aff_dim(pma, isl_dim_set);
8466 if (!domain || n < 0)
8467 goto error;
8468 space = isl_pw_multi_aff_get_space(pma);
8469 mupa = isl_multi_union_pw_aff_alloc(space);
8470 for (i = 0; i < n; ++i) {
8471 isl_pw_aff *pa;
8472 isl_union_pw_aff *upa;
8474 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
8475 upa = isl_union_pw_aff_pw_aff_on_domain(
8476 isl_union_set_copy(domain), pa);
8477 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8479 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
8480 mupa = isl_multi_union_pw_aff_intersect_domain(mupa,
8481 isl_union_set_copy(domain));
8483 isl_union_set_free(domain);
8484 isl_pw_multi_aff_free(pma);
8485 return mupa;
8486 error:
8487 isl_union_set_free(domain);
8488 isl_pw_multi_aff_free(pma);
8489 return NULL;
8492 /* Return a multiple union piecewise affine expression
8493 * that is equal to "pma" on "domain".
8495 __isl_give isl_multi_union_pw_aff *
8496 isl_multi_union_pw_aff_pw_multi_aff_on_domain(__isl_take isl_union_set *domain,
8497 __isl_take isl_pw_multi_aff *pma)
8499 isl_bool equal_params;
8500 isl_space *space;
8502 space = isl_pw_multi_aff_peek_space(pma);
8503 equal_params = isl_union_set_space_has_equal_params(domain, space);
8504 if (equal_params < 0)
8505 goto error;
8506 if (equal_params)
8507 return isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(
8508 domain, pma);
8509 domain = isl_union_set_align_params(domain,
8510 isl_pw_multi_aff_get_space(pma));
8511 pma = isl_pw_multi_aff_align_params(pma,
8512 isl_union_set_get_space(domain));
8513 return isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(domain,
8514 pma);
8515 error:
8516 isl_union_set_free(domain);
8517 isl_pw_multi_aff_free(pma);
8518 return NULL;
8521 /* Return a union set containing those elements in the domains
8522 * of the elements of "mupa" where they are all zero.
8524 * If there are no elements, then simply return the entire domain.
8526 __isl_give isl_union_set *isl_multi_union_pw_aff_zero_union_set(
8527 __isl_take isl_multi_union_pw_aff *mupa)
8529 int i;
8530 isl_size n;
8531 isl_union_pw_aff *upa;
8532 isl_union_set *zero;
8534 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8535 if (n < 0)
8536 mupa = isl_multi_union_pw_aff_free(mupa);
8537 if (!mupa)
8538 return NULL;
8540 if (n == 0)
8541 return isl_multi_union_pw_aff_domain(mupa);
8543 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8544 zero = isl_union_pw_aff_zero_union_set(upa);
8546 for (i = 1; i < n; ++i) {
8547 isl_union_set *zero_i;
8549 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8550 zero_i = isl_union_pw_aff_zero_union_set(upa);
8552 zero = isl_union_set_intersect(zero, zero_i);
8555 isl_multi_union_pw_aff_free(mupa);
8556 return zero;
8559 /* Construct a union map mapping the shared domain
8560 * of the union piecewise affine expressions to the range of "mupa"
8561 * in the special case of a 0D multi union piecewise affine expression.
8563 * Construct a map between the explicit domain of "mupa" and
8564 * the range space.
8565 * Note that this assumes that the domain consists of explicit elements.
8567 static __isl_give isl_union_map *isl_union_map_from_multi_union_pw_aff_0D(
8568 __isl_take isl_multi_union_pw_aff *mupa)
8570 isl_bool is_params;
8571 isl_space *space;
8572 isl_union_set *dom, *ran;
8574 space = isl_multi_union_pw_aff_get_space(mupa);
8575 dom = isl_multi_union_pw_aff_domain(mupa);
8576 ran = isl_union_set_from_set(isl_set_universe(space));
8578 is_params = isl_union_set_is_params(dom);
8579 if (is_params < 0)
8580 dom = isl_union_set_free(dom);
8581 else if (is_params)
8582 isl_die(isl_union_set_get_ctx(dom), isl_error_invalid,
8583 "cannot create union map from expression without "
8584 "explicit domain elements",
8585 dom = isl_union_set_free(dom));
8587 return isl_union_map_from_domain_and_range(dom, ran);
8590 /* Construct a union map mapping the shared domain
8591 * of the union piecewise affine expressions to the range of "mupa"
8592 * with each dimension in the range equated to the
8593 * corresponding union piecewise affine expression.
8595 * If the input is zero-dimensional, then construct a mapping
8596 * from its explicit domain.
8598 __isl_give isl_union_map *isl_union_map_from_multi_union_pw_aff(
8599 __isl_take isl_multi_union_pw_aff *mupa)
8601 int i;
8602 isl_size n;
8603 isl_space *space;
8604 isl_union_map *umap;
8605 isl_union_pw_aff *upa;
8607 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8608 if (n < 0)
8609 mupa = isl_multi_union_pw_aff_free(mupa);
8610 if (!mupa)
8611 return NULL;
8613 if (n == 0)
8614 return isl_union_map_from_multi_union_pw_aff_0D(mupa);
8616 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8617 umap = isl_union_map_from_union_pw_aff(upa);
8619 for (i = 1; i < n; ++i) {
8620 isl_union_map *umap_i;
8622 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8623 umap_i = isl_union_map_from_union_pw_aff(upa);
8624 umap = isl_union_map_flat_range_product(umap, umap_i);
8627 space = isl_multi_union_pw_aff_get_space(mupa);
8628 umap = isl_union_map_reset_range_space(umap, space);
8630 isl_multi_union_pw_aff_free(mupa);
8631 return umap;
8634 /* Internal data structure for isl_union_pw_multi_aff_reset_range_space.
8635 * "range" is the space from which to set the range space.
8636 * "res" collects the results.
8638 struct isl_union_pw_multi_aff_reset_range_space_data {
8639 isl_space *range;
8640 isl_union_pw_multi_aff *res;
8643 /* Replace the range space of "pma" by the range space of data->range and
8644 * add the result to data->res.
8646 static isl_stat reset_range_space(__isl_take isl_pw_multi_aff *pma, void *user)
8648 struct isl_union_pw_multi_aff_reset_range_space_data *data = user;
8649 isl_space *space;
8651 space = isl_pw_multi_aff_get_space(pma);
8652 space = isl_space_domain(space);
8653 space = isl_space_extend_domain_with_range(space,
8654 isl_space_copy(data->range));
8655 pma = isl_pw_multi_aff_reset_space(pma, space);
8656 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
8658 return data->res ? isl_stat_ok : isl_stat_error;
8661 /* Replace the range space of all the piecewise affine expressions in "upma" by
8662 * the range space of "space".
8664 * This assumes that all these expressions have the same output dimension.
8666 * Since the spaces of the expressions change, so do their hash values.
8667 * We therefore need to create a new isl_union_pw_multi_aff.
8668 * Note that the hash value is currently computed based on the entire
8669 * space even though there can only be a single expression with a given
8670 * domain space.
8672 static __isl_give isl_union_pw_multi_aff *
8673 isl_union_pw_multi_aff_reset_range_space(
8674 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_space *space)
8676 struct isl_union_pw_multi_aff_reset_range_space_data data = { space };
8677 isl_space *space_upma;
8679 space_upma = isl_union_pw_multi_aff_get_space(upma);
8680 data.res = isl_union_pw_multi_aff_empty(space_upma);
8681 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
8682 &reset_range_space, &data) < 0)
8683 data.res = isl_union_pw_multi_aff_free(data.res);
8685 isl_space_free(space);
8686 isl_union_pw_multi_aff_free(upma);
8687 return data.res;
8690 /* Construct and return a union piecewise multi affine expression
8691 * that is equal to the given multi union piecewise affine expression,
8692 * in the special case of a 0D multi union piecewise affine expression.
8694 * Construct a union piecewise multi affine expression
8695 * on top of the explicit domain of the input.
8697 __isl_give isl_union_pw_multi_aff *
8698 isl_union_pw_multi_aff_from_multi_union_pw_aff_0D(
8699 __isl_take isl_multi_union_pw_aff *mupa)
8701 isl_space *space;
8702 isl_multi_val *mv;
8703 isl_union_set *domain;
8705 space = isl_multi_union_pw_aff_get_space(mupa);
8706 mv = isl_multi_val_zero(space);
8707 domain = isl_multi_union_pw_aff_domain(mupa);
8708 return isl_union_pw_multi_aff_multi_val_on_domain(domain, mv);
8711 /* Construct and return a union piecewise multi affine expression
8712 * that is equal to the given multi union piecewise affine expression.
8714 * If the input is zero-dimensional, then
8715 * construct a union piecewise multi affine expression
8716 * on top of the explicit domain of the input.
8718 __isl_give isl_union_pw_multi_aff *
8719 isl_union_pw_multi_aff_from_multi_union_pw_aff(
8720 __isl_take isl_multi_union_pw_aff *mupa)
8722 int i;
8723 isl_size n;
8724 isl_space *space;
8725 isl_union_pw_multi_aff *upma;
8726 isl_union_pw_aff *upa;
8728 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8729 if (n < 0)
8730 mupa = isl_multi_union_pw_aff_free(mupa);
8731 if (!mupa)
8732 return NULL;
8734 if (n == 0)
8735 return isl_union_pw_multi_aff_from_multi_union_pw_aff_0D(mupa);
8737 space = isl_multi_union_pw_aff_get_space(mupa);
8738 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8739 upma = isl_union_pw_multi_aff_from_union_pw_aff(upa);
8741 for (i = 1; i < n; ++i) {
8742 isl_union_pw_multi_aff *upma_i;
8744 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8745 upma_i = isl_union_pw_multi_aff_from_union_pw_aff(upa);
8746 upma = isl_union_pw_multi_aff_flat_range_product(upma, upma_i);
8749 upma = isl_union_pw_multi_aff_reset_range_space(upma, space);
8751 isl_multi_union_pw_aff_free(mupa);
8752 return upma;
8755 /* Intersect the range of "mupa" with "range",
8756 * in the special case where "mupa" is 0D.
8758 * Intersect the domain of "mupa" with the constraints on the parameters
8759 * of "range".
8761 static __isl_give isl_multi_union_pw_aff *mupa_intersect_range_0D(
8762 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_set *range)
8764 range = isl_set_params(range);
8765 mupa = isl_multi_union_pw_aff_intersect_params(mupa, range);
8766 return mupa;
8769 /* Intersect the range of "mupa" with "range".
8770 * That is, keep only those domain elements that have a function value
8771 * in "range".
8773 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_intersect_range(
8774 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_set *range)
8776 isl_union_pw_multi_aff *upma;
8777 isl_union_set *domain;
8778 isl_space *space;
8779 isl_size n;
8780 int match;
8782 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8783 if (n < 0 || !range)
8784 goto error;
8786 space = isl_set_get_space(range);
8787 match = isl_space_tuple_is_equal(mupa->space, isl_dim_set,
8788 space, isl_dim_set);
8789 isl_space_free(space);
8790 if (match < 0)
8791 goto error;
8792 if (!match)
8793 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
8794 "space don't match", goto error);
8795 if (n == 0)
8796 return mupa_intersect_range_0D(mupa, range);
8798 upma = isl_union_pw_multi_aff_from_multi_union_pw_aff(
8799 isl_multi_union_pw_aff_copy(mupa));
8800 domain = isl_union_set_from_set(range);
8801 domain = isl_union_set_preimage_union_pw_multi_aff(domain, upma);
8802 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, domain);
8804 return mupa;
8805 error:
8806 isl_multi_union_pw_aff_free(mupa);
8807 isl_set_free(range);
8808 return NULL;
8811 /* Return the shared domain of the elements of "mupa",
8812 * in the special case where "mupa" is zero-dimensional.
8814 * Return the explicit domain of "mupa".
8815 * Note that this domain may be a parameter set, either
8816 * because "mupa" is meant to live in a set space or
8817 * because no explicit domain has been set.
8819 __isl_give isl_union_set *isl_multi_union_pw_aff_domain_0D(
8820 __isl_take isl_multi_union_pw_aff *mupa)
8822 isl_union_set *dom;
8824 dom = isl_multi_union_pw_aff_get_explicit_domain(mupa);
8825 isl_multi_union_pw_aff_free(mupa);
8827 return dom;
8830 /* Return the shared domain of the elements of "mupa".
8832 * If "mupa" is zero-dimensional, then return its explicit domain.
8834 __isl_give isl_union_set *isl_multi_union_pw_aff_domain(
8835 __isl_take isl_multi_union_pw_aff *mupa)
8837 int i;
8838 isl_size n;
8839 isl_union_pw_aff *upa;
8840 isl_union_set *dom;
8842 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
8843 if (n < 0)
8844 mupa = isl_multi_union_pw_aff_free(mupa);
8845 if (!mupa)
8846 return NULL;
8848 if (n == 0)
8849 return isl_multi_union_pw_aff_domain_0D(mupa);
8851 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
8852 dom = isl_union_pw_aff_domain(upa);
8853 for (i = 1; i < n; ++i) {
8854 isl_union_set *dom_i;
8856 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8857 dom_i = isl_union_pw_aff_domain(upa);
8858 dom = isl_union_set_intersect(dom, dom_i);
8861 isl_multi_union_pw_aff_free(mupa);
8862 return dom;
8865 /* Apply "aff" to "mupa". The space of "mupa" is equal to the domain of "aff".
8866 * In particular, the spaces have been aligned.
8867 * The result is defined over the shared domain of the elements of "mupa"
8869 * We first extract the parametric constant part of "aff" and
8870 * define that over the shared domain.
8871 * Then we iterate over all input dimensions of "aff" and add the corresponding
8872 * multiples of the elements of "mupa".
8873 * Finally, we consider the integer divisions, calling the function
8874 * recursively to obtain an isl_union_pw_aff corresponding to the
8875 * integer division argument.
8877 static __isl_give isl_union_pw_aff *multi_union_pw_aff_apply_aff(
8878 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
8880 int i;
8881 isl_size n_in, n_div;
8882 isl_union_pw_aff *upa;
8883 isl_union_set *uset;
8884 isl_val *v;
8885 isl_aff *cst;
8887 n_in = isl_aff_dim(aff, isl_dim_in);
8888 n_div = isl_aff_dim(aff, isl_dim_div);
8889 if (n_in < 0 || n_div < 0)
8890 goto error;
8892 uset = isl_multi_union_pw_aff_domain(isl_multi_union_pw_aff_copy(mupa));
8893 cst = isl_aff_copy(aff);
8894 cst = isl_aff_drop_dims(cst, isl_dim_div, 0, n_div);
8895 cst = isl_aff_drop_dims(cst, isl_dim_in, 0, n_in);
8896 cst = isl_aff_project_domain_on_params(cst);
8897 upa = isl_union_pw_aff_aff_on_domain(uset, cst);
8899 for (i = 0; i < n_in; ++i) {
8900 isl_union_pw_aff *upa_i;
8902 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
8903 continue;
8904 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
8905 upa_i = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
8906 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
8907 upa = isl_union_pw_aff_add(upa, upa_i);
8910 for (i = 0; i < n_div; ++i) {
8911 isl_aff *div;
8912 isl_union_pw_aff *upa_i;
8914 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
8915 continue;
8916 div = isl_aff_get_div(aff, i);
8917 upa_i = multi_union_pw_aff_apply_aff(
8918 isl_multi_union_pw_aff_copy(mupa), div);
8919 upa_i = isl_union_pw_aff_floor(upa_i);
8920 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
8921 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
8922 upa = isl_union_pw_aff_add(upa, upa_i);
8925 isl_multi_union_pw_aff_free(mupa);
8926 isl_aff_free(aff);
8928 return upa;
8929 error:
8930 isl_multi_union_pw_aff_free(mupa);
8931 isl_aff_free(aff);
8932 return NULL;
8935 /* Apply "aff" to "mupa". The space of "mupa" needs to be compatible
8936 * with the domain of "aff".
8937 * Furthermore, the dimension of this space needs to be greater than zero.
8938 * The result is defined over the shared domain of the elements of "mupa"
8940 * We perform these checks and then hand over control to
8941 * multi_union_pw_aff_apply_aff.
8943 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_aff(
8944 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
8946 isl_size dim;
8947 isl_space *space1, *space2;
8948 isl_bool equal;
8950 mupa = isl_multi_union_pw_aff_align_params(mupa,
8951 isl_aff_get_space(aff));
8952 aff = isl_aff_align_params(aff, isl_multi_union_pw_aff_get_space(mupa));
8953 if (!mupa || !aff)
8954 goto error;
8956 space1 = isl_multi_union_pw_aff_get_space(mupa);
8957 space2 = isl_aff_get_domain_space(aff);
8958 equal = isl_space_is_equal(space1, space2);
8959 isl_space_free(space1);
8960 isl_space_free(space2);
8961 if (equal < 0)
8962 goto error;
8963 if (!equal)
8964 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
8965 "spaces don't match", goto error);
8966 dim = isl_aff_dim(aff, isl_dim_in);
8967 if (dim < 0)
8968 goto error;
8969 if (dim == 0)
8970 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
8971 "cannot determine domains", goto error);
8973 return multi_union_pw_aff_apply_aff(mupa, aff);
8974 error:
8975 isl_multi_union_pw_aff_free(mupa);
8976 isl_aff_free(aff);
8977 return NULL;
8980 /* Apply "ma" to "mupa", in the special case where "mupa" is 0D.
8981 * The space of "mupa" is known to be compatible with the domain of "ma".
8983 * Construct an isl_multi_union_pw_aff that is equal to "ma"
8984 * on the domain of "mupa".
8986 static __isl_give isl_multi_union_pw_aff *mupa_apply_multi_aff_0D(
8987 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_multi_aff *ma)
8989 isl_union_set *dom;
8991 dom = isl_multi_union_pw_aff_domain(mupa);
8992 ma = isl_multi_aff_project_domain_on_params(ma);
8994 return isl_multi_union_pw_aff_multi_aff_on_domain(dom, ma);
8997 /* Apply "ma" to "mupa". The space of "mupa" needs to be compatible
8998 * with the domain of "ma".
8999 * The result is defined over the shared domain of the elements of "mupa"
9001 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_multi_aff(
9002 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_multi_aff *ma)
9004 isl_space *space1, *space2;
9005 isl_multi_union_pw_aff *res;
9006 isl_bool equal;
9007 int i;
9008 isl_size n_in, n_out;
9010 mupa = isl_multi_union_pw_aff_align_params(mupa,
9011 isl_multi_aff_get_space(ma));
9012 ma = isl_multi_aff_align_params(ma,
9013 isl_multi_union_pw_aff_get_space(mupa));
9014 n_in = isl_multi_aff_dim(ma, isl_dim_in);
9015 n_out = isl_multi_aff_dim(ma, isl_dim_out);
9016 if (!mupa || n_in < 0 || n_out < 0)
9017 goto error;
9019 space1 = isl_multi_union_pw_aff_get_space(mupa);
9020 space2 = isl_multi_aff_get_domain_space(ma);
9021 equal = isl_space_is_equal(space1, space2);
9022 isl_space_free(space1);
9023 isl_space_free(space2);
9024 if (equal < 0)
9025 goto error;
9026 if (!equal)
9027 isl_die(isl_multi_aff_get_ctx(ma), isl_error_invalid,
9028 "spaces don't match", goto error);
9029 if (n_in == 0)
9030 return mupa_apply_multi_aff_0D(mupa, ma);
9032 space1 = isl_space_range(isl_multi_aff_get_space(ma));
9033 res = isl_multi_union_pw_aff_alloc(space1);
9035 for (i = 0; i < n_out; ++i) {
9036 isl_aff *aff;
9037 isl_union_pw_aff *upa;
9039 aff = isl_multi_aff_get_aff(ma, i);
9040 upa = multi_union_pw_aff_apply_aff(
9041 isl_multi_union_pw_aff_copy(mupa), aff);
9042 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
9045 isl_multi_aff_free(ma);
9046 isl_multi_union_pw_aff_free(mupa);
9047 return res;
9048 error:
9049 isl_multi_union_pw_aff_free(mupa);
9050 isl_multi_aff_free(ma);
9051 return NULL;
9054 /* Apply "pa" to "mupa", in the special case where "mupa" is 0D.
9055 * The space of "mupa" is known to be compatible with the domain of "pa".
9057 * Construct an isl_multi_union_pw_aff that is equal to "pa"
9058 * on the domain of "mupa".
9060 static __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_pw_aff_0D(
9061 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_pw_aff *pa)
9063 isl_union_set *dom;
9065 dom = isl_multi_union_pw_aff_domain(mupa);
9066 pa = isl_pw_aff_project_domain_on_params(pa);
9068 return isl_union_pw_aff_pw_aff_on_domain(dom, pa);
9071 /* Apply "pa" to "mupa". The space of "mupa" needs to be compatible
9072 * with the domain of "pa".
9073 * Furthermore, the dimension of this space needs to be greater than zero.
9074 * The result is defined over the shared domain of the elements of "mupa"
9076 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_pw_aff(
9077 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_pw_aff *pa)
9079 int i;
9080 isl_bool equal;
9081 isl_size n_in;
9082 isl_space *space, *space2;
9083 isl_union_pw_aff *upa;
9085 mupa = isl_multi_union_pw_aff_align_params(mupa,
9086 isl_pw_aff_get_space(pa));
9087 pa = isl_pw_aff_align_params(pa,
9088 isl_multi_union_pw_aff_get_space(mupa));
9089 if (!mupa || !pa)
9090 goto error;
9092 space = isl_multi_union_pw_aff_get_space(mupa);
9093 space2 = isl_pw_aff_get_domain_space(pa);
9094 equal = isl_space_is_equal(space, space2);
9095 isl_space_free(space);
9096 isl_space_free(space2);
9097 if (equal < 0)
9098 goto error;
9099 if (!equal)
9100 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
9101 "spaces don't match", goto error);
9102 n_in = isl_pw_aff_dim(pa, isl_dim_in);
9103 if (n_in < 0)
9104 goto error;
9105 if (n_in == 0)
9106 return isl_multi_union_pw_aff_apply_pw_aff_0D(mupa, pa);
9108 space = isl_space_params(isl_multi_union_pw_aff_get_space(mupa));
9109 upa = isl_union_pw_aff_empty(space);
9111 for (i = 0; i < pa->n; ++i) {
9112 isl_aff *aff;
9113 isl_set *domain;
9114 isl_multi_union_pw_aff *mupa_i;
9115 isl_union_pw_aff *upa_i;
9117 mupa_i = isl_multi_union_pw_aff_copy(mupa);
9118 domain = isl_set_copy(pa->p[i].set);
9119 mupa_i = isl_multi_union_pw_aff_intersect_range(mupa_i, domain);
9120 aff = isl_aff_copy(pa->p[i].aff);
9121 upa_i = multi_union_pw_aff_apply_aff(mupa_i, aff);
9122 upa = isl_union_pw_aff_union_add(upa, upa_i);
9125 isl_multi_union_pw_aff_free(mupa);
9126 isl_pw_aff_free(pa);
9127 return upa;
9128 error:
9129 isl_multi_union_pw_aff_free(mupa);
9130 isl_pw_aff_free(pa);
9131 return NULL;
9134 /* Apply "pma" to "mupa", in the special case where "mupa" is 0D.
9135 * The space of "mupa" is known to be compatible with the domain of "pma".
9137 * Construct an isl_multi_union_pw_aff that is equal to "pma"
9138 * on the domain of "mupa".
9140 static __isl_give isl_multi_union_pw_aff *mupa_apply_pw_multi_aff_0D(
9141 __isl_take isl_multi_union_pw_aff *mupa,
9142 __isl_take isl_pw_multi_aff *pma)
9144 isl_union_set *dom;
9146 dom = isl_multi_union_pw_aff_domain(mupa);
9147 pma = isl_pw_multi_aff_project_domain_on_params(pma);
9149 return isl_multi_union_pw_aff_pw_multi_aff_on_domain(dom, pma);
9152 /* Apply "pma" to "mupa". The space of "mupa" needs to be compatible
9153 * with the domain of "pma".
9154 * The result is defined over the shared domain of the elements of "mupa"
9156 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_pw_multi_aff(
9157 __isl_take isl_multi_union_pw_aff *mupa,
9158 __isl_take isl_pw_multi_aff *pma)
9160 isl_space *space1, *space2;
9161 isl_multi_union_pw_aff *res;
9162 isl_bool equal;
9163 int i;
9164 isl_size n_in, n_out;
9166 mupa = isl_multi_union_pw_aff_align_params(mupa,
9167 isl_pw_multi_aff_get_space(pma));
9168 pma = isl_pw_multi_aff_align_params(pma,
9169 isl_multi_union_pw_aff_get_space(mupa));
9170 if (!mupa || !pma)
9171 goto error;
9173 space1 = isl_multi_union_pw_aff_get_space(mupa);
9174 space2 = isl_pw_multi_aff_get_domain_space(pma);
9175 equal = isl_space_is_equal(space1, space2);
9176 isl_space_free(space1);
9177 isl_space_free(space2);
9178 if (equal < 0)
9179 goto error;
9180 if (!equal)
9181 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
9182 "spaces don't match", goto error);
9183 n_in = isl_pw_multi_aff_dim(pma, isl_dim_in);
9184 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
9185 if (n_in < 0 || n_out < 0)
9186 goto error;
9187 if (n_in == 0)
9188 return mupa_apply_pw_multi_aff_0D(mupa, pma);
9190 space1 = isl_space_range(isl_pw_multi_aff_get_space(pma));
9191 res = isl_multi_union_pw_aff_alloc(space1);
9193 for (i = 0; i < n_out; ++i) {
9194 isl_pw_aff *pa;
9195 isl_union_pw_aff *upa;
9197 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
9198 upa = isl_multi_union_pw_aff_apply_pw_aff(
9199 isl_multi_union_pw_aff_copy(mupa), pa);
9200 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
9203 isl_pw_multi_aff_free(pma);
9204 isl_multi_union_pw_aff_free(mupa);
9205 return res;
9206 error:
9207 isl_multi_union_pw_aff_free(mupa);
9208 isl_pw_multi_aff_free(pma);
9209 return NULL;
9212 /* Replace the explicit domain of "mupa" by its preimage under "upma".
9213 * If the explicit domain only keeps track of constraints on the parameters,
9214 * then only update those constraints.
9216 static __isl_give isl_multi_union_pw_aff *preimage_explicit_domain(
9217 __isl_take isl_multi_union_pw_aff *mupa,
9218 __isl_keep isl_union_pw_multi_aff *upma)
9220 isl_bool is_params;
9222 if (isl_multi_union_pw_aff_check_has_explicit_domain(mupa) < 0)
9223 return isl_multi_union_pw_aff_free(mupa);
9225 mupa = isl_multi_union_pw_aff_cow(mupa);
9226 if (!mupa)
9227 return NULL;
9229 is_params = isl_union_set_is_params(mupa->u.dom);
9230 if (is_params < 0)
9231 return isl_multi_union_pw_aff_free(mupa);
9233 upma = isl_union_pw_multi_aff_copy(upma);
9234 if (is_params)
9235 mupa->u.dom = isl_union_set_intersect_params(mupa->u.dom,
9236 isl_union_set_params(isl_union_pw_multi_aff_domain(upma)));
9237 else
9238 mupa->u.dom = isl_union_set_preimage_union_pw_multi_aff(
9239 mupa->u.dom, upma);
9240 if (!mupa->u.dom)
9241 return isl_multi_union_pw_aff_free(mupa);
9242 return mupa;
9245 /* Compute the pullback of "mupa" by the function represented by "upma".
9246 * In other words, plug in "upma" in "mupa". The result contains
9247 * expressions defined over the domain space of "upma".
9249 * Run over all elements of "mupa" and plug in "upma" in each of them.
9251 * If "mupa" has an explicit domain, then it is this domain
9252 * that needs to undergo a pullback instead, i.e., a preimage.
9254 __isl_give isl_multi_union_pw_aff *
9255 isl_multi_union_pw_aff_pullback_union_pw_multi_aff(
9256 __isl_take isl_multi_union_pw_aff *mupa,
9257 __isl_take isl_union_pw_multi_aff *upma)
9259 int i;
9260 isl_size n;
9262 mupa = isl_multi_union_pw_aff_align_params(mupa,
9263 isl_union_pw_multi_aff_get_space(upma));
9264 upma = isl_union_pw_multi_aff_align_params(upma,
9265 isl_multi_union_pw_aff_get_space(mupa));
9266 mupa = isl_multi_union_pw_aff_cow(mupa);
9267 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9268 if (n < 0 || !upma)
9269 goto error;
9271 for (i = 0; i < n; ++i) {
9272 isl_union_pw_aff *upa;
9274 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9275 upa = isl_union_pw_aff_pullback_union_pw_multi_aff(upa,
9276 isl_union_pw_multi_aff_copy(upma));
9277 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
9280 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
9281 mupa = preimage_explicit_domain(mupa, upma);
9283 isl_union_pw_multi_aff_free(upma);
9284 return mupa;
9285 error:
9286 isl_multi_union_pw_aff_free(mupa);
9287 isl_union_pw_multi_aff_free(upma);
9288 return NULL;
9291 /* Extract the sequence of elements in "mupa" with domain space "space"
9292 * (ignoring parameters).
9294 * For the elements of "mupa" that are not defined on the specified space,
9295 * the corresponding element in the result is empty.
9297 __isl_give isl_multi_pw_aff *isl_multi_union_pw_aff_extract_multi_pw_aff(
9298 __isl_keep isl_multi_union_pw_aff *mupa, __isl_take isl_space *space)
9300 int i;
9301 isl_size n;
9302 isl_space *space_mpa;
9303 isl_multi_pw_aff *mpa;
9305 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9306 if (n < 0 || !space)
9307 goto error;
9309 space_mpa = isl_multi_union_pw_aff_get_space(mupa);
9310 space = isl_space_replace_params(space, space_mpa);
9311 space_mpa = isl_space_map_from_domain_and_range(isl_space_copy(space),
9312 space_mpa);
9313 mpa = isl_multi_pw_aff_alloc(space_mpa);
9315 space = isl_space_from_domain(space);
9316 space = isl_space_add_dims(space, isl_dim_out, 1);
9317 for (i = 0; i < n; ++i) {
9318 isl_union_pw_aff *upa;
9319 isl_pw_aff *pa;
9321 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9322 pa = isl_union_pw_aff_extract_pw_aff(upa,
9323 isl_space_copy(space));
9324 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
9325 isl_union_pw_aff_free(upa);
9328 isl_space_free(space);
9329 return mpa;
9330 error:
9331 isl_space_free(space);
9332 return NULL;
9335 /* Evaluate the affine function "aff" in the void point "pnt".
9336 * In particular, return the value NaN.
9338 static __isl_give isl_val *eval_void(__isl_take isl_aff *aff,
9339 __isl_take isl_point *pnt)
9341 isl_ctx *ctx;
9343 ctx = isl_point_get_ctx(pnt);
9344 isl_aff_free(aff);
9345 isl_point_free(pnt);
9346 return isl_val_nan(ctx);
9349 /* Evaluate the affine expression "aff"
9350 * in the coordinates (with denominator) "pnt".
9352 static __isl_give isl_val *eval(__isl_keep isl_vec *aff,
9353 __isl_keep isl_vec *pnt)
9355 isl_int n, d;
9356 isl_ctx *ctx;
9357 isl_val *v;
9359 if (!aff || !pnt)
9360 return NULL;
9362 ctx = isl_vec_get_ctx(aff);
9363 isl_int_init(n);
9364 isl_int_init(d);
9365 isl_seq_inner_product(aff->el + 1, pnt->el, pnt->size, &n);
9366 isl_int_mul(d, aff->el[0], pnt->el[0]);
9367 v = isl_val_rat_from_isl_int(ctx, n, d);
9368 v = isl_val_normalize(v);
9369 isl_int_clear(n);
9370 isl_int_clear(d);
9372 return v;
9375 /* Check that the domain space of "aff" is equal to "space".
9377 static isl_stat isl_aff_check_has_domain_space(__isl_keep isl_aff *aff,
9378 __isl_keep isl_space *space)
9380 isl_bool ok;
9382 ok = isl_space_is_equal(isl_aff_peek_domain_space(aff), space);
9383 if (ok < 0)
9384 return isl_stat_error;
9385 if (!ok)
9386 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
9387 "incompatible spaces", return isl_stat_error);
9388 return isl_stat_ok;
9391 /* Evaluate the affine function "aff" in "pnt".
9393 __isl_give isl_val *isl_aff_eval(__isl_take isl_aff *aff,
9394 __isl_take isl_point *pnt)
9396 isl_bool is_void;
9397 isl_val *v;
9398 isl_local_space *ls;
9400 if (isl_aff_check_has_domain_space(aff, isl_point_peek_space(pnt)) < 0)
9401 goto error;
9402 is_void = isl_point_is_void(pnt);
9403 if (is_void < 0)
9404 goto error;
9405 if (is_void)
9406 return eval_void(aff, pnt);
9408 ls = isl_aff_get_domain_local_space(aff);
9409 pnt = isl_local_space_lift_point(ls, pnt);
9411 v = eval(aff->v, isl_point_peek_vec(pnt));
9413 isl_aff_free(aff);
9414 isl_point_free(pnt);
9416 return v;
9417 error:
9418 isl_aff_free(aff);
9419 isl_point_free(pnt);
9420 return NULL;