add isl_local_space_wrapped_reverse
[isl.git] / isl_aff.c
blob0c17cf397f78a4c5a0bc99dee69fcfe785c60a49
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 2016 Sven Verdoolaege
7 * Copyright 2018,2020 Cerebras Systems
8 * Copyright 2021 Sven Verdoolaege
9 * Copyright 2022 Cerebras Systems
11 * Use of this software is governed by the MIT license
13 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
14 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
15 * 91893 Orsay, France
16 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
17 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
18 * B.P. 105 - 78153 Le Chesnay, France
19 * and Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA
20 * and Cerebras Systems, 1237 E Arques Ave, Sunnyvale, CA, USA
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
25 #include <isl_union_map_private.h>
26 #include <isl_aff_private.h>
27 #include <isl_space_private.h>
28 #include <isl_local_space_private.h>
29 #include <isl_vec_private.h>
30 #include <isl_mat_private.h>
31 #include <isl_id_private.h>
32 #include <isl/constraint.h>
33 #include <isl_seq.h>
34 #include <isl/set.h>
35 #include <isl_val_private.h>
36 #include <isl_point_private.h>
37 #include <isl_config.h>
39 #undef EL_BASE
40 #define EL_BASE aff
42 #include <isl_list_templ.c>
43 #include <isl_list_read_templ.c>
45 #undef EL_BASE
46 #define EL_BASE pw_aff
48 #include <isl_list_templ.c>
49 #include <isl_list_read_templ.c>
51 #undef EL_BASE
52 #define EL_BASE pw_multi_aff
54 #include <isl_list_templ.c>
55 #include <isl_list_read_templ.c>
57 #undef EL_BASE
58 #define EL_BASE union_pw_aff
60 #include <isl_list_templ.c>
61 #include <isl_list_read_templ.c>
63 #undef EL_BASE
64 #define EL_BASE union_pw_multi_aff
66 #include <isl_list_templ.c>
68 /* Construct an isl_aff from the given domain local space "ls" and
69 * coefficients "v", where the local space is known to be valid
70 * for an affine expression.
72 static __isl_give isl_aff *isl_aff_alloc_vec_validated(
73 __isl_take isl_local_space *ls, __isl_take isl_vec *v)
75 isl_aff *aff;
77 if (!ls || !v)
78 goto error;
80 aff = isl_calloc_type(v->ctx, struct isl_aff);
81 if (!aff)
82 goto error;
84 aff->ref = 1;
85 aff->ls = ls;
86 aff->v = v;
88 return aff;
89 error:
90 isl_local_space_free(ls);
91 isl_vec_free(v);
92 return NULL;
95 /* Construct an isl_aff from the given domain local space "ls" and
96 * coefficients "v".
98 * First check that "ls" is a valid domain local space
99 * for an affine expression.
101 __isl_give isl_aff *isl_aff_alloc_vec(__isl_take isl_local_space *ls,
102 __isl_take isl_vec *v)
104 isl_ctx *ctx;
106 if (!ls)
107 return NULL;
109 ctx = isl_local_space_get_ctx(ls);
110 if (!isl_local_space_divs_known(ls))
111 isl_die(ctx, isl_error_invalid, "local space has unknown divs",
112 goto error);
113 if (!isl_local_space_is_set(ls))
114 isl_die(ctx, isl_error_invalid,
115 "domain of affine expression should be a set",
116 goto error);
117 return isl_aff_alloc_vec_validated(ls, v);
118 error:
119 isl_local_space_free(ls);
120 isl_vec_free(v);
121 return NULL;
124 __isl_give isl_aff *isl_aff_alloc(__isl_take isl_local_space *ls)
126 isl_ctx *ctx;
127 isl_vec *v;
128 isl_size total;
130 if (!ls)
131 return NULL;
133 ctx = isl_local_space_get_ctx(ls);
135 total = isl_local_space_dim(ls, isl_dim_all);
136 if (total < 0)
137 goto error;
138 v = isl_vec_alloc(ctx, 1 + 1 + total);
139 return isl_aff_alloc_vec(ls, v);
140 error:
141 isl_local_space_free(ls);
142 return NULL;
145 __isl_give isl_aff *isl_aff_copy(__isl_keep isl_aff *aff)
147 if (!aff)
148 return NULL;
150 aff->ref++;
151 return aff;
154 __isl_give isl_aff *isl_aff_dup(__isl_keep isl_aff *aff)
156 if (!aff)
157 return NULL;
159 return isl_aff_alloc_vec_validated(isl_local_space_copy(aff->ls),
160 isl_vec_copy(aff->v));
163 __isl_give isl_aff *isl_aff_cow(__isl_take isl_aff *aff)
165 if (!aff)
166 return NULL;
168 if (aff->ref == 1)
169 return aff;
170 aff->ref--;
171 return isl_aff_dup(aff);
174 /* Return a copy of the rational affine expression of "aff".
176 static __isl_give isl_vec *isl_aff_get_rat_aff(__isl_keep isl_aff *aff)
178 if (!aff)
179 return NULL;
180 return isl_vec_copy(aff->v);
183 /* Return the rational affine expression of "aff".
184 * This may be either a copy or the expression itself
185 * if there is only one reference to "aff".
186 * This allows the expression to be modified inplace
187 * if both the "aff" and its expression have only a single reference.
188 * The caller is not allowed to modify "aff" between this call and
189 * a subsequent call to isl_aff_restore_rat_aff.
190 * The only exception is that isl_aff_free can be called instead.
192 static __isl_give isl_vec *isl_aff_take_rat_aff(__isl_keep isl_aff *aff)
194 isl_vec *v;
196 if (!aff)
197 return NULL;
198 if (aff->ref != 1)
199 return isl_aff_get_rat_aff(aff);
200 v = aff->v;
201 aff->v = NULL;
202 return v;
205 /* Set the rational affine expression of "aff" to "v",
206 * where the rational affine expression of "aff" may be missing
207 * due to a preceding call to isl_aff_take_rat_aff.
208 * However, in this case, "aff" only has a single reference and
209 * then the call to isl_aff_cow has no effect.
211 static __isl_give isl_aff *isl_aff_restore_rat_aff(__isl_keep isl_aff *aff,
212 __isl_take isl_vec *v)
214 if (!aff || !v)
215 goto error;
217 if (aff->v == v) {
218 isl_vec_free(v);
219 return aff;
222 aff = isl_aff_cow(aff);
223 if (!aff)
224 goto error;
225 isl_vec_free(aff->v);
226 aff->v = v;
228 return aff;
229 error:
230 isl_aff_free(aff);
231 isl_vec_free(v);
232 return NULL;
235 __isl_give isl_aff *isl_aff_zero_on_domain(__isl_take isl_local_space *ls)
237 isl_aff *aff;
239 aff = isl_aff_alloc(ls);
240 if (!aff)
241 return NULL;
243 isl_int_set_si(aff->v->el[0], 1);
244 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
246 return aff;
249 /* Return an affine expression that is equal to zero on domain space "space".
251 __isl_give isl_aff *isl_aff_zero_on_domain_space(__isl_take isl_space *space)
253 return isl_aff_zero_on_domain(isl_local_space_from_space(space));
256 /* This function performs the same operation as isl_aff_zero_on_domain_space,
257 * but is considered as a function on an isl_space when exported.
259 __isl_give isl_aff *isl_space_zero_aff_on_domain(__isl_take isl_space *space)
261 return isl_aff_zero_on_domain_space(space);
264 /* Return a piecewise affine expression defined on the specified domain
265 * that is equal to zero.
267 __isl_give isl_pw_aff *isl_pw_aff_zero_on_domain(__isl_take isl_local_space *ls)
269 return isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls));
272 /* Change "aff" into a NaN.
274 * Note that this function gets called from isl_aff_nan_on_domain,
275 * so "aff" may not have been initialized yet.
277 static __isl_give isl_aff *isl_aff_set_nan(__isl_take isl_aff *aff)
279 isl_vec *v;
281 v = isl_aff_take_rat_aff(aff);
282 v = isl_vec_clr(v);
283 aff = isl_aff_restore_rat_aff(aff, v);
285 return aff;
288 /* Return an affine expression defined on the specified domain
289 * that represents NaN.
291 __isl_give isl_aff *isl_aff_nan_on_domain(__isl_take isl_local_space *ls)
293 isl_aff *aff;
295 aff = isl_aff_alloc(ls);
296 return isl_aff_set_nan(aff);
299 /* Return an affine expression defined on the specified domain space
300 * that represents NaN.
302 __isl_give isl_aff *isl_aff_nan_on_domain_space(__isl_take isl_space *space)
304 return isl_aff_nan_on_domain(isl_local_space_from_space(space));
307 /* Return a piecewise affine expression defined on the specified domain space
308 * that represents NaN.
310 __isl_give isl_pw_aff *isl_pw_aff_nan_on_domain_space(
311 __isl_take isl_space *space)
313 return isl_pw_aff_from_aff(isl_aff_nan_on_domain_space(space));
316 /* Return a piecewise affine expression defined on the specified domain
317 * that represents NaN.
319 __isl_give isl_pw_aff *isl_pw_aff_nan_on_domain(__isl_take isl_local_space *ls)
321 return isl_pw_aff_from_aff(isl_aff_nan_on_domain(ls));
324 /* Return an affine expression that is equal to "val" on
325 * domain local space "ls".
327 * Note that the encoding for the special value NaN
328 * is the same in isl_val and isl_aff, so this does not need
329 * to be treated in any special way.
331 __isl_give isl_aff *isl_aff_val_on_domain(__isl_take isl_local_space *ls,
332 __isl_take isl_val *val)
334 isl_aff *aff;
336 if (!ls || !val)
337 goto error;
338 if (!isl_val_is_rat(val) && !isl_val_is_nan(val))
339 isl_die(isl_val_get_ctx(val), isl_error_invalid,
340 "expecting rational value or NaN", goto error);
342 aff = isl_aff_alloc(isl_local_space_copy(ls));
343 if (!aff)
344 goto error;
346 isl_seq_clr(aff->v->el + 2, aff->v->size - 2);
347 isl_int_set(aff->v->el[1], val->n);
348 isl_int_set(aff->v->el[0], val->d);
350 isl_local_space_free(ls);
351 isl_val_free(val);
352 return aff;
353 error:
354 isl_local_space_free(ls);
355 isl_val_free(val);
356 return NULL;
359 /* Return an affine expression that is equal to "val" on domain space "space".
361 __isl_give isl_aff *isl_aff_val_on_domain_space(__isl_take isl_space *space,
362 __isl_take isl_val *val)
364 return isl_aff_val_on_domain(isl_local_space_from_space(space), val);
367 /* Return an affine expression that is equal to the specified dimension
368 * in "ls".
370 __isl_give isl_aff *isl_aff_var_on_domain(__isl_take isl_local_space *ls,
371 enum isl_dim_type type, unsigned pos)
373 isl_space *space;
374 isl_aff *aff;
376 if (!ls)
377 return NULL;
379 space = isl_local_space_get_space(ls);
380 if (!space)
381 goto error;
382 if (isl_space_is_map(space))
383 isl_die(isl_space_get_ctx(space), isl_error_invalid,
384 "expecting (parameter) set space", goto error);
385 if (isl_local_space_check_range(ls, type, pos, 1) < 0)
386 goto error;
388 isl_space_free(space);
389 aff = isl_aff_alloc(ls);
390 if (!aff)
391 return NULL;
393 pos += isl_local_space_offset(aff->ls, type);
395 isl_int_set_si(aff->v->el[0], 1);
396 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
397 isl_int_set_si(aff->v->el[1 + pos], 1);
399 return aff;
400 error:
401 isl_local_space_free(ls);
402 isl_space_free(space);
403 return NULL;
406 /* Return a piecewise affine expression that is equal to
407 * the specified dimension in "ls".
409 __isl_give isl_pw_aff *isl_pw_aff_var_on_domain(__isl_take isl_local_space *ls,
410 enum isl_dim_type type, unsigned pos)
412 return isl_pw_aff_from_aff(isl_aff_var_on_domain(ls, type, pos));
415 /* Return an affine expression that is equal to the parameter
416 * in the domain space "space" with identifier "id".
418 __isl_give isl_aff *isl_aff_param_on_domain_space_id(
419 __isl_take isl_space *space, __isl_take isl_id *id)
421 int pos;
422 isl_local_space *ls;
424 if (!space || !id)
425 goto error;
426 pos = isl_space_find_dim_by_id(space, isl_dim_param, id);
427 if (pos < 0)
428 isl_die(isl_space_get_ctx(space), isl_error_invalid,
429 "parameter not found in space", goto error);
430 isl_id_free(id);
431 ls = isl_local_space_from_space(space);
432 return isl_aff_var_on_domain(ls, isl_dim_param, pos);
433 error:
434 isl_space_free(space);
435 isl_id_free(id);
436 return NULL;
439 /* This function performs the same operation as
440 * isl_aff_param_on_domain_space_id,
441 * but is considered as a function on an isl_space when exported.
443 __isl_give isl_aff *isl_space_param_aff_on_domain_id(
444 __isl_take isl_space *space, __isl_take isl_id *id)
446 return isl_aff_param_on_domain_space_id(space, id);
449 __isl_null isl_aff *isl_aff_free(__isl_take isl_aff *aff)
451 if (!aff)
452 return NULL;
454 if (--aff->ref > 0)
455 return NULL;
457 isl_local_space_free(aff->ls);
458 isl_vec_free(aff->v);
460 free(aff);
462 return NULL;
465 isl_ctx *isl_aff_get_ctx(__isl_keep isl_aff *aff)
467 return aff ? isl_local_space_get_ctx(aff->ls) : NULL;
470 /* Return a hash value that digests "aff".
472 uint32_t isl_aff_get_hash(__isl_keep isl_aff *aff)
474 uint32_t hash, ls_hash, v_hash;
476 if (!aff)
477 return 0;
479 hash = isl_hash_init();
480 ls_hash = isl_local_space_get_hash(aff->ls);
481 isl_hash_hash(hash, ls_hash);
482 v_hash = isl_vec_get_hash(aff->v);
483 isl_hash_hash(hash, v_hash);
485 return hash;
488 /* Return the domain local space of "aff".
490 static __isl_keep isl_local_space *isl_aff_peek_domain_local_space(
491 __isl_keep isl_aff *aff)
493 return aff ? aff->ls : NULL;
496 /* Return the number of variables of the given type in the domain of "aff".
498 isl_size isl_aff_domain_dim(__isl_keep isl_aff *aff, enum isl_dim_type type)
500 isl_local_space *ls;
502 ls = isl_aff_peek_domain_local_space(aff);
503 return isl_local_space_dim(ls, type);
506 /* Externally, an isl_aff has a map space, but internally, the
507 * ls field corresponds to the domain of that space.
509 isl_size isl_aff_dim(__isl_keep isl_aff *aff, enum isl_dim_type type)
511 if (!aff)
512 return isl_size_error;
513 if (type == isl_dim_out)
514 return 1;
515 if (type == isl_dim_in)
516 type = isl_dim_set;
517 return isl_aff_domain_dim(aff, type);
520 /* Return the offset of the first coefficient of type "type" in
521 * the domain of "aff".
523 isl_size isl_aff_domain_offset(__isl_keep isl_aff *aff, enum isl_dim_type type)
525 isl_local_space *ls;
527 ls = isl_aff_peek_domain_local_space(aff);
528 return isl_local_space_offset(ls, type);
531 /* Return the position of the dimension of the given type and name
532 * in "aff".
533 * Return -1 if no such dimension can be found.
535 int isl_aff_find_dim_by_name(__isl_keep isl_aff *aff, enum isl_dim_type type,
536 const char *name)
538 if (!aff)
539 return -1;
540 if (type == isl_dim_out)
541 return -1;
542 if (type == isl_dim_in)
543 type = isl_dim_set;
544 return isl_local_space_find_dim_by_name(aff->ls, type, name);
547 /* Return the domain space of "aff".
549 static __isl_keep isl_space *isl_aff_peek_domain_space(__isl_keep isl_aff *aff)
551 return aff ? isl_local_space_peek_space(aff->ls) : NULL;
554 __isl_give isl_space *isl_aff_get_domain_space(__isl_keep isl_aff *aff)
556 return isl_space_copy(isl_aff_peek_domain_space(aff));
559 __isl_give isl_space *isl_aff_get_space(__isl_keep isl_aff *aff)
561 isl_space *space;
562 if (!aff)
563 return NULL;
564 space = isl_local_space_get_space(aff->ls);
565 space = isl_space_from_domain(space);
566 space = isl_space_add_dims(space, isl_dim_out, 1);
567 return space;
570 /* Return a copy of the domain space of "aff".
572 __isl_give isl_local_space *isl_aff_get_domain_local_space(
573 __isl_keep isl_aff *aff)
575 return isl_local_space_copy(isl_aff_peek_domain_local_space(aff));
578 __isl_give isl_local_space *isl_aff_get_local_space(__isl_keep isl_aff *aff)
580 isl_local_space *ls;
581 if (!aff)
582 return NULL;
583 ls = isl_local_space_copy(aff->ls);
584 ls = isl_local_space_from_domain(ls);
585 ls = isl_local_space_add_dims(ls, isl_dim_out, 1);
586 return ls;
589 /* Return the local space of the domain of "aff".
590 * This may be either a copy or the local space itself
591 * if there is only one reference to "aff".
592 * This allows the local space to be modified inplace
593 * if both the expression and its local space have only a single reference.
594 * The caller is not allowed to modify "aff" between this call and
595 * a subsequent call to isl_aff_restore_domain_local_space.
596 * The only exception is that isl_aff_free can be called instead.
598 __isl_give isl_local_space *isl_aff_take_domain_local_space(
599 __isl_keep isl_aff *aff)
601 isl_local_space *ls;
603 if (!aff)
604 return NULL;
605 if (aff->ref != 1)
606 return isl_aff_get_domain_local_space(aff);
607 ls = aff->ls;
608 aff->ls = NULL;
609 return ls;
612 /* Set the local space of the domain of "aff" to "ls",
613 * where the local space of "aff" may be missing
614 * due to a preceding call to isl_aff_take_domain_local_space.
615 * However, in this case, "aff" only has a single reference and
616 * then the call to isl_aff_cow has no effect.
618 __isl_give isl_aff *isl_aff_restore_domain_local_space(
619 __isl_keep isl_aff *aff, __isl_take isl_local_space *ls)
621 if (!aff || !ls)
622 goto error;
624 if (aff->ls == ls) {
625 isl_local_space_free(ls);
626 return aff;
629 aff = isl_aff_cow(aff);
630 if (!aff)
631 goto error;
632 isl_local_space_free(aff->ls);
633 aff->ls = ls;
635 return aff;
636 error:
637 isl_aff_free(aff);
638 isl_local_space_free(ls);
639 return NULL;
642 /* Externally, an isl_aff has a map space, but internally, the
643 * ls field corresponds to the domain of that space.
645 const char *isl_aff_get_dim_name(__isl_keep isl_aff *aff,
646 enum isl_dim_type type, unsigned pos)
648 if (!aff)
649 return NULL;
650 if (type == isl_dim_out)
651 return NULL;
652 if (type == isl_dim_in)
653 type = isl_dim_set;
654 return isl_local_space_get_dim_name(aff->ls, type, pos);
657 __isl_give isl_aff *isl_aff_reset_domain_space(__isl_take isl_aff *aff,
658 __isl_take isl_space *space)
660 aff = isl_aff_cow(aff);
661 if (!aff || !space)
662 goto error;
664 aff->ls = isl_local_space_reset_space(aff->ls, space);
665 if (!aff->ls)
666 return isl_aff_free(aff);
668 return aff;
669 error:
670 isl_aff_free(aff);
671 isl_space_free(space);
672 return NULL;
675 /* Reset the space of "aff". This function is called from isl_pw_templ.c
676 * and doesn't know if the space of an element object is represented
677 * directly or through its domain. It therefore passes along both.
679 __isl_give isl_aff *isl_aff_reset_space_and_domain(__isl_take isl_aff *aff,
680 __isl_take isl_space *space, __isl_take isl_space *domain)
682 isl_space_free(space);
683 return isl_aff_reset_domain_space(aff, domain);
686 /* Reorder the dimensions of the domain of "aff" according
687 * to the given reordering.
689 __isl_give isl_aff *isl_aff_realign_domain(__isl_take isl_aff *aff,
690 __isl_take isl_reordering *r)
692 aff = isl_aff_cow(aff);
693 if (!aff)
694 goto error;
696 r = isl_reordering_extend(r, aff->ls->div->n_row);
697 aff->v = isl_vec_reorder(aff->v, 2, isl_reordering_copy(r));
698 aff->ls = isl_local_space_realign(aff->ls, r);
700 if (!aff->v || !aff->ls)
701 return isl_aff_free(aff);
703 return aff;
704 error:
705 isl_aff_free(aff);
706 isl_reordering_free(r);
707 return NULL;
710 __isl_give isl_aff *isl_aff_align_params(__isl_take isl_aff *aff,
711 __isl_take isl_space *model)
713 isl_space *domain_space;
714 isl_bool equal_params;
716 domain_space = isl_aff_peek_domain_space(aff);
717 equal_params = isl_space_has_equal_params(domain_space, model);
718 if (equal_params < 0)
719 goto error;
720 if (!equal_params) {
721 isl_reordering *exp;
723 exp = isl_parameter_alignment_reordering(domain_space, model);
724 aff = isl_aff_realign_domain(aff, exp);
727 isl_space_free(model);
728 return aff;
729 error:
730 isl_space_free(model);
731 isl_aff_free(aff);
732 return NULL;
735 #undef TYPE
736 #define TYPE isl_aff
737 #include "isl_unbind_params_templ.c"
739 /* Is "aff" obviously equal to zero?
741 * If the denominator is zero, then "aff" is not equal to zero.
743 isl_bool isl_aff_plain_is_zero(__isl_keep isl_aff *aff)
745 int pos;
747 if (!aff)
748 return isl_bool_error;
750 if (isl_int_is_zero(aff->v->el[0]))
751 return isl_bool_false;
752 pos = isl_seq_first_non_zero(aff->v->el + 1, aff->v->size - 1);
753 return isl_bool_ok(pos < 0);
756 /* Does "aff" represent NaN?
758 isl_bool isl_aff_is_nan(__isl_keep isl_aff *aff)
760 if (!aff)
761 return isl_bool_error;
763 return isl_bool_ok(isl_seq_first_non_zero(aff->v->el, 2) < 0);
766 /* Are "aff1" and "aff2" obviously equal?
768 * NaN is not equal to anything, not even to another NaN.
770 isl_bool isl_aff_plain_is_equal(__isl_keep isl_aff *aff1,
771 __isl_keep isl_aff *aff2)
773 isl_bool equal;
775 if (!aff1 || !aff2)
776 return isl_bool_error;
778 if (isl_aff_is_nan(aff1) || isl_aff_is_nan(aff2))
779 return isl_bool_false;
781 equal = isl_local_space_is_equal(aff1->ls, aff2->ls);
782 if (equal < 0 || !equal)
783 return equal;
785 return isl_vec_is_equal(aff1->v, aff2->v);
788 /* Return the common denominator of "aff" in "v".
790 * We cannot return anything meaningful in case of a NaN.
792 isl_stat isl_aff_get_denominator(__isl_keep isl_aff *aff, isl_int *v)
794 if (!aff)
795 return isl_stat_error;
796 if (isl_aff_is_nan(aff))
797 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
798 "cannot get denominator of NaN", return isl_stat_error);
799 isl_int_set(*v, aff->v->el[0]);
800 return isl_stat_ok;
803 /* Return the common denominator of "aff".
805 __isl_give isl_val *isl_aff_get_denominator_val(__isl_keep isl_aff *aff)
807 isl_ctx *ctx;
809 if (!aff)
810 return NULL;
812 ctx = isl_aff_get_ctx(aff);
813 if (isl_aff_is_nan(aff))
814 return isl_val_nan(ctx);
815 return isl_val_int_from_isl_int(ctx, aff->v->el[0]);
818 /* Return the constant term of "aff".
820 __isl_give isl_val *isl_aff_get_constant_val(__isl_keep isl_aff *aff)
822 isl_ctx *ctx;
823 isl_val *v;
825 if (!aff)
826 return NULL;
828 ctx = isl_aff_get_ctx(aff);
829 if (isl_aff_is_nan(aff))
830 return isl_val_nan(ctx);
831 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1], aff->v->el[0]);
832 return isl_val_normalize(v);
835 /* Return the coefficient of the variable of type "type" at position "pos"
836 * of "aff".
838 __isl_give isl_val *isl_aff_get_coefficient_val(__isl_keep isl_aff *aff,
839 enum isl_dim_type type, int pos)
841 isl_ctx *ctx;
842 isl_val *v;
844 if (!aff)
845 return NULL;
847 ctx = isl_aff_get_ctx(aff);
848 if (type == isl_dim_out)
849 isl_die(ctx, isl_error_invalid,
850 "output/set dimension does not have a coefficient",
851 return NULL);
852 if (type == isl_dim_in)
853 type = isl_dim_set;
855 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
856 return NULL;
858 if (isl_aff_is_nan(aff))
859 return isl_val_nan(ctx);
860 pos += isl_local_space_offset(aff->ls, type);
861 v = isl_val_rat_from_isl_int(ctx, aff->v->el[1 + pos], aff->v->el[0]);
862 return isl_val_normalize(v);
865 /* Return the sign of the coefficient of the variable of type "type"
866 * at position "pos" of "aff".
868 int isl_aff_coefficient_sgn(__isl_keep isl_aff *aff, enum isl_dim_type type,
869 int pos)
871 isl_ctx *ctx;
873 if (!aff)
874 return 0;
876 ctx = isl_aff_get_ctx(aff);
877 if (type == isl_dim_out)
878 isl_die(ctx, isl_error_invalid,
879 "output/set dimension does not have a coefficient",
880 return 0);
881 if (type == isl_dim_in)
882 type = isl_dim_set;
884 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
885 return 0;
887 pos += isl_local_space_offset(aff->ls, type);
888 return isl_int_sgn(aff->v->el[1 + pos]);
891 /* Replace the numerator of the constant term of "aff" by "v".
893 * A NaN is unaffected by this operation.
895 __isl_give isl_aff *isl_aff_set_constant(__isl_take isl_aff *aff, isl_int v)
897 if (!aff)
898 return NULL;
899 if (isl_aff_is_nan(aff))
900 return aff;
901 aff = isl_aff_cow(aff);
902 if (!aff)
903 return NULL;
905 aff->v = isl_vec_cow(aff->v);
906 if (!aff->v)
907 return isl_aff_free(aff);
909 isl_int_set(aff->v->el[1], v);
911 return aff;
914 /* Replace the constant term of "aff" by "v".
916 * A NaN is unaffected by this operation.
918 __isl_give isl_aff *isl_aff_set_constant_val(__isl_take isl_aff *aff,
919 __isl_take isl_val *v)
921 if (!aff || !v)
922 goto error;
924 if (isl_aff_is_nan(aff)) {
925 isl_val_free(v);
926 return aff;
929 if (!isl_val_is_rat(v))
930 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
931 "expecting rational value", goto error);
933 if (isl_int_eq(aff->v->el[1], v->n) &&
934 isl_int_eq(aff->v->el[0], v->d)) {
935 isl_val_free(v);
936 return aff;
939 aff = isl_aff_cow(aff);
940 if (!aff)
941 goto error;
942 aff->v = isl_vec_cow(aff->v);
943 if (!aff->v)
944 goto error;
946 if (isl_int_eq(aff->v->el[0], v->d)) {
947 isl_int_set(aff->v->el[1], v->n);
948 } else if (isl_int_is_one(v->d)) {
949 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
950 } else {
951 isl_seq_scale(aff->v->el + 1,
952 aff->v->el + 1, v->d, aff->v->size - 1);
953 isl_int_mul(aff->v->el[1], aff->v->el[0], v->n);
954 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
955 aff->v = isl_vec_normalize(aff->v);
956 if (!aff->v)
957 goto error;
960 isl_val_free(v);
961 return aff;
962 error:
963 isl_aff_free(aff);
964 isl_val_free(v);
965 return NULL;
968 /* Add "v" to the constant term of "aff".
970 * A NaN is unaffected by this operation.
972 __isl_give isl_aff *isl_aff_add_constant(__isl_take isl_aff *aff, isl_int v)
974 if (isl_int_is_zero(v))
975 return aff;
977 if (!aff)
978 return NULL;
979 if (isl_aff_is_nan(aff))
980 return aff;
981 aff = isl_aff_cow(aff);
982 if (!aff)
983 return NULL;
985 aff->v = isl_vec_cow(aff->v);
986 if (!aff->v)
987 return isl_aff_free(aff);
989 isl_int_addmul(aff->v->el[1], aff->v->el[0], v);
991 return aff;
994 /* Add "v" to the constant term of "aff",
995 * in case "aff" is a rational expression.
997 static __isl_give isl_aff *isl_aff_add_rat_constant_val(__isl_take isl_aff *aff,
998 __isl_take isl_val *v)
1000 aff = isl_aff_cow(aff);
1001 if (!aff)
1002 goto error;
1004 aff->v = isl_vec_cow(aff->v);
1005 if (!aff->v)
1006 goto error;
1008 if (isl_int_is_one(v->d)) {
1009 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
1010 } else if (isl_int_eq(aff->v->el[0], v->d)) {
1011 isl_int_add(aff->v->el[1], aff->v->el[1], v->n);
1012 aff->v = isl_vec_normalize(aff->v);
1013 if (!aff->v)
1014 goto error;
1015 } else {
1016 isl_seq_scale(aff->v->el + 1,
1017 aff->v->el + 1, v->d, aff->v->size - 1);
1018 isl_int_addmul(aff->v->el[1], aff->v->el[0], v->n);
1019 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1020 aff->v = isl_vec_normalize(aff->v);
1021 if (!aff->v)
1022 goto error;
1025 isl_val_free(v);
1026 return aff;
1027 error:
1028 isl_aff_free(aff);
1029 isl_val_free(v);
1030 return NULL;
1033 /* Return the first argument and free the second.
1035 static __isl_give isl_aff *pick_free(__isl_take isl_aff *aff,
1036 __isl_take isl_val *v)
1038 isl_val_free(v);
1039 return aff;
1042 /* Replace the first argument by NaN and free the second argument.
1044 static __isl_give isl_aff *set_nan_free_val(__isl_take isl_aff *aff,
1045 __isl_take isl_val *v)
1047 isl_val_free(v);
1048 return isl_aff_set_nan(aff);
1051 /* Add "v" to the constant term of "aff".
1053 * A NaN is unaffected by this operation.
1054 * Conversely, adding a NaN turns "aff" into a NaN.
1056 __isl_give isl_aff *isl_aff_add_constant_val(__isl_take isl_aff *aff,
1057 __isl_take isl_val *v)
1059 isl_bool is_nan, is_zero, is_rat;
1061 is_nan = isl_aff_is_nan(aff);
1062 is_zero = isl_val_is_zero(v);
1063 if (is_nan < 0 || is_zero < 0)
1064 goto error;
1065 if (is_nan || is_zero)
1066 return pick_free(aff, v);
1068 is_nan = isl_val_is_nan(v);
1069 is_rat = isl_val_is_rat(v);
1070 if (is_nan < 0 || is_rat < 0)
1071 goto error;
1072 if (is_nan)
1073 return set_nan_free_val(aff, v);
1074 if (!is_rat)
1075 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1076 "expecting rational value or NaN", goto error);
1078 return isl_aff_add_rat_constant_val(aff, v);
1079 error:
1080 isl_aff_free(aff);
1081 isl_val_free(v);
1082 return NULL;
1085 __isl_give isl_aff *isl_aff_add_constant_si(__isl_take isl_aff *aff, int v)
1087 isl_int t;
1089 isl_int_init(t);
1090 isl_int_set_si(t, v);
1091 aff = isl_aff_add_constant(aff, t);
1092 isl_int_clear(t);
1094 return aff;
1097 /* Add "v" to the numerator of the constant term of "aff".
1099 * A NaN is unaffected by this operation.
1101 __isl_give isl_aff *isl_aff_add_constant_num(__isl_take isl_aff *aff, isl_int v)
1103 if (isl_int_is_zero(v))
1104 return aff;
1106 if (!aff)
1107 return NULL;
1108 if (isl_aff_is_nan(aff))
1109 return aff;
1110 aff = isl_aff_cow(aff);
1111 if (!aff)
1112 return NULL;
1114 aff->v = isl_vec_cow(aff->v);
1115 if (!aff->v)
1116 return isl_aff_free(aff);
1118 isl_int_add(aff->v->el[1], aff->v->el[1], v);
1120 return aff;
1123 /* Add "v" to the numerator of the constant term of "aff".
1125 * A NaN is unaffected by this operation.
1127 __isl_give isl_aff *isl_aff_add_constant_num_si(__isl_take isl_aff *aff, int v)
1129 isl_int t;
1131 if (v == 0)
1132 return aff;
1134 isl_int_init(t);
1135 isl_int_set_si(t, v);
1136 aff = isl_aff_add_constant_num(aff, t);
1137 isl_int_clear(t);
1139 return aff;
1142 /* Replace the numerator of the constant term of "aff" by "v".
1144 * A NaN is unaffected by this operation.
1146 __isl_give isl_aff *isl_aff_set_constant_si(__isl_take isl_aff *aff, int v)
1148 if (!aff)
1149 return NULL;
1150 if (isl_aff_is_nan(aff))
1151 return aff;
1152 aff = isl_aff_cow(aff);
1153 if (!aff)
1154 return NULL;
1156 aff->v = isl_vec_cow(aff->v);
1157 if (!aff->v)
1158 return isl_aff_free(aff);
1160 isl_int_set_si(aff->v->el[1], v);
1162 return aff;
1165 /* Replace the numerator of the coefficient of the variable of type "type"
1166 * at position "pos" of "aff" by "v".
1168 * A NaN is unaffected by this operation.
1170 __isl_give isl_aff *isl_aff_set_coefficient(__isl_take isl_aff *aff,
1171 enum isl_dim_type type, int pos, isl_int v)
1173 if (!aff)
1174 return NULL;
1176 if (type == isl_dim_out)
1177 isl_die(aff->v->ctx, isl_error_invalid,
1178 "output/set dimension does not have a coefficient",
1179 return isl_aff_free(aff));
1180 if (type == isl_dim_in)
1181 type = isl_dim_set;
1183 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1184 return isl_aff_free(aff);
1186 if (isl_aff_is_nan(aff))
1187 return aff;
1188 aff = isl_aff_cow(aff);
1189 if (!aff)
1190 return NULL;
1192 aff->v = isl_vec_cow(aff->v);
1193 if (!aff->v)
1194 return isl_aff_free(aff);
1196 pos += isl_local_space_offset(aff->ls, type);
1197 isl_int_set(aff->v->el[1 + pos], v);
1199 return aff;
1202 /* Replace the numerator of the coefficient of the variable of type "type"
1203 * at position "pos" of "aff" by "v".
1205 * A NaN is unaffected by this operation.
1207 __isl_give isl_aff *isl_aff_set_coefficient_si(__isl_take isl_aff *aff,
1208 enum isl_dim_type type, int pos, int v)
1210 if (!aff)
1211 return NULL;
1213 if (type == isl_dim_out)
1214 isl_die(aff->v->ctx, isl_error_invalid,
1215 "output/set dimension does not have a coefficient",
1216 return isl_aff_free(aff));
1217 if (type == isl_dim_in)
1218 type = isl_dim_set;
1220 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1221 return isl_aff_free(aff);
1223 if (isl_aff_is_nan(aff))
1224 return aff;
1225 pos += isl_local_space_offset(aff->ls, type);
1226 if (isl_int_cmp_si(aff->v->el[1 + pos], v) == 0)
1227 return aff;
1229 aff = isl_aff_cow(aff);
1230 if (!aff)
1231 return NULL;
1233 aff->v = isl_vec_cow(aff->v);
1234 if (!aff->v)
1235 return isl_aff_free(aff);
1237 isl_int_set_si(aff->v->el[1 + pos], v);
1239 return aff;
1242 /* Replace the coefficient of the variable of type "type" at position "pos"
1243 * of "aff" by "v".
1245 * A NaN is unaffected by this operation.
1247 __isl_give isl_aff *isl_aff_set_coefficient_val(__isl_take isl_aff *aff,
1248 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1250 if (!aff || !v)
1251 goto error;
1253 if (type == isl_dim_out)
1254 isl_die(aff->v->ctx, isl_error_invalid,
1255 "output/set dimension does not have a coefficient",
1256 goto error);
1257 if (type == isl_dim_in)
1258 type = isl_dim_set;
1260 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1261 return isl_aff_free(aff);
1263 if (isl_aff_is_nan(aff)) {
1264 isl_val_free(v);
1265 return aff;
1267 if (!isl_val_is_rat(v))
1268 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1269 "expecting rational value", goto error);
1271 pos += isl_local_space_offset(aff->ls, type);
1272 if (isl_int_eq(aff->v->el[1 + pos], v->n) &&
1273 isl_int_eq(aff->v->el[0], v->d)) {
1274 isl_val_free(v);
1275 return aff;
1278 aff = isl_aff_cow(aff);
1279 if (!aff)
1280 goto error;
1281 aff->v = isl_vec_cow(aff->v);
1282 if (!aff->v)
1283 goto error;
1285 if (isl_int_eq(aff->v->el[0], v->d)) {
1286 isl_int_set(aff->v->el[1 + pos], v->n);
1287 } else if (isl_int_is_one(v->d)) {
1288 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1289 } else {
1290 isl_seq_scale(aff->v->el + 1,
1291 aff->v->el + 1, v->d, aff->v->size - 1);
1292 isl_int_mul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1293 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1294 aff->v = isl_vec_normalize(aff->v);
1295 if (!aff->v)
1296 goto error;
1299 isl_val_free(v);
1300 return aff;
1301 error:
1302 isl_aff_free(aff);
1303 isl_val_free(v);
1304 return NULL;
1307 /* Add "v" to the coefficient of the variable of type "type"
1308 * at position "pos" of "aff".
1310 * A NaN is unaffected by this operation.
1312 __isl_give isl_aff *isl_aff_add_coefficient(__isl_take isl_aff *aff,
1313 enum isl_dim_type type, int pos, isl_int v)
1315 if (!aff)
1316 return NULL;
1318 if (type == isl_dim_out)
1319 isl_die(aff->v->ctx, isl_error_invalid,
1320 "output/set dimension does not have a coefficient",
1321 return isl_aff_free(aff));
1322 if (type == isl_dim_in)
1323 type = isl_dim_set;
1325 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1326 return isl_aff_free(aff);
1328 if (isl_aff_is_nan(aff))
1329 return aff;
1330 aff = isl_aff_cow(aff);
1331 if (!aff)
1332 return NULL;
1334 aff->v = isl_vec_cow(aff->v);
1335 if (!aff->v)
1336 return isl_aff_free(aff);
1338 pos += isl_local_space_offset(aff->ls, type);
1339 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v);
1341 return aff;
1344 /* Add "v" to the coefficient of the variable of type "type"
1345 * at position "pos" of "aff".
1347 * A NaN is unaffected by this operation.
1349 __isl_give isl_aff *isl_aff_add_coefficient_val(__isl_take isl_aff *aff,
1350 enum isl_dim_type type, int pos, __isl_take isl_val *v)
1352 if (!aff || !v)
1353 goto error;
1355 if (isl_val_is_zero(v)) {
1356 isl_val_free(v);
1357 return aff;
1360 if (type == isl_dim_out)
1361 isl_die(aff->v->ctx, isl_error_invalid,
1362 "output/set dimension does not have a coefficient",
1363 goto error);
1364 if (type == isl_dim_in)
1365 type = isl_dim_set;
1367 if (isl_local_space_check_range(aff->ls, type, pos, 1) < 0)
1368 goto error;
1370 if (isl_aff_is_nan(aff)) {
1371 isl_val_free(v);
1372 return aff;
1374 if (!isl_val_is_rat(v))
1375 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
1376 "expecting rational value", goto error);
1378 aff = isl_aff_cow(aff);
1379 if (!aff)
1380 goto error;
1382 aff->v = isl_vec_cow(aff->v);
1383 if (!aff->v)
1384 goto error;
1386 pos += isl_local_space_offset(aff->ls, type);
1387 if (isl_int_is_one(v->d)) {
1388 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1389 } else if (isl_int_eq(aff->v->el[0], v->d)) {
1390 isl_int_add(aff->v->el[1 + pos], aff->v->el[1 + pos], v->n);
1391 aff->v = isl_vec_normalize(aff->v);
1392 if (!aff->v)
1393 goto error;
1394 } else {
1395 isl_seq_scale(aff->v->el + 1,
1396 aff->v->el + 1, v->d, aff->v->size - 1);
1397 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v->n);
1398 isl_int_mul(aff->v->el[0], aff->v->el[0], v->d);
1399 aff->v = isl_vec_normalize(aff->v);
1400 if (!aff->v)
1401 goto error;
1404 isl_val_free(v);
1405 return aff;
1406 error:
1407 isl_aff_free(aff);
1408 isl_val_free(v);
1409 return NULL;
1412 __isl_give isl_aff *isl_aff_add_coefficient_si(__isl_take isl_aff *aff,
1413 enum isl_dim_type type, int pos, int v)
1415 isl_int t;
1417 isl_int_init(t);
1418 isl_int_set_si(t, v);
1419 aff = isl_aff_add_coefficient(aff, type, pos, t);
1420 isl_int_clear(t);
1422 return aff;
1425 __isl_give isl_aff *isl_aff_get_div(__isl_keep isl_aff *aff, int pos)
1427 if (!aff)
1428 return NULL;
1430 return isl_local_space_get_div(aff->ls, pos);
1433 /* Return the negation of "aff".
1435 * As a special case, -NaN = NaN.
1437 __isl_give isl_aff *isl_aff_neg(__isl_take isl_aff *aff)
1439 if (!aff)
1440 return NULL;
1441 if (isl_aff_is_nan(aff))
1442 return aff;
1443 aff = isl_aff_cow(aff);
1444 if (!aff)
1445 return NULL;
1446 aff->v = isl_vec_cow(aff->v);
1447 if (!aff->v)
1448 return isl_aff_free(aff);
1450 isl_seq_neg(aff->v->el + 1, aff->v->el + 1, aff->v->size - 1);
1452 return aff;
1455 /* Remove divs from the local space that do not appear in the affine
1456 * expression.
1457 * We currently only remove divs at the end.
1458 * Some intermediate divs may also not appear directly in the affine
1459 * expression, but we would also need to check that no other divs are
1460 * defined in terms of them.
1462 __isl_give isl_aff *isl_aff_remove_unused_divs(__isl_take isl_aff *aff)
1464 int pos;
1465 isl_size off;
1466 isl_size n;
1468 n = isl_aff_domain_dim(aff, isl_dim_div);
1469 off = isl_aff_domain_offset(aff, isl_dim_div);
1470 if (n < 0 || off < 0)
1471 return isl_aff_free(aff);
1473 pos = isl_seq_last_non_zero(aff->v->el + 1 + off, n) + 1;
1474 if (pos == n)
1475 return aff;
1477 aff = isl_aff_cow(aff);
1478 if (!aff)
1479 return NULL;
1481 aff->ls = isl_local_space_drop_dims(aff->ls, isl_dim_div, pos, n - pos);
1482 aff->v = isl_vec_drop_els(aff->v, 1 + off + pos, n - pos);
1483 if (!aff->ls || !aff->v)
1484 return isl_aff_free(aff);
1486 return aff;
1489 /* Look for any divs in the aff->ls with a denominator equal to one
1490 * and plug them into the affine expression and any subsequent divs
1491 * that may reference the div.
1493 static __isl_give isl_aff *plug_in_integral_divs(__isl_take isl_aff *aff)
1495 int i;
1496 isl_size n;
1497 int len;
1498 isl_int v;
1499 isl_vec *vec;
1500 isl_local_space *ls;
1501 isl_size off;
1503 n = isl_aff_domain_dim(aff, isl_dim_div);
1504 off = isl_aff_domain_offset(aff, isl_dim_div);
1505 if (n < 0 || off < 0)
1506 return isl_aff_free(aff);
1507 len = aff->v->size;
1508 for (i = 0; i < n; ++i) {
1509 if (!isl_int_is_one(aff->ls->div->row[i][0]))
1510 continue;
1511 ls = isl_local_space_copy(aff->ls);
1512 ls = isl_local_space_substitute_seq(ls, isl_dim_div, i,
1513 aff->ls->div->row[i], len, i + 1, n - (i + 1));
1514 vec = isl_vec_copy(aff->v);
1515 vec = isl_vec_cow(vec);
1516 if (!ls || !vec)
1517 goto error;
1519 isl_int_init(v);
1521 isl_seq_substitute(vec->el, off + i, aff->ls->div->row[i],
1522 len, len, v);
1524 isl_int_clear(v);
1526 isl_vec_free(aff->v);
1527 aff->v = vec;
1528 isl_local_space_free(aff->ls);
1529 aff->ls = ls;
1532 return aff;
1533 error:
1534 isl_vec_free(vec);
1535 isl_local_space_free(ls);
1536 return isl_aff_free(aff);
1539 /* Look for any divs j that appear with a unit coefficient inside
1540 * the definitions of other divs i and plug them into the definitions
1541 * of the divs i.
1543 * In particular, an expression of the form
1545 * floor((f(..) + floor(g(..)/n))/m)
1547 * is simplified to
1549 * floor((n * f(..) + g(..))/(n * m))
1551 * This simplification is correct because we can move the expression
1552 * f(..) into the inner floor in the original expression to obtain
1554 * floor(floor((n * f(..) + g(..))/n)/m)
1556 * from which we can derive the simplified expression.
1558 static __isl_give isl_aff *plug_in_unit_divs(__isl_take isl_aff *aff)
1560 int i, j;
1561 isl_size n;
1562 isl_size off;
1564 n = isl_aff_domain_dim(aff, isl_dim_div);
1565 off = isl_aff_domain_offset(aff, isl_dim_div);
1566 if (n < 0 || off < 0)
1567 return isl_aff_free(aff);
1568 for (i = 1; i < n; ++i) {
1569 for (j = 0; j < i; ++j) {
1570 if (!isl_int_is_one(aff->ls->div->row[i][1 + off + j]))
1571 continue;
1572 aff->ls = isl_local_space_substitute_seq(aff->ls,
1573 isl_dim_div, j, aff->ls->div->row[j],
1574 aff->v->size, i, 1);
1575 if (!aff->ls)
1576 return isl_aff_free(aff);
1580 return aff;
1583 /* Swap divs "a" and "b" in "aff", which is assumed to be non-NULL.
1585 * Even though this function is only called on isl_affs with a single
1586 * reference, we are careful to only change aff->v and aff->ls together.
1588 static __isl_give isl_aff *swap_div(__isl_take isl_aff *aff, int a, int b)
1590 isl_size off = isl_aff_domain_offset(aff, isl_dim_div);
1591 isl_local_space *ls;
1592 isl_vec *v;
1594 if (off < 0)
1595 return isl_aff_free(aff);
1597 ls = isl_local_space_copy(aff->ls);
1598 ls = isl_local_space_swap_div(ls, a, b);
1599 v = isl_vec_copy(aff->v);
1600 v = isl_vec_cow(v);
1601 if (!ls || !v)
1602 goto error;
1604 isl_int_swap(v->el[1 + off + a], v->el[1 + off + b]);
1605 isl_vec_free(aff->v);
1606 aff->v = v;
1607 isl_local_space_free(aff->ls);
1608 aff->ls = ls;
1610 return aff;
1611 error:
1612 isl_vec_free(v);
1613 isl_local_space_free(ls);
1614 return isl_aff_free(aff);
1617 /* Merge divs "a" and "b" in "aff", which is assumed to be non-NULL.
1619 * We currently do not actually remove div "b", but simply add its
1620 * coefficient to that of "a" and then zero it out.
1622 static __isl_give isl_aff *merge_divs(__isl_take isl_aff *aff, int a, int b)
1624 isl_size off = isl_aff_domain_offset(aff, isl_dim_div);
1626 if (off < 0)
1627 return isl_aff_free(aff);
1629 if (isl_int_is_zero(aff->v->el[1 + off + b]))
1630 return aff;
1632 aff->v = isl_vec_cow(aff->v);
1633 if (!aff->v)
1634 return isl_aff_free(aff);
1636 isl_int_add(aff->v->el[1 + off + a],
1637 aff->v->el[1 + off + a], aff->v->el[1 + off + b]);
1638 isl_int_set_si(aff->v->el[1 + off + b], 0);
1640 return aff;
1643 /* Sort the divs in the local space of "aff" according to
1644 * the comparison function "cmp_row" in isl_local_space.c,
1645 * combining the coefficients of identical divs.
1647 * Reordering divs does not change the semantics of "aff",
1648 * so there is no need to call isl_aff_cow.
1649 * Moreover, this function is currently only called on isl_affs
1650 * with a single reference.
1652 static __isl_give isl_aff *sort_divs(__isl_take isl_aff *aff)
1654 isl_size n;
1655 int i, j;
1657 n = isl_aff_dim(aff, isl_dim_div);
1658 if (n < 0)
1659 return isl_aff_free(aff);
1660 for (i = 1; i < n; ++i) {
1661 for (j = i - 1; j >= 0; --j) {
1662 int cmp = isl_mat_cmp_div(aff->ls->div, j, j + 1);
1663 if (cmp < 0)
1664 break;
1665 if (cmp == 0)
1666 aff = merge_divs(aff, j, j + 1);
1667 else
1668 aff = swap_div(aff, j, j + 1);
1669 if (!aff)
1670 return NULL;
1674 return aff;
1677 /* Normalize the representation of "aff".
1679 * This function should only be called on "new" isl_affs, i.e.,
1680 * with only a single reference. We therefore do not need to
1681 * worry about affecting other instances.
1683 __isl_give isl_aff *isl_aff_normalize(__isl_take isl_aff *aff)
1685 if (!aff)
1686 return NULL;
1687 aff->v = isl_vec_normalize(aff->v);
1688 if (!aff->v)
1689 return isl_aff_free(aff);
1690 aff = plug_in_integral_divs(aff);
1691 aff = plug_in_unit_divs(aff);
1692 aff = sort_divs(aff);
1693 aff = isl_aff_remove_unused_divs(aff);
1694 return aff;
1697 /* Given f, return floor(f).
1698 * If f is an integer expression, then just return f.
1699 * If f is a constant, then return the constant floor(f).
1700 * Otherwise, if f = g/m, write g = q m + r,
1701 * create a new div d = [r/m] and return the expression q + d.
1702 * The coefficients in r are taken to lie between -m/2 and m/2.
1704 * reduce_div_coefficients performs the same normalization.
1706 * As a special case, floor(NaN) = NaN.
1708 __isl_give isl_aff *isl_aff_floor(__isl_take isl_aff *aff)
1710 int i;
1711 int size;
1712 isl_ctx *ctx;
1713 isl_vec *div;
1715 if (!aff)
1716 return NULL;
1718 if (isl_aff_is_nan(aff))
1719 return aff;
1720 if (isl_int_is_one(aff->v->el[0]))
1721 return aff;
1723 aff = isl_aff_cow(aff);
1724 if (!aff)
1725 return NULL;
1727 aff->v = isl_vec_cow(aff->v);
1728 if (!aff->v)
1729 return isl_aff_free(aff);
1731 if (isl_aff_is_cst(aff)) {
1732 isl_int_fdiv_q(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1733 isl_int_set_si(aff->v->el[0], 1);
1734 return aff;
1737 div = isl_vec_copy(aff->v);
1738 div = isl_vec_cow(div);
1739 if (!div)
1740 return isl_aff_free(aff);
1742 ctx = isl_aff_get_ctx(aff);
1743 isl_int_fdiv_q(aff->v->el[0], aff->v->el[0], ctx->two);
1744 for (i = 1; i < aff->v->size; ++i) {
1745 isl_int_fdiv_r(div->el[i], div->el[i], div->el[0]);
1746 isl_int_fdiv_q(aff->v->el[i], aff->v->el[i], div->el[0]);
1747 if (isl_int_gt(div->el[i], aff->v->el[0])) {
1748 isl_int_sub(div->el[i], div->el[i], div->el[0]);
1749 isl_int_add_ui(aff->v->el[i], aff->v->el[i], 1);
1753 aff->ls = isl_local_space_add_div(aff->ls, div);
1754 if (!aff->ls)
1755 return isl_aff_free(aff);
1757 size = aff->v->size;
1758 aff->v = isl_vec_extend(aff->v, size + 1);
1759 if (!aff->v)
1760 return isl_aff_free(aff);
1761 isl_int_set_si(aff->v->el[0], 1);
1762 isl_int_set_si(aff->v->el[size], 1);
1764 aff = isl_aff_normalize(aff);
1766 return aff;
1769 /* Compute
1771 * aff mod m = aff - m * floor(aff/m)
1773 * with m an integer value.
1775 __isl_give isl_aff *isl_aff_mod_val(__isl_take isl_aff *aff,
1776 __isl_take isl_val *m)
1778 isl_aff *res;
1780 if (!aff || !m)
1781 goto error;
1783 if (!isl_val_is_int(m))
1784 isl_die(isl_val_get_ctx(m), isl_error_invalid,
1785 "expecting integer modulo", goto error);
1787 res = isl_aff_copy(aff);
1788 aff = isl_aff_scale_down_val(aff, isl_val_copy(m));
1789 aff = isl_aff_floor(aff);
1790 aff = isl_aff_scale_val(aff, m);
1791 res = isl_aff_sub(res, aff);
1793 return res;
1794 error:
1795 isl_aff_free(aff);
1796 isl_val_free(m);
1797 return NULL;
1800 /* Compute
1802 * pwaff mod m = pwaff - m * floor(pwaff/m)
1804 __isl_give isl_pw_aff *isl_pw_aff_mod(__isl_take isl_pw_aff *pwaff, isl_int m)
1806 isl_pw_aff *res;
1808 res = isl_pw_aff_copy(pwaff);
1809 pwaff = isl_pw_aff_scale_down(pwaff, m);
1810 pwaff = isl_pw_aff_floor(pwaff);
1811 pwaff = isl_pw_aff_scale(pwaff, m);
1812 res = isl_pw_aff_sub(res, pwaff);
1814 return res;
1817 /* Compute
1819 * pa mod m = pa - m * floor(pa/m)
1821 * with m an integer value.
1823 __isl_give isl_pw_aff *isl_pw_aff_mod_val(__isl_take isl_pw_aff *pa,
1824 __isl_take isl_val *m)
1826 if (!pa || !m)
1827 goto error;
1828 if (!isl_val_is_int(m))
1829 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
1830 "expecting integer modulo", goto error);
1831 pa = isl_pw_aff_mod(pa, m->n);
1832 isl_val_free(m);
1833 return pa;
1834 error:
1835 isl_pw_aff_free(pa);
1836 isl_val_free(m);
1837 return NULL;
1840 /* Given f, return ceil(f).
1841 * If f is an integer expression, then just return f.
1842 * Otherwise, let f be the expression
1844 * e/m
1846 * then return
1848 * floor((e + m - 1)/m)
1850 * As a special case, ceil(NaN) = NaN.
1852 __isl_give isl_aff *isl_aff_ceil(__isl_take isl_aff *aff)
1854 if (!aff)
1855 return NULL;
1857 if (isl_aff_is_nan(aff))
1858 return aff;
1859 if (isl_int_is_one(aff->v->el[0]))
1860 return aff;
1862 aff = isl_aff_cow(aff);
1863 if (!aff)
1864 return NULL;
1865 aff->v = isl_vec_cow(aff->v);
1866 if (!aff->v)
1867 return isl_aff_free(aff);
1869 isl_int_add(aff->v->el[1], aff->v->el[1], aff->v->el[0]);
1870 isl_int_sub_ui(aff->v->el[1], aff->v->el[1], 1);
1871 aff = isl_aff_floor(aff);
1873 return aff;
1876 /* Apply the expansion computed by isl_merge_divs.
1877 * The expansion itself is given by "exp" while the resulting
1878 * list of divs is given by "div".
1880 __isl_give isl_aff *isl_aff_expand_divs(__isl_take isl_aff *aff,
1881 __isl_take isl_mat *div, int *exp)
1883 isl_size old_n_div;
1884 isl_size new_n_div;
1885 isl_size offset;
1887 aff = isl_aff_cow(aff);
1889 offset = isl_aff_domain_offset(aff, isl_dim_div);
1890 old_n_div = isl_aff_domain_dim(aff, isl_dim_div);
1891 new_n_div = isl_mat_rows(div);
1892 if (offset < 0 || old_n_div < 0 || new_n_div < 0)
1893 goto error;
1895 aff->v = isl_vec_expand(aff->v, 1 + offset, old_n_div, exp, new_n_div);
1896 aff->ls = isl_local_space_replace_divs(aff->ls, div);
1897 if (!aff->v || !aff->ls)
1898 return isl_aff_free(aff);
1899 return aff;
1900 error:
1901 isl_aff_free(aff);
1902 isl_mat_free(div);
1903 return NULL;
1906 /* Add two affine expressions that live in the same local space.
1908 static __isl_give isl_aff *add_expanded(__isl_take isl_aff *aff1,
1909 __isl_take isl_aff *aff2)
1911 isl_int gcd, f;
1913 aff1 = isl_aff_cow(aff1);
1914 if (!aff1 || !aff2)
1915 goto error;
1917 aff1->v = isl_vec_cow(aff1->v);
1918 if (!aff1->v)
1919 goto error;
1921 isl_int_init(gcd);
1922 isl_int_init(f);
1923 isl_int_gcd(gcd, aff1->v->el[0], aff2->v->el[0]);
1924 isl_int_divexact(f, aff2->v->el[0], gcd);
1925 isl_seq_scale(aff1->v->el + 1, aff1->v->el + 1, f, aff1->v->size - 1);
1926 isl_int_divexact(f, aff1->v->el[0], gcd);
1927 isl_seq_addmul(aff1->v->el + 1, f, aff2->v->el + 1, aff1->v->size - 1);
1928 isl_int_divexact(f, aff2->v->el[0], gcd);
1929 isl_int_mul(aff1->v->el[0], aff1->v->el[0], f);
1930 isl_int_clear(f);
1931 isl_int_clear(gcd);
1933 isl_aff_free(aff2);
1934 aff1 = isl_aff_normalize(aff1);
1935 return aff1;
1936 error:
1937 isl_aff_free(aff1);
1938 isl_aff_free(aff2);
1939 return NULL;
1942 /* Replace one of the arguments by a NaN and free the other one.
1944 static __isl_give isl_aff *set_nan_free(__isl_take isl_aff *aff1,
1945 __isl_take isl_aff *aff2)
1947 isl_aff_free(aff2);
1948 return isl_aff_set_nan(aff1);
1951 /* Return the sum of "aff1" and "aff2".
1953 * If either of the two is NaN, then the result is NaN.
1955 __isl_give isl_aff *isl_aff_add(__isl_take isl_aff *aff1,
1956 __isl_take isl_aff *aff2)
1958 isl_ctx *ctx;
1959 int *exp1 = NULL;
1960 int *exp2 = NULL;
1961 isl_mat *div;
1962 isl_size n_div1, n_div2;
1964 if (!aff1 || !aff2)
1965 goto error;
1967 ctx = isl_aff_get_ctx(aff1);
1968 if (!isl_space_is_equal(aff1->ls->dim, aff2->ls->dim))
1969 isl_die(ctx, isl_error_invalid,
1970 "spaces don't match", goto error);
1972 if (isl_aff_is_nan(aff1)) {
1973 isl_aff_free(aff2);
1974 return aff1;
1976 if (isl_aff_is_nan(aff2)) {
1977 isl_aff_free(aff1);
1978 return aff2;
1981 n_div1 = isl_aff_dim(aff1, isl_dim_div);
1982 n_div2 = isl_aff_dim(aff2, isl_dim_div);
1983 if (n_div1 < 0 || n_div2 < 0)
1984 goto error;
1985 if (n_div1 == 0 && n_div2 == 0)
1986 return add_expanded(aff1, aff2);
1988 exp1 = isl_alloc_array(ctx, int, n_div1);
1989 exp2 = isl_alloc_array(ctx, int, n_div2);
1990 if ((n_div1 && !exp1) || (n_div2 && !exp2))
1991 goto error;
1993 div = isl_merge_divs(aff1->ls->div, aff2->ls->div, exp1, exp2);
1994 aff1 = isl_aff_expand_divs(aff1, isl_mat_copy(div), exp1);
1995 aff2 = isl_aff_expand_divs(aff2, div, exp2);
1996 free(exp1);
1997 free(exp2);
1999 return add_expanded(aff1, aff2);
2000 error:
2001 free(exp1);
2002 free(exp2);
2003 isl_aff_free(aff1);
2004 isl_aff_free(aff2);
2005 return NULL;
2008 __isl_give isl_aff *isl_aff_sub(__isl_take isl_aff *aff1,
2009 __isl_take isl_aff *aff2)
2011 return isl_aff_add(aff1, isl_aff_neg(aff2));
2014 /* Return the result of scaling "aff" by a factor of "f".
2016 * As a special case, f * NaN = NaN.
2018 __isl_give isl_aff *isl_aff_scale(__isl_take isl_aff *aff, isl_int f)
2020 isl_int gcd;
2022 if (!aff)
2023 return NULL;
2024 if (isl_aff_is_nan(aff))
2025 return aff;
2027 if (isl_int_is_one(f))
2028 return aff;
2030 aff = isl_aff_cow(aff);
2031 if (!aff)
2032 return NULL;
2033 aff->v = isl_vec_cow(aff->v);
2034 if (!aff->v)
2035 return isl_aff_free(aff);
2037 if (isl_int_is_pos(f) && isl_int_is_divisible_by(aff->v->el[0], f)) {
2038 isl_int_divexact(aff->v->el[0], aff->v->el[0], f);
2039 return aff;
2042 isl_int_init(gcd);
2043 isl_int_gcd(gcd, aff->v->el[0], f);
2044 isl_int_divexact(aff->v->el[0], aff->v->el[0], gcd);
2045 isl_int_divexact(gcd, f, gcd);
2046 isl_seq_scale(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
2047 isl_int_clear(gcd);
2049 return aff;
2052 /* Multiple "aff" by "v".
2054 __isl_give isl_aff *isl_aff_scale_val(__isl_take isl_aff *aff,
2055 __isl_take isl_val *v)
2057 if (!aff || !v)
2058 goto error;
2060 if (isl_val_is_one(v)) {
2061 isl_val_free(v);
2062 return aff;
2065 if (!isl_val_is_rat(v))
2066 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2067 "expecting rational factor", goto error);
2069 aff = isl_aff_scale(aff, v->n);
2070 aff = isl_aff_scale_down(aff, v->d);
2072 isl_val_free(v);
2073 return aff;
2074 error:
2075 isl_aff_free(aff);
2076 isl_val_free(v);
2077 return NULL;
2080 /* Return the result of scaling "aff" down by a factor of "f".
2082 * As a special case, NaN/f = NaN.
2084 __isl_give isl_aff *isl_aff_scale_down(__isl_take isl_aff *aff, isl_int f)
2086 isl_int gcd;
2088 if (!aff)
2089 return NULL;
2090 if (isl_aff_is_nan(aff))
2091 return aff;
2093 if (isl_int_is_one(f))
2094 return aff;
2096 aff = isl_aff_cow(aff);
2097 if (!aff)
2098 return NULL;
2100 if (isl_int_is_zero(f))
2101 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2102 "cannot scale down by zero", return isl_aff_free(aff));
2104 aff->v = isl_vec_cow(aff->v);
2105 if (!aff->v)
2106 return isl_aff_free(aff);
2108 isl_int_init(gcd);
2109 isl_seq_gcd(aff->v->el + 1, aff->v->size - 1, &gcd);
2110 isl_int_gcd(gcd, gcd, f);
2111 isl_seq_scale_down(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
2112 isl_int_divexact(gcd, f, gcd);
2113 isl_int_mul(aff->v->el[0], aff->v->el[0], gcd);
2114 isl_int_clear(gcd);
2116 return aff;
2119 /* Divide "aff" by "v".
2121 __isl_give isl_aff *isl_aff_scale_down_val(__isl_take isl_aff *aff,
2122 __isl_take isl_val *v)
2124 if (!aff || !v)
2125 goto error;
2127 if (isl_val_is_one(v)) {
2128 isl_val_free(v);
2129 return aff;
2132 if (!isl_val_is_rat(v))
2133 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2134 "expecting rational factor", goto error);
2135 if (!isl_val_is_pos(v))
2136 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2137 "factor needs to be positive", goto error);
2139 aff = isl_aff_scale(aff, v->d);
2140 aff = isl_aff_scale_down(aff, v->n);
2142 isl_val_free(v);
2143 return aff;
2144 error:
2145 isl_aff_free(aff);
2146 isl_val_free(v);
2147 return NULL;
2150 __isl_give isl_aff *isl_aff_scale_down_ui(__isl_take isl_aff *aff, unsigned f)
2152 isl_int v;
2154 if (f == 1)
2155 return aff;
2157 isl_int_init(v);
2158 isl_int_set_ui(v, f);
2159 aff = isl_aff_scale_down(aff, v);
2160 isl_int_clear(v);
2162 return aff;
2165 __isl_give isl_aff *isl_aff_set_dim_name(__isl_take isl_aff *aff,
2166 enum isl_dim_type type, unsigned pos, const char *s)
2168 aff = isl_aff_cow(aff);
2169 if (!aff)
2170 return NULL;
2171 if (type == isl_dim_out)
2172 isl_die(aff->v->ctx, isl_error_invalid,
2173 "cannot set name of output/set dimension",
2174 return isl_aff_free(aff));
2175 if (type == isl_dim_in)
2176 type = isl_dim_set;
2177 aff->ls = isl_local_space_set_dim_name(aff->ls, type, pos, s);
2178 if (!aff->ls)
2179 return isl_aff_free(aff);
2181 return aff;
2184 __isl_give isl_aff *isl_aff_set_dim_id(__isl_take isl_aff *aff,
2185 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
2187 aff = isl_aff_cow(aff);
2188 if (!aff)
2189 goto error;
2190 if (type == isl_dim_out)
2191 isl_die(aff->v->ctx, isl_error_invalid,
2192 "cannot set name of output/set dimension",
2193 goto error);
2194 if (type == isl_dim_in)
2195 type = isl_dim_set;
2196 aff->ls = isl_local_space_set_dim_id(aff->ls, type, pos, id);
2197 if (!aff->ls)
2198 return isl_aff_free(aff);
2200 return aff;
2201 error:
2202 isl_id_free(id);
2203 isl_aff_free(aff);
2204 return NULL;
2207 /* Replace the identifier of the input tuple of "aff" by "id".
2208 * type is currently required to be equal to isl_dim_in
2210 __isl_give isl_aff *isl_aff_set_tuple_id(__isl_take isl_aff *aff,
2211 enum isl_dim_type type, __isl_take isl_id *id)
2213 aff = isl_aff_cow(aff);
2214 if (!aff)
2215 goto error;
2216 if (type != isl_dim_in)
2217 isl_die(aff->v->ctx, isl_error_invalid,
2218 "cannot only set id of input tuple", goto error);
2219 aff->ls = isl_local_space_set_tuple_id(aff->ls, isl_dim_set, id);
2220 if (!aff->ls)
2221 return isl_aff_free(aff);
2223 return aff;
2224 error:
2225 isl_id_free(id);
2226 isl_aff_free(aff);
2227 return NULL;
2230 /* Exploit the equalities in "eq" to simplify the affine expression
2231 * and the expressions of the integer divisions in the local space.
2232 * The integer divisions in this local space are assumed to appear
2233 * as regular dimensions in "eq".
2235 static __isl_give isl_aff *isl_aff_substitute_equalities_lifted(
2236 __isl_take isl_aff *aff, __isl_take isl_basic_set *eq)
2238 int i, j;
2239 unsigned o_div;
2240 unsigned n_div;
2242 if (!eq)
2243 goto error;
2244 if (eq->n_eq == 0) {
2245 isl_basic_set_free(eq);
2246 return aff;
2249 aff = isl_aff_cow(aff);
2250 if (!aff)
2251 goto error;
2253 aff->ls = isl_local_space_substitute_equalities(aff->ls,
2254 isl_basic_set_copy(eq));
2255 aff->v = isl_vec_cow(aff->v);
2256 if (!aff->ls || !aff->v)
2257 goto error;
2259 o_div = isl_basic_set_offset(eq, isl_dim_div);
2260 n_div = eq->n_div;
2261 for (i = 0; i < eq->n_eq; ++i) {
2262 j = isl_seq_last_non_zero(eq->eq[i], o_div + n_div);
2263 if (j < 0 || j == 0 || j >= o_div)
2264 continue;
2266 isl_seq_elim(aff->v->el + 1, eq->eq[i], j, o_div,
2267 &aff->v->el[0]);
2270 isl_basic_set_free(eq);
2271 aff = isl_aff_normalize(aff);
2272 return aff;
2273 error:
2274 isl_basic_set_free(eq);
2275 isl_aff_free(aff);
2276 return NULL;
2279 /* Exploit the equalities in "eq" to simplify the affine expression
2280 * and the expressions of the integer divisions in the local space.
2282 __isl_give isl_aff *isl_aff_substitute_equalities(__isl_take isl_aff *aff,
2283 __isl_take isl_basic_set *eq)
2285 isl_size n_div;
2287 n_div = isl_aff_domain_dim(aff, isl_dim_div);
2288 if (n_div < 0)
2289 goto error;
2290 if (n_div > 0)
2291 eq = isl_basic_set_add_dims(eq, isl_dim_set, n_div);
2292 return isl_aff_substitute_equalities_lifted(aff, eq);
2293 error:
2294 isl_basic_set_free(eq);
2295 isl_aff_free(aff);
2296 return NULL;
2299 /* Look for equalities among the variables shared by context and aff
2300 * and the integer divisions of aff, if any.
2301 * The equalities are then used to eliminate coefficients and/or integer
2302 * divisions from aff.
2304 __isl_give isl_aff *isl_aff_gist(__isl_take isl_aff *aff,
2305 __isl_take isl_set *context)
2307 isl_local_space *ls;
2308 isl_basic_set *hull;
2310 ls = isl_aff_get_domain_local_space(aff);
2311 context = isl_local_space_lift_set(ls, context);
2313 hull = isl_set_affine_hull(context);
2314 return isl_aff_substitute_equalities_lifted(aff, hull);
2317 __isl_give isl_aff *isl_aff_gist_params(__isl_take isl_aff *aff,
2318 __isl_take isl_set *context)
2320 isl_set *dom_context = isl_set_universe(isl_aff_get_domain_space(aff));
2321 dom_context = isl_set_intersect_params(dom_context, context);
2322 return isl_aff_gist(aff, dom_context);
2325 /* Return a basic set containing those elements in the space
2326 * of aff where it is positive. "rational" should not be set.
2328 * If "aff" is NaN, then it is not positive.
2330 static __isl_give isl_basic_set *aff_pos_basic_set(__isl_take isl_aff *aff,
2331 int rational, void *user)
2333 isl_constraint *ineq;
2334 isl_basic_set *bset;
2335 isl_val *c;
2337 if (!aff)
2338 return NULL;
2339 if (isl_aff_is_nan(aff)) {
2340 isl_space *space = isl_aff_get_domain_space(aff);
2341 isl_aff_free(aff);
2342 return isl_basic_set_empty(space);
2344 if (rational)
2345 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2346 "rational sets not supported", goto error);
2348 ineq = isl_inequality_from_aff(aff);
2349 c = isl_constraint_get_constant_val(ineq);
2350 c = isl_val_sub_ui(c, 1);
2351 ineq = isl_constraint_set_constant_val(ineq, c);
2353 bset = isl_basic_set_from_constraint(ineq);
2354 bset = isl_basic_set_simplify(bset);
2355 return bset;
2356 error:
2357 isl_aff_free(aff);
2358 return NULL;
2361 /* Return a basic set containing those elements in the space
2362 * of aff where it is non-negative.
2363 * If "rational" is set, then return a rational basic set.
2365 * If "aff" is NaN, then it is not non-negative (it's not negative either).
2367 static __isl_give isl_basic_set *aff_nonneg_basic_set(
2368 __isl_take isl_aff *aff, int rational, void *user)
2370 isl_constraint *ineq;
2371 isl_basic_set *bset;
2373 if (!aff)
2374 return NULL;
2375 if (isl_aff_is_nan(aff)) {
2376 isl_space *space = isl_aff_get_domain_space(aff);
2377 isl_aff_free(aff);
2378 return isl_basic_set_empty(space);
2381 ineq = isl_inequality_from_aff(aff);
2383 bset = isl_basic_set_from_constraint(ineq);
2384 if (rational)
2385 bset = isl_basic_set_set_rational(bset);
2386 bset = isl_basic_set_simplify(bset);
2387 return bset;
2390 /* Return a basic set containing those elements in the space
2391 * of aff where it is non-negative.
2393 __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
2395 return aff_nonneg_basic_set(aff, 0, NULL);
2398 /* Return a basic set containing those elements in the domain space
2399 * of "aff" where it is positive.
2401 __isl_give isl_basic_set *isl_aff_pos_basic_set(__isl_take isl_aff *aff)
2403 aff = isl_aff_add_constant_num_si(aff, -1);
2404 return isl_aff_nonneg_basic_set(aff);
2407 /* Return a basic set containing those elements in the domain space
2408 * of aff where it is negative.
2410 __isl_give isl_basic_set *isl_aff_neg_basic_set(__isl_take isl_aff *aff)
2412 aff = isl_aff_neg(aff);
2413 return isl_aff_pos_basic_set(aff);
2416 /* Return a basic set containing those elements in the space
2417 * of aff where it is zero.
2418 * If "rational" is set, then return a rational basic set.
2420 * If "aff" is NaN, then it is not zero.
2422 static __isl_give isl_basic_set *aff_zero_basic_set(__isl_take isl_aff *aff,
2423 int rational, void *user)
2425 isl_constraint *ineq;
2426 isl_basic_set *bset;
2428 if (!aff)
2429 return NULL;
2430 if (isl_aff_is_nan(aff)) {
2431 isl_space *space = isl_aff_get_domain_space(aff);
2432 isl_aff_free(aff);
2433 return isl_basic_set_empty(space);
2436 ineq = isl_equality_from_aff(aff);
2438 bset = isl_basic_set_from_constraint(ineq);
2439 if (rational)
2440 bset = isl_basic_set_set_rational(bset);
2441 bset = isl_basic_set_simplify(bset);
2442 return bset;
2445 /* Return a basic set containing those elements in the space
2446 * of aff where it is zero.
2448 __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
2450 return aff_zero_basic_set(aff, 0, NULL);
2453 /* Return a basic set containing those elements in the shared space
2454 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2456 __isl_give isl_basic_set *isl_aff_ge_basic_set(__isl_take isl_aff *aff1,
2457 __isl_take isl_aff *aff2)
2459 aff1 = isl_aff_sub(aff1, aff2);
2461 return isl_aff_nonneg_basic_set(aff1);
2464 /* Return a basic set containing those elements in the shared domain space
2465 * of "aff1" and "aff2" where "aff1" is greater than "aff2".
2467 __isl_give isl_basic_set *isl_aff_gt_basic_set(__isl_take isl_aff *aff1,
2468 __isl_take isl_aff *aff2)
2470 aff1 = isl_aff_sub(aff1, aff2);
2472 return isl_aff_pos_basic_set(aff1);
2475 /* Return a set containing those elements in the shared space
2476 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
2478 __isl_give isl_set *isl_aff_ge_set(__isl_take isl_aff *aff1,
2479 __isl_take isl_aff *aff2)
2481 return isl_set_from_basic_set(isl_aff_ge_basic_set(aff1, aff2));
2484 /* Return a set containing those elements in the shared domain space
2485 * of aff1 and aff2 where aff1 is greater than aff2.
2487 * If either of the two inputs is NaN, then the result is empty,
2488 * as comparisons with NaN always return false.
2490 __isl_give isl_set *isl_aff_gt_set(__isl_take isl_aff *aff1,
2491 __isl_take isl_aff *aff2)
2493 return isl_set_from_basic_set(isl_aff_gt_basic_set(aff1, aff2));
2496 /* Return a basic set containing those elements in the shared space
2497 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2499 __isl_give isl_basic_set *isl_aff_le_basic_set(__isl_take isl_aff *aff1,
2500 __isl_take isl_aff *aff2)
2502 return isl_aff_ge_basic_set(aff2, aff1);
2505 /* Return a basic set containing those elements in the shared domain space
2506 * of "aff1" and "aff2" where "aff1" is smaller than "aff2".
2508 __isl_give isl_basic_set *isl_aff_lt_basic_set(__isl_take isl_aff *aff1,
2509 __isl_take isl_aff *aff2)
2511 return isl_aff_gt_basic_set(aff2, aff1);
2514 /* Return a set containing those elements in the shared space
2515 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
2517 __isl_give isl_set *isl_aff_le_set(__isl_take isl_aff *aff1,
2518 __isl_take isl_aff *aff2)
2520 return isl_aff_ge_set(aff2, aff1);
2523 /* Return a set containing those elements in the shared domain space
2524 * of "aff1" and "aff2" where "aff1" is smaller than "aff2".
2526 __isl_give isl_set *isl_aff_lt_set(__isl_take isl_aff *aff1,
2527 __isl_take isl_aff *aff2)
2529 return isl_set_from_basic_set(isl_aff_lt_basic_set(aff1, aff2));
2532 /* Return a basic set containing those elements in the shared space
2533 * of aff1 and aff2 where aff1 and aff2 are equal.
2535 __isl_give isl_basic_set *isl_aff_eq_basic_set(__isl_take isl_aff *aff1,
2536 __isl_take isl_aff *aff2)
2538 aff1 = isl_aff_sub(aff1, aff2);
2540 return isl_aff_zero_basic_set(aff1);
2543 /* Return a set containing those elements in the shared space
2544 * of aff1 and aff2 where aff1 and aff2 are equal.
2546 __isl_give isl_set *isl_aff_eq_set(__isl_take isl_aff *aff1,
2547 __isl_take isl_aff *aff2)
2549 return isl_set_from_basic_set(isl_aff_eq_basic_set(aff1, aff2));
2552 /* Return a set containing those elements in the shared domain space
2553 * of aff1 and aff2 where aff1 and aff2 are not equal.
2555 * If either of the two inputs is NaN, then the result is empty,
2556 * as comparisons with NaN always return false.
2558 __isl_give isl_set *isl_aff_ne_set(__isl_take isl_aff *aff1,
2559 __isl_take isl_aff *aff2)
2561 isl_set *set_lt, *set_gt;
2563 set_lt = isl_aff_lt_set(isl_aff_copy(aff1),
2564 isl_aff_copy(aff2));
2565 set_gt = isl_aff_gt_set(aff1, aff2);
2566 return isl_set_union_disjoint(set_lt, set_gt);
2569 __isl_give isl_aff *isl_aff_add_on_domain(__isl_keep isl_set *dom,
2570 __isl_take isl_aff *aff1, __isl_take isl_aff *aff2)
2572 aff1 = isl_aff_add(aff1, aff2);
2573 aff1 = isl_aff_gist(aff1, isl_set_copy(dom));
2574 return aff1;
2577 isl_bool isl_aff_is_empty(__isl_keep isl_aff *aff)
2579 if (!aff)
2580 return isl_bool_error;
2582 return isl_bool_false;
2585 #undef TYPE
2586 #define TYPE isl_aff
2587 static
2588 #include "check_type_range_templ.c"
2590 /* Check whether the given affine expression has non-zero coefficient
2591 * for any dimension in the given range or if any of these dimensions
2592 * appear with non-zero coefficients in any of the integer divisions
2593 * involved in the affine expression.
2595 isl_bool isl_aff_involves_dims(__isl_keep isl_aff *aff,
2596 enum isl_dim_type type, unsigned first, unsigned n)
2598 int i;
2599 int *active = NULL;
2600 isl_bool involves = isl_bool_false;
2602 if (!aff)
2603 return isl_bool_error;
2604 if (n == 0)
2605 return isl_bool_false;
2606 if (isl_aff_check_range(aff, type, first, n) < 0)
2607 return isl_bool_error;
2609 active = isl_local_space_get_active(aff->ls, aff->v->el + 2);
2610 if (!active)
2611 goto error;
2613 first += isl_local_space_offset(aff->ls, type) - 1;
2614 for (i = 0; i < n; ++i)
2615 if (active[first + i]) {
2616 involves = isl_bool_true;
2617 break;
2620 free(active);
2622 return involves;
2623 error:
2624 free(active);
2625 return isl_bool_error;
2628 /* Does "aff" involve any local variables, i.e., integer divisions?
2630 isl_bool isl_aff_involves_locals(__isl_keep isl_aff *aff)
2632 isl_size n;
2634 n = isl_aff_dim(aff, isl_dim_div);
2635 if (n < 0)
2636 return isl_bool_error;
2637 return isl_bool_ok(n > 0);
2640 __isl_give isl_aff *isl_aff_drop_dims(__isl_take isl_aff *aff,
2641 enum isl_dim_type type, unsigned first, unsigned n)
2643 if (!aff)
2644 return NULL;
2645 if (type == isl_dim_out)
2646 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2647 "cannot drop output/set dimension",
2648 return isl_aff_free(aff));
2649 if (type == isl_dim_in)
2650 type = isl_dim_set;
2651 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2652 return aff;
2654 if (isl_local_space_check_range(aff->ls, type, first, n) < 0)
2655 return isl_aff_free(aff);
2657 aff = isl_aff_cow(aff);
2658 if (!aff)
2659 return NULL;
2661 aff->ls = isl_local_space_drop_dims(aff->ls, type, first, n);
2662 if (!aff->ls)
2663 return isl_aff_free(aff);
2665 first += 1 + isl_local_space_offset(aff->ls, type);
2666 aff->v = isl_vec_drop_els(aff->v, first, n);
2667 if (!aff->v)
2668 return isl_aff_free(aff);
2670 return aff;
2673 /* Is the domain of "aff" a product?
2675 static isl_bool isl_aff_domain_is_product(__isl_keep isl_aff *aff)
2677 return isl_space_is_product(isl_aff_peek_domain_space(aff));
2680 #undef TYPE
2681 #define TYPE isl_aff
2682 #include <isl_domain_factor_templ.c>
2684 /* Project the domain of the affine expression onto its parameter space.
2685 * The affine expression may not involve any of the domain dimensions.
2687 __isl_give isl_aff *isl_aff_project_domain_on_params(__isl_take isl_aff *aff)
2689 isl_space *space;
2690 isl_size n;
2692 n = isl_aff_dim(aff, isl_dim_in);
2693 if (n < 0)
2694 return isl_aff_free(aff);
2695 aff = isl_aff_drop_domain(aff, 0, n);
2696 space = isl_aff_get_domain_space(aff);
2697 space = isl_space_params(space);
2698 aff = isl_aff_reset_domain_space(aff, space);
2699 return aff;
2702 /* Convert an affine expression defined over a parameter domain
2703 * into one that is defined over a zero-dimensional set.
2705 __isl_give isl_aff *isl_aff_from_range(__isl_take isl_aff *aff)
2707 isl_local_space *ls;
2709 ls = isl_aff_take_domain_local_space(aff);
2710 ls = isl_local_space_set_from_params(ls);
2711 aff = isl_aff_restore_domain_local_space(aff, ls);
2713 return aff;
2716 __isl_give isl_aff *isl_aff_insert_dims(__isl_take isl_aff *aff,
2717 enum isl_dim_type type, unsigned first, unsigned n)
2719 if (!aff)
2720 return NULL;
2721 if (type == isl_dim_out)
2722 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2723 "cannot insert output/set dimensions",
2724 return isl_aff_free(aff));
2725 if (type == isl_dim_in)
2726 type = isl_dim_set;
2727 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
2728 return aff;
2730 if (isl_local_space_check_range(aff->ls, type, first, 0) < 0)
2731 return isl_aff_free(aff);
2733 aff = isl_aff_cow(aff);
2734 if (!aff)
2735 return NULL;
2737 aff->ls = isl_local_space_insert_dims(aff->ls, type, first, n);
2738 if (!aff->ls)
2739 return isl_aff_free(aff);
2741 first += 1 + isl_local_space_offset(aff->ls, type);
2742 aff->v = isl_vec_insert_zero_els(aff->v, first, n);
2743 if (!aff->v)
2744 return isl_aff_free(aff);
2746 return aff;
2749 __isl_give isl_aff *isl_aff_add_dims(__isl_take isl_aff *aff,
2750 enum isl_dim_type type, unsigned n)
2752 isl_size pos;
2754 pos = isl_aff_dim(aff, type);
2755 if (pos < 0)
2756 return isl_aff_free(aff);
2758 return isl_aff_insert_dims(aff, type, pos, n);
2761 /* Move the "n" dimensions of "src_type" starting at "src_pos" of "aff"
2762 * to dimensions of "dst_type" at "dst_pos".
2764 * We only support moving input dimensions to parameters and vice versa.
2766 __isl_give isl_aff *isl_aff_move_dims(__isl_take isl_aff *aff,
2767 enum isl_dim_type dst_type, unsigned dst_pos,
2768 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
2770 unsigned g_dst_pos;
2771 unsigned g_src_pos;
2772 isl_size src_off, dst_off;
2774 if (!aff)
2775 return NULL;
2776 if (n == 0 &&
2777 !isl_local_space_is_named_or_nested(aff->ls, src_type) &&
2778 !isl_local_space_is_named_or_nested(aff->ls, dst_type))
2779 return aff;
2781 if (dst_type == isl_dim_out || src_type == isl_dim_out)
2782 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2783 "cannot move output/set dimension",
2784 return isl_aff_free(aff));
2785 if (dst_type == isl_dim_div || src_type == isl_dim_div)
2786 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
2787 "cannot move divs", return isl_aff_free(aff));
2788 if (dst_type == isl_dim_in)
2789 dst_type = isl_dim_set;
2790 if (src_type == isl_dim_in)
2791 src_type = isl_dim_set;
2793 if (isl_local_space_check_range(aff->ls, src_type, src_pos, n) < 0)
2794 return isl_aff_free(aff);
2795 if (dst_type == src_type)
2796 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
2797 "moving dims within the same type not supported",
2798 return isl_aff_free(aff));
2800 aff = isl_aff_cow(aff);
2801 src_off = isl_aff_domain_offset(aff, src_type);
2802 dst_off = isl_aff_domain_offset(aff, dst_type);
2803 if (src_off < 0 || dst_off < 0)
2804 return isl_aff_free(aff);
2806 g_src_pos = 1 + src_off + src_pos;
2807 g_dst_pos = 1 + dst_off + dst_pos;
2808 if (dst_type > src_type)
2809 g_dst_pos -= n;
2811 aff->v = isl_vec_move_els(aff->v, g_dst_pos, g_src_pos, n);
2812 aff->ls = isl_local_space_move_dims(aff->ls, dst_type, dst_pos,
2813 src_type, src_pos, n);
2814 if (!aff->v || !aff->ls)
2815 return isl_aff_free(aff);
2817 aff = sort_divs(aff);
2819 return aff;
2822 /* Return a zero isl_aff in the given space.
2824 * This is a helper function for isl_pw_*_as_* that ensures a uniform
2825 * interface over all piecewise types.
2827 static __isl_give isl_aff *isl_aff_zero_in_space(__isl_take isl_space *space)
2829 isl_local_space *ls;
2831 ls = isl_local_space_from_space(isl_space_domain(space));
2832 return isl_aff_zero_on_domain(ls);
2835 #define isl_aff_involves_nan isl_aff_is_nan
2837 #undef PW
2838 #define PW isl_pw_aff
2839 #undef BASE
2840 #define BASE aff
2841 #undef EL_IS_ZERO
2842 #define EL_IS_ZERO is_empty
2843 #undef ZERO
2844 #define ZERO empty
2845 #undef IS_ZERO
2846 #define IS_ZERO is_empty
2847 #undef FIELD
2848 #define FIELD aff
2849 #undef DEFAULT_IS_ZERO
2850 #define DEFAULT_IS_ZERO 0
2852 #include <isl_pw_templ.c>
2853 #include <isl_pw_un_op_templ.c>
2854 #include <isl_pw_add_constant_val_templ.c>
2855 #include <isl_pw_add_disjoint_templ.c>
2856 #include <isl_pw_bind_domain_templ.c>
2857 #include <isl_pw_eval.c>
2858 #include <isl_pw_hash.c>
2859 #include <isl_pw_fix_templ.c>
2860 #include <isl_pw_from_range_templ.c>
2861 #include <isl_pw_insert_dims_templ.c>
2862 #include <isl_pw_insert_domain_templ.c>
2863 #include <isl_pw_move_dims_templ.c>
2864 #include <isl_pw_neg_templ.c>
2865 #include <isl_pw_pullback_templ.c>
2866 #include <isl_pw_scale_templ.c>
2867 #include <isl_pw_sub_templ.c>
2868 #include <isl_pw_union_opt.c>
2870 #undef BASE
2871 #define BASE pw_aff
2873 #include <isl_union_single.c>
2874 #include <isl_union_neg.c>
2875 #include <isl_union_sub_templ.c>
2877 #undef BASE
2878 #define BASE aff
2880 #include <isl_union_pw_templ.c>
2882 /* Compute a piecewise quasi-affine expression with a domain that
2883 * is the union of those of pwaff1 and pwaff2 and such that on each
2884 * cell, the quasi-affine expression is the maximum of those of pwaff1
2885 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2886 * cell, then the associated expression is the defined one.
2888 __isl_give isl_pw_aff *isl_pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
2889 __isl_take isl_pw_aff *pwaff2)
2891 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
2892 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_ge_set);
2895 /* Compute a piecewise quasi-affine expression with a domain that
2896 * is the union of those of pwaff1 and pwaff2 and such that on each
2897 * cell, the quasi-affine expression is the minimum of those of pwaff1
2898 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
2899 * cell, then the associated expression is the defined one.
2901 __isl_give isl_pw_aff *isl_pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
2902 __isl_take isl_pw_aff *pwaff2)
2904 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
2905 return isl_pw_aff_union_opt_cmp(pwaff1, pwaff2, &isl_aff_le_set);
2908 __isl_give isl_pw_aff *isl_pw_aff_union_opt(__isl_take isl_pw_aff *pwaff1,
2909 __isl_take isl_pw_aff *pwaff2, int max)
2911 if (max)
2912 return isl_pw_aff_union_max(pwaff1, pwaff2);
2913 else
2914 return isl_pw_aff_union_min(pwaff1, pwaff2);
2917 /* Is the domain of "pa" a product?
2919 static isl_bool isl_pw_aff_domain_is_product(__isl_keep isl_pw_aff *pa)
2921 return isl_space_domain_is_wrapping(isl_pw_aff_peek_space(pa));
2924 #undef TYPE
2925 #define TYPE isl_pw_aff
2926 #include <isl_domain_factor_templ.c>
2928 /* Return a set containing those elements in the domain
2929 * of "pwaff" where it satisfies "fn" (if complement is 0) or
2930 * does not satisfy "fn" (if complement is 1).
2932 * The pieces with a NaN never belong to the result since
2933 * NaN does not satisfy any property.
2935 static __isl_give isl_set *pw_aff_locus(__isl_take isl_pw_aff *pwaff,
2936 __isl_give isl_basic_set *(*fn)(__isl_take isl_aff *aff, int rational,
2937 void *user),
2938 int complement, void *user)
2940 int i;
2941 isl_set *set;
2943 if (!pwaff)
2944 return NULL;
2946 set = isl_set_empty(isl_pw_aff_get_domain_space(pwaff));
2948 for (i = 0; i < pwaff->n; ++i) {
2949 isl_basic_set *bset;
2950 isl_set *set_i, *locus;
2951 isl_bool rational;
2953 if (isl_aff_is_nan(pwaff->p[i].aff))
2954 continue;
2956 rational = isl_set_has_rational(pwaff->p[i].set);
2957 bset = fn(isl_aff_copy(pwaff->p[i].aff), rational, user);
2958 locus = isl_set_from_basic_set(bset);
2959 set_i = isl_set_copy(pwaff->p[i].set);
2960 if (complement)
2961 set_i = isl_set_subtract(set_i, locus);
2962 else
2963 set_i = isl_set_intersect(set_i, locus);
2964 set = isl_set_union_disjoint(set, set_i);
2967 isl_pw_aff_free(pwaff);
2969 return set;
2972 /* Return a set containing those elements in the domain
2973 * of "pa" where it is positive.
2975 __isl_give isl_set *isl_pw_aff_pos_set(__isl_take isl_pw_aff *pa)
2977 return pw_aff_locus(pa, &aff_pos_basic_set, 0, NULL);
2980 /* Return a set containing those elements in the domain
2981 * of pwaff where it is non-negative.
2983 __isl_give isl_set *isl_pw_aff_nonneg_set(__isl_take isl_pw_aff *pwaff)
2985 return pw_aff_locus(pwaff, &aff_nonneg_basic_set, 0, NULL);
2988 /* Return a set containing those elements in the domain
2989 * of pwaff where it is zero.
2991 __isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
2993 return pw_aff_locus(pwaff, &aff_zero_basic_set, 0, NULL);
2996 /* Return a set containing those elements in the domain
2997 * of pwaff where it is not zero.
2999 __isl_give isl_set *isl_pw_aff_non_zero_set(__isl_take isl_pw_aff *pwaff)
3001 return pw_aff_locus(pwaff, &aff_zero_basic_set, 1, NULL);
3004 /* Bind the affine function "aff" to the parameter "id",
3005 * returning the elements in the domain where the affine expression
3006 * is equal to the parameter.
3008 __isl_give isl_basic_set *isl_aff_bind_id(__isl_take isl_aff *aff,
3009 __isl_take isl_id *id)
3011 isl_space *space;
3012 isl_aff *aff_id;
3014 space = isl_aff_get_domain_space(aff);
3015 space = isl_space_add_param_id(space, isl_id_copy(id));
3017 aff = isl_aff_align_params(aff, isl_space_copy(space));
3018 aff_id = isl_aff_param_on_domain_space_id(space, id);
3020 return isl_aff_eq_basic_set(aff, aff_id);
3023 /* Wrapper around isl_aff_bind_id for use as pw_aff_locus callback.
3024 * "rational" should not be set.
3026 static __isl_give isl_basic_set *aff_bind_id(__isl_take isl_aff *aff,
3027 int rational, void *user)
3029 isl_id *id = user;
3031 if (!aff)
3032 return NULL;
3033 if (rational)
3034 isl_die(isl_aff_get_ctx(aff), isl_error_unsupported,
3035 "rational binding not supported", goto error);
3036 return isl_aff_bind_id(aff, isl_id_copy(id));
3037 error:
3038 isl_aff_free(aff);
3039 return NULL;
3042 /* Bind the piecewise affine function "pa" to the parameter "id",
3043 * returning the elements in the domain where the expression
3044 * is equal to the parameter.
3046 __isl_give isl_set *isl_pw_aff_bind_id(__isl_take isl_pw_aff *pa,
3047 __isl_take isl_id *id)
3049 isl_set *bound;
3051 bound = pw_aff_locus(pa, &aff_bind_id, 0, id);
3052 isl_id_free(id);
3054 return bound;
3057 /* Return a set containing those elements in the shared domain
3058 * of pwaff1 and pwaff2 where pwaff1 is greater than (or equal) to pwaff2.
3060 * We compute the difference on the shared domain and then construct
3061 * the set of values where this difference is non-negative.
3062 * If strict is set, we first subtract 1 from the difference.
3063 * If equal is set, we only return the elements where pwaff1 and pwaff2
3064 * are equal.
3066 static __isl_give isl_set *pw_aff_gte_set(__isl_take isl_pw_aff *pwaff1,
3067 __isl_take isl_pw_aff *pwaff2, int strict, int equal)
3069 isl_set *set1, *set2;
3071 set1 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff1));
3072 set2 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff2));
3073 set1 = isl_set_intersect(set1, set2);
3074 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, isl_set_copy(set1));
3075 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, isl_set_copy(set1));
3076 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_neg(pwaff2));
3078 if (strict) {
3079 isl_space *space = isl_set_get_space(set1);
3080 isl_aff *aff;
3081 aff = isl_aff_zero_on_domain(isl_local_space_from_space(space));
3082 aff = isl_aff_add_constant_si(aff, -1);
3083 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_alloc(set1, aff));
3084 } else
3085 isl_set_free(set1);
3087 if (equal)
3088 return isl_pw_aff_zero_set(pwaff1);
3089 return isl_pw_aff_nonneg_set(pwaff1);
3092 /* Return a set containing those elements in the shared domain
3093 * of pwaff1 and pwaff2 where pwaff1 is equal to pwaff2.
3095 __isl_give isl_set *isl_pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
3096 __isl_take isl_pw_aff *pwaff2)
3098 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3099 return pw_aff_gte_set(pwaff1, pwaff2, 0, 1);
3102 /* Return a set containing those elements in the shared domain
3103 * of pwaff1 and pwaff2 where pwaff1 is greater than or equal to pwaff2.
3105 __isl_give isl_set *isl_pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
3106 __isl_take isl_pw_aff *pwaff2)
3108 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3109 return pw_aff_gte_set(pwaff1, pwaff2, 0, 0);
3112 /* Return a set containing those elements in the shared domain
3113 * of pwaff1 and pwaff2 where pwaff1 is strictly greater than pwaff2.
3115 __isl_give isl_set *isl_pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
3116 __isl_take isl_pw_aff *pwaff2)
3118 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3119 return pw_aff_gte_set(pwaff1, pwaff2, 1, 0);
3122 __isl_give isl_set *isl_pw_aff_le_set(__isl_take isl_pw_aff *pwaff1,
3123 __isl_take isl_pw_aff *pwaff2)
3125 return isl_pw_aff_ge_set(pwaff2, pwaff1);
3128 __isl_give isl_set *isl_pw_aff_lt_set(__isl_take isl_pw_aff *pwaff1,
3129 __isl_take isl_pw_aff *pwaff2)
3131 return isl_pw_aff_gt_set(pwaff2, pwaff1);
3134 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3135 * where the function values are ordered in the same way as "order",
3136 * which returns a set in the shared domain of its two arguments.
3138 * Let "pa1" and "pa2" be defined on domains A and B respectively.
3139 * We first pull back the two functions such that they are defined on
3140 * the domain [A -> B]. Then we apply "order", resulting in a set
3141 * in the space [A -> B]. Finally, we unwrap this set to obtain
3142 * a map in the space A -> B.
3144 static __isl_give isl_map *isl_pw_aff_order_map(
3145 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2,
3146 __isl_give isl_set *(*order)(__isl_take isl_pw_aff *pa1,
3147 __isl_take isl_pw_aff *pa2))
3149 isl_space *space1, *space2;
3150 isl_multi_aff *ma;
3151 isl_set *set;
3153 isl_pw_aff_align_params_bin(&pa1, &pa2);
3154 space1 = isl_space_domain(isl_pw_aff_get_space(pa1));
3155 space2 = isl_space_domain(isl_pw_aff_get_space(pa2));
3156 space1 = isl_space_map_from_domain_and_range(space1, space2);
3157 ma = isl_multi_aff_domain_map(isl_space_copy(space1));
3158 pa1 = isl_pw_aff_pullback_multi_aff(pa1, ma);
3159 ma = isl_multi_aff_range_map(space1);
3160 pa2 = isl_pw_aff_pullback_multi_aff(pa2, ma);
3161 set = order(pa1, pa2);
3163 return isl_set_unwrap(set);
3166 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3167 * where the function values are equal.
3169 __isl_give isl_map *isl_pw_aff_eq_map(__isl_take isl_pw_aff *pa1,
3170 __isl_take isl_pw_aff *pa2)
3172 return isl_pw_aff_order_map(pa1, pa2, &isl_pw_aff_eq_set);
3175 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3176 * where the function value of "pa1" is less than or equal to
3177 * the function value of "pa2".
3179 __isl_give isl_map *isl_pw_aff_le_map(__isl_take isl_pw_aff *pa1,
3180 __isl_take isl_pw_aff *pa2)
3182 return isl_pw_aff_order_map(pa1, pa2, &isl_pw_aff_le_set);
3185 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3186 * where the function value of "pa1" is less than the function value of "pa2".
3188 __isl_give isl_map *isl_pw_aff_lt_map(__isl_take isl_pw_aff *pa1,
3189 __isl_take isl_pw_aff *pa2)
3191 return isl_pw_aff_order_map(pa1, pa2, &isl_pw_aff_lt_set);
3194 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3195 * where the function value of "pa1" is greater than or equal to
3196 * the function value of "pa2".
3198 __isl_give isl_map *isl_pw_aff_ge_map(__isl_take isl_pw_aff *pa1,
3199 __isl_take isl_pw_aff *pa2)
3201 return isl_pw_aff_order_map(pa1, pa2, &isl_pw_aff_ge_set);
3204 /* Return a map containing pairs of elements in the domains of "pa1" and "pa2"
3205 * where the function value of "pa1" is greater than the function value
3206 * of "pa2".
3208 __isl_give isl_map *isl_pw_aff_gt_map(__isl_take isl_pw_aff *pa1,
3209 __isl_take isl_pw_aff *pa2)
3211 return isl_pw_aff_order_map(pa1, pa2, &isl_pw_aff_gt_set);
3214 /* Return a set containing those elements in the shared domain
3215 * of the elements of list1 and list2 where each element in list1
3216 * has the relation specified by "fn" with each element in list2.
3218 static __isl_give isl_set *pw_aff_list_set(__isl_take isl_pw_aff_list *list1,
3219 __isl_take isl_pw_aff_list *list2,
3220 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
3221 __isl_take isl_pw_aff *pwaff2))
3223 int i, j;
3224 isl_ctx *ctx;
3225 isl_set *set;
3227 if (!list1 || !list2)
3228 goto error;
3230 ctx = isl_pw_aff_list_get_ctx(list1);
3231 if (list1->n < 1 || list2->n < 1)
3232 isl_die(ctx, isl_error_invalid,
3233 "list should contain at least one element", goto error);
3235 set = isl_set_universe(isl_pw_aff_get_domain_space(list1->p[0]));
3236 for (i = 0; i < list1->n; ++i)
3237 for (j = 0; j < list2->n; ++j) {
3238 isl_set *set_ij;
3240 set_ij = fn(isl_pw_aff_copy(list1->p[i]),
3241 isl_pw_aff_copy(list2->p[j]));
3242 set = isl_set_intersect(set, set_ij);
3245 isl_pw_aff_list_free(list1);
3246 isl_pw_aff_list_free(list2);
3247 return set;
3248 error:
3249 isl_pw_aff_list_free(list1);
3250 isl_pw_aff_list_free(list2);
3251 return NULL;
3254 /* Return a set containing those elements in the shared domain
3255 * of the elements of list1 and list2 where each element in list1
3256 * is equal to each element in list2.
3258 __isl_give isl_set *isl_pw_aff_list_eq_set(__isl_take isl_pw_aff_list *list1,
3259 __isl_take isl_pw_aff_list *list2)
3261 return pw_aff_list_set(list1, list2, &isl_pw_aff_eq_set);
3264 __isl_give isl_set *isl_pw_aff_list_ne_set(__isl_take isl_pw_aff_list *list1,
3265 __isl_take isl_pw_aff_list *list2)
3267 return pw_aff_list_set(list1, list2, &isl_pw_aff_ne_set);
3270 /* Return a set containing those elements in the shared domain
3271 * of the elements of list1 and list2 where each element in list1
3272 * is less than or equal to each element in list2.
3274 __isl_give isl_set *isl_pw_aff_list_le_set(__isl_take isl_pw_aff_list *list1,
3275 __isl_take isl_pw_aff_list *list2)
3277 return pw_aff_list_set(list1, list2, &isl_pw_aff_le_set);
3280 __isl_give isl_set *isl_pw_aff_list_lt_set(__isl_take isl_pw_aff_list *list1,
3281 __isl_take isl_pw_aff_list *list2)
3283 return pw_aff_list_set(list1, list2, &isl_pw_aff_lt_set);
3286 __isl_give isl_set *isl_pw_aff_list_ge_set(__isl_take isl_pw_aff_list *list1,
3287 __isl_take isl_pw_aff_list *list2)
3289 return pw_aff_list_set(list1, list2, &isl_pw_aff_ge_set);
3292 __isl_give isl_set *isl_pw_aff_list_gt_set(__isl_take isl_pw_aff_list *list1,
3293 __isl_take isl_pw_aff_list *list2)
3295 return pw_aff_list_set(list1, list2, &isl_pw_aff_gt_set);
3299 /* Return a set containing those elements in the shared domain
3300 * of pwaff1 and pwaff2 where pwaff1 is not equal to pwaff2.
3302 __isl_give isl_set *isl_pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
3303 __isl_take isl_pw_aff *pwaff2)
3305 isl_set *set_lt, *set_gt;
3307 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3308 set_lt = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff1),
3309 isl_pw_aff_copy(pwaff2));
3310 set_gt = isl_pw_aff_gt_set(pwaff1, pwaff2);
3311 return isl_set_union_disjoint(set_lt, set_gt);
3314 __isl_give isl_pw_aff *isl_pw_aff_scale_down(__isl_take isl_pw_aff *pwaff,
3315 isl_int v)
3317 int i;
3319 if (isl_int_is_one(v))
3320 return pwaff;
3321 if (!isl_int_is_pos(v))
3322 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
3323 "factor needs to be positive",
3324 return isl_pw_aff_free(pwaff));
3325 pwaff = isl_pw_aff_cow(pwaff);
3326 if (!pwaff)
3327 return NULL;
3328 if (pwaff->n == 0)
3329 return pwaff;
3331 for (i = 0; i < pwaff->n; ++i) {
3332 pwaff->p[i].aff = isl_aff_scale_down(pwaff->p[i].aff, v);
3333 if (!pwaff->p[i].aff)
3334 return isl_pw_aff_free(pwaff);
3337 return pwaff;
3340 __isl_give isl_pw_aff *isl_pw_aff_floor(__isl_take isl_pw_aff *pwaff)
3342 return isl_pw_aff_un_op(pwaff, &isl_aff_floor);
3345 __isl_give isl_pw_aff *isl_pw_aff_ceil(__isl_take isl_pw_aff *pwaff)
3347 return isl_pw_aff_un_op(pwaff, &isl_aff_ceil);
3350 /* Assuming that "cond1" and "cond2" are disjoint,
3351 * return an affine expression that is equal to pwaff1 on cond1
3352 * and to pwaff2 on cond2.
3354 static __isl_give isl_pw_aff *isl_pw_aff_select(
3355 __isl_take isl_set *cond1, __isl_take isl_pw_aff *pwaff1,
3356 __isl_take isl_set *cond2, __isl_take isl_pw_aff *pwaff2)
3358 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, cond1);
3359 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, cond2);
3361 return isl_pw_aff_add_disjoint(pwaff1, pwaff2);
3364 /* Return an affine expression that is equal to pwaff_true for elements
3365 * where "cond" is non-zero and to pwaff_false for elements where "cond"
3366 * is zero.
3367 * That is, return cond ? pwaff_true : pwaff_false;
3369 * If "cond" involves and NaN, then we conservatively return a NaN
3370 * on its entire domain. In principle, we could consider the pieces
3371 * where it is NaN separately from those where it is not.
3373 * If "pwaff_true" and "pwaff_false" are obviously equal to each other,
3374 * then only use the domain of "cond" to restrict the domain.
3376 __isl_give isl_pw_aff *isl_pw_aff_cond(__isl_take isl_pw_aff *cond,
3377 __isl_take isl_pw_aff *pwaff_true, __isl_take isl_pw_aff *pwaff_false)
3379 isl_set *cond_true, *cond_false;
3380 isl_bool equal;
3382 if (!cond)
3383 goto error;
3384 if (isl_pw_aff_involves_nan(cond)) {
3385 isl_space *space = isl_pw_aff_get_domain_space(cond);
3386 isl_local_space *ls = isl_local_space_from_space(space);
3387 isl_pw_aff_free(cond);
3388 isl_pw_aff_free(pwaff_true);
3389 isl_pw_aff_free(pwaff_false);
3390 return isl_pw_aff_nan_on_domain(ls);
3393 pwaff_true = isl_pw_aff_align_params(pwaff_true,
3394 isl_pw_aff_get_space(pwaff_false));
3395 pwaff_false = isl_pw_aff_align_params(pwaff_false,
3396 isl_pw_aff_get_space(pwaff_true));
3397 equal = isl_pw_aff_plain_is_equal(pwaff_true, pwaff_false);
3398 if (equal < 0)
3399 goto error;
3400 if (equal) {
3401 isl_set *dom;
3403 dom = isl_set_coalesce(isl_pw_aff_domain(cond));
3404 isl_pw_aff_free(pwaff_false);
3405 return isl_pw_aff_intersect_domain(pwaff_true, dom);
3408 cond_true = isl_pw_aff_non_zero_set(isl_pw_aff_copy(cond));
3409 cond_false = isl_pw_aff_zero_set(cond);
3410 return isl_pw_aff_select(cond_true, pwaff_true,
3411 cond_false, pwaff_false);
3412 error:
3413 isl_pw_aff_free(cond);
3414 isl_pw_aff_free(pwaff_true);
3415 isl_pw_aff_free(pwaff_false);
3416 return NULL;
3419 isl_bool isl_aff_is_cst(__isl_keep isl_aff *aff)
3421 int pos;
3423 if (!aff)
3424 return isl_bool_error;
3426 pos = isl_seq_first_non_zero(aff->v->el + 2, aff->v->size - 2);
3427 return isl_bool_ok(pos == -1);
3430 /* Check whether pwaff is a piecewise constant.
3432 isl_bool isl_pw_aff_is_cst(__isl_keep isl_pw_aff *pwaff)
3434 int i;
3436 if (!pwaff)
3437 return isl_bool_error;
3439 for (i = 0; i < pwaff->n; ++i) {
3440 isl_bool is_cst = isl_aff_is_cst(pwaff->p[i].aff);
3441 if (is_cst < 0 || !is_cst)
3442 return is_cst;
3445 return isl_bool_true;
3448 /* Return the product of "aff1" and "aff2".
3450 * If either of the two is NaN, then the result is NaN.
3452 * Otherwise, at least one of "aff1" or "aff2" needs to be a constant.
3454 __isl_give isl_aff *isl_aff_mul(__isl_take isl_aff *aff1,
3455 __isl_take isl_aff *aff2)
3457 if (!aff1 || !aff2)
3458 goto error;
3460 if (isl_aff_is_nan(aff1)) {
3461 isl_aff_free(aff2);
3462 return aff1;
3464 if (isl_aff_is_nan(aff2)) {
3465 isl_aff_free(aff1);
3466 return aff2;
3469 if (!isl_aff_is_cst(aff2) && isl_aff_is_cst(aff1))
3470 return isl_aff_mul(aff2, aff1);
3472 if (!isl_aff_is_cst(aff2))
3473 isl_die(isl_aff_get_ctx(aff1), isl_error_invalid,
3474 "at least one affine expression should be constant",
3475 goto error);
3477 aff1 = isl_aff_cow(aff1);
3478 if (!aff1 || !aff2)
3479 goto error;
3481 aff1 = isl_aff_scale(aff1, aff2->v->el[1]);
3482 aff1 = isl_aff_scale_down(aff1, aff2->v->el[0]);
3484 isl_aff_free(aff2);
3485 return aff1;
3486 error:
3487 isl_aff_free(aff1);
3488 isl_aff_free(aff2);
3489 return NULL;
3492 /* Divide "aff1" by "aff2", assuming "aff2" is a constant.
3494 * If either of the two is NaN, then the result is NaN.
3495 * A division by zero also results in NaN.
3497 __isl_give isl_aff *isl_aff_div(__isl_take isl_aff *aff1,
3498 __isl_take isl_aff *aff2)
3500 isl_bool is_cst, is_zero;
3501 int neg;
3503 if (!aff1 || !aff2)
3504 goto error;
3506 if (isl_aff_is_nan(aff1)) {
3507 isl_aff_free(aff2);
3508 return aff1;
3510 if (isl_aff_is_nan(aff2)) {
3511 isl_aff_free(aff1);
3512 return aff2;
3515 is_cst = isl_aff_is_cst(aff2);
3516 if (is_cst < 0)
3517 goto error;
3518 if (!is_cst)
3519 isl_die(isl_aff_get_ctx(aff2), isl_error_invalid,
3520 "second argument should be a constant", goto error);
3521 is_zero = isl_aff_plain_is_zero(aff2);
3522 if (is_zero < 0)
3523 goto error;
3524 if (is_zero)
3525 return set_nan_free(aff1, aff2);
3527 neg = isl_int_is_neg(aff2->v->el[1]);
3528 if (neg) {
3529 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3530 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3533 aff1 = isl_aff_scale(aff1, aff2->v->el[0]);
3534 aff1 = isl_aff_scale_down(aff1, aff2->v->el[1]);
3536 if (neg) {
3537 isl_int_neg(aff2->v->el[0], aff2->v->el[0]);
3538 isl_int_neg(aff2->v->el[1], aff2->v->el[1]);
3541 isl_aff_free(aff2);
3542 return aff1;
3543 error:
3544 isl_aff_free(aff1);
3545 isl_aff_free(aff2);
3546 return NULL;
3549 __isl_give isl_pw_aff *isl_pw_aff_add(__isl_take isl_pw_aff *pwaff1,
3550 __isl_take isl_pw_aff *pwaff2)
3552 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3553 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_add);
3556 __isl_give isl_pw_aff *isl_pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
3557 __isl_take isl_pw_aff *pwaff2)
3559 isl_pw_aff_align_params_bin(&pwaff1, &pwaff2);
3560 return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_mul);
3563 /* Divide "pa1" by "pa2", assuming "pa2" is a piecewise constant.
3565 __isl_give isl_pw_aff *isl_pw_aff_div(__isl_take isl_pw_aff *pa1,
3566 __isl_take isl_pw_aff *pa2)
3568 int is_cst;
3570 is_cst = isl_pw_aff_is_cst(pa2);
3571 if (is_cst < 0)
3572 goto error;
3573 if (!is_cst)
3574 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3575 "second argument should be a piecewise constant",
3576 goto error);
3577 isl_pw_aff_align_params_bin(&pa1, &pa2);
3578 return isl_pw_aff_on_shared_domain(pa1, pa2, &isl_aff_div);
3579 error:
3580 isl_pw_aff_free(pa1);
3581 isl_pw_aff_free(pa2);
3582 return NULL;
3585 /* Compute the quotient of the integer division of "pa1" by "pa2"
3586 * with rounding towards zero.
3587 * "pa2" is assumed to be a piecewise constant.
3589 * In particular, return
3591 * pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2)
3594 __isl_give isl_pw_aff *isl_pw_aff_tdiv_q(__isl_take isl_pw_aff *pa1,
3595 __isl_take isl_pw_aff *pa2)
3597 int is_cst;
3598 isl_set *cond;
3599 isl_pw_aff *f, *c;
3601 is_cst = isl_pw_aff_is_cst(pa2);
3602 if (is_cst < 0)
3603 goto error;
3604 if (!is_cst)
3605 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3606 "second argument should be a piecewise constant",
3607 goto error);
3609 pa1 = isl_pw_aff_div(pa1, pa2);
3611 cond = isl_pw_aff_nonneg_set(isl_pw_aff_copy(pa1));
3612 f = isl_pw_aff_floor(isl_pw_aff_copy(pa1));
3613 c = isl_pw_aff_ceil(pa1);
3614 return isl_pw_aff_cond(isl_set_indicator_function(cond), f, c);
3615 error:
3616 isl_pw_aff_free(pa1);
3617 isl_pw_aff_free(pa2);
3618 return NULL;
3621 /* Compute the remainder of the integer division of "pa1" by "pa2"
3622 * with rounding towards zero.
3623 * "pa2" is assumed to be a piecewise constant.
3625 * In particular, return
3627 * pa1 - pa2 * (pa1 >= 0 ? floor(pa1/pa2) : ceil(pa1/pa2))
3630 __isl_give isl_pw_aff *isl_pw_aff_tdiv_r(__isl_take isl_pw_aff *pa1,
3631 __isl_take isl_pw_aff *pa2)
3633 int is_cst;
3634 isl_pw_aff *res;
3636 is_cst = isl_pw_aff_is_cst(pa2);
3637 if (is_cst < 0)
3638 goto error;
3639 if (!is_cst)
3640 isl_die(isl_pw_aff_get_ctx(pa2), isl_error_invalid,
3641 "second argument should be a piecewise constant",
3642 goto error);
3643 res = isl_pw_aff_tdiv_q(isl_pw_aff_copy(pa1), isl_pw_aff_copy(pa2));
3644 res = isl_pw_aff_mul(pa2, res);
3645 res = isl_pw_aff_sub(pa1, res);
3646 return res;
3647 error:
3648 isl_pw_aff_free(pa1);
3649 isl_pw_aff_free(pa2);
3650 return NULL;
3653 /* Does either of "pa1" or "pa2" involve any NaN?
3655 static isl_bool either_involves_nan(__isl_keep isl_pw_aff *pa1,
3656 __isl_keep isl_pw_aff *pa2)
3658 isl_bool has_nan;
3660 has_nan = isl_pw_aff_involves_nan(pa1);
3661 if (has_nan < 0 || has_nan)
3662 return has_nan;
3663 return isl_pw_aff_involves_nan(pa2);
3666 /* Return a piecewise affine expression defined on the specified domain
3667 * that represents NaN.
3669 static __isl_give isl_pw_aff *nan_on_domain_set(__isl_take isl_set *dom)
3671 isl_local_space *ls;
3672 isl_pw_aff *pa;
3674 ls = isl_local_space_from_space(isl_set_get_space(dom));
3675 pa = isl_pw_aff_nan_on_domain(ls);
3676 pa = isl_pw_aff_intersect_domain(pa, dom);
3678 return pa;
3681 /* Replace "pa1" and "pa2" (at least one of which involves a NaN)
3682 * by a NaN on their shared domain.
3684 * In principle, the result could be refined to only being NaN
3685 * on the parts of this domain where at least one of "pa1" or "pa2" is NaN.
3687 static __isl_give isl_pw_aff *replace_by_nan(__isl_take isl_pw_aff *pa1,
3688 __isl_take isl_pw_aff *pa2)
3690 isl_set *dom;
3692 dom = isl_set_intersect(isl_pw_aff_domain(pa1), isl_pw_aff_domain(pa2));
3693 return nan_on_domain_set(dom);
3696 static __isl_give isl_pw_aff *pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3697 __isl_take isl_pw_aff *pwaff2)
3699 isl_set *le;
3700 isl_set *dom;
3702 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3703 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3704 le = isl_pw_aff_le_set(isl_pw_aff_copy(pwaff1),
3705 isl_pw_aff_copy(pwaff2));
3706 dom = isl_set_subtract(dom, isl_set_copy(le));
3707 return isl_pw_aff_select(le, pwaff1, dom, pwaff2);
3710 static __isl_give isl_pw_aff *pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3711 __isl_take isl_pw_aff *pwaff2)
3713 isl_set *ge;
3714 isl_set *dom;
3716 dom = isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(pwaff1)),
3717 isl_pw_aff_domain(isl_pw_aff_copy(pwaff2)));
3718 ge = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff1),
3719 isl_pw_aff_copy(pwaff2));
3720 dom = isl_set_subtract(dom, isl_set_copy(ge));
3721 return isl_pw_aff_select(ge, pwaff1, dom, pwaff2);
3724 /* Return an expression for the minimum (if "max" is not set) or
3725 * the maximum (if "max" is set) of "pa1" and "pa2".
3726 * If either expression involves any NaN, then return a NaN
3727 * on the shared domain as result.
3729 static __isl_give isl_pw_aff *pw_aff_min_max(__isl_take isl_pw_aff *pa1,
3730 __isl_take isl_pw_aff *pa2, int max)
3732 isl_bool has_nan;
3734 has_nan = either_involves_nan(pa1, pa2);
3735 if (has_nan < 0)
3736 pa1 = isl_pw_aff_free(pa1);
3737 else if (has_nan)
3738 return replace_by_nan(pa1, pa2);
3740 isl_pw_aff_align_params_bin(&pa1, &pa2);
3741 if (max)
3742 return pw_aff_max(pa1, pa2);
3743 else
3744 return pw_aff_min(pa1, pa2);
3747 /* Return an expression for the minimum of "pwaff1" and "pwaff2".
3749 __isl_give isl_pw_aff *isl_pw_aff_min(__isl_take isl_pw_aff *pwaff1,
3750 __isl_take isl_pw_aff *pwaff2)
3752 return pw_aff_min_max(pwaff1, pwaff2, 0);
3755 /* Return an expression for the maximum of "pwaff1" and "pwaff2".
3757 __isl_give isl_pw_aff *isl_pw_aff_max(__isl_take isl_pw_aff *pwaff1,
3758 __isl_take isl_pw_aff *pwaff2)
3760 return pw_aff_min_max(pwaff1, pwaff2, 1);
3763 /* Does "pa" not involve any NaN?
3765 static isl_bool pw_aff_no_nan(__isl_keep isl_pw_aff *pa, void *user)
3767 return isl_bool_not(isl_pw_aff_involves_nan(pa));
3770 /* Does any element of "list" involve any NaN?
3772 * That is, is it not the case that every element does not involve any NaN?
3774 static isl_bool isl_pw_aff_list_involves_nan(__isl_keep isl_pw_aff_list *list)
3776 return isl_bool_not(isl_pw_aff_list_every(list, &pw_aff_no_nan, NULL));
3779 /* Replace "list" (consisting of "n" elements, of which
3780 * at least one element involves a NaN)
3781 * by a NaN on the shared domain of the elements.
3783 * In principle, the result could be refined to only being NaN
3784 * on the parts of this domain where at least one of the elements is NaN.
3786 static __isl_give isl_pw_aff *replace_list_by_nan(
3787 __isl_take isl_pw_aff_list *list, int n)
3789 int i;
3790 isl_set *dom;
3792 dom = isl_pw_aff_domain(isl_pw_aff_list_get_at(list, 0));
3793 for (i = 1; i < n; ++i) {
3794 isl_set *dom_i;
3796 dom_i = isl_pw_aff_domain(isl_pw_aff_list_get_at(list, i));
3797 dom = isl_set_intersect(dom, dom_i);
3800 isl_pw_aff_list_free(list);
3801 return nan_on_domain_set(dom);
3804 /* Return the set where the element at "pos1" of "list" is less than or
3805 * equal to the element at "pos2".
3806 * Equality is only allowed if "pos1" is smaller than "pos2".
3808 static __isl_give isl_set *less(__isl_keep isl_pw_aff_list *list,
3809 int pos1, int pos2)
3811 isl_pw_aff *pa1, *pa2;
3813 pa1 = isl_pw_aff_list_get_at(list, pos1);
3814 pa2 = isl_pw_aff_list_get_at(list, pos2);
3816 if (pos1 < pos2)
3817 return isl_pw_aff_le_set(pa1, pa2);
3818 else
3819 return isl_pw_aff_lt_set(pa1, pa2);
3822 /* Return an isl_pw_aff that maps each element in the intersection of the
3823 * domains of the piecewise affine expressions in "list"
3824 * to the maximal (if "max" is set) or minimal (if "max" is not set)
3825 * expression in "list" at that element.
3826 * If any expression involves any NaN, then return a NaN
3827 * on the shared domain as result.
3829 * If "list" has n elements, then the result consists of n pieces,
3830 * where, in the case of a minimum, each piece has as value expression
3831 * the value expression of one of the elements and as domain
3832 * the set of elements where that value expression
3833 * is less than (or equal) to the other value expressions.
3834 * In the case of a maximum, the condition is
3835 * that all the other value expressions are less than (or equal)
3836 * to the given value expression.
3838 * In order to produce disjoint pieces, a pair of elements
3839 * in the original domain is only allowed to be equal to each other
3840 * on exactly one of the two pieces corresponding to the two elements.
3841 * The position in the list is used to break ties.
3842 * In particular, in the case of a minimum,
3843 * in the piece corresponding to a given element,
3844 * this element is allowed to be equal to any later element in the list,
3845 * but not to any earlier element in the list.
3847 static __isl_give isl_pw_aff *isl_pw_aff_list_opt(
3848 __isl_take isl_pw_aff_list *list, int max)
3850 int i, j;
3851 isl_bool has_nan;
3852 isl_size n;
3853 isl_space *space;
3854 isl_pw_aff *pa, *res;
3856 n = isl_pw_aff_list_size(list);
3857 if (n < 0)
3858 goto error;
3859 if (n < 1)
3860 isl_die(isl_pw_aff_list_get_ctx(list), isl_error_invalid,
3861 "list should contain at least one element", goto error);
3863 has_nan = isl_pw_aff_list_involves_nan(list);
3864 if (has_nan < 0)
3865 goto error;
3866 if (has_nan)
3867 return replace_list_by_nan(list, n);
3869 pa = isl_pw_aff_list_get_at(list, 0);
3870 space = isl_pw_aff_get_space(pa);
3871 isl_pw_aff_free(pa);
3872 res = isl_pw_aff_empty(space);
3874 for (i = 0; i < n; ++i) {
3875 pa = isl_pw_aff_list_get_at(list, i);
3876 for (j = 0; j < n; ++j) {
3877 isl_set *dom;
3879 if (j == i)
3880 continue;
3881 if (max)
3882 dom = less(list, j, i);
3883 else
3884 dom = less(list, i, j);
3886 pa = isl_pw_aff_intersect_domain(pa, dom);
3888 res = isl_pw_aff_add_disjoint(res, pa);
3891 isl_pw_aff_list_free(list);
3892 return res;
3893 error:
3894 isl_pw_aff_list_free(list);
3895 return NULL;
3898 /* Return an isl_pw_aff that maps each element in the intersection of the
3899 * domains of the elements of list to the minimal corresponding affine
3900 * expression.
3902 __isl_give isl_pw_aff *isl_pw_aff_list_min(__isl_take isl_pw_aff_list *list)
3904 return isl_pw_aff_list_opt(list, 0);
3907 /* Return an isl_pw_aff that maps each element in the intersection of the
3908 * domains of the elements of list to the maximal corresponding affine
3909 * expression.
3911 __isl_give isl_pw_aff *isl_pw_aff_list_max(__isl_take isl_pw_aff_list *list)
3913 return isl_pw_aff_list_opt(list, 1);
3916 /* Mark the domains of "pwaff" as rational.
3918 __isl_give isl_pw_aff *isl_pw_aff_set_rational(__isl_take isl_pw_aff *pwaff)
3920 int i;
3922 pwaff = isl_pw_aff_cow(pwaff);
3923 if (!pwaff)
3924 return NULL;
3925 if (pwaff->n == 0)
3926 return pwaff;
3928 for (i = 0; i < pwaff->n; ++i) {
3929 pwaff->p[i].set = isl_set_set_rational(pwaff->p[i].set);
3930 if (!pwaff->p[i].set)
3931 return isl_pw_aff_free(pwaff);
3934 return pwaff;
3937 /* Mark the domains of the elements of "list" as rational.
3939 __isl_give isl_pw_aff_list *isl_pw_aff_list_set_rational(
3940 __isl_take isl_pw_aff_list *list)
3942 int i, n;
3944 if (!list)
3945 return NULL;
3946 if (list->n == 0)
3947 return list;
3949 n = list->n;
3950 for (i = 0; i < n; ++i) {
3951 isl_pw_aff *pa;
3953 pa = isl_pw_aff_list_get_pw_aff(list, i);
3954 pa = isl_pw_aff_set_rational(pa);
3955 list = isl_pw_aff_list_set_pw_aff(list, i, pa);
3958 return list;
3961 /* Do the parameters of "aff" match those of "space"?
3963 isl_bool isl_aff_matching_params(__isl_keep isl_aff *aff,
3964 __isl_keep isl_space *space)
3966 isl_space *aff_space;
3967 isl_bool match;
3969 if (!aff || !space)
3970 return isl_bool_error;
3972 aff_space = isl_aff_get_domain_space(aff);
3974 match = isl_space_has_equal_params(space, aff_space);
3976 isl_space_free(aff_space);
3977 return match;
3980 /* Check that the domain space of "aff" matches "space".
3982 isl_stat isl_aff_check_match_domain_space(__isl_keep isl_aff *aff,
3983 __isl_keep isl_space *space)
3985 isl_space *aff_space;
3986 isl_bool match;
3988 if (!aff || !space)
3989 return isl_stat_error;
3991 aff_space = isl_aff_get_domain_space(aff);
3993 match = isl_space_has_equal_params(space, aff_space);
3994 if (match < 0)
3995 goto error;
3996 if (!match)
3997 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
3998 "parameters don't match", goto error);
3999 match = isl_space_tuple_is_equal(space, isl_dim_in,
4000 aff_space, isl_dim_set);
4001 if (match < 0)
4002 goto error;
4003 if (!match)
4004 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
4005 "domains don't match", goto error);
4006 isl_space_free(aff_space);
4007 return isl_stat_ok;
4008 error:
4009 isl_space_free(aff_space);
4010 return isl_stat_error;
4013 /* Return the shared (universe) domain of the elements of "ma".
4015 * Since an isl_multi_aff (and an isl_aff) is always total,
4016 * the domain is always the universe set in its domain space.
4017 * This is a helper function for use in the generic isl_multi_*_bind.
4019 static __isl_give isl_basic_set *isl_multi_aff_domain(
4020 __isl_take isl_multi_aff *ma)
4022 isl_space *space;
4024 space = isl_multi_aff_get_space(ma);
4025 isl_multi_aff_free(ma);
4027 return isl_basic_set_universe(isl_space_domain(space));
4030 #undef BASE
4031 #define BASE aff
4033 #include <isl_multi_no_explicit_domain.c>
4034 #include <isl_multi_templ.c>
4035 #include <isl_multi_un_op_templ.c>
4036 #include <isl_multi_bin_val_templ.c>
4037 #include <isl_multi_add_constant_templ.c>
4038 #include <isl_multi_align_set.c>
4039 #include <isl_multi_arith_templ.c>
4040 #include <isl_multi_bind_domain_templ.c>
4041 #include <isl_multi_cmp.c>
4042 #include <isl_multi_dim_id_templ.c>
4043 #include <isl_multi_dims.c>
4044 #include <isl_multi_floor.c>
4045 #include <isl_multi_from_base_templ.c>
4046 #include <isl_multi_identity_templ.c>
4047 #include <isl_multi_insert_domain_templ.c>
4048 #include <isl_multi_locals_templ.c>
4049 #include <isl_multi_move_dims_templ.c>
4050 #include <isl_multi_nan_templ.c>
4051 #include <isl_multi_product_templ.c>
4052 #include <isl_multi_splice_templ.c>
4053 #include <isl_multi_tuple_id_templ.c>
4054 #include <isl_multi_unbind_params_templ.c>
4055 #include <isl_multi_zero_templ.c>
4057 #undef DOMBASE
4058 #define DOMBASE set
4059 #include <isl_multi_check_domain_templ.c>
4060 #include <isl_multi_apply_set_no_explicit_domain_templ.c>
4061 #include <isl_multi_gist.c>
4063 #undef DOMBASE
4064 #define DOMBASE basic_set
4065 #include <isl_multi_bind_templ.c>
4067 /* Construct an isl_multi_aff living in "space" that corresponds
4068 * to the affine transformation matrix "mat".
4070 __isl_give isl_multi_aff *isl_multi_aff_from_aff_mat(
4071 __isl_take isl_space *space, __isl_take isl_mat *mat)
4073 isl_ctx *ctx;
4074 isl_local_space *ls = NULL;
4075 isl_multi_aff *ma = NULL;
4076 isl_size n_row, n_col, n_out, total;
4077 int i;
4079 if (!space || !mat)
4080 goto error;
4082 ctx = isl_mat_get_ctx(mat);
4084 n_row = isl_mat_rows(mat);
4085 n_col = isl_mat_cols(mat);
4086 n_out = isl_space_dim(space, isl_dim_out);
4087 total = isl_space_dim(space, isl_dim_all);
4088 if (n_row < 0 || n_col < 0 || n_out < 0 || total < 0)
4089 goto error;
4090 if (n_row < 1)
4091 isl_die(ctx, isl_error_invalid,
4092 "insufficient number of rows", goto error);
4093 if (n_col < 1)
4094 isl_die(ctx, isl_error_invalid,
4095 "insufficient number of columns", goto error);
4096 if (1 + n_out != n_row || 2 + total != n_row + n_col)
4097 isl_die(ctx, isl_error_invalid,
4098 "dimension mismatch", goto error);
4100 ma = isl_multi_aff_zero(isl_space_copy(space));
4101 space = isl_space_domain(space);
4102 ls = isl_local_space_from_space(isl_space_copy(space));
4104 for (i = 0; i < n_row - 1; ++i) {
4105 isl_vec *v;
4106 isl_aff *aff;
4108 v = isl_vec_alloc(ctx, 1 + n_col);
4109 if (!v)
4110 goto error;
4111 isl_int_set(v->el[0], mat->row[0][0]);
4112 isl_seq_cpy(v->el + 1, mat->row[1 + i], n_col);
4113 v = isl_vec_normalize(v);
4114 aff = isl_aff_alloc_vec_validated(isl_local_space_copy(ls), v);
4115 ma = isl_multi_aff_set_aff(ma, i, aff);
4118 isl_space_free(space);
4119 isl_local_space_free(ls);
4120 isl_mat_free(mat);
4121 return ma;
4122 error:
4123 isl_space_free(space);
4124 isl_local_space_free(ls);
4125 isl_mat_free(mat);
4126 isl_multi_aff_free(ma);
4127 return NULL;
4130 /* Return the constant terms of the affine expressions of "ma".
4132 __isl_give isl_multi_val *isl_multi_aff_get_constant_multi_val(
4133 __isl_keep isl_multi_aff *ma)
4135 int i;
4136 isl_size n;
4137 isl_space *space;
4138 isl_multi_val *mv;
4140 n = isl_multi_aff_size(ma);
4141 if (n < 0)
4142 return NULL;
4143 space = isl_space_range(isl_multi_aff_get_space(ma));
4144 space = isl_space_drop_all_params(space);
4145 mv = isl_multi_val_zero(space);
4147 for (i = 0; i < n; ++i) {
4148 isl_aff *aff;
4149 isl_val *val;
4151 aff = isl_multi_aff_get_at(ma, i);
4152 val = isl_aff_get_constant_val(aff);
4153 isl_aff_free(aff);
4154 mv = isl_multi_val_set_at(mv, i, val);
4157 return mv;
4160 /* Remove any internal structure of the domain of "ma".
4161 * If there is any such internal structure in the input,
4162 * then the name of the corresponding space is also removed.
4164 __isl_give isl_multi_aff *isl_multi_aff_flatten_domain(
4165 __isl_take isl_multi_aff *ma)
4167 isl_space *space;
4169 if (!ma)
4170 return NULL;
4172 if (!ma->space->nested[0])
4173 return ma;
4175 space = isl_multi_aff_get_space(ma);
4176 space = isl_space_flatten_domain(space);
4177 ma = isl_multi_aff_reset_space(ma, space);
4179 return ma;
4182 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
4183 * of the space to its domain.
4185 __isl_give isl_multi_aff *isl_multi_aff_domain_map(__isl_take isl_space *space)
4187 int i;
4188 isl_size n_in;
4189 isl_local_space *ls;
4190 isl_multi_aff *ma;
4192 if (!space)
4193 return NULL;
4194 if (!isl_space_is_map(space))
4195 isl_die(isl_space_get_ctx(space), isl_error_invalid,
4196 "not a map space", goto error);
4198 n_in = isl_space_dim(space, isl_dim_in);
4199 if (n_in < 0)
4200 goto error;
4201 space = isl_space_domain_map(space);
4203 ma = isl_multi_aff_alloc(isl_space_copy(space));
4204 if (n_in == 0) {
4205 isl_space_free(space);
4206 return ma;
4209 space = isl_space_domain(space);
4210 ls = isl_local_space_from_space(space);
4211 for (i = 0; i < n_in; ++i) {
4212 isl_aff *aff;
4214 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4215 isl_dim_set, i);
4216 ma = isl_multi_aff_set_aff(ma, i, aff);
4218 isl_local_space_free(ls);
4219 return ma;
4220 error:
4221 isl_space_free(space);
4222 return NULL;
4225 /* This function performs the same operation as isl_multi_aff_domain_map,
4226 * but is considered as a function on an isl_space when exported.
4228 __isl_give isl_multi_aff *isl_space_domain_map_multi_aff(
4229 __isl_take isl_space *space)
4231 return isl_multi_aff_domain_map(space);
4234 /* Given a map space, return an isl_multi_aff that maps a wrapped copy
4235 * of the space to its range.
4237 __isl_give isl_multi_aff *isl_multi_aff_range_map(__isl_take isl_space *space)
4239 int i;
4240 isl_size n_in, n_out;
4241 isl_local_space *ls;
4242 isl_multi_aff *ma;
4244 if (!space)
4245 return NULL;
4246 if (!isl_space_is_map(space))
4247 isl_die(isl_space_get_ctx(space), isl_error_invalid,
4248 "not a map space", goto error);
4250 n_in = isl_space_dim(space, isl_dim_in);
4251 n_out = isl_space_dim(space, isl_dim_out);
4252 if (n_in < 0 || n_out < 0)
4253 goto error;
4254 space = isl_space_range_map(space);
4256 ma = isl_multi_aff_alloc(isl_space_copy(space));
4257 if (n_out == 0) {
4258 isl_space_free(space);
4259 return ma;
4262 space = isl_space_domain(space);
4263 ls = isl_local_space_from_space(space);
4264 for (i = 0; i < n_out; ++i) {
4265 isl_aff *aff;
4267 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4268 isl_dim_set, n_in + i);
4269 ma = isl_multi_aff_set_aff(ma, i, aff);
4271 isl_local_space_free(ls);
4272 return ma;
4273 error:
4274 isl_space_free(space);
4275 return NULL;
4278 /* This function performs the same operation as isl_multi_aff_range_map,
4279 * but is considered as a function on an isl_space when exported.
4281 __isl_give isl_multi_aff *isl_space_range_map_multi_aff(
4282 __isl_take isl_space *space)
4284 return isl_multi_aff_range_map(space);
4287 /* Given a map space, return an isl_pw_multi_aff that maps a wrapped copy
4288 * of the space to its domain.
4290 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_domain_map(
4291 __isl_take isl_space *space)
4293 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_domain_map(space));
4296 /* This function performs the same operation as isl_pw_multi_aff_domain_map,
4297 * but is considered as a function on an isl_space when exported.
4299 __isl_give isl_pw_multi_aff *isl_space_domain_map_pw_multi_aff(
4300 __isl_take isl_space *space)
4302 return isl_pw_multi_aff_domain_map(space);
4305 /* Given a map space, return an isl_pw_multi_aff that maps a wrapped copy
4306 * of the space to its range.
4308 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_map(
4309 __isl_take isl_space *space)
4311 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_range_map(space));
4314 /* This function performs the same operation as isl_pw_multi_aff_range_map,
4315 * but is considered as a function on an isl_space when exported.
4317 __isl_give isl_pw_multi_aff *isl_space_range_map_pw_multi_aff(
4318 __isl_take isl_space *space)
4320 return isl_pw_multi_aff_range_map(space);
4323 /* Given the space of a set and a range of set dimensions,
4324 * construct an isl_multi_aff that projects out those dimensions.
4326 __isl_give isl_multi_aff *isl_multi_aff_project_out_map(
4327 __isl_take isl_space *space, enum isl_dim_type type,
4328 unsigned first, unsigned n)
4330 int i;
4331 isl_size dim;
4332 isl_local_space *ls;
4333 isl_multi_aff *ma;
4335 if (!space)
4336 return NULL;
4337 if (!isl_space_is_set(space))
4338 isl_die(isl_space_get_ctx(space), isl_error_unsupported,
4339 "expecting set space", goto error);
4340 if (type != isl_dim_set)
4341 isl_die(isl_space_get_ctx(space), isl_error_invalid,
4342 "only set dimensions can be projected out", goto error);
4343 if (isl_space_check_range(space, type, first, n) < 0)
4344 goto error;
4346 dim = isl_space_dim(space, isl_dim_set);
4347 if (dim < 0)
4348 goto error;
4350 space = isl_space_from_domain(space);
4351 space = isl_space_add_dims(space, isl_dim_out, dim - n);
4353 if (dim == n)
4354 return isl_multi_aff_alloc(space);
4356 ma = isl_multi_aff_alloc(isl_space_copy(space));
4357 space = isl_space_domain(space);
4358 ls = isl_local_space_from_space(space);
4360 for (i = 0; i < first; ++i) {
4361 isl_aff *aff;
4363 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4364 isl_dim_set, i);
4365 ma = isl_multi_aff_set_aff(ma, i, aff);
4368 for (i = 0; i < dim - (first + n); ++i) {
4369 isl_aff *aff;
4371 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
4372 isl_dim_set, first + n + i);
4373 ma = isl_multi_aff_set_aff(ma, first + i, aff);
4376 isl_local_space_free(ls);
4377 return ma;
4378 error:
4379 isl_space_free(space);
4380 return NULL;
4383 /* Given the space of a set and a range of set dimensions,
4384 * construct an isl_pw_multi_aff that projects out those dimensions.
4386 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_project_out_map(
4387 __isl_take isl_space *space, enum isl_dim_type type,
4388 unsigned first, unsigned n)
4390 isl_multi_aff *ma;
4392 ma = isl_multi_aff_project_out_map(space, type, first, n);
4393 return isl_pw_multi_aff_from_multi_aff(ma);
4396 /* This function performs the same operation as isl_pw_multi_aff_from_multi_aff,
4397 * but is considered as a function on an isl_multi_aff when exported.
4399 __isl_give isl_pw_multi_aff *isl_multi_aff_to_pw_multi_aff(
4400 __isl_take isl_multi_aff *ma)
4402 return isl_pw_multi_aff_from_multi_aff(ma);
4405 /* Create a piecewise multi-affine expression in the given space that maps each
4406 * input dimension to the corresponding output dimension.
4408 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_identity(
4409 __isl_take isl_space *space)
4411 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_identity(space));
4414 /* Create a piecewise multi expression that maps elements in the given space
4415 * to themselves.
4417 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_identity_on_domain_space(
4418 __isl_take isl_space *space)
4420 isl_multi_aff *ma;
4422 ma = isl_multi_aff_identity_on_domain_space(space);
4423 return isl_pw_multi_aff_from_multi_aff(ma);
4426 /* This function performs the same operation as
4427 * isl_pw_multi_aff_identity_on_domain_space,
4428 * but is considered as a function on an isl_space when exported.
4430 __isl_give isl_pw_multi_aff *isl_space_identity_pw_multi_aff_on_domain(
4431 __isl_take isl_space *space)
4433 return isl_pw_multi_aff_identity_on_domain_space(space);
4436 /* Exploit the equalities in "eq" to simplify the affine expressions.
4438 static __isl_give isl_multi_aff *isl_multi_aff_substitute_equalities(
4439 __isl_take isl_multi_aff *maff, __isl_take isl_basic_set *eq)
4441 isl_size n;
4442 int i;
4444 n = isl_multi_aff_size(maff);
4445 if (n < 0 || !eq)
4446 goto error;
4448 for (i = 0; i < n; ++i) {
4449 isl_aff *aff;
4451 aff = isl_multi_aff_take_at(maff, i);
4452 aff = isl_aff_substitute_equalities(aff,
4453 isl_basic_set_copy(eq));
4454 maff = isl_multi_aff_restore_at(maff, i, aff);
4457 isl_basic_set_free(eq);
4458 return maff;
4459 error:
4460 isl_basic_set_free(eq);
4461 isl_multi_aff_free(maff);
4462 return NULL;
4465 __isl_give isl_multi_aff *isl_multi_aff_scale(__isl_take isl_multi_aff *maff,
4466 isl_int f)
4468 isl_size n;
4469 int i;
4471 n = isl_multi_aff_size(maff);
4472 if (n < 0)
4473 return isl_multi_aff_free(maff);
4475 for (i = 0; i < n; ++i) {
4476 isl_aff *aff;
4478 aff = isl_multi_aff_take_at(maff, i);
4479 aff = isl_aff_scale(aff, f);
4480 maff = isl_multi_aff_restore_at(maff, i, aff);
4483 return maff;
4486 __isl_give isl_multi_aff *isl_multi_aff_add_on_domain(__isl_keep isl_set *dom,
4487 __isl_take isl_multi_aff *maff1, __isl_take isl_multi_aff *maff2)
4489 maff1 = isl_multi_aff_add(maff1, maff2);
4490 maff1 = isl_multi_aff_gist(maff1, isl_set_copy(dom));
4491 return maff1;
4494 isl_bool isl_multi_aff_is_empty(__isl_keep isl_multi_aff *maff)
4496 if (!maff)
4497 return isl_bool_error;
4499 return isl_bool_false;
4502 /* Return the set of domain elements where "ma1" is lexicographically
4503 * smaller than or equal to "ma2".
4505 __isl_give isl_set *isl_multi_aff_lex_le_set(__isl_take isl_multi_aff *ma1,
4506 __isl_take isl_multi_aff *ma2)
4508 return isl_multi_aff_lex_ge_set(ma2, ma1);
4511 /* Return the set of domain elements where "ma1" is lexicographically
4512 * smaller than "ma2".
4514 __isl_give isl_set *isl_multi_aff_lex_lt_set(__isl_take isl_multi_aff *ma1,
4515 __isl_take isl_multi_aff *ma2)
4517 return isl_multi_aff_lex_gt_set(ma2, ma1);
4520 /* Return the set of domain elements where "ma1" is lexicographically
4521 * greater than to "ma2". If "equal" is set, then include the domain
4522 * elements where they are equal.
4523 * Do this for the case where there are no entries.
4524 * In this case, "ma1" cannot be greater than "ma2",
4525 * but it is (greater than or) equal to "ma2".
4527 static __isl_give isl_set *isl_multi_aff_lex_gte_set_0d(
4528 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2, int equal)
4530 isl_space *space;
4532 space = isl_multi_aff_get_domain_space(ma1);
4534 isl_multi_aff_free(ma1);
4535 isl_multi_aff_free(ma2);
4537 if (equal)
4538 return isl_set_universe(space);
4539 else
4540 return isl_set_empty(space);
4543 /* Return the set where entry "i" of "ma1" and "ma2"
4544 * satisfy the relation prescribed by "cmp".
4546 static __isl_give isl_set *isl_multi_aff_order_at(__isl_keep isl_multi_aff *ma1,
4547 __isl_keep isl_multi_aff *ma2, int i,
4548 __isl_give isl_set *(*cmp)(__isl_take isl_aff *aff1,
4549 __isl_take isl_aff *aff2))
4551 isl_aff *aff1, *aff2;
4553 aff1 = isl_multi_aff_get_at(ma1, i);
4554 aff2 = isl_multi_aff_get_at(ma2, i);
4555 return cmp(aff1, aff2);
4558 /* Return the set of domain elements where "ma1" is lexicographically
4559 * greater than to "ma2". If "equal" is set, then include the domain
4560 * elements where they are equal.
4562 * In particular, for all but the final entry,
4563 * include the set of elements where this entry is strictly greater in "ma1"
4564 * and all previous entries are equal.
4565 * The final entry is also allowed to be equal in the two functions
4566 * if "equal" is set.
4568 * The case where there are no entries is handled separately.
4570 static __isl_give isl_set *isl_multi_aff_lex_gte_set(
4571 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2, int equal)
4573 int i;
4574 isl_size n;
4575 isl_space *space;
4576 isl_set *res;
4577 isl_set *equal_set;
4578 isl_set *gte;
4580 if (isl_multi_aff_check_equal_space(ma1, ma2) < 0)
4581 goto error;
4582 n = isl_multi_aff_size(ma1);
4583 if (n < 0)
4584 goto error;
4585 if (n == 0)
4586 return isl_multi_aff_lex_gte_set_0d(ma1, ma2, equal);
4588 space = isl_multi_aff_get_domain_space(ma1);
4589 res = isl_set_empty(isl_space_copy(space));
4590 equal_set = isl_set_universe(space);
4592 for (i = 0; i + 1 < n; ++i) {
4593 isl_bool empty;
4594 isl_set *gt, *eq;
4596 gt = isl_multi_aff_order_at(ma1, ma2, i, &isl_aff_gt_set);
4597 gt = isl_set_intersect(gt, isl_set_copy(equal_set));
4598 res = isl_set_union(res, gt);
4599 eq = isl_multi_aff_order_at(ma1, ma2, i, &isl_aff_eq_set);
4600 equal_set = isl_set_intersect(equal_set, eq);
4602 empty = isl_set_is_empty(equal_set);
4603 if (empty >= 0 && empty)
4604 break;
4607 if (equal)
4608 gte = isl_multi_aff_order_at(ma1, ma2, n - 1, &isl_aff_ge_set);
4609 else
4610 gte = isl_multi_aff_order_at(ma1, ma2, n - 1, &isl_aff_gt_set);
4611 isl_multi_aff_free(ma1);
4612 isl_multi_aff_free(ma2);
4614 gte = isl_set_intersect(gte, equal_set);
4615 return isl_set_union(res, gte);
4616 error:
4617 isl_multi_aff_free(ma1);
4618 isl_multi_aff_free(ma2);
4619 return NULL;
4622 /* Return the set of domain elements where "ma1" is lexicographically
4623 * greater than or equal to "ma2".
4625 __isl_give isl_set *isl_multi_aff_lex_ge_set(__isl_take isl_multi_aff *ma1,
4626 __isl_take isl_multi_aff *ma2)
4628 return isl_multi_aff_lex_gte_set(ma1, ma2, 1);
4631 /* Return the set of domain elements where "ma1" is lexicographically
4632 * greater than "ma2".
4634 __isl_give isl_set *isl_multi_aff_lex_gt_set(__isl_take isl_multi_aff *ma1,
4635 __isl_take isl_multi_aff *ma2)
4637 return isl_multi_aff_lex_gte_set(ma1, ma2, 0);
4640 #define isl_multi_aff_zero_in_space isl_multi_aff_zero
4642 #undef PW
4643 #define PW isl_pw_multi_aff
4644 #undef BASE
4645 #define BASE multi_aff
4646 #undef EL_IS_ZERO
4647 #define EL_IS_ZERO is_empty
4648 #undef ZERO
4649 #define ZERO empty
4650 #undef IS_ZERO
4651 #define IS_ZERO is_empty
4652 #undef FIELD
4653 #define FIELD maff
4654 #undef DEFAULT_IS_ZERO
4655 #define DEFAULT_IS_ZERO 0
4657 #include <isl_pw_templ.c>
4658 #include <isl_pw_un_op_templ.c>
4659 #include <isl_pw_add_constant_multi_val_templ.c>
4660 #include <isl_pw_add_constant_val_templ.c>
4661 #include <isl_pw_add_disjoint_templ.c>
4662 #include <isl_pw_bind_domain_templ.c>
4663 #include <isl_pw_fix_templ.c>
4664 #include <isl_pw_from_range_templ.c>
4665 #include <isl_pw_insert_dims_templ.c>
4666 #include <isl_pw_insert_domain_templ.c>
4667 #include <isl_pw_locals_templ.c>
4668 #include <isl_pw_move_dims_templ.c>
4669 #include <isl_pw_neg_templ.c>
4670 #include <isl_pw_pullback_templ.c>
4671 #include <isl_pw_range_tuple_id_templ.c>
4672 #include <isl_pw_union_opt.c>
4674 #undef BASE
4675 #define BASE pw_multi_aff
4677 #include <isl_union_multi.c>
4678 #include "isl_union_locals_templ.c"
4679 #include <isl_union_neg.c>
4680 #include <isl_union_sub_templ.c>
4682 #undef BASE
4683 #define BASE multi_aff
4685 #include <isl_union_pw_templ.c>
4687 /* Generic function for extracting a factor from a product "pma".
4688 * "check_space" checks that the space is that of the right kind of product.
4689 * "space_factor" extracts the factor from the space.
4690 * "multi_aff_factor" extracts the factor from the constituent functions.
4692 static __isl_give isl_pw_multi_aff *pw_multi_aff_factor(
4693 __isl_take isl_pw_multi_aff *pma,
4694 isl_stat (*check_space)(__isl_keep isl_pw_multi_aff *pma),
4695 __isl_give isl_space *(*space_factor)(__isl_take isl_space *space),
4696 __isl_give isl_multi_aff *(*multi_aff_factor)(
4697 __isl_take isl_multi_aff *ma))
4699 int i;
4700 isl_space *space;
4702 if (check_space(pma) < 0)
4703 return isl_pw_multi_aff_free(pma);
4705 space = isl_pw_multi_aff_take_space(pma);
4706 space = space_factor(space);
4708 for (i = 0; pma && i < pma->n; ++i) {
4709 isl_multi_aff *ma;
4711 ma = isl_pw_multi_aff_take_base_at(pma, i);
4712 ma = multi_aff_factor(ma);
4713 pma = isl_pw_multi_aff_restore_base_at(pma, i, ma);
4716 pma = isl_pw_multi_aff_restore_space(pma, space);
4718 return pma;
4721 /* Is the range of "pma" a wrapped relation?
4723 static isl_bool isl_pw_multi_aff_range_is_wrapping(
4724 __isl_keep isl_pw_multi_aff *pma)
4726 return isl_space_range_is_wrapping(isl_pw_multi_aff_peek_space(pma));
4729 /* Check that the range of "pma" is a product.
4731 static isl_stat pw_multi_aff_check_range_product(
4732 __isl_keep isl_pw_multi_aff *pma)
4734 isl_bool wraps;
4736 wraps = isl_pw_multi_aff_range_is_wrapping(pma);
4737 if (wraps < 0)
4738 return isl_stat_error;
4739 if (!wraps)
4740 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
4741 "range is not a product", return isl_stat_error);
4742 return isl_stat_ok;
4745 /* Given a function A -> [B -> C], extract the function A -> B.
4747 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_factor_domain(
4748 __isl_take isl_pw_multi_aff *pma)
4750 return pw_multi_aff_factor(pma, &pw_multi_aff_check_range_product,
4751 &isl_space_range_factor_domain,
4752 &isl_multi_aff_range_factor_domain);
4755 /* Given a function A -> [B -> C], extract the function A -> C.
4757 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_factor_range(
4758 __isl_take isl_pw_multi_aff *pma)
4760 return pw_multi_aff_factor(pma, &pw_multi_aff_check_range_product,
4761 &isl_space_range_factor_range,
4762 &isl_multi_aff_range_factor_range);
4765 /* Given two piecewise multi affine expressions, return a piecewise
4766 * multi-affine expression defined on the union of the definition domains
4767 * of the inputs that is equal to the lexicographic maximum of the two
4768 * inputs on each cell. If only one of the two inputs is defined on
4769 * a given cell, then it is considered to be the maximum.
4771 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmax(
4772 __isl_take isl_pw_multi_aff *pma1,
4773 __isl_take isl_pw_multi_aff *pma2)
4775 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
4776 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4777 &isl_multi_aff_lex_ge_set);
4780 /* Given two piecewise multi affine expressions, return a piecewise
4781 * multi-affine expression defined on the union of the definition domains
4782 * of the inputs that is equal to the lexicographic minimum of the two
4783 * inputs on each cell. If only one of the two inputs is defined on
4784 * a given cell, then it is considered to be the minimum.
4786 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_lexmin(
4787 __isl_take isl_pw_multi_aff *pma1,
4788 __isl_take isl_pw_multi_aff *pma2)
4790 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
4791 return isl_pw_multi_aff_union_opt_cmp(pma1, pma2,
4792 &isl_multi_aff_lex_le_set);
4795 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_add(
4796 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4798 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
4799 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4800 &isl_multi_aff_add);
4803 /* Subtract "pma2" from "pma1" and return the result.
4805 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_sub(
4806 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4808 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
4809 return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
4810 &isl_multi_aff_sub);
4813 /* Given two piecewise multi-affine expressions A -> B and C -> D,
4814 * construct a piecewise multi-affine expression [A -> C] -> [B -> D].
4816 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_product(
4817 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
4819 int i, j, n;
4820 isl_space *space;
4821 isl_pw_multi_aff *res;
4823 if (isl_pw_multi_aff_align_params_bin(&pma1, &pma2) < 0)
4824 goto error;
4826 n = pma1->n * pma2->n;
4827 space = isl_space_product(isl_space_copy(pma1->dim),
4828 isl_space_copy(pma2->dim));
4829 res = isl_pw_multi_aff_alloc_size(space, n);
4831 for (i = 0; i < pma1->n; ++i) {
4832 for (j = 0; j < pma2->n; ++j) {
4833 isl_set *domain;
4834 isl_multi_aff *ma;
4836 domain = isl_set_product(isl_set_copy(pma1->p[i].set),
4837 isl_set_copy(pma2->p[j].set));
4838 ma = isl_multi_aff_product(
4839 isl_multi_aff_copy(pma1->p[i].maff),
4840 isl_multi_aff_copy(pma2->p[j].maff));
4841 res = isl_pw_multi_aff_add_piece(res, domain, ma);
4845 isl_pw_multi_aff_free(pma1);
4846 isl_pw_multi_aff_free(pma2);
4847 return res;
4848 error:
4849 isl_pw_multi_aff_free(pma1);
4850 isl_pw_multi_aff_free(pma2);
4851 return NULL;
4854 /* Subtract the initial "n" elements in "ma" with coefficients in "c" and
4855 * denominator "denom".
4856 * "denom" is allowed to be negative, in which case the actual denominator
4857 * is -denom and the expressions are added instead.
4859 static __isl_give isl_aff *subtract_initial(__isl_take isl_aff *aff,
4860 __isl_keep isl_multi_aff *ma, int n, isl_int *c, isl_int denom)
4862 int i, first;
4863 int sign;
4864 isl_int d;
4866 first = isl_seq_first_non_zero(c, n);
4867 if (first == -1)
4868 return aff;
4870 sign = isl_int_sgn(denom);
4871 isl_int_init(d);
4872 isl_int_abs(d, denom);
4873 for (i = first; i < n; ++i) {
4874 isl_aff *aff_i;
4876 if (isl_int_is_zero(c[i]))
4877 continue;
4878 aff_i = isl_multi_aff_get_aff(ma, i);
4879 aff_i = isl_aff_scale(aff_i, c[i]);
4880 aff_i = isl_aff_scale_down(aff_i, d);
4881 if (sign >= 0)
4882 aff = isl_aff_sub(aff, aff_i);
4883 else
4884 aff = isl_aff_add(aff, aff_i);
4886 isl_int_clear(d);
4888 return aff;
4891 /* Extract an affine expression that expresses the output dimension "pos"
4892 * of "bmap" in terms of the parameters and input dimensions from
4893 * equality "eq".
4894 * Note that this expression may involve integer divisions defined
4895 * in terms of parameters and input dimensions.
4896 * The equality may also involve references to earlier (but not later)
4897 * output dimensions. These are replaced by the corresponding elements
4898 * in "ma".
4900 * If the equality is of the form
4902 * f(i) + h(j) + a x + g(i) = 0,
4904 * with f(i) a linear combinations of the parameters and input dimensions,
4905 * g(i) a linear combination of integer divisions defined in terms of the same
4906 * and h(j) a linear combinations of earlier output dimensions,
4907 * then the affine expression is
4909 * (-f(i) - g(i))/a - h(j)/a
4911 * If the equality is of the form
4913 * f(i) + h(j) - a x + g(i) = 0,
4915 * then the affine expression is
4917 * (f(i) + g(i))/a - h(j)/(-a)
4920 * If "div" refers to an integer division (i.e., it is smaller than
4921 * the number of integer divisions), then the equality constraint
4922 * does involve an integer division (the one at position "div") that
4923 * is defined in terms of output dimensions. However, this integer
4924 * division can be eliminated by exploiting a pair of constraints
4925 * x >= l and x <= l + n, with n smaller than the coefficient of "div"
4926 * in the equality constraint. "ineq" refers to inequality x >= l, i.e.,
4927 * -l + x >= 0.
4928 * In particular, let
4930 * x = e(i) + m floor(...)
4932 * with e(i) the expression derived above and floor(...) the integer
4933 * division involving output dimensions.
4934 * From
4936 * l <= x <= l + n,
4938 * we have
4940 * 0 <= x - l <= n
4942 * This means
4944 * e(i) + m floor(...) - l = (e(i) + m floor(...) - l) mod m
4945 * = (e(i) - l) mod m
4947 * Therefore,
4949 * x - l = (e(i) - l) mod m
4951 * or
4953 * x = ((e(i) - l) mod m) + l
4955 * The variable "shift" below contains the expression -l, which may
4956 * also involve a linear combination of earlier output dimensions.
4958 static __isl_give isl_aff *extract_aff_from_equality(
4959 __isl_keep isl_basic_map *bmap, int pos, int eq, int div, int ineq,
4960 __isl_keep isl_multi_aff *ma)
4962 unsigned o_out;
4963 isl_size n_div, n_out;
4964 isl_ctx *ctx;
4965 isl_local_space *ls;
4966 isl_aff *aff, *shift;
4967 isl_val *mod;
4969 ctx = isl_basic_map_get_ctx(bmap);
4970 ls = isl_basic_map_get_local_space(bmap);
4971 ls = isl_local_space_domain(ls);
4972 aff = isl_aff_alloc(isl_local_space_copy(ls));
4973 if (!aff)
4974 goto error;
4975 o_out = isl_basic_map_offset(bmap, isl_dim_out);
4976 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4977 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4978 if (n_out < 0 || n_div < 0)
4979 goto error;
4980 if (isl_int_is_neg(bmap->eq[eq][o_out + pos])) {
4981 isl_seq_cpy(aff->v->el + 1, bmap->eq[eq], o_out);
4982 isl_seq_cpy(aff->v->el + 1 + o_out,
4983 bmap->eq[eq] + o_out + n_out, n_div);
4984 } else {
4985 isl_seq_neg(aff->v->el + 1, bmap->eq[eq], o_out);
4986 isl_seq_neg(aff->v->el + 1 + o_out,
4987 bmap->eq[eq] + o_out + n_out, n_div);
4989 if (div < n_div)
4990 isl_int_set_si(aff->v->el[1 + o_out + div], 0);
4991 isl_int_abs(aff->v->el[0], bmap->eq[eq][o_out + pos]);
4992 aff = subtract_initial(aff, ma, pos, bmap->eq[eq] + o_out,
4993 bmap->eq[eq][o_out + pos]);
4994 if (div < n_div) {
4995 shift = isl_aff_alloc(isl_local_space_copy(ls));
4996 if (!shift)
4997 goto error;
4998 isl_seq_cpy(shift->v->el + 1, bmap->ineq[ineq], o_out);
4999 isl_seq_cpy(shift->v->el + 1 + o_out,
5000 bmap->ineq[ineq] + o_out + n_out, n_div);
5001 isl_int_set_si(shift->v->el[0], 1);
5002 shift = subtract_initial(shift, ma, pos,
5003 bmap->ineq[ineq] + o_out, ctx->negone);
5004 aff = isl_aff_add(aff, isl_aff_copy(shift));
5005 mod = isl_val_int_from_isl_int(ctx,
5006 bmap->eq[eq][o_out + n_out + div]);
5007 mod = isl_val_abs(mod);
5008 aff = isl_aff_mod_val(aff, mod);
5009 aff = isl_aff_sub(aff, shift);
5012 isl_local_space_free(ls);
5013 return aff;
5014 error:
5015 isl_local_space_free(ls);
5016 isl_aff_free(aff);
5017 return NULL;
5020 /* Given a basic map with output dimensions defined
5021 * in terms of the parameters input dimensions and earlier
5022 * output dimensions using an equality (and possibly a pair on inequalities),
5023 * extract an isl_aff that expresses output dimension "pos" in terms
5024 * of the parameters and input dimensions.
5025 * Note that this expression may involve integer divisions defined
5026 * in terms of parameters and input dimensions.
5027 * "ma" contains the expressions corresponding to earlier output dimensions.
5029 * This function shares some similarities with
5030 * isl_basic_map_has_defining_equality and isl_constraint_get_bound.
5032 static __isl_give isl_aff *extract_isl_aff_from_basic_map(
5033 __isl_keep isl_basic_map *bmap, int pos, __isl_keep isl_multi_aff *ma)
5035 int eq, div, ineq;
5036 isl_aff *aff;
5038 if (!bmap)
5039 return NULL;
5040 eq = isl_basic_map_output_defining_equality(bmap, pos, &div, &ineq);
5041 if (eq >= bmap->n_eq)
5042 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
5043 "unable to find suitable equality", return NULL);
5044 aff = extract_aff_from_equality(bmap, pos, eq, div, ineq, ma);
5046 aff = isl_aff_remove_unused_divs(aff);
5047 return aff;
5050 /* Given a basic map where each output dimension is defined
5051 * in terms of the parameters and input dimensions using an equality,
5052 * extract an isl_multi_aff that expresses the output dimensions in terms
5053 * of the parameters and input dimensions.
5055 static __isl_give isl_multi_aff *extract_isl_multi_aff_from_basic_map(
5056 __isl_take isl_basic_map *bmap)
5058 int i;
5059 isl_size n_out;
5060 isl_multi_aff *ma;
5062 if (!bmap)
5063 return NULL;
5065 ma = isl_multi_aff_alloc(isl_basic_map_get_space(bmap));
5066 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5067 if (n_out < 0)
5068 ma = isl_multi_aff_free(ma);
5070 for (i = 0; i < n_out; ++i) {
5071 isl_aff *aff;
5073 aff = extract_isl_aff_from_basic_map(bmap, i, ma);
5074 ma = isl_multi_aff_set_aff(ma, i, aff);
5077 isl_basic_map_free(bmap);
5079 return ma;
5082 /* Given a basic set where each set dimension is defined
5083 * in terms of the parameters using an equality,
5084 * extract an isl_multi_aff that expresses the set dimensions in terms
5085 * of the parameters.
5087 __isl_give isl_multi_aff *isl_multi_aff_from_basic_set_equalities(
5088 __isl_take isl_basic_set *bset)
5090 return extract_isl_multi_aff_from_basic_map(bset);
5093 /* Create an isl_pw_multi_aff that is equivalent to
5094 * isl_map_intersect_domain(isl_map_from_basic_map(bmap), domain).
5095 * The given basic map is such that each output dimension is defined
5096 * in terms of the parameters and input dimensions using an equality.
5098 * Since some applications expect the result of isl_pw_multi_aff_from_map
5099 * to only contain integer affine expressions, we compute the floor
5100 * of the expression before returning.
5102 * Remove all constraints involving local variables without
5103 * an explicit representation (resulting in the removal of those
5104 * local variables) prior to the actual extraction to ensure
5105 * that the local spaces in which the resulting affine expressions
5106 * are created do not contain any unknown local variables.
5107 * Removing such constraints is safe because constraints involving
5108 * unknown local variables are not used to determine whether
5109 * a basic map is obviously single-valued.
5111 static __isl_give isl_pw_multi_aff *plain_pw_multi_aff_from_map(
5112 __isl_take isl_set *domain, __isl_take isl_basic_map *bmap)
5114 isl_multi_aff *ma;
5116 bmap = isl_basic_map_drop_constraints_involving_unknown_divs(bmap);
5117 ma = extract_isl_multi_aff_from_basic_map(bmap);
5118 ma = isl_multi_aff_floor(ma);
5119 return isl_pw_multi_aff_alloc(domain, ma);
5122 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5123 * This obviously only works if the input "map" is single-valued.
5124 * If so, we compute the lexicographic minimum of the image in the form
5125 * of an isl_pw_multi_aff. Since the image is unique, it is equal
5126 * to its lexicographic minimum.
5127 * If the input is not single-valued, we produce an error.
5129 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_base(
5130 __isl_take isl_map *map)
5132 int i;
5133 int sv;
5134 isl_pw_multi_aff *pma;
5136 sv = isl_map_is_single_valued(map);
5137 if (sv < 0)
5138 goto error;
5139 if (!sv)
5140 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5141 "map is not single-valued", goto error);
5142 map = isl_map_make_disjoint(map);
5143 if (!map)
5144 return NULL;
5146 pma = isl_pw_multi_aff_empty(isl_map_get_space(map));
5148 for (i = 0; i < map->n; ++i) {
5149 isl_pw_multi_aff *pma_i;
5150 isl_basic_map *bmap;
5151 bmap = isl_basic_map_copy(map->p[i]);
5152 pma_i = isl_basic_map_lexmin_pw_multi_aff(bmap);
5153 pma = isl_pw_multi_aff_add_disjoint(pma, pma_i);
5156 isl_map_free(map);
5157 return pma;
5158 error:
5159 isl_map_free(map);
5160 return NULL;
5163 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
5164 * taking into account that the output dimension at position "d"
5165 * can be represented as
5167 * x = floor((e(...) + c1) / m)
5169 * given that constraint "i" is of the form
5171 * e(...) + c1 - m x >= 0
5174 * Let "map" be of the form
5176 * A -> B
5178 * We construct a mapping
5180 * A -> [A -> x = floor(...)]
5182 * apply that to the map, obtaining
5184 * [A -> x = floor(...)] -> B
5186 * and equate dimension "d" to x.
5187 * We then compute a isl_pw_multi_aff representation of the resulting map
5188 * and plug in the mapping above.
5190 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_div(
5191 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i)
5193 isl_ctx *ctx;
5194 isl_space *space = NULL;
5195 isl_local_space *ls;
5196 isl_multi_aff *ma;
5197 isl_aff *aff;
5198 isl_vec *v;
5199 isl_map *insert;
5200 int offset;
5201 isl_size n;
5202 isl_size n_in;
5203 isl_pw_multi_aff *pma;
5204 isl_bool is_set;
5206 is_set = isl_map_is_set(map);
5207 if (is_set < 0)
5208 goto error;
5210 offset = isl_basic_map_offset(hull, isl_dim_out);
5211 ctx = isl_map_get_ctx(map);
5212 space = isl_space_domain(isl_map_get_space(map));
5213 n_in = isl_space_dim(space, isl_dim_set);
5214 n = isl_space_dim(space, isl_dim_all);
5215 if (n_in < 0 || n < 0)
5216 goto error;
5218 v = isl_vec_alloc(ctx, 1 + 1 + n);
5219 if (v) {
5220 isl_int_neg(v->el[0], hull->ineq[i][offset + d]);
5221 isl_seq_cpy(v->el + 1, hull->ineq[i], 1 + n);
5223 isl_basic_map_free(hull);
5225 ls = isl_local_space_from_space(isl_space_copy(space));
5226 aff = isl_aff_alloc_vec_validated(ls, v);
5227 aff = isl_aff_floor(aff);
5228 if (is_set) {
5229 isl_space_free(space);
5230 ma = isl_multi_aff_from_aff(aff);
5231 } else {
5232 ma = isl_multi_aff_identity(isl_space_map_from_set(space));
5233 ma = isl_multi_aff_range_product(ma,
5234 isl_multi_aff_from_aff(aff));
5237 insert = isl_map_from_multi_aff_internal(isl_multi_aff_copy(ma));
5238 map = isl_map_apply_domain(map, insert);
5239 map = isl_map_equate(map, isl_dim_in, n_in, isl_dim_out, d);
5240 pma = isl_pw_multi_aff_from_map(map);
5241 pma = isl_pw_multi_aff_pullback_multi_aff(pma, ma);
5243 return pma;
5244 error:
5245 isl_space_free(space);
5246 isl_map_free(map);
5247 isl_basic_map_free(hull);
5248 return NULL;
5251 /* Is constraint "c" of the form
5253 * e(...) + c1 - m x >= 0
5255 * or
5257 * -e(...) + c2 + m x >= 0
5259 * where m > 1 and e only depends on parameters and input dimensions?
5261 * "offset" is the offset of the output dimensions
5262 * "pos" is the position of output dimension x.
5264 static int is_potential_div_constraint(isl_int *c, int offset, int d, int total)
5266 if (isl_int_is_zero(c[offset + d]))
5267 return 0;
5268 if (isl_int_is_one(c[offset + d]))
5269 return 0;
5270 if (isl_int_is_negone(c[offset + d]))
5271 return 0;
5272 if (isl_seq_first_non_zero(c + offset, d) != -1)
5273 return 0;
5274 if (isl_seq_first_non_zero(c + offset + d + 1,
5275 total - (offset + d + 1)) != -1)
5276 return 0;
5277 return 1;
5280 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5282 * As a special case, we first check if there is any pair of constraints,
5283 * shared by all the basic maps in "map" that force a given dimension
5284 * to be equal to the floor of some affine combination of the input dimensions.
5286 * In particular, if we can find two constraints
5288 * e(...) + c1 - m x >= 0 i.e., m x <= e(...) + c1
5290 * and
5292 * -e(...) + c2 + m x >= 0 i.e., m x >= e(...) - c2
5294 * where m > 1 and e only depends on parameters and input dimensions,
5295 * and such that
5297 * c1 + c2 < m i.e., -c2 >= c1 - (m - 1)
5299 * then we know that we can take
5301 * x = floor((e(...) + c1) / m)
5303 * without having to perform any computation.
5305 * Note that we know that
5307 * c1 + c2 >= 1
5309 * If c1 + c2 were 0, then we would have detected an equality during
5310 * simplification. If c1 + c2 were negative, then we would have detected
5311 * a contradiction.
5313 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_div(
5314 __isl_take isl_map *map)
5316 int d;
5317 isl_size dim;
5318 int i, j, n;
5319 int offset;
5320 isl_size total;
5321 isl_int sum;
5322 isl_basic_map *hull;
5324 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5325 dim = isl_map_dim(map, isl_dim_out);
5326 total = isl_basic_map_dim(hull, isl_dim_all);
5327 if (dim < 0 || total < 0)
5328 goto error;
5330 isl_int_init(sum);
5331 offset = isl_basic_map_offset(hull, isl_dim_out);
5332 n = hull->n_ineq;
5333 for (d = 0; d < dim; ++d) {
5334 for (i = 0; i < n; ++i) {
5335 if (!is_potential_div_constraint(hull->ineq[i],
5336 offset, d, 1 + total))
5337 continue;
5338 for (j = i + 1; j < n; ++j) {
5339 if (!isl_seq_is_neg(hull->ineq[i] + 1,
5340 hull->ineq[j] + 1, total))
5341 continue;
5342 isl_int_add(sum, hull->ineq[i][0],
5343 hull->ineq[j][0]);
5344 if (isl_int_abs_lt(sum,
5345 hull->ineq[i][offset + d]))
5346 break;
5349 if (j >= n)
5350 continue;
5351 isl_int_clear(sum);
5352 if (isl_int_is_pos(hull->ineq[j][offset + d]))
5353 j = i;
5354 return pw_multi_aff_from_map_div(map, hull, d, j);
5357 isl_int_clear(sum);
5358 isl_basic_map_free(hull);
5359 return pw_multi_aff_from_map_base(map);
5360 error:
5361 isl_map_free(map);
5362 isl_basic_map_free(hull);
5363 return NULL;
5366 /* Given an affine expression
5368 * [A -> B] -> f(A,B)
5370 * construct an isl_multi_aff
5372 * [A -> B] -> B'
5374 * such that dimension "d" in B' is set to "aff" and the remaining
5375 * dimensions are set equal to the corresponding dimensions in B.
5376 * "n_in" is the dimension of the space A.
5377 * "n_out" is the dimension of the space B.
5379 * If "is_set" is set, then the affine expression is of the form
5381 * [B] -> f(B)
5383 * and we construct an isl_multi_aff
5385 * B -> B'
5387 static __isl_give isl_multi_aff *range_map(__isl_take isl_aff *aff, int d,
5388 unsigned n_in, unsigned n_out, int is_set)
5390 int i;
5391 isl_multi_aff *ma;
5392 isl_space *space, *space2;
5393 isl_local_space *ls;
5395 space = isl_aff_get_domain_space(aff);
5396 ls = isl_local_space_from_space(isl_space_copy(space));
5397 space2 = isl_space_copy(space);
5398 if (!is_set)
5399 space2 = isl_space_range(isl_space_unwrap(space2));
5400 space = isl_space_map_from_domain_and_range(space, space2);
5401 ma = isl_multi_aff_alloc(space);
5402 ma = isl_multi_aff_set_aff(ma, d, aff);
5404 for (i = 0; i < n_out; ++i) {
5405 if (i == d)
5406 continue;
5407 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
5408 isl_dim_set, n_in + i);
5409 ma = isl_multi_aff_set_aff(ma, i, aff);
5412 isl_local_space_free(ls);
5414 return ma;
5417 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map,
5418 * taking into account that the dimension at position "d" can be written as
5420 * x = m a + f(..) (1)
5422 * where m is equal to "gcd".
5423 * "i" is the index of the equality in "hull" that defines f(..).
5424 * In particular, the equality is of the form
5426 * f(..) - x + m g(existentials) = 0
5428 * or
5430 * -f(..) + x + m g(existentials) = 0
5432 * We basically plug (1) into "map", resulting in a map with "a"
5433 * in the range instead of "x". The corresponding isl_pw_multi_aff
5434 * defining "a" is then plugged back into (1) to obtain a definition for "x".
5436 * Specifically, given the input map
5438 * A -> B
5440 * We first wrap it into a set
5442 * [A -> B]
5444 * and define (1) on top of the corresponding space, resulting in "aff".
5445 * We use this to create an isl_multi_aff that maps the output position "d"
5446 * from "a" to "x", leaving all other (intput and output) dimensions unchanged.
5447 * We plug this into the wrapped map, unwrap the result and compute the
5448 * corresponding isl_pw_multi_aff.
5449 * The result is an expression
5451 * A -> T(A)
5453 * We adjust that to
5455 * A -> [A -> T(A)]
5457 * so that we can plug that into "aff", after extending the latter to
5458 * a mapping
5460 * [A -> B] -> B'
5463 * If "map" is actually a set, then there is no "A" space, meaning
5464 * that we do not need to perform any wrapping, and that the result
5465 * of the recursive call is of the form
5467 * [T]
5469 * which is plugged into a mapping of the form
5471 * B -> B'
5473 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_stride(
5474 __isl_take isl_map *map, __isl_take isl_basic_map *hull, int d, int i,
5475 isl_int gcd)
5477 isl_set *set;
5478 isl_space *space;
5479 isl_local_space *ls;
5480 isl_aff *aff;
5481 isl_multi_aff *ma;
5482 isl_pw_multi_aff *pma, *id;
5483 isl_size n_in;
5484 unsigned o_out;
5485 isl_size n_out;
5486 isl_bool is_set;
5488 is_set = isl_map_is_set(map);
5489 if (is_set < 0)
5490 goto error;
5492 n_in = isl_basic_map_dim(hull, isl_dim_in);
5493 n_out = isl_basic_map_dim(hull, isl_dim_out);
5494 if (n_in < 0 || n_out < 0)
5495 goto error;
5496 o_out = isl_basic_map_offset(hull, isl_dim_out);
5498 if (is_set)
5499 set = map;
5500 else
5501 set = isl_map_wrap(map);
5502 space = isl_space_map_from_set(isl_set_get_space(set));
5503 ma = isl_multi_aff_identity(space);
5504 ls = isl_local_space_from_space(isl_set_get_space(set));
5505 aff = isl_aff_alloc(ls);
5506 if (aff) {
5507 isl_int_set_si(aff->v->el[0], 1);
5508 if (isl_int_is_one(hull->eq[i][o_out + d]))
5509 isl_seq_neg(aff->v->el + 1, hull->eq[i],
5510 aff->v->size - 1);
5511 else
5512 isl_seq_cpy(aff->v->el + 1, hull->eq[i],
5513 aff->v->size - 1);
5514 isl_int_set(aff->v->el[1 + o_out + d], gcd);
5516 ma = isl_multi_aff_set_aff(ma, n_in + d, isl_aff_copy(aff));
5517 set = isl_set_preimage_multi_aff(set, ma);
5519 ma = range_map(aff, d, n_in, n_out, is_set);
5521 if (is_set)
5522 map = set;
5523 else
5524 map = isl_set_unwrap(set);
5525 pma = isl_pw_multi_aff_from_map(map);
5527 if (!is_set) {
5528 space = isl_pw_multi_aff_get_domain_space(pma);
5529 space = isl_space_map_from_set(space);
5530 id = isl_pw_multi_aff_identity(space);
5531 pma = isl_pw_multi_aff_range_product(id, pma);
5533 id = isl_pw_multi_aff_from_multi_aff(ma);
5534 pma = isl_pw_multi_aff_pullback_pw_multi_aff(id, pma);
5536 isl_basic_map_free(hull);
5537 return pma;
5538 error:
5539 isl_map_free(map);
5540 isl_basic_map_free(hull);
5541 return NULL;
5544 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5545 * "hull" contains the equalities valid for "map".
5547 * Check if any of the output dimensions is "strided".
5548 * That is, we check if it can be written as
5550 * x = m a + f(..)
5552 * with m greater than 1, a some combination of existentially quantified
5553 * variables and f an expression in the parameters and input dimensions.
5554 * If so, we remove the stride in pw_multi_aff_from_map_stride.
5556 * Otherwise, we continue with pw_multi_aff_from_map_check_div for a further
5557 * special case.
5559 static __isl_give isl_pw_multi_aff *pw_multi_aff_from_map_check_strides(
5560 __isl_take isl_map *map, __isl_take isl_basic_map *hull)
5562 int i, j;
5563 isl_size n_out;
5564 unsigned o_out;
5565 isl_size n_div;
5566 unsigned o_div;
5567 isl_int gcd;
5569 n_div = isl_basic_map_dim(hull, isl_dim_div);
5570 n_out = isl_basic_map_dim(hull, isl_dim_out);
5571 if (n_div < 0 || n_out < 0)
5572 goto error;
5574 if (n_div == 0) {
5575 isl_basic_map_free(hull);
5576 return pw_multi_aff_from_map_check_div(map);
5579 isl_int_init(gcd);
5581 o_div = isl_basic_map_offset(hull, isl_dim_div);
5582 o_out = isl_basic_map_offset(hull, isl_dim_out);
5584 for (i = 0; i < n_out; ++i) {
5585 for (j = 0; j < hull->n_eq; ++j) {
5586 isl_int *eq = hull->eq[j];
5587 isl_pw_multi_aff *res;
5589 if (!isl_int_is_one(eq[o_out + i]) &&
5590 !isl_int_is_negone(eq[o_out + i]))
5591 continue;
5592 if (isl_seq_first_non_zero(eq + o_out, i) != -1)
5593 continue;
5594 if (isl_seq_first_non_zero(eq + o_out + i + 1,
5595 n_out - (i + 1)) != -1)
5596 continue;
5597 isl_seq_gcd(eq + o_div, n_div, &gcd);
5598 if (isl_int_is_zero(gcd))
5599 continue;
5600 if (isl_int_is_one(gcd))
5601 continue;
5603 res = pw_multi_aff_from_map_stride(map, hull,
5604 i, j, gcd);
5605 isl_int_clear(gcd);
5606 return res;
5610 isl_int_clear(gcd);
5611 isl_basic_map_free(hull);
5612 return pw_multi_aff_from_map_check_div(map);
5613 error:
5614 isl_map_free(map);
5615 isl_basic_map_free(hull);
5616 return NULL;
5619 /* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
5621 * As a special case, we first check if all output dimensions are uniquely
5622 * defined in terms of the parameters and input dimensions over the entire
5623 * domain. If so, we extract the desired isl_pw_multi_aff directly
5624 * from the affine hull of "map" and its domain.
5626 * Otherwise, continue with pw_multi_aff_from_map_check_strides for more
5627 * special cases.
5629 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_map(__isl_take isl_map *map)
5631 isl_bool sv;
5632 isl_size n;
5633 isl_basic_map *hull;
5635 n = isl_map_n_basic_map(map);
5636 if (n < 0)
5637 goto error;
5639 if (n == 1) {
5640 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5641 hull = isl_basic_map_plain_affine_hull(hull);
5642 sv = isl_basic_map_plain_is_single_valued(hull);
5643 if (sv >= 0 && sv)
5644 return plain_pw_multi_aff_from_map(isl_map_domain(map),
5645 hull);
5646 isl_basic_map_free(hull);
5648 map = isl_map_detect_equalities(map);
5649 hull = isl_map_unshifted_simple_hull(isl_map_copy(map));
5650 sv = isl_basic_map_plain_is_single_valued(hull);
5651 if (sv >= 0 && sv)
5652 return plain_pw_multi_aff_from_map(isl_map_domain(map), hull);
5653 if (sv >= 0)
5654 return pw_multi_aff_from_map_check_strides(map, hull);
5655 isl_basic_map_free(hull);
5656 error:
5657 isl_map_free(map);
5658 return NULL;
5661 /* This function performs the same operation as isl_pw_multi_aff_from_map,
5662 * but is considered as a function on an isl_map when exported.
5664 __isl_give isl_pw_multi_aff *isl_map_as_pw_multi_aff(__isl_take isl_map *map)
5666 return isl_pw_multi_aff_from_map(map);
5669 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_set(__isl_take isl_set *set)
5671 return isl_pw_multi_aff_from_map(set);
5674 /* This function performs the same operation as isl_pw_multi_aff_from_set,
5675 * but is considered as a function on an isl_set when exported.
5677 __isl_give isl_pw_multi_aff *isl_set_as_pw_multi_aff(__isl_take isl_set *set)
5679 return isl_pw_multi_aff_from_set(set);
5682 /* Convert "map" into an isl_pw_multi_aff (if possible) and
5683 * add it to *user.
5685 static isl_stat pw_multi_aff_from_map(__isl_take isl_map *map, void *user)
5687 isl_union_pw_multi_aff **upma = user;
5688 isl_pw_multi_aff *pma;
5690 pma = isl_pw_multi_aff_from_map(map);
5691 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
5693 return *upma ? isl_stat_ok : isl_stat_error;
5696 /* Create an isl_union_pw_multi_aff with the given isl_aff on a universe
5697 * domain.
5699 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_aff(
5700 __isl_take isl_aff *aff)
5702 isl_multi_aff *ma;
5703 isl_pw_multi_aff *pma;
5705 ma = isl_multi_aff_from_aff(aff);
5706 pma = isl_pw_multi_aff_from_multi_aff(ma);
5707 return isl_union_pw_multi_aff_from_pw_multi_aff(pma);
5710 /* Try and create an isl_union_pw_multi_aff that is equivalent
5711 * to the given isl_union_map.
5712 * The isl_union_map is required to be single-valued in each space.
5713 * Otherwise, an error is produced.
5715 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_map(
5716 __isl_take isl_union_map *umap)
5718 isl_space *space;
5719 isl_union_pw_multi_aff *upma;
5721 space = isl_union_map_get_space(umap);
5722 upma = isl_union_pw_multi_aff_empty(space);
5723 if (isl_union_map_foreach_map(umap, &pw_multi_aff_from_map, &upma) < 0)
5724 upma = isl_union_pw_multi_aff_free(upma);
5725 isl_union_map_free(umap);
5727 return upma;
5730 /* This function performs the same operation as
5731 * isl_union_pw_multi_aff_from_union_map,
5732 * but is considered as a function on an isl_union_map when exported.
5734 __isl_give isl_union_pw_multi_aff *isl_union_map_as_union_pw_multi_aff(
5735 __isl_take isl_union_map *umap)
5737 return isl_union_pw_multi_aff_from_union_map(umap);
5740 /* Try and create an isl_union_pw_multi_aff that is equivalent
5741 * to the given isl_union_set.
5742 * The isl_union_set is required to be a singleton in each space.
5743 * Otherwise, an error is produced.
5745 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_set(
5746 __isl_take isl_union_set *uset)
5748 return isl_union_pw_multi_aff_from_union_map(uset);
5751 /* Return the piecewise affine expression "set ? 1 : 0".
5753 __isl_give isl_pw_aff *isl_set_indicator_function(__isl_take isl_set *set)
5755 isl_pw_aff *pa;
5756 isl_space *space = isl_set_get_space(set);
5757 isl_local_space *ls = isl_local_space_from_space(space);
5758 isl_aff *zero = isl_aff_zero_on_domain(isl_local_space_copy(ls));
5759 isl_aff *one = isl_aff_zero_on_domain(ls);
5761 one = isl_aff_add_constant_si(one, 1);
5762 pa = isl_pw_aff_alloc(isl_set_copy(set), one);
5763 set = isl_set_complement(set);
5764 pa = isl_pw_aff_add_disjoint(pa, isl_pw_aff_alloc(set, zero));
5766 return pa;
5769 /* Plug in "subs" for dimension "type", "pos" of "aff".
5771 * Let i be the dimension to replace and let "subs" be of the form
5773 * f/d
5775 * and "aff" of the form
5777 * (a i + g)/m
5779 * The result is
5781 * (a f + d g')/(m d)
5783 * where g' is the result of plugging in "subs" in each of the integer
5784 * divisions in g.
5786 __isl_give isl_aff *isl_aff_substitute(__isl_take isl_aff *aff,
5787 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
5789 isl_ctx *ctx;
5790 isl_int v;
5791 isl_size n_div;
5793 aff = isl_aff_cow(aff);
5794 if (!aff || !subs)
5795 return isl_aff_free(aff);
5797 ctx = isl_aff_get_ctx(aff);
5798 if (!isl_space_is_equal(aff->ls->dim, subs->ls->dim))
5799 isl_die(ctx, isl_error_invalid,
5800 "spaces don't match", return isl_aff_free(aff));
5801 n_div = isl_aff_domain_dim(subs, isl_dim_div);
5802 if (n_div < 0)
5803 return isl_aff_free(aff);
5804 if (n_div != 0)
5805 isl_die(ctx, isl_error_unsupported,
5806 "cannot handle divs yet", return isl_aff_free(aff));
5808 aff->ls = isl_local_space_substitute(aff->ls, type, pos, subs);
5809 if (!aff->ls)
5810 return isl_aff_free(aff);
5812 aff->v = isl_vec_cow(aff->v);
5813 if (!aff->v)
5814 return isl_aff_free(aff);
5816 pos += isl_local_space_offset(aff->ls, type);
5818 isl_int_init(v);
5819 isl_seq_substitute(aff->v->el, pos, subs->v->el,
5820 aff->v->size, subs->v->size, v);
5821 isl_int_clear(v);
5823 return aff;
5826 /* Plug in "subs" for dimension "type", "pos" in each of the affine
5827 * expressions in "maff".
5829 __isl_give isl_multi_aff *isl_multi_aff_substitute(
5830 __isl_take isl_multi_aff *maff, enum isl_dim_type type, unsigned pos,
5831 __isl_keep isl_aff *subs)
5833 isl_size n;
5834 int i;
5836 n = isl_multi_aff_size(maff);
5837 if (n < 0 || !subs)
5838 return isl_multi_aff_free(maff);
5840 if (type == isl_dim_in)
5841 type = isl_dim_set;
5843 for (i = 0; i < n; ++i) {
5844 isl_aff *aff;
5846 aff = isl_multi_aff_take_at(maff, i);
5847 aff = isl_aff_substitute(aff, type, pos, subs);
5848 maff = isl_multi_aff_restore_at(maff, i, aff);
5851 return maff;
5854 /* Plug in "subs" for input dimension "pos" of "pma".
5856 * pma is of the form
5858 * A_i(v) -> M_i(v)
5860 * while subs is of the form
5862 * v' = B_j(v) -> S_j
5864 * Each pair i,j such that C_ij = A_i \cap B_i is non-empty
5865 * has a contribution in the result, in particular
5867 * C_ij(S_j) -> M_i(S_j)
5869 * Note that plugging in S_j in C_ij may also result in an empty set
5870 * and this contribution should simply be discarded.
5872 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_substitute(
5873 __isl_take isl_pw_multi_aff *pma, unsigned pos,
5874 __isl_keep isl_pw_aff *subs)
5876 int i, j, n;
5877 isl_pw_multi_aff *res;
5879 if (!pma || !subs)
5880 return isl_pw_multi_aff_free(pma);
5882 n = pma->n * subs->n;
5883 res = isl_pw_multi_aff_alloc_size(isl_space_copy(pma->dim), n);
5885 for (i = 0; i < pma->n; ++i) {
5886 for (j = 0; j < subs->n; ++j) {
5887 isl_set *common;
5888 isl_multi_aff *res_ij;
5889 int empty;
5891 common = isl_set_intersect(
5892 isl_set_copy(pma->p[i].set),
5893 isl_set_copy(subs->p[j].set));
5894 common = isl_set_substitute(common,
5895 pos, subs->p[j].aff);
5896 empty = isl_set_plain_is_empty(common);
5897 if (empty < 0 || empty) {
5898 isl_set_free(common);
5899 if (empty < 0)
5900 goto error;
5901 continue;
5904 res_ij = isl_multi_aff_substitute(
5905 isl_multi_aff_copy(pma->p[i].maff),
5906 isl_dim_in, pos, subs->p[j].aff);
5908 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
5912 isl_pw_multi_aff_free(pma);
5913 return res;
5914 error:
5915 isl_pw_multi_aff_free(pma);
5916 isl_pw_multi_aff_free(res);
5917 return NULL;
5920 /* Compute the preimage of a range of dimensions in the affine expression "src"
5921 * under "ma" and put the result in "dst". The number of dimensions in "src"
5922 * that precede the range is given by "n_before". The number of dimensions
5923 * in the range is given by the number of output dimensions of "ma".
5924 * The number of dimensions that follow the range is given by "n_after".
5925 * If "has_denom" is set (to one),
5926 * then "src" and "dst" have an extra initial denominator.
5927 * "n_div_ma" is the number of existentials in "ma"
5928 * "n_div_bset" is the number of existentials in "src"
5929 * The resulting "dst" (which is assumed to have been allocated by
5930 * the caller) contains coefficients for both sets of existentials,
5931 * first those in "ma" and then those in "src".
5932 * f, c1, c2 and g are temporary objects that have been initialized
5933 * by the caller.
5935 * Let src represent the expression
5937 * (a(p) + f_u u + b v + f_w w + c(divs))/d
5939 * and let ma represent the expressions
5941 * v_i = (r_i(p) + s_i(y) + t_i(divs'))/m_i
5943 * We start out with the following expression for dst:
5945 * (a(p) + f_u u + 0 y + f_w w + 0 divs' + c(divs) + f \sum_i b_i v_i)/d
5947 * with the multiplication factor f initially equal to 1
5948 * and f \sum_i b_i v_i kept separately.
5949 * For each x_i that we substitute, we multiply the numerator
5950 * (and denominator) of dst by c_1 = m_i and add the numerator
5951 * of the x_i expression multiplied by c_2 = f b_i,
5952 * after removing the common factors of c_1 and c_2.
5953 * The multiplication factor f also needs to be multiplied by c_1
5954 * for the next x_j, j > i.
5956 isl_stat isl_seq_preimage(isl_int *dst, isl_int *src,
5957 __isl_keep isl_multi_aff *ma, int n_before, int n_after,
5958 int n_div_ma, int n_div_bmap,
5959 isl_int f, isl_int c1, isl_int c2, isl_int g, int has_denom)
5961 int i;
5962 isl_size n_param, n_in, n_out;
5963 int o_dst, o_src;
5965 n_param = isl_multi_aff_dim(ma, isl_dim_param);
5966 n_in = isl_multi_aff_dim(ma, isl_dim_in);
5967 n_out = isl_multi_aff_dim(ma, isl_dim_out);
5968 if (n_param < 0 || n_in < 0 || n_out < 0)
5969 return isl_stat_error;
5971 isl_seq_cpy(dst, src, has_denom + 1 + n_param + n_before);
5972 o_dst = o_src = has_denom + 1 + n_param + n_before;
5973 isl_seq_clr(dst + o_dst, n_in);
5974 o_dst += n_in;
5975 o_src += n_out;
5976 isl_seq_cpy(dst + o_dst, src + o_src, n_after);
5977 o_dst += n_after;
5978 o_src += n_after;
5979 isl_seq_clr(dst + o_dst, n_div_ma);
5980 o_dst += n_div_ma;
5981 isl_seq_cpy(dst + o_dst, src + o_src, n_div_bmap);
5983 isl_int_set_si(f, 1);
5985 for (i = 0; i < n_out; ++i) {
5986 int offset = has_denom + 1 + n_param + n_before + i;
5988 if (isl_int_is_zero(src[offset]))
5989 continue;
5990 isl_int_set(c1, ma->u.p[i]->v->el[0]);
5991 isl_int_mul(c2, f, src[offset]);
5992 isl_int_gcd(g, c1, c2);
5993 isl_int_divexact(c1, c1, g);
5994 isl_int_divexact(c2, c2, g);
5996 isl_int_mul(f, f, c1);
5997 o_dst = has_denom;
5998 o_src = 1;
5999 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
6000 c2, ma->u.p[i]->v->el + o_src, 1 + n_param);
6001 o_dst += 1 + n_param;
6002 o_src += 1 + n_param;
6003 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_before);
6004 o_dst += n_before;
6005 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
6006 c2, ma->u.p[i]->v->el + o_src, n_in);
6007 o_dst += n_in;
6008 o_src += n_in;
6009 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_after);
6010 o_dst += n_after;
6011 isl_seq_combine(dst + o_dst, c1, dst + o_dst,
6012 c2, ma->u.p[i]->v->el + o_src, n_div_ma);
6013 o_dst += n_div_ma;
6014 o_src += n_div_ma;
6015 isl_seq_scale(dst + o_dst, dst + o_dst, c1, n_div_bmap);
6016 if (has_denom)
6017 isl_int_mul(dst[0], dst[0], c1);
6020 return isl_stat_ok;
6023 /* Compute the pullback of "aff" by the function represented by "ma".
6024 * In other words, plug in "ma" in "aff". The result is an affine expression
6025 * defined over the domain space of "ma".
6027 * If "aff" is represented by
6029 * (a(p) + b x + c(divs))/d
6031 * and ma is represented by
6033 * x = D(p) + F(y) + G(divs')
6035 * then the result is
6037 * (a(p) + b D(p) + b F(y) + b G(divs') + c(divs))/d
6039 * The divs in the local space of the input are similarly adjusted
6040 * through a call to isl_local_space_preimage_multi_aff.
6042 __isl_give isl_aff *isl_aff_pullback_multi_aff(__isl_take isl_aff *aff,
6043 __isl_take isl_multi_aff *ma)
6045 isl_aff *res = NULL;
6046 isl_local_space *ls;
6047 isl_size n_div_aff, n_div_ma;
6048 isl_int f, c1, c2, g;
6050 ma = isl_multi_aff_align_divs(ma);
6051 if (!aff || !ma)
6052 goto error;
6054 n_div_aff = isl_aff_dim(aff, isl_dim_div);
6055 n_div_ma = ma->n ? isl_aff_dim(ma->u.p[0], isl_dim_div) : 0;
6056 if (n_div_aff < 0 || n_div_ma < 0)
6057 goto error;
6059 ls = isl_aff_get_domain_local_space(aff);
6060 ls = isl_local_space_preimage_multi_aff(ls, isl_multi_aff_copy(ma));
6061 res = isl_aff_alloc(ls);
6062 if (!res)
6063 goto error;
6065 isl_int_init(f);
6066 isl_int_init(c1);
6067 isl_int_init(c2);
6068 isl_int_init(g);
6070 if (isl_seq_preimage(res->v->el, aff->v->el, ma, 0, 0,
6071 n_div_ma, n_div_aff, f, c1, c2, g, 1) < 0)
6072 res = isl_aff_free(res);
6074 isl_int_clear(f);
6075 isl_int_clear(c1);
6076 isl_int_clear(c2);
6077 isl_int_clear(g);
6079 isl_aff_free(aff);
6080 isl_multi_aff_free(ma);
6081 res = isl_aff_normalize(res);
6082 return res;
6083 error:
6084 isl_aff_free(aff);
6085 isl_multi_aff_free(ma);
6086 isl_aff_free(res);
6087 return NULL;
6090 /* Compute the pullback of "aff1" by the function represented by "aff2".
6091 * In other words, plug in "aff2" in "aff1". The result is an affine expression
6092 * defined over the domain space of "aff1".
6094 * The domain of "aff1" should match the range of "aff2", which means
6095 * that it should be single-dimensional.
6097 __isl_give isl_aff *isl_aff_pullback_aff(__isl_take isl_aff *aff1,
6098 __isl_take isl_aff *aff2)
6100 isl_multi_aff *ma;
6102 ma = isl_multi_aff_from_aff(aff2);
6103 return isl_aff_pullback_multi_aff(aff1, ma);
6106 /* Compute the pullback of "ma1" by the function represented by "ma2".
6107 * In other words, plug in "ma2" in "ma1".
6109 __isl_give isl_multi_aff *isl_multi_aff_pullback_multi_aff(
6110 __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
6112 int i;
6113 isl_size n;
6114 isl_space *space = NULL;
6116 isl_multi_aff_align_params_bin(&ma1, &ma2);
6117 ma2 = isl_multi_aff_align_divs(ma2);
6118 n = isl_multi_aff_size(ma1);
6119 if (n < 0 || !ma2)
6120 goto error;
6122 space = isl_space_join(isl_multi_aff_get_space(ma2),
6123 isl_multi_aff_get_space(ma1));
6125 for (i = 0; i < n; ++i) {
6126 isl_aff *aff;
6128 aff = isl_multi_aff_take_at(ma1, i);
6129 aff = isl_aff_pullback_multi_aff(aff, isl_multi_aff_copy(ma2));
6130 ma1 = isl_multi_aff_restore_at(ma1, i, aff);
6133 ma1 = isl_multi_aff_reset_space(ma1, space);
6134 isl_multi_aff_free(ma2);
6135 return ma1;
6136 error:
6137 isl_space_free(space);
6138 isl_multi_aff_free(ma2);
6139 isl_multi_aff_free(ma1);
6140 return NULL;
6143 /* Extend the local space of "dst" to include the divs
6144 * in the local space of "src".
6146 * If "src" does not have any divs or if the local spaces of "dst" and
6147 * "src" are the same, then no extension is required.
6149 __isl_give isl_aff *isl_aff_align_divs(__isl_take isl_aff *dst,
6150 __isl_keep isl_aff *src)
6152 isl_ctx *ctx;
6153 isl_size src_n_div, dst_n_div;
6154 int *exp1 = NULL;
6155 int *exp2 = NULL;
6156 isl_bool equal;
6157 isl_mat *div;
6159 if (!src || !dst)
6160 return isl_aff_free(dst);
6162 ctx = isl_aff_get_ctx(src);
6163 equal = isl_local_space_has_equal_space(src->ls, dst->ls);
6164 if (equal < 0)
6165 return isl_aff_free(dst);
6166 if (!equal)
6167 isl_die(ctx, isl_error_invalid,
6168 "spaces don't match", goto error);
6170 src_n_div = isl_aff_domain_dim(src, isl_dim_div);
6171 dst_n_div = isl_aff_domain_dim(dst, isl_dim_div);
6172 if (src_n_div == 0)
6173 return dst;
6174 equal = isl_local_space_is_equal(src->ls, dst->ls);
6175 if (equal < 0 || src_n_div < 0 || dst_n_div < 0)
6176 return isl_aff_free(dst);
6177 if (equal)
6178 return dst;
6180 exp1 = isl_alloc_array(ctx, int, src_n_div);
6181 exp2 = isl_alloc_array(ctx, int, dst_n_div);
6182 if (!exp1 || (dst_n_div && !exp2))
6183 goto error;
6185 div = isl_merge_divs(src->ls->div, dst->ls->div, exp1, exp2);
6186 dst = isl_aff_expand_divs(dst, div, exp2);
6187 free(exp1);
6188 free(exp2);
6190 return dst;
6191 error:
6192 free(exp1);
6193 free(exp2);
6194 return isl_aff_free(dst);
6197 /* Adjust the local spaces of the affine expressions in "maff"
6198 * such that they all have the save divs.
6200 __isl_give isl_multi_aff *isl_multi_aff_align_divs(
6201 __isl_take isl_multi_aff *maff)
6203 isl_aff *aff_0;
6204 isl_size n;
6205 int i;
6207 n = isl_multi_aff_size(maff);
6208 if (n < 0)
6209 return isl_multi_aff_free(maff);
6210 if (n <= 1)
6211 return maff;
6213 aff_0 = isl_multi_aff_take_at(maff, 0);
6214 for (i = 1; i < n; ++i) {
6215 isl_aff *aff_i;
6217 aff_i = isl_multi_aff_peek_at(maff, i);
6218 aff_0 = isl_aff_align_divs(aff_0, aff_i);
6220 maff = isl_multi_aff_restore_at(maff, 0, aff_0);
6222 aff_0 = isl_multi_aff_peek_at(maff, 0);
6223 for (i = 1; i < n; ++i) {
6224 isl_aff *aff_i;
6226 aff_i = isl_multi_aff_take_at(maff, i);
6227 aff_i = isl_aff_align_divs(aff_i, aff_0);
6228 maff = isl_multi_aff_restore_at(maff, i, aff_i);
6231 return maff;
6234 __isl_give isl_aff *isl_aff_lift(__isl_take isl_aff *aff)
6236 aff = isl_aff_cow(aff);
6237 if (!aff)
6238 return NULL;
6240 aff->ls = isl_local_space_lift(aff->ls);
6241 if (!aff->ls)
6242 return isl_aff_free(aff);
6244 return aff;
6247 /* Lift "maff" to a space with extra dimensions such that the result
6248 * has no more existentially quantified variables.
6249 * If "ls" is not NULL, then *ls is assigned the local space that lies
6250 * at the basis of the lifting applied to "maff".
6252 __isl_give isl_multi_aff *isl_multi_aff_lift(__isl_take isl_multi_aff *maff,
6253 __isl_give isl_local_space **ls)
6255 int i;
6256 isl_space *space;
6257 isl_aff *aff;
6258 isl_size n, n_div;
6260 if (ls)
6261 *ls = NULL;
6263 n = isl_multi_aff_size(maff);
6264 if (n < 0)
6265 return isl_multi_aff_free(maff);
6267 if (n == 0) {
6268 if (ls) {
6269 isl_space *space = isl_multi_aff_get_domain_space(maff);
6270 *ls = isl_local_space_from_space(space);
6271 if (!*ls)
6272 return isl_multi_aff_free(maff);
6274 return maff;
6277 maff = isl_multi_aff_align_divs(maff);
6279 aff = isl_multi_aff_peek_at(maff, 0);
6280 n_div = isl_aff_dim(aff, isl_dim_div);
6281 if (n_div < 0)
6282 return isl_multi_aff_free(maff);
6283 space = isl_multi_aff_get_space(maff);
6284 space = isl_space_lift(isl_space_domain(space), n_div);
6285 space = isl_space_extend_domain_with_range(space,
6286 isl_multi_aff_get_space(maff));
6287 maff = isl_multi_aff_restore_space(maff, space);
6289 if (ls) {
6290 aff = isl_multi_aff_peek_at(maff, 0);
6291 *ls = isl_aff_get_domain_local_space(aff);
6292 if (!*ls)
6293 return isl_multi_aff_free(maff);
6296 for (i = 0; i < n; ++i) {
6297 aff = isl_multi_aff_take_at(maff, i);
6298 aff = isl_aff_lift(aff);
6299 maff = isl_multi_aff_restore_at(maff, i, aff);
6302 return maff;
6305 #undef TYPE
6306 #define TYPE isl_pw_multi_aff
6307 static
6308 #include "check_type_range_templ.c"
6310 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma".
6312 __isl_give isl_pw_aff *isl_pw_multi_aff_get_at(
6313 __isl_keep isl_pw_multi_aff *pma, int pos)
6315 int i;
6316 isl_size n_out;
6317 isl_space *space;
6318 isl_pw_aff *pa;
6320 if (isl_pw_multi_aff_check_range(pma, isl_dim_out, pos, 1) < 0)
6321 return NULL;
6323 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
6324 if (n_out < 0)
6325 return NULL;
6327 space = isl_pw_multi_aff_get_space(pma);
6328 space = isl_space_drop_dims(space, isl_dim_out,
6329 pos + 1, n_out - pos - 1);
6330 space = isl_space_drop_dims(space, isl_dim_out, 0, pos);
6332 pa = isl_pw_aff_alloc_size(space, pma->n);
6333 for (i = 0; i < pma->n; ++i) {
6334 isl_aff *aff;
6335 aff = isl_multi_aff_get_aff(pma->p[i].maff, pos);
6336 pa = isl_pw_aff_add_piece(pa, isl_set_copy(pma->p[i].set), aff);
6339 return pa;
6342 /* This is an alternative name for the function above.
6344 __isl_give isl_pw_aff *isl_pw_multi_aff_get_pw_aff(
6345 __isl_keep isl_pw_multi_aff *pma, int pos)
6347 return isl_pw_multi_aff_get_at(pma, pos);
6350 /* Return an isl_pw_multi_aff with the given "set" as domain and
6351 * an unnamed zero-dimensional range.
6353 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_domain(
6354 __isl_take isl_set *set)
6356 isl_multi_aff *ma;
6357 isl_space *space;
6359 space = isl_set_get_space(set);
6360 space = isl_space_from_domain(space);
6361 ma = isl_multi_aff_zero(space);
6362 return isl_pw_multi_aff_alloc(set, ma);
6365 /* Add an isl_pw_multi_aff with the given "set" as domain and
6366 * an unnamed zero-dimensional range to *user.
6368 static isl_stat add_pw_multi_aff_from_domain(__isl_take isl_set *set,
6369 void *user)
6371 isl_union_pw_multi_aff **upma = user;
6372 isl_pw_multi_aff *pma;
6374 pma = isl_pw_multi_aff_from_domain(set);
6375 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
6377 return isl_stat_ok;
6380 /* Return an isl_union_pw_multi_aff with the given "uset" as domain and
6381 * an unnamed zero-dimensional range.
6383 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_domain(
6384 __isl_take isl_union_set *uset)
6386 isl_space *space;
6387 isl_union_pw_multi_aff *upma;
6389 if (!uset)
6390 return NULL;
6392 space = isl_union_set_get_space(uset);
6393 upma = isl_union_pw_multi_aff_empty(space);
6395 if (isl_union_set_foreach_set(uset,
6396 &add_pw_multi_aff_from_domain, &upma) < 0)
6397 goto error;
6399 isl_union_set_free(uset);
6400 return upma;
6401 error:
6402 isl_union_set_free(uset);
6403 isl_union_pw_multi_aff_free(upma);
6404 return NULL;
6407 /* Local data for bin_entry and the callback "fn".
6409 struct isl_union_pw_multi_aff_bin_data {
6410 isl_union_pw_multi_aff *upma2;
6411 isl_union_pw_multi_aff *res;
6412 isl_pw_multi_aff *pma;
6413 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user);
6416 /* Given an isl_pw_multi_aff from upma1, store it in data->pma
6417 * and call data->fn for each isl_pw_multi_aff in data->upma2.
6419 static isl_stat bin_entry(__isl_take isl_pw_multi_aff *pma, void *user)
6421 struct isl_union_pw_multi_aff_bin_data *data = user;
6422 isl_stat r;
6424 data->pma = pma;
6425 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma2,
6426 data->fn, data);
6427 isl_pw_multi_aff_free(pma);
6429 return r;
6432 /* Call "fn" on each pair of isl_pw_multi_affs in "upma1" and "upma2".
6433 * The isl_pw_multi_aff from upma1 is stored in data->pma (where data is
6434 * passed as user field) and the isl_pw_multi_aff from upma2 is available
6435 * as *entry. The callback should adjust data->res if desired.
6437 static __isl_give isl_union_pw_multi_aff *bin_op(
6438 __isl_take isl_union_pw_multi_aff *upma1,
6439 __isl_take isl_union_pw_multi_aff *upma2,
6440 isl_stat (*fn)(__isl_take isl_pw_multi_aff *pma, void *user))
6442 isl_space *space;
6443 struct isl_union_pw_multi_aff_bin_data data = { NULL, NULL, NULL, fn };
6445 space = isl_union_pw_multi_aff_get_space(upma2);
6446 upma1 = isl_union_pw_multi_aff_align_params(upma1, space);
6447 space = isl_union_pw_multi_aff_get_space(upma1);
6448 upma2 = isl_union_pw_multi_aff_align_params(upma2, space);
6450 if (!upma1 || !upma2)
6451 goto error;
6453 data.upma2 = upma2;
6454 data.res = isl_union_pw_multi_aff_alloc_same_size(upma1);
6455 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma1,
6456 &bin_entry, &data) < 0)
6457 goto error;
6459 isl_union_pw_multi_aff_free(upma1);
6460 isl_union_pw_multi_aff_free(upma2);
6461 return data.res;
6462 error:
6463 isl_union_pw_multi_aff_free(upma1);
6464 isl_union_pw_multi_aff_free(upma2);
6465 isl_union_pw_multi_aff_free(data.res);
6466 return NULL;
6469 /* Given two isl_pw_multi_affs A -> B and C -> D,
6470 * construct an isl_pw_multi_aff (A * C) -> [B -> D].
6472 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_product(
6473 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6475 isl_space *space;
6477 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
6478 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
6479 isl_pw_multi_aff_get_space(pma2));
6480 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
6481 &isl_multi_aff_range_product);
6484 /* Given two isl_pw_multi_affs A -> B and C -> D,
6485 * construct an isl_pw_multi_aff (A * C) -> (B, D).
6487 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_flat_range_product(
6488 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
6490 isl_space *space;
6492 isl_pw_multi_aff_align_params_bin(&pma1, &pma2);
6493 space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
6494 isl_pw_multi_aff_get_space(pma2));
6495 space = isl_space_flatten_range(space);
6496 return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
6497 &isl_multi_aff_flat_range_product);
6500 /* If data->pma and "pma2" have the same domain space, then use "range_product"
6501 * to compute some form of range product and add the result to data->res.
6503 static isl_stat gen_range_product_entry(__isl_take isl_pw_multi_aff *pma2,
6504 __isl_give isl_pw_multi_aff *(*range_product)(
6505 __isl_take isl_pw_multi_aff *pma1,
6506 __isl_take isl_pw_multi_aff *pma2),
6507 void *user)
6509 struct isl_union_pw_multi_aff_bin_data *data = user;
6510 isl_bool match;
6511 isl_space *space1, *space2;
6513 space1 = isl_pw_multi_aff_peek_space(data->pma);
6514 space2 = isl_pw_multi_aff_peek_space(pma2);
6515 match = isl_space_tuple_is_equal(space1, isl_dim_in,
6516 space2, isl_dim_in);
6517 if (match < 0 || !match) {
6518 isl_pw_multi_aff_free(pma2);
6519 return match < 0 ? isl_stat_error : isl_stat_ok;
6522 pma2 = range_product(isl_pw_multi_aff_copy(data->pma), pma2);
6524 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
6526 return isl_stat_ok;
6529 /* If data->pma and "pma2" have the same domain space, then compute
6530 * their flat range product and add the result to data->res.
6532 static isl_stat flat_range_product_entry(__isl_take isl_pw_multi_aff *pma2,
6533 void *user)
6535 return gen_range_product_entry(pma2,
6536 &isl_pw_multi_aff_flat_range_product, user);
6539 /* Given two isl_union_pw_multi_affs A -> B and C -> D,
6540 * construct an isl_union_pw_multi_aff (A * C) -> (B, D).
6542 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_flat_range_product(
6543 __isl_take isl_union_pw_multi_aff *upma1,
6544 __isl_take isl_union_pw_multi_aff *upma2)
6546 return bin_op(upma1, upma2, &flat_range_product_entry);
6549 /* If data->pma and "pma2" have the same domain space, then compute
6550 * their range product and add the result to data->res.
6552 static isl_stat range_product_entry(__isl_take isl_pw_multi_aff *pma2,
6553 void *user)
6555 return gen_range_product_entry(pma2,
6556 &isl_pw_multi_aff_range_product, user);
6559 /* Given two isl_union_pw_multi_affs A -> B and C -> D,
6560 * construct an isl_union_pw_multi_aff (A * C) -> [B -> D].
6562 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_range_product(
6563 __isl_take isl_union_pw_multi_aff *upma1,
6564 __isl_take isl_union_pw_multi_aff *upma2)
6566 return bin_op(upma1, upma2, &range_product_entry);
6569 /* Replace the affine expressions at position "pos" in "pma" by "pa".
6570 * The parameters are assumed to have been aligned.
6572 * The implementation essentially performs an isl_pw_*_on_shared_domain,
6573 * except that it works on two different isl_pw_* types.
6575 static __isl_give isl_pw_multi_aff *pw_multi_aff_set_pw_aff(
6576 __isl_take isl_pw_multi_aff *pma, unsigned pos,
6577 __isl_take isl_pw_aff *pa)
6579 int i, j, n;
6580 isl_pw_multi_aff *res = NULL;
6582 if (!pma || !pa)
6583 goto error;
6585 if (!isl_space_tuple_is_equal(pma->dim, isl_dim_in,
6586 pa->dim, isl_dim_in))
6587 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
6588 "domains don't match", goto error);
6589 if (isl_pw_multi_aff_check_range(pma, isl_dim_out, pos, 1) < 0)
6590 goto error;
6592 n = pma->n * pa->n;
6593 res = isl_pw_multi_aff_alloc_size(isl_pw_multi_aff_get_space(pma), n);
6595 for (i = 0; i < pma->n; ++i) {
6596 for (j = 0; j < pa->n; ++j) {
6597 isl_set *common;
6598 isl_multi_aff *res_ij;
6599 int empty;
6601 common = isl_set_intersect(isl_set_copy(pma->p[i].set),
6602 isl_set_copy(pa->p[j].set));
6603 empty = isl_set_plain_is_empty(common);
6604 if (empty < 0 || empty) {
6605 isl_set_free(common);
6606 if (empty < 0)
6607 goto error;
6608 continue;
6611 res_ij = isl_multi_aff_set_aff(
6612 isl_multi_aff_copy(pma->p[i].maff), pos,
6613 isl_aff_copy(pa->p[j].aff));
6614 res_ij = isl_multi_aff_gist(res_ij,
6615 isl_set_copy(common));
6617 res = isl_pw_multi_aff_add_piece(res, common, res_ij);
6621 isl_pw_multi_aff_free(pma);
6622 isl_pw_aff_free(pa);
6623 return res;
6624 error:
6625 isl_pw_multi_aff_free(pma);
6626 isl_pw_aff_free(pa);
6627 return isl_pw_multi_aff_free(res);
6630 /* Replace the affine expressions at position "pos" in "pma" by "pa".
6632 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_set_pw_aff(
6633 __isl_take isl_pw_multi_aff *pma, unsigned pos,
6634 __isl_take isl_pw_aff *pa)
6636 isl_bool equal_params;
6638 if (!pma || !pa)
6639 goto error;
6640 equal_params = isl_space_has_equal_params(pma->dim, pa->dim);
6641 if (equal_params < 0)
6642 goto error;
6643 if (equal_params)
6644 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6645 if (isl_pw_multi_aff_check_named_params(pma) < 0 ||
6646 isl_pw_aff_check_named_params(pa) < 0)
6647 goto error;
6648 pma = isl_pw_multi_aff_align_params(pma, isl_pw_aff_get_space(pa));
6649 pa = isl_pw_aff_align_params(pa, isl_pw_multi_aff_get_space(pma));
6650 return pw_multi_aff_set_pw_aff(pma, pos, pa);
6651 error:
6652 isl_pw_multi_aff_free(pma);
6653 isl_pw_aff_free(pa);
6654 return NULL;
6657 /* Do the parameters of "pa" match those of "space"?
6659 isl_bool isl_pw_aff_matching_params(__isl_keep isl_pw_aff *pa,
6660 __isl_keep isl_space *space)
6662 isl_space *pa_space;
6663 isl_bool match;
6665 if (!pa || !space)
6666 return isl_bool_error;
6668 pa_space = isl_pw_aff_get_space(pa);
6670 match = isl_space_has_equal_params(space, pa_space);
6672 isl_space_free(pa_space);
6673 return match;
6676 /* Check that the domain space of "pa" matches "space".
6678 isl_stat isl_pw_aff_check_match_domain_space(__isl_keep isl_pw_aff *pa,
6679 __isl_keep isl_space *space)
6681 isl_space *pa_space;
6682 isl_bool match;
6684 if (!pa || !space)
6685 return isl_stat_error;
6687 pa_space = isl_pw_aff_get_space(pa);
6689 match = isl_space_has_equal_params(space, pa_space);
6690 if (match < 0)
6691 goto error;
6692 if (!match)
6693 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6694 "parameters don't match", goto error);
6695 match = isl_space_tuple_is_equal(space, isl_dim_in,
6696 pa_space, isl_dim_in);
6697 if (match < 0)
6698 goto error;
6699 if (!match)
6700 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
6701 "domains don't match", goto error);
6702 isl_space_free(pa_space);
6703 return isl_stat_ok;
6704 error:
6705 isl_space_free(pa_space);
6706 return isl_stat_error;
6709 #undef BASE
6710 #define BASE pw_aff
6711 #undef DOMBASE
6712 #define DOMBASE set
6714 #include <isl_multi_explicit_domain.c>
6715 #include <isl_multi_pw_aff_explicit_domain.c>
6716 #include <isl_multi_templ.c>
6717 #include <isl_multi_un_op_templ.c>
6718 #include <isl_multi_bin_val_templ.c>
6719 #include <isl_multi_add_constant_templ.c>
6720 #include <isl_multi_align_set.c>
6721 #include <isl_multi_apply_set_explicit_domain_templ.c>
6722 #include <isl_multi_arith_templ.c>
6723 #include <isl_multi_bind_templ.c>
6724 #include <isl_multi_bind_domain_templ.c>
6725 #include <isl_multi_coalesce.c>
6726 #include <isl_multi_domain_templ.c>
6727 #include <isl_multi_dim_id_templ.c>
6728 #include <isl_multi_dims.c>
6729 #include <isl_multi_from_base_templ.c>
6730 #include <isl_multi_check_domain_templ.c>
6731 #include <isl_multi_gist.c>
6732 #include <isl_multi_hash.c>
6733 #include <isl_multi_identity_templ.c>
6734 #include <isl_multi_insert_domain_templ.c>
6735 #include <isl_multi_intersect.c>
6736 #include <isl_multi_min_max_templ.c>
6737 #include <isl_multi_move_dims_templ.c>
6738 #include <isl_multi_nan_templ.c>
6739 #include <isl_multi_param_templ.c>
6740 #include <isl_multi_product_templ.c>
6741 #include <isl_multi_splice_templ.c>
6742 #include <isl_multi_tuple_id_templ.c>
6743 #include <isl_multi_union_add_templ.c>
6744 #include <isl_multi_zero_templ.c>
6745 #include <isl_multi_unbind_params_templ.c>
6747 /* Is every element of "mpa" defined over a single universe domain?
6749 isl_bool isl_multi_pw_aff_isa_multi_aff(__isl_keep isl_multi_pw_aff *mpa)
6751 return isl_multi_pw_aff_every(mpa, &isl_pw_aff_isa_aff);
6754 /* Given that every element of "mpa" is defined over a single universe domain,
6755 * return the corresponding base expressions.
6757 __isl_give isl_multi_aff *isl_multi_pw_aff_as_multi_aff(
6758 __isl_take isl_multi_pw_aff *mpa)
6760 int i;
6761 isl_size n;
6762 isl_multi_aff *ma;
6764 n = isl_multi_pw_aff_size(mpa);
6765 if (n < 0)
6766 mpa = isl_multi_pw_aff_free(mpa);
6767 ma = isl_multi_aff_alloc(isl_multi_pw_aff_get_space(mpa));
6768 for (i = 0; i < n; ++i) {
6769 isl_aff *aff;
6771 aff = isl_pw_aff_as_aff(isl_multi_pw_aff_get_at(mpa, i));
6772 ma = isl_multi_aff_set_aff(ma, i, aff);
6774 isl_multi_pw_aff_free(mpa);
6775 return ma;
6778 /* If "mpa" has an explicit domain, then intersect the domain of "map"
6779 * with this explicit domain.
6781 __isl_give isl_map *isl_map_intersect_multi_pw_aff_explicit_domain(
6782 __isl_take isl_map *map, __isl_keep isl_multi_pw_aff *mpa)
6784 isl_set *dom;
6786 if (!isl_multi_pw_aff_has_explicit_domain(mpa))
6787 return map;
6789 dom = isl_multi_pw_aff_domain(isl_multi_pw_aff_copy(mpa));
6790 map = isl_map_intersect_domain(map, dom);
6792 return map;
6795 /* Are all elements of "mpa" piecewise constants?
6797 isl_bool isl_multi_pw_aff_is_cst(__isl_keep isl_multi_pw_aff *mpa)
6799 return isl_multi_pw_aff_every(mpa, &isl_pw_aff_is_cst);
6802 /* Does "mpa" have a non-trivial explicit domain?
6804 * The explicit domain, if present, is trivial if it represents
6805 * an (obviously) universe set.
6807 isl_bool isl_multi_pw_aff_has_non_trivial_domain(
6808 __isl_keep isl_multi_pw_aff *mpa)
6810 if (!mpa)
6811 return isl_bool_error;
6812 if (!isl_multi_pw_aff_has_explicit_domain(mpa))
6813 return isl_bool_false;
6814 return isl_bool_not(isl_set_plain_is_universe(mpa->u.dom));
6817 #undef BASE
6818 #define BASE set
6820 #include "isl_opt_mpa_templ.c"
6822 /* Compute the minima of the set dimensions as a function of the
6823 * parameters, but independently of the other set dimensions.
6825 __isl_give isl_multi_pw_aff *isl_set_min_multi_pw_aff(__isl_take isl_set *set)
6827 return set_opt_mpa(set, &isl_set_dim_min);
6830 /* Compute the maxima of the set dimensions as a function of the
6831 * parameters, but independently of the other set dimensions.
6833 __isl_give isl_multi_pw_aff *isl_set_max_multi_pw_aff(__isl_take isl_set *set)
6835 return set_opt_mpa(set, &isl_set_dim_max);
6838 #undef BASE
6839 #define BASE map
6841 #include "isl_opt_mpa_templ.c"
6843 /* Compute the minima of the output dimensions as a function of the
6844 * parameters and input dimensions, but independently of
6845 * the other output dimensions.
6847 __isl_give isl_multi_pw_aff *isl_map_min_multi_pw_aff(__isl_take isl_map *map)
6849 return map_opt_mpa(map, &isl_map_dim_min);
6852 /* Compute the maxima of the output dimensions as a function of the
6853 * parameters and input dimensions, but independently of
6854 * the other output dimensions.
6856 __isl_give isl_multi_pw_aff *isl_map_max_multi_pw_aff(__isl_take isl_map *map)
6858 return map_opt_mpa(map, &isl_map_dim_max);
6861 #undef TYPE
6862 #define TYPE isl_pw_multi_aff
6863 #include "isl_type_check_match_range_multi_val.c"
6865 /* Apply "fn" to the base expressions of "pma" and "mv".
6867 static __isl_give isl_pw_multi_aff *isl_pw_multi_aff_op_multi_val(
6868 __isl_take isl_pw_multi_aff *pma, __isl_take isl_multi_val *mv,
6869 __isl_give isl_multi_aff *(*fn)(__isl_take isl_multi_aff *ma,
6870 __isl_take isl_multi_val *mv))
6872 int i;
6873 isl_size n;
6875 if (isl_pw_multi_aff_check_match_range_multi_val(pma, mv) < 0)
6876 goto error;
6878 n = isl_pw_multi_aff_n_piece(pma);
6879 if (n < 0)
6880 goto error;
6882 for (i = 0; i < n; ++i) {
6883 isl_multi_aff *ma;
6885 ma = isl_pw_multi_aff_take_base_at(pma, i);
6886 ma = fn(ma, isl_multi_val_copy(mv));
6887 pma = isl_pw_multi_aff_restore_base_at(pma, i, ma);
6890 isl_multi_val_free(mv);
6891 return pma;
6892 error:
6893 isl_multi_val_free(mv);
6894 isl_pw_multi_aff_free(pma);
6895 return NULL;
6898 /* Scale the elements of "pma" by the corresponding elements of "mv".
6900 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_scale_multi_val(
6901 __isl_take isl_pw_multi_aff *pma, __isl_take isl_multi_val *mv)
6903 return isl_pw_multi_aff_op_multi_val(pma, mv,
6904 &isl_multi_aff_scale_multi_val);
6907 /* Scale the elements of "pma" down by the corresponding elements of "mv".
6909 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_scale_down_multi_val(
6910 __isl_take isl_pw_multi_aff *pma, __isl_take isl_multi_val *mv)
6912 return isl_pw_multi_aff_op_multi_val(pma, mv,
6913 &isl_multi_aff_scale_down_multi_val);
6916 /* This function is called for each entry of an isl_union_pw_multi_aff.
6917 * If the space of the entry matches that of data->mv,
6918 * then apply isl_pw_multi_aff_scale_multi_val and return the result.
6919 * Otherwise, return an empty isl_pw_multi_aff.
6921 static __isl_give isl_pw_multi_aff *union_pw_multi_aff_scale_multi_val_entry(
6922 __isl_take isl_pw_multi_aff *pma, void *user)
6924 isl_bool equal;
6925 isl_multi_val *mv = user;
6927 equal = isl_pw_multi_aff_match_range_multi_val(pma, mv);
6928 if (equal < 0)
6929 return isl_pw_multi_aff_free(pma);
6930 if (!equal) {
6931 isl_space *space = isl_pw_multi_aff_get_space(pma);
6932 isl_pw_multi_aff_free(pma);
6933 return isl_pw_multi_aff_empty(space);
6936 return isl_pw_multi_aff_scale_multi_val(pma, isl_multi_val_copy(mv));
6939 /* Scale the elements of "upma" by the corresponding elements of "mv",
6940 * for those entries that match the space of "mv".
6942 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_scale_multi_val(
6943 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_multi_val *mv)
6945 struct isl_union_pw_multi_aff_transform_control control = {
6946 .fn = &union_pw_multi_aff_scale_multi_val_entry,
6947 .fn_user = mv,
6950 upma = isl_union_pw_multi_aff_align_params(upma,
6951 isl_multi_val_get_space(mv));
6952 mv = isl_multi_val_align_params(mv,
6953 isl_union_pw_multi_aff_get_space(upma));
6954 if (!upma || !mv)
6955 goto error;
6957 return isl_union_pw_multi_aff_transform(upma, &control);
6959 isl_multi_val_free(mv);
6960 return upma;
6961 error:
6962 isl_multi_val_free(mv);
6963 isl_union_pw_multi_aff_free(upma);
6964 return NULL;
6967 /* Construct and return a piecewise multi affine expression
6968 * in the given space with value zero in each of the output dimensions and
6969 * a universe domain.
6971 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_zero(__isl_take isl_space *space)
6973 return isl_pw_multi_aff_from_multi_aff(isl_multi_aff_zero(space));
6976 /* Construct and return a piecewise multi affine expression
6977 * that is equal to the given piecewise affine expression.
6979 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_pw_aff(
6980 __isl_take isl_pw_aff *pa)
6982 int i;
6983 isl_space *space;
6984 isl_pw_multi_aff *pma;
6986 if (!pa)
6987 return NULL;
6989 space = isl_pw_aff_get_space(pa);
6990 pma = isl_pw_multi_aff_alloc_size(space, pa->n);
6992 for (i = 0; i < pa->n; ++i) {
6993 isl_set *set;
6994 isl_multi_aff *ma;
6996 set = isl_set_copy(pa->p[i].set);
6997 ma = isl_multi_aff_from_aff(isl_aff_copy(pa->p[i].aff));
6998 pma = isl_pw_multi_aff_add_piece(pma, set, ma);
7001 isl_pw_aff_free(pa);
7002 return pma;
7005 /* Construct and return a piecewise multi affine expression
7006 * that is equal to the given multi piecewise affine expression
7007 * on the shared domain of the piecewise affine expressions,
7008 * in the special case of a 0D multi piecewise affine expression.
7010 * Create a piecewise multi affine expression with the explicit domain of
7011 * the 0D multi piecewise affine expression as domain.
7013 static __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_pw_aff_0D(
7014 __isl_take isl_multi_pw_aff *mpa)
7016 isl_space *space;
7017 isl_set *dom;
7018 isl_multi_aff *ma;
7020 space = isl_multi_pw_aff_get_space(mpa);
7021 dom = isl_multi_pw_aff_get_explicit_domain(mpa);
7022 isl_multi_pw_aff_free(mpa);
7024 ma = isl_multi_aff_zero(space);
7025 return isl_pw_multi_aff_alloc(dom, ma);
7028 /* Construct and return a piecewise multi affine expression
7029 * that is equal to the given multi piecewise affine expression
7030 * on the shared domain of the piecewise affine expressions.
7032 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_multi_pw_aff(
7033 __isl_take isl_multi_pw_aff *mpa)
7035 int i;
7036 isl_space *space;
7037 isl_pw_aff *pa;
7038 isl_pw_multi_aff *pma;
7040 if (!mpa)
7041 return NULL;
7043 if (mpa->n == 0)
7044 return isl_pw_multi_aff_from_multi_pw_aff_0D(mpa);
7046 space = isl_multi_pw_aff_get_space(mpa);
7047 pa = isl_multi_pw_aff_get_pw_aff(mpa, 0);
7048 pma = isl_pw_multi_aff_from_pw_aff(pa);
7050 for (i = 1; i < mpa->n; ++i) {
7051 isl_pw_multi_aff *pma_i;
7053 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
7054 pma_i = isl_pw_multi_aff_from_pw_aff(pa);
7055 pma = isl_pw_multi_aff_range_product(pma, pma_i);
7058 pma = isl_pw_multi_aff_reset_space(pma, space);
7060 isl_multi_pw_aff_free(mpa);
7061 return pma;
7064 /* Convenience function that constructs an isl_multi_pw_aff
7065 * directly from an isl_aff.
7067 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_aff(__isl_take isl_aff *aff)
7069 return isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff));
7072 /* Construct and return a multi piecewise affine expression
7073 * that is equal to the given multi affine expression.
7075 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_multi_aff(
7076 __isl_take isl_multi_aff *ma)
7078 int i;
7079 isl_size n;
7080 isl_multi_pw_aff *mpa;
7082 n = isl_multi_aff_dim(ma, isl_dim_out);
7083 if (n < 0)
7084 ma = isl_multi_aff_free(ma);
7085 if (!ma)
7086 return NULL;
7088 mpa = isl_multi_pw_aff_alloc(isl_multi_aff_get_space(ma));
7090 for (i = 0; i < n; ++i) {
7091 isl_pw_aff *pa;
7093 pa = isl_pw_aff_from_aff(isl_multi_aff_get_aff(ma, i));
7094 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
7097 isl_multi_aff_free(ma);
7098 return mpa;
7101 /* This function performs the same operation as isl_multi_pw_aff_from_multi_aff,
7102 * but is considered as a function on an isl_multi_aff when exported.
7104 __isl_give isl_multi_pw_aff *isl_multi_aff_to_multi_pw_aff(
7105 __isl_take isl_multi_aff *ma)
7107 return isl_multi_pw_aff_from_multi_aff(ma);
7110 /* Construct and return a multi piecewise affine expression
7111 * that is equal to the given piecewise multi affine expression.
7113 * If the resulting multi piecewise affine expression has
7114 * an explicit domain, then assign it the domain of the input.
7115 * In other cases, the domain is stored in the individual elements.
7117 __isl_give isl_multi_pw_aff *isl_multi_pw_aff_from_pw_multi_aff(
7118 __isl_take isl_pw_multi_aff *pma)
7120 int i;
7121 isl_size n;
7122 isl_space *space;
7123 isl_multi_pw_aff *mpa;
7125 n = isl_pw_multi_aff_dim(pma, isl_dim_out);
7126 if (n < 0)
7127 pma = isl_pw_multi_aff_free(pma);
7128 space = isl_pw_multi_aff_get_space(pma);
7129 mpa = isl_multi_pw_aff_alloc(space);
7131 for (i = 0; i < n; ++i) {
7132 isl_pw_aff *pa;
7134 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
7135 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
7137 if (isl_multi_pw_aff_has_explicit_domain(mpa)) {
7138 isl_set *dom;
7140 dom = isl_pw_multi_aff_domain(isl_pw_multi_aff_copy(pma));
7141 mpa = isl_multi_pw_aff_intersect_domain(mpa, dom);
7144 isl_pw_multi_aff_free(pma);
7145 return mpa;
7148 /* This function performs the same operation as
7149 * isl_multi_pw_aff_from_pw_multi_aff,
7150 * but is considered as a function on an isl_pw_multi_aff when exported.
7152 __isl_give isl_multi_pw_aff *isl_pw_multi_aff_to_multi_pw_aff(
7153 __isl_take isl_pw_multi_aff *pma)
7155 return isl_multi_pw_aff_from_pw_multi_aff(pma);
7158 /* Do "pa1" and "pa2" represent the same function?
7160 * We first check if they are obviously equal.
7161 * If not, we convert them to maps and check if those are equal.
7163 * If "pa1" or "pa2" contain any NaNs, then they are considered
7164 * not to be the same. A NaN is not equal to anything, not even
7165 * to another NaN.
7167 isl_bool isl_pw_aff_is_equal(__isl_keep isl_pw_aff *pa1,
7168 __isl_keep isl_pw_aff *pa2)
7170 isl_bool equal;
7171 isl_bool has_nan;
7172 isl_map *map1, *map2;
7174 if (!pa1 || !pa2)
7175 return isl_bool_error;
7177 equal = isl_pw_aff_plain_is_equal(pa1, pa2);
7178 if (equal < 0 || equal)
7179 return equal;
7180 has_nan = either_involves_nan(pa1, pa2);
7181 if (has_nan < 0)
7182 return isl_bool_error;
7183 if (has_nan)
7184 return isl_bool_false;
7186 map1 = isl_map_from_pw_aff_internal(isl_pw_aff_copy(pa1));
7187 map2 = isl_map_from_pw_aff_internal(isl_pw_aff_copy(pa2));
7188 equal = isl_map_is_equal(map1, map2);
7189 isl_map_free(map1);
7190 isl_map_free(map2);
7192 return equal;
7195 /* Do "mpa1" and "mpa2" represent the same function?
7197 * Note that we cannot convert the entire isl_multi_pw_aff
7198 * to a map because the domains of the piecewise affine expressions
7199 * may not be the same.
7201 isl_bool isl_multi_pw_aff_is_equal(__isl_keep isl_multi_pw_aff *mpa1,
7202 __isl_keep isl_multi_pw_aff *mpa2)
7204 int i;
7205 isl_bool equal, equal_params;
7207 if (!mpa1 || !mpa2)
7208 return isl_bool_error;
7210 equal_params = isl_space_has_equal_params(mpa1->space, mpa2->space);
7211 if (equal_params < 0)
7212 return isl_bool_error;
7213 if (!equal_params) {
7214 if (!isl_space_has_named_params(mpa1->space))
7215 return isl_bool_false;
7216 if (!isl_space_has_named_params(mpa2->space))
7217 return isl_bool_false;
7218 mpa1 = isl_multi_pw_aff_copy(mpa1);
7219 mpa2 = isl_multi_pw_aff_copy(mpa2);
7220 mpa1 = isl_multi_pw_aff_align_params(mpa1,
7221 isl_multi_pw_aff_get_space(mpa2));
7222 mpa2 = isl_multi_pw_aff_align_params(mpa2,
7223 isl_multi_pw_aff_get_space(mpa1));
7224 equal = isl_multi_pw_aff_is_equal(mpa1, mpa2);
7225 isl_multi_pw_aff_free(mpa1);
7226 isl_multi_pw_aff_free(mpa2);
7227 return equal;
7230 equal = isl_space_is_equal(mpa1->space, mpa2->space);
7231 if (equal < 0 || !equal)
7232 return equal;
7234 for (i = 0; i < mpa1->n; ++i) {
7235 equal = isl_pw_aff_is_equal(mpa1->u.p[i], mpa2->u.p[i]);
7236 if (equal < 0 || !equal)
7237 return equal;
7240 return isl_bool_true;
7243 /* Do "pma1" and "pma2" represent the same function?
7245 * First check if they are obviously equal.
7246 * If not, then convert them to maps and check if those are equal.
7248 * If "pa1" or "pa2" contain any NaNs, then they are considered
7249 * not to be the same. A NaN is not equal to anything, not even
7250 * to another NaN.
7252 isl_bool isl_pw_multi_aff_is_equal(__isl_keep isl_pw_multi_aff *pma1,
7253 __isl_keep isl_pw_multi_aff *pma2)
7255 isl_bool equal;
7256 isl_bool has_nan;
7257 isl_map *map1, *map2;
7259 if (!pma1 || !pma2)
7260 return isl_bool_error;
7262 equal = isl_pw_multi_aff_plain_is_equal(pma1, pma2);
7263 if (equal < 0 || equal)
7264 return equal;
7265 has_nan = isl_pw_multi_aff_involves_nan(pma1);
7266 if (has_nan >= 0 && !has_nan)
7267 has_nan = isl_pw_multi_aff_involves_nan(pma2);
7268 if (has_nan < 0 || has_nan)
7269 return isl_bool_not(has_nan);
7271 map1 = isl_map_from_pw_multi_aff_internal(isl_pw_multi_aff_copy(pma1));
7272 map2 = isl_map_from_pw_multi_aff_internal(isl_pw_multi_aff_copy(pma2));
7273 equal = isl_map_is_equal(map1, map2);
7274 isl_map_free(map1);
7275 isl_map_free(map2);
7277 return equal;
7280 #undef BASE
7281 #define BASE multi_aff
7283 #include "isl_multi_pw_aff_pullback_templ.c"
7285 #undef BASE
7286 #define BASE pw_multi_aff
7288 #include "isl_multi_pw_aff_pullback_templ.c"
7290 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
7291 * with the domain of "aff". The domain of the result is the same
7292 * as that of "mpa".
7293 * "mpa" and "aff" are assumed to have been aligned.
7295 * We first extract the parametric constant from "aff", defined
7296 * over the correct domain.
7297 * Then we add the appropriate combinations of the members of "mpa".
7298 * Finally, we add the integer divisions through recursive calls.
7300 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff_aligned(
7301 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
7303 int i;
7304 isl_size n_in, n_div, n_mpa_in;
7305 isl_space *space;
7306 isl_val *v;
7307 isl_pw_aff *pa;
7308 isl_aff *tmp;
7310 n_in = isl_aff_dim(aff, isl_dim_in);
7311 n_div = isl_aff_dim(aff, isl_dim_div);
7312 n_mpa_in = isl_multi_pw_aff_dim(mpa, isl_dim_in);
7313 if (n_in < 0 || n_div < 0 || n_mpa_in < 0)
7314 goto error;
7316 space = isl_space_domain(isl_multi_pw_aff_get_space(mpa));
7317 tmp = isl_aff_copy(aff);
7318 tmp = isl_aff_drop_dims(tmp, isl_dim_div, 0, n_div);
7319 tmp = isl_aff_drop_dims(tmp, isl_dim_in, 0, n_in);
7320 tmp = isl_aff_add_dims(tmp, isl_dim_in, n_mpa_in);
7321 tmp = isl_aff_reset_domain_space(tmp, space);
7322 pa = isl_pw_aff_from_aff(tmp);
7324 for (i = 0; i < n_in; ++i) {
7325 isl_pw_aff *pa_i;
7327 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
7328 continue;
7329 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
7330 pa_i = isl_multi_pw_aff_get_pw_aff(mpa, i);
7331 pa_i = isl_pw_aff_scale_val(pa_i, v);
7332 pa = isl_pw_aff_add(pa, pa_i);
7335 for (i = 0; i < n_div; ++i) {
7336 isl_aff *div;
7337 isl_pw_aff *pa_i;
7339 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
7340 continue;
7341 div = isl_aff_get_div(aff, i);
7342 pa_i = isl_multi_pw_aff_apply_aff_aligned(
7343 isl_multi_pw_aff_copy(mpa), div);
7344 pa_i = isl_pw_aff_floor(pa_i);
7345 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
7346 pa_i = isl_pw_aff_scale_val(pa_i, v);
7347 pa = isl_pw_aff_add(pa, pa_i);
7350 isl_multi_pw_aff_free(mpa);
7351 isl_aff_free(aff);
7353 return pa;
7354 error:
7355 isl_multi_pw_aff_free(mpa);
7356 isl_aff_free(aff);
7357 return NULL;
7360 /* Apply "aff" to "mpa". The range of "mpa" needs to be compatible
7361 * with the domain of "aff". The domain of the result is the same
7362 * as that of "mpa".
7364 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_aff(
7365 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_aff *aff)
7367 isl_bool equal_params;
7369 if (!aff || !mpa)
7370 goto error;
7371 equal_params = isl_space_has_equal_params(aff->ls->dim, mpa->space);
7372 if (equal_params < 0)
7373 goto error;
7374 if (equal_params)
7375 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
7377 aff = isl_aff_align_params(aff, isl_multi_pw_aff_get_space(mpa));
7378 mpa = isl_multi_pw_aff_align_params(mpa, isl_aff_get_space(aff));
7380 return isl_multi_pw_aff_apply_aff_aligned(mpa, aff);
7381 error:
7382 isl_aff_free(aff);
7383 isl_multi_pw_aff_free(mpa);
7384 return NULL;
7387 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
7388 * with the domain of "pa". The domain of the result is the same
7389 * as that of "mpa".
7390 * "mpa" and "pa" are assumed to have been aligned.
7392 * We consider each piece in turn. Note that the domains of the
7393 * pieces are assumed to be disjoint and they remain disjoint
7394 * after taking the preimage (over the same function).
7396 static __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff_aligned(
7397 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
7399 isl_space *space;
7400 isl_pw_aff *res;
7401 int i;
7403 if (!mpa || !pa)
7404 goto error;
7406 space = isl_space_join(isl_multi_pw_aff_get_space(mpa),
7407 isl_pw_aff_get_space(pa));
7408 res = isl_pw_aff_empty(space);
7410 for (i = 0; i < pa->n; ++i) {
7411 isl_pw_aff *pa_i;
7412 isl_set *domain;
7414 pa_i = isl_multi_pw_aff_apply_aff_aligned(
7415 isl_multi_pw_aff_copy(mpa),
7416 isl_aff_copy(pa->p[i].aff));
7417 domain = isl_set_copy(pa->p[i].set);
7418 domain = isl_set_preimage_multi_pw_aff(domain,
7419 isl_multi_pw_aff_copy(mpa));
7420 pa_i = isl_pw_aff_intersect_domain(pa_i, domain);
7421 res = isl_pw_aff_add_disjoint(res, pa_i);
7424 isl_pw_aff_free(pa);
7425 isl_multi_pw_aff_free(mpa);
7426 return res;
7427 error:
7428 isl_pw_aff_free(pa);
7429 isl_multi_pw_aff_free(mpa);
7430 return NULL;
7433 /* Apply "pa" to "mpa". The range of "mpa" needs to be compatible
7434 * with the domain of "pa". The domain of the result is the same
7435 * as that of "mpa".
7437 __isl_give isl_pw_aff *isl_multi_pw_aff_apply_pw_aff(
7438 __isl_take isl_multi_pw_aff *mpa, __isl_take isl_pw_aff *pa)
7440 isl_bool equal_params;
7442 if (!pa || !mpa)
7443 goto error;
7444 equal_params = isl_space_has_equal_params(pa->dim, mpa->space);
7445 if (equal_params < 0)
7446 goto error;
7447 if (equal_params)
7448 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
7450 pa = isl_pw_aff_align_params(pa, isl_multi_pw_aff_get_space(mpa));
7451 mpa = isl_multi_pw_aff_align_params(mpa, isl_pw_aff_get_space(pa));
7453 return isl_multi_pw_aff_apply_pw_aff_aligned(mpa, pa);
7454 error:
7455 isl_pw_aff_free(pa);
7456 isl_multi_pw_aff_free(mpa);
7457 return NULL;
7460 /* Compute the pullback of "pa" by the function represented by "mpa".
7461 * In other words, plug in "mpa" in "pa".
7463 * The pullback is computed by applying "pa" to "mpa".
7465 __isl_give isl_pw_aff *isl_pw_aff_pullback_multi_pw_aff(
7466 __isl_take isl_pw_aff *pa, __isl_take isl_multi_pw_aff *mpa)
7468 return isl_multi_pw_aff_apply_pw_aff(mpa, pa);
7471 #undef BASE
7472 #define BASE multi_pw_aff
7474 #include "isl_multi_pw_aff_pullback_templ.c"
7476 /* Align the parameters of "mpa1" and "mpa2", check that the ranges
7477 * of "mpa1" and "mpa2" live in the same space, construct map space
7478 * between the domain spaces of "mpa1" and "mpa2" and call "order"
7479 * with this map space as extract argument.
7481 static __isl_give isl_map *isl_multi_pw_aff_order_map(
7482 __isl_take isl_multi_pw_aff *mpa1, __isl_take isl_multi_pw_aff *mpa2,
7483 __isl_give isl_map *(*order)(__isl_keep isl_multi_pw_aff *mpa1,
7484 __isl_keep isl_multi_pw_aff *mpa2, __isl_take isl_space *space))
7486 int match;
7487 isl_space *space1, *space2;
7488 isl_map *res;
7490 mpa1 = isl_multi_pw_aff_align_params(mpa1,
7491 isl_multi_pw_aff_get_space(mpa2));
7492 mpa2 = isl_multi_pw_aff_align_params(mpa2,
7493 isl_multi_pw_aff_get_space(mpa1));
7494 if (!mpa1 || !mpa2)
7495 goto error;
7496 match = isl_space_tuple_is_equal(mpa1->space, isl_dim_out,
7497 mpa2->space, isl_dim_out);
7498 if (match < 0)
7499 goto error;
7500 if (!match)
7501 isl_die(isl_multi_pw_aff_get_ctx(mpa1), isl_error_invalid,
7502 "range spaces don't match", goto error);
7503 space1 = isl_space_domain(isl_multi_pw_aff_get_space(mpa1));
7504 space2 = isl_space_domain(isl_multi_pw_aff_get_space(mpa2));
7505 space1 = isl_space_map_from_domain_and_range(space1, space2);
7507 res = order(mpa1, mpa2, space1);
7508 isl_multi_pw_aff_free(mpa1);
7509 isl_multi_pw_aff_free(mpa2);
7510 return res;
7511 error:
7512 isl_multi_pw_aff_free(mpa1);
7513 isl_multi_pw_aff_free(mpa2);
7514 return NULL;
7517 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7518 * where the function values are equal. "space" is the space of the result.
7519 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7521 * "mpa1" and "mpa2" are equal when each of the pairs of elements
7522 * in the sequences are equal.
7524 static __isl_give isl_map *isl_multi_pw_aff_eq_map_on_space(
7525 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7526 __isl_take isl_space *space)
7528 int i;
7529 isl_size n;
7530 isl_map *res;
7532 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
7533 if (n < 0)
7534 space = isl_space_free(space);
7535 res = isl_map_universe(space);
7537 for (i = 0; i < n; ++i) {
7538 isl_pw_aff *pa1, *pa2;
7539 isl_map *map;
7541 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7542 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7543 map = isl_pw_aff_eq_map(pa1, pa2);
7544 res = isl_map_intersect(res, map);
7547 return res;
7550 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7551 * where the function values are equal.
7553 __isl_give isl_map *isl_multi_pw_aff_eq_map(__isl_take isl_multi_pw_aff *mpa1,
7554 __isl_take isl_multi_pw_aff *mpa2)
7556 return isl_multi_pw_aff_order_map(mpa1, mpa2,
7557 &isl_multi_pw_aff_eq_map_on_space);
7560 /* Intersect "map" with the result of applying "order"
7561 * on two copies of "mpa".
7563 static __isl_give isl_map *isl_map_order_at_multi_pw_aff(
7564 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa,
7565 __isl_give isl_map *(*order)(__isl_take isl_multi_pw_aff *mpa1,
7566 __isl_take isl_multi_pw_aff *mpa2))
7568 return isl_map_intersect(map, order(mpa, isl_multi_pw_aff_copy(mpa)));
7571 /* Return the subset of "map" where the domain and the range
7572 * have equal "mpa" values.
7574 __isl_give isl_map *isl_map_eq_at_multi_pw_aff(__isl_take isl_map *map,
7575 __isl_take isl_multi_pw_aff *mpa)
7577 return isl_map_order_at_multi_pw_aff(map, mpa,
7578 &isl_multi_pw_aff_eq_map);
7581 /* Return a map containing pairs of elements in the domains of "mpa1" and "mpa2"
7582 * where the function values of "mpa1" lexicographically satisfies
7583 * "strict_base"/"base" compared to that of "mpa2".
7584 * "space" is the space of the result.
7585 * The parameters of "mpa1" and "mpa2" are assumed to have been aligned.
7587 * "mpa1" lexicographically satisfies "strict_base"/"base" compared to "mpa2"
7588 * if, for some i, the i-th element of "mpa1" satisfies "strict_base"/"base"
7589 * when compared to the i-th element of "mpa2" while all previous elements are
7590 * pairwise equal.
7591 * In particular, if i corresponds to the final elements
7592 * then they need to satisfy "base", while "strict_base" needs to be satisfied
7593 * for other values of i.
7594 * If "base" is a strict order, then "base" and "strict_base" are the same.
7596 static __isl_give isl_map *isl_multi_pw_aff_lex_map_on_space(
7597 __isl_keep isl_multi_pw_aff *mpa1, __isl_keep isl_multi_pw_aff *mpa2,
7598 __isl_give isl_map *(*strict_base)(__isl_take isl_pw_aff *pa1,
7599 __isl_take isl_pw_aff *pa2),
7600 __isl_give isl_map *(*base)(__isl_take isl_pw_aff *pa1,
7601 __isl_take isl_pw_aff *pa2),
7602 __isl_take isl_space *space)
7604 int i;
7605 isl_size n;
7606 isl_map *res, *rest;
7608 n = isl_multi_pw_aff_dim(mpa1, isl_dim_out);
7609 if (n < 0)
7610 space = isl_space_free(space);
7611 res = isl_map_empty(isl_space_copy(space));
7612 rest = isl_map_universe(space);
7614 for (i = 0; i < n; ++i) {
7615 int last;
7616 isl_pw_aff *pa1, *pa2;
7617 isl_map *map;
7619 last = i == n - 1;
7621 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7622 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7623 map = last ? base(pa1, pa2) : strict_base(pa1, pa2);
7624 map = isl_map_intersect(map, isl_map_copy(rest));
7625 res = isl_map_union(res, map);
7627 if (last)
7628 continue;
7630 pa1 = isl_multi_pw_aff_get_pw_aff(mpa1, i);
7631 pa2 = isl_multi_pw_aff_get_pw_aff(mpa2, i);
7632 map = isl_pw_aff_eq_map(pa1, pa2);
7633 rest = isl_map_intersect(rest, map);
7636 isl_map_free(rest);
7637 return res;
7640 #undef ORDER
7641 #define ORDER le
7642 #undef STRICT_ORDER
7643 #define STRICT_ORDER lt
7644 #include "isl_aff_lex_templ.c"
7646 #undef ORDER
7647 #define ORDER lt
7648 #undef STRICT_ORDER
7649 #define STRICT_ORDER lt
7650 #include "isl_aff_lex_templ.c"
7652 #undef ORDER
7653 #define ORDER ge
7654 #undef STRICT_ORDER
7655 #define STRICT_ORDER gt
7656 #include "isl_aff_lex_templ.c"
7658 #undef ORDER
7659 #define ORDER gt
7660 #undef STRICT_ORDER
7661 #define STRICT_ORDER gt
7662 #include "isl_aff_lex_templ.c"
7664 /* Compare two isl_affs.
7666 * Return -1 if "aff1" is "smaller" than "aff2", 1 if "aff1" is "greater"
7667 * than "aff2" and 0 if they are equal.
7669 * The order is fairly arbitrary. We do consider expressions that only involve
7670 * earlier dimensions as "smaller".
7672 int isl_aff_plain_cmp(__isl_keep isl_aff *aff1, __isl_keep isl_aff *aff2)
7674 int cmp;
7675 int last1, last2;
7677 if (aff1 == aff2)
7678 return 0;
7680 if (!aff1)
7681 return -1;
7682 if (!aff2)
7683 return 1;
7685 cmp = isl_local_space_cmp(aff1->ls, aff2->ls);
7686 if (cmp != 0)
7687 return cmp;
7689 last1 = isl_seq_last_non_zero(aff1->v->el + 1, aff1->v->size - 1);
7690 last2 = isl_seq_last_non_zero(aff2->v->el + 1, aff1->v->size - 1);
7691 if (last1 != last2)
7692 return last1 - last2;
7694 return isl_seq_cmp(aff1->v->el, aff2->v->el, aff1->v->size);
7697 /* Compare two isl_pw_affs.
7699 * Return -1 if "pa1" is "smaller" than "pa2", 1 if "pa1" is "greater"
7700 * than "pa2" and 0 if they are equal.
7702 * The order is fairly arbitrary. We do consider expressions that only involve
7703 * earlier dimensions as "smaller".
7705 int isl_pw_aff_plain_cmp(__isl_keep isl_pw_aff *pa1,
7706 __isl_keep isl_pw_aff *pa2)
7708 int i;
7709 int cmp;
7711 if (pa1 == pa2)
7712 return 0;
7714 if (!pa1)
7715 return -1;
7716 if (!pa2)
7717 return 1;
7719 cmp = isl_space_cmp(pa1->dim, pa2->dim);
7720 if (cmp != 0)
7721 return cmp;
7723 if (pa1->n != pa2->n)
7724 return pa1->n - pa2->n;
7726 for (i = 0; i < pa1->n; ++i) {
7727 cmp = isl_set_plain_cmp(pa1->p[i].set, pa2->p[i].set);
7728 if (cmp != 0)
7729 return cmp;
7730 cmp = isl_aff_plain_cmp(pa1->p[i].aff, pa2->p[i].aff);
7731 if (cmp != 0)
7732 return cmp;
7735 return 0;
7738 /* Return a piecewise affine expression that is equal to "v" on "domain".
7740 __isl_give isl_pw_aff *isl_pw_aff_val_on_domain(__isl_take isl_set *domain,
7741 __isl_take isl_val *v)
7743 isl_space *space;
7744 isl_local_space *ls;
7745 isl_aff *aff;
7747 space = isl_set_get_space(domain);
7748 ls = isl_local_space_from_space(space);
7749 aff = isl_aff_val_on_domain(ls, v);
7751 return isl_pw_aff_alloc(domain, aff);
7754 /* This function performs the same operation as isl_pw_aff_val_on_domain,
7755 * but is considered as a function on an isl_set when exported.
7757 __isl_give isl_pw_aff *isl_set_pw_aff_on_domain_val(__isl_take isl_set *domain,
7758 __isl_take isl_val *v)
7760 return isl_pw_aff_val_on_domain(domain, v);
7763 /* Return a piecewise affine expression that is equal to the parameter
7764 * with identifier "id" on "domain".
7766 __isl_give isl_pw_aff *isl_pw_aff_param_on_domain_id(
7767 __isl_take isl_set *domain, __isl_take isl_id *id)
7769 isl_space *space;
7770 isl_aff *aff;
7772 space = isl_set_get_space(domain);
7773 space = isl_space_add_param_id(space, isl_id_copy(id));
7774 domain = isl_set_align_params(domain, isl_space_copy(space));
7775 aff = isl_aff_param_on_domain_space_id(space, id);
7777 return isl_pw_aff_alloc(domain, aff);
7780 /* This function performs the same operation as
7781 * isl_pw_aff_param_on_domain_id,
7782 * but is considered as a function on an isl_set when exported.
7784 __isl_give isl_pw_aff *isl_set_param_pw_aff_on_domain_id(
7785 __isl_take isl_set *domain, __isl_take isl_id *id)
7787 return isl_pw_aff_param_on_domain_id(domain, id);
7790 /* Return a multi affine expression that is equal to "mv" on domain
7791 * space "space".
7793 __isl_give isl_multi_aff *isl_multi_aff_multi_val_on_domain_space(
7794 __isl_take isl_space *space, __isl_take isl_multi_val *mv)
7796 int i;
7797 isl_size n;
7798 isl_space *space2;
7799 isl_local_space *ls;
7800 isl_multi_aff *ma;
7802 n = isl_multi_val_dim(mv, isl_dim_set);
7803 if (!space || n < 0)
7804 goto error;
7806 space2 = isl_multi_val_get_space(mv);
7807 space2 = isl_space_align_params(space2, isl_space_copy(space));
7808 space = isl_space_align_params(space, isl_space_copy(space2));
7809 space = isl_space_map_from_domain_and_range(space, space2);
7810 ma = isl_multi_aff_alloc(isl_space_copy(space));
7811 ls = isl_local_space_from_space(isl_space_domain(space));
7812 for (i = 0; i < n; ++i) {
7813 isl_val *v;
7814 isl_aff *aff;
7816 v = isl_multi_val_get_val(mv, i);
7817 aff = isl_aff_val_on_domain(isl_local_space_copy(ls), v);
7818 ma = isl_multi_aff_set_aff(ma, i, aff);
7820 isl_local_space_free(ls);
7822 isl_multi_val_free(mv);
7823 return ma;
7824 error:
7825 isl_space_free(space);
7826 isl_multi_val_free(mv);
7827 return NULL;
7830 /* This is an alternative name for the function above.
7832 __isl_give isl_multi_aff *isl_multi_aff_multi_val_on_space(
7833 __isl_take isl_space *space, __isl_take isl_multi_val *mv)
7835 return isl_multi_aff_multi_val_on_domain_space(space, mv);
7838 /* This function performs the same operation as
7839 * isl_multi_aff_multi_val_on_domain_space,
7840 * but is considered as a function on an isl_space when exported.
7842 __isl_give isl_multi_aff *isl_space_multi_aff_on_domain_multi_val(
7843 __isl_take isl_space *space, __isl_take isl_multi_val *mv)
7845 return isl_multi_aff_multi_val_on_domain_space(space, mv);
7848 /* Return a piecewise multi-affine expression
7849 * that is equal to "mv" on "domain".
7851 __isl_give isl_pw_multi_aff *isl_pw_multi_aff_multi_val_on_domain(
7852 __isl_take isl_set *domain, __isl_take isl_multi_val *mv)
7854 isl_space *space;
7855 isl_multi_aff *ma;
7857 space = isl_set_get_space(domain);
7858 ma = isl_multi_aff_multi_val_on_space(space, mv);
7860 return isl_pw_multi_aff_alloc(domain, ma);
7863 /* This function performs the same operation as
7864 * isl_pw_multi_aff_multi_val_on_domain,
7865 * but is considered as a function on an isl_set when exported.
7867 __isl_give isl_pw_multi_aff *isl_set_pw_multi_aff_on_domain_multi_val(
7868 __isl_take isl_set *domain, __isl_take isl_multi_val *mv)
7870 return isl_pw_multi_aff_multi_val_on_domain(domain, mv);
7873 /* Internal data structure for isl_union_pw_multi_aff_multi_val_on_domain.
7874 * mv is the value that should be attained on each domain set
7875 * res collects the results
7877 struct isl_union_pw_multi_aff_multi_val_on_domain_data {
7878 isl_multi_val *mv;
7879 isl_union_pw_multi_aff *res;
7882 /* Create an isl_pw_multi_aff equal to data->mv on "domain"
7883 * and add it to data->res.
7885 static isl_stat pw_multi_aff_multi_val_on_domain(__isl_take isl_set *domain,
7886 void *user)
7888 struct isl_union_pw_multi_aff_multi_val_on_domain_data *data = user;
7889 isl_pw_multi_aff *pma;
7890 isl_multi_val *mv;
7892 mv = isl_multi_val_copy(data->mv);
7893 pma = isl_pw_multi_aff_multi_val_on_domain(domain, mv);
7894 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
7896 return data->res ? isl_stat_ok : isl_stat_error;
7899 /* Return a union piecewise multi-affine expression
7900 * that is equal to "mv" on "domain".
7902 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_multi_val_on_domain(
7903 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
7905 struct isl_union_pw_multi_aff_multi_val_on_domain_data data;
7906 isl_space *space;
7908 space = isl_union_set_get_space(domain);
7909 data.res = isl_union_pw_multi_aff_empty(space);
7910 data.mv = mv;
7911 if (isl_union_set_foreach_set(domain,
7912 &pw_multi_aff_multi_val_on_domain, &data) < 0)
7913 data.res = isl_union_pw_multi_aff_free(data.res);
7914 isl_union_set_free(domain);
7915 isl_multi_val_free(mv);
7916 return data.res;
7919 /* Compute the pullback of data->pma by the function represented by "pma2",
7920 * provided the spaces match, and add the results to data->res.
7922 static isl_stat pullback_entry(__isl_take isl_pw_multi_aff *pma2, void *user)
7924 struct isl_union_pw_multi_aff_bin_data *data = user;
7926 if (!isl_space_tuple_is_equal(data->pma->dim, isl_dim_in,
7927 pma2->dim, isl_dim_out)) {
7928 isl_pw_multi_aff_free(pma2);
7929 return isl_stat_ok;
7932 pma2 = isl_pw_multi_aff_pullback_pw_multi_aff(
7933 isl_pw_multi_aff_copy(data->pma), pma2);
7935 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
7936 if (!data->res)
7937 return isl_stat_error;
7939 return isl_stat_ok;
7942 /* Compute the pullback of "upma1" by the function represented by "upma2".
7944 __isl_give isl_union_pw_multi_aff *
7945 isl_union_pw_multi_aff_pullback_union_pw_multi_aff(
7946 __isl_take isl_union_pw_multi_aff *upma1,
7947 __isl_take isl_union_pw_multi_aff *upma2)
7949 return bin_op(upma1, upma2, &pullback_entry);
7952 /* Apply "upma2" to "upma1".
7954 * That is, compute the pullback of "upma2" by "upma1".
7956 __isl_give isl_union_pw_multi_aff *
7957 isl_union_pw_multi_aff_apply_union_pw_multi_aff(
7958 __isl_take isl_union_pw_multi_aff *upma1,
7959 __isl_take isl_union_pw_multi_aff *upma2)
7961 return isl_union_pw_multi_aff_pullback_union_pw_multi_aff(upma2, upma1);
7964 #undef TYPE
7965 #define TYPE isl_pw_multi_aff
7966 static
7967 #include "isl_copy_tuple_id_templ.c"
7969 /* Given a function "pma1" of the form A[B -> C] -> D and
7970 * a function "pma2" of the form E -> B,
7971 * replace the domain of the wrapped relation inside the domain of "pma1"
7972 * by the preimage with respect to "pma2".
7973 * In other words, plug in "pma2" in this nested domain.
7974 * The result is of the form A[E -> C] -> D.
7976 * In particular, extend E -> B to A[E -> C] -> A[B -> C] and
7977 * plug that into "pma1".
7979 __isl_give isl_pw_multi_aff *
7980 isl_pw_multi_aff_preimage_domain_wrapped_domain_pw_multi_aff(
7981 __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
7983 isl_space *pma1_space, *pma2_space;
7984 isl_space *space;
7985 isl_pw_multi_aff *id;
7987 pma1_space = isl_pw_multi_aff_peek_space(pma1);
7988 pma2_space = isl_pw_multi_aff_peek_space(pma2);
7990 if (isl_space_check_domain_is_wrapping(pma1_space) < 0)
7991 goto error;
7992 if (isl_space_check_wrapped_tuple_is_equal(pma1_space,
7993 isl_dim_in, isl_dim_in, pma2_space, isl_dim_out) < 0)
7994 goto error;
7996 space = isl_space_domain(isl_space_copy(pma1_space));
7997 space = isl_space_range(isl_space_unwrap(space));
7998 id = isl_pw_multi_aff_identity_on_domain_space(space);
7999 pma2 = isl_pw_multi_aff_product(pma2, id);
8001 pma2 = isl_pw_multi_aff_copy_tuple_id(pma2, isl_dim_in,
8002 pma1_space, isl_dim_in);
8003 pma2 = isl_pw_multi_aff_copy_tuple_id(pma2, isl_dim_out,
8004 pma1_space, isl_dim_in);
8006 return isl_pw_multi_aff_pullback_pw_multi_aff(pma1, pma2);
8007 error:
8008 isl_pw_multi_aff_free(pma1);
8009 isl_pw_multi_aff_free(pma2);
8010 return NULL;
8013 /* If data->pma and "pma2" are such that
8014 * data->pma is of the form A[B -> C] -> D and
8015 * "pma2" is of the form E -> B,
8016 * then replace the domain of the wrapped relation
8017 * inside the domain of data->pma by the preimage with respect to "pma2" and
8018 * add the result to data->res.
8020 static isl_stat preimage_domain_wrapped_domain_entry(
8021 __isl_take isl_pw_multi_aff *pma2, void *user)
8023 struct isl_union_pw_multi_aff_bin_data *data = user;
8024 isl_space *pma1_space, *pma2_space;
8025 isl_bool match;
8027 pma1_space = isl_pw_multi_aff_peek_space(data->pma);
8028 pma2_space = isl_pw_multi_aff_peek_space(pma2);
8030 match = isl_space_domain_is_wrapping(pma1_space);
8031 if (match >= 0 && match)
8032 match = isl_space_wrapped_tuple_is_equal(pma1_space, isl_dim_in,
8033 isl_dim_in, pma2_space, isl_dim_out);
8034 if (match < 0 || !match) {
8035 isl_pw_multi_aff_free(pma2);
8036 return match < 0 ? isl_stat_error : isl_stat_ok;
8039 pma2 = isl_pw_multi_aff_preimage_domain_wrapped_domain_pw_multi_aff(
8040 isl_pw_multi_aff_copy(data->pma), pma2);
8042 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma2);
8044 return isl_stat_non_null(data->res);
8047 /* For each pair of functions A[B -> C] -> D in "upma1" and
8048 * E -> B in "upma2",
8049 * replace the domain of the wrapped relation inside the domain of the first
8050 * by the preimage with respect to the second and collect the results.
8051 * In other words, plug in the second function in this nested domain.
8052 * The results are of the form A[E -> C] -> D.
8054 __isl_give isl_union_pw_multi_aff *
8055 isl_union_pw_multi_aff_preimage_domain_wrapped_domain_union_pw_multi_aff(
8056 __isl_take isl_union_pw_multi_aff *upma1,
8057 __isl_take isl_union_pw_multi_aff *upma2)
8059 return bin_op(upma1, upma2, &preimage_domain_wrapped_domain_entry);
8062 /* Check that the domain space of "upa" matches "space".
8064 * This function is called from isl_multi_union_pw_aff_set_union_pw_aff and
8065 * can in principle never fail since the space "space" is that
8066 * of the isl_multi_union_pw_aff and is a set space such that
8067 * there is no domain space to match.
8069 * We check the parameters and double-check that "space" is
8070 * indeed that of a set.
8072 static isl_stat isl_union_pw_aff_check_match_domain_space(
8073 __isl_keep isl_union_pw_aff *upa, __isl_keep isl_space *space)
8075 isl_space *upa_space;
8076 isl_bool match;
8078 if (!upa || !space)
8079 return isl_stat_error;
8081 match = isl_space_is_set(space);
8082 if (match < 0)
8083 return isl_stat_error;
8084 if (!match)
8085 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8086 "expecting set space", return isl_stat_error);
8088 upa_space = isl_union_pw_aff_get_space(upa);
8089 match = isl_space_has_equal_params(space, upa_space);
8090 if (match < 0)
8091 goto error;
8092 if (!match)
8093 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8094 "parameters don't match", goto error);
8096 isl_space_free(upa_space);
8097 return isl_stat_ok;
8098 error:
8099 isl_space_free(upa_space);
8100 return isl_stat_error;
8103 /* Do the parameters of "upa" match those of "space"?
8105 static isl_bool isl_union_pw_aff_matching_params(
8106 __isl_keep isl_union_pw_aff *upa, __isl_keep isl_space *space)
8108 isl_space *upa_space;
8109 isl_bool match;
8111 if (!upa || !space)
8112 return isl_bool_error;
8114 upa_space = isl_union_pw_aff_get_space(upa);
8116 match = isl_space_has_equal_params(space, upa_space);
8118 isl_space_free(upa_space);
8119 return match;
8122 /* Internal data structure for isl_union_pw_aff_reset_domain_space.
8123 * space represents the new parameters.
8124 * res collects the results.
8126 struct isl_union_pw_aff_reset_params_data {
8127 isl_space *space;
8128 isl_union_pw_aff *res;
8131 /* Replace the parameters of "pa" by data->space and
8132 * add the result to data->res.
8134 static isl_stat reset_params(__isl_take isl_pw_aff *pa, void *user)
8136 struct isl_union_pw_aff_reset_params_data *data = user;
8137 isl_space *space;
8139 space = isl_pw_aff_get_space(pa);
8140 space = isl_space_replace_params(space, data->space);
8141 pa = isl_pw_aff_reset_space(pa, space);
8142 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
8144 return data->res ? isl_stat_ok : isl_stat_error;
8147 /* Replace the domain space of "upa" by "space".
8148 * Since a union expression does not have a (single) domain space,
8149 * "space" is necessarily a parameter space.
8151 * Since the order and the names of the parameters determine
8152 * the hash value, we need to create a new hash table.
8154 static __isl_give isl_union_pw_aff *isl_union_pw_aff_reset_domain_space(
8155 __isl_take isl_union_pw_aff *upa, __isl_take isl_space *space)
8157 struct isl_union_pw_aff_reset_params_data data = { space };
8158 isl_bool match;
8160 match = isl_union_pw_aff_matching_params(upa, space);
8161 if (match < 0)
8162 upa = isl_union_pw_aff_free(upa);
8163 else if (match) {
8164 isl_space_free(space);
8165 return upa;
8168 data.res = isl_union_pw_aff_empty(isl_space_copy(space));
8169 if (isl_union_pw_aff_foreach_pw_aff(upa, &reset_params, &data) < 0)
8170 data.res = isl_union_pw_aff_free(data.res);
8172 isl_union_pw_aff_free(upa);
8173 isl_space_free(space);
8174 return data.res;
8177 /* Return the floor of "pa".
8179 static __isl_give isl_pw_aff *floor_entry(__isl_take isl_pw_aff *pa, void *user)
8181 return isl_pw_aff_floor(pa);
8184 /* Given f, return floor(f).
8186 __isl_give isl_union_pw_aff *isl_union_pw_aff_floor(
8187 __isl_take isl_union_pw_aff *upa)
8189 return isl_union_pw_aff_transform_inplace(upa, &floor_entry, NULL);
8192 /* Compute
8194 * upa mod m = upa - m * floor(upa/m)
8196 * with m an integer value.
8198 __isl_give isl_union_pw_aff *isl_union_pw_aff_mod_val(
8199 __isl_take isl_union_pw_aff *upa, __isl_take isl_val *m)
8201 isl_union_pw_aff *res;
8203 if (!upa || !m)
8204 goto error;
8206 if (!isl_val_is_int(m))
8207 isl_die(isl_val_get_ctx(m), isl_error_invalid,
8208 "expecting integer modulo", goto error);
8209 if (!isl_val_is_pos(m))
8210 isl_die(isl_val_get_ctx(m), isl_error_invalid,
8211 "expecting positive modulo", goto error);
8213 res = isl_union_pw_aff_copy(upa);
8214 upa = isl_union_pw_aff_scale_down_val(upa, isl_val_copy(m));
8215 upa = isl_union_pw_aff_floor(upa);
8216 upa = isl_union_pw_aff_scale_val(upa, m);
8217 res = isl_union_pw_aff_sub(res, upa);
8219 return res;
8220 error:
8221 isl_val_free(m);
8222 isl_union_pw_aff_free(upa);
8223 return NULL;
8226 /* Internal data structure for isl_union_pw_multi_aff_get_union_pw_aff.
8227 * pos is the output position that needs to be extracted.
8228 * res collects the results.
8230 struct isl_union_pw_multi_aff_get_union_pw_aff_data {
8231 int pos;
8232 isl_union_pw_aff *res;
8235 /* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma"
8236 * (assuming it has such a dimension) and add it to data->res.
8238 static isl_stat get_union_pw_aff(__isl_take isl_pw_multi_aff *pma, void *user)
8240 struct isl_union_pw_multi_aff_get_union_pw_aff_data *data = user;
8241 isl_size n_out;
8242 isl_pw_aff *pa;
8244 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
8245 if (n_out < 0)
8246 return isl_stat_error;
8247 if (data->pos >= n_out) {
8248 isl_pw_multi_aff_free(pma);
8249 return isl_stat_ok;
8252 pa = isl_pw_multi_aff_get_pw_aff(pma, data->pos);
8253 isl_pw_multi_aff_free(pma);
8255 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
8257 return data->res ? isl_stat_ok : isl_stat_error;
8260 /* Extract an isl_union_pw_aff corresponding to
8261 * output dimension "pos" of "upma".
8263 __isl_give isl_union_pw_aff *isl_union_pw_multi_aff_get_union_pw_aff(
8264 __isl_keep isl_union_pw_multi_aff *upma, int pos)
8266 struct isl_union_pw_multi_aff_get_union_pw_aff_data data;
8267 isl_space *space;
8269 if (!upma)
8270 return NULL;
8272 if (pos < 0)
8273 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
8274 "cannot extract at negative position", return NULL);
8276 space = isl_union_pw_multi_aff_get_space(upma);
8277 data.res = isl_union_pw_aff_empty(space);
8278 data.pos = pos;
8279 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
8280 &get_union_pw_aff, &data) < 0)
8281 data.res = isl_union_pw_aff_free(data.res);
8283 return data.res;
8286 /* Return a union piecewise affine expression
8287 * that is equal to "aff" on "domain".
8289 __isl_give isl_union_pw_aff *isl_union_pw_aff_aff_on_domain(
8290 __isl_take isl_union_set *domain, __isl_take isl_aff *aff)
8292 isl_pw_aff *pa;
8294 pa = isl_pw_aff_from_aff(aff);
8295 return isl_union_pw_aff_pw_aff_on_domain(domain, pa);
8298 /* Return a union piecewise affine expression
8299 * that is equal to the parameter identified by "id" on "domain".
8301 * Make sure the parameter appears in the space passed to
8302 * isl_aff_param_on_domain_space_id.
8304 __isl_give isl_union_pw_aff *isl_union_pw_aff_param_on_domain_id(
8305 __isl_take isl_union_set *domain, __isl_take isl_id *id)
8307 isl_space *space;
8308 isl_aff *aff;
8310 space = isl_union_set_get_space(domain);
8311 space = isl_space_add_param_id(space, isl_id_copy(id));
8312 aff = isl_aff_param_on_domain_space_id(space, id);
8313 return isl_union_pw_aff_aff_on_domain(domain, aff);
8316 /* Internal data structure for isl_union_pw_aff_pw_aff_on_domain.
8317 * "pa" is the piecewise symbolic value that the resulting isl_union_pw_aff
8318 * needs to attain.
8319 * "res" collects the results.
8321 struct isl_union_pw_aff_pw_aff_on_domain_data {
8322 isl_pw_aff *pa;
8323 isl_union_pw_aff *res;
8326 /* Construct a piecewise affine expression that is equal to data->pa
8327 * on "domain" and add the result to data->res.
8329 static isl_stat pw_aff_on_domain(__isl_take isl_set *domain, void *user)
8331 struct isl_union_pw_aff_pw_aff_on_domain_data *data = user;
8332 isl_pw_aff *pa;
8333 isl_size dim;
8335 pa = isl_pw_aff_copy(data->pa);
8336 dim = isl_set_dim(domain, isl_dim_set);
8337 if (dim < 0)
8338 pa = isl_pw_aff_free(pa);
8339 pa = isl_pw_aff_from_range(pa);
8340 pa = isl_pw_aff_add_dims(pa, isl_dim_in, dim);
8341 pa = isl_pw_aff_reset_domain_space(pa, isl_set_get_space(domain));
8342 pa = isl_pw_aff_intersect_domain(pa, domain);
8343 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
8345 return data->res ? isl_stat_ok : isl_stat_error;
8348 /* Return a union piecewise affine expression
8349 * that is equal to "pa" on "domain", assuming "domain" and "pa"
8350 * have been aligned.
8352 * Construct an isl_pw_aff on each of the sets in "domain" and
8353 * collect the results.
8355 static __isl_give isl_union_pw_aff *isl_union_pw_aff_pw_aff_on_domain_aligned(
8356 __isl_take isl_union_set *domain, __isl_take isl_pw_aff *pa)
8358 struct isl_union_pw_aff_pw_aff_on_domain_data data;
8359 isl_space *space;
8361 space = isl_union_set_get_space(domain);
8362 data.res = isl_union_pw_aff_empty(space);
8363 data.pa = pa;
8364 if (isl_union_set_foreach_set(domain, &pw_aff_on_domain, &data) < 0)
8365 data.res = isl_union_pw_aff_free(data.res);
8366 isl_union_set_free(domain);
8367 isl_pw_aff_free(pa);
8368 return data.res;
8371 /* Return a union piecewise affine expression
8372 * that is equal to "pa" on "domain".
8374 * Check that "pa" is a parametric expression,
8375 * align the parameters if needed and call
8376 * isl_union_pw_aff_pw_aff_on_domain_aligned.
8378 __isl_give isl_union_pw_aff *isl_union_pw_aff_pw_aff_on_domain(
8379 __isl_take isl_union_set *domain, __isl_take isl_pw_aff *pa)
8381 isl_bool is_set;
8382 isl_bool equal_params;
8383 isl_space *domain_space, *pa_space;
8385 pa_space = isl_pw_aff_peek_space(pa);
8386 is_set = isl_space_is_set(pa_space);
8387 if (is_set < 0)
8388 goto error;
8389 if (!is_set)
8390 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
8391 "expecting parametric expression", goto error);
8393 domain_space = isl_union_set_get_space(domain);
8394 pa_space = isl_pw_aff_get_space(pa);
8395 equal_params = isl_space_has_equal_params(domain_space, pa_space);
8396 if (equal_params >= 0 && !equal_params) {
8397 isl_space *space;
8399 space = isl_space_align_params(domain_space, pa_space);
8400 pa = isl_pw_aff_align_params(pa, isl_space_copy(space));
8401 domain = isl_union_set_align_params(domain, space);
8402 } else {
8403 isl_space_free(domain_space);
8404 isl_space_free(pa_space);
8407 if (equal_params < 0)
8408 goto error;
8409 return isl_union_pw_aff_pw_aff_on_domain_aligned(domain, pa);
8410 error:
8411 isl_union_set_free(domain);
8412 isl_pw_aff_free(pa);
8413 return NULL;
8416 /* Internal data structure for isl_union_pw_aff_val_on_domain.
8417 * "v" is the value that the resulting isl_union_pw_aff needs to attain.
8418 * "res" collects the results.
8420 struct isl_union_pw_aff_val_on_domain_data {
8421 isl_val *v;
8422 isl_union_pw_aff *res;
8425 /* Construct a piecewise affine expression that is equal to data->v
8426 * on "domain" and add the result to data->res.
8428 static isl_stat pw_aff_val_on_domain(__isl_take isl_set *domain, void *user)
8430 struct isl_union_pw_aff_val_on_domain_data *data = user;
8431 isl_pw_aff *pa;
8432 isl_val *v;
8434 v = isl_val_copy(data->v);
8435 pa = isl_pw_aff_val_on_domain(domain, v);
8436 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
8438 return data->res ? isl_stat_ok : isl_stat_error;
8441 /* Return a union piecewise affine expression
8442 * that is equal to "v" on "domain".
8444 * Construct an isl_pw_aff on each of the sets in "domain" and
8445 * collect the results.
8447 __isl_give isl_union_pw_aff *isl_union_pw_aff_val_on_domain(
8448 __isl_take isl_union_set *domain, __isl_take isl_val *v)
8450 struct isl_union_pw_aff_val_on_domain_data data;
8451 isl_space *space;
8453 space = isl_union_set_get_space(domain);
8454 data.res = isl_union_pw_aff_empty(space);
8455 data.v = v;
8456 if (isl_union_set_foreach_set(domain, &pw_aff_val_on_domain, &data) < 0)
8457 data.res = isl_union_pw_aff_free(data.res);
8458 isl_union_set_free(domain);
8459 isl_val_free(v);
8460 return data.res;
8463 /* Construct a piecewise multi affine expression
8464 * that is equal to "pa" and add it to upma.
8466 static isl_stat pw_multi_aff_from_pw_aff_entry(__isl_take isl_pw_aff *pa,
8467 void *user)
8469 isl_union_pw_multi_aff **upma = user;
8470 isl_pw_multi_aff *pma;
8472 pma = isl_pw_multi_aff_from_pw_aff(pa);
8473 *upma = isl_union_pw_multi_aff_add_pw_multi_aff(*upma, pma);
8475 return *upma ? isl_stat_ok : isl_stat_error;
8478 /* Construct and return a union piecewise multi affine expression
8479 * that is equal to the given union piecewise affine expression.
8481 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_from_union_pw_aff(
8482 __isl_take isl_union_pw_aff *upa)
8484 isl_space *space;
8485 isl_union_pw_multi_aff *upma;
8487 if (!upa)
8488 return NULL;
8490 space = isl_union_pw_aff_get_space(upa);
8491 upma = isl_union_pw_multi_aff_empty(space);
8493 if (isl_union_pw_aff_foreach_pw_aff(upa,
8494 &pw_multi_aff_from_pw_aff_entry, &upma) < 0)
8495 upma = isl_union_pw_multi_aff_free(upma);
8497 isl_union_pw_aff_free(upa);
8498 return upma;
8501 /* Compute the set of elements in the domain of "pa" where it is zero and
8502 * add this set to "uset".
8504 static isl_stat zero_union_set(__isl_take isl_pw_aff *pa, void *user)
8506 isl_union_set **uset = (isl_union_set **)user;
8508 *uset = isl_union_set_add_set(*uset, isl_pw_aff_zero_set(pa));
8510 return *uset ? isl_stat_ok : isl_stat_error;
8513 /* Return a union set containing those elements in the domain
8514 * of "upa" where it is zero.
8516 __isl_give isl_union_set *isl_union_pw_aff_zero_union_set(
8517 __isl_take isl_union_pw_aff *upa)
8519 isl_union_set *zero;
8521 zero = isl_union_set_empty(isl_union_pw_aff_get_space(upa));
8522 if (isl_union_pw_aff_foreach_pw_aff(upa, &zero_union_set, &zero) < 0)
8523 zero = isl_union_set_free(zero);
8525 isl_union_pw_aff_free(upa);
8526 return zero;
8529 /* Internal data structure for isl_union_pw_aff_bind_id,
8530 * storing the parameter that needs to be bound and
8531 * the accumulated results.
8533 struct isl_bind_id_data {
8534 isl_id *id;
8535 isl_union_set *bound;
8538 /* Bind the piecewise affine function "pa" to the parameter data->id,
8539 * adding the resulting elements in the domain where the expression
8540 * is equal to the parameter to data->bound.
8542 static isl_stat bind_id(__isl_take isl_pw_aff *pa, void *user)
8544 struct isl_bind_id_data *data = user;
8545 isl_set *bound;
8547 bound = isl_pw_aff_bind_id(pa, isl_id_copy(data->id));
8548 data->bound = isl_union_set_add_set(data->bound, bound);
8550 return data->bound ? isl_stat_ok : isl_stat_error;
8553 /* Bind the union piecewise affine function "upa" to the parameter "id",
8554 * returning the elements in the domain where the expression
8555 * is equal to the parameter.
8557 __isl_give isl_union_set *isl_union_pw_aff_bind_id(
8558 __isl_take isl_union_pw_aff *upa, __isl_take isl_id *id)
8560 struct isl_bind_id_data data = { id };
8562 data.bound = isl_union_set_empty(isl_union_pw_aff_get_space(upa));
8563 if (isl_union_pw_aff_foreach_pw_aff(upa, &bind_id, &data) < 0)
8564 data.bound = isl_union_set_free(data.bound);
8566 isl_union_pw_aff_free(upa);
8567 isl_id_free(id);
8568 return data.bound;
8571 /* Internal data structure for isl_union_pw_aff_pullback_union_pw_multi_aff.
8572 * upma is the function that is plugged in.
8573 * pa is the current part of the function in which upma is plugged in.
8574 * res collects the results.
8576 struct isl_union_pw_aff_pullback_upma_data {
8577 isl_union_pw_multi_aff *upma;
8578 isl_pw_aff *pa;
8579 isl_union_pw_aff *res;
8582 /* Check if "pma" can be plugged into data->pa.
8583 * If so, perform the pullback and add the result to data->res.
8585 static isl_stat pa_pb_pma(__isl_take isl_pw_multi_aff *pma, void *user)
8587 struct isl_union_pw_aff_pullback_upma_data *data = user;
8588 isl_pw_aff *pa;
8590 if (!isl_space_tuple_is_equal(data->pa->dim, isl_dim_in,
8591 pma->dim, isl_dim_out)) {
8592 isl_pw_multi_aff_free(pma);
8593 return isl_stat_ok;
8596 pa = isl_pw_aff_copy(data->pa);
8597 pa = isl_pw_aff_pullback_pw_multi_aff(pa, pma);
8599 data->res = isl_union_pw_aff_add_pw_aff(data->res, pa);
8601 return data->res ? isl_stat_ok : isl_stat_error;
8604 /* Check if any of the elements of data->upma can be plugged into pa,
8605 * add if so add the result to data->res.
8607 static isl_stat upa_pb_upma(__isl_take isl_pw_aff *pa, void *user)
8609 struct isl_union_pw_aff_pullback_upma_data *data = user;
8610 isl_stat r;
8612 data->pa = pa;
8613 r = isl_union_pw_multi_aff_foreach_pw_multi_aff(data->upma,
8614 &pa_pb_pma, data);
8615 isl_pw_aff_free(pa);
8617 return r;
8620 /* Compute the pullback of "upa" by the function represented by "upma".
8621 * In other words, plug in "upma" in "upa". The result contains
8622 * expressions defined over the domain space of "upma".
8624 * Run over all pairs of elements in "upa" and "upma", perform
8625 * the pullback when appropriate and collect the results.
8626 * If the hash value were based on the domain space rather than
8627 * the function space, then we could run through all elements
8628 * of "upma" and directly pick out the corresponding element of "upa".
8630 __isl_give isl_union_pw_aff *isl_union_pw_aff_pullback_union_pw_multi_aff(
8631 __isl_take isl_union_pw_aff *upa,
8632 __isl_take isl_union_pw_multi_aff *upma)
8634 struct isl_union_pw_aff_pullback_upma_data data = { NULL, NULL };
8635 isl_space *space;
8637 space = isl_union_pw_multi_aff_get_space(upma);
8638 upa = isl_union_pw_aff_align_params(upa, space);
8639 space = isl_union_pw_aff_get_space(upa);
8640 upma = isl_union_pw_multi_aff_align_params(upma, space);
8642 if (!upa || !upma)
8643 goto error;
8645 data.upma = upma;
8646 data.res = isl_union_pw_aff_alloc_same_size(upa);
8647 if (isl_union_pw_aff_foreach_pw_aff(upa, &upa_pb_upma, &data) < 0)
8648 data.res = isl_union_pw_aff_free(data.res);
8650 isl_union_pw_aff_free(upa);
8651 isl_union_pw_multi_aff_free(upma);
8652 return data.res;
8653 error:
8654 isl_union_pw_aff_free(upa);
8655 isl_union_pw_multi_aff_free(upma);
8656 return NULL;
8659 #undef BASE
8660 #define BASE union_pw_aff
8661 #undef DOMBASE
8662 #define DOMBASE union_set
8664 #include <isl_multi_explicit_domain.c>
8665 #include <isl_multi_union_pw_aff_explicit_domain.c>
8666 #include <isl_multi_templ.c>
8667 #include <isl_multi_un_op_templ.c>
8668 #include <isl_multi_bin_val_templ.c>
8669 #include <isl_multi_align_set.c>
8670 #include <isl_multi_align_union_set.c>
8671 #include <isl_multi_apply_set_explicit_domain_templ.c>
8672 #include <isl_multi_apply_union_set_explicit_domain_templ.c>
8673 #include <isl_multi_arith_templ.c>
8674 #include <isl_multi_bind_templ.c>
8675 #include <isl_multi_coalesce.c>
8676 #include <isl_multi_dim_id_templ.c>
8677 #include <isl_multi_floor.c>
8678 #include <isl_multi_from_base_templ.c>
8679 #include <isl_multi_check_domain_templ.c>
8680 #include <isl_multi_gist.c>
8681 #include <isl_multi_intersect.c>
8682 #include <isl_multi_nan_templ.c>
8683 #include <isl_multi_tuple_id_templ.c>
8684 #include <isl_multi_union_add_templ.c>
8685 #include <isl_multi_zero_space_templ.c>
8687 /* Does "mupa" have a non-trivial explicit domain?
8689 * The explicit domain, if present, is trivial if it represents
8690 * an (obviously) universe parameter set.
8692 isl_bool isl_multi_union_pw_aff_has_non_trivial_domain(
8693 __isl_keep isl_multi_union_pw_aff *mupa)
8695 isl_bool is_params, trivial;
8696 isl_set *set;
8698 if (!mupa)
8699 return isl_bool_error;
8700 if (!isl_multi_union_pw_aff_has_explicit_domain(mupa))
8701 return isl_bool_false;
8702 is_params = isl_union_set_is_params(mupa->u.dom);
8703 if (is_params < 0 || !is_params)
8704 return isl_bool_not(is_params);
8705 set = isl_set_from_union_set(isl_union_set_copy(mupa->u.dom));
8706 trivial = isl_set_plain_is_universe(set);
8707 isl_set_free(set);
8708 return isl_bool_not(trivial);
8711 /* Construct a multiple union piecewise affine expression
8712 * in the given space with value zero in each of the output dimensions.
8714 * Since there is no canonical zero value for
8715 * a union piecewise affine expression, we can only construct
8716 * a zero-dimensional "zero" value.
8718 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_zero(
8719 __isl_take isl_space *space)
8721 isl_bool params;
8722 isl_size dim;
8724 if (!space)
8725 return NULL;
8727 params = isl_space_is_params(space);
8728 if (params < 0)
8729 goto error;
8730 if (params)
8731 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8732 "expecting proper set space", goto error);
8733 if (!isl_space_is_set(space))
8734 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8735 "expecting set space", goto error);
8736 dim = isl_space_dim(space, isl_dim_out);
8737 if (dim < 0)
8738 goto error;
8739 if (dim != 0)
8740 isl_die(isl_space_get_ctx(space), isl_error_invalid,
8741 "expecting 0D space", goto error);
8743 return isl_multi_union_pw_aff_alloc(space);
8744 error:
8745 isl_space_free(space);
8746 return NULL;
8749 /* Construct and return a multi union piecewise affine expression
8750 * that is equal to the given multi affine expression.
8752 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_aff(
8753 __isl_take isl_multi_aff *ma)
8755 isl_multi_pw_aff *mpa;
8757 mpa = isl_multi_pw_aff_from_multi_aff(ma);
8758 return isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
8761 /* This function performs the same operation as
8762 * isl_multi_union_pw_aff_from_multi_aff, but is considered as a function on an
8763 * isl_multi_aff when exported.
8765 __isl_give isl_multi_union_pw_aff *isl_multi_aff_to_multi_union_pw_aff(
8766 __isl_take isl_multi_aff *ma)
8768 return isl_multi_union_pw_aff_from_multi_aff(ma);
8771 /* Construct and return a multi union piecewise affine expression
8772 * that is equal to the given multi piecewise affine expression.
8774 * If the resulting multi union piecewise affine expression has
8775 * an explicit domain, then assign it the domain of the input.
8776 * In other cases, the domain is stored in the individual elements.
8778 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_multi_pw_aff(
8779 __isl_take isl_multi_pw_aff *mpa)
8781 int i;
8782 isl_size n;
8783 isl_space *space;
8784 isl_multi_union_pw_aff *mupa;
8786 n = isl_multi_pw_aff_dim(mpa, isl_dim_out);
8787 if (n < 0)
8788 mpa = isl_multi_pw_aff_free(mpa);
8789 if (!mpa)
8790 return NULL;
8792 space = isl_multi_pw_aff_get_space(mpa);
8793 space = isl_space_range(space);
8794 mupa = isl_multi_union_pw_aff_alloc(space);
8796 for (i = 0; i < n; ++i) {
8797 isl_pw_aff *pa;
8798 isl_union_pw_aff *upa;
8800 pa = isl_multi_pw_aff_get_pw_aff(mpa, i);
8801 upa = isl_union_pw_aff_from_pw_aff(pa);
8802 mupa = isl_multi_union_pw_aff_restore_check_space(mupa, i, upa);
8804 if (isl_multi_union_pw_aff_has_explicit_domain(mupa)) {
8805 isl_union_set *dom;
8806 isl_multi_pw_aff *copy;
8808 copy = isl_multi_pw_aff_copy(mpa);
8809 dom = isl_union_set_from_set(isl_multi_pw_aff_domain(copy));
8810 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, dom);
8813 isl_multi_pw_aff_free(mpa);
8815 return mupa;
8818 /* Extract the range space of "pma" and assign it to *space.
8819 * If *space has already been set (through a previous call to this function),
8820 * then check that the range space is the same.
8822 static isl_stat extract_space(__isl_take isl_pw_multi_aff *pma, void *user)
8824 isl_space **space = user;
8825 isl_space *pma_space;
8826 isl_bool equal;
8828 pma_space = isl_space_range(isl_pw_multi_aff_get_space(pma));
8829 isl_pw_multi_aff_free(pma);
8831 if (!pma_space)
8832 return isl_stat_error;
8833 if (!*space) {
8834 *space = pma_space;
8835 return isl_stat_ok;
8838 equal = isl_space_is_equal(pma_space, *space);
8839 isl_space_free(pma_space);
8841 if (equal < 0)
8842 return isl_stat_error;
8843 if (!equal)
8844 isl_die(isl_space_get_ctx(*space), isl_error_invalid,
8845 "range spaces not the same", return isl_stat_error);
8846 return isl_stat_ok;
8849 /* Construct and return a multi union piecewise affine expression
8850 * that is equal to the given union piecewise multi affine expression.
8852 * In order to be able to perform the conversion, the input
8853 * needs to be non-empty and may only involve a single range space.
8855 * If the resulting multi union piecewise affine expression has
8856 * an explicit domain, then assign it the domain of the input.
8857 * In other cases, the domain is stored in the individual elements.
8859 __isl_give isl_multi_union_pw_aff *
8860 isl_multi_union_pw_aff_from_union_pw_multi_aff(
8861 __isl_take isl_union_pw_multi_aff *upma)
8863 isl_space *space = NULL;
8864 isl_multi_union_pw_aff *mupa;
8865 int i;
8866 isl_size n;
8868 n = isl_union_pw_multi_aff_n_pw_multi_aff(upma);
8869 if (n < 0)
8870 goto error;
8871 if (n == 0)
8872 isl_die(isl_union_pw_multi_aff_get_ctx(upma), isl_error_invalid,
8873 "cannot extract range space from empty input",
8874 goto error);
8875 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma, &extract_space,
8876 &space) < 0)
8877 goto error;
8879 if (!space)
8880 goto error;
8882 n = isl_space_dim(space, isl_dim_set);
8883 if (n < 0)
8884 space = isl_space_free(space);
8885 mupa = isl_multi_union_pw_aff_alloc(space);
8887 for (i = 0; i < n; ++i) {
8888 isl_union_pw_aff *upa;
8890 upa = isl_union_pw_multi_aff_get_union_pw_aff(upma, i);
8891 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8893 if (isl_multi_union_pw_aff_has_explicit_domain(mupa)) {
8894 isl_union_set *dom;
8895 isl_union_pw_multi_aff *copy;
8897 copy = isl_union_pw_multi_aff_copy(upma);
8898 dom = isl_union_pw_multi_aff_domain(copy);
8899 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, dom);
8902 isl_union_pw_multi_aff_free(upma);
8903 return mupa;
8904 error:
8905 isl_space_free(space);
8906 isl_union_pw_multi_aff_free(upma);
8907 return NULL;
8910 /* This function performs the same operation as
8911 * isl_multi_union_pw_aff_from_union_pw_multi_aff,
8912 * but is considered as a function on an isl_union_pw_multi_aff when exported.
8914 __isl_give isl_multi_union_pw_aff *
8915 isl_union_pw_multi_aff_as_multi_union_pw_aff(
8916 __isl_take isl_union_pw_multi_aff *upma)
8918 return isl_multi_union_pw_aff_from_union_pw_multi_aff(upma);
8921 /* Try and create an isl_multi_union_pw_aff that is equivalent
8922 * to the given isl_union_map.
8923 * The isl_union_map is required to be single-valued in each space.
8924 * Moreover, it cannot be empty and all range spaces need to be the same.
8925 * Otherwise, an error is produced.
8927 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_from_union_map(
8928 __isl_take isl_union_map *umap)
8930 isl_union_pw_multi_aff *upma;
8932 upma = isl_union_pw_multi_aff_from_union_map(umap);
8933 return isl_multi_union_pw_aff_from_union_pw_multi_aff(upma);
8936 /* This function performs the same operation as
8937 * isl_multi_union_pw_aff_from_union_map,
8938 * but is considered as a function on an isl_union_map when exported.
8940 __isl_give isl_multi_union_pw_aff *isl_union_map_as_multi_union_pw_aff(
8941 __isl_take isl_union_map *umap)
8943 return isl_multi_union_pw_aff_from_union_map(umap);
8946 /* Return a multiple union piecewise affine expression
8947 * that is equal to "mv" on "domain", assuming "domain" and "mv"
8948 * have been aligned.
8950 * If the resulting multi union piecewise affine expression has
8951 * an explicit domain, then assign it the input domain.
8952 * In other cases, the domain is stored in the individual elements.
8954 static __isl_give isl_multi_union_pw_aff *
8955 isl_multi_union_pw_aff_multi_val_on_domain_aligned(
8956 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
8958 int i;
8959 isl_size n;
8960 isl_space *space;
8961 isl_multi_union_pw_aff *mupa;
8963 n = isl_multi_val_dim(mv, isl_dim_set);
8964 if (!domain || n < 0)
8965 goto error;
8967 space = isl_multi_val_get_space(mv);
8968 mupa = isl_multi_union_pw_aff_alloc(space);
8969 for (i = 0; i < n; ++i) {
8970 isl_val *v;
8971 isl_union_pw_aff *upa;
8973 v = isl_multi_val_get_val(mv, i);
8974 upa = isl_union_pw_aff_val_on_domain(isl_union_set_copy(domain),
8976 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
8978 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
8979 mupa = isl_multi_union_pw_aff_intersect_domain(mupa,
8980 isl_union_set_copy(domain));
8982 isl_union_set_free(domain);
8983 isl_multi_val_free(mv);
8984 return mupa;
8985 error:
8986 isl_union_set_free(domain);
8987 isl_multi_val_free(mv);
8988 return NULL;
8991 /* Return a multiple union piecewise affine expression
8992 * that is equal to "mv" on "domain".
8994 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_val_on_domain(
8995 __isl_take isl_union_set *domain, __isl_take isl_multi_val *mv)
8997 isl_bool equal_params;
8999 if (!domain || !mv)
9000 goto error;
9001 equal_params = isl_space_has_equal_params(domain->dim, mv->space);
9002 if (equal_params < 0)
9003 goto error;
9004 if (equal_params)
9005 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(
9006 domain, mv);
9007 domain = isl_union_set_align_params(domain,
9008 isl_multi_val_get_space(mv));
9009 mv = isl_multi_val_align_params(mv, isl_union_set_get_space(domain));
9010 return isl_multi_union_pw_aff_multi_val_on_domain_aligned(domain, mv);
9011 error:
9012 isl_union_set_free(domain);
9013 isl_multi_val_free(mv);
9014 return NULL;
9017 /* Return a multiple union piecewise affine expression
9018 * that is equal to "ma" on "domain".
9020 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_multi_aff_on_domain(
9021 __isl_take isl_union_set *domain, __isl_take isl_multi_aff *ma)
9023 isl_pw_multi_aff *pma;
9025 pma = isl_pw_multi_aff_from_multi_aff(ma);
9026 return isl_multi_union_pw_aff_pw_multi_aff_on_domain(domain, pma);
9029 /* Return a multiple union piecewise affine expression
9030 * that is equal to "pma" on "domain", assuming "domain" and "pma"
9031 * have been aligned.
9033 * If the resulting multi union piecewise affine expression has
9034 * an explicit domain, then assign it the input domain.
9035 * In other cases, the domain is stored in the individual elements.
9037 static __isl_give isl_multi_union_pw_aff *
9038 isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(
9039 __isl_take isl_union_set *domain, __isl_take isl_pw_multi_aff *pma)
9041 int i;
9042 isl_size n;
9043 isl_space *space;
9044 isl_multi_union_pw_aff *mupa;
9046 n = isl_pw_multi_aff_dim(pma, isl_dim_set);
9047 if (!domain || n < 0)
9048 goto error;
9049 space = isl_pw_multi_aff_get_space(pma);
9050 mupa = isl_multi_union_pw_aff_alloc(space);
9051 for (i = 0; i < n; ++i) {
9052 isl_pw_aff *pa;
9053 isl_union_pw_aff *upa;
9055 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
9056 upa = isl_union_pw_aff_pw_aff_on_domain(
9057 isl_union_set_copy(domain), pa);
9058 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
9060 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
9061 mupa = isl_multi_union_pw_aff_intersect_domain(mupa,
9062 isl_union_set_copy(domain));
9064 isl_union_set_free(domain);
9065 isl_pw_multi_aff_free(pma);
9066 return mupa;
9067 error:
9068 isl_union_set_free(domain);
9069 isl_pw_multi_aff_free(pma);
9070 return NULL;
9073 /* Return a multiple union piecewise affine expression
9074 * that is equal to "pma" on "domain".
9076 __isl_give isl_multi_union_pw_aff *
9077 isl_multi_union_pw_aff_pw_multi_aff_on_domain(__isl_take isl_union_set *domain,
9078 __isl_take isl_pw_multi_aff *pma)
9080 isl_bool equal_params;
9081 isl_space *space;
9083 space = isl_pw_multi_aff_peek_space(pma);
9084 equal_params = isl_union_set_space_has_equal_params(domain, space);
9085 if (equal_params < 0)
9086 goto error;
9087 if (equal_params)
9088 return isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(
9089 domain, pma);
9090 domain = isl_union_set_align_params(domain,
9091 isl_pw_multi_aff_get_space(pma));
9092 pma = isl_pw_multi_aff_align_params(pma,
9093 isl_union_set_get_space(domain));
9094 return isl_multi_union_pw_aff_pw_multi_aff_on_domain_aligned(domain,
9095 pma);
9096 error:
9097 isl_union_set_free(domain);
9098 isl_pw_multi_aff_free(pma);
9099 return NULL;
9102 /* Return a union set containing those elements in the domains
9103 * of the elements of "mupa" where they are all zero.
9105 * If there are no elements, then simply return the entire domain.
9107 __isl_give isl_union_set *isl_multi_union_pw_aff_zero_union_set(
9108 __isl_take isl_multi_union_pw_aff *mupa)
9110 int i;
9111 isl_size n;
9112 isl_union_pw_aff *upa;
9113 isl_union_set *zero;
9115 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9116 if (n < 0)
9117 mupa = isl_multi_union_pw_aff_free(mupa);
9118 if (!mupa)
9119 return NULL;
9121 if (n == 0)
9122 return isl_multi_union_pw_aff_domain(mupa);
9124 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
9125 zero = isl_union_pw_aff_zero_union_set(upa);
9127 for (i = 1; i < n; ++i) {
9128 isl_union_set *zero_i;
9130 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9131 zero_i = isl_union_pw_aff_zero_union_set(upa);
9133 zero = isl_union_set_intersect(zero, zero_i);
9136 isl_multi_union_pw_aff_free(mupa);
9137 return zero;
9140 /* Construct a union map mapping the shared domain
9141 * of the union piecewise affine expressions to the range of "mupa"
9142 * in the special case of a 0D multi union piecewise affine expression.
9144 * Construct a map between the explicit domain of "mupa" and
9145 * the range space.
9146 * Note that this assumes that the domain consists of explicit elements.
9148 static __isl_give isl_union_map *isl_union_map_from_multi_union_pw_aff_0D(
9149 __isl_take isl_multi_union_pw_aff *mupa)
9151 isl_bool is_params;
9152 isl_space *space;
9153 isl_union_set *dom, *ran;
9155 space = isl_multi_union_pw_aff_get_space(mupa);
9156 dom = isl_multi_union_pw_aff_domain(mupa);
9157 ran = isl_union_set_from_set(isl_set_universe(space));
9159 is_params = isl_union_set_is_params(dom);
9160 if (is_params < 0)
9161 dom = isl_union_set_free(dom);
9162 else if (is_params)
9163 isl_die(isl_union_set_get_ctx(dom), isl_error_invalid,
9164 "cannot create union map from expression without "
9165 "explicit domain elements",
9166 dom = isl_union_set_free(dom));
9168 return isl_union_map_from_domain_and_range(dom, ran);
9171 /* Construct a union map mapping the shared domain
9172 * of the union piecewise affine expressions to the range of "mupa"
9173 * with each dimension in the range equated to the
9174 * corresponding union piecewise affine expression.
9176 * If the input is zero-dimensional, then construct a mapping
9177 * from its explicit domain.
9179 __isl_give isl_union_map *isl_union_map_from_multi_union_pw_aff(
9180 __isl_take isl_multi_union_pw_aff *mupa)
9182 int i;
9183 isl_size n;
9184 isl_space *space;
9185 isl_union_map *umap;
9186 isl_union_pw_aff *upa;
9188 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9189 if (n < 0)
9190 mupa = isl_multi_union_pw_aff_free(mupa);
9191 if (!mupa)
9192 return NULL;
9194 if (n == 0)
9195 return isl_union_map_from_multi_union_pw_aff_0D(mupa);
9197 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
9198 umap = isl_union_map_from_union_pw_aff(upa);
9200 for (i = 1; i < n; ++i) {
9201 isl_union_map *umap_i;
9203 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9204 umap_i = isl_union_map_from_union_pw_aff(upa);
9205 umap = isl_union_map_flat_range_product(umap, umap_i);
9208 space = isl_multi_union_pw_aff_get_space(mupa);
9209 umap = isl_union_map_reset_range_space(umap, space);
9211 isl_multi_union_pw_aff_free(mupa);
9212 return umap;
9215 /* Internal data structure for isl_union_pw_multi_aff_reset_range_space.
9216 * "range" is the space from which to set the range space.
9217 * "res" collects the results.
9219 struct isl_union_pw_multi_aff_reset_range_space_data {
9220 isl_space *range;
9221 isl_union_pw_multi_aff *res;
9224 /* Replace the range space of "pma" by the range space of data->range and
9225 * add the result to data->res.
9227 static isl_stat reset_range_space(__isl_take isl_pw_multi_aff *pma, void *user)
9229 struct isl_union_pw_multi_aff_reset_range_space_data *data = user;
9230 isl_space *space;
9232 space = isl_pw_multi_aff_get_space(pma);
9233 space = isl_space_domain(space);
9234 space = isl_space_extend_domain_with_range(space,
9235 isl_space_copy(data->range));
9236 pma = isl_pw_multi_aff_reset_space(pma, space);
9237 data->res = isl_union_pw_multi_aff_add_pw_multi_aff(data->res, pma);
9239 return data->res ? isl_stat_ok : isl_stat_error;
9242 /* Replace the range space of all the piecewise affine expressions in "upma" by
9243 * the range space of "space".
9245 * This assumes that all these expressions have the same output dimension.
9247 * Since the spaces of the expressions change, so do their hash values.
9248 * We therefore need to create a new isl_union_pw_multi_aff.
9249 * Note that the hash value is currently computed based on the entire
9250 * space even though there can only be a single expression with a given
9251 * domain space.
9253 static __isl_give isl_union_pw_multi_aff *
9254 isl_union_pw_multi_aff_reset_range_space(
9255 __isl_take isl_union_pw_multi_aff *upma, __isl_take isl_space *space)
9257 struct isl_union_pw_multi_aff_reset_range_space_data data = { space };
9258 isl_space *space_upma;
9260 space_upma = isl_union_pw_multi_aff_get_space(upma);
9261 data.res = isl_union_pw_multi_aff_empty(space_upma);
9262 if (isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
9263 &reset_range_space, &data) < 0)
9264 data.res = isl_union_pw_multi_aff_free(data.res);
9266 isl_space_free(space);
9267 isl_union_pw_multi_aff_free(upma);
9268 return data.res;
9271 /* Construct and return a union piecewise multi affine expression
9272 * that is equal to the given multi union piecewise affine expression,
9273 * in the special case of a 0D multi union piecewise affine expression.
9275 * Construct a union piecewise multi affine expression
9276 * on top of the explicit domain of the input.
9278 __isl_give isl_union_pw_multi_aff *
9279 isl_union_pw_multi_aff_from_multi_union_pw_aff_0D(
9280 __isl_take isl_multi_union_pw_aff *mupa)
9282 isl_space *space;
9283 isl_multi_val *mv;
9284 isl_union_set *domain;
9286 space = isl_multi_union_pw_aff_get_space(mupa);
9287 mv = isl_multi_val_zero(space);
9288 domain = isl_multi_union_pw_aff_domain(mupa);
9289 return isl_union_pw_multi_aff_multi_val_on_domain(domain, mv);
9292 /* Construct and return a union piecewise multi affine expression
9293 * that is equal to the given multi union piecewise affine expression.
9295 * If the input is zero-dimensional, then
9296 * construct a union piecewise multi affine expression
9297 * on top of the explicit domain of the input.
9299 __isl_give isl_union_pw_multi_aff *
9300 isl_union_pw_multi_aff_from_multi_union_pw_aff(
9301 __isl_take isl_multi_union_pw_aff *mupa)
9303 int i;
9304 isl_size n;
9305 isl_space *space;
9306 isl_union_pw_multi_aff *upma;
9307 isl_union_pw_aff *upa;
9309 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9310 if (n < 0)
9311 mupa = isl_multi_union_pw_aff_free(mupa);
9312 if (!mupa)
9313 return NULL;
9315 if (n == 0)
9316 return isl_union_pw_multi_aff_from_multi_union_pw_aff_0D(mupa);
9318 space = isl_multi_union_pw_aff_get_space(mupa);
9319 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
9320 upma = isl_union_pw_multi_aff_from_union_pw_aff(upa);
9322 for (i = 1; i < n; ++i) {
9323 isl_union_pw_multi_aff *upma_i;
9325 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9326 upma_i = isl_union_pw_multi_aff_from_union_pw_aff(upa);
9327 upma = isl_union_pw_multi_aff_flat_range_product(upma, upma_i);
9330 upma = isl_union_pw_multi_aff_reset_range_space(upma, space);
9332 isl_multi_union_pw_aff_free(mupa);
9333 return upma;
9336 /* Intersect the range of "mupa" with "range",
9337 * in the special case where "mupa" is 0D.
9339 * Intersect the domain of "mupa" with the constraints on the parameters
9340 * of "range".
9342 static __isl_give isl_multi_union_pw_aff *mupa_intersect_range_0D(
9343 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_set *range)
9345 range = isl_set_params(range);
9346 mupa = isl_multi_union_pw_aff_intersect_params(mupa, range);
9347 return mupa;
9350 /* Intersect the range of "mupa" with "range".
9351 * That is, keep only those domain elements that have a function value
9352 * in "range".
9354 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_intersect_range(
9355 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_set *range)
9357 isl_union_pw_multi_aff *upma;
9358 isl_union_set *domain;
9359 isl_space *space;
9360 isl_size n;
9361 int match;
9363 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9364 if (n < 0 || !range)
9365 goto error;
9367 space = isl_set_get_space(range);
9368 match = isl_space_tuple_is_equal(mupa->space, isl_dim_set,
9369 space, isl_dim_set);
9370 isl_space_free(space);
9371 if (match < 0)
9372 goto error;
9373 if (!match)
9374 isl_die(isl_multi_union_pw_aff_get_ctx(mupa), isl_error_invalid,
9375 "space don't match", goto error);
9376 if (n == 0)
9377 return mupa_intersect_range_0D(mupa, range);
9379 upma = isl_union_pw_multi_aff_from_multi_union_pw_aff(
9380 isl_multi_union_pw_aff_copy(mupa));
9381 domain = isl_union_set_from_set(range);
9382 domain = isl_union_set_preimage_union_pw_multi_aff(domain, upma);
9383 mupa = isl_multi_union_pw_aff_intersect_domain(mupa, domain);
9385 return mupa;
9386 error:
9387 isl_multi_union_pw_aff_free(mupa);
9388 isl_set_free(range);
9389 return NULL;
9392 /* Return the shared domain of the elements of "mupa",
9393 * in the special case where "mupa" is zero-dimensional.
9395 * Return the explicit domain of "mupa".
9396 * Note that this domain may be a parameter set, either
9397 * because "mupa" is meant to live in a set space or
9398 * because no explicit domain has been set.
9400 __isl_give isl_union_set *isl_multi_union_pw_aff_domain_0D(
9401 __isl_take isl_multi_union_pw_aff *mupa)
9403 isl_union_set *dom;
9405 dom = isl_multi_union_pw_aff_get_explicit_domain(mupa);
9406 isl_multi_union_pw_aff_free(mupa);
9408 return dom;
9411 /* Return the shared domain of the elements of "mupa".
9413 * If "mupa" is zero-dimensional, then return its explicit domain.
9415 __isl_give isl_union_set *isl_multi_union_pw_aff_domain(
9416 __isl_take isl_multi_union_pw_aff *mupa)
9418 int i;
9419 isl_size n;
9420 isl_union_pw_aff *upa;
9421 isl_union_set *dom;
9423 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9424 if (n < 0)
9425 mupa = isl_multi_union_pw_aff_free(mupa);
9426 if (!mupa)
9427 return NULL;
9429 if (n == 0)
9430 return isl_multi_union_pw_aff_domain_0D(mupa);
9432 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, 0);
9433 dom = isl_union_pw_aff_domain(upa);
9434 for (i = 1; i < n; ++i) {
9435 isl_union_set *dom_i;
9437 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9438 dom_i = isl_union_pw_aff_domain(upa);
9439 dom = isl_union_set_intersect(dom, dom_i);
9442 isl_multi_union_pw_aff_free(mupa);
9443 return dom;
9446 /* Apply "aff" to "mupa". The space of "mupa" is equal to the domain of "aff".
9447 * In particular, the spaces have been aligned.
9448 * The result is defined over the shared domain of the elements of "mupa"
9450 * We first extract the parametric constant part of "aff" and
9451 * define that over the shared domain.
9452 * Then we iterate over all input dimensions of "aff" and add the corresponding
9453 * multiples of the elements of "mupa".
9454 * Finally, we consider the integer divisions, calling the function
9455 * recursively to obtain an isl_union_pw_aff corresponding to the
9456 * integer division argument.
9458 static __isl_give isl_union_pw_aff *multi_union_pw_aff_apply_aff(
9459 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
9461 int i;
9462 isl_size n_in, n_div;
9463 isl_union_pw_aff *upa;
9464 isl_union_set *uset;
9465 isl_val *v;
9466 isl_aff *cst;
9468 n_in = isl_aff_dim(aff, isl_dim_in);
9469 n_div = isl_aff_dim(aff, isl_dim_div);
9470 if (n_in < 0 || n_div < 0)
9471 goto error;
9473 uset = isl_multi_union_pw_aff_domain(isl_multi_union_pw_aff_copy(mupa));
9474 cst = isl_aff_copy(aff);
9475 cst = isl_aff_drop_dims(cst, isl_dim_div, 0, n_div);
9476 cst = isl_aff_drop_dims(cst, isl_dim_in, 0, n_in);
9477 cst = isl_aff_project_domain_on_params(cst);
9478 upa = isl_union_pw_aff_aff_on_domain(uset, cst);
9480 for (i = 0; i < n_in; ++i) {
9481 isl_union_pw_aff *upa_i;
9483 if (!isl_aff_involves_dims(aff, isl_dim_in, i, 1))
9484 continue;
9485 v = isl_aff_get_coefficient_val(aff, isl_dim_in, i);
9486 upa_i = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9487 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
9488 upa = isl_union_pw_aff_add(upa, upa_i);
9491 for (i = 0; i < n_div; ++i) {
9492 isl_aff *div;
9493 isl_union_pw_aff *upa_i;
9495 if (!isl_aff_involves_dims(aff, isl_dim_div, i, 1))
9496 continue;
9497 div = isl_aff_get_div(aff, i);
9498 upa_i = multi_union_pw_aff_apply_aff(
9499 isl_multi_union_pw_aff_copy(mupa), div);
9500 upa_i = isl_union_pw_aff_floor(upa_i);
9501 v = isl_aff_get_coefficient_val(aff, isl_dim_div, i);
9502 upa_i = isl_union_pw_aff_scale_val(upa_i, v);
9503 upa = isl_union_pw_aff_add(upa, upa_i);
9506 isl_multi_union_pw_aff_free(mupa);
9507 isl_aff_free(aff);
9509 return upa;
9510 error:
9511 isl_multi_union_pw_aff_free(mupa);
9512 isl_aff_free(aff);
9513 return NULL;
9516 /* Apply "aff" to "mupa". The space of "mupa" needs to be compatible
9517 * with the domain of "aff".
9518 * Furthermore, the dimension of this space needs to be greater than zero.
9519 * The result is defined over the shared domain of the elements of "mupa"
9521 * We perform these checks and then hand over control to
9522 * multi_union_pw_aff_apply_aff.
9524 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_aff(
9525 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_aff *aff)
9527 isl_size dim;
9528 isl_space *space1, *space2;
9529 isl_bool equal;
9531 mupa = isl_multi_union_pw_aff_align_params(mupa,
9532 isl_aff_get_space(aff));
9533 aff = isl_aff_align_params(aff, isl_multi_union_pw_aff_get_space(mupa));
9534 if (!mupa || !aff)
9535 goto error;
9537 space1 = isl_multi_union_pw_aff_get_space(mupa);
9538 space2 = isl_aff_get_domain_space(aff);
9539 equal = isl_space_is_equal(space1, space2);
9540 isl_space_free(space1);
9541 isl_space_free(space2);
9542 if (equal < 0)
9543 goto error;
9544 if (!equal)
9545 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
9546 "spaces don't match", goto error);
9547 dim = isl_aff_dim(aff, isl_dim_in);
9548 if (dim < 0)
9549 goto error;
9550 if (dim == 0)
9551 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
9552 "cannot determine domains", goto error);
9554 return multi_union_pw_aff_apply_aff(mupa, aff);
9555 error:
9556 isl_multi_union_pw_aff_free(mupa);
9557 isl_aff_free(aff);
9558 return NULL;
9561 /* Apply "ma" to "mupa", in the special case where "mupa" is 0D.
9562 * The space of "mupa" is known to be compatible with the domain of "ma".
9564 * Construct an isl_multi_union_pw_aff that is equal to "ma"
9565 * on the domain of "mupa".
9567 static __isl_give isl_multi_union_pw_aff *mupa_apply_multi_aff_0D(
9568 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_multi_aff *ma)
9570 isl_union_set *dom;
9572 dom = isl_multi_union_pw_aff_domain(mupa);
9573 ma = isl_multi_aff_project_domain_on_params(ma);
9575 return isl_multi_union_pw_aff_multi_aff_on_domain(dom, ma);
9578 /* Apply "ma" to "mupa". The space of "mupa" needs to be compatible
9579 * with the domain of "ma".
9580 * The result is defined over the shared domain of the elements of "mupa"
9582 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_multi_aff(
9583 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_multi_aff *ma)
9585 isl_space *space1, *space2;
9586 isl_multi_union_pw_aff *res;
9587 isl_bool equal;
9588 int i;
9589 isl_size n_in, n_out;
9591 mupa = isl_multi_union_pw_aff_align_params(mupa,
9592 isl_multi_aff_get_space(ma));
9593 ma = isl_multi_aff_align_params(ma,
9594 isl_multi_union_pw_aff_get_space(mupa));
9595 n_in = isl_multi_aff_dim(ma, isl_dim_in);
9596 n_out = isl_multi_aff_dim(ma, isl_dim_out);
9597 if (!mupa || n_in < 0 || n_out < 0)
9598 goto error;
9600 space1 = isl_multi_union_pw_aff_get_space(mupa);
9601 space2 = isl_multi_aff_get_domain_space(ma);
9602 equal = isl_space_is_equal(space1, space2);
9603 isl_space_free(space1);
9604 isl_space_free(space2);
9605 if (equal < 0)
9606 goto error;
9607 if (!equal)
9608 isl_die(isl_multi_aff_get_ctx(ma), isl_error_invalid,
9609 "spaces don't match", goto error);
9610 if (n_in == 0)
9611 return mupa_apply_multi_aff_0D(mupa, ma);
9613 space1 = isl_space_range(isl_multi_aff_get_space(ma));
9614 res = isl_multi_union_pw_aff_alloc(space1);
9616 for (i = 0; i < n_out; ++i) {
9617 isl_aff *aff;
9618 isl_union_pw_aff *upa;
9620 aff = isl_multi_aff_get_aff(ma, i);
9621 upa = multi_union_pw_aff_apply_aff(
9622 isl_multi_union_pw_aff_copy(mupa), aff);
9623 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
9626 isl_multi_aff_free(ma);
9627 isl_multi_union_pw_aff_free(mupa);
9628 return res;
9629 error:
9630 isl_multi_union_pw_aff_free(mupa);
9631 isl_multi_aff_free(ma);
9632 return NULL;
9635 /* Apply "pa" to "mupa", in the special case where "mupa" is 0D.
9636 * The space of "mupa" is known to be compatible with the domain of "pa".
9638 * Construct an isl_multi_union_pw_aff that is equal to "pa"
9639 * on the domain of "mupa".
9641 static __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_pw_aff_0D(
9642 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_pw_aff *pa)
9644 isl_union_set *dom;
9646 dom = isl_multi_union_pw_aff_domain(mupa);
9647 pa = isl_pw_aff_project_domain_on_params(pa);
9649 return isl_union_pw_aff_pw_aff_on_domain(dom, pa);
9652 /* Apply "pa" to "mupa". The space of "mupa" needs to be compatible
9653 * with the domain of "pa".
9654 * Furthermore, the dimension of this space needs to be greater than zero.
9655 * The result is defined over the shared domain of the elements of "mupa"
9657 __isl_give isl_union_pw_aff *isl_multi_union_pw_aff_apply_pw_aff(
9658 __isl_take isl_multi_union_pw_aff *mupa, __isl_take isl_pw_aff *pa)
9660 int i;
9661 isl_bool equal;
9662 isl_size n_in;
9663 isl_space *space, *space2;
9664 isl_union_pw_aff *upa;
9666 mupa = isl_multi_union_pw_aff_align_params(mupa,
9667 isl_pw_aff_get_space(pa));
9668 pa = isl_pw_aff_align_params(pa,
9669 isl_multi_union_pw_aff_get_space(mupa));
9670 if (!mupa || !pa)
9671 goto error;
9673 space = isl_multi_union_pw_aff_get_space(mupa);
9674 space2 = isl_pw_aff_get_domain_space(pa);
9675 equal = isl_space_is_equal(space, space2);
9676 isl_space_free(space);
9677 isl_space_free(space2);
9678 if (equal < 0)
9679 goto error;
9680 if (!equal)
9681 isl_die(isl_pw_aff_get_ctx(pa), isl_error_invalid,
9682 "spaces don't match", goto error);
9683 n_in = isl_pw_aff_dim(pa, isl_dim_in);
9684 if (n_in < 0)
9685 goto error;
9686 if (n_in == 0)
9687 return isl_multi_union_pw_aff_apply_pw_aff_0D(mupa, pa);
9689 space = isl_space_params(isl_multi_union_pw_aff_get_space(mupa));
9690 upa = isl_union_pw_aff_empty(space);
9692 for (i = 0; i < pa->n; ++i) {
9693 isl_aff *aff;
9694 isl_set *domain;
9695 isl_multi_union_pw_aff *mupa_i;
9696 isl_union_pw_aff *upa_i;
9698 mupa_i = isl_multi_union_pw_aff_copy(mupa);
9699 domain = isl_set_copy(pa->p[i].set);
9700 mupa_i = isl_multi_union_pw_aff_intersect_range(mupa_i, domain);
9701 aff = isl_aff_copy(pa->p[i].aff);
9702 upa_i = multi_union_pw_aff_apply_aff(mupa_i, aff);
9703 upa = isl_union_pw_aff_union_add(upa, upa_i);
9706 isl_multi_union_pw_aff_free(mupa);
9707 isl_pw_aff_free(pa);
9708 return upa;
9709 error:
9710 isl_multi_union_pw_aff_free(mupa);
9711 isl_pw_aff_free(pa);
9712 return NULL;
9715 /* Apply "pma" to "mupa", in the special case where "mupa" is 0D.
9716 * The space of "mupa" is known to be compatible with the domain of "pma".
9718 * Construct an isl_multi_union_pw_aff that is equal to "pma"
9719 * on the domain of "mupa".
9721 static __isl_give isl_multi_union_pw_aff *mupa_apply_pw_multi_aff_0D(
9722 __isl_take isl_multi_union_pw_aff *mupa,
9723 __isl_take isl_pw_multi_aff *pma)
9725 isl_union_set *dom;
9727 dom = isl_multi_union_pw_aff_domain(mupa);
9728 pma = isl_pw_multi_aff_project_domain_on_params(pma);
9730 return isl_multi_union_pw_aff_pw_multi_aff_on_domain(dom, pma);
9733 /* Apply "pma" to "mupa". The space of "mupa" needs to be compatible
9734 * with the domain of "pma".
9735 * The result is defined over the shared domain of the elements of "mupa"
9737 __isl_give isl_multi_union_pw_aff *isl_multi_union_pw_aff_apply_pw_multi_aff(
9738 __isl_take isl_multi_union_pw_aff *mupa,
9739 __isl_take isl_pw_multi_aff *pma)
9741 isl_space *space1, *space2;
9742 isl_multi_union_pw_aff *res;
9743 isl_bool equal;
9744 int i;
9745 isl_size n_in, n_out;
9747 mupa = isl_multi_union_pw_aff_align_params(mupa,
9748 isl_pw_multi_aff_get_space(pma));
9749 pma = isl_pw_multi_aff_align_params(pma,
9750 isl_multi_union_pw_aff_get_space(mupa));
9751 if (!mupa || !pma)
9752 goto error;
9754 space1 = isl_multi_union_pw_aff_get_space(mupa);
9755 space2 = isl_pw_multi_aff_get_domain_space(pma);
9756 equal = isl_space_is_equal(space1, space2);
9757 isl_space_free(space1);
9758 isl_space_free(space2);
9759 if (equal < 0)
9760 goto error;
9761 if (!equal)
9762 isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
9763 "spaces don't match", goto error);
9764 n_in = isl_pw_multi_aff_dim(pma, isl_dim_in);
9765 n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
9766 if (n_in < 0 || n_out < 0)
9767 goto error;
9768 if (n_in == 0)
9769 return mupa_apply_pw_multi_aff_0D(mupa, pma);
9771 space1 = isl_space_range(isl_pw_multi_aff_get_space(pma));
9772 res = isl_multi_union_pw_aff_alloc(space1);
9774 for (i = 0; i < n_out; ++i) {
9775 isl_pw_aff *pa;
9776 isl_union_pw_aff *upa;
9778 pa = isl_pw_multi_aff_get_pw_aff(pma, i);
9779 upa = isl_multi_union_pw_aff_apply_pw_aff(
9780 isl_multi_union_pw_aff_copy(mupa), pa);
9781 res = isl_multi_union_pw_aff_set_union_pw_aff(res, i, upa);
9784 isl_pw_multi_aff_free(pma);
9785 isl_multi_union_pw_aff_free(mupa);
9786 return res;
9787 error:
9788 isl_multi_union_pw_aff_free(mupa);
9789 isl_pw_multi_aff_free(pma);
9790 return NULL;
9793 /* Replace the explicit domain of "mupa" by its preimage under "upma".
9794 * If the explicit domain only keeps track of constraints on the parameters,
9795 * then only update those constraints.
9797 static __isl_give isl_multi_union_pw_aff *preimage_explicit_domain(
9798 __isl_take isl_multi_union_pw_aff *mupa,
9799 __isl_keep isl_union_pw_multi_aff *upma)
9801 isl_bool is_params;
9803 if (isl_multi_union_pw_aff_check_has_explicit_domain(mupa) < 0)
9804 return isl_multi_union_pw_aff_free(mupa);
9806 mupa = isl_multi_union_pw_aff_cow(mupa);
9807 if (!mupa)
9808 return NULL;
9810 is_params = isl_union_set_is_params(mupa->u.dom);
9811 if (is_params < 0)
9812 return isl_multi_union_pw_aff_free(mupa);
9814 upma = isl_union_pw_multi_aff_copy(upma);
9815 if (is_params)
9816 mupa->u.dom = isl_union_set_intersect_params(mupa->u.dom,
9817 isl_union_set_params(isl_union_pw_multi_aff_domain(upma)));
9818 else
9819 mupa->u.dom = isl_union_set_preimage_union_pw_multi_aff(
9820 mupa->u.dom, upma);
9821 if (!mupa->u.dom)
9822 return isl_multi_union_pw_aff_free(mupa);
9823 return mupa;
9826 /* Compute the pullback of "mupa" by the function represented by "upma".
9827 * In other words, plug in "upma" in "mupa". The result contains
9828 * expressions defined over the domain space of "upma".
9830 * Run over all elements of "mupa" and plug in "upma" in each of them.
9832 * If "mupa" has an explicit domain, then it is this domain
9833 * that needs to undergo a pullback instead, i.e., a preimage.
9835 __isl_give isl_multi_union_pw_aff *
9836 isl_multi_union_pw_aff_pullback_union_pw_multi_aff(
9837 __isl_take isl_multi_union_pw_aff *mupa,
9838 __isl_take isl_union_pw_multi_aff *upma)
9840 int i;
9841 isl_size n;
9843 mupa = isl_multi_union_pw_aff_align_params(mupa,
9844 isl_union_pw_multi_aff_get_space(upma));
9845 upma = isl_union_pw_multi_aff_align_params(upma,
9846 isl_multi_union_pw_aff_get_space(mupa));
9847 mupa = isl_multi_union_pw_aff_cow(mupa);
9848 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9849 if (n < 0 || !upma)
9850 goto error;
9852 for (i = 0; i < n; ++i) {
9853 isl_union_pw_aff *upa;
9855 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9856 upa = isl_union_pw_aff_pullback_union_pw_multi_aff(upa,
9857 isl_union_pw_multi_aff_copy(upma));
9858 mupa = isl_multi_union_pw_aff_set_union_pw_aff(mupa, i, upa);
9861 if (isl_multi_union_pw_aff_has_explicit_domain(mupa))
9862 mupa = preimage_explicit_domain(mupa, upma);
9864 isl_union_pw_multi_aff_free(upma);
9865 return mupa;
9866 error:
9867 isl_multi_union_pw_aff_free(mupa);
9868 isl_union_pw_multi_aff_free(upma);
9869 return NULL;
9872 /* Extract the sequence of elements in "mupa" with domain space "space"
9873 * (ignoring parameters).
9875 * For the elements of "mupa" that are not defined on the specified space,
9876 * the corresponding element in the result is empty.
9878 __isl_give isl_multi_pw_aff *isl_multi_union_pw_aff_extract_multi_pw_aff(
9879 __isl_keep isl_multi_union_pw_aff *mupa, __isl_take isl_space *space)
9881 int i;
9882 isl_size n;
9883 isl_space *space_mpa;
9884 isl_multi_pw_aff *mpa;
9886 n = isl_multi_union_pw_aff_dim(mupa, isl_dim_set);
9887 if (n < 0 || !space)
9888 goto error;
9890 space_mpa = isl_multi_union_pw_aff_get_space(mupa);
9891 space = isl_space_replace_params(space, space_mpa);
9892 space_mpa = isl_space_map_from_domain_and_range(isl_space_copy(space),
9893 space_mpa);
9894 mpa = isl_multi_pw_aff_alloc(space_mpa);
9896 space = isl_space_from_domain(space);
9897 space = isl_space_add_dims(space, isl_dim_out, 1);
9898 for (i = 0; i < n; ++i) {
9899 isl_union_pw_aff *upa;
9900 isl_pw_aff *pa;
9902 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, i);
9903 pa = isl_union_pw_aff_extract_pw_aff(upa,
9904 isl_space_copy(space));
9905 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, pa);
9906 isl_union_pw_aff_free(upa);
9909 isl_space_free(space);
9910 return mpa;
9911 error:
9912 isl_space_free(space);
9913 return NULL;
9916 /* Data structure that specifies how isl_union_pw_multi_aff_un_op
9917 * should modify the base expressions in the input.
9919 * If "filter" is not NULL, then only the base expressions that satisfy "filter"
9920 * are taken into account.
9921 * "fn" is applied to each entry in the input.
9923 struct isl_union_pw_multi_aff_un_op_control {
9924 isl_bool (*filter)(__isl_keep isl_pw_multi_aff *part);
9925 __isl_give isl_pw_multi_aff *(*fn)(__isl_take isl_pw_multi_aff *pma);
9928 /* Wrapper for isl_union_pw_multi_aff_un_op filter functions (which do not take
9929 * a second argument) for use as an isl_union_pw_multi_aff_transform
9930 * filter function (which does take a second argument).
9931 * Simply call control->filter without the second argument.
9933 static isl_bool isl_union_pw_multi_aff_un_op_filter_drop_user(
9934 __isl_take isl_pw_multi_aff *pma, void *user)
9936 struct isl_union_pw_multi_aff_un_op_control *control = user;
9938 return control->filter(pma);
9941 /* Wrapper for isl_union_pw_multi_aff_un_op base functions (which do not take
9942 * a second argument) for use as an isl_union_pw_multi_aff_transform
9943 * base function (which does take a second argument).
9944 * Simply call control->fn without the second argument.
9946 static __isl_give isl_pw_multi_aff *isl_union_pw_multi_aff_un_op_drop_user(
9947 __isl_take isl_pw_multi_aff *pma, void *user)
9949 struct isl_union_pw_multi_aff_un_op_control *control = user;
9951 return control->fn(pma);
9954 /* Construct an isl_union_pw_multi_aff that is obtained by
9955 * modifying "upma" according to "control".
9957 * isl_union_pw_multi_aff_transform performs essentially
9958 * the same operation, but takes a filter and a callback function
9959 * of a different form (with an extra argument).
9960 * Call isl_union_pw_multi_aff_transform with wrappers
9961 * that remove this extra argument.
9963 static __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_un_op(
9964 __isl_take isl_union_pw_multi_aff *upma,
9965 struct isl_union_pw_multi_aff_un_op_control *control)
9967 struct isl_union_pw_multi_aff_transform_control t_control = {
9968 .filter = &isl_union_pw_multi_aff_un_op_filter_drop_user,
9969 .filter_user = control,
9970 .fn = &isl_union_pw_multi_aff_un_op_drop_user,
9971 .fn_user = control,
9974 return isl_union_pw_multi_aff_transform(upma, &t_control);
9977 /* For each function in "upma" of the form A -> [B -> C],
9978 * extract the function A -> B and collect the results.
9980 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_range_factor_domain(
9981 __isl_take isl_union_pw_multi_aff *upma)
9983 struct isl_union_pw_multi_aff_un_op_control control = {
9984 .filter = &isl_pw_multi_aff_range_is_wrapping,
9985 .fn = &isl_pw_multi_aff_range_factor_domain,
9987 return isl_union_pw_multi_aff_un_op(upma, &control);
9990 /* For each function in "upma" of the form A -> [B -> C],
9991 * extract the function A -> C and collect the results.
9993 __isl_give isl_union_pw_multi_aff *isl_union_pw_multi_aff_range_factor_range(
9994 __isl_take isl_union_pw_multi_aff *upma)
9996 struct isl_union_pw_multi_aff_un_op_control control = {
9997 .filter = &isl_pw_multi_aff_range_is_wrapping,
9998 .fn = &isl_pw_multi_aff_range_factor_range,
10000 return isl_union_pw_multi_aff_un_op(upma, &control);
10003 /* Evaluate the affine function "aff" in the void point "pnt".
10004 * In particular, return the value NaN.
10006 static __isl_give isl_val *eval_void(__isl_take isl_aff *aff,
10007 __isl_take isl_point *pnt)
10009 isl_ctx *ctx;
10011 ctx = isl_point_get_ctx(pnt);
10012 isl_aff_free(aff);
10013 isl_point_free(pnt);
10014 return isl_val_nan(ctx);
10017 /* Evaluate the affine expression "aff"
10018 * in the coordinates (with denominator) "pnt".
10020 static __isl_give isl_val *eval(__isl_keep isl_vec *aff,
10021 __isl_keep isl_vec *pnt)
10023 isl_int n, d;
10024 isl_ctx *ctx;
10025 isl_val *v;
10027 if (!aff || !pnt)
10028 return NULL;
10030 ctx = isl_vec_get_ctx(aff);
10031 isl_int_init(n);
10032 isl_int_init(d);
10033 isl_seq_inner_product(aff->el + 1, pnt->el, pnt->size, &n);
10034 isl_int_mul(d, aff->el[0], pnt->el[0]);
10035 v = isl_val_rat_from_isl_int(ctx, n, d);
10036 v = isl_val_normalize(v);
10037 isl_int_clear(n);
10038 isl_int_clear(d);
10040 return v;
10043 /* Check that the domain space of "aff" is equal to "space".
10045 static isl_stat isl_aff_check_has_domain_space(__isl_keep isl_aff *aff,
10046 __isl_keep isl_space *space)
10048 isl_bool ok;
10050 ok = isl_space_is_equal(isl_aff_peek_domain_space(aff), space);
10051 if (ok < 0)
10052 return isl_stat_error;
10053 if (!ok)
10054 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
10055 "incompatible spaces", return isl_stat_error);
10056 return isl_stat_ok;
10059 /* Evaluate the affine function "aff" in "pnt".
10061 __isl_give isl_val *isl_aff_eval(__isl_take isl_aff *aff,
10062 __isl_take isl_point *pnt)
10064 isl_bool is_void;
10065 isl_val *v;
10066 isl_local_space *ls;
10068 if (isl_aff_check_has_domain_space(aff, isl_point_peek_space(pnt)) < 0)
10069 goto error;
10070 is_void = isl_point_is_void(pnt);
10071 if (is_void < 0)
10072 goto error;
10073 if (is_void)
10074 return eval_void(aff, pnt);
10076 ls = isl_aff_get_domain_local_space(aff);
10077 pnt = isl_local_space_lift_point(ls, pnt);
10079 v = eval(aff->v, isl_point_peek_vec(pnt));
10081 isl_aff_free(aff);
10082 isl_point_free(pnt);
10084 return v;
10085 error:
10086 isl_aff_free(aff);
10087 isl_point_free(pnt);
10088 return NULL;