add isl_set_unshifted_simple_hull_from_set_list
[isl.git] / isl_map_simplify.c
blob009d711f37580e32525b9dabb4843ea5ed6539c8
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2012 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, K.U.Leuven, Departement
8 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
12 #include <strings.h>
13 #include <isl_ctx_private.h>
14 #include <isl_map_private.h>
15 #include "isl_equalities.h"
16 #include <isl/map.h>
17 #include <isl_seq.h>
18 #include "isl_tab.h"
19 #include <isl_space_private.h>
20 #include <isl_mat_private.h>
21 #include <isl_vec_private.h>
23 static void swap_equality(struct isl_basic_map *bmap, int a, int b)
25 isl_int *t = bmap->eq[a];
26 bmap->eq[a] = bmap->eq[b];
27 bmap->eq[b] = t;
30 static void swap_inequality(struct isl_basic_map *bmap, int a, int b)
32 if (a != b) {
33 isl_int *t = bmap->ineq[a];
34 bmap->ineq[a] = bmap->ineq[b];
35 bmap->ineq[b] = t;
39 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
41 isl_seq_cpy(c, c + n, rem);
42 isl_seq_clr(c + rem, n);
45 /* Drop n dimensions starting at first.
47 * In principle, this frees up some extra variables as the number
48 * of columns remains constant, but we would have to extend
49 * the div array too as the number of rows in this array is assumed
50 * to be equal to extra.
52 struct isl_basic_set *isl_basic_set_drop_dims(
53 struct isl_basic_set *bset, unsigned first, unsigned n)
55 int i;
57 if (!bset)
58 goto error;
60 isl_assert(bset->ctx, first + n <= bset->dim->n_out, goto error);
62 if (n == 0 && !isl_space_get_tuple_name(bset->dim, isl_dim_set))
63 return bset;
65 bset = isl_basic_set_cow(bset);
66 if (!bset)
67 return NULL;
69 for (i = 0; i < bset->n_eq; ++i)
70 constraint_drop_vars(bset->eq[i]+1+bset->dim->nparam+first, n,
71 (bset->dim->n_out-first-n)+bset->extra);
73 for (i = 0; i < bset->n_ineq; ++i)
74 constraint_drop_vars(bset->ineq[i]+1+bset->dim->nparam+first, n,
75 (bset->dim->n_out-first-n)+bset->extra);
77 for (i = 0; i < bset->n_div; ++i)
78 constraint_drop_vars(bset->div[i]+1+1+bset->dim->nparam+first, n,
79 (bset->dim->n_out-first-n)+bset->extra);
81 bset->dim = isl_space_drop_outputs(bset->dim, first, n);
82 if (!bset->dim)
83 goto error;
85 ISL_F_CLR(bset, ISL_BASIC_SET_NORMALIZED);
86 bset = isl_basic_set_simplify(bset);
87 return isl_basic_set_finalize(bset);
88 error:
89 isl_basic_set_free(bset);
90 return NULL;
93 struct isl_set *isl_set_drop_dims(
94 struct isl_set *set, unsigned first, unsigned n)
96 int i;
98 if (!set)
99 goto error;
101 isl_assert(set->ctx, first + n <= set->dim->n_out, goto error);
103 if (n == 0 && !isl_space_get_tuple_name(set->dim, isl_dim_set))
104 return set;
105 set = isl_set_cow(set);
106 if (!set)
107 goto error;
108 set->dim = isl_space_drop_outputs(set->dim, first, n);
109 if (!set->dim)
110 goto error;
112 for (i = 0; i < set->n; ++i) {
113 set->p[i] = isl_basic_set_drop_dims(set->p[i], first, n);
114 if (!set->p[i])
115 goto error;
118 ISL_F_CLR(set, ISL_SET_NORMALIZED);
119 return set;
120 error:
121 isl_set_free(set);
122 return NULL;
125 /* Move "n" divs starting at "first" to the end of the list of divs.
127 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
128 unsigned first, unsigned n)
130 isl_int **div;
131 int i;
133 if (first + n == bmap->n_div)
134 return bmap;
136 div = isl_alloc_array(bmap->ctx, isl_int *, n);
137 if (!div)
138 goto error;
139 for (i = 0; i < n; ++i)
140 div[i] = bmap->div[first + i];
141 for (i = 0; i < bmap->n_div - first - n; ++i)
142 bmap->div[first + i] = bmap->div[first + n + i];
143 for (i = 0; i < n; ++i)
144 bmap->div[bmap->n_div - n + i] = div[i];
145 free(div);
146 return bmap;
147 error:
148 isl_basic_map_free(bmap);
149 return NULL;
152 /* Drop "n" dimensions of type "type" starting at "first".
154 * In principle, this frees up some extra variables as the number
155 * of columns remains constant, but we would have to extend
156 * the div array too as the number of rows in this array is assumed
157 * to be equal to extra.
159 struct isl_basic_map *isl_basic_map_drop(struct isl_basic_map *bmap,
160 enum isl_dim_type type, unsigned first, unsigned n)
162 int i;
163 unsigned dim;
164 unsigned offset;
165 unsigned left;
167 if (!bmap)
168 goto error;
170 dim = isl_basic_map_dim(bmap, type);
171 isl_assert(bmap->ctx, first + n <= dim, goto error);
173 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
174 return bmap;
176 bmap = isl_basic_map_cow(bmap);
177 if (!bmap)
178 return NULL;
180 offset = isl_basic_map_offset(bmap, type) + first;
181 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
182 for (i = 0; i < bmap->n_eq; ++i)
183 constraint_drop_vars(bmap->eq[i]+offset, n, left);
185 for (i = 0; i < bmap->n_ineq; ++i)
186 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
188 for (i = 0; i < bmap->n_div; ++i)
189 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
191 if (type == isl_dim_div) {
192 bmap = move_divs_last(bmap, first, n);
193 if (!bmap)
194 goto error;
195 isl_basic_map_free_div(bmap, n);
196 } else
197 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
198 if (!bmap->dim)
199 goto error;
201 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
202 bmap = isl_basic_map_simplify(bmap);
203 return isl_basic_map_finalize(bmap);
204 error:
205 isl_basic_map_free(bmap);
206 return NULL;
209 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
210 enum isl_dim_type type, unsigned first, unsigned n)
212 return (isl_basic_set *)isl_basic_map_drop((isl_basic_map *)bset,
213 type, first, n);
216 struct isl_basic_map *isl_basic_map_drop_inputs(
217 struct isl_basic_map *bmap, unsigned first, unsigned n)
219 return isl_basic_map_drop(bmap, isl_dim_in, first, n);
222 struct isl_map *isl_map_drop(struct isl_map *map,
223 enum isl_dim_type type, unsigned first, unsigned n)
225 int i;
227 if (!map)
228 goto error;
230 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
232 if (n == 0 && !isl_space_get_tuple_name(map->dim, type))
233 return map;
234 map = isl_map_cow(map);
235 if (!map)
236 goto error;
237 map->dim = isl_space_drop_dims(map->dim, type, first, n);
238 if (!map->dim)
239 goto error;
241 for (i = 0; i < map->n; ++i) {
242 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
243 if (!map->p[i])
244 goto error;
246 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
248 return map;
249 error:
250 isl_map_free(map);
251 return NULL;
254 struct isl_set *isl_set_drop(struct isl_set *set,
255 enum isl_dim_type type, unsigned first, unsigned n)
257 return (isl_set *)isl_map_drop((isl_map *)set, type, first, n);
260 struct isl_map *isl_map_drop_inputs(
261 struct isl_map *map, unsigned first, unsigned n)
263 return isl_map_drop(map, isl_dim_in, first, n);
267 * We don't cow, as the div is assumed to be redundant.
269 static struct isl_basic_map *isl_basic_map_drop_div(
270 struct isl_basic_map *bmap, unsigned div)
272 int i;
273 unsigned pos;
275 if (!bmap)
276 goto error;
278 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
280 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
282 for (i = 0; i < bmap->n_eq; ++i)
283 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
285 for (i = 0; i < bmap->n_ineq; ++i) {
286 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
287 isl_basic_map_drop_inequality(bmap, i);
288 --i;
289 continue;
291 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
294 for (i = 0; i < bmap->n_div; ++i)
295 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
297 if (div != bmap->n_div - 1) {
298 int j;
299 isl_int *t = bmap->div[div];
301 for (j = div; j < bmap->n_div - 1; ++j)
302 bmap->div[j] = bmap->div[j+1];
304 bmap->div[bmap->n_div - 1] = t;
306 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
307 isl_basic_map_free_div(bmap, 1);
309 return bmap;
310 error:
311 isl_basic_map_free(bmap);
312 return NULL;
315 struct isl_basic_map *isl_basic_map_normalize_constraints(
316 struct isl_basic_map *bmap)
318 int i;
319 isl_int gcd;
320 unsigned total = isl_basic_map_total_dim(bmap);
322 if (!bmap)
323 return NULL;
325 isl_int_init(gcd);
326 for (i = bmap->n_eq - 1; i >= 0; --i) {
327 isl_seq_gcd(bmap->eq[i]+1, total, &gcd);
328 if (isl_int_is_zero(gcd)) {
329 if (!isl_int_is_zero(bmap->eq[i][0])) {
330 bmap = isl_basic_map_set_to_empty(bmap);
331 break;
333 isl_basic_map_drop_equality(bmap, i);
334 continue;
336 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
337 isl_int_gcd(gcd, gcd, bmap->eq[i][0]);
338 if (isl_int_is_one(gcd))
339 continue;
340 if (!isl_int_is_divisible_by(bmap->eq[i][0], gcd)) {
341 bmap = isl_basic_map_set_to_empty(bmap);
342 break;
344 isl_seq_scale_down(bmap->eq[i], bmap->eq[i], gcd, 1+total);
347 for (i = bmap->n_ineq - 1; i >= 0; --i) {
348 isl_seq_gcd(bmap->ineq[i]+1, total, &gcd);
349 if (isl_int_is_zero(gcd)) {
350 if (isl_int_is_neg(bmap->ineq[i][0])) {
351 bmap = isl_basic_map_set_to_empty(bmap);
352 break;
354 isl_basic_map_drop_inequality(bmap, i);
355 continue;
357 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
358 isl_int_gcd(gcd, gcd, bmap->ineq[i][0]);
359 if (isl_int_is_one(gcd))
360 continue;
361 isl_int_fdiv_q(bmap->ineq[i][0], bmap->ineq[i][0], gcd);
362 isl_seq_scale_down(bmap->ineq[i]+1, bmap->ineq[i]+1, gcd, total);
364 isl_int_clear(gcd);
366 return bmap;
369 struct isl_basic_set *isl_basic_set_normalize_constraints(
370 struct isl_basic_set *bset)
372 return (struct isl_basic_set *)isl_basic_map_normalize_constraints(
373 (struct isl_basic_map *)bset);
376 /* Remove any common factor in numerator and denominator of the div expression,
377 * not taking into account the constant term.
378 * That is, if the div is of the form
380 * floor((a + m f(x))/(m d))
382 * then replace it by
384 * floor((floor(a/m) + f(x))/d)
386 * The difference {a/m}/d in the argument satisfies 0 <= {a/m}/d < 1/d
387 * and can therefore not influence the result of the floor.
389 static void normalize_div_expression(__isl_keep isl_basic_map *bmap, int div)
391 unsigned total = isl_basic_map_total_dim(bmap);
392 isl_ctx *ctx = bmap->ctx;
394 if (isl_int_is_zero(bmap->div[div][0]))
395 return;
396 isl_seq_gcd(bmap->div[div] + 2, total, &ctx->normalize_gcd);
397 isl_int_gcd(ctx->normalize_gcd, ctx->normalize_gcd, bmap->div[div][0]);
398 if (isl_int_is_one(ctx->normalize_gcd))
399 return;
400 isl_int_fdiv_q(bmap->div[div][1], bmap->div[div][1],
401 ctx->normalize_gcd);
402 isl_int_divexact(bmap->div[div][0], bmap->div[div][0],
403 ctx->normalize_gcd);
404 isl_seq_scale_down(bmap->div[div] + 2, bmap->div[div] + 2,
405 ctx->normalize_gcd, total);
408 /* Remove any common factor in numerator and denominator of a div expression,
409 * not taking into account the constant term.
410 * That is, look for any div of the form
412 * floor((a + m f(x))/(m d))
414 * and replace it by
416 * floor((floor(a/m) + f(x))/d)
418 * The difference {a/m}/d in the argument satisfies 0 <= {a/m}/d < 1/d
419 * and can therefore not influence the result of the floor.
421 static __isl_give isl_basic_map *normalize_div_expressions(
422 __isl_take isl_basic_map *bmap)
424 int i;
426 if (!bmap)
427 return NULL;
428 if (bmap->n_div == 0)
429 return bmap;
431 for (i = 0; i < bmap->n_div; ++i)
432 normalize_div_expression(bmap, i);
434 return bmap;
437 /* Assumes divs have been ordered if keep_divs is set.
439 static void eliminate_var_using_equality(struct isl_basic_map *bmap,
440 unsigned pos, isl_int *eq, int keep_divs, int *progress)
442 unsigned total;
443 unsigned space_total;
444 int k;
445 int last_div;
447 total = isl_basic_map_total_dim(bmap);
448 space_total = isl_space_dim(bmap->dim, isl_dim_all);
449 last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
450 for (k = 0; k < bmap->n_eq; ++k) {
451 if (bmap->eq[k] == eq)
452 continue;
453 if (isl_int_is_zero(bmap->eq[k][1+pos]))
454 continue;
455 if (progress)
456 *progress = 1;
457 isl_seq_elim(bmap->eq[k], eq, 1+pos, 1+total, NULL);
458 isl_seq_normalize(bmap->ctx, bmap->eq[k], 1 + total);
461 for (k = 0; k < bmap->n_ineq; ++k) {
462 if (isl_int_is_zero(bmap->ineq[k][1+pos]))
463 continue;
464 if (progress)
465 *progress = 1;
466 isl_seq_elim(bmap->ineq[k], eq, 1+pos, 1+total, NULL);
467 isl_seq_normalize(bmap->ctx, bmap->ineq[k], 1 + total);
468 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
471 for (k = 0; k < bmap->n_div; ++k) {
472 if (isl_int_is_zero(bmap->div[k][0]))
473 continue;
474 if (isl_int_is_zero(bmap->div[k][1+1+pos]))
475 continue;
476 if (progress)
477 *progress = 1;
478 /* We need to be careful about circular definitions,
479 * so for now we just remove the definition of div k
480 * if the equality contains any divs.
481 * If keep_divs is set, then the divs have been ordered
482 * and we can keep the definition as long as the result
483 * is still ordered.
485 if (last_div == -1 || (keep_divs && last_div < k)) {
486 isl_seq_elim(bmap->div[k]+1, eq,
487 1+pos, 1+total, &bmap->div[k][0]);
488 normalize_div_expression(bmap, k);
489 } else
490 isl_seq_clr(bmap->div[k], 1 + total);
491 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
495 /* Assumes divs have been ordered if keep_divs is set.
497 static void eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
498 unsigned div, int keep_divs)
500 unsigned pos = isl_space_dim(bmap->dim, isl_dim_all) + div;
502 eliminate_var_using_equality(bmap, pos, eq, keep_divs, NULL);
504 isl_basic_map_drop_div(bmap, div);
507 /* Check if elimination of div "div" using equality "eq" would not
508 * result in a div depending on a later div.
510 static int ok_to_eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
511 unsigned div)
513 int k;
514 int last_div;
515 unsigned space_total = isl_space_dim(bmap->dim, isl_dim_all);
516 unsigned pos = space_total + div;
518 last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
519 if (last_div < 0 || last_div <= div)
520 return 1;
522 for (k = 0; k <= last_div; ++k) {
523 if (isl_int_is_zero(bmap->div[k][0]))
524 return 1;
525 if (!isl_int_is_zero(bmap->div[k][1 + 1 + pos]))
526 return 0;
529 return 1;
532 /* Elimininate divs based on equalities
534 static struct isl_basic_map *eliminate_divs_eq(
535 struct isl_basic_map *bmap, int *progress)
537 int d;
538 int i;
539 int modified = 0;
540 unsigned off;
542 bmap = isl_basic_map_order_divs(bmap);
544 if (!bmap)
545 return NULL;
547 off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
549 for (d = bmap->n_div - 1; d >= 0 ; --d) {
550 for (i = 0; i < bmap->n_eq; ++i) {
551 if (!isl_int_is_one(bmap->eq[i][off + d]) &&
552 !isl_int_is_negone(bmap->eq[i][off + d]))
553 continue;
554 if (!ok_to_eliminate_div(bmap, bmap->eq[i], d))
555 continue;
556 modified = 1;
557 *progress = 1;
558 eliminate_div(bmap, bmap->eq[i], d, 1);
559 isl_basic_map_drop_equality(bmap, i);
560 break;
563 if (modified)
564 return eliminate_divs_eq(bmap, progress);
565 return bmap;
568 /* Elimininate divs based on inequalities
570 static struct isl_basic_map *eliminate_divs_ineq(
571 struct isl_basic_map *bmap, int *progress)
573 int d;
574 int i;
575 unsigned off;
576 struct isl_ctx *ctx;
578 if (!bmap)
579 return NULL;
581 ctx = bmap->ctx;
582 off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
584 for (d = bmap->n_div - 1; d >= 0 ; --d) {
585 for (i = 0; i < bmap->n_eq; ++i)
586 if (!isl_int_is_zero(bmap->eq[i][off + d]))
587 break;
588 if (i < bmap->n_eq)
589 continue;
590 for (i = 0; i < bmap->n_ineq; ++i)
591 if (isl_int_abs_gt(bmap->ineq[i][off + d], ctx->one))
592 break;
593 if (i < bmap->n_ineq)
594 continue;
595 *progress = 1;
596 bmap = isl_basic_map_eliminate_vars(bmap, (off-1)+d, 1);
597 if (!bmap || ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
598 break;
599 bmap = isl_basic_map_drop_div(bmap, d);
600 if (!bmap)
601 break;
603 return bmap;
606 struct isl_basic_map *isl_basic_map_gauss(
607 struct isl_basic_map *bmap, int *progress)
609 int k;
610 int done;
611 int last_var;
612 unsigned total_var;
613 unsigned total;
615 bmap = isl_basic_map_order_divs(bmap);
617 if (!bmap)
618 return NULL;
620 total = isl_basic_map_total_dim(bmap);
621 total_var = total - bmap->n_div;
623 last_var = total - 1;
624 for (done = 0; done < bmap->n_eq; ++done) {
625 for (; last_var >= 0; --last_var) {
626 for (k = done; k < bmap->n_eq; ++k)
627 if (!isl_int_is_zero(bmap->eq[k][1+last_var]))
628 break;
629 if (k < bmap->n_eq)
630 break;
632 if (last_var < 0)
633 break;
634 if (k != done)
635 swap_equality(bmap, k, done);
636 if (isl_int_is_neg(bmap->eq[done][1+last_var]))
637 isl_seq_neg(bmap->eq[done], bmap->eq[done], 1+total);
639 eliminate_var_using_equality(bmap, last_var, bmap->eq[done], 1,
640 progress);
642 if (last_var >= total_var &&
643 isl_int_is_zero(bmap->div[last_var - total_var][0])) {
644 unsigned div = last_var - total_var;
645 isl_seq_neg(bmap->div[div]+1, bmap->eq[done], 1+total);
646 isl_int_set_si(bmap->div[div][1+1+last_var], 0);
647 isl_int_set(bmap->div[div][0],
648 bmap->eq[done][1+last_var]);
649 if (progress)
650 *progress = 1;
651 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
654 if (done == bmap->n_eq)
655 return bmap;
656 for (k = done; k < bmap->n_eq; ++k) {
657 if (isl_int_is_zero(bmap->eq[k][0]))
658 continue;
659 return isl_basic_map_set_to_empty(bmap);
661 isl_basic_map_free_equality(bmap, bmap->n_eq-done);
662 return bmap;
665 struct isl_basic_set *isl_basic_set_gauss(
666 struct isl_basic_set *bset, int *progress)
668 return (struct isl_basic_set*)isl_basic_map_gauss(
669 (struct isl_basic_map *)bset, progress);
673 static unsigned int round_up(unsigned int v)
675 int old_v = v;
677 while (v) {
678 old_v = v;
679 v ^= v & -v;
681 return old_v << 1;
684 static int hash_index(isl_int ***index, unsigned int size, int bits,
685 struct isl_basic_map *bmap, int k)
687 int h;
688 unsigned total = isl_basic_map_total_dim(bmap);
689 uint32_t hash = isl_seq_get_hash_bits(bmap->ineq[k]+1, total, bits);
690 for (h = hash; index[h]; h = (h+1) % size)
691 if (&bmap->ineq[k] != index[h] &&
692 isl_seq_eq(bmap->ineq[k]+1, index[h][0]+1, total))
693 break;
694 return h;
697 static int set_hash_index(isl_int ***index, unsigned int size, int bits,
698 struct isl_basic_set *bset, int k)
700 return hash_index(index, size, bits, (struct isl_basic_map *)bset, k);
703 /* If we can eliminate more than one div, then we need to make
704 * sure we do it from last div to first div, in order not to
705 * change the position of the other divs that still need to
706 * be removed.
708 static struct isl_basic_map *remove_duplicate_divs(
709 struct isl_basic_map *bmap, int *progress)
711 unsigned int size;
712 int *index;
713 int *elim_for;
714 int k, l, h;
715 int bits;
716 struct isl_blk eq;
717 unsigned total_var;
718 unsigned total;
719 struct isl_ctx *ctx;
721 bmap = isl_basic_map_order_divs(bmap);
722 if (!bmap || bmap->n_div <= 1)
723 return bmap;
725 total_var = isl_space_dim(bmap->dim, isl_dim_all);
726 total = total_var + bmap->n_div;
728 ctx = bmap->ctx;
729 for (k = bmap->n_div - 1; k >= 0; --k)
730 if (!isl_int_is_zero(bmap->div[k][0]))
731 break;
732 if (k <= 0)
733 return bmap;
735 elim_for = isl_calloc_array(ctx, int, bmap->n_div);
736 size = round_up(4 * bmap->n_div / 3 - 1);
737 bits = ffs(size) - 1;
738 index = isl_calloc_array(ctx, int, size);
739 if (!index)
740 return bmap;
741 eq = isl_blk_alloc(ctx, 1+total);
742 if (isl_blk_is_error(eq))
743 goto out;
745 isl_seq_clr(eq.data, 1+total);
746 index[isl_seq_get_hash_bits(bmap->div[k], 2+total, bits)] = k + 1;
747 for (--k; k >= 0; --k) {
748 uint32_t hash;
750 if (isl_int_is_zero(bmap->div[k][0]))
751 continue;
753 hash = isl_seq_get_hash_bits(bmap->div[k], 2+total, bits);
754 for (h = hash; index[h]; h = (h+1) % size)
755 if (isl_seq_eq(bmap->div[k],
756 bmap->div[index[h]-1], 2+total))
757 break;
758 if (index[h]) {
759 *progress = 1;
760 l = index[h] - 1;
761 elim_for[l] = k + 1;
763 index[h] = k+1;
765 for (l = bmap->n_div - 1; l >= 0; --l) {
766 if (!elim_for[l])
767 continue;
768 k = elim_for[l] - 1;
769 isl_int_set_si(eq.data[1+total_var+k], -1);
770 isl_int_set_si(eq.data[1+total_var+l], 1);
771 eliminate_div(bmap, eq.data, l, 1);
772 isl_int_set_si(eq.data[1+total_var+k], 0);
773 isl_int_set_si(eq.data[1+total_var+l], 0);
776 isl_blk_free(ctx, eq);
777 out:
778 free(index);
779 free(elim_for);
780 return bmap;
783 static int n_pure_div_eq(struct isl_basic_map *bmap)
785 int i, j;
786 unsigned total;
788 total = isl_space_dim(bmap->dim, isl_dim_all);
789 for (i = 0, j = bmap->n_div-1; i < bmap->n_eq; ++i) {
790 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
791 --j;
792 if (j < 0)
793 break;
794 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + total, j) != -1)
795 return 0;
797 return i;
800 /* Normalize divs that appear in equalities.
802 * In particular, we assume that bmap contains some equalities
803 * of the form
805 * a x = m * e_i
807 * and we want to replace the set of e_i by a minimal set and
808 * such that the new e_i have a canonical representation in terms
809 * of the vector x.
810 * If any of the equalities involves more than one divs, then
811 * we currently simply bail out.
813 * Let us first additionally assume that all equalities involve
814 * a div. The equalities then express modulo constraints on the
815 * remaining variables and we can use "parameter compression"
816 * to find a minimal set of constraints. The result is a transformation
818 * x = T(x') = x_0 + G x'
820 * with G a lower-triangular matrix with all elements below the diagonal
821 * non-negative and smaller than the diagonal element on the same row.
822 * We first normalize x_0 by making the same property hold in the affine
823 * T matrix.
824 * The rows i of G with a 1 on the diagonal do not impose any modulo
825 * constraint and simply express x_i = x'_i.
826 * For each of the remaining rows i, we introduce a div and a corresponding
827 * equality. In particular
829 * g_ii e_j = x_i - g_i(x')
831 * where each x'_k is replaced either by x_k (if g_kk = 1) or the
832 * corresponding div (if g_kk != 1).
834 * If there are any equalities not involving any div, then we
835 * first apply a variable compression on the variables x:
837 * x = C x'' x'' = C_2 x
839 * and perform the above parameter compression on A C instead of on A.
840 * The resulting compression is then of the form
842 * x'' = T(x') = x_0 + G x'
844 * and in constructing the new divs and the corresponding equalities,
845 * we have to replace each x'', i.e., the x'_k with (g_kk = 1),
846 * by the corresponding row from C_2.
848 static struct isl_basic_map *normalize_divs(
849 struct isl_basic_map *bmap, int *progress)
851 int i, j, k;
852 int total;
853 int div_eq;
854 struct isl_mat *B;
855 struct isl_vec *d;
856 struct isl_mat *T = NULL;
857 struct isl_mat *C = NULL;
858 struct isl_mat *C2 = NULL;
859 isl_int v;
860 int *pos;
861 int dropped, needed;
863 if (!bmap)
864 return NULL;
866 if (bmap->n_div == 0)
867 return bmap;
869 if (bmap->n_eq == 0)
870 return bmap;
872 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS))
873 return bmap;
875 total = isl_space_dim(bmap->dim, isl_dim_all);
876 div_eq = n_pure_div_eq(bmap);
877 if (div_eq == 0)
878 return bmap;
880 if (div_eq < bmap->n_eq) {
881 B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, div_eq,
882 bmap->n_eq - div_eq, 0, 1 + total);
883 C = isl_mat_variable_compression(B, &C2);
884 if (!C || !C2)
885 goto error;
886 if (C->n_col == 0) {
887 bmap = isl_basic_map_set_to_empty(bmap);
888 isl_mat_free(C);
889 isl_mat_free(C2);
890 goto done;
894 d = isl_vec_alloc(bmap->ctx, div_eq);
895 if (!d)
896 goto error;
897 for (i = 0, j = bmap->n_div-1; i < div_eq; ++i) {
898 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
899 --j;
900 isl_int_set(d->block.data[i], bmap->eq[i][1 + total + j]);
902 B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, 0, div_eq, 0, 1 + total);
904 if (C) {
905 B = isl_mat_product(B, C);
906 C = NULL;
909 T = isl_mat_parameter_compression(B, d);
910 if (!T)
911 goto error;
912 if (T->n_col == 0) {
913 bmap = isl_basic_map_set_to_empty(bmap);
914 isl_mat_free(C2);
915 isl_mat_free(T);
916 goto done;
918 isl_int_init(v);
919 for (i = 0; i < T->n_row - 1; ++i) {
920 isl_int_fdiv_q(v, T->row[1 + i][0], T->row[1 + i][1 + i]);
921 if (isl_int_is_zero(v))
922 continue;
923 isl_mat_col_submul(T, 0, v, 1 + i);
925 isl_int_clear(v);
926 pos = isl_alloc_array(bmap->ctx, int, T->n_row);
927 if (!pos)
928 goto error;
929 /* We have to be careful because dropping equalities may reorder them */
930 dropped = 0;
931 for (j = bmap->n_div - 1; j >= 0; --j) {
932 for (i = 0; i < bmap->n_eq; ++i)
933 if (!isl_int_is_zero(bmap->eq[i][1 + total + j]))
934 break;
935 if (i < bmap->n_eq) {
936 bmap = isl_basic_map_drop_div(bmap, j);
937 isl_basic_map_drop_equality(bmap, i);
938 ++dropped;
941 pos[0] = 0;
942 needed = 0;
943 for (i = 1; i < T->n_row; ++i) {
944 if (isl_int_is_one(T->row[i][i]))
945 pos[i] = i;
946 else
947 needed++;
949 if (needed > dropped) {
950 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
951 needed, needed, 0);
952 if (!bmap)
953 goto error;
955 for (i = 1; i < T->n_row; ++i) {
956 if (isl_int_is_one(T->row[i][i]))
957 continue;
958 k = isl_basic_map_alloc_div(bmap);
959 pos[i] = 1 + total + k;
960 isl_seq_clr(bmap->div[k] + 1, 1 + total + bmap->n_div);
961 isl_int_set(bmap->div[k][0], T->row[i][i]);
962 if (C2)
963 isl_seq_cpy(bmap->div[k] + 1, C2->row[i], 1 + total);
964 else
965 isl_int_set_si(bmap->div[k][1 + i], 1);
966 for (j = 0; j < i; ++j) {
967 if (isl_int_is_zero(T->row[i][j]))
968 continue;
969 if (pos[j] < T->n_row && C2)
970 isl_seq_submul(bmap->div[k] + 1, T->row[i][j],
971 C2->row[pos[j]], 1 + total);
972 else
973 isl_int_neg(bmap->div[k][1 + pos[j]],
974 T->row[i][j]);
976 j = isl_basic_map_alloc_equality(bmap);
977 isl_seq_neg(bmap->eq[j], bmap->div[k]+1, 1+total+bmap->n_div);
978 isl_int_set(bmap->eq[j][pos[i]], bmap->div[k][0]);
980 free(pos);
981 isl_mat_free(C2);
982 isl_mat_free(T);
984 if (progress)
985 *progress = 1;
986 done:
987 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
989 return bmap;
990 error:
991 isl_mat_free(C);
992 isl_mat_free(C2);
993 isl_mat_free(T);
994 return bmap;
997 static struct isl_basic_map *set_div_from_lower_bound(
998 struct isl_basic_map *bmap, int div, int ineq)
1000 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1002 isl_seq_neg(bmap->div[div] + 1, bmap->ineq[ineq], total + bmap->n_div);
1003 isl_int_set(bmap->div[div][0], bmap->ineq[ineq][total + div]);
1004 isl_int_add(bmap->div[div][1], bmap->div[div][1], bmap->div[div][0]);
1005 isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
1006 isl_int_set_si(bmap->div[div][1 + total + div], 0);
1008 return bmap;
1011 /* Check whether it is ok to define a div based on an inequality.
1012 * To avoid the introduction of circular definitions of divs, we
1013 * do not allow such a definition if the resulting expression would refer to
1014 * any other undefined divs or if any known div is defined in
1015 * terms of the unknown div.
1017 static int ok_to_set_div_from_bound(struct isl_basic_map *bmap,
1018 int div, int ineq)
1020 int j;
1021 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1023 /* Not defined in terms of unknown divs */
1024 for (j = 0; j < bmap->n_div; ++j) {
1025 if (div == j)
1026 continue;
1027 if (isl_int_is_zero(bmap->ineq[ineq][total + j]))
1028 continue;
1029 if (isl_int_is_zero(bmap->div[j][0]))
1030 return 0;
1033 /* No other div defined in terms of this one => avoid loops */
1034 for (j = 0; j < bmap->n_div; ++j) {
1035 if (div == j)
1036 continue;
1037 if (isl_int_is_zero(bmap->div[j][0]))
1038 continue;
1039 if (!isl_int_is_zero(bmap->div[j][1 + total + div]))
1040 return 0;
1043 return 1;
1046 /* Would an expression for div "div" based on inequality "ineq" of "bmap"
1047 * be a better expression than the current one?
1049 * If we do not have any expression yet, then any expression would be better.
1050 * Otherwise we check if the last variable involved in the inequality
1051 * (disregarding the div that it would define) is in an earlier position
1052 * than the last variable involved in the current div expression.
1054 static int better_div_constraint(__isl_keep isl_basic_map *bmap,
1055 int div, int ineq)
1057 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1058 int last_div;
1059 int last_ineq;
1061 if (isl_int_is_zero(bmap->div[div][0]))
1062 return 1;
1064 if (isl_seq_last_non_zero(bmap->ineq[ineq] + total + div + 1,
1065 bmap->n_div - (div + 1)) >= 0)
1066 return 0;
1068 last_ineq = isl_seq_last_non_zero(bmap->ineq[ineq], total + div);
1069 last_div = isl_seq_last_non_zero(bmap->div[div] + 1,
1070 total + bmap->n_div);
1072 return last_ineq < last_div;
1075 /* Given two constraints "k" and "l" that are opposite to each other,
1076 * except for the constant term, check if we can use them
1077 * to obtain an expression for one of the hitherto unknown divs or
1078 * a "better" expression for a div for which we already have an expression.
1079 * "sum" is the sum of the constant terms of the constraints.
1080 * If this sum is strictly smaller than the coefficient of one
1081 * of the divs, then this pair can be used define the div.
1082 * To avoid the introduction of circular definitions of divs, we
1083 * do not use the pair if the resulting expression would refer to
1084 * any other undefined divs or if any known div is defined in
1085 * terms of the unknown div.
1087 static struct isl_basic_map *check_for_div_constraints(
1088 struct isl_basic_map *bmap, int k, int l, isl_int sum, int *progress)
1090 int i;
1091 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1093 for (i = 0; i < bmap->n_div; ++i) {
1094 if (isl_int_is_zero(bmap->ineq[k][total + i]))
1095 continue;
1096 if (isl_int_abs_ge(sum, bmap->ineq[k][total + i]))
1097 continue;
1098 if (!better_div_constraint(bmap, i, k))
1099 continue;
1100 if (!ok_to_set_div_from_bound(bmap, i, k))
1101 break;
1102 if (isl_int_is_pos(bmap->ineq[k][total + i]))
1103 bmap = set_div_from_lower_bound(bmap, i, k);
1104 else
1105 bmap = set_div_from_lower_bound(bmap, i, l);
1106 if (progress)
1107 *progress = 1;
1108 break;
1110 return bmap;
1113 __isl_give isl_basic_map *isl_basic_map_remove_duplicate_constraints(
1114 __isl_take isl_basic_map *bmap, int *progress, int detect_divs)
1116 unsigned int size;
1117 isl_int ***index;
1118 int k, l, h;
1119 int bits;
1120 unsigned total = isl_basic_map_total_dim(bmap);
1121 isl_int sum;
1122 isl_ctx *ctx;
1124 if (!bmap || bmap->n_ineq <= 1)
1125 return bmap;
1127 size = round_up(4 * (bmap->n_ineq+1) / 3 - 1);
1128 bits = ffs(size) - 1;
1129 ctx = isl_basic_map_get_ctx(bmap);
1130 index = isl_calloc_array(ctx, isl_int **, size);
1131 if (!index)
1132 return bmap;
1134 index[isl_seq_get_hash_bits(bmap->ineq[0]+1, total, bits)] = &bmap->ineq[0];
1135 for (k = 1; k < bmap->n_ineq; ++k) {
1136 h = hash_index(index, size, bits, bmap, k);
1137 if (!index[h]) {
1138 index[h] = &bmap->ineq[k];
1139 continue;
1141 if (progress)
1142 *progress = 1;
1143 l = index[h] - &bmap->ineq[0];
1144 if (isl_int_lt(bmap->ineq[k][0], bmap->ineq[l][0]))
1145 swap_inequality(bmap, k, l);
1146 isl_basic_map_drop_inequality(bmap, k);
1147 --k;
1149 isl_int_init(sum);
1150 for (k = 0; k < bmap->n_ineq-1; ++k) {
1151 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1152 h = hash_index(index, size, bits, bmap, k);
1153 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1154 if (!index[h])
1155 continue;
1156 l = index[h] - &bmap->ineq[0];
1157 isl_int_add(sum, bmap->ineq[k][0], bmap->ineq[l][0]);
1158 if (isl_int_is_pos(sum)) {
1159 if (detect_divs)
1160 bmap = check_for_div_constraints(bmap, k, l,
1161 sum, progress);
1162 continue;
1164 if (isl_int_is_zero(sum)) {
1165 /* We need to break out of the loop after these
1166 * changes since the contents of the hash
1167 * will no longer be valid.
1168 * Plus, we probably we want to regauss first.
1170 if (progress)
1171 *progress = 1;
1172 isl_basic_map_drop_inequality(bmap, l);
1173 isl_basic_map_inequality_to_equality(bmap, k);
1174 } else
1175 bmap = isl_basic_map_set_to_empty(bmap);
1176 break;
1178 isl_int_clear(sum);
1180 free(index);
1181 return bmap;
1185 /* Eliminate knowns divs from constraints where they appear with
1186 * a (positive or negative) unit coefficient.
1188 * That is, replace
1190 * floor(e/m) + f >= 0
1192 * by
1194 * e + m f >= 0
1196 * and
1198 * -floor(e/m) + f >= 0
1200 * by
1202 * -e + m f + m - 1 >= 0
1204 * The first conversion is valid because floor(e/m) >= -f is equivalent
1205 * to e/m >= -f because -f is an integral expression.
1206 * The second conversion follows from the fact that
1208 * -floor(e/m) = ceil(-e/m) = floor((-e + m - 1)/m)
1211 * Note that one of the div constraints may have been eliminated
1212 * due to being redundant with respect to the constraint that is
1213 * being modified by this function. The modified constraint may
1214 * no longer imply this div constraint, so we add it back to make
1215 * sure we do not lose any information.
1217 * We skip integral divs, i.e., those with denominator 1, as we would
1218 * risk eliminating the div from the div constraints. We do not need
1219 * to handle those divs here anyway since the div constraints will turn
1220 * out to form an equality and this equality can then be use to eliminate
1221 * the div from all constraints.
1223 static __isl_give isl_basic_map *eliminate_unit_divs(
1224 __isl_take isl_basic_map *bmap, int *progress)
1226 int i, j;
1227 isl_ctx *ctx;
1228 unsigned total;
1230 if (!bmap)
1231 return NULL;
1233 ctx = isl_basic_map_get_ctx(bmap);
1234 total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1236 for (i = 0; i < bmap->n_div; ++i) {
1237 if (isl_int_is_zero(bmap->div[i][0]))
1238 continue;
1239 if (isl_int_is_one(bmap->div[i][0]))
1240 continue;
1241 for (j = 0; j < bmap->n_ineq; ++j) {
1242 int s;
1244 if (!isl_int_is_one(bmap->ineq[j][total + i]) &&
1245 !isl_int_is_negone(bmap->ineq[j][total + i]))
1246 continue;
1248 *progress = 1;
1250 s = isl_int_sgn(bmap->ineq[j][total + i]);
1251 isl_int_set_si(bmap->ineq[j][total + i], 0);
1252 if (s < 0)
1253 isl_seq_combine(bmap->ineq[j],
1254 ctx->negone, bmap->div[i] + 1,
1255 bmap->div[i][0], bmap->ineq[j],
1256 total + bmap->n_div);
1257 else
1258 isl_seq_combine(bmap->ineq[j],
1259 ctx->one, bmap->div[i] + 1,
1260 bmap->div[i][0], bmap->ineq[j],
1261 total + bmap->n_div);
1262 if (s < 0) {
1263 isl_int_add(bmap->ineq[j][0],
1264 bmap->ineq[j][0], bmap->div[i][0]);
1265 isl_int_sub_ui(bmap->ineq[j][0],
1266 bmap->ineq[j][0], 1);
1269 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1270 if (isl_basic_map_add_div_constraint(bmap, i, s) < 0)
1271 return isl_basic_map_free(bmap);
1275 return bmap;
1278 struct isl_basic_map *isl_basic_map_simplify(struct isl_basic_map *bmap)
1280 int progress = 1;
1281 if (!bmap)
1282 return NULL;
1283 while (progress) {
1284 progress = 0;
1285 if (!bmap)
1286 break;
1287 if (isl_basic_map_plain_is_empty(bmap))
1288 break;
1289 bmap = isl_basic_map_normalize_constraints(bmap);
1290 bmap = normalize_div_expressions(bmap);
1291 bmap = remove_duplicate_divs(bmap, &progress);
1292 bmap = eliminate_unit_divs(bmap, &progress);
1293 bmap = eliminate_divs_eq(bmap, &progress);
1294 bmap = eliminate_divs_ineq(bmap, &progress);
1295 bmap = isl_basic_map_gauss(bmap, &progress);
1296 /* requires equalities in normal form */
1297 bmap = normalize_divs(bmap, &progress);
1298 bmap = isl_basic_map_remove_duplicate_constraints(bmap,
1299 &progress, 1);
1301 return bmap;
1304 struct isl_basic_set *isl_basic_set_simplify(struct isl_basic_set *bset)
1306 return (struct isl_basic_set *)
1307 isl_basic_map_simplify((struct isl_basic_map *)bset);
1311 int isl_basic_map_is_div_constraint(__isl_keep isl_basic_map *bmap,
1312 isl_int *constraint, unsigned div)
1314 unsigned pos;
1316 if (!bmap)
1317 return -1;
1319 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1321 if (isl_int_eq(constraint[pos], bmap->div[div][0])) {
1322 int neg;
1323 isl_int_sub(bmap->div[div][1],
1324 bmap->div[div][1], bmap->div[div][0]);
1325 isl_int_add_ui(bmap->div[div][1], bmap->div[div][1], 1);
1326 neg = isl_seq_is_neg(constraint, bmap->div[div]+1, pos);
1327 isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
1328 isl_int_add(bmap->div[div][1],
1329 bmap->div[div][1], bmap->div[div][0]);
1330 if (!neg)
1331 return 0;
1332 if (isl_seq_first_non_zero(constraint+pos+1,
1333 bmap->n_div-div-1) != -1)
1334 return 0;
1335 } else if (isl_int_abs_eq(constraint[pos], bmap->div[div][0])) {
1336 if (!isl_seq_eq(constraint, bmap->div[div]+1, pos))
1337 return 0;
1338 if (isl_seq_first_non_zero(constraint+pos+1,
1339 bmap->n_div-div-1) != -1)
1340 return 0;
1341 } else
1342 return 0;
1344 return 1;
1347 int isl_basic_set_is_div_constraint(__isl_keep isl_basic_set *bset,
1348 isl_int *constraint, unsigned div)
1350 return isl_basic_map_is_div_constraint(bset, constraint, div);
1354 /* If the only constraints a div d=floor(f/m)
1355 * appears in are its two defining constraints
1357 * f - m d >=0
1358 * -(f - (m - 1)) + m d >= 0
1360 * then it can safely be removed.
1362 static int div_is_redundant(struct isl_basic_map *bmap, int div)
1364 int i;
1365 unsigned pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1367 for (i = 0; i < bmap->n_eq; ++i)
1368 if (!isl_int_is_zero(bmap->eq[i][pos]))
1369 return 0;
1371 for (i = 0; i < bmap->n_ineq; ++i) {
1372 if (isl_int_is_zero(bmap->ineq[i][pos]))
1373 continue;
1374 if (!isl_basic_map_is_div_constraint(bmap, bmap->ineq[i], div))
1375 return 0;
1378 for (i = 0; i < bmap->n_div; ++i) {
1379 if (isl_int_is_zero(bmap->div[i][0]))
1380 continue;
1381 if (!isl_int_is_zero(bmap->div[i][1+pos]))
1382 return 0;
1385 return 1;
1389 * Remove divs that don't occur in any of the constraints or other divs.
1390 * These can arise when dropping some of the variables in a quast
1391 * returned by piplib.
1393 static struct isl_basic_map *remove_redundant_divs(struct isl_basic_map *bmap)
1395 int i;
1397 if (!bmap)
1398 return NULL;
1400 for (i = bmap->n_div-1; i >= 0; --i) {
1401 if (!div_is_redundant(bmap, i))
1402 continue;
1403 bmap = isl_basic_map_drop_div(bmap, i);
1405 return bmap;
1408 struct isl_basic_map *isl_basic_map_finalize(struct isl_basic_map *bmap)
1410 bmap = remove_redundant_divs(bmap);
1411 if (!bmap)
1412 return NULL;
1413 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1414 return bmap;
1417 struct isl_basic_set *isl_basic_set_finalize(struct isl_basic_set *bset)
1419 return (struct isl_basic_set *)
1420 isl_basic_map_finalize((struct isl_basic_map *)bset);
1423 struct isl_set *isl_set_finalize(struct isl_set *set)
1425 int i;
1427 if (!set)
1428 return NULL;
1429 for (i = 0; i < set->n; ++i) {
1430 set->p[i] = isl_basic_set_finalize(set->p[i]);
1431 if (!set->p[i])
1432 goto error;
1434 return set;
1435 error:
1436 isl_set_free(set);
1437 return NULL;
1440 struct isl_map *isl_map_finalize(struct isl_map *map)
1442 int i;
1444 if (!map)
1445 return NULL;
1446 for (i = 0; i < map->n; ++i) {
1447 map->p[i] = isl_basic_map_finalize(map->p[i]);
1448 if (!map->p[i])
1449 goto error;
1451 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
1452 return map;
1453 error:
1454 isl_map_free(map);
1455 return NULL;
1459 /* Remove definition of any div that is defined in terms of the given variable.
1460 * The div itself is not removed. Functions such as
1461 * eliminate_divs_ineq depend on the other divs remaining in place.
1463 static struct isl_basic_map *remove_dependent_vars(struct isl_basic_map *bmap,
1464 int pos)
1466 int i;
1468 if (!bmap)
1469 return NULL;
1471 for (i = 0; i < bmap->n_div; ++i) {
1472 if (isl_int_is_zero(bmap->div[i][0]))
1473 continue;
1474 if (isl_int_is_zero(bmap->div[i][1+1+pos]))
1475 continue;
1476 isl_int_set_si(bmap->div[i][0], 0);
1478 return bmap;
1481 /* Eliminate the specified variables from the constraints using
1482 * Fourier-Motzkin. The variables themselves are not removed.
1484 struct isl_basic_map *isl_basic_map_eliminate_vars(
1485 struct isl_basic_map *bmap, unsigned pos, unsigned n)
1487 int d;
1488 int i, j, k;
1489 unsigned total;
1490 int need_gauss = 0;
1492 if (n == 0)
1493 return bmap;
1494 if (!bmap)
1495 return NULL;
1496 total = isl_basic_map_total_dim(bmap);
1498 bmap = isl_basic_map_cow(bmap);
1499 for (d = pos + n - 1; d >= 0 && d >= pos; --d)
1500 bmap = remove_dependent_vars(bmap, d);
1501 if (!bmap)
1502 return NULL;
1504 for (d = pos + n - 1;
1505 d >= 0 && d >= total - bmap->n_div && d >= pos; --d)
1506 isl_seq_clr(bmap->div[d-(total-bmap->n_div)], 2+total);
1507 for (d = pos + n - 1; d >= 0 && d >= pos; --d) {
1508 int n_lower, n_upper;
1509 if (!bmap)
1510 return NULL;
1511 for (i = 0; i < bmap->n_eq; ++i) {
1512 if (isl_int_is_zero(bmap->eq[i][1+d]))
1513 continue;
1514 eliminate_var_using_equality(bmap, d, bmap->eq[i], 0, NULL);
1515 isl_basic_map_drop_equality(bmap, i);
1516 need_gauss = 1;
1517 break;
1519 if (i < bmap->n_eq)
1520 continue;
1521 n_lower = 0;
1522 n_upper = 0;
1523 for (i = 0; i < bmap->n_ineq; ++i) {
1524 if (isl_int_is_pos(bmap->ineq[i][1+d]))
1525 n_lower++;
1526 else if (isl_int_is_neg(bmap->ineq[i][1+d]))
1527 n_upper++;
1529 bmap = isl_basic_map_extend_constraints(bmap,
1530 0, n_lower * n_upper);
1531 if (!bmap)
1532 goto error;
1533 for (i = bmap->n_ineq - 1; i >= 0; --i) {
1534 int last;
1535 if (isl_int_is_zero(bmap->ineq[i][1+d]))
1536 continue;
1537 last = -1;
1538 for (j = 0; j < i; ++j) {
1539 if (isl_int_is_zero(bmap->ineq[j][1+d]))
1540 continue;
1541 last = j;
1542 if (isl_int_sgn(bmap->ineq[i][1+d]) ==
1543 isl_int_sgn(bmap->ineq[j][1+d]))
1544 continue;
1545 k = isl_basic_map_alloc_inequality(bmap);
1546 if (k < 0)
1547 goto error;
1548 isl_seq_cpy(bmap->ineq[k], bmap->ineq[i],
1549 1+total);
1550 isl_seq_elim(bmap->ineq[k], bmap->ineq[j],
1551 1+d, 1+total, NULL);
1553 isl_basic_map_drop_inequality(bmap, i);
1554 i = last + 1;
1556 if (n_lower > 0 && n_upper > 0) {
1557 bmap = isl_basic_map_normalize_constraints(bmap);
1558 bmap = isl_basic_map_remove_duplicate_constraints(bmap,
1559 NULL, 0);
1560 bmap = isl_basic_map_gauss(bmap, NULL);
1561 bmap = isl_basic_map_remove_redundancies(bmap);
1562 need_gauss = 0;
1563 if (!bmap)
1564 goto error;
1565 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
1566 break;
1569 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1570 if (need_gauss)
1571 bmap = isl_basic_map_gauss(bmap, NULL);
1572 return bmap;
1573 error:
1574 isl_basic_map_free(bmap);
1575 return NULL;
1578 struct isl_basic_set *isl_basic_set_eliminate_vars(
1579 struct isl_basic_set *bset, unsigned pos, unsigned n)
1581 return (struct isl_basic_set *)isl_basic_map_eliminate_vars(
1582 (struct isl_basic_map *)bset, pos, n);
1585 /* Eliminate the specified n dimensions starting at first from the
1586 * constraints, without removing the dimensions from the space.
1587 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1588 * Otherwise, they are projected out and the original space is restored.
1590 __isl_give isl_basic_map *isl_basic_map_eliminate(
1591 __isl_take isl_basic_map *bmap,
1592 enum isl_dim_type type, unsigned first, unsigned n)
1594 isl_space *space;
1596 if (!bmap)
1597 return NULL;
1598 if (n == 0)
1599 return bmap;
1601 if (first + n > isl_basic_map_dim(bmap, type) || first + n < first)
1602 isl_die(bmap->ctx, isl_error_invalid,
1603 "index out of bounds", goto error);
1605 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
1606 first += isl_basic_map_offset(bmap, type) - 1;
1607 bmap = isl_basic_map_eliminate_vars(bmap, first, n);
1608 return isl_basic_map_finalize(bmap);
1611 space = isl_basic_map_get_space(bmap);
1612 bmap = isl_basic_map_project_out(bmap, type, first, n);
1613 bmap = isl_basic_map_insert_dims(bmap, type, first, n);
1614 bmap = isl_basic_map_reset_space(bmap, space);
1615 return bmap;
1616 error:
1617 isl_basic_map_free(bmap);
1618 return NULL;
1621 __isl_give isl_basic_set *isl_basic_set_eliminate(
1622 __isl_take isl_basic_set *bset,
1623 enum isl_dim_type type, unsigned first, unsigned n)
1625 return isl_basic_map_eliminate(bset, type, first, n);
1628 /* Don't assume equalities are in order, because align_divs
1629 * may have changed the order of the divs.
1631 static void compute_elimination_index(struct isl_basic_map *bmap, int *elim)
1633 int d, i;
1634 unsigned total;
1636 total = isl_space_dim(bmap->dim, isl_dim_all);
1637 for (d = 0; d < total; ++d)
1638 elim[d] = -1;
1639 for (i = 0; i < bmap->n_eq; ++i) {
1640 for (d = total - 1; d >= 0; --d) {
1641 if (isl_int_is_zero(bmap->eq[i][1+d]))
1642 continue;
1643 elim[d] = i;
1644 break;
1649 static void set_compute_elimination_index(struct isl_basic_set *bset, int *elim)
1651 compute_elimination_index((struct isl_basic_map *)bset, elim);
1654 static int reduced_using_equalities(isl_int *dst, isl_int *src,
1655 struct isl_basic_map *bmap, int *elim)
1657 int d;
1658 int copied = 0;
1659 unsigned total;
1661 total = isl_space_dim(bmap->dim, isl_dim_all);
1662 for (d = total - 1; d >= 0; --d) {
1663 if (isl_int_is_zero(src[1+d]))
1664 continue;
1665 if (elim[d] == -1)
1666 continue;
1667 if (!copied) {
1668 isl_seq_cpy(dst, src, 1 + total);
1669 copied = 1;
1671 isl_seq_elim(dst, bmap->eq[elim[d]], 1 + d, 1 + total, NULL);
1673 return copied;
1676 static int set_reduced_using_equalities(isl_int *dst, isl_int *src,
1677 struct isl_basic_set *bset, int *elim)
1679 return reduced_using_equalities(dst, src,
1680 (struct isl_basic_map *)bset, elim);
1683 static struct isl_basic_set *isl_basic_set_reduce_using_equalities(
1684 struct isl_basic_set *bset, struct isl_basic_set *context)
1686 int i;
1687 int *elim;
1689 if (!bset || !context)
1690 goto error;
1692 if (context->n_eq == 0) {
1693 isl_basic_set_free(context);
1694 return bset;
1697 bset = isl_basic_set_cow(bset);
1698 if (!bset)
1699 goto error;
1701 elim = isl_alloc_array(bset->ctx, int, isl_basic_set_n_dim(bset));
1702 if (!elim)
1703 goto error;
1704 set_compute_elimination_index(context, elim);
1705 for (i = 0; i < bset->n_eq; ++i)
1706 set_reduced_using_equalities(bset->eq[i], bset->eq[i],
1707 context, elim);
1708 for (i = 0; i < bset->n_ineq; ++i)
1709 set_reduced_using_equalities(bset->ineq[i], bset->ineq[i],
1710 context, elim);
1711 isl_basic_set_free(context);
1712 free(elim);
1713 bset = isl_basic_set_simplify(bset);
1714 bset = isl_basic_set_finalize(bset);
1715 return bset;
1716 error:
1717 isl_basic_set_free(bset);
1718 isl_basic_set_free(context);
1719 return NULL;
1722 static struct isl_basic_set *remove_shifted_constraints(
1723 struct isl_basic_set *bset, struct isl_basic_set *context)
1725 unsigned int size;
1726 isl_int ***index;
1727 int bits;
1728 int k, h, l;
1729 isl_ctx *ctx;
1731 if (!bset)
1732 return NULL;
1734 size = round_up(4 * (context->n_ineq+1) / 3 - 1);
1735 bits = ffs(size) - 1;
1736 ctx = isl_basic_set_get_ctx(bset);
1737 index = isl_calloc_array(ctx, isl_int **, size);
1738 if (!index)
1739 return bset;
1741 for (k = 0; k < context->n_ineq; ++k) {
1742 h = set_hash_index(index, size, bits, context, k);
1743 index[h] = &context->ineq[k];
1745 for (k = 0; k < bset->n_ineq; ++k) {
1746 h = set_hash_index(index, size, bits, bset, k);
1747 if (!index[h])
1748 continue;
1749 l = index[h] - &context->ineq[0];
1750 if (isl_int_lt(bset->ineq[k][0], context->ineq[l][0]))
1751 continue;
1752 bset = isl_basic_set_cow(bset);
1753 if (!bset)
1754 goto error;
1755 isl_basic_set_drop_inequality(bset, k);
1756 --k;
1758 free(index);
1759 return bset;
1760 error:
1761 free(index);
1762 return bset;
1765 /* Does the (linear part of a) constraint "c" involve any of the "len"
1766 * "relevant" dimensions?
1768 static int is_related(isl_int *c, int len, int *relevant)
1770 int i;
1772 for (i = 0; i < len; ++i) {
1773 if (!relevant[i])
1774 continue;
1775 if (!isl_int_is_zero(c[i]))
1776 return 1;
1779 return 0;
1782 /* Drop constraints from "bset" that do not involve any of
1783 * the dimensions marked "relevant".
1785 static __isl_give isl_basic_set *drop_unrelated_constraints(
1786 __isl_take isl_basic_set *bset, int *relevant)
1788 int i, dim;
1790 dim = isl_basic_set_dim(bset, isl_dim_set);
1791 for (i = 0; i < dim; ++i)
1792 if (!relevant[i])
1793 break;
1794 if (i >= dim)
1795 return bset;
1797 for (i = bset->n_eq - 1; i >= 0; --i)
1798 if (!is_related(bset->eq[i] + 1, dim, relevant))
1799 isl_basic_set_drop_equality(bset, i);
1801 for (i = bset->n_ineq - 1; i >= 0; --i)
1802 if (!is_related(bset->ineq[i] + 1, dim, relevant))
1803 isl_basic_set_drop_inequality(bset, i);
1805 return bset;
1808 /* Update the groups in "group" based on the (linear part of a) constraint "c".
1810 * In particular, for any variable involved in the constraint,
1811 * find the actual group id from before and replace the group
1812 * of the corresponding variable by the minimal group of all
1813 * the variables involved in the constraint considered so far
1814 * (if this minimum is smaller) or replace the minimum by this group
1815 * (if the minimum is larger).
1817 * At the end, all the variables in "c" will (indirectly) point
1818 * to the minimal of the groups that they referred to originally.
1820 static void update_groups(int dim, int *group, isl_int *c)
1822 int j;
1823 int min = dim;
1825 for (j = 0; j < dim; ++j) {
1826 if (isl_int_is_zero(c[j]))
1827 continue;
1828 while (group[j] >= 0 && group[group[j]] != group[j])
1829 group[j] = group[group[j]];
1830 if (group[j] == min)
1831 continue;
1832 if (group[j] < min) {
1833 if (min >= 0 && min < dim)
1834 group[min] = group[j];
1835 min = group[j];
1836 } else
1837 group[group[j]] = min;
1841 /* Drop constraints from "context" that are irrelevant for computing
1842 * the gist of "bset".
1844 * In particular, drop constraints in variables that are not related
1845 * to any of the variables involved in the constraints of "bset"
1846 * in the sense that there is no sequence of constraints that connects them.
1848 * We construct groups of variables that collect variables that
1849 * (indirectly) appear in some common constraint of "context".
1850 * Each group is identified by the first variable in the group,
1851 * except for the special group of variables that appear in "bset"
1852 * (or are related to those variables), which is identified by -1.
1853 * If group[i] is equal to i (or -1), then the group of i is i (or -1),
1854 * otherwise the group of i is the group of group[i].
1856 * We first initialize the -1 group with the variables that appear in "bset".
1857 * Then we initialize groups for the remaining variables.
1858 * Then we iterate over the constraints of "context" and update the
1859 * group of the variables in the constraint by the smallest group.
1860 * Finally, we resolve indirect references to groups by running over
1861 * the variables.
1863 * After computing the groups, we drop constraints that do not involve
1864 * any variables in the -1 group.
1866 static __isl_give isl_basic_set *drop_irrelevant_constraints(
1867 __isl_take isl_basic_set *context, __isl_keep isl_basic_set *bset)
1869 isl_ctx *ctx;
1870 int *group;
1871 int dim;
1872 int i, j;
1873 int last;
1875 if (!context || !bset)
1876 return isl_basic_set_free(context);
1878 dim = isl_basic_set_dim(bset, isl_dim_set);
1879 ctx = isl_basic_set_get_ctx(bset);
1880 group = isl_calloc_array(ctx, int, dim);
1882 if (!group)
1883 goto error;
1885 for (i = 0; i < dim; ++i) {
1886 for (j = 0; j < bset->n_eq; ++j)
1887 if (!isl_int_is_zero(bset->eq[j][1 + i]))
1888 break;
1889 if (j < bset->n_eq) {
1890 group[i] = -1;
1891 continue;
1893 for (j = 0; j < bset->n_ineq; ++j)
1894 if (!isl_int_is_zero(bset->ineq[j][1 + i]))
1895 break;
1896 if (j < bset->n_ineq)
1897 group[i] = -1;
1900 last = -1;
1901 for (i = 0; i < dim; ++i)
1902 if (group[i] >= 0)
1903 last = group[i] = i;
1904 if (last < 0) {
1905 free(group);
1906 return context;
1909 for (i = 0; i < context->n_eq; ++i)
1910 update_groups(dim, group, context->eq[i] + 1);
1911 for (i = 0; i < context->n_ineq; ++i)
1912 update_groups(dim, group, context->ineq[i] + 1);
1914 for (i = 0; i < dim; ++i)
1915 if (group[i] >= 0)
1916 group[i] = group[group[i]];
1918 for (i = 0; i < dim; ++i)
1919 group[i] = group[i] == -1;
1921 context = drop_unrelated_constraints(context, group);
1923 free(group);
1924 return context;
1925 error:
1926 free(group);
1927 return isl_basic_set_free(context);
1930 /* Remove all information from bset that is redundant in the context
1931 * of context. Both bset and context are assumed to be full-dimensional.
1933 * We first remove the inequalities from "bset"
1934 * that are obviously redundant with respect to some inequality in "context".
1935 * Then we remove those constraints from "context" that have become
1936 * irrelevant for computing the gist of "bset".
1937 * Note that this removal of constraints cannot be replaced by
1938 * a factorization because factors in "bset" may still be connected
1939 * to each other through constraints in "context".
1941 * If there are any inequalities left, we construct a tableau for
1942 * the context and then add the inequalities of "bset".
1943 * Before adding these inequalities, we freeze all constraints such that
1944 * they won't be considered redundant in terms of the constraints of "bset".
1945 * Then we detect all redundant constraints (among the
1946 * constraints that weren't frozen), first by checking for redundancy in the
1947 * the tableau and then by checking if replacing a constraint by its negation
1948 * would lead to an empty set. This last step is fairly expensive
1949 * and could be optimized by more reuse of the tableau.
1950 * Finally, we update bset according to the results.
1952 static __isl_give isl_basic_set *uset_gist_full(__isl_take isl_basic_set *bset,
1953 __isl_take isl_basic_set *context)
1955 int i, k;
1956 isl_basic_set *combined = NULL;
1957 struct isl_tab *tab = NULL;
1958 unsigned context_ineq;
1959 unsigned total;
1961 if (!bset || !context)
1962 goto error;
1964 if (isl_basic_set_is_universe(bset)) {
1965 isl_basic_set_free(context);
1966 return bset;
1969 if (isl_basic_set_is_universe(context)) {
1970 isl_basic_set_free(context);
1971 return bset;
1974 bset = remove_shifted_constraints(bset, context);
1975 if (!bset)
1976 goto error;
1977 if (bset->n_ineq == 0)
1978 goto done;
1980 context = drop_irrelevant_constraints(context, bset);
1981 if (!context)
1982 goto error;
1983 if (isl_basic_set_is_universe(context)) {
1984 isl_basic_set_free(context);
1985 return bset;
1988 context_ineq = context->n_ineq;
1989 combined = isl_basic_set_cow(isl_basic_set_copy(context));
1990 combined = isl_basic_set_extend_constraints(combined, 0, bset->n_ineq);
1991 tab = isl_tab_from_basic_set(combined, 0);
1992 for (i = 0; i < context_ineq; ++i)
1993 if (isl_tab_freeze_constraint(tab, i) < 0)
1994 goto error;
1995 if (isl_tab_extend_cons(tab, bset->n_ineq) < 0)
1996 goto error;
1997 for (i = 0; i < bset->n_ineq; ++i)
1998 if (isl_tab_add_ineq(tab, bset->ineq[i]) < 0)
1999 goto error;
2000 bset = isl_basic_set_add_constraints(combined, bset, 0);
2001 combined = NULL;
2002 if (!bset)
2003 goto error;
2004 if (isl_tab_detect_redundant(tab) < 0)
2005 goto error;
2006 total = isl_basic_set_total_dim(bset);
2007 for (i = context_ineq; i < bset->n_ineq; ++i) {
2008 int is_empty;
2009 if (tab->con[i].is_redundant)
2010 continue;
2011 tab->con[i].is_redundant = 1;
2012 combined = isl_basic_set_dup(bset);
2013 combined = isl_basic_set_update_from_tab(combined, tab);
2014 combined = isl_basic_set_extend_constraints(combined, 0, 1);
2015 k = isl_basic_set_alloc_inequality(combined);
2016 if (k < 0)
2017 goto error;
2018 isl_seq_neg(combined->ineq[k], bset->ineq[i], 1 + total);
2019 isl_int_sub_ui(combined->ineq[k][0], combined->ineq[k][0], 1);
2020 is_empty = isl_basic_set_is_empty(combined);
2021 if (is_empty < 0)
2022 goto error;
2023 isl_basic_set_free(combined);
2024 combined = NULL;
2025 if (!is_empty)
2026 tab->con[i].is_redundant = 0;
2028 for (i = 0; i < context_ineq; ++i)
2029 tab->con[i].is_redundant = 1;
2030 bset = isl_basic_set_update_from_tab(bset, tab);
2031 if (bset) {
2032 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
2033 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
2036 isl_tab_free(tab);
2037 done:
2038 bset = isl_basic_set_simplify(bset);
2039 bset = isl_basic_set_finalize(bset);
2040 isl_basic_set_free(context);
2041 return bset;
2042 error:
2043 isl_tab_free(tab);
2044 isl_basic_set_free(combined);
2045 isl_basic_set_free(context);
2046 isl_basic_set_free(bset);
2047 return NULL;
2050 /* Remove all information from bset that is redundant in the context
2051 * of context. In particular, equalities that are linear combinations
2052 * of those in context are removed. Then the inequalities that are
2053 * redundant in the context of the equalities and inequalities of
2054 * context are removed.
2056 * First of all, we drop those constraints from "context"
2057 * that are irrelevant for computing the gist of "bset".
2058 * Alternatively, we could factorize the intersection of "context" and "bset".
2060 * We first compute the integer affine hull of the intersection,
2061 * compute the gist inside this affine hull and then add back
2062 * those equalities that are not implied by the context.
2064 * If two constraints are mutually redundant, then uset_gist_full
2065 * will remove the second of those constraints. We therefore first
2066 * sort the constraints so that constraints not involving existentially
2067 * quantified variables are given precedence over those that do.
2068 * We have to perform this sorting before the variable compression,
2069 * because that may effect the order of the variables.
2071 static __isl_give isl_basic_set *uset_gist(__isl_take isl_basic_set *bset,
2072 __isl_take isl_basic_set *context)
2074 isl_mat *eq;
2075 isl_mat *T, *T2;
2076 isl_basic_set *aff;
2077 isl_basic_set *aff_context;
2078 unsigned total;
2080 if (!bset || !context)
2081 goto error;
2083 context = drop_irrelevant_constraints(context, bset);
2085 bset = isl_basic_set_intersect(bset, isl_basic_set_copy(context));
2086 if (isl_basic_set_plain_is_empty(bset)) {
2087 isl_basic_set_free(context);
2088 return bset;
2090 bset = isl_basic_set_sort_constraints(bset);
2091 aff = isl_basic_set_affine_hull(isl_basic_set_copy(bset));
2092 if (!aff)
2093 goto error;
2094 if (isl_basic_set_plain_is_empty(aff)) {
2095 isl_basic_set_free(aff);
2096 isl_basic_set_free(context);
2097 return bset;
2099 if (aff->n_eq == 0) {
2100 isl_basic_set_free(aff);
2101 return uset_gist_full(bset, context);
2103 total = isl_basic_set_total_dim(bset);
2104 eq = isl_mat_sub_alloc6(bset->ctx, aff->eq, 0, aff->n_eq, 0, 1 + total);
2105 eq = isl_mat_cow(eq);
2106 T = isl_mat_variable_compression(eq, &T2);
2107 if (T && T->n_col == 0) {
2108 isl_mat_free(T);
2109 isl_mat_free(T2);
2110 isl_basic_set_free(context);
2111 isl_basic_set_free(aff);
2112 return isl_basic_set_set_to_empty(bset);
2115 aff_context = isl_basic_set_affine_hull(isl_basic_set_copy(context));
2117 bset = isl_basic_set_preimage(bset, isl_mat_copy(T));
2118 context = isl_basic_set_preimage(context, T);
2120 bset = uset_gist_full(bset, context);
2121 bset = isl_basic_set_preimage(bset, T2);
2122 bset = isl_basic_set_intersect(bset, aff);
2123 bset = isl_basic_set_reduce_using_equalities(bset, aff_context);
2125 if (bset) {
2126 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
2127 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
2130 return bset;
2131 error:
2132 isl_basic_set_free(bset);
2133 isl_basic_set_free(context);
2134 return NULL;
2137 /* Normalize the divs in "bmap" in the context of the equalities in "context".
2138 * We simply add the equalities in context to bmap and then do a regular
2139 * div normalizations. Better results can be obtained by normalizing
2140 * only the divs in bmap than do not also appear in context.
2141 * We need to be careful to reduce the divs using the equalities
2142 * so that later calls to isl_basic_map_overlying_set wouldn't introduce
2143 * spurious constraints.
2145 static struct isl_basic_map *normalize_divs_in_context(
2146 struct isl_basic_map *bmap, struct isl_basic_map *context)
2148 int i;
2149 unsigned total_context;
2150 int div_eq;
2152 div_eq = n_pure_div_eq(bmap);
2153 if (div_eq == 0)
2154 return bmap;
2156 if (context->n_div > 0)
2157 bmap = isl_basic_map_align_divs(bmap, context);
2159 total_context = isl_basic_map_total_dim(context);
2160 bmap = isl_basic_map_extend_constraints(bmap, context->n_eq, 0);
2161 for (i = 0; i < context->n_eq; ++i) {
2162 int k;
2163 k = isl_basic_map_alloc_equality(bmap);
2164 if (k < 0)
2165 return isl_basic_map_free(bmap);
2166 isl_seq_cpy(bmap->eq[k], context->eq[i], 1 + total_context);
2167 isl_seq_clr(bmap->eq[k] + 1 + total_context,
2168 isl_basic_map_total_dim(bmap) - total_context);
2170 bmap = isl_basic_map_gauss(bmap, NULL);
2171 bmap = normalize_divs(bmap, NULL);
2172 bmap = isl_basic_map_gauss(bmap, NULL);
2173 return bmap;
2176 struct isl_basic_map *isl_basic_map_gist(struct isl_basic_map *bmap,
2177 struct isl_basic_map *context)
2179 struct isl_basic_set *bset;
2181 if (!bmap || !context)
2182 goto error;
2184 if (isl_basic_map_is_universe(bmap)) {
2185 isl_basic_map_free(context);
2186 return bmap;
2188 if (isl_basic_map_plain_is_empty(context)) {
2189 isl_basic_map_free(bmap);
2190 return context;
2192 if (isl_basic_map_plain_is_empty(bmap)) {
2193 isl_basic_map_free(context);
2194 return bmap;
2197 bmap = isl_basic_map_remove_redundancies(bmap);
2198 context = isl_basic_map_remove_redundancies(context);
2199 if (!context)
2200 goto error;
2202 if (context->n_eq)
2203 bmap = normalize_divs_in_context(bmap, context);
2205 context = isl_basic_map_align_divs(context, bmap);
2206 bmap = isl_basic_map_align_divs(bmap, context);
2208 bset = uset_gist(isl_basic_map_underlying_set(isl_basic_map_copy(bmap)),
2209 isl_basic_map_underlying_set(context));
2211 return isl_basic_map_overlying_set(bset, bmap);
2212 error:
2213 isl_basic_map_free(bmap);
2214 isl_basic_map_free(context);
2215 return NULL;
2219 * Assumes context has no implicit divs.
2221 __isl_give isl_map *isl_map_gist_basic_map(__isl_take isl_map *map,
2222 __isl_take isl_basic_map *context)
2224 int i;
2226 if (!map || !context)
2227 goto error;;
2229 if (isl_basic_map_plain_is_empty(context)) {
2230 isl_map_free(map);
2231 return isl_map_from_basic_map(context);
2234 context = isl_basic_map_remove_redundancies(context);
2235 map = isl_map_cow(map);
2236 if (!map || !context)
2237 goto error;;
2238 isl_assert(map->ctx, isl_space_is_equal(map->dim, context->dim), goto error);
2239 map = isl_map_compute_divs(map);
2240 if (!map)
2241 goto error;
2242 for (i = map->n - 1; i >= 0; --i) {
2243 map->p[i] = isl_basic_map_gist(map->p[i],
2244 isl_basic_map_copy(context));
2245 if (!map->p[i])
2246 goto error;
2247 if (isl_basic_map_plain_is_empty(map->p[i])) {
2248 isl_basic_map_free(map->p[i]);
2249 if (i != map->n - 1)
2250 map->p[i] = map->p[map->n - 1];
2251 map->n--;
2254 isl_basic_map_free(context);
2255 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2256 return map;
2257 error:
2258 isl_map_free(map);
2259 isl_basic_map_free(context);
2260 return NULL;
2263 /* Return a map that has the same intersection with "context" as "map"
2264 * and that is as "simple" as possible.
2266 * If "map" is already the universe, then we cannot make it any simpler.
2267 * Similarly, if "context" is the universe, then we cannot exploit it
2268 * to simplify "map"
2269 * If "map" and "context" are identical to each other, then we can
2270 * return the corresponding universe.
2272 * If none of these cases apply, we have to work a bit harder.
2274 static __isl_give isl_map *map_gist(__isl_take isl_map *map,
2275 __isl_take isl_map *context)
2277 int equal;
2278 int is_universe;
2280 is_universe = isl_map_plain_is_universe(map);
2281 if (is_universe >= 0 && !is_universe)
2282 is_universe = isl_map_plain_is_universe(context);
2283 if (is_universe < 0)
2284 goto error;
2285 if (is_universe) {
2286 isl_map_free(context);
2287 return map;
2290 equal = isl_map_plain_is_equal(map, context);
2291 if (equal < 0)
2292 goto error;
2293 if (equal) {
2294 isl_map *res = isl_map_universe(isl_map_get_space(map));
2295 isl_map_free(map);
2296 isl_map_free(context);
2297 return res;
2300 context = isl_map_compute_divs(context);
2301 return isl_map_gist_basic_map(map, isl_map_simple_hull(context));
2302 error:
2303 isl_map_free(map);
2304 isl_map_free(context);
2305 return NULL;
2308 __isl_give isl_map *isl_map_gist(__isl_take isl_map *map,
2309 __isl_take isl_map *context)
2311 return isl_map_align_params_map_map_and(map, context, &map_gist);
2314 struct isl_basic_set *isl_basic_set_gist(struct isl_basic_set *bset,
2315 struct isl_basic_set *context)
2317 return (struct isl_basic_set *)isl_basic_map_gist(
2318 (struct isl_basic_map *)bset, (struct isl_basic_map *)context);
2321 __isl_give isl_set *isl_set_gist_basic_set(__isl_take isl_set *set,
2322 __isl_take isl_basic_set *context)
2324 return (struct isl_set *)isl_map_gist_basic_map((struct isl_map *)set,
2325 (struct isl_basic_map *)context);
2328 __isl_give isl_set *isl_set_gist_params_basic_set(__isl_take isl_set *set,
2329 __isl_take isl_basic_set *context)
2331 isl_space *space = isl_set_get_space(set);
2332 isl_basic_set *dom_context = isl_basic_set_universe(space);
2333 dom_context = isl_basic_set_intersect_params(dom_context, context);
2334 return isl_set_gist_basic_set(set, dom_context);
2337 __isl_give isl_set *isl_set_gist(__isl_take isl_set *set,
2338 __isl_take isl_set *context)
2340 return (struct isl_set *)isl_map_gist((struct isl_map *)set,
2341 (struct isl_map *)context);
2344 __isl_give isl_map *isl_map_gist_domain(__isl_take isl_map *map,
2345 __isl_take isl_set *context)
2347 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2348 map_context = isl_map_intersect_domain(map_context, context);
2349 return isl_map_gist(map, map_context);
2352 __isl_give isl_map *isl_map_gist_range(__isl_take isl_map *map,
2353 __isl_take isl_set *context)
2355 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2356 map_context = isl_map_intersect_range(map_context, context);
2357 return isl_map_gist(map, map_context);
2360 __isl_give isl_map *isl_map_gist_params(__isl_take isl_map *map,
2361 __isl_take isl_set *context)
2363 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2364 map_context = isl_map_intersect_params(map_context, context);
2365 return isl_map_gist(map, map_context);
2368 __isl_give isl_set *isl_set_gist_params(__isl_take isl_set *set,
2369 __isl_take isl_set *context)
2371 return isl_map_gist_params(set, context);
2374 /* Quick check to see if two basic maps are disjoint.
2375 * In particular, we reduce the equalities and inequalities of
2376 * one basic map in the context of the equalities of the other
2377 * basic map and check if we get a contradiction.
2379 int isl_basic_map_plain_is_disjoint(__isl_keep isl_basic_map *bmap1,
2380 __isl_keep isl_basic_map *bmap2)
2382 struct isl_vec *v = NULL;
2383 int *elim = NULL;
2384 unsigned total;
2385 int i;
2387 if (!bmap1 || !bmap2)
2388 return -1;
2389 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
2390 return -1);
2391 if (bmap1->n_div || bmap2->n_div)
2392 return 0;
2393 if (!bmap1->n_eq && !bmap2->n_eq)
2394 return 0;
2396 total = isl_space_dim(bmap1->dim, isl_dim_all);
2397 if (total == 0)
2398 return 0;
2399 v = isl_vec_alloc(bmap1->ctx, 1 + total);
2400 if (!v)
2401 goto error;
2402 elim = isl_alloc_array(bmap1->ctx, int, total);
2403 if (!elim)
2404 goto error;
2405 compute_elimination_index(bmap1, elim);
2406 for (i = 0; i < bmap2->n_eq; ++i) {
2407 int reduced;
2408 reduced = reduced_using_equalities(v->block.data, bmap2->eq[i],
2409 bmap1, elim);
2410 if (reduced && !isl_int_is_zero(v->block.data[0]) &&
2411 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2412 goto disjoint;
2414 for (i = 0; i < bmap2->n_ineq; ++i) {
2415 int reduced;
2416 reduced = reduced_using_equalities(v->block.data,
2417 bmap2->ineq[i], bmap1, elim);
2418 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2419 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2420 goto disjoint;
2422 compute_elimination_index(bmap2, elim);
2423 for (i = 0; i < bmap1->n_ineq; ++i) {
2424 int reduced;
2425 reduced = reduced_using_equalities(v->block.data,
2426 bmap1->ineq[i], bmap2, elim);
2427 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2428 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2429 goto disjoint;
2431 isl_vec_free(v);
2432 free(elim);
2433 return 0;
2434 disjoint:
2435 isl_vec_free(v);
2436 free(elim);
2437 return 1;
2438 error:
2439 isl_vec_free(v);
2440 free(elim);
2441 return -1;
2444 int isl_basic_set_plain_is_disjoint(__isl_keep isl_basic_set *bset1,
2445 __isl_keep isl_basic_set *bset2)
2447 return isl_basic_map_plain_is_disjoint((struct isl_basic_map *)bset1,
2448 (struct isl_basic_map *)bset2);
2451 /* Are "map1" and "map2" obviously disjoint?
2453 * If they have different parameters, then we skip any further tests.
2454 * In particular, the outcome of the subsequent calls to
2455 * isl_space_tuple_match may be affected by the different parameters
2456 * in nested spaces.
2458 * If one of them is empty or if they live in different spaces (assuming
2459 * they have the same parameters), then they are clearly disjoint.
2461 * If they are obviously equal, but not obviously empty, then we will
2462 * not be able to detect if they are disjoint.
2464 * Otherwise we check if each basic map in "map1" is obviously disjoint
2465 * from each basic map in "map2".
2467 int isl_map_plain_is_disjoint(__isl_keep isl_map *map1,
2468 __isl_keep isl_map *map2)
2470 int i, j;
2471 int disjoint;
2472 int intersect;
2473 int match;
2475 if (!map1 || !map2)
2476 return -1;
2478 disjoint = isl_map_plain_is_empty(map1);
2479 if (disjoint < 0 || disjoint)
2480 return disjoint;
2482 disjoint = isl_map_plain_is_empty(map2);
2483 if (disjoint < 0 || disjoint)
2484 return disjoint;
2486 match = isl_space_match(map1->dim, isl_dim_param,
2487 map2->dim, isl_dim_param);
2488 if (match < 0 || !match)
2489 return match < 0 ? -1 : 0;
2491 match = isl_space_tuple_match(map1->dim, isl_dim_in,
2492 map2->dim, isl_dim_in);
2493 if (match < 0 || !match)
2494 return match < 0 ? -1 : 1;
2496 match = isl_space_tuple_match(map1->dim, isl_dim_out,
2497 map2->dim, isl_dim_out);
2498 if (match < 0 || !match)
2499 return match < 0 ? -1 : 1;
2501 intersect = isl_map_plain_is_equal(map1, map2);
2502 if (intersect < 0 || intersect)
2503 return intersect < 0 ? -1 : 0;
2505 for (i = 0; i < map1->n; ++i) {
2506 for (j = 0; j < map2->n; ++j) {
2507 int d = isl_basic_map_plain_is_disjoint(map1->p[i],
2508 map2->p[j]);
2509 if (d != 1)
2510 return d;
2513 return 1;
2516 /* Are "map1" and "map2" disjoint?
2518 * They are disjoint if they are "obviously disjoint" or if one of them
2519 * is empty. Otherwise, they are not disjoint if one of them is universal.
2520 * If none of these cases apply, we compute the intersection and see if
2521 * the result is empty.
2523 int isl_map_is_disjoint(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
2525 int disjoint;
2526 int intersect;
2527 isl_map *test;
2529 disjoint = isl_map_plain_is_disjoint(map1, map2);
2530 if (disjoint < 0 || disjoint)
2531 return disjoint;
2533 disjoint = isl_map_is_empty(map1);
2534 if (disjoint < 0 || disjoint)
2535 return disjoint;
2537 disjoint = isl_map_is_empty(map2);
2538 if (disjoint < 0 || disjoint)
2539 return disjoint;
2541 intersect = isl_map_plain_is_universe(map1);
2542 if (intersect < 0 || intersect)
2543 return intersect < 0 ? -1 : 0;
2545 intersect = isl_map_plain_is_universe(map2);
2546 if (intersect < 0 || intersect)
2547 return intersect < 0 ? -1 : 0;
2549 test = isl_map_intersect(isl_map_copy(map1), isl_map_copy(map2));
2550 disjoint = isl_map_is_empty(test);
2551 isl_map_free(test);
2553 return disjoint;
2556 /* Are "bmap1" and "bmap2" disjoint?
2558 * They are disjoint if they are "obviously disjoint" or if one of them
2559 * is empty. Otherwise, they are not disjoint if one of them is universal.
2560 * If none of these cases apply, we compute the intersection and see if
2561 * the result is empty.
2563 int isl_basic_map_is_disjoint(__isl_keep isl_basic_map *bmap1,
2564 __isl_keep isl_basic_map *bmap2)
2566 int disjoint;
2567 int intersect;
2568 isl_basic_map *test;
2570 disjoint = isl_basic_map_plain_is_disjoint(bmap1, bmap2);
2571 if (disjoint < 0 || disjoint)
2572 return disjoint;
2574 disjoint = isl_basic_map_is_empty(bmap1);
2575 if (disjoint < 0 || disjoint)
2576 return disjoint;
2578 disjoint = isl_basic_map_is_empty(bmap2);
2579 if (disjoint < 0 || disjoint)
2580 return disjoint;
2582 intersect = isl_basic_map_is_universe(bmap1);
2583 if (intersect < 0 || intersect)
2584 return intersect < 0 ? -1 : 0;
2586 intersect = isl_basic_map_is_universe(bmap2);
2587 if (intersect < 0 || intersect)
2588 return intersect < 0 ? -1 : 0;
2590 test = isl_basic_map_intersect(isl_basic_map_copy(bmap1),
2591 isl_basic_map_copy(bmap2));
2592 disjoint = isl_basic_map_is_empty(test);
2593 isl_basic_map_free(test);
2595 return disjoint;
2598 /* Are "bset1" and "bset2" disjoint?
2600 int isl_basic_set_is_disjoint(__isl_keep isl_basic_set *bset1,
2601 __isl_keep isl_basic_set *bset2)
2603 return isl_basic_map_is_disjoint(bset1, bset2);
2606 int isl_set_plain_is_disjoint(__isl_keep isl_set *set1,
2607 __isl_keep isl_set *set2)
2609 return isl_map_plain_is_disjoint((struct isl_map *)set1,
2610 (struct isl_map *)set2);
2613 /* Are "set1" and "set2" disjoint?
2615 int isl_set_is_disjoint(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
2617 return isl_map_is_disjoint(set1, set2);
2620 int isl_set_fast_is_disjoint(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
2622 return isl_set_plain_is_disjoint(set1, set2);
2625 /* Check if we can combine a given div with lower bound l and upper
2626 * bound u with some other div and if so return that other div.
2627 * Otherwise return -1.
2629 * We first check that
2630 * - the bounds are opposites of each other (except for the constant
2631 * term)
2632 * - the bounds do not reference any other div
2633 * - no div is defined in terms of this div
2635 * Let m be the size of the range allowed on the div by the bounds.
2636 * That is, the bounds are of the form
2638 * e <= a <= e + m - 1
2640 * with e some expression in the other variables.
2641 * We look for another div b such that no third div is defined in terms
2642 * of this second div b and such that in any constraint that contains
2643 * a (except for the given lower and upper bound), also contains b
2644 * with a coefficient that is m times that of b.
2645 * That is, all constraints (execpt for the lower and upper bound)
2646 * are of the form
2648 * e + f (a + m b) >= 0
2650 * If so, we return b so that "a + m b" can be replaced by
2651 * a single div "c = a + m b".
2653 static int div_find_coalesce(struct isl_basic_map *bmap, int *pairs,
2654 unsigned div, unsigned l, unsigned u)
2656 int i, j;
2657 unsigned dim;
2658 int coalesce = -1;
2660 if (bmap->n_div <= 1)
2661 return -1;
2662 dim = isl_space_dim(bmap->dim, isl_dim_all);
2663 if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim, div) != -1)
2664 return -1;
2665 if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim + div + 1,
2666 bmap->n_div - div - 1) != -1)
2667 return -1;
2668 if (!isl_seq_is_neg(bmap->ineq[l] + 1, bmap->ineq[u] + 1,
2669 dim + bmap->n_div))
2670 return -1;
2672 for (i = 0; i < bmap->n_div; ++i) {
2673 if (isl_int_is_zero(bmap->div[i][0]))
2674 continue;
2675 if (!isl_int_is_zero(bmap->div[i][1 + 1 + dim + div]))
2676 return -1;
2679 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2680 if (isl_int_is_neg(bmap->ineq[l][0])) {
2681 isl_int_sub(bmap->ineq[l][0],
2682 bmap->ineq[l][0], bmap->ineq[u][0]);
2683 bmap = isl_basic_map_copy(bmap);
2684 bmap = isl_basic_map_set_to_empty(bmap);
2685 isl_basic_map_free(bmap);
2686 return -1;
2688 isl_int_add_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2689 for (i = 0; i < bmap->n_div; ++i) {
2690 if (i == div)
2691 continue;
2692 if (!pairs[i])
2693 continue;
2694 for (j = 0; j < bmap->n_div; ++j) {
2695 if (isl_int_is_zero(bmap->div[j][0]))
2696 continue;
2697 if (!isl_int_is_zero(bmap->div[j][1 + 1 + dim + i]))
2698 break;
2700 if (j < bmap->n_div)
2701 continue;
2702 for (j = 0; j < bmap->n_ineq; ++j) {
2703 int valid;
2704 if (j == l || j == u)
2705 continue;
2706 if (isl_int_is_zero(bmap->ineq[j][1 + dim + div]))
2707 continue;
2708 if (isl_int_is_zero(bmap->ineq[j][1 + dim + i]))
2709 break;
2710 isl_int_mul(bmap->ineq[j][1 + dim + div],
2711 bmap->ineq[j][1 + dim + div],
2712 bmap->ineq[l][0]);
2713 valid = isl_int_eq(bmap->ineq[j][1 + dim + div],
2714 bmap->ineq[j][1 + dim + i]);
2715 isl_int_divexact(bmap->ineq[j][1 + dim + div],
2716 bmap->ineq[j][1 + dim + div],
2717 bmap->ineq[l][0]);
2718 if (!valid)
2719 break;
2721 if (j < bmap->n_ineq)
2722 continue;
2723 coalesce = i;
2724 break;
2726 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2727 isl_int_sub(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2728 return coalesce;
2731 /* Given a lower and an upper bound on div i, construct an inequality
2732 * that when nonnegative ensures that this pair of bounds always allows
2733 * for an integer value of the given div.
2734 * The lower bound is inequality l, while the upper bound is inequality u.
2735 * The constructed inequality is stored in ineq.
2736 * g, fl, fu are temporary scalars.
2738 * Let the upper bound be
2740 * -n_u a + e_u >= 0
2742 * and the lower bound
2744 * n_l a + e_l >= 0
2746 * Let n_u = f_u g and n_l = f_l g, with g = gcd(n_u, n_l).
2747 * We have
2749 * - f_u e_l <= f_u f_l g a <= f_l e_u
2751 * Since all variables are integer valued, this is equivalent to
2753 * - f_u e_l - (f_u - 1) <= f_u f_l g a <= f_l e_u + (f_l - 1)
2755 * If this interval is at least f_u f_l g, then it contains at least
2756 * one integer value for a.
2757 * That is, the test constraint is
2759 * f_l e_u + f_u e_l + f_l - 1 + f_u - 1 + 1 >= f_u f_l g
2761 static void construct_test_ineq(struct isl_basic_map *bmap, int i,
2762 int l, int u, isl_int *ineq, isl_int g, isl_int fl, isl_int fu)
2764 unsigned dim;
2765 dim = isl_space_dim(bmap->dim, isl_dim_all);
2767 isl_int_gcd(g, bmap->ineq[l][1 + dim + i], bmap->ineq[u][1 + dim + i]);
2768 isl_int_divexact(fl, bmap->ineq[l][1 + dim + i], g);
2769 isl_int_divexact(fu, bmap->ineq[u][1 + dim + i], g);
2770 isl_int_neg(fu, fu);
2771 isl_seq_combine(ineq, fl, bmap->ineq[u], fu, bmap->ineq[l],
2772 1 + dim + bmap->n_div);
2773 isl_int_add(ineq[0], ineq[0], fl);
2774 isl_int_add(ineq[0], ineq[0], fu);
2775 isl_int_sub_ui(ineq[0], ineq[0], 1);
2776 isl_int_mul(g, g, fl);
2777 isl_int_mul(g, g, fu);
2778 isl_int_sub(ineq[0], ineq[0], g);
2781 /* Remove more kinds of divs that are not strictly needed.
2782 * In particular, if all pairs of lower and upper bounds on a div
2783 * are such that they allow at least one integer value of the div,
2784 * the we can eliminate the div using Fourier-Motzkin without
2785 * introducing any spurious solutions.
2787 static struct isl_basic_map *drop_more_redundant_divs(
2788 struct isl_basic_map *bmap, int *pairs, int n)
2790 struct isl_tab *tab = NULL;
2791 struct isl_vec *vec = NULL;
2792 unsigned dim;
2793 int remove = -1;
2794 isl_int g, fl, fu;
2796 isl_int_init(g);
2797 isl_int_init(fl);
2798 isl_int_init(fu);
2800 if (!bmap)
2801 goto error;
2803 dim = isl_space_dim(bmap->dim, isl_dim_all);
2804 vec = isl_vec_alloc(bmap->ctx, 1 + dim + bmap->n_div);
2805 if (!vec)
2806 goto error;
2808 tab = isl_tab_from_basic_map(bmap, 0);
2810 while (n > 0) {
2811 int i, l, u;
2812 int best = -1;
2813 enum isl_lp_result res;
2815 for (i = 0; i < bmap->n_div; ++i) {
2816 if (!pairs[i])
2817 continue;
2818 if (best >= 0 && pairs[best] <= pairs[i])
2819 continue;
2820 best = i;
2823 i = best;
2824 for (l = 0; l < bmap->n_ineq; ++l) {
2825 if (!isl_int_is_pos(bmap->ineq[l][1 + dim + i]))
2826 continue;
2827 for (u = 0; u < bmap->n_ineq; ++u) {
2828 if (!isl_int_is_neg(bmap->ineq[u][1 + dim + i]))
2829 continue;
2830 construct_test_ineq(bmap, i, l, u,
2831 vec->el, g, fl, fu);
2832 res = isl_tab_min(tab, vec->el,
2833 bmap->ctx->one, &g, NULL, 0);
2834 if (res == isl_lp_error)
2835 goto error;
2836 if (res == isl_lp_empty) {
2837 bmap = isl_basic_map_set_to_empty(bmap);
2838 break;
2840 if (res != isl_lp_ok || isl_int_is_neg(g))
2841 break;
2843 if (u < bmap->n_ineq)
2844 break;
2846 if (l == bmap->n_ineq) {
2847 remove = i;
2848 break;
2850 pairs[i] = 0;
2851 --n;
2854 isl_tab_free(tab);
2855 isl_vec_free(vec);
2857 isl_int_clear(g);
2858 isl_int_clear(fl);
2859 isl_int_clear(fu);
2861 free(pairs);
2863 if (remove < 0)
2864 return bmap;
2866 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, remove, 1);
2867 return isl_basic_map_drop_redundant_divs(bmap);
2868 error:
2869 free(pairs);
2870 isl_basic_map_free(bmap);
2871 isl_tab_free(tab);
2872 isl_vec_free(vec);
2873 isl_int_clear(g);
2874 isl_int_clear(fl);
2875 isl_int_clear(fu);
2876 return NULL;
2879 /* Given a pair of divs div1 and div2 such that, expect for the lower bound l
2880 * and the upper bound u, div1 always occurs together with div2 in the form
2881 * (div1 + m div2), where m is the constant range on the variable div1
2882 * allowed by l and u, replace the pair div1 and div2 by a single
2883 * div that is equal to div1 + m div2.
2885 * The new div will appear in the location that contains div2.
2886 * We need to modify all constraints that contain
2887 * div2 = (div - div1) / m
2888 * (If a constraint does not contain div2, it will also not contain div1.)
2889 * If the constraint also contains div1, then we know they appear
2890 * as f (div1 + m div2) and we can simply replace (div1 + m div2) by div,
2891 * i.e., the coefficient of div is f.
2893 * Otherwise, we first need to introduce div1 into the constraint.
2894 * Let the l be
2896 * div1 + f >=0
2898 * and u
2900 * -div1 + f' >= 0
2902 * A lower bound on div2
2904 * n div2 + t >= 0
2906 * can be replaced by
2908 * (n * (m div 2 + div1) + m t + n f)/g >= 0
2910 * with g = gcd(m,n).
2911 * An upper bound
2913 * -n div2 + t >= 0
2915 * can be replaced by
2917 * (-n * (m div2 + div1) + m t + n f')/g >= 0
2919 * These constraint are those that we would obtain from eliminating
2920 * div1 using Fourier-Motzkin.
2922 * After all constraints have been modified, we drop the lower and upper
2923 * bound and then drop div1.
2925 static struct isl_basic_map *coalesce_divs(struct isl_basic_map *bmap,
2926 unsigned div1, unsigned div2, unsigned l, unsigned u)
2928 isl_int a;
2929 isl_int b;
2930 isl_int m;
2931 unsigned dim, total;
2932 int i;
2934 dim = isl_space_dim(bmap->dim, isl_dim_all);
2935 total = 1 + dim + bmap->n_div;
2937 isl_int_init(a);
2938 isl_int_init(b);
2939 isl_int_init(m);
2940 isl_int_add(m, bmap->ineq[l][0], bmap->ineq[u][0]);
2941 isl_int_add_ui(m, m, 1);
2943 for (i = 0; i < bmap->n_ineq; ++i) {
2944 if (i == l || i == u)
2945 continue;
2946 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div2]))
2947 continue;
2948 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div1])) {
2949 isl_int_gcd(b, m, bmap->ineq[i][1 + dim + div2]);
2950 isl_int_divexact(a, m, b);
2951 isl_int_divexact(b, bmap->ineq[i][1 + dim + div2], b);
2952 if (isl_int_is_pos(b)) {
2953 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2954 b, bmap->ineq[l], total);
2955 } else {
2956 isl_int_neg(b, b);
2957 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2958 b, bmap->ineq[u], total);
2961 isl_int_set(bmap->ineq[i][1 + dim + div2],
2962 bmap->ineq[i][1 + dim + div1]);
2963 isl_int_set_si(bmap->ineq[i][1 + dim + div1], 0);
2966 isl_int_clear(a);
2967 isl_int_clear(b);
2968 isl_int_clear(m);
2969 if (l > u) {
2970 isl_basic_map_drop_inequality(bmap, l);
2971 isl_basic_map_drop_inequality(bmap, u);
2972 } else {
2973 isl_basic_map_drop_inequality(bmap, u);
2974 isl_basic_map_drop_inequality(bmap, l);
2976 bmap = isl_basic_map_drop_div(bmap, div1);
2977 return bmap;
2980 /* First check if we can coalesce any pair of divs and
2981 * then continue with dropping more redundant divs.
2983 * We loop over all pairs of lower and upper bounds on a div
2984 * with coefficient 1 and -1, respectively, check if there
2985 * is any other div "c" with which we can coalesce the div
2986 * and if so, perform the coalescing.
2988 static struct isl_basic_map *coalesce_or_drop_more_redundant_divs(
2989 struct isl_basic_map *bmap, int *pairs, int n)
2991 int i, l, u;
2992 unsigned dim;
2994 dim = isl_space_dim(bmap->dim, isl_dim_all);
2996 for (i = 0; i < bmap->n_div; ++i) {
2997 if (!pairs[i])
2998 continue;
2999 for (l = 0; l < bmap->n_ineq; ++l) {
3000 if (!isl_int_is_one(bmap->ineq[l][1 + dim + i]))
3001 continue;
3002 for (u = 0; u < bmap->n_ineq; ++u) {
3003 int c;
3005 if (!isl_int_is_negone(bmap->ineq[u][1+dim+i]))
3006 continue;
3007 c = div_find_coalesce(bmap, pairs, i, l, u);
3008 if (c < 0)
3009 continue;
3010 free(pairs);
3011 bmap = coalesce_divs(bmap, i, c, l, u);
3012 return isl_basic_map_drop_redundant_divs(bmap);
3017 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
3018 return bmap;
3020 return drop_more_redundant_divs(bmap, pairs, n);
3023 /* Remove divs that are not strictly needed.
3024 * In particular, if a div only occurs positively (or negatively)
3025 * in constraints, then it can simply be dropped.
3026 * Also, if a div occurs in only two constraints and if moreover
3027 * those two constraints are opposite to each other, except for the constant
3028 * term and if the sum of the constant terms is such that for any value
3029 * of the other values, there is always at least one integer value of the
3030 * div, i.e., if one plus this sum is greater than or equal to
3031 * the (absolute value) of the coefficent of the div in the constraints,
3032 * then we can also simply drop the div.
3034 * We skip divs that appear in equalities or in the definition of other divs.
3035 * Divs that appear in the definition of other divs usually occur in at least
3036 * 4 constraints, but the constraints may have been simplified.
3038 * If any divs are left after these simple checks then we move on
3039 * to more complicated cases in drop_more_redundant_divs.
3041 struct isl_basic_map *isl_basic_map_drop_redundant_divs(
3042 struct isl_basic_map *bmap)
3044 int i, j;
3045 unsigned off;
3046 int *pairs = NULL;
3047 int n = 0;
3049 if (!bmap)
3050 goto error;
3051 if (bmap->n_div == 0)
3052 return bmap;
3054 off = isl_space_dim(bmap->dim, isl_dim_all);
3055 pairs = isl_calloc_array(bmap->ctx, int, bmap->n_div);
3056 if (!pairs)
3057 goto error;
3059 for (i = 0; i < bmap->n_div; ++i) {
3060 int pos, neg;
3061 int last_pos, last_neg;
3062 int redundant;
3063 int defined;
3065 defined = !isl_int_is_zero(bmap->div[i][0]);
3066 for (j = i; j < bmap->n_div; ++j)
3067 if (!isl_int_is_zero(bmap->div[j][1 + 1 + off + i]))
3068 break;
3069 if (j < bmap->n_div)
3070 continue;
3071 for (j = 0; j < bmap->n_eq; ++j)
3072 if (!isl_int_is_zero(bmap->eq[j][1 + off + i]))
3073 break;
3074 if (j < bmap->n_eq)
3075 continue;
3076 ++n;
3077 pos = neg = 0;
3078 for (j = 0; j < bmap->n_ineq; ++j) {
3079 if (isl_int_is_pos(bmap->ineq[j][1 + off + i])) {
3080 last_pos = j;
3081 ++pos;
3083 if (isl_int_is_neg(bmap->ineq[j][1 + off + i])) {
3084 last_neg = j;
3085 ++neg;
3088 pairs[i] = pos * neg;
3089 if (pairs[i] == 0) {
3090 for (j = bmap->n_ineq - 1; j >= 0; --j)
3091 if (!isl_int_is_zero(bmap->ineq[j][1+off+i]))
3092 isl_basic_map_drop_inequality(bmap, j);
3093 bmap = isl_basic_map_drop_div(bmap, i);
3094 free(pairs);
3095 return isl_basic_map_drop_redundant_divs(bmap);
3097 if (pairs[i] != 1)
3098 continue;
3099 if (!isl_seq_is_neg(bmap->ineq[last_pos] + 1,
3100 bmap->ineq[last_neg] + 1,
3101 off + bmap->n_div))
3102 continue;
3104 isl_int_add(bmap->ineq[last_pos][0],
3105 bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
3106 isl_int_add_ui(bmap->ineq[last_pos][0],
3107 bmap->ineq[last_pos][0], 1);
3108 redundant = isl_int_ge(bmap->ineq[last_pos][0],
3109 bmap->ineq[last_pos][1+off+i]);
3110 isl_int_sub_ui(bmap->ineq[last_pos][0],
3111 bmap->ineq[last_pos][0], 1);
3112 isl_int_sub(bmap->ineq[last_pos][0],
3113 bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
3114 if (!redundant) {
3115 if (defined ||
3116 !ok_to_set_div_from_bound(bmap, i, last_pos)) {
3117 pairs[i] = 0;
3118 --n;
3119 continue;
3121 bmap = set_div_from_lower_bound(bmap, i, last_pos);
3122 bmap = isl_basic_map_simplify(bmap);
3123 free(pairs);
3124 return isl_basic_map_drop_redundant_divs(bmap);
3126 if (last_pos > last_neg) {
3127 isl_basic_map_drop_inequality(bmap, last_pos);
3128 isl_basic_map_drop_inequality(bmap, last_neg);
3129 } else {
3130 isl_basic_map_drop_inequality(bmap, last_neg);
3131 isl_basic_map_drop_inequality(bmap, last_pos);
3133 bmap = isl_basic_map_drop_div(bmap, i);
3134 free(pairs);
3135 return isl_basic_map_drop_redundant_divs(bmap);
3138 if (n > 0)
3139 return coalesce_or_drop_more_redundant_divs(bmap, pairs, n);
3141 free(pairs);
3142 return bmap;
3143 error:
3144 free(pairs);
3145 isl_basic_map_free(bmap);
3146 return NULL;
3149 struct isl_basic_set *isl_basic_set_drop_redundant_divs(
3150 struct isl_basic_set *bset)
3152 return (struct isl_basic_set *)
3153 isl_basic_map_drop_redundant_divs((struct isl_basic_map *)bset);
3156 struct isl_map *isl_map_drop_redundant_divs(struct isl_map *map)
3158 int i;
3160 if (!map)
3161 return NULL;
3162 for (i = 0; i < map->n; ++i) {
3163 map->p[i] = isl_basic_map_drop_redundant_divs(map->p[i]);
3164 if (!map->p[i])
3165 goto error;
3167 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3168 return map;
3169 error:
3170 isl_map_free(map);
3171 return NULL;
3174 struct isl_set *isl_set_drop_redundant_divs(struct isl_set *set)
3176 return (struct isl_set *)
3177 isl_map_drop_redundant_divs((struct isl_map *)set);