isl_basic_set_sort_constraints: take into account all coefficients
[isl.git] / isl_map_simplify.c
blobc83888a0f8b0d1f8cdf19cdbf2aa91cf53c23868
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>
22 static void swap_equality(struct isl_basic_map *bmap, int a, int b)
24 isl_int *t = bmap->eq[a];
25 bmap->eq[a] = bmap->eq[b];
26 bmap->eq[b] = t;
29 static void swap_inequality(struct isl_basic_map *bmap, int a, int b)
31 if (a != b) {
32 isl_int *t = bmap->ineq[a];
33 bmap->ineq[a] = bmap->ineq[b];
34 bmap->ineq[b] = t;
38 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
40 isl_seq_cpy(c, c + n, rem);
41 isl_seq_clr(c + rem, n);
44 /* Drop n dimensions starting at first.
46 * In principle, this frees up some extra variables as the number
47 * of columns remains constant, but we would have to extend
48 * the div array too as the number of rows in this array is assumed
49 * to be equal to extra.
51 struct isl_basic_set *isl_basic_set_drop_dims(
52 struct isl_basic_set *bset, unsigned first, unsigned n)
54 int i;
56 if (!bset)
57 goto error;
59 isl_assert(bset->ctx, first + n <= bset->dim->n_out, goto error);
61 if (n == 0 && !isl_space_get_tuple_name(bset->dim, isl_dim_set))
62 return bset;
64 bset = isl_basic_set_cow(bset);
65 if (!bset)
66 return NULL;
68 for (i = 0; i < bset->n_eq; ++i)
69 constraint_drop_vars(bset->eq[i]+1+bset->dim->nparam+first, n,
70 (bset->dim->n_out-first-n)+bset->extra);
72 for (i = 0; i < bset->n_ineq; ++i)
73 constraint_drop_vars(bset->ineq[i]+1+bset->dim->nparam+first, n,
74 (bset->dim->n_out-first-n)+bset->extra);
76 for (i = 0; i < bset->n_div; ++i)
77 constraint_drop_vars(bset->div[i]+1+1+bset->dim->nparam+first, n,
78 (bset->dim->n_out-first-n)+bset->extra);
80 bset->dim = isl_space_drop_outputs(bset->dim, first, n);
81 if (!bset->dim)
82 goto error;
84 ISL_F_CLR(bset, ISL_BASIC_SET_NORMALIZED);
85 bset = isl_basic_set_simplify(bset);
86 return isl_basic_set_finalize(bset);
87 error:
88 isl_basic_set_free(bset);
89 return NULL;
92 struct isl_set *isl_set_drop_dims(
93 struct isl_set *set, unsigned first, unsigned n)
95 int i;
97 if (!set)
98 goto error;
100 isl_assert(set->ctx, first + n <= set->dim->n_out, goto error);
102 if (n == 0 && !isl_space_get_tuple_name(set->dim, isl_dim_set))
103 return set;
104 set = isl_set_cow(set);
105 if (!set)
106 goto error;
107 set->dim = isl_space_drop_outputs(set->dim, first, n);
108 if (!set->dim)
109 goto error;
111 for (i = 0; i < set->n; ++i) {
112 set->p[i] = isl_basic_set_drop_dims(set->p[i], first, n);
113 if (!set->p[i])
114 goto error;
117 ISL_F_CLR(set, ISL_SET_NORMALIZED);
118 return set;
119 error:
120 isl_set_free(set);
121 return NULL;
124 /* Move "n" divs starting at "first" to the end of the list of divs.
126 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
127 unsigned first, unsigned n)
129 isl_int **div;
130 int i;
132 if (first + n == bmap->n_div)
133 return bmap;
135 div = isl_alloc_array(bmap->ctx, isl_int *, n);
136 if (!div)
137 goto error;
138 for (i = 0; i < n; ++i)
139 div[i] = bmap->div[first + i];
140 for (i = 0; i < bmap->n_div - first - n; ++i)
141 bmap->div[first + i] = bmap->div[first + n + i];
142 for (i = 0; i < n; ++i)
143 bmap->div[bmap->n_div - n + i] = div[i];
144 free(div);
145 return bmap;
146 error:
147 isl_basic_map_free(bmap);
148 return NULL;
151 /* Drop "n" dimensions of type "type" starting at "first".
153 * In principle, this frees up some extra variables as the number
154 * of columns remains constant, but we would have to extend
155 * the div array too as the number of rows in this array is assumed
156 * to be equal to extra.
158 struct isl_basic_map *isl_basic_map_drop(struct isl_basic_map *bmap,
159 enum isl_dim_type type, unsigned first, unsigned n)
161 int i;
162 unsigned dim;
163 unsigned offset;
164 unsigned left;
166 if (!bmap)
167 goto error;
169 dim = isl_basic_map_dim(bmap, type);
170 isl_assert(bmap->ctx, first + n <= dim, goto error);
172 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
173 return bmap;
175 bmap = isl_basic_map_cow(bmap);
176 if (!bmap)
177 return NULL;
179 offset = isl_basic_map_offset(bmap, type) + first;
180 left = isl_basic_map_total_dim(bmap) - (offset - 1) - n;
181 for (i = 0; i < bmap->n_eq; ++i)
182 constraint_drop_vars(bmap->eq[i]+offset, n, left);
184 for (i = 0; i < bmap->n_ineq; ++i)
185 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
187 for (i = 0; i < bmap->n_div; ++i)
188 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
190 if (type == isl_dim_div) {
191 bmap = move_divs_last(bmap, first, n);
192 if (!bmap)
193 goto error;
194 isl_basic_map_free_div(bmap, n);
195 } else
196 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
197 if (!bmap->dim)
198 goto error;
200 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
201 bmap = isl_basic_map_simplify(bmap);
202 return isl_basic_map_finalize(bmap);
203 error:
204 isl_basic_map_free(bmap);
205 return NULL;
208 __isl_give isl_basic_set *isl_basic_set_drop(__isl_take isl_basic_set *bset,
209 enum isl_dim_type type, unsigned first, unsigned n)
211 return (isl_basic_set *)isl_basic_map_drop((isl_basic_map *)bset,
212 type, first, n);
215 struct isl_basic_map *isl_basic_map_drop_inputs(
216 struct isl_basic_map *bmap, unsigned first, unsigned n)
218 return isl_basic_map_drop(bmap, isl_dim_in, first, n);
221 struct isl_map *isl_map_drop(struct isl_map *map,
222 enum isl_dim_type type, unsigned first, unsigned n)
224 int i;
226 if (!map)
227 goto error;
229 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
231 if (n == 0 && !isl_space_get_tuple_name(map->dim, type))
232 return map;
233 map = isl_map_cow(map);
234 if (!map)
235 goto error;
236 map->dim = isl_space_drop_dims(map->dim, type, first, n);
237 if (!map->dim)
238 goto error;
240 for (i = 0; i < map->n; ++i) {
241 map->p[i] = isl_basic_map_drop(map->p[i], type, first, n);
242 if (!map->p[i])
243 goto error;
245 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
247 return map;
248 error:
249 isl_map_free(map);
250 return NULL;
253 struct isl_set *isl_set_drop(struct isl_set *set,
254 enum isl_dim_type type, unsigned first, unsigned n)
256 return (isl_set *)isl_map_drop((isl_map *)set, type, first, n);
259 struct isl_map *isl_map_drop_inputs(
260 struct isl_map *map, unsigned first, unsigned n)
262 return isl_map_drop(map, isl_dim_in, first, n);
266 * We don't cow, as the div is assumed to be redundant.
268 static struct isl_basic_map *isl_basic_map_drop_div(
269 struct isl_basic_map *bmap, unsigned div)
271 int i;
272 unsigned pos;
274 if (!bmap)
275 goto error;
277 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
279 isl_assert(bmap->ctx, div < bmap->n_div, goto error);
281 for (i = 0; i < bmap->n_eq; ++i)
282 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
284 for (i = 0; i < bmap->n_ineq; ++i) {
285 if (!isl_int_is_zero(bmap->ineq[i][pos])) {
286 isl_basic_map_drop_inequality(bmap, i);
287 --i;
288 continue;
290 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
293 for (i = 0; i < bmap->n_div; ++i)
294 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
296 if (div != bmap->n_div - 1) {
297 int j;
298 isl_int *t = bmap->div[div];
300 for (j = div; j < bmap->n_div - 1; ++j)
301 bmap->div[j] = bmap->div[j+1];
303 bmap->div[bmap->n_div - 1] = t;
305 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
306 isl_basic_map_free_div(bmap, 1);
308 return bmap;
309 error:
310 isl_basic_map_free(bmap);
311 return NULL;
314 struct isl_basic_map *isl_basic_map_normalize_constraints(
315 struct isl_basic_map *bmap)
317 int i;
318 isl_int gcd;
319 unsigned total = isl_basic_map_total_dim(bmap);
321 if (!bmap)
322 return NULL;
324 isl_int_init(gcd);
325 for (i = bmap->n_eq - 1; i >= 0; --i) {
326 isl_seq_gcd(bmap->eq[i]+1, total, &gcd);
327 if (isl_int_is_zero(gcd)) {
328 if (!isl_int_is_zero(bmap->eq[i][0])) {
329 bmap = isl_basic_map_set_to_empty(bmap);
330 break;
332 isl_basic_map_drop_equality(bmap, i);
333 continue;
335 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
336 isl_int_gcd(gcd, gcd, bmap->eq[i][0]);
337 if (isl_int_is_one(gcd))
338 continue;
339 if (!isl_int_is_divisible_by(bmap->eq[i][0], gcd)) {
340 bmap = isl_basic_map_set_to_empty(bmap);
341 break;
343 isl_seq_scale_down(bmap->eq[i], bmap->eq[i], gcd, 1+total);
346 for (i = bmap->n_ineq - 1; i >= 0; --i) {
347 isl_seq_gcd(bmap->ineq[i]+1, total, &gcd);
348 if (isl_int_is_zero(gcd)) {
349 if (isl_int_is_neg(bmap->ineq[i][0])) {
350 bmap = isl_basic_map_set_to_empty(bmap);
351 break;
353 isl_basic_map_drop_inequality(bmap, i);
354 continue;
356 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
357 isl_int_gcd(gcd, gcd, bmap->ineq[i][0]);
358 if (isl_int_is_one(gcd))
359 continue;
360 isl_int_fdiv_q(bmap->ineq[i][0], bmap->ineq[i][0], gcd);
361 isl_seq_scale_down(bmap->ineq[i]+1, bmap->ineq[i]+1, gcd, total);
363 isl_int_clear(gcd);
365 return bmap;
368 struct isl_basic_set *isl_basic_set_normalize_constraints(
369 struct isl_basic_set *bset)
371 return (struct isl_basic_set *)isl_basic_map_normalize_constraints(
372 (struct isl_basic_map *)bset);
375 /* Remove any common factor in numerator and denominator of the div expression,
376 * not taking into account the constant term.
377 * That is, if the div is of the form
379 * floor((a + m f(x))/(m d))
381 * then replace it by
383 * floor((floor(a/m) + f(x))/d)
385 * The difference {a/m}/d in the argument satisfies 0 <= {a/m}/d < 1/d
386 * and can therefore not influence the result of the floor.
388 static void normalize_div_expression(__isl_keep isl_basic_map *bmap, int div)
390 unsigned total = isl_basic_map_total_dim(bmap);
391 isl_ctx *ctx = bmap->ctx;
393 if (isl_int_is_zero(bmap->div[div][0]))
394 return;
395 isl_seq_gcd(bmap->div[div] + 2, total, &ctx->normalize_gcd);
396 isl_int_gcd(ctx->normalize_gcd, ctx->normalize_gcd, bmap->div[div][0]);
397 if (isl_int_is_one(ctx->normalize_gcd))
398 return;
399 isl_int_fdiv_q(bmap->div[div][1], bmap->div[div][1],
400 ctx->normalize_gcd);
401 isl_int_divexact(bmap->div[div][0], bmap->div[div][0],
402 ctx->normalize_gcd);
403 isl_seq_scale_down(bmap->div[div] + 2, bmap->div[div] + 2,
404 ctx->normalize_gcd, total);
407 /* Remove any common factor in numerator and denominator of a div expression,
408 * not taking into account the constant term.
409 * That is, look for any div of the form
411 * floor((a + m f(x))/(m d))
413 * and replace it by
415 * floor((floor(a/m) + f(x))/d)
417 * The difference {a/m}/d in the argument satisfies 0 <= {a/m}/d < 1/d
418 * and can therefore not influence the result of the floor.
420 static __isl_give isl_basic_map *normalize_div_expressions(
421 __isl_take isl_basic_map *bmap)
423 int i;
425 if (!bmap)
426 return NULL;
427 if (bmap->n_div == 0)
428 return bmap;
430 for (i = 0; i < bmap->n_div; ++i)
431 normalize_div_expression(bmap, i);
433 return bmap;
436 /* Assumes divs have been ordered if keep_divs is set.
438 static void eliminate_var_using_equality(struct isl_basic_map *bmap,
439 unsigned pos, isl_int *eq, int keep_divs, int *progress)
441 unsigned total;
442 unsigned space_total;
443 int k;
444 int last_div;
446 total = isl_basic_map_total_dim(bmap);
447 space_total = isl_space_dim(bmap->dim, isl_dim_all);
448 last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
449 for (k = 0; k < bmap->n_eq; ++k) {
450 if (bmap->eq[k] == eq)
451 continue;
452 if (isl_int_is_zero(bmap->eq[k][1+pos]))
453 continue;
454 if (progress)
455 *progress = 1;
456 isl_seq_elim(bmap->eq[k], eq, 1+pos, 1+total, NULL);
457 isl_seq_normalize(bmap->ctx, bmap->eq[k], 1 + total);
460 for (k = 0; k < bmap->n_ineq; ++k) {
461 if (isl_int_is_zero(bmap->ineq[k][1+pos]))
462 continue;
463 if (progress)
464 *progress = 1;
465 isl_seq_elim(bmap->ineq[k], eq, 1+pos, 1+total, NULL);
466 isl_seq_normalize(bmap->ctx, bmap->ineq[k], 1 + total);
467 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
470 for (k = 0; k < bmap->n_div; ++k) {
471 if (isl_int_is_zero(bmap->div[k][0]))
472 continue;
473 if (isl_int_is_zero(bmap->div[k][1+1+pos]))
474 continue;
475 if (progress)
476 *progress = 1;
477 /* We need to be careful about circular definitions,
478 * so for now we just remove the definition of div k
479 * if the equality contains any divs.
480 * If keep_divs is set, then the divs have been ordered
481 * and we can keep the definition as long as the result
482 * is still ordered.
484 if (last_div == -1 || (keep_divs && last_div < k)) {
485 isl_seq_elim(bmap->div[k]+1, eq,
486 1+pos, 1+total, &bmap->div[k][0]);
487 normalize_div_expression(bmap, k);
488 } else
489 isl_seq_clr(bmap->div[k], 1 + total);
490 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
494 /* Assumes divs have been ordered if keep_divs is set.
496 static void eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
497 unsigned div, int keep_divs)
499 unsigned pos = isl_space_dim(bmap->dim, isl_dim_all) + div;
501 eliminate_var_using_equality(bmap, pos, eq, keep_divs, NULL);
503 isl_basic_map_drop_div(bmap, div);
506 /* Check if elimination of div "div" using equality "eq" would not
507 * result in a div depending on a later div.
509 static int ok_to_eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
510 unsigned div)
512 int k;
513 int last_div;
514 unsigned space_total = isl_space_dim(bmap->dim, isl_dim_all);
515 unsigned pos = space_total + div;
517 last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
518 if (last_div < 0 || last_div <= div)
519 return 1;
521 for (k = 0; k <= last_div; ++k) {
522 if (isl_int_is_zero(bmap->div[k][0]))
523 return 1;
524 if (!isl_int_is_zero(bmap->div[k][1 + 1 + pos]))
525 return 0;
528 return 1;
531 /* Elimininate divs based on equalities
533 static struct isl_basic_map *eliminate_divs_eq(
534 struct isl_basic_map *bmap, int *progress)
536 int d;
537 int i;
538 int modified = 0;
539 unsigned off;
541 bmap = isl_basic_map_order_divs(bmap);
543 if (!bmap)
544 return NULL;
546 off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
548 for (d = bmap->n_div - 1; d >= 0 ; --d) {
549 for (i = 0; i < bmap->n_eq; ++i) {
550 if (!isl_int_is_one(bmap->eq[i][off + d]) &&
551 !isl_int_is_negone(bmap->eq[i][off + d]))
552 continue;
553 if (!ok_to_eliminate_div(bmap, bmap->eq[i], d))
554 continue;
555 modified = 1;
556 *progress = 1;
557 eliminate_div(bmap, bmap->eq[i], d, 1);
558 isl_basic_map_drop_equality(bmap, i);
559 break;
562 if (modified)
563 return eliminate_divs_eq(bmap, progress);
564 return bmap;
567 /* Elimininate divs based on inequalities
569 static struct isl_basic_map *eliminate_divs_ineq(
570 struct isl_basic_map *bmap, int *progress)
572 int d;
573 int i;
574 unsigned off;
575 struct isl_ctx *ctx;
577 if (!bmap)
578 return NULL;
580 ctx = bmap->ctx;
581 off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
583 for (d = bmap->n_div - 1; d >= 0 ; --d) {
584 for (i = 0; i < bmap->n_eq; ++i)
585 if (!isl_int_is_zero(bmap->eq[i][off + d]))
586 break;
587 if (i < bmap->n_eq)
588 continue;
589 for (i = 0; i < bmap->n_ineq; ++i)
590 if (isl_int_abs_gt(bmap->ineq[i][off + d], ctx->one))
591 break;
592 if (i < bmap->n_ineq)
593 continue;
594 *progress = 1;
595 bmap = isl_basic_map_eliminate_vars(bmap, (off-1)+d, 1);
596 if (!bmap || ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
597 break;
598 bmap = isl_basic_map_drop_div(bmap, d);
599 if (!bmap)
600 break;
602 return bmap;
605 struct isl_basic_map *isl_basic_map_gauss(
606 struct isl_basic_map *bmap, int *progress)
608 int k;
609 int done;
610 int last_var;
611 unsigned total_var;
612 unsigned total;
614 bmap = isl_basic_map_order_divs(bmap);
616 if (!bmap)
617 return NULL;
619 total = isl_basic_map_total_dim(bmap);
620 total_var = total - bmap->n_div;
622 last_var = total - 1;
623 for (done = 0; done < bmap->n_eq; ++done) {
624 for (; last_var >= 0; --last_var) {
625 for (k = done; k < bmap->n_eq; ++k)
626 if (!isl_int_is_zero(bmap->eq[k][1+last_var]))
627 break;
628 if (k < bmap->n_eq)
629 break;
631 if (last_var < 0)
632 break;
633 if (k != done)
634 swap_equality(bmap, k, done);
635 if (isl_int_is_neg(bmap->eq[done][1+last_var]))
636 isl_seq_neg(bmap->eq[done], bmap->eq[done], 1+total);
638 eliminate_var_using_equality(bmap, last_var, bmap->eq[done], 1,
639 progress);
641 if (last_var >= total_var &&
642 isl_int_is_zero(bmap->div[last_var - total_var][0])) {
643 unsigned div = last_var - total_var;
644 isl_seq_neg(bmap->div[div]+1, bmap->eq[done], 1+total);
645 isl_int_set_si(bmap->div[div][1+1+last_var], 0);
646 isl_int_set(bmap->div[div][0],
647 bmap->eq[done][1+last_var]);
648 if (progress)
649 *progress = 1;
650 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
653 if (done == bmap->n_eq)
654 return bmap;
655 for (k = done; k < bmap->n_eq; ++k) {
656 if (isl_int_is_zero(bmap->eq[k][0]))
657 continue;
658 return isl_basic_map_set_to_empty(bmap);
660 isl_basic_map_free_equality(bmap, bmap->n_eq-done);
661 return bmap;
664 struct isl_basic_set *isl_basic_set_gauss(
665 struct isl_basic_set *bset, int *progress)
667 return (struct isl_basic_set*)isl_basic_map_gauss(
668 (struct isl_basic_map *)bset, progress);
672 static unsigned int round_up(unsigned int v)
674 int old_v = v;
676 while (v) {
677 old_v = v;
678 v ^= v & -v;
680 return old_v << 1;
683 static int hash_index(isl_int ***index, unsigned int size, int bits,
684 struct isl_basic_map *bmap, int k)
686 int h;
687 unsigned total = isl_basic_map_total_dim(bmap);
688 uint32_t hash = isl_seq_get_hash_bits(bmap->ineq[k]+1, total, bits);
689 for (h = hash; index[h]; h = (h+1) % size)
690 if (&bmap->ineq[k] != index[h] &&
691 isl_seq_eq(bmap->ineq[k]+1, index[h][0]+1, total))
692 break;
693 return h;
696 static int set_hash_index(isl_int ***index, unsigned int size, int bits,
697 struct isl_basic_set *bset, int k)
699 return hash_index(index, size, bits, (struct isl_basic_map *)bset, k);
702 /* If we can eliminate more than one div, then we need to make
703 * sure we do it from last div to first div, in order not to
704 * change the position of the other divs that still need to
705 * be removed.
707 static struct isl_basic_map *remove_duplicate_divs(
708 struct isl_basic_map *bmap, int *progress)
710 unsigned int size;
711 int *index;
712 int *elim_for;
713 int k, l, h;
714 int bits;
715 struct isl_blk eq;
716 unsigned total_var;
717 unsigned total;
718 struct isl_ctx *ctx;
720 bmap = isl_basic_map_order_divs(bmap);
721 if (!bmap || bmap->n_div <= 1)
722 return bmap;
724 total_var = isl_space_dim(bmap->dim, isl_dim_all);
725 total = total_var + bmap->n_div;
727 ctx = bmap->ctx;
728 for (k = bmap->n_div - 1; k >= 0; --k)
729 if (!isl_int_is_zero(bmap->div[k][0]))
730 break;
731 if (k <= 0)
732 return bmap;
734 elim_for = isl_calloc_array(ctx, int, bmap->n_div);
735 size = round_up(4 * bmap->n_div / 3 - 1);
736 bits = ffs(size) - 1;
737 index = isl_calloc_array(ctx, int, size);
738 if (!index)
739 return bmap;
740 eq = isl_blk_alloc(ctx, 1+total);
741 if (isl_blk_is_error(eq))
742 goto out;
744 isl_seq_clr(eq.data, 1+total);
745 index[isl_seq_get_hash_bits(bmap->div[k], 2+total, bits)] = k + 1;
746 for (--k; k >= 0; --k) {
747 uint32_t hash;
749 if (isl_int_is_zero(bmap->div[k][0]))
750 continue;
752 hash = isl_seq_get_hash_bits(bmap->div[k], 2+total, bits);
753 for (h = hash; index[h]; h = (h+1) % size)
754 if (isl_seq_eq(bmap->div[k],
755 bmap->div[index[h]-1], 2+total))
756 break;
757 if (index[h]) {
758 *progress = 1;
759 l = index[h] - 1;
760 elim_for[l] = k + 1;
762 index[h] = k+1;
764 for (l = bmap->n_div - 1; l >= 0; --l) {
765 if (!elim_for[l])
766 continue;
767 k = elim_for[l] - 1;
768 isl_int_set_si(eq.data[1+total_var+k], -1);
769 isl_int_set_si(eq.data[1+total_var+l], 1);
770 eliminate_div(bmap, eq.data, l, 1);
771 isl_int_set_si(eq.data[1+total_var+k], 0);
772 isl_int_set_si(eq.data[1+total_var+l], 0);
775 isl_blk_free(ctx, eq);
776 out:
777 free(index);
778 free(elim_for);
779 return bmap;
782 static int n_pure_div_eq(struct isl_basic_map *bmap)
784 int i, j;
785 unsigned total;
787 total = isl_space_dim(bmap->dim, isl_dim_all);
788 for (i = 0, j = bmap->n_div-1; i < bmap->n_eq; ++i) {
789 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
790 --j;
791 if (j < 0)
792 break;
793 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + total, j) != -1)
794 return 0;
796 return i;
799 /* Normalize divs that appear in equalities.
801 * In particular, we assume that bmap contains some equalities
802 * of the form
804 * a x = m * e_i
806 * and we want to replace the set of e_i by a minimal set and
807 * such that the new e_i have a canonical representation in terms
808 * of the vector x.
809 * If any of the equalities involves more than one divs, then
810 * we currently simply bail out.
812 * Let us first additionally assume that all equalities involve
813 * a div. The equalities then express modulo constraints on the
814 * remaining variables and we can use "parameter compression"
815 * to find a minimal set of constraints. The result is a transformation
817 * x = T(x') = x_0 + G x'
819 * with G a lower-triangular matrix with all elements below the diagonal
820 * non-negative and smaller than the diagonal element on the same row.
821 * We first normalize x_0 by making the same property hold in the affine
822 * T matrix.
823 * The rows i of G with a 1 on the diagonal do not impose any modulo
824 * constraint and simply express x_i = x'_i.
825 * For each of the remaining rows i, we introduce a div and a corresponding
826 * equality. In particular
828 * g_ii e_j = x_i - g_i(x')
830 * where each x'_k is replaced either by x_k (if g_kk = 1) or the
831 * corresponding div (if g_kk != 1).
833 * If there are any equalities not involving any div, then we
834 * first apply a variable compression on the variables x:
836 * x = C x'' x'' = C_2 x
838 * and perform the above parameter compression on A C instead of on A.
839 * The resulting compression is then of the form
841 * x'' = T(x') = x_0 + G x'
843 * and in constructing the new divs and the corresponding equalities,
844 * we have to replace each x'', i.e., the x'_k with (g_kk = 1),
845 * by the corresponding row from C_2.
847 static struct isl_basic_map *normalize_divs(
848 struct isl_basic_map *bmap, int *progress)
850 int i, j, k;
851 int total;
852 int div_eq;
853 struct isl_mat *B;
854 struct isl_vec *d;
855 struct isl_mat *T = NULL;
856 struct isl_mat *C = NULL;
857 struct isl_mat *C2 = NULL;
858 isl_int v;
859 int *pos;
860 int dropped, needed;
862 if (!bmap)
863 return NULL;
865 if (bmap->n_div == 0)
866 return bmap;
868 if (bmap->n_eq == 0)
869 return bmap;
871 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS))
872 return bmap;
874 total = isl_space_dim(bmap->dim, isl_dim_all);
875 div_eq = n_pure_div_eq(bmap);
876 if (div_eq == 0)
877 return bmap;
879 if (div_eq < bmap->n_eq) {
880 B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, div_eq,
881 bmap->n_eq - div_eq, 0, 1 + total);
882 C = isl_mat_variable_compression(B, &C2);
883 if (!C || !C2)
884 goto error;
885 if (C->n_col == 0) {
886 bmap = isl_basic_map_set_to_empty(bmap);
887 isl_mat_free(C);
888 isl_mat_free(C2);
889 goto done;
893 d = isl_vec_alloc(bmap->ctx, div_eq);
894 if (!d)
895 goto error;
896 for (i = 0, j = bmap->n_div-1; i < div_eq; ++i) {
897 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
898 --j;
899 isl_int_set(d->block.data[i], bmap->eq[i][1 + total + j]);
901 B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, 0, div_eq, 0, 1 + total);
903 if (C) {
904 B = isl_mat_product(B, C);
905 C = NULL;
908 T = isl_mat_parameter_compression(B, d);
909 if (!T)
910 goto error;
911 if (T->n_col == 0) {
912 bmap = isl_basic_map_set_to_empty(bmap);
913 isl_mat_free(C2);
914 isl_mat_free(T);
915 goto done;
917 isl_int_init(v);
918 for (i = 0; i < T->n_row - 1; ++i) {
919 isl_int_fdiv_q(v, T->row[1 + i][0], T->row[1 + i][1 + i]);
920 if (isl_int_is_zero(v))
921 continue;
922 isl_mat_col_submul(T, 0, v, 1 + i);
924 isl_int_clear(v);
925 pos = isl_alloc_array(bmap->ctx, int, T->n_row);
926 if (!pos)
927 goto error;
928 /* We have to be careful because dropping equalities may reorder them */
929 dropped = 0;
930 for (j = bmap->n_div - 1; j >= 0; --j) {
931 for (i = 0; i < bmap->n_eq; ++i)
932 if (!isl_int_is_zero(bmap->eq[i][1 + total + j]))
933 break;
934 if (i < bmap->n_eq) {
935 bmap = isl_basic_map_drop_div(bmap, j);
936 isl_basic_map_drop_equality(bmap, i);
937 ++dropped;
940 pos[0] = 0;
941 needed = 0;
942 for (i = 1; i < T->n_row; ++i) {
943 if (isl_int_is_one(T->row[i][i]))
944 pos[i] = i;
945 else
946 needed++;
948 if (needed > dropped) {
949 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
950 needed, needed, 0);
951 if (!bmap)
952 goto error;
954 for (i = 1; i < T->n_row; ++i) {
955 if (isl_int_is_one(T->row[i][i]))
956 continue;
957 k = isl_basic_map_alloc_div(bmap);
958 pos[i] = 1 + total + k;
959 isl_seq_clr(bmap->div[k] + 1, 1 + total + bmap->n_div);
960 isl_int_set(bmap->div[k][0], T->row[i][i]);
961 if (C2)
962 isl_seq_cpy(bmap->div[k] + 1, C2->row[i], 1 + total);
963 else
964 isl_int_set_si(bmap->div[k][1 + i], 1);
965 for (j = 0; j < i; ++j) {
966 if (isl_int_is_zero(T->row[i][j]))
967 continue;
968 if (pos[j] < T->n_row && C2)
969 isl_seq_submul(bmap->div[k] + 1, T->row[i][j],
970 C2->row[pos[j]], 1 + total);
971 else
972 isl_int_neg(bmap->div[k][1 + pos[j]],
973 T->row[i][j]);
975 j = isl_basic_map_alloc_equality(bmap);
976 isl_seq_neg(bmap->eq[j], bmap->div[k]+1, 1+total+bmap->n_div);
977 isl_int_set(bmap->eq[j][pos[i]], bmap->div[k][0]);
979 free(pos);
980 isl_mat_free(C2);
981 isl_mat_free(T);
983 if (progress)
984 *progress = 1;
985 done:
986 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
988 return bmap;
989 error:
990 isl_mat_free(C);
991 isl_mat_free(C2);
992 isl_mat_free(T);
993 return bmap;
996 static struct isl_basic_map *set_div_from_lower_bound(
997 struct isl_basic_map *bmap, int div, int ineq)
999 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1001 isl_seq_neg(bmap->div[div] + 1, bmap->ineq[ineq], total + bmap->n_div);
1002 isl_int_set(bmap->div[div][0], bmap->ineq[ineq][total + div]);
1003 isl_int_add(bmap->div[div][1], bmap->div[div][1], bmap->div[div][0]);
1004 isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
1005 isl_int_set_si(bmap->div[div][1 + total + div], 0);
1007 return bmap;
1010 /* Check whether it is ok to define a div based on an inequality.
1011 * To avoid the introduction of circular definitions of divs, we
1012 * do not allow such a definition if the resulting expression would refer to
1013 * any other undefined divs or if any known div is defined in
1014 * terms of the unknown div.
1016 static int ok_to_set_div_from_bound(struct isl_basic_map *bmap,
1017 int div, int ineq)
1019 int j;
1020 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1022 /* Not defined in terms of unknown divs */
1023 for (j = 0; j < bmap->n_div; ++j) {
1024 if (div == j)
1025 continue;
1026 if (isl_int_is_zero(bmap->ineq[ineq][total + j]))
1027 continue;
1028 if (isl_int_is_zero(bmap->div[j][0]))
1029 return 0;
1032 /* No other div defined in terms of this one => avoid loops */
1033 for (j = 0; j < bmap->n_div; ++j) {
1034 if (div == j)
1035 continue;
1036 if (isl_int_is_zero(bmap->div[j][0]))
1037 continue;
1038 if (!isl_int_is_zero(bmap->div[j][1 + total + div]))
1039 return 0;
1042 return 1;
1045 /* Given two constraints "k" and "l" that are opposite to each other,
1046 * except for the constant term, check if we can use them
1047 * to obtain an expression for one of the hitherto unknown divs.
1048 * "sum" is the sum of the constant terms of the constraints.
1049 * If this sum is strictly smaller than the coefficient of one
1050 * of the divs, then this pair can be used define the div.
1051 * To avoid the introduction of circular definitions of divs, we
1052 * do not use the pair if the resulting expression would refer to
1053 * any other undefined divs or if any known div is defined in
1054 * terms of the unknown div.
1056 static struct isl_basic_map *check_for_div_constraints(
1057 struct isl_basic_map *bmap, int k, int l, isl_int sum, int *progress)
1059 int i;
1060 unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1062 for (i = 0; i < bmap->n_div; ++i) {
1063 if (!isl_int_is_zero(bmap->div[i][0]))
1064 continue;
1065 if (isl_int_is_zero(bmap->ineq[k][total + i]))
1066 continue;
1067 if (isl_int_abs_ge(sum, bmap->ineq[k][total + i]))
1068 continue;
1069 if (!ok_to_set_div_from_bound(bmap, i, k))
1070 break;
1071 if (isl_int_is_pos(bmap->ineq[k][total + i]))
1072 bmap = set_div_from_lower_bound(bmap, i, k);
1073 else
1074 bmap = set_div_from_lower_bound(bmap, i, l);
1075 if (progress)
1076 *progress = 1;
1077 break;
1079 return bmap;
1082 static struct isl_basic_map *remove_duplicate_constraints(
1083 struct isl_basic_map *bmap, int *progress, int detect_divs)
1085 unsigned int size;
1086 isl_int ***index;
1087 int k, l, h;
1088 int bits;
1089 unsigned total = isl_basic_map_total_dim(bmap);
1090 isl_int sum;
1091 isl_ctx *ctx;
1093 if (!bmap || bmap->n_ineq <= 1)
1094 return bmap;
1096 size = round_up(4 * (bmap->n_ineq+1) / 3 - 1);
1097 bits = ffs(size) - 1;
1098 ctx = isl_basic_map_get_ctx(bmap);
1099 index = isl_calloc_array(ctx, isl_int **, size);
1100 if (!index)
1101 return bmap;
1103 index[isl_seq_get_hash_bits(bmap->ineq[0]+1, total, bits)] = &bmap->ineq[0];
1104 for (k = 1; k < bmap->n_ineq; ++k) {
1105 h = hash_index(index, size, bits, bmap, k);
1106 if (!index[h]) {
1107 index[h] = &bmap->ineq[k];
1108 continue;
1110 if (progress)
1111 *progress = 1;
1112 l = index[h] - &bmap->ineq[0];
1113 if (isl_int_lt(bmap->ineq[k][0], bmap->ineq[l][0]))
1114 swap_inequality(bmap, k, l);
1115 isl_basic_map_drop_inequality(bmap, k);
1116 --k;
1118 isl_int_init(sum);
1119 for (k = 0; k < bmap->n_ineq-1; ++k) {
1120 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1121 h = hash_index(index, size, bits, bmap, k);
1122 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1123 if (!index[h])
1124 continue;
1125 l = index[h] - &bmap->ineq[0];
1126 isl_int_add(sum, bmap->ineq[k][0], bmap->ineq[l][0]);
1127 if (isl_int_is_pos(sum)) {
1128 if (detect_divs)
1129 bmap = check_for_div_constraints(bmap, k, l,
1130 sum, progress);
1131 continue;
1133 if (isl_int_is_zero(sum)) {
1134 /* We need to break out of the loop after these
1135 * changes since the contents of the hash
1136 * will no longer be valid.
1137 * Plus, we probably we want to regauss first.
1139 if (progress)
1140 *progress = 1;
1141 isl_basic_map_drop_inequality(bmap, l);
1142 isl_basic_map_inequality_to_equality(bmap, k);
1143 } else
1144 bmap = isl_basic_map_set_to_empty(bmap);
1145 break;
1147 isl_int_clear(sum);
1149 free(index);
1150 return bmap;
1154 /* Eliminate knowns divs from constraints where they appear with
1155 * a (positive or negative) unit coefficient.
1157 * That is, replace
1159 * floor(e/m) + f >= 0
1161 * by
1163 * e + m f >= 0
1165 * and
1167 * -floor(e/m) + f >= 0
1169 * by
1171 * -e + m f + m - 1 >= 0
1173 * The first conversion is valid because floor(e/m) >= -f is equivalent
1174 * to e/m >= -f because -f is an integral expression.
1175 * The second conversion follows from the fact that
1177 * -floor(e/m) = ceil(-e/m) = floor((-e + m - 1)/m)
1180 * We skip integral divs, i.e., those with denominator 1, as we would
1181 * risk eliminating the div from the div constraints. We do not need
1182 * to handle those divs here anyway since the div constraints will turn
1183 * out to form an equality and this equality can then be use to eliminate
1184 * the div from all constraints.
1186 static __isl_give isl_basic_map *eliminate_unit_divs(
1187 __isl_take isl_basic_map *bmap, int *progress)
1189 int i, j;
1190 isl_ctx *ctx;
1191 unsigned total;
1193 if (!bmap)
1194 return NULL;
1196 ctx = isl_basic_map_get_ctx(bmap);
1197 total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1199 for (i = 0; i < bmap->n_div; ++i) {
1200 if (isl_int_is_zero(bmap->div[i][0]))
1201 continue;
1202 if (isl_int_is_one(bmap->div[i][0]))
1203 continue;
1204 for (j = 0; j < bmap->n_ineq; ++j) {
1205 int s;
1207 if (!isl_int_is_one(bmap->ineq[j][total + i]) &&
1208 !isl_int_is_negone(bmap->ineq[j][total + i]))
1209 continue;
1211 *progress = 1;
1213 s = isl_int_sgn(bmap->ineq[j][total + i]);
1214 isl_int_set_si(bmap->ineq[j][total + i], 0);
1215 if (s < 0)
1216 isl_seq_combine(bmap->ineq[j],
1217 ctx->negone, bmap->div[i] + 1,
1218 bmap->div[i][0], bmap->ineq[j],
1219 total + bmap->n_div);
1220 else
1221 isl_seq_combine(bmap->ineq[j],
1222 ctx->one, bmap->div[i] + 1,
1223 bmap->div[i][0], bmap->ineq[j],
1224 total + bmap->n_div);
1225 if (s < 0) {
1226 isl_int_add(bmap->ineq[j][0],
1227 bmap->ineq[j][0], bmap->div[i][0]);
1228 isl_int_sub_ui(bmap->ineq[j][0],
1229 bmap->ineq[j][0], 1);
1234 return bmap;
1237 struct isl_basic_map *isl_basic_map_simplify(struct isl_basic_map *bmap)
1239 int progress = 1;
1240 if (!bmap)
1241 return NULL;
1242 while (progress) {
1243 progress = 0;
1244 bmap = isl_basic_map_normalize_constraints(bmap);
1245 bmap = normalize_div_expressions(bmap);
1246 bmap = remove_duplicate_divs(bmap, &progress);
1247 bmap = eliminate_unit_divs(bmap, &progress);
1248 bmap = eliminate_divs_eq(bmap, &progress);
1249 bmap = eliminate_divs_ineq(bmap, &progress);
1250 bmap = isl_basic_map_gauss(bmap, &progress);
1251 /* requires equalities in normal form */
1252 bmap = normalize_divs(bmap, &progress);
1253 bmap = remove_duplicate_constraints(bmap, &progress, 1);
1255 return bmap;
1258 struct isl_basic_set *isl_basic_set_simplify(struct isl_basic_set *bset)
1260 return (struct isl_basic_set *)
1261 isl_basic_map_simplify((struct isl_basic_map *)bset);
1265 int isl_basic_map_is_div_constraint(__isl_keep isl_basic_map *bmap,
1266 isl_int *constraint, unsigned div)
1268 unsigned pos;
1270 if (!bmap)
1271 return -1;
1273 pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1275 if (isl_int_eq(constraint[pos], bmap->div[div][0])) {
1276 int neg;
1277 isl_int_sub(bmap->div[div][1],
1278 bmap->div[div][1], bmap->div[div][0]);
1279 isl_int_add_ui(bmap->div[div][1], bmap->div[div][1], 1);
1280 neg = isl_seq_is_neg(constraint, bmap->div[div]+1, pos);
1281 isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
1282 isl_int_add(bmap->div[div][1],
1283 bmap->div[div][1], bmap->div[div][0]);
1284 if (!neg)
1285 return 0;
1286 if (isl_seq_first_non_zero(constraint+pos+1,
1287 bmap->n_div-div-1) != -1)
1288 return 0;
1289 } else if (isl_int_abs_eq(constraint[pos], bmap->div[div][0])) {
1290 if (!isl_seq_eq(constraint, bmap->div[div]+1, pos))
1291 return 0;
1292 if (isl_seq_first_non_zero(constraint+pos+1,
1293 bmap->n_div-div-1) != -1)
1294 return 0;
1295 } else
1296 return 0;
1298 return 1;
1301 int isl_basic_set_is_div_constraint(__isl_keep isl_basic_set *bset,
1302 isl_int *constraint, unsigned div)
1304 return isl_basic_map_is_div_constraint(bset, constraint, div);
1308 /* If the only constraints a div d=floor(f/m)
1309 * appears in are its two defining constraints
1311 * f - m d >=0
1312 * -(f - (m - 1)) + m d >= 0
1314 * then it can safely be removed.
1316 static int div_is_redundant(struct isl_basic_map *bmap, int div)
1318 int i;
1319 unsigned pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1321 for (i = 0; i < bmap->n_eq; ++i)
1322 if (!isl_int_is_zero(bmap->eq[i][pos]))
1323 return 0;
1325 for (i = 0; i < bmap->n_ineq; ++i) {
1326 if (isl_int_is_zero(bmap->ineq[i][pos]))
1327 continue;
1328 if (!isl_basic_map_is_div_constraint(bmap, bmap->ineq[i], div))
1329 return 0;
1332 for (i = 0; i < bmap->n_div; ++i)
1333 if (!isl_int_is_zero(bmap->div[i][1+pos]))
1334 return 0;
1336 return 1;
1340 * Remove divs that don't occur in any of the constraints or other divs.
1341 * These can arise when dropping some of the variables in a quast
1342 * returned by piplib.
1344 static struct isl_basic_map *remove_redundant_divs(struct isl_basic_map *bmap)
1346 int i;
1348 if (!bmap)
1349 return NULL;
1351 for (i = bmap->n_div-1; i >= 0; --i) {
1352 if (!div_is_redundant(bmap, i))
1353 continue;
1354 bmap = isl_basic_map_drop_div(bmap, i);
1356 return bmap;
1359 struct isl_basic_map *isl_basic_map_finalize(struct isl_basic_map *bmap)
1361 bmap = remove_redundant_divs(bmap);
1362 if (!bmap)
1363 return NULL;
1364 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1365 return bmap;
1368 struct isl_basic_set *isl_basic_set_finalize(struct isl_basic_set *bset)
1370 return (struct isl_basic_set *)
1371 isl_basic_map_finalize((struct isl_basic_map *)bset);
1374 struct isl_set *isl_set_finalize(struct isl_set *set)
1376 int i;
1378 if (!set)
1379 return NULL;
1380 for (i = 0; i < set->n; ++i) {
1381 set->p[i] = isl_basic_set_finalize(set->p[i]);
1382 if (!set->p[i])
1383 goto error;
1385 return set;
1386 error:
1387 isl_set_free(set);
1388 return NULL;
1391 struct isl_map *isl_map_finalize(struct isl_map *map)
1393 int i;
1395 if (!map)
1396 return NULL;
1397 for (i = 0; i < map->n; ++i) {
1398 map->p[i] = isl_basic_map_finalize(map->p[i]);
1399 if (!map->p[i])
1400 goto error;
1402 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
1403 return map;
1404 error:
1405 isl_map_free(map);
1406 return NULL;
1410 /* Remove definition of any div that is defined in terms of the given variable.
1411 * The div itself is not removed. Functions such as
1412 * eliminate_divs_ineq depend on the other divs remaining in place.
1414 static struct isl_basic_map *remove_dependent_vars(struct isl_basic_map *bmap,
1415 int pos)
1417 int i;
1419 if (!bmap)
1420 return NULL;
1422 for (i = 0; i < bmap->n_div; ++i) {
1423 if (isl_int_is_zero(bmap->div[i][0]))
1424 continue;
1425 if (isl_int_is_zero(bmap->div[i][1+1+pos]))
1426 continue;
1427 isl_int_set_si(bmap->div[i][0], 0);
1429 return bmap;
1432 /* Eliminate the specified variables from the constraints using
1433 * Fourier-Motzkin. The variables themselves are not removed.
1435 struct isl_basic_map *isl_basic_map_eliminate_vars(
1436 struct isl_basic_map *bmap, unsigned pos, unsigned n)
1438 int d;
1439 int i, j, k;
1440 unsigned total;
1441 int need_gauss = 0;
1443 if (n == 0)
1444 return bmap;
1445 if (!bmap)
1446 return NULL;
1447 total = isl_basic_map_total_dim(bmap);
1449 bmap = isl_basic_map_cow(bmap);
1450 for (d = pos + n - 1; d >= 0 && d >= pos; --d)
1451 bmap = remove_dependent_vars(bmap, d);
1452 if (!bmap)
1453 return NULL;
1455 for (d = pos + n - 1;
1456 d >= 0 && d >= total - bmap->n_div && d >= pos; --d)
1457 isl_seq_clr(bmap->div[d-(total-bmap->n_div)], 2+total);
1458 for (d = pos + n - 1; d >= 0 && d >= pos; --d) {
1459 int n_lower, n_upper;
1460 if (!bmap)
1461 return NULL;
1462 for (i = 0; i < bmap->n_eq; ++i) {
1463 if (isl_int_is_zero(bmap->eq[i][1+d]))
1464 continue;
1465 eliminate_var_using_equality(bmap, d, bmap->eq[i], 0, NULL);
1466 isl_basic_map_drop_equality(bmap, i);
1467 need_gauss = 1;
1468 break;
1470 if (i < bmap->n_eq)
1471 continue;
1472 n_lower = 0;
1473 n_upper = 0;
1474 for (i = 0; i < bmap->n_ineq; ++i) {
1475 if (isl_int_is_pos(bmap->ineq[i][1+d]))
1476 n_lower++;
1477 else if (isl_int_is_neg(bmap->ineq[i][1+d]))
1478 n_upper++;
1480 bmap = isl_basic_map_extend_constraints(bmap,
1481 0, n_lower * n_upper);
1482 if (!bmap)
1483 goto error;
1484 for (i = bmap->n_ineq - 1; i >= 0; --i) {
1485 int last;
1486 if (isl_int_is_zero(bmap->ineq[i][1+d]))
1487 continue;
1488 last = -1;
1489 for (j = 0; j < i; ++j) {
1490 if (isl_int_is_zero(bmap->ineq[j][1+d]))
1491 continue;
1492 last = j;
1493 if (isl_int_sgn(bmap->ineq[i][1+d]) ==
1494 isl_int_sgn(bmap->ineq[j][1+d]))
1495 continue;
1496 k = isl_basic_map_alloc_inequality(bmap);
1497 if (k < 0)
1498 goto error;
1499 isl_seq_cpy(bmap->ineq[k], bmap->ineq[i],
1500 1+total);
1501 isl_seq_elim(bmap->ineq[k], bmap->ineq[j],
1502 1+d, 1+total, NULL);
1504 isl_basic_map_drop_inequality(bmap, i);
1505 i = last + 1;
1507 if (n_lower > 0 && n_upper > 0) {
1508 bmap = isl_basic_map_normalize_constraints(bmap);
1509 bmap = remove_duplicate_constraints(bmap, NULL, 0);
1510 bmap = isl_basic_map_gauss(bmap, NULL);
1511 bmap = isl_basic_map_remove_redundancies(bmap);
1512 need_gauss = 0;
1513 if (!bmap)
1514 goto error;
1515 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
1516 break;
1519 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1520 if (need_gauss)
1521 bmap = isl_basic_map_gauss(bmap, NULL);
1522 return bmap;
1523 error:
1524 isl_basic_map_free(bmap);
1525 return NULL;
1528 struct isl_basic_set *isl_basic_set_eliminate_vars(
1529 struct isl_basic_set *bset, unsigned pos, unsigned n)
1531 return (struct isl_basic_set *)isl_basic_map_eliminate_vars(
1532 (struct isl_basic_map *)bset, pos, n);
1535 /* Eliminate the specified n dimensions starting at first from the
1536 * constraints, without removing the dimensions from the space.
1537 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1538 * Otherwise, they are projected out and the original space is restored.
1540 __isl_give isl_basic_map *isl_basic_map_eliminate(
1541 __isl_take isl_basic_map *bmap,
1542 enum isl_dim_type type, unsigned first, unsigned n)
1544 isl_space *space;
1546 if (!bmap)
1547 return NULL;
1548 if (n == 0)
1549 return bmap;
1551 if (first + n > isl_basic_map_dim(bmap, type) || first + n < first)
1552 isl_die(bmap->ctx, isl_error_invalid,
1553 "index out of bounds", goto error);
1555 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
1556 first += isl_basic_map_offset(bmap, type) - 1;
1557 bmap = isl_basic_map_eliminate_vars(bmap, first, n);
1558 return isl_basic_map_finalize(bmap);
1561 space = isl_basic_map_get_space(bmap);
1562 bmap = isl_basic_map_project_out(bmap, type, first, n);
1563 bmap = isl_basic_map_insert_dims(bmap, type, first, n);
1564 bmap = isl_basic_map_reset_space(bmap, space);
1565 return bmap;
1566 error:
1567 isl_basic_map_free(bmap);
1568 return NULL;
1571 __isl_give isl_basic_set *isl_basic_set_eliminate(
1572 __isl_take isl_basic_set *bset,
1573 enum isl_dim_type type, unsigned first, unsigned n)
1575 return isl_basic_map_eliminate(bset, type, first, n);
1578 /* Don't assume equalities are in order, because align_divs
1579 * may have changed the order of the divs.
1581 static void compute_elimination_index(struct isl_basic_map *bmap, int *elim)
1583 int d, i;
1584 unsigned total;
1586 total = isl_space_dim(bmap->dim, isl_dim_all);
1587 for (d = 0; d < total; ++d)
1588 elim[d] = -1;
1589 for (i = 0; i < bmap->n_eq; ++i) {
1590 for (d = total - 1; d >= 0; --d) {
1591 if (isl_int_is_zero(bmap->eq[i][1+d]))
1592 continue;
1593 elim[d] = i;
1594 break;
1599 static void set_compute_elimination_index(struct isl_basic_set *bset, int *elim)
1601 compute_elimination_index((struct isl_basic_map *)bset, elim);
1604 static int reduced_using_equalities(isl_int *dst, isl_int *src,
1605 struct isl_basic_map *bmap, int *elim)
1607 int d;
1608 int copied = 0;
1609 unsigned total;
1611 total = isl_space_dim(bmap->dim, isl_dim_all);
1612 for (d = total - 1; d >= 0; --d) {
1613 if (isl_int_is_zero(src[1+d]))
1614 continue;
1615 if (elim[d] == -1)
1616 continue;
1617 if (!copied) {
1618 isl_seq_cpy(dst, src, 1 + total);
1619 copied = 1;
1621 isl_seq_elim(dst, bmap->eq[elim[d]], 1 + d, 1 + total, NULL);
1623 return copied;
1626 static int set_reduced_using_equalities(isl_int *dst, isl_int *src,
1627 struct isl_basic_set *bset, int *elim)
1629 return reduced_using_equalities(dst, src,
1630 (struct isl_basic_map *)bset, elim);
1633 static struct isl_basic_set *isl_basic_set_reduce_using_equalities(
1634 struct isl_basic_set *bset, struct isl_basic_set *context)
1636 int i;
1637 int *elim;
1639 if (!bset || !context)
1640 goto error;
1642 if (context->n_eq == 0) {
1643 isl_basic_set_free(context);
1644 return bset;
1647 bset = isl_basic_set_cow(bset);
1648 if (!bset)
1649 goto error;
1651 elim = isl_alloc_array(bset->ctx, int, isl_basic_set_n_dim(bset));
1652 if (!elim)
1653 goto error;
1654 set_compute_elimination_index(context, elim);
1655 for (i = 0; i < bset->n_eq; ++i)
1656 set_reduced_using_equalities(bset->eq[i], bset->eq[i],
1657 context, elim);
1658 for (i = 0; i < bset->n_ineq; ++i)
1659 set_reduced_using_equalities(bset->ineq[i], bset->ineq[i],
1660 context, elim);
1661 isl_basic_set_free(context);
1662 free(elim);
1663 bset = isl_basic_set_simplify(bset);
1664 bset = isl_basic_set_finalize(bset);
1665 return bset;
1666 error:
1667 isl_basic_set_free(bset);
1668 isl_basic_set_free(context);
1669 return NULL;
1672 static struct isl_basic_set *remove_shifted_constraints(
1673 struct isl_basic_set *bset, struct isl_basic_set *context)
1675 unsigned int size;
1676 isl_int ***index;
1677 int bits;
1678 int k, h, l;
1679 isl_ctx *ctx;
1681 if (!bset)
1682 return NULL;
1684 size = round_up(4 * (context->n_ineq+1) / 3 - 1);
1685 bits = ffs(size) - 1;
1686 ctx = isl_basic_set_get_ctx(bset);
1687 index = isl_calloc_array(ctx, isl_int **, size);
1688 if (!index)
1689 return bset;
1691 for (k = 0; k < context->n_ineq; ++k) {
1692 h = set_hash_index(index, size, bits, context, k);
1693 index[h] = &context->ineq[k];
1695 for (k = 0; k < bset->n_ineq; ++k) {
1696 h = set_hash_index(index, size, bits, bset, k);
1697 if (!index[h])
1698 continue;
1699 l = index[h] - &context->ineq[0];
1700 if (isl_int_lt(bset->ineq[k][0], context->ineq[l][0]))
1701 continue;
1702 bset = isl_basic_set_cow(bset);
1703 if (!bset)
1704 goto error;
1705 isl_basic_set_drop_inequality(bset, k);
1706 --k;
1708 free(index);
1709 return bset;
1710 error:
1711 free(index);
1712 return bset;
1715 /* Does the (linear part of a) constraint "c" involve any of the "len"
1716 * "relevant" dimensions?
1718 static int is_related(isl_int *c, int len, int *relevant)
1720 int i;
1722 for (i = 0; i < len; ++i) {
1723 if (!relevant[i])
1724 continue;
1725 if (!isl_int_is_zero(c[i]))
1726 return 1;
1729 return 0;
1732 /* Drop constraints from "bset" that do not involve any of
1733 * the dimensions marked "relevant".
1735 static __isl_give isl_basic_set *drop_unrelated_constraints(
1736 __isl_take isl_basic_set *bset, int *relevant)
1738 int i, dim;
1740 dim = isl_basic_set_dim(bset, isl_dim_set);
1741 for (i = 0; i < dim; ++i)
1742 if (!relevant[i])
1743 break;
1744 if (i >= dim)
1745 return bset;
1747 for (i = bset->n_eq - 1; i >= 0; --i)
1748 if (!is_related(bset->eq[i] + 1, dim, relevant))
1749 isl_basic_set_drop_equality(bset, i);
1751 for (i = bset->n_ineq - 1; i >= 0; --i)
1752 if (!is_related(bset->ineq[i] + 1, dim, relevant))
1753 isl_basic_set_drop_inequality(bset, i);
1755 return bset;
1758 /* Update the groups in "group" based on the (linear part of a) constraint "c".
1760 * In particular, for any variable involved in the constraint,
1761 * find the actual group id from before and replace the group
1762 * of the corresponding variable by the minimal group of all
1763 * the variables involved in the constraint considered so far
1764 * (if this minimum is smaller) or replace the minimum by this group
1765 * (if the minimum is larger).
1767 * At the end, all the variables in "c" will (indirectly) point
1768 * to the minimal of the groups that they referred to originally.
1770 static void update_groups(int dim, int *group, isl_int *c)
1772 int j;
1773 int min = dim;
1775 for (j = 0; j < dim; ++j) {
1776 if (isl_int_is_zero(c[j]))
1777 continue;
1778 while (group[j] >= 0 && group[group[j]] != group[j])
1779 group[j] = group[group[j]];
1780 if (group[j] == min)
1781 continue;
1782 if (group[j] < min) {
1783 if (min >= 0 && min < dim)
1784 group[min] = group[j];
1785 min = group[j];
1786 } else
1787 group[group[j]] = min;
1791 /* Drop constraints from "context" that are irrelevant for computing
1792 * the gist of "bset".
1794 * In particular, drop constraints in variables that are not related
1795 * to any of the variables involved in the constraints of "bset"
1796 * in the sense that there is no sequence of constraints that connects them.
1798 * We construct groups of variables that collect variables that
1799 * (indirectly) appear in some common constraint of "context".
1800 * Each group is identified by the first variable in the group,
1801 * except for the special group of variables that appear in "bset"
1802 * (or are related to those variables), which is identified by -1.
1803 * If group[i] is equal to i (or -1), then the group of i is i (or -1),
1804 * otherwise the group of i is the group of group[i].
1806 * We first initialize the -1 group with the variables that appear in "bset".
1807 * Then we initialize groups for the remaining variables.
1808 * Then we iterate over the constraints of "context" and update the
1809 * group of the variables in the constraint by the smallest group.
1810 * Finally, we resolve indirect references to groups by running over
1811 * the variables.
1813 * After computing the groups, we drop constraints that do not involve
1814 * any variables in the -1 group.
1816 static __isl_give isl_basic_set *drop_irrelevant_constraints(
1817 __isl_take isl_basic_set *context, __isl_keep isl_basic_set *bset)
1819 isl_ctx *ctx;
1820 int *group;
1821 int dim;
1822 int i, j;
1823 int last;
1825 if (!context || !bset)
1826 return isl_basic_set_free(context);
1828 dim = isl_basic_set_dim(bset, isl_dim_set);
1829 ctx = isl_basic_set_get_ctx(bset);
1830 group = isl_calloc_array(ctx, int, dim);
1832 if (!group)
1833 goto error;
1835 for (i = 0; i < dim; ++i) {
1836 for (j = 0; j < bset->n_eq; ++j)
1837 if (!isl_int_is_zero(bset->eq[j][1 + i]))
1838 break;
1839 if (j < bset->n_eq) {
1840 group[i] = -1;
1841 continue;
1843 for (j = 0; j < bset->n_ineq; ++j)
1844 if (!isl_int_is_zero(bset->ineq[j][1 + i]))
1845 break;
1846 if (j < bset->n_ineq)
1847 group[i] = -1;
1850 last = -1;
1851 for (i = 0; i < dim; ++i)
1852 if (group[i] >= 0)
1853 last = group[i] = i;
1854 if (last < 0) {
1855 free(group);
1856 return context;
1859 for (i = 0; i < context->n_eq; ++i)
1860 update_groups(dim, group, context->eq[i] + 1);
1861 for (i = 0; i < context->n_ineq; ++i)
1862 update_groups(dim, group, context->ineq[i] + 1);
1864 for (i = 0; i < dim; ++i)
1865 if (group[i] >= 0)
1866 group[i] = group[group[i]];
1868 for (i = 0; i < dim; ++i)
1869 group[i] = group[i] == -1;
1871 context = drop_unrelated_constraints(context, group);
1873 free(group);
1874 return context;
1875 error:
1876 free(group);
1877 return isl_basic_set_free(context);
1880 /* Remove all information from bset that is redundant in the context
1881 * of context. Both bset and context are assumed to be full-dimensional.
1883 * We first remove the inequalities from "bset"
1884 * that are obviously redundant with respect to some inequality in "context".
1885 * Then we remove those constraints from "context" that have become
1886 * irrelevant for computing the gist of "bset".
1887 * Note that this removal of constraints cannot be replaced by
1888 * a factorization because factors in "bset" may still be connected
1889 * to each other through constraints in "context".
1891 * If there are any inequalities left, we construct a tableau for
1892 * the context and then add the inequalities of "bset".
1893 * Before adding these inequalities, we freeze all constraints such that
1894 * they won't be considered redundant in terms of the constraints of "bset".
1895 * Then we detect all redundant constraints (among the
1896 * constraints that weren't frozen), first by checking for redundancy in the
1897 * the tableau and then by checking if replacing a constraint by its negation
1898 * would lead to an empty set. This last step is fairly expensive
1899 * and could be optimized by more reuse of the tableau.
1900 * Finally, we update bset according to the results.
1902 static __isl_give isl_basic_set *uset_gist_full(__isl_take isl_basic_set *bset,
1903 __isl_take isl_basic_set *context)
1905 int i, k;
1906 isl_basic_set *combined = NULL;
1907 struct isl_tab *tab = NULL;
1908 unsigned context_ineq;
1909 unsigned total;
1911 if (!bset || !context)
1912 goto error;
1914 if (isl_basic_set_is_universe(bset)) {
1915 isl_basic_set_free(context);
1916 return bset;
1919 if (isl_basic_set_is_universe(context)) {
1920 isl_basic_set_free(context);
1921 return bset;
1924 bset = remove_shifted_constraints(bset, context);
1925 if (!bset)
1926 goto error;
1927 if (bset->n_ineq == 0)
1928 goto done;
1930 context = drop_irrelevant_constraints(context, bset);
1931 if (!context)
1932 goto error;
1933 if (isl_basic_set_is_universe(context)) {
1934 isl_basic_set_free(context);
1935 return bset;
1938 context_ineq = context->n_ineq;
1939 combined = isl_basic_set_cow(isl_basic_set_copy(context));
1940 combined = isl_basic_set_extend_constraints(combined, 0, bset->n_ineq);
1941 tab = isl_tab_from_basic_set(combined, 0);
1942 for (i = 0; i < context_ineq; ++i)
1943 if (isl_tab_freeze_constraint(tab, i) < 0)
1944 goto error;
1945 tab = isl_tab_extend(tab, bset->n_ineq);
1946 for (i = 0; i < bset->n_ineq; ++i)
1947 if (isl_tab_add_ineq(tab, bset->ineq[i]) < 0)
1948 goto error;
1949 bset = isl_basic_set_add_constraints(combined, bset, 0);
1950 combined = NULL;
1951 if (!bset)
1952 goto error;
1953 if (isl_tab_detect_redundant(tab) < 0)
1954 goto error;
1955 total = isl_basic_set_total_dim(bset);
1956 for (i = context_ineq; i < bset->n_ineq; ++i) {
1957 int is_empty;
1958 if (tab->con[i].is_redundant)
1959 continue;
1960 tab->con[i].is_redundant = 1;
1961 combined = isl_basic_set_dup(bset);
1962 combined = isl_basic_set_update_from_tab(combined, tab);
1963 combined = isl_basic_set_extend_constraints(combined, 0, 1);
1964 k = isl_basic_set_alloc_inequality(combined);
1965 if (k < 0)
1966 goto error;
1967 isl_seq_neg(combined->ineq[k], bset->ineq[i], 1 + total);
1968 isl_int_sub_ui(combined->ineq[k][0], combined->ineq[k][0], 1);
1969 is_empty = isl_basic_set_is_empty(combined);
1970 if (is_empty < 0)
1971 goto error;
1972 isl_basic_set_free(combined);
1973 combined = NULL;
1974 if (!is_empty)
1975 tab->con[i].is_redundant = 0;
1977 for (i = 0; i < context_ineq; ++i)
1978 tab->con[i].is_redundant = 1;
1979 bset = isl_basic_set_update_from_tab(bset, tab);
1980 if (bset) {
1981 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
1982 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
1985 isl_tab_free(tab);
1986 done:
1987 bset = isl_basic_set_simplify(bset);
1988 bset = isl_basic_set_finalize(bset);
1989 isl_basic_set_free(context);
1990 return bset;
1991 error:
1992 isl_tab_free(tab);
1993 isl_basic_set_free(combined);
1994 isl_basic_set_free(context);
1995 isl_basic_set_free(bset);
1996 return NULL;
1999 /* Remove all information from bset that is redundant in the context
2000 * of context. In particular, equalities that are linear combinations
2001 * of those in context are removed. Then the inequalities that are
2002 * redundant in the context of the equalities and inequalities of
2003 * context are removed.
2005 * First of all, we drop those constraints from "context"
2006 * that are irrelevant for computing the gist of "bset".
2007 * Alternatively, we could factorize the intersection of "context" and "bset".
2009 * We first compute the integer affine hull of the intersection,
2010 * compute the gist inside this affine hull and then add back
2011 * those equalities that are not implied by the context.
2013 * If two constraints are mutually redundant, then uset_gist_full
2014 * will remove the second of those constraints. We therefore first
2015 * sort the constraints so that constraints not involving existentially
2016 * quantified variables are given precedence over those that do.
2017 * We have to perform this sorting before the variable compression,
2018 * because that may effect the order of the variables.
2020 static __isl_give isl_basic_set *uset_gist(__isl_take isl_basic_set *bset,
2021 __isl_take isl_basic_set *context)
2023 isl_mat *eq;
2024 isl_mat *T, *T2;
2025 isl_basic_set *aff;
2026 isl_basic_set *aff_context;
2027 unsigned total;
2029 if (!bset || !context)
2030 goto error;
2032 context = drop_irrelevant_constraints(context, bset);
2034 bset = isl_basic_set_intersect(bset, isl_basic_set_copy(context));
2035 if (isl_basic_set_plain_is_empty(bset)) {
2036 isl_basic_set_free(context);
2037 return bset;
2039 bset = isl_basic_set_sort_constraints(bset);
2040 aff = isl_basic_set_affine_hull(isl_basic_set_copy(bset));
2041 if (!aff)
2042 goto error;
2043 if (isl_basic_set_plain_is_empty(aff)) {
2044 isl_basic_set_free(aff);
2045 isl_basic_set_free(context);
2046 return bset;
2048 if (aff->n_eq == 0) {
2049 isl_basic_set_free(aff);
2050 return uset_gist_full(bset, context);
2052 total = isl_basic_set_total_dim(bset);
2053 eq = isl_mat_sub_alloc6(bset->ctx, aff->eq, 0, aff->n_eq, 0, 1 + total);
2054 eq = isl_mat_cow(eq);
2055 T = isl_mat_variable_compression(eq, &T2);
2056 if (T && T->n_col == 0) {
2057 isl_mat_free(T);
2058 isl_mat_free(T2);
2059 isl_basic_set_free(context);
2060 isl_basic_set_free(aff);
2061 return isl_basic_set_set_to_empty(bset);
2064 aff_context = isl_basic_set_affine_hull(isl_basic_set_copy(context));
2066 bset = isl_basic_set_preimage(bset, isl_mat_copy(T));
2067 context = isl_basic_set_preimage(context, T);
2069 bset = uset_gist_full(bset, context);
2070 bset = isl_basic_set_preimage(bset, T2);
2071 bset = isl_basic_set_intersect(bset, aff);
2072 bset = isl_basic_set_reduce_using_equalities(bset, aff_context);
2074 if (bset) {
2075 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
2076 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
2079 return bset;
2080 error:
2081 isl_basic_set_free(bset);
2082 isl_basic_set_free(context);
2083 return NULL;
2086 /* Normalize the divs in "bmap" in the context of the equalities in "context".
2087 * We simply add the equalities in context to bmap and then do a regular
2088 * div normalizations. Better results can be obtained by normalizing
2089 * only the divs in bmap than do not also appear in context.
2090 * We need to be careful to reduce the divs using the equalities
2091 * so that later calls to isl_basic_map_overlying_set wouldn't introduce
2092 * spurious constraints.
2094 static struct isl_basic_map *normalize_divs_in_context(
2095 struct isl_basic_map *bmap, struct isl_basic_map *context)
2097 int i;
2098 unsigned total_context;
2099 int div_eq;
2101 div_eq = n_pure_div_eq(bmap);
2102 if (div_eq == 0)
2103 return bmap;
2105 if (context->n_div > 0)
2106 bmap = isl_basic_map_align_divs(bmap, context);
2108 total_context = isl_basic_map_total_dim(context);
2109 bmap = isl_basic_map_extend_constraints(bmap, context->n_eq, 0);
2110 for (i = 0; i < context->n_eq; ++i) {
2111 int k;
2112 k = isl_basic_map_alloc_equality(bmap);
2113 isl_seq_cpy(bmap->eq[k], context->eq[i], 1 + total_context);
2114 isl_seq_clr(bmap->eq[k] + 1 + total_context,
2115 isl_basic_map_total_dim(bmap) - total_context);
2117 bmap = isl_basic_map_gauss(bmap, NULL);
2118 bmap = normalize_divs(bmap, NULL);
2119 bmap = isl_basic_map_gauss(bmap, NULL);
2120 return bmap;
2123 struct isl_basic_map *isl_basic_map_gist(struct isl_basic_map *bmap,
2124 struct isl_basic_map *context)
2126 struct isl_basic_set *bset;
2128 if (!bmap || !context)
2129 goto error;
2131 if (isl_basic_map_is_universe(bmap)) {
2132 isl_basic_map_free(context);
2133 return bmap;
2135 if (isl_basic_map_plain_is_empty(context)) {
2136 isl_basic_map_free(bmap);
2137 return context;
2139 if (isl_basic_map_plain_is_empty(bmap)) {
2140 isl_basic_map_free(context);
2141 return bmap;
2144 bmap = isl_basic_map_remove_redundancies(bmap);
2145 context = isl_basic_map_remove_redundancies(context);
2147 if (context->n_eq)
2148 bmap = normalize_divs_in_context(bmap, context);
2150 context = isl_basic_map_align_divs(context, bmap);
2151 bmap = isl_basic_map_align_divs(bmap, context);
2153 bset = uset_gist(isl_basic_map_underlying_set(isl_basic_map_copy(bmap)),
2154 isl_basic_map_underlying_set(context));
2156 return isl_basic_map_overlying_set(bset, bmap);
2157 error:
2158 isl_basic_map_free(bmap);
2159 isl_basic_map_free(context);
2160 return NULL;
2164 * Assumes context has no implicit divs.
2166 __isl_give isl_map *isl_map_gist_basic_map(__isl_take isl_map *map,
2167 __isl_take isl_basic_map *context)
2169 int i;
2171 if (!map || !context)
2172 goto error;;
2174 if (isl_basic_map_plain_is_empty(context)) {
2175 isl_map_free(map);
2176 return isl_map_from_basic_map(context);
2179 context = isl_basic_map_remove_redundancies(context);
2180 map = isl_map_cow(map);
2181 if (!map || !context)
2182 goto error;;
2183 isl_assert(map->ctx, isl_space_is_equal(map->dim, context->dim), goto error);
2184 map = isl_map_compute_divs(map);
2185 for (i = 0; i < map->n; ++i)
2186 context = isl_basic_map_align_divs(context, map->p[i]);
2187 for (i = map->n - 1; i >= 0; --i) {
2188 map->p[i] = isl_basic_map_gist(map->p[i],
2189 isl_basic_map_copy(context));
2190 if (!map->p[i])
2191 goto error;
2192 if (isl_basic_map_plain_is_empty(map->p[i])) {
2193 isl_basic_map_free(map->p[i]);
2194 if (i != map->n - 1)
2195 map->p[i] = map->p[map->n - 1];
2196 map->n--;
2199 isl_basic_map_free(context);
2200 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2201 return map;
2202 error:
2203 isl_map_free(map);
2204 isl_basic_map_free(context);
2205 return NULL;
2208 /* Return a map that has the same intersection with "context" as "map"
2209 * and that as "simple" as possible.
2211 * If "map" is already the universe, then we cannot make it any simpler.
2212 * Similarly, if "context" is the universe, then we cannot exploit it
2213 * to simplify "map"
2214 * If "map" and "context" are identical to each other, then we can
2215 * return the corresponding universe.
2217 * If none of these cases apply, we have to work a bit harder.
2219 static __isl_give isl_map *map_gist(__isl_take isl_map *map,
2220 __isl_take isl_map *context)
2222 int equal;
2223 int is_universe;
2225 is_universe = isl_map_plain_is_universe(map);
2226 if (is_universe >= 0 && !is_universe)
2227 is_universe = isl_map_plain_is_universe(context);
2228 if (is_universe < 0)
2229 goto error;
2230 if (is_universe) {
2231 isl_map_free(context);
2232 return map;
2235 equal = isl_map_plain_is_equal(map, context);
2236 if (equal < 0)
2237 goto error;
2238 if (equal) {
2239 isl_map *res = isl_map_universe(isl_map_get_space(map));
2240 isl_map_free(map);
2241 isl_map_free(context);
2242 return res;
2245 context = isl_map_compute_divs(context);
2246 return isl_map_gist_basic_map(map, isl_map_simple_hull(context));
2247 error:
2248 isl_map_free(map);
2249 isl_map_free(context);
2250 return NULL;
2253 __isl_give isl_map *isl_map_gist(__isl_take isl_map *map,
2254 __isl_take isl_map *context)
2256 return isl_map_align_params_map_map_and(map, context, &map_gist);
2259 struct isl_basic_set *isl_basic_set_gist(struct isl_basic_set *bset,
2260 struct isl_basic_set *context)
2262 return (struct isl_basic_set *)isl_basic_map_gist(
2263 (struct isl_basic_map *)bset, (struct isl_basic_map *)context);
2266 __isl_give isl_set *isl_set_gist_basic_set(__isl_take isl_set *set,
2267 __isl_take isl_basic_set *context)
2269 return (struct isl_set *)isl_map_gist_basic_map((struct isl_map *)set,
2270 (struct isl_basic_map *)context);
2273 __isl_give isl_set *isl_set_gist_params_basic_set(__isl_take isl_set *set,
2274 __isl_take isl_basic_set *context)
2276 isl_space *space = isl_set_get_space(set);
2277 isl_basic_set *dom_context = isl_basic_set_universe(space);
2278 dom_context = isl_basic_set_intersect_params(dom_context, context);
2279 return isl_set_gist_basic_set(set, dom_context);
2282 __isl_give isl_set *isl_set_gist(__isl_take isl_set *set,
2283 __isl_take isl_set *context)
2285 return (struct isl_set *)isl_map_gist((struct isl_map *)set,
2286 (struct isl_map *)context);
2289 __isl_give isl_map *isl_map_gist_domain(__isl_take isl_map *map,
2290 __isl_take isl_set *context)
2292 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2293 map_context = isl_map_intersect_domain(map_context, context);
2294 return isl_map_gist(map, map_context);
2297 __isl_give isl_map *isl_map_gist_range(__isl_take isl_map *map,
2298 __isl_take isl_set *context)
2300 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2301 map_context = isl_map_intersect_range(map_context, context);
2302 return isl_map_gist(map, map_context);
2305 __isl_give isl_map *isl_map_gist_params(__isl_take isl_map *map,
2306 __isl_take isl_set *context)
2308 isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2309 map_context = isl_map_intersect_params(map_context, context);
2310 return isl_map_gist(map, map_context);
2313 __isl_give isl_set *isl_set_gist_params(__isl_take isl_set *set,
2314 __isl_take isl_set *context)
2316 return isl_map_gist_params(set, context);
2319 /* Quick check to see if two basic maps are disjoint.
2320 * In particular, we reduce the equalities and inequalities of
2321 * one basic map in the context of the equalities of the other
2322 * basic map and check if we get a contradiction.
2324 int isl_basic_map_plain_is_disjoint(__isl_keep isl_basic_map *bmap1,
2325 __isl_keep isl_basic_map *bmap2)
2327 struct isl_vec *v = NULL;
2328 int *elim = NULL;
2329 unsigned total;
2330 int i;
2332 if (!bmap1 || !bmap2)
2333 return -1;
2334 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
2335 return -1);
2336 if (bmap1->n_div || bmap2->n_div)
2337 return 0;
2338 if (!bmap1->n_eq && !bmap2->n_eq)
2339 return 0;
2341 total = isl_space_dim(bmap1->dim, isl_dim_all);
2342 if (total == 0)
2343 return 0;
2344 v = isl_vec_alloc(bmap1->ctx, 1 + total);
2345 if (!v)
2346 goto error;
2347 elim = isl_alloc_array(bmap1->ctx, int, total);
2348 if (!elim)
2349 goto error;
2350 compute_elimination_index(bmap1, elim);
2351 for (i = 0; i < bmap2->n_eq; ++i) {
2352 int reduced;
2353 reduced = reduced_using_equalities(v->block.data, bmap2->eq[i],
2354 bmap1, elim);
2355 if (reduced && !isl_int_is_zero(v->block.data[0]) &&
2356 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2357 goto disjoint;
2359 for (i = 0; i < bmap2->n_ineq; ++i) {
2360 int reduced;
2361 reduced = reduced_using_equalities(v->block.data,
2362 bmap2->ineq[i], bmap1, elim);
2363 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2364 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2365 goto disjoint;
2367 compute_elimination_index(bmap2, elim);
2368 for (i = 0; i < bmap1->n_ineq; ++i) {
2369 int reduced;
2370 reduced = reduced_using_equalities(v->block.data,
2371 bmap1->ineq[i], bmap2, elim);
2372 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2373 isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2374 goto disjoint;
2376 isl_vec_free(v);
2377 free(elim);
2378 return 0;
2379 disjoint:
2380 isl_vec_free(v);
2381 free(elim);
2382 return 1;
2383 error:
2384 isl_vec_free(v);
2385 free(elim);
2386 return -1;
2389 int isl_basic_set_plain_is_disjoint(__isl_keep isl_basic_set *bset1,
2390 __isl_keep isl_basic_set *bset2)
2392 return isl_basic_map_plain_is_disjoint((struct isl_basic_map *)bset1,
2393 (struct isl_basic_map *)bset2);
2396 /* Are "map1" and "map2" obviously disjoint?
2398 * If one of them is empty or if they live in different spaces (ignoring
2399 * parameters), then they are clearly disjoint.
2401 * If they have different parameters, then we skip any further tests.
2403 * If they are obviously equal, but not obviously empty, then we will
2404 * not be able to detect if they are disjoint.
2406 * Otherwise we check if each basic map in "map1" is obviously disjoint
2407 * from each basic map in "map2".
2409 int isl_map_plain_is_disjoint(__isl_keep isl_map *map1,
2410 __isl_keep isl_map *map2)
2412 int i, j;
2413 int disjoint;
2414 int intersect;
2415 int match;
2417 if (!map1 || !map2)
2418 return -1;
2420 disjoint = isl_map_plain_is_empty(map1);
2421 if (disjoint < 0 || disjoint)
2422 return disjoint;
2424 disjoint = isl_map_plain_is_empty(map2);
2425 if (disjoint < 0 || disjoint)
2426 return disjoint;
2428 match = isl_space_tuple_match(map1->dim, isl_dim_in,
2429 map2->dim, isl_dim_in);
2430 if (match < 0 || !match)
2431 return match < 0 ? -1 : 1;
2433 match = isl_space_tuple_match(map1->dim, isl_dim_out,
2434 map2->dim, isl_dim_out);
2435 if (match < 0 || !match)
2436 return match < 0 ? -1 : 1;
2438 match = isl_space_match(map1->dim, isl_dim_param,
2439 map2->dim, isl_dim_param);
2440 if (match < 0 || !match)
2441 return match < 0 ? -1 : 0;
2443 intersect = isl_map_plain_is_equal(map1, map2);
2444 if (intersect < 0 || intersect)
2445 return intersect < 0 ? -1 : 0;
2447 for (i = 0; i < map1->n; ++i) {
2448 for (j = 0; j < map2->n; ++j) {
2449 int d = isl_basic_map_plain_is_disjoint(map1->p[i],
2450 map2->p[j]);
2451 if (d != 1)
2452 return d;
2455 return 1;
2458 /* Are "map1" and "map2" disjoint?
2460 * They are disjoint if they are "obviously disjoint" or if one of them
2461 * is empty. Otherwise, they are not disjoint if one of them is universal.
2462 * If none of these cases apply, we compute the intersection and see if
2463 * the result is empty.
2465 int isl_map_is_disjoint(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
2467 int disjoint;
2468 int intersect;
2469 isl_map *test;
2471 disjoint = isl_map_plain_is_disjoint(map1, map2);
2472 if (disjoint < 0 || disjoint)
2473 return disjoint;
2475 disjoint = isl_map_is_empty(map1);
2476 if (disjoint < 0 || disjoint)
2477 return disjoint;
2479 disjoint = isl_map_is_empty(map2);
2480 if (disjoint < 0 || disjoint)
2481 return disjoint;
2483 intersect = isl_map_plain_is_universe(map1);
2484 if (intersect < 0 || intersect)
2485 return intersect < 0 ? -1 : 0;
2487 intersect = isl_map_plain_is_universe(map2);
2488 if (intersect < 0 || intersect)
2489 return intersect < 0 ? -1 : 0;
2491 test = isl_map_intersect(isl_map_copy(map1), isl_map_copy(map2));
2492 disjoint = isl_map_is_empty(test);
2493 isl_map_free(test);
2495 return disjoint;
2498 int isl_set_plain_is_disjoint(__isl_keep isl_set *set1,
2499 __isl_keep isl_set *set2)
2501 return isl_map_plain_is_disjoint((struct isl_map *)set1,
2502 (struct isl_map *)set2);
2505 /* Are "set1" and "set2" disjoint?
2507 int isl_set_is_disjoint(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
2509 return isl_map_is_disjoint(set1, set2);
2512 int isl_set_fast_is_disjoint(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
2514 return isl_set_plain_is_disjoint(set1, set2);
2517 /* Check if we can combine a given div with lower bound l and upper
2518 * bound u with some other div and if so return that other div.
2519 * Otherwise return -1.
2521 * We first check that
2522 * - the bounds are opposites of each other (except for the constant
2523 * term)
2524 * - the bounds do not reference any other div
2525 * - no div is defined in terms of this div
2527 * Let m be the size of the range allowed on the div by the bounds.
2528 * That is, the bounds are of the form
2530 * e <= a <= e + m - 1
2532 * with e some expression in the other variables.
2533 * We look for another div b such that no third div is defined in terms
2534 * of this second div b and such that in any constraint that contains
2535 * a (except for the given lower and upper bound), also contains b
2536 * with a coefficient that is m times that of b.
2537 * That is, all constraints (execpt for the lower and upper bound)
2538 * are of the form
2540 * e + f (a + m b) >= 0
2542 * If so, we return b so that "a + m b" can be replaced by
2543 * a single div "c = a + m b".
2545 static int div_find_coalesce(struct isl_basic_map *bmap, int *pairs,
2546 unsigned div, unsigned l, unsigned u)
2548 int i, j;
2549 unsigned dim;
2550 int coalesce = -1;
2552 if (bmap->n_div <= 1)
2553 return -1;
2554 dim = isl_space_dim(bmap->dim, isl_dim_all);
2555 if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim, div) != -1)
2556 return -1;
2557 if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim + div + 1,
2558 bmap->n_div - div - 1) != -1)
2559 return -1;
2560 if (!isl_seq_is_neg(bmap->ineq[l] + 1, bmap->ineq[u] + 1,
2561 dim + bmap->n_div))
2562 return -1;
2564 for (i = 0; i < bmap->n_div; ++i) {
2565 if (isl_int_is_zero(bmap->div[i][0]))
2566 continue;
2567 if (!isl_int_is_zero(bmap->div[i][1 + 1 + dim + div]))
2568 return -1;
2571 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2572 if (isl_int_is_neg(bmap->ineq[l][0])) {
2573 isl_int_sub(bmap->ineq[l][0],
2574 bmap->ineq[l][0], bmap->ineq[u][0]);
2575 bmap = isl_basic_map_copy(bmap);
2576 bmap = isl_basic_map_set_to_empty(bmap);
2577 isl_basic_map_free(bmap);
2578 return -1;
2580 isl_int_add_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2581 for (i = 0; i < bmap->n_div; ++i) {
2582 if (i == div)
2583 continue;
2584 if (!pairs[i])
2585 continue;
2586 for (j = 0; j < bmap->n_div; ++j) {
2587 if (isl_int_is_zero(bmap->div[j][0]))
2588 continue;
2589 if (!isl_int_is_zero(bmap->div[j][1 + 1 + dim + i]))
2590 break;
2592 if (j < bmap->n_div)
2593 continue;
2594 for (j = 0; j < bmap->n_ineq; ++j) {
2595 int valid;
2596 if (j == l || j == u)
2597 continue;
2598 if (isl_int_is_zero(bmap->ineq[j][1 + dim + div]))
2599 continue;
2600 if (isl_int_is_zero(bmap->ineq[j][1 + dim + i]))
2601 break;
2602 isl_int_mul(bmap->ineq[j][1 + dim + div],
2603 bmap->ineq[j][1 + dim + div],
2604 bmap->ineq[l][0]);
2605 valid = isl_int_eq(bmap->ineq[j][1 + dim + div],
2606 bmap->ineq[j][1 + dim + i]);
2607 isl_int_divexact(bmap->ineq[j][1 + dim + div],
2608 bmap->ineq[j][1 + dim + div],
2609 bmap->ineq[l][0]);
2610 if (!valid)
2611 break;
2613 if (j < bmap->n_ineq)
2614 continue;
2615 coalesce = i;
2616 break;
2618 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2619 isl_int_sub(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2620 return coalesce;
2623 /* Given a lower and an upper bound on div i, construct an inequality
2624 * that when nonnegative ensures that this pair of bounds always allows
2625 * for an integer value of the given div.
2626 * The lower bound is inequality l, while the upper bound is inequality u.
2627 * The constructed inequality is stored in ineq.
2628 * g, fl, fu are temporary scalars.
2630 * Let the upper bound be
2632 * -n_u a + e_u >= 0
2634 * and the lower bound
2636 * n_l a + e_l >= 0
2638 * Let n_u = f_u g and n_l = f_l g, with g = gcd(n_u, n_l).
2639 * We have
2641 * - f_u e_l <= f_u f_l g a <= f_l e_u
2643 * Since all variables are integer valued, this is equivalent to
2645 * - f_u e_l - (f_u - 1) <= f_u f_l g a <= f_l e_u + (f_l - 1)
2647 * If this interval is at least f_u f_l g, then it contains at least
2648 * one integer value for a.
2649 * That is, the test constraint is
2651 * f_l e_u + f_u e_l + f_l - 1 + f_u - 1 + 1 >= f_u f_l g
2653 static void construct_test_ineq(struct isl_basic_map *bmap, int i,
2654 int l, int u, isl_int *ineq, isl_int g, isl_int fl, isl_int fu)
2656 unsigned dim;
2657 dim = isl_space_dim(bmap->dim, isl_dim_all);
2659 isl_int_gcd(g, bmap->ineq[l][1 + dim + i], bmap->ineq[u][1 + dim + i]);
2660 isl_int_divexact(fl, bmap->ineq[l][1 + dim + i], g);
2661 isl_int_divexact(fu, bmap->ineq[u][1 + dim + i], g);
2662 isl_int_neg(fu, fu);
2663 isl_seq_combine(ineq, fl, bmap->ineq[u], fu, bmap->ineq[l],
2664 1 + dim + bmap->n_div);
2665 isl_int_add(ineq[0], ineq[0], fl);
2666 isl_int_add(ineq[0], ineq[0], fu);
2667 isl_int_sub_ui(ineq[0], ineq[0], 1);
2668 isl_int_mul(g, g, fl);
2669 isl_int_mul(g, g, fu);
2670 isl_int_sub(ineq[0], ineq[0], g);
2673 /* Remove more kinds of divs that are not strictly needed.
2674 * In particular, if all pairs of lower and upper bounds on a div
2675 * are such that they allow at least one integer value of the div,
2676 * the we can eliminate the div using Fourier-Motzkin without
2677 * introducing any spurious solutions.
2679 static struct isl_basic_map *drop_more_redundant_divs(
2680 struct isl_basic_map *bmap, int *pairs, int n)
2682 struct isl_tab *tab = NULL;
2683 struct isl_vec *vec = NULL;
2684 unsigned dim;
2685 int remove = -1;
2686 isl_int g, fl, fu;
2688 isl_int_init(g);
2689 isl_int_init(fl);
2690 isl_int_init(fu);
2692 if (!bmap)
2693 goto error;
2695 dim = isl_space_dim(bmap->dim, isl_dim_all);
2696 vec = isl_vec_alloc(bmap->ctx, 1 + dim + bmap->n_div);
2697 if (!vec)
2698 goto error;
2700 tab = isl_tab_from_basic_map(bmap, 0);
2702 while (n > 0) {
2703 int i, l, u;
2704 int best = -1;
2705 enum isl_lp_result res;
2707 for (i = 0; i < bmap->n_div; ++i) {
2708 if (!pairs[i])
2709 continue;
2710 if (best >= 0 && pairs[best] <= pairs[i])
2711 continue;
2712 best = i;
2715 i = best;
2716 for (l = 0; l < bmap->n_ineq; ++l) {
2717 if (!isl_int_is_pos(bmap->ineq[l][1 + dim + i]))
2718 continue;
2719 for (u = 0; u < bmap->n_ineq; ++u) {
2720 if (!isl_int_is_neg(bmap->ineq[u][1 + dim + i]))
2721 continue;
2722 construct_test_ineq(bmap, i, l, u,
2723 vec->el, g, fl, fu);
2724 res = isl_tab_min(tab, vec->el,
2725 bmap->ctx->one, &g, NULL, 0);
2726 if (res == isl_lp_error)
2727 goto error;
2728 if (res == isl_lp_empty) {
2729 bmap = isl_basic_map_set_to_empty(bmap);
2730 break;
2732 if (res != isl_lp_ok || isl_int_is_neg(g))
2733 break;
2735 if (u < bmap->n_ineq)
2736 break;
2738 if (l == bmap->n_ineq) {
2739 remove = i;
2740 break;
2742 pairs[i] = 0;
2743 --n;
2746 isl_tab_free(tab);
2747 isl_vec_free(vec);
2749 isl_int_clear(g);
2750 isl_int_clear(fl);
2751 isl_int_clear(fu);
2753 free(pairs);
2755 if (remove < 0)
2756 return bmap;
2758 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, remove, 1);
2759 return isl_basic_map_drop_redundant_divs(bmap);
2760 error:
2761 free(pairs);
2762 isl_basic_map_free(bmap);
2763 isl_tab_free(tab);
2764 isl_vec_free(vec);
2765 isl_int_clear(g);
2766 isl_int_clear(fl);
2767 isl_int_clear(fu);
2768 return NULL;
2771 /* Given a pair of divs div1 and div2 such that, expect for the lower bound l
2772 * and the upper bound u, div1 always occurs together with div2 in the form
2773 * (div1 + m div2), where m is the constant range on the variable div1
2774 * allowed by l and u, replace the pair div1 and div2 by a single
2775 * div that is equal to div1 + m div2.
2777 * The new div will appear in the location that contains div2.
2778 * We need to modify all constraints that contain
2779 * div2 = (div - div1) / m
2780 * (If a constraint does not contain div2, it will also not contain div1.)
2781 * If the constraint also contains div1, then we know they appear
2782 * as f (div1 + m div2) and we can simply replace (div1 + m div2) by div,
2783 * i.e., the coefficient of div is f.
2785 * Otherwise, we first need to introduce div1 into the constraint.
2786 * Let the l be
2788 * div1 + f >=0
2790 * and u
2792 * -div1 + f' >= 0
2794 * A lower bound on div2
2796 * n div2 + t >= 0
2798 * can be replaced by
2800 * (n * (m div 2 + div1) + m t + n f)/g >= 0
2802 * with g = gcd(m,n).
2803 * An upper bound
2805 * -n div2 + t >= 0
2807 * can be replaced by
2809 * (-n * (m div2 + div1) + m t + n f')/g >= 0
2811 * These constraint are those that we would obtain from eliminating
2812 * div1 using Fourier-Motzkin.
2814 * After all constraints have been modified, we drop the lower and upper
2815 * bound and then drop div1.
2817 static struct isl_basic_map *coalesce_divs(struct isl_basic_map *bmap,
2818 unsigned div1, unsigned div2, unsigned l, unsigned u)
2820 isl_int a;
2821 isl_int b;
2822 isl_int m;
2823 unsigned dim, total;
2824 int i;
2826 dim = isl_space_dim(bmap->dim, isl_dim_all);
2827 total = 1 + dim + bmap->n_div;
2829 isl_int_init(a);
2830 isl_int_init(b);
2831 isl_int_init(m);
2832 isl_int_add(m, bmap->ineq[l][0], bmap->ineq[u][0]);
2833 isl_int_add_ui(m, m, 1);
2835 for (i = 0; i < bmap->n_ineq; ++i) {
2836 if (i == l || i == u)
2837 continue;
2838 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div2]))
2839 continue;
2840 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div1])) {
2841 isl_int_gcd(b, m, bmap->ineq[i][1 + dim + div2]);
2842 isl_int_divexact(a, m, b);
2843 isl_int_divexact(b, bmap->ineq[i][1 + dim + div2], b);
2844 if (isl_int_is_pos(b)) {
2845 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2846 b, bmap->ineq[l], total);
2847 } else {
2848 isl_int_neg(b, b);
2849 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2850 b, bmap->ineq[u], total);
2853 isl_int_set(bmap->ineq[i][1 + dim + div2],
2854 bmap->ineq[i][1 + dim + div1]);
2855 isl_int_set_si(bmap->ineq[i][1 + dim + div1], 0);
2858 isl_int_clear(a);
2859 isl_int_clear(b);
2860 isl_int_clear(m);
2861 if (l > u) {
2862 isl_basic_map_drop_inequality(bmap, l);
2863 isl_basic_map_drop_inequality(bmap, u);
2864 } else {
2865 isl_basic_map_drop_inequality(bmap, u);
2866 isl_basic_map_drop_inequality(bmap, l);
2868 bmap = isl_basic_map_drop_div(bmap, div1);
2869 return bmap;
2872 /* First check if we can coalesce any pair of divs and
2873 * then continue with dropping more redundant divs.
2875 * We loop over all pairs of lower and upper bounds on a div
2876 * with coefficient 1 and -1, respectively, check if there
2877 * is any other div "c" with which we can coalesce the div
2878 * and if so, perform the coalescing.
2880 static struct isl_basic_map *coalesce_or_drop_more_redundant_divs(
2881 struct isl_basic_map *bmap, int *pairs, int n)
2883 int i, l, u;
2884 unsigned dim;
2886 dim = isl_space_dim(bmap->dim, isl_dim_all);
2888 for (i = 0; i < bmap->n_div; ++i) {
2889 if (!pairs[i])
2890 continue;
2891 for (l = 0; l < bmap->n_ineq; ++l) {
2892 if (!isl_int_is_one(bmap->ineq[l][1 + dim + i]))
2893 continue;
2894 for (u = 0; u < bmap->n_ineq; ++u) {
2895 int c;
2897 if (!isl_int_is_negone(bmap->ineq[u][1+dim+i]))
2898 continue;
2899 c = div_find_coalesce(bmap, pairs, i, l, u);
2900 if (c < 0)
2901 continue;
2902 free(pairs);
2903 bmap = coalesce_divs(bmap, i, c, l, u);
2904 return isl_basic_map_drop_redundant_divs(bmap);
2909 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
2910 return bmap;
2912 return drop_more_redundant_divs(bmap, pairs, n);
2915 /* Remove divs that are not strictly needed.
2916 * In particular, if a div only occurs positively (or negatively)
2917 * in constraints, then it can simply be dropped.
2918 * Also, if a div occurs in only two constraints and if moreover
2919 * those two constraints are opposite to each other, except for the constant
2920 * term and if the sum of the constant terms is such that for any value
2921 * of the other values, there is always at least one integer value of the
2922 * div, i.e., if one plus this sum is greater than or equal to
2923 * the (absolute value) of the coefficent of the div in the constraints,
2924 * then we can also simply drop the div.
2926 * We skip divs that appear in equalities or in the definition of other divs.
2927 * Divs that appear in the definition of other divs usually occur in at least
2928 * 4 constraints, but the constraints may have been simplified.
2930 * If any divs are left after these simple checks then we move on
2931 * to more complicated cases in drop_more_redundant_divs.
2933 struct isl_basic_map *isl_basic_map_drop_redundant_divs(
2934 struct isl_basic_map *bmap)
2936 int i, j;
2937 unsigned off;
2938 int *pairs = NULL;
2939 int n = 0;
2941 if (!bmap)
2942 goto error;
2944 off = isl_space_dim(bmap->dim, isl_dim_all);
2945 pairs = isl_calloc_array(bmap->ctx, int, bmap->n_div);
2946 if (!pairs)
2947 goto error;
2949 for (i = 0; i < bmap->n_div; ++i) {
2950 int pos, neg;
2951 int last_pos, last_neg;
2952 int redundant;
2953 int defined;
2955 defined = !isl_int_is_zero(bmap->div[i][0]);
2956 for (j = i; j < bmap->n_div; ++j)
2957 if (!isl_int_is_zero(bmap->div[j][1 + 1 + off + i]))
2958 break;
2959 if (j < bmap->n_div)
2960 continue;
2961 for (j = 0; j < bmap->n_eq; ++j)
2962 if (!isl_int_is_zero(bmap->eq[j][1 + off + i]))
2963 break;
2964 if (j < bmap->n_eq)
2965 continue;
2966 ++n;
2967 pos = neg = 0;
2968 for (j = 0; j < bmap->n_ineq; ++j) {
2969 if (isl_int_is_pos(bmap->ineq[j][1 + off + i])) {
2970 last_pos = j;
2971 ++pos;
2973 if (isl_int_is_neg(bmap->ineq[j][1 + off + i])) {
2974 last_neg = j;
2975 ++neg;
2978 pairs[i] = pos * neg;
2979 if (pairs[i] == 0) {
2980 for (j = bmap->n_ineq - 1; j >= 0; --j)
2981 if (!isl_int_is_zero(bmap->ineq[j][1+off+i]))
2982 isl_basic_map_drop_inequality(bmap, j);
2983 bmap = isl_basic_map_drop_div(bmap, i);
2984 free(pairs);
2985 return isl_basic_map_drop_redundant_divs(bmap);
2987 if (pairs[i] != 1)
2988 continue;
2989 if (!isl_seq_is_neg(bmap->ineq[last_pos] + 1,
2990 bmap->ineq[last_neg] + 1,
2991 off + bmap->n_div))
2992 continue;
2994 isl_int_add(bmap->ineq[last_pos][0],
2995 bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
2996 isl_int_add_ui(bmap->ineq[last_pos][0],
2997 bmap->ineq[last_pos][0], 1);
2998 redundant = isl_int_ge(bmap->ineq[last_pos][0],
2999 bmap->ineq[last_pos][1+off+i]);
3000 isl_int_sub_ui(bmap->ineq[last_pos][0],
3001 bmap->ineq[last_pos][0], 1);
3002 isl_int_sub(bmap->ineq[last_pos][0],
3003 bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
3004 if (!redundant) {
3005 if (defined ||
3006 !ok_to_set_div_from_bound(bmap, i, last_pos)) {
3007 pairs[i] = 0;
3008 --n;
3009 continue;
3011 bmap = set_div_from_lower_bound(bmap, i, last_pos);
3012 bmap = isl_basic_map_simplify(bmap);
3013 free(pairs);
3014 return isl_basic_map_drop_redundant_divs(bmap);
3016 if (last_pos > last_neg) {
3017 isl_basic_map_drop_inequality(bmap, last_pos);
3018 isl_basic_map_drop_inequality(bmap, last_neg);
3019 } else {
3020 isl_basic_map_drop_inequality(bmap, last_neg);
3021 isl_basic_map_drop_inequality(bmap, last_pos);
3023 bmap = isl_basic_map_drop_div(bmap, i);
3024 free(pairs);
3025 return isl_basic_map_drop_redundant_divs(bmap);
3028 if (n > 0)
3029 return coalesce_or_drop_more_redundant_divs(bmap, pairs, n);
3031 free(pairs);
3032 return bmap;
3033 error:
3034 free(pairs);
3035 isl_basic_map_free(bmap);
3036 return NULL;
3039 struct isl_basic_set *isl_basic_set_drop_redundant_divs(
3040 struct isl_basic_set *bset)
3042 return (struct isl_basic_set *)
3043 isl_basic_map_drop_redundant_divs((struct isl_basic_map *)bset);
3046 struct isl_map *isl_map_drop_redundant_divs(struct isl_map *map)
3048 int i;
3050 if (!map)
3051 return NULL;
3052 for (i = 0; i < map->n; ++i) {
3053 map->p[i] = isl_basic_map_drop_redundant_divs(map->p[i]);
3054 if (!map->p[i])
3055 goto error;
3057 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3058 return map;
3059 error:
3060 isl_map_free(map);
3061 return NULL;
3064 struct isl_set *isl_set_drop_redundant_divs(struct isl_set *set)
3066 return (struct isl_set *)
3067 isl_map_drop_redundant_divs((struct isl_map *)set);