add isl_map_{lexmin,lexmax}_pw_multi_aff
[platform/upstream/isl.git] / isl_map_simplify.c
1 /*
2  * Copyright 2008-2009 Katholieke Universiteit Leuven
3  * Copyright 2012      Ecole Normale Superieure
4  *
5  * Use of this software is governed by the GNU LGPLv2.1 license
6  *
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
10  */
11
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
22 static void swap_equality(struct isl_basic_map *bmap, int a, int b)
23 {
24         isl_int *t = bmap->eq[a];
25         bmap->eq[a] = bmap->eq[b];
26         bmap->eq[b] = t;
27 }
28
29 static void swap_inequality(struct isl_basic_map *bmap, int a, int b)
30 {
31         if (a != b) {
32                 isl_int *t = bmap->ineq[a];
33                 bmap->ineq[a] = bmap->ineq[b];
34                 bmap->ineq[b] = t;
35         }
36 }
37
38 static void constraint_drop_vars(isl_int *c, unsigned n, unsigned rem)
39 {
40         isl_seq_cpy(c, c + n, rem);
41         isl_seq_clr(c + rem, n);
42 }
43
44 /* Drop n dimensions starting at first.
45  *
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.
50  */
51 struct isl_basic_set *isl_basic_set_drop_dims(
52                 struct isl_basic_set *bset, unsigned first, unsigned n)
53 {
54         int i;
55
56         if (!bset)
57                 goto error;
58
59         isl_assert(bset->ctx, first + n <= bset->dim->n_out, goto error);
60
61         if (n == 0 && !isl_space_get_tuple_name(bset->dim, isl_dim_set))
62                 return bset;
63
64         bset = isl_basic_set_cow(bset);
65         if (!bset)
66                 return NULL;
67
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);
71
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);
75
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);
79
80         bset->dim = isl_space_drop_outputs(bset->dim, first, n);
81         if (!bset->dim)
82                 goto error;
83
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;
90 }
91
92 struct isl_set *isl_set_drop_dims(
93                 struct isl_set *set, unsigned first, unsigned n)
94 {
95         int i;
96
97         if (!set)
98                 goto error;
99
100         isl_assert(set->ctx, first + n <= set->dim->n_out, goto error);
101
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;
110
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;
115         }
116
117         ISL_F_CLR(set, ISL_SET_NORMALIZED);
118         return set;
119 error:
120         isl_set_free(set);
121         return NULL;
122 }
123
124 /* Move "n" divs starting at "first" to the end of the list of divs.
125  */
126 static struct isl_basic_map *move_divs_last(struct isl_basic_map *bmap,
127         unsigned first, unsigned n)
128 {
129         isl_int **div;
130         int i;
131
132         if (first + n == bmap->n_div)
133                 return bmap;
134
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;
149 }
150
151 /* Drop "n" dimensions of type "type" starting at "first".
152  *
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.
157  */
158 struct isl_basic_map *isl_basic_map_drop(struct isl_basic_map *bmap,
159         enum isl_dim_type type, unsigned first, unsigned n)
160 {
161         int i;
162         unsigned dim;
163         unsigned offset;
164         unsigned left;
165
166         if (!bmap)
167                 goto error;
168
169         dim = isl_basic_map_dim(bmap, type);
170         isl_assert(bmap->ctx, first + n <= dim, goto error);
171
172         if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
173                 return bmap;
174
175         bmap = isl_basic_map_cow(bmap);
176         if (!bmap)
177                 return NULL;
178
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);
183
184         for (i = 0; i < bmap->n_ineq; ++i)
185                 constraint_drop_vars(bmap->ineq[i]+offset, n, left);
186
187         for (i = 0; i < bmap->n_div; ++i)
188                 constraint_drop_vars(bmap->div[i]+1+offset, n, left);
189
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;
199
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;
206 }
207
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)
210 {
211         return (isl_basic_set *)isl_basic_map_drop((isl_basic_map *)bset,
212                                                         type, first, n);
213 }
214
215 struct isl_basic_map *isl_basic_map_drop_inputs(
216                 struct isl_basic_map *bmap, unsigned first, unsigned n)
217 {
218         return isl_basic_map_drop(bmap, isl_dim_in, first, n);
219 }
220
221 struct isl_map *isl_map_drop(struct isl_map *map,
222         enum isl_dim_type type, unsigned first, unsigned n)
223 {
224         int i;
225
226         if (!map)
227                 goto error;
228
229         isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
230
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;
239
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;
244         }
245         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
246
247         return map;
248 error:
249         isl_map_free(map);
250         return NULL;
251 }
252
253 struct isl_set *isl_set_drop(struct isl_set *set,
254         enum isl_dim_type type, unsigned first, unsigned n)
255 {
256         return (isl_set *)isl_map_drop((isl_map *)set, type, first, n);
257 }
258
259 struct isl_map *isl_map_drop_inputs(
260                 struct isl_map *map, unsigned first, unsigned n)
261 {
262         return isl_map_drop(map, isl_dim_in, first, n);
263 }
264
265 /*
266  * We don't cow, as the div is assumed to be redundant.
267  */
268 static struct isl_basic_map *isl_basic_map_drop_div(
269                 struct isl_basic_map *bmap, unsigned div)
270 {
271         int i;
272         unsigned pos;
273
274         if (!bmap)
275                 goto error;
276
277         pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
278
279         isl_assert(bmap->ctx, div < bmap->n_div, goto error);
280
281         for (i = 0; i < bmap->n_eq; ++i)
282                 constraint_drop_vars(bmap->eq[i]+pos, 1, bmap->extra-div-1);
283
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;
289                 }
290                 constraint_drop_vars(bmap->ineq[i]+pos, 1, bmap->extra-div-1);
291         }
292
293         for (i = 0; i < bmap->n_div; ++i)
294                 constraint_drop_vars(bmap->div[i]+1+pos, 1, bmap->extra-div-1);
295
296         if (div != bmap->n_div - 1) {
297                 int j;
298                 isl_int *t = bmap->div[div];
299
300                 for (j = div; j < bmap->n_div - 1; ++j)
301                         bmap->div[j] = bmap->div[j+1];
302
303                 bmap->div[bmap->n_div - 1] = t;
304         }
305         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
306         isl_basic_map_free_div(bmap, 1);
307
308         return bmap;
309 error:
310         isl_basic_map_free(bmap);
311         return NULL;
312 }
313
314 struct isl_basic_map *isl_basic_map_normalize_constraints(
315         struct isl_basic_map *bmap)
316 {
317         int i;
318         isl_int gcd;
319         unsigned total = isl_basic_map_total_dim(bmap);
320
321         if (!bmap)
322                 return NULL;
323
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;
331                         }
332                         isl_basic_map_drop_equality(bmap, i);
333                         continue;
334                 }
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;
342                 }
343                 isl_seq_scale_down(bmap->eq[i], bmap->eq[i], gcd, 1+total);
344         }
345
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;
352                         }
353                         isl_basic_map_drop_inequality(bmap, i);
354                         continue;
355                 }
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);
362         }
363         isl_int_clear(gcd);
364
365         return bmap;
366 }
367
368 struct isl_basic_set *isl_basic_set_normalize_constraints(
369         struct isl_basic_set *bset)
370 {
371         return (struct isl_basic_set *)isl_basic_map_normalize_constraints(
372                 (struct isl_basic_map *)bset);
373 }
374
375 /* Remove any common factor in numerator and denominator of a div expression,
376  * not taking into account the constant term.
377  * That is, look for any div of the form
378  *
379  *      floor((a + m f(x))/(m d))
380  *
381  * and replace it by
382  *
383  *      floor((floor(a/m) + f(x))/d)
384  *
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.
387  */
388 static __isl_give isl_basic_map *normalize_div_expressions(
389         __isl_take isl_basic_map *bmap)
390 {
391         int i;
392         isl_int gcd;
393         unsigned total = isl_basic_map_total_dim(bmap);
394
395         if (!bmap)
396                 return NULL;
397         if (bmap->n_div == 0)
398                 return bmap;
399
400         isl_int_init(gcd);
401         for (i = 0; i < bmap->n_div; ++i) {
402                 if (isl_int_is_zero(bmap->div[i][0]))
403                         continue;
404                 isl_seq_gcd(bmap->div[i] + 2, total, &gcd);
405                 isl_int_gcd(gcd, gcd, bmap->div[i][0]);
406                 if (isl_int_is_one(gcd))
407                         continue;
408                 isl_int_fdiv_q(bmap->div[i][1], bmap->div[i][1], gcd);
409                 isl_int_divexact(bmap->div[i][0], bmap->div[i][0], gcd);
410                 isl_seq_scale_down(bmap->div[i] + 2, bmap->div[i] + 2, gcd,
411                                         total);
412         }
413         isl_int_clear(gcd);
414
415         return bmap;
416 }
417
418 /* Assumes divs have been ordered if keep_divs is set.
419  */
420 static void eliminate_var_using_equality(struct isl_basic_map *bmap,
421         unsigned pos, isl_int *eq, int keep_divs, int *progress)
422 {
423         unsigned total;
424         unsigned space_total;
425         int k;
426         int last_div;
427
428         total = isl_basic_map_total_dim(bmap);
429         space_total = isl_space_dim(bmap->dim, isl_dim_all);
430         last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
431         for (k = 0; k < bmap->n_eq; ++k) {
432                 if (bmap->eq[k] == eq)
433                         continue;
434                 if (isl_int_is_zero(bmap->eq[k][1+pos]))
435                         continue;
436                 if (progress)
437                         *progress = 1;
438                 isl_seq_elim(bmap->eq[k], eq, 1+pos, 1+total, NULL);
439                 isl_seq_normalize(bmap->ctx, bmap->eq[k], 1 + total);
440         }
441
442         for (k = 0; k < bmap->n_ineq; ++k) {
443                 if (isl_int_is_zero(bmap->ineq[k][1+pos]))
444                         continue;
445                 if (progress)
446                         *progress = 1;
447                 isl_seq_elim(bmap->ineq[k], eq, 1+pos, 1+total, NULL);
448                 isl_seq_normalize(bmap->ctx, bmap->ineq[k], 1 + total);
449                 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
450         }
451
452         for (k = 0; k < bmap->n_div; ++k) {
453                 if (isl_int_is_zero(bmap->div[k][0]))
454                         continue;
455                 if (isl_int_is_zero(bmap->div[k][1+1+pos]))
456                         continue;
457                 if (progress)
458                         *progress = 1;
459                 /* We need to be careful about circular definitions,
460                  * so for now we just remove the definition of div k
461                  * if the equality contains any divs.
462                  * If keep_divs is set, then the divs have been ordered
463                  * and we can keep the definition as long as the result
464                  * is still ordered.
465                  */
466                 if (last_div == -1 || (keep_divs && last_div < k))
467                         isl_seq_elim(bmap->div[k]+1, eq,
468                                         1+pos, 1+total, &bmap->div[k][0]);
469                 else
470                         isl_seq_clr(bmap->div[k], 1 + total);
471                 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
472         }
473 }
474
475 /* Assumes divs have been ordered if keep_divs is set.
476  */
477 static void eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
478         unsigned div, int keep_divs)
479 {
480         unsigned pos = isl_space_dim(bmap->dim, isl_dim_all) + div;
481
482         eliminate_var_using_equality(bmap, pos, eq, keep_divs, NULL);
483
484         isl_basic_map_drop_div(bmap, div);
485 }
486
487 /* Check if elimination of div "div" using equality "eq" would not
488  * result in a div depending on a later div.
489  */
490 static int ok_to_eliminate_div(struct isl_basic_map *bmap, isl_int *eq,
491         unsigned div)
492 {
493         int k;
494         int last_div;
495         unsigned space_total = isl_space_dim(bmap->dim, isl_dim_all);
496         unsigned pos = space_total + div;
497
498         last_div = isl_seq_last_non_zero(eq + 1 + space_total, bmap->n_div);
499         if (last_div < 0 || last_div <= div)
500                 return 1;
501
502         for (k = 0; k <= last_div; ++k) {
503                 if (isl_int_is_zero(bmap->div[k][0]))
504                         return 1;
505                 if (!isl_int_is_zero(bmap->div[k][1 + 1 + pos]))
506                         return 0;
507         }
508
509         return 1;
510 }
511
512 /* Elimininate divs based on equalities
513  */
514 static struct isl_basic_map *eliminate_divs_eq(
515                 struct isl_basic_map *bmap, int *progress)
516 {
517         int d;
518         int i;
519         int modified = 0;
520         unsigned off;
521
522         bmap = isl_basic_map_order_divs(bmap);
523
524         if (!bmap)
525                 return NULL;
526
527         off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
528
529         for (d = bmap->n_div - 1; d >= 0 ; --d) {
530                 for (i = 0; i < bmap->n_eq; ++i) {
531                         if (!isl_int_is_one(bmap->eq[i][off + d]) &&
532                             !isl_int_is_negone(bmap->eq[i][off + d]))
533                                 continue;
534                         if (!ok_to_eliminate_div(bmap, bmap->eq[i], d))
535                                 continue;
536                         modified = 1;
537                         *progress = 1;
538                         eliminate_div(bmap, bmap->eq[i], d, 1);
539                         isl_basic_map_drop_equality(bmap, i);
540                         break;
541                 }
542         }
543         if (modified)
544                 return eliminate_divs_eq(bmap, progress);
545         return bmap;
546 }
547
548 /* Elimininate divs based on inequalities
549  */
550 static struct isl_basic_map *eliminate_divs_ineq(
551                 struct isl_basic_map *bmap, int *progress)
552 {
553         int d;
554         int i;
555         unsigned off;
556         struct isl_ctx *ctx;
557
558         if (!bmap)
559                 return NULL;
560
561         ctx = bmap->ctx;
562         off = 1 + isl_space_dim(bmap->dim, isl_dim_all);
563
564         for (d = bmap->n_div - 1; d >= 0 ; --d) {
565                 for (i = 0; i < bmap->n_eq; ++i)
566                         if (!isl_int_is_zero(bmap->eq[i][off + d]))
567                                 break;
568                 if (i < bmap->n_eq)
569                         continue;
570                 for (i = 0; i < bmap->n_ineq; ++i)
571                         if (isl_int_abs_gt(bmap->ineq[i][off + d], ctx->one))
572                                 break;
573                 if (i < bmap->n_ineq)
574                         continue;
575                 *progress = 1;
576                 bmap = isl_basic_map_eliminate_vars(bmap, (off-1)+d, 1);
577                 if (!bmap || ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
578                         break;
579                 bmap = isl_basic_map_drop_div(bmap, d);
580                 if (!bmap)
581                         break;
582         }
583         return bmap;
584 }
585
586 struct isl_basic_map *isl_basic_map_gauss(
587         struct isl_basic_map *bmap, int *progress)
588 {
589         int k;
590         int done;
591         int last_var;
592         unsigned total_var;
593         unsigned total;
594
595         bmap = isl_basic_map_order_divs(bmap);
596
597         if (!bmap)
598                 return NULL;
599
600         total = isl_basic_map_total_dim(bmap);
601         total_var = total - bmap->n_div;
602
603         last_var = total - 1;
604         for (done = 0; done < bmap->n_eq; ++done) {
605                 for (; last_var >= 0; --last_var) {
606                         for (k = done; k < bmap->n_eq; ++k)
607                                 if (!isl_int_is_zero(bmap->eq[k][1+last_var]))
608                                         break;
609                         if (k < bmap->n_eq)
610                                 break;
611                 }
612                 if (last_var < 0)
613                         break;
614                 if (k != done)
615                         swap_equality(bmap, k, done);
616                 if (isl_int_is_neg(bmap->eq[done][1+last_var]))
617                         isl_seq_neg(bmap->eq[done], bmap->eq[done], 1+total);
618
619                 eliminate_var_using_equality(bmap, last_var, bmap->eq[done], 1,
620                                                 progress);
621
622                 if (last_var >= total_var &&
623                     isl_int_is_zero(bmap->div[last_var - total_var][0])) {
624                         unsigned div = last_var - total_var;
625                         isl_seq_neg(bmap->div[div]+1, bmap->eq[done], 1+total);
626                         isl_int_set_si(bmap->div[div][1+1+last_var], 0);
627                         isl_int_set(bmap->div[div][0],
628                                     bmap->eq[done][1+last_var]);
629                         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
630                 }
631         }
632         if (done == bmap->n_eq)
633                 return bmap;
634         for (k = done; k < bmap->n_eq; ++k) {
635                 if (isl_int_is_zero(bmap->eq[k][0]))
636                         continue;
637                 return isl_basic_map_set_to_empty(bmap);
638         }
639         isl_basic_map_free_equality(bmap, bmap->n_eq-done);
640         return bmap;
641 }
642
643 struct isl_basic_set *isl_basic_set_gauss(
644         struct isl_basic_set *bset, int *progress)
645 {
646         return (struct isl_basic_set*)isl_basic_map_gauss(
647                         (struct isl_basic_map *)bset, progress);
648 }
649
650
651 static unsigned int round_up(unsigned int v)
652 {
653         int old_v = v;
654
655         while (v) {
656                 old_v = v;
657                 v ^= v & -v;
658         }
659         return old_v << 1;
660 }
661
662 static int hash_index(isl_int ***index, unsigned int size, int bits,
663                         struct isl_basic_map *bmap, int k)
664 {
665         int h;
666         unsigned total = isl_basic_map_total_dim(bmap);
667         uint32_t hash = isl_seq_get_hash_bits(bmap->ineq[k]+1, total, bits);
668         for (h = hash; index[h]; h = (h+1) % size)
669                 if (&bmap->ineq[k] != index[h] &&
670                     isl_seq_eq(bmap->ineq[k]+1, index[h][0]+1, total))
671                         break;
672         return h;
673 }
674
675 static int set_hash_index(isl_int ***index, unsigned int size, int bits,
676                           struct isl_basic_set *bset, int k)
677 {
678         return hash_index(index, size, bits, (struct isl_basic_map *)bset, k);
679 }
680
681 /* If we can eliminate more than one div, then we need to make
682  * sure we do it from last div to first div, in order not to
683  * change the position of the other divs that still need to
684  * be removed.
685  */
686 static struct isl_basic_map *remove_duplicate_divs(
687         struct isl_basic_map *bmap, int *progress)
688 {
689         unsigned int size;
690         int *index;
691         int *elim_for;
692         int k, l, h;
693         int bits;
694         struct isl_blk eq;
695         unsigned total_var;
696         unsigned total;
697         struct isl_ctx *ctx;
698
699         if (!bmap || bmap->n_div <= 1)
700                 return bmap;
701
702         total_var = isl_space_dim(bmap->dim, isl_dim_all);
703         total = total_var + bmap->n_div;
704
705         ctx = bmap->ctx;
706         for (k = bmap->n_div - 1; k >= 0; --k)
707                 if (!isl_int_is_zero(bmap->div[k][0]))
708                         break;
709         if (k <= 0)
710                 return bmap;
711
712         elim_for = isl_calloc_array(ctx, int, bmap->n_div);
713         size = round_up(4 * bmap->n_div / 3 - 1);
714         bits = ffs(size) - 1;
715         index = isl_calloc_array(ctx, int, size);
716         if (!index)
717                 return bmap;
718         eq = isl_blk_alloc(ctx, 1+total);
719         if (isl_blk_is_error(eq))
720                 goto out;
721
722         isl_seq_clr(eq.data, 1+total);
723         index[isl_seq_get_hash_bits(bmap->div[k], 2+total, bits)] = k + 1;
724         for (--k; k >= 0; --k) {
725                 uint32_t hash;
726
727                 if (isl_int_is_zero(bmap->div[k][0]))
728                         continue;
729
730                 hash = isl_seq_get_hash_bits(bmap->div[k], 2+total, bits);
731                 for (h = hash; index[h]; h = (h+1) % size)
732                         if (isl_seq_eq(bmap->div[k],
733                                        bmap->div[index[h]-1], 2+total))
734                                 break;
735                 if (index[h]) {
736                         *progress = 1;
737                         l = index[h] - 1;
738                         elim_for[l] = k + 1;
739                 }
740                 index[h] = k+1;
741         }
742         for (l = bmap->n_div - 1; l >= 0; --l) {
743                 if (!elim_for[l])
744                         continue;
745                 k = elim_for[l] - 1;
746                 isl_int_set_si(eq.data[1+total_var+k], -1);
747                 isl_int_set_si(eq.data[1+total_var+l], 1);
748                 eliminate_div(bmap, eq.data, l, 0);
749                 isl_int_set_si(eq.data[1+total_var+k], 0);
750                 isl_int_set_si(eq.data[1+total_var+l], 0);
751         }
752
753         isl_blk_free(ctx, eq);
754 out:
755         free(index);
756         free(elim_for);
757         return bmap;
758 }
759
760 static int n_pure_div_eq(struct isl_basic_map *bmap)
761 {
762         int i, j;
763         unsigned total;
764
765         total = isl_space_dim(bmap->dim, isl_dim_all);
766         for (i = 0, j = bmap->n_div-1; i < bmap->n_eq; ++i) {
767                 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
768                         --j;
769                 if (j < 0)
770                         break;
771                 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + total, j) != -1)
772                         return 0;
773         }
774         return i;
775 }
776
777 /* Normalize divs that appear in equalities.
778  *
779  * In particular, we assume that bmap contains some equalities
780  * of the form
781  *
782  *      a x = m * e_i
783  *
784  * and we want to replace the set of e_i by a minimal set and
785  * such that the new e_i have a canonical representation in terms
786  * of the vector x.
787  * If any of the equalities involves more than one divs, then
788  * we currently simply bail out.
789  *
790  * Let us first additionally assume that all equalities involve
791  * a div.  The equalities then express modulo constraints on the
792  * remaining variables and we can use "parameter compression"
793  * to find a minimal set of constraints.  The result is a transformation
794  *
795  *      x = T(x') = x_0 + G x'
796  *
797  * with G a lower-triangular matrix with all elements below the diagonal
798  * non-negative and smaller than the diagonal element on the same row.
799  * We first normalize x_0 by making the same property hold in the affine
800  * T matrix.
801  * The rows i of G with a 1 on the diagonal do not impose any modulo
802  * constraint and simply express x_i = x'_i.
803  * For each of the remaining rows i, we introduce a div and a corresponding
804  * equality.  In particular
805  *
806  *      g_ii e_j = x_i - g_i(x')
807  *
808  * where each x'_k is replaced either by x_k (if g_kk = 1) or the
809  * corresponding div (if g_kk != 1).
810  *
811  * If there are any equalities not involving any div, then we
812  * first apply a variable compression on the variables x:
813  *
814  *      x = C x''       x'' = C_2 x
815  *
816  * and perform the above parameter compression on A C instead of on A.
817  * The resulting compression is then of the form
818  *
819  *      x'' = T(x') = x_0 + G x'
820  *
821  * and in constructing the new divs and the corresponding equalities,
822  * we have to replace each x'', i.e., the x'_k with (g_kk = 1),
823  * by the corresponding row from C_2.
824  */
825 static struct isl_basic_map *normalize_divs(
826         struct isl_basic_map *bmap, int *progress)
827 {
828         int i, j, k;
829         int total;
830         int div_eq;
831         struct isl_mat *B;
832         struct isl_vec *d;
833         struct isl_mat *T = NULL;
834         struct isl_mat *C = NULL;
835         struct isl_mat *C2 = NULL;
836         isl_int v;
837         int *pos;
838         int dropped, needed;
839
840         if (!bmap)
841                 return NULL;
842
843         if (bmap->n_div == 0)
844                 return bmap;
845
846         if (bmap->n_eq == 0)
847                 return bmap;
848
849         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS))
850                 return bmap;
851
852         total = isl_space_dim(bmap->dim, isl_dim_all);
853         div_eq = n_pure_div_eq(bmap);
854         if (div_eq == 0)
855                 return bmap;
856
857         if (div_eq < bmap->n_eq) {
858                 B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, div_eq,
859                                         bmap->n_eq - div_eq, 0, 1 + total);
860                 C = isl_mat_variable_compression(B, &C2);
861                 if (!C || !C2)
862                         goto error;
863                 if (C->n_col == 0) {
864                         bmap = isl_basic_map_set_to_empty(bmap);
865                         isl_mat_free(C);
866                         isl_mat_free(C2);
867                         goto done;
868                 }
869         }
870
871         d = isl_vec_alloc(bmap->ctx, div_eq);
872         if (!d)
873                 goto error;
874         for (i = 0, j = bmap->n_div-1; i < div_eq; ++i) {
875                 while (j >= 0 && isl_int_is_zero(bmap->eq[i][1 + total + j]))
876                         --j;
877                 isl_int_set(d->block.data[i], bmap->eq[i][1 + total + j]);
878         }
879         B = isl_mat_sub_alloc6(bmap->ctx, bmap->eq, 0, div_eq, 0, 1 + total);
880
881         if (C) {
882                 B = isl_mat_product(B, C);
883                 C = NULL;
884         }
885
886         T = isl_mat_parameter_compression(B, d);
887         if (!T)
888                 goto error;
889         if (T->n_col == 0) {
890                 bmap = isl_basic_map_set_to_empty(bmap);
891                 isl_mat_free(C2);
892                 isl_mat_free(T);
893                 goto done;
894         }
895         isl_int_init(v);
896         for (i = 0; i < T->n_row - 1; ++i) {
897                 isl_int_fdiv_q(v, T->row[1 + i][0], T->row[1 + i][1 + i]);
898                 if (isl_int_is_zero(v))
899                         continue;
900                 isl_mat_col_submul(T, 0, v, 1 + i);
901         }
902         isl_int_clear(v);
903         pos = isl_alloc_array(bmap->ctx, int, T->n_row);
904         if (!pos)
905                 goto error;
906         /* We have to be careful because dropping equalities may reorder them */
907         dropped = 0;
908         for (j = bmap->n_div - 1; j >= 0; --j) {
909                 for (i = 0; i < bmap->n_eq; ++i)
910                         if (!isl_int_is_zero(bmap->eq[i][1 + total + j]))
911                                 break;
912                 if (i < bmap->n_eq) {
913                         bmap = isl_basic_map_drop_div(bmap, j);
914                         isl_basic_map_drop_equality(bmap, i);
915                         ++dropped;
916                 }
917         }
918         pos[0] = 0;
919         needed = 0;
920         for (i = 1; i < T->n_row; ++i) {
921                 if (isl_int_is_one(T->row[i][i]))
922                         pos[i] = i;
923                 else
924                         needed++;
925         }
926         if (needed > dropped) {
927                 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
928                                 needed, needed, 0);
929                 if (!bmap)
930                         goto error;
931         }
932         for (i = 1; i < T->n_row; ++i) {
933                 if (isl_int_is_one(T->row[i][i]))
934                         continue;
935                 k = isl_basic_map_alloc_div(bmap);
936                 pos[i] = 1 + total + k;
937                 isl_seq_clr(bmap->div[k] + 1, 1 + total + bmap->n_div);
938                 isl_int_set(bmap->div[k][0], T->row[i][i]);
939                 if (C2)
940                         isl_seq_cpy(bmap->div[k] + 1, C2->row[i], 1 + total);
941                 else
942                         isl_int_set_si(bmap->div[k][1 + i], 1);
943                 for (j = 0; j < i; ++j) {
944                         if (isl_int_is_zero(T->row[i][j]))
945                                 continue;
946                         if (pos[j] < T->n_row && C2)
947                                 isl_seq_submul(bmap->div[k] + 1, T->row[i][j],
948                                                 C2->row[pos[j]], 1 + total);
949                         else
950                                 isl_int_neg(bmap->div[k][1 + pos[j]],
951                                                                 T->row[i][j]);
952                 }
953                 j = isl_basic_map_alloc_equality(bmap);
954                 isl_seq_neg(bmap->eq[j], bmap->div[k]+1, 1+total+bmap->n_div);
955                 isl_int_set(bmap->eq[j][pos[i]], bmap->div[k][0]);
956         }
957         free(pos);
958         isl_mat_free(C2);
959         isl_mat_free(T);
960
961         if (progress)
962                 *progress = 1;
963 done:
964         ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
965
966         return bmap;
967 error:
968         isl_mat_free(C);
969         isl_mat_free(C2);
970         isl_mat_free(T);
971         return bmap;
972 }
973
974 static struct isl_basic_map *set_div_from_lower_bound(
975         struct isl_basic_map *bmap, int div, int ineq)
976 {
977         unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
978
979         isl_seq_neg(bmap->div[div] + 1, bmap->ineq[ineq], total + bmap->n_div);
980         isl_int_set(bmap->div[div][0], bmap->ineq[ineq][total + div]);
981         isl_int_add(bmap->div[div][1], bmap->div[div][1], bmap->div[div][0]);
982         isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
983         isl_int_set_si(bmap->div[div][1 + total + div], 0);
984
985         return bmap;
986 }
987
988 /* Check whether it is ok to define a div based on an inequality.
989  * To avoid the introduction of circular definitions of divs, we
990  * do not allow such a definition if the resulting expression would refer to
991  * any other undefined divs or if any known div is defined in
992  * terms of the unknown div.
993  */
994 static int ok_to_set_div_from_bound(struct isl_basic_map *bmap,
995         int div, int ineq)
996 {
997         int j;
998         unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
999
1000         /* Not defined in terms of unknown divs */
1001         for (j = 0; j < bmap->n_div; ++j) {
1002                 if (div == j)
1003                         continue;
1004                 if (isl_int_is_zero(bmap->ineq[ineq][total + j]))
1005                         continue;
1006                 if (isl_int_is_zero(bmap->div[j][0]))
1007                         return 0;
1008         }
1009
1010         /* No other div defined in terms of this one => avoid loops */
1011         for (j = 0; j < bmap->n_div; ++j) {
1012                 if (div == j)
1013                         continue;
1014                 if (isl_int_is_zero(bmap->div[j][0]))
1015                         continue;
1016                 if (!isl_int_is_zero(bmap->div[j][1 + total + div]))
1017                         return 0;
1018         }
1019
1020         return 1;
1021 }
1022
1023 /* Given two constraints "k" and "l" that are opposite to each other,
1024  * except for the constant term, check if we can use them
1025  * to obtain an expression for one of the hitherto unknown divs.
1026  * "sum" is the sum of the constant terms of the constraints.
1027  * If this sum is strictly smaller than the coefficient of one
1028  * of the divs, then this pair can be used define the div.
1029  * To avoid the introduction of circular definitions of divs, we
1030  * do not use the pair if the resulting expression would refer to
1031  * any other undefined divs or if any known div is defined in
1032  * terms of the unknown div.
1033  */
1034 static struct isl_basic_map *check_for_div_constraints(
1035         struct isl_basic_map *bmap, int k, int l, isl_int sum, int *progress)
1036 {
1037         int i;
1038         unsigned total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1039
1040         for (i = 0; i < bmap->n_div; ++i) {
1041                 if (!isl_int_is_zero(bmap->div[i][0]))
1042                         continue;
1043                 if (isl_int_is_zero(bmap->ineq[k][total + i]))
1044                         continue;
1045                 if (isl_int_abs_ge(sum, bmap->ineq[k][total + i]))
1046                         continue;
1047                 if (!ok_to_set_div_from_bound(bmap, i, k))
1048                         break;
1049                 if (isl_int_is_pos(bmap->ineq[k][total + i]))
1050                         bmap = set_div_from_lower_bound(bmap, i, k);
1051                 else
1052                         bmap = set_div_from_lower_bound(bmap, i, l);
1053                 if (progress)
1054                         *progress = 1;
1055                 break;
1056         }
1057         return bmap;
1058 }
1059
1060 static struct isl_basic_map *remove_duplicate_constraints(
1061         struct isl_basic_map *bmap, int *progress, int detect_divs)
1062 {
1063         unsigned int size;
1064         isl_int ***index;
1065         int k, l, h;
1066         int bits;
1067         unsigned total = isl_basic_map_total_dim(bmap);
1068         isl_int sum;
1069         isl_ctx *ctx;
1070
1071         if (!bmap || bmap->n_ineq <= 1)
1072                 return bmap;
1073
1074         size = round_up(4 * (bmap->n_ineq+1) / 3 - 1);
1075         bits = ffs(size) - 1;
1076         ctx = isl_basic_map_get_ctx(bmap);
1077         index = isl_calloc_array(ctx, isl_int **, size);
1078         if (!index)
1079                 return bmap;
1080
1081         index[isl_seq_get_hash_bits(bmap->ineq[0]+1, total, bits)] = &bmap->ineq[0];
1082         for (k = 1; k < bmap->n_ineq; ++k) {
1083                 h = hash_index(index, size, bits, bmap, k);
1084                 if (!index[h]) {
1085                         index[h] = &bmap->ineq[k];
1086                         continue;
1087                 }
1088                 if (progress)
1089                         *progress = 1;
1090                 l = index[h] - &bmap->ineq[0];
1091                 if (isl_int_lt(bmap->ineq[k][0], bmap->ineq[l][0]))
1092                         swap_inequality(bmap, k, l);
1093                 isl_basic_map_drop_inequality(bmap, k);
1094                 --k;
1095         }
1096         isl_int_init(sum);
1097         for (k = 0; k < bmap->n_ineq-1; ++k) {
1098                 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1099                 h = hash_index(index, size, bits, bmap, k);
1100                 isl_seq_neg(bmap->ineq[k]+1, bmap->ineq[k]+1, total);
1101                 if (!index[h])
1102                         continue;
1103                 l = index[h] - &bmap->ineq[0];
1104                 isl_int_add(sum, bmap->ineq[k][0], bmap->ineq[l][0]);
1105                 if (isl_int_is_pos(sum)) {
1106                         if (detect_divs)
1107                                 bmap = check_for_div_constraints(bmap, k, l,
1108                                                                  sum, progress);
1109                         continue;
1110                 }
1111                 if (isl_int_is_zero(sum)) {
1112                         /* We need to break out of the loop after these
1113                          * changes since the contents of the hash
1114                          * will no longer be valid.
1115                          * Plus, we probably we want to regauss first.
1116                          */
1117                         if (progress)
1118                                 *progress = 1;
1119                         isl_basic_map_drop_inequality(bmap, l);
1120                         isl_basic_map_inequality_to_equality(bmap, k);
1121                 } else
1122                         bmap = isl_basic_map_set_to_empty(bmap);
1123                 break;
1124         }
1125         isl_int_clear(sum);
1126
1127         free(index);
1128         return bmap;
1129 }
1130
1131
1132 /* Eliminate knowns divs from constraints where they appear with
1133  * a (positive or negative) unit coefficient.
1134  *
1135  * That is, replace
1136  *
1137  *      floor(e/m) + f >= 0
1138  *
1139  * by
1140  *
1141  *      e + m f >= 0
1142  *
1143  * and
1144  *
1145  *      -floor(e/m) + f >= 0
1146  *
1147  * by
1148  *
1149  *      -e + m f + m - 1 >= 0
1150  *
1151  * The first conversion is valid because floor(e/m) >= -f is equivalent
1152  * to e/m >= -f because -f is an integral expression.
1153  * The second conversion follows from the fact that
1154  *
1155  *      -floor(e/m) = ceil(-e/m) = floor((-e + m - 1)/m)
1156  *
1157  *
1158  * We skip integral divs, i.e., those with denominator 1, as we would
1159  * risk eliminating the div from the div constraints.  We do not need
1160  * to handle those divs here anyway since the div constraints will turn
1161  * out to form an equality and this equality can then be use to eliminate
1162  * the div from all constraints.
1163  */
1164 static __isl_give isl_basic_map *eliminate_unit_divs(
1165         __isl_take isl_basic_map *bmap, int *progress)
1166 {
1167         int i, j;
1168         isl_ctx *ctx;
1169         unsigned total;
1170
1171         if (!bmap)
1172                 return NULL;
1173
1174         ctx = isl_basic_map_get_ctx(bmap);
1175         total = 1 + isl_space_dim(bmap->dim, isl_dim_all);
1176
1177         for (i = 0; i < bmap->n_div; ++i) {
1178                 if (isl_int_is_zero(bmap->div[i][0]))
1179                         continue;
1180                 if (isl_int_is_one(bmap->div[i][0]))
1181                         continue;
1182                 for (j = 0; j < bmap->n_ineq; ++j) {
1183                         int s;
1184
1185                         if (!isl_int_is_one(bmap->ineq[j][total + i]) &&
1186                             !isl_int_is_negone(bmap->ineq[j][total + i]))
1187                                 continue;
1188
1189                         *progress = 1;
1190
1191                         s = isl_int_sgn(bmap->ineq[j][total + i]);
1192                         isl_int_set_si(bmap->ineq[j][total + i], 0);
1193                         if (s < 0)
1194                                 isl_seq_combine(bmap->ineq[j],
1195                                         ctx->negone, bmap->div[i] + 1,
1196                                         bmap->div[i][0], bmap->ineq[j],
1197                                         total + bmap->n_div);
1198                         else
1199                                 isl_seq_combine(bmap->ineq[j],
1200                                         ctx->one, bmap->div[i] + 1,
1201                                         bmap->div[i][0], bmap->ineq[j],
1202                                         total + bmap->n_div);
1203                         if (s < 0) {
1204                                 isl_int_add(bmap->ineq[j][0],
1205                                         bmap->ineq[j][0], bmap->div[i][0]);
1206                                 isl_int_sub_ui(bmap->ineq[j][0],
1207                                         bmap->ineq[j][0], 1);
1208                         }
1209                 }
1210         }
1211
1212         return bmap;
1213 }
1214
1215 struct isl_basic_map *isl_basic_map_simplify(struct isl_basic_map *bmap)
1216 {
1217         int progress = 1;
1218         if (!bmap)
1219                 return NULL;
1220         while (progress) {
1221                 progress = 0;
1222                 bmap = isl_basic_map_normalize_constraints(bmap);
1223                 bmap = normalize_div_expressions(bmap);
1224                 bmap = remove_duplicate_divs(bmap, &progress);
1225                 bmap = eliminate_unit_divs(bmap, &progress);
1226                 bmap = eliminate_divs_eq(bmap, &progress);
1227                 bmap = eliminate_divs_ineq(bmap, &progress);
1228                 bmap = isl_basic_map_gauss(bmap, &progress);
1229                 /* requires equalities in normal form */
1230                 bmap = normalize_divs(bmap, &progress);
1231                 bmap = remove_duplicate_constraints(bmap, &progress, 1);
1232         }
1233         return bmap;
1234 }
1235
1236 struct isl_basic_set *isl_basic_set_simplify(struct isl_basic_set *bset)
1237 {
1238         return (struct isl_basic_set *)
1239                 isl_basic_map_simplify((struct isl_basic_map *)bset);
1240 }
1241
1242
1243 int isl_basic_map_is_div_constraint(__isl_keep isl_basic_map *bmap,
1244         isl_int *constraint, unsigned div)
1245 {
1246         unsigned pos;
1247
1248         if (!bmap)
1249                 return -1;
1250
1251         pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1252
1253         if (isl_int_eq(constraint[pos], bmap->div[div][0])) {
1254                 int neg;
1255                 isl_int_sub(bmap->div[div][1],
1256                                 bmap->div[div][1], bmap->div[div][0]);
1257                 isl_int_add_ui(bmap->div[div][1], bmap->div[div][1], 1);
1258                 neg = isl_seq_is_neg(constraint, bmap->div[div]+1, pos);
1259                 isl_int_sub_ui(bmap->div[div][1], bmap->div[div][1], 1);
1260                 isl_int_add(bmap->div[div][1],
1261                                 bmap->div[div][1], bmap->div[div][0]);
1262                 if (!neg)
1263                         return 0;
1264                 if (isl_seq_first_non_zero(constraint+pos+1,
1265                                             bmap->n_div-div-1) != -1)
1266                         return 0;
1267         } else if (isl_int_abs_eq(constraint[pos], bmap->div[div][0])) {
1268                 if (!isl_seq_eq(constraint, bmap->div[div]+1, pos))
1269                         return 0;
1270                 if (isl_seq_first_non_zero(constraint+pos+1,
1271                                             bmap->n_div-div-1) != -1)
1272                         return 0;
1273         } else
1274                 return 0;
1275
1276         return 1;
1277 }
1278
1279 int isl_basic_set_is_div_constraint(__isl_keep isl_basic_set *bset,
1280         isl_int *constraint, unsigned div)
1281 {
1282         return isl_basic_map_is_div_constraint(bset, constraint, div);
1283 }
1284
1285
1286 /* If the only constraints a div d=floor(f/m)
1287  * appears in are its two defining constraints
1288  *
1289  *      f - m d >=0
1290  *      -(f - (m - 1)) + m d >= 0
1291  *
1292  * then it can safely be removed.
1293  */
1294 static int div_is_redundant(struct isl_basic_map *bmap, int div)
1295 {
1296         int i;
1297         unsigned pos = 1 + isl_space_dim(bmap->dim, isl_dim_all) + div;
1298
1299         for (i = 0; i < bmap->n_eq; ++i)
1300                 if (!isl_int_is_zero(bmap->eq[i][pos]))
1301                         return 0;
1302
1303         for (i = 0; i < bmap->n_ineq; ++i) {
1304                 if (isl_int_is_zero(bmap->ineq[i][pos]))
1305                         continue;
1306                 if (!isl_basic_map_is_div_constraint(bmap, bmap->ineq[i], div))
1307                         return 0;
1308         }
1309
1310         for (i = 0; i < bmap->n_div; ++i)
1311                 if (!isl_int_is_zero(bmap->div[i][1+pos]))
1312                         return 0;
1313
1314         return 1;
1315 }
1316
1317 /*
1318  * Remove divs that don't occur in any of the constraints or other divs.
1319  * These can arise when dropping some of the variables in a quast
1320  * returned by piplib.
1321  */
1322 static struct isl_basic_map *remove_redundant_divs(struct isl_basic_map *bmap)
1323 {
1324         int i;
1325
1326         if (!bmap)
1327                 return NULL;
1328
1329         for (i = bmap->n_div-1; i >= 0; --i) {
1330                 if (!div_is_redundant(bmap, i))
1331                         continue;
1332                 bmap = isl_basic_map_drop_div(bmap, i);
1333         }
1334         return bmap;
1335 }
1336
1337 struct isl_basic_map *isl_basic_map_finalize(struct isl_basic_map *bmap)
1338 {
1339         bmap = remove_redundant_divs(bmap);
1340         if (!bmap)
1341                 return NULL;
1342         ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1343         return bmap;
1344 }
1345
1346 struct isl_basic_set *isl_basic_set_finalize(struct isl_basic_set *bset)
1347 {
1348         return (struct isl_basic_set *)
1349                 isl_basic_map_finalize((struct isl_basic_map *)bset);
1350 }
1351
1352 struct isl_set *isl_set_finalize(struct isl_set *set)
1353 {
1354         int i;
1355
1356         if (!set)
1357                 return NULL;
1358         for (i = 0; i < set->n; ++i) {
1359                 set->p[i] = isl_basic_set_finalize(set->p[i]);
1360                 if (!set->p[i])
1361                         goto error;
1362         }
1363         return set;
1364 error:
1365         isl_set_free(set);
1366         return NULL;
1367 }
1368
1369 struct isl_map *isl_map_finalize(struct isl_map *map)
1370 {
1371         int i;
1372
1373         if (!map)
1374                 return NULL;
1375         for (i = 0; i < map->n; ++i) {
1376                 map->p[i] = isl_basic_map_finalize(map->p[i]);
1377                 if (!map->p[i])
1378                         goto error;
1379         }
1380         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
1381         return map;
1382 error:
1383         isl_map_free(map);
1384         return NULL;
1385 }
1386
1387
1388 /* Remove definition of any div that is defined in terms of the given variable.
1389  * The div itself is not removed.  Functions such as
1390  * eliminate_divs_ineq depend on the other divs remaining in place.
1391  */
1392 static struct isl_basic_map *remove_dependent_vars(struct isl_basic_map *bmap,
1393                                                                         int pos)
1394 {
1395         int i;
1396
1397         for (i = 0; i < bmap->n_div; ++i) {
1398                 if (isl_int_is_zero(bmap->div[i][0]))
1399                         continue;
1400                 if (isl_int_is_zero(bmap->div[i][1+1+pos]))
1401                         continue;
1402                 isl_int_set_si(bmap->div[i][0], 0);
1403         }
1404         return bmap;
1405 }
1406
1407 /* Eliminate the specified variables from the constraints using
1408  * Fourier-Motzkin.  The variables themselves are not removed.
1409  */
1410 struct isl_basic_map *isl_basic_map_eliminate_vars(
1411         struct isl_basic_map *bmap, unsigned pos, unsigned n)
1412 {
1413         int d;
1414         int i, j, k;
1415         unsigned total;
1416         int need_gauss = 0;
1417
1418         if (n == 0)
1419                 return bmap;
1420         if (!bmap)
1421                 return NULL;
1422         total = isl_basic_map_total_dim(bmap);
1423
1424         bmap = isl_basic_map_cow(bmap);
1425         for (d = pos + n - 1; d >= 0 && d >= pos; --d)
1426                 bmap = remove_dependent_vars(bmap, d);
1427
1428         for (d = pos + n - 1;
1429              d >= 0 && d >= total - bmap->n_div && d >= pos; --d)
1430                 isl_seq_clr(bmap->div[d-(total-bmap->n_div)], 2+total);
1431         for (d = pos + n - 1; d >= 0 && d >= pos; --d) {
1432                 int n_lower, n_upper;
1433                 if (!bmap)
1434                         return NULL;
1435                 for (i = 0; i < bmap->n_eq; ++i) {
1436                         if (isl_int_is_zero(bmap->eq[i][1+d]))
1437                                 continue;
1438                         eliminate_var_using_equality(bmap, d, bmap->eq[i], 0, NULL);
1439                         isl_basic_map_drop_equality(bmap, i);
1440                         need_gauss = 1;
1441                         break;
1442                 }
1443                 if (i < bmap->n_eq)
1444                         continue;
1445                 n_lower = 0;
1446                 n_upper = 0;
1447                 for (i = 0; i < bmap->n_ineq; ++i) {
1448                         if (isl_int_is_pos(bmap->ineq[i][1+d]))
1449                                 n_lower++;
1450                         else if (isl_int_is_neg(bmap->ineq[i][1+d]))
1451                                 n_upper++;
1452                 }
1453                 bmap = isl_basic_map_extend_constraints(bmap,
1454                                 0, n_lower * n_upper);
1455                 if (!bmap)
1456                         goto error;
1457                 for (i = bmap->n_ineq - 1; i >= 0; --i) {
1458                         int last;
1459                         if (isl_int_is_zero(bmap->ineq[i][1+d]))
1460                                 continue;
1461                         last = -1;
1462                         for (j = 0; j < i; ++j) {
1463                                 if (isl_int_is_zero(bmap->ineq[j][1+d]))
1464                                         continue;
1465                                 last = j;
1466                                 if (isl_int_sgn(bmap->ineq[i][1+d]) ==
1467                                     isl_int_sgn(bmap->ineq[j][1+d]))
1468                                         continue;
1469                                 k = isl_basic_map_alloc_inequality(bmap);
1470                                 if (k < 0)
1471                                         goto error;
1472                                 isl_seq_cpy(bmap->ineq[k], bmap->ineq[i],
1473                                                 1+total);
1474                                 isl_seq_elim(bmap->ineq[k], bmap->ineq[j],
1475                                                 1+d, 1+total, NULL);
1476                         }
1477                         isl_basic_map_drop_inequality(bmap, i);
1478                         i = last + 1;
1479                 }
1480                 if (n_lower > 0 && n_upper > 0) {
1481                         bmap = isl_basic_map_normalize_constraints(bmap);
1482                         bmap = remove_duplicate_constraints(bmap, NULL, 0);
1483                         bmap = isl_basic_map_gauss(bmap, NULL);
1484                         bmap = isl_basic_map_remove_redundancies(bmap);
1485                         need_gauss = 0;
1486                         if (!bmap)
1487                                 goto error;
1488                         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
1489                                 break;
1490                 }
1491         }
1492         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1493         if (need_gauss)
1494                 bmap = isl_basic_map_gauss(bmap, NULL);
1495         return bmap;
1496 error:
1497         isl_basic_map_free(bmap);
1498         return NULL;
1499 }
1500
1501 struct isl_basic_set *isl_basic_set_eliminate_vars(
1502         struct isl_basic_set *bset, unsigned pos, unsigned n)
1503 {
1504         return (struct isl_basic_set *)isl_basic_map_eliminate_vars(
1505                         (struct isl_basic_map *)bset, pos, n);
1506 }
1507
1508 /* Eliminate the specified n dimensions starting at first from the
1509  * constraints, without removing the dimensions from the space.
1510  * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1511  * Otherwise, they are projected out and the original space is restored.
1512  */
1513 __isl_give isl_basic_map *isl_basic_map_eliminate(
1514         __isl_take isl_basic_map *bmap,
1515         enum isl_dim_type type, unsigned first, unsigned n)
1516 {
1517         isl_space *space;
1518
1519         if (!bmap)
1520                 return NULL;
1521         if (n == 0)
1522                 return bmap;
1523
1524         if (first + n > isl_basic_map_dim(bmap, type) || first + n < first)
1525                 isl_die(bmap->ctx, isl_error_invalid,
1526                         "index out of bounds", goto error);
1527
1528         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
1529                 first += isl_basic_map_offset(bmap, type) - 1;
1530                 bmap = isl_basic_map_eliminate_vars(bmap, first, n);
1531                 return isl_basic_map_finalize(bmap);
1532         }
1533
1534         space = isl_basic_map_get_space(bmap);
1535         bmap = isl_basic_map_project_out(bmap, type, first, n);
1536         bmap = isl_basic_map_insert_dims(bmap, type, first, n);
1537         bmap = isl_basic_map_reset_space(bmap, space);
1538         return bmap;
1539 error:
1540         isl_basic_map_free(bmap);
1541         return NULL;
1542 }
1543
1544 __isl_give isl_basic_set *isl_basic_set_eliminate(
1545         __isl_take isl_basic_set *bset,
1546         enum isl_dim_type type, unsigned first, unsigned n)
1547 {
1548         return isl_basic_map_eliminate(bset, type, first, n);
1549 }
1550
1551 /* Don't assume equalities are in order, because align_divs
1552  * may have changed the order of the divs.
1553  */
1554 static void compute_elimination_index(struct isl_basic_map *bmap, int *elim)
1555 {
1556         int d, i;
1557         unsigned total;
1558
1559         total = isl_space_dim(bmap->dim, isl_dim_all);
1560         for (d = 0; d < total; ++d)
1561                 elim[d] = -1;
1562         for (i = 0; i < bmap->n_eq; ++i) {
1563                 for (d = total - 1; d >= 0; --d) {
1564                         if (isl_int_is_zero(bmap->eq[i][1+d]))
1565                                 continue;
1566                         elim[d] = i;
1567                         break;
1568                 }
1569         }
1570 }
1571
1572 static void set_compute_elimination_index(struct isl_basic_set *bset, int *elim)
1573 {
1574         compute_elimination_index((struct isl_basic_map *)bset, elim);
1575 }
1576
1577 static int reduced_using_equalities(isl_int *dst, isl_int *src,
1578         struct isl_basic_map *bmap, int *elim)
1579 {
1580         int d;
1581         int copied = 0;
1582         unsigned total;
1583
1584         total = isl_space_dim(bmap->dim, isl_dim_all);
1585         for (d = total - 1; d >= 0; --d) {
1586                 if (isl_int_is_zero(src[1+d]))
1587                         continue;
1588                 if (elim[d] == -1)
1589                         continue;
1590                 if (!copied) {
1591                         isl_seq_cpy(dst, src, 1 + total);
1592                         copied = 1;
1593                 }
1594                 isl_seq_elim(dst, bmap->eq[elim[d]], 1 + d, 1 + total, NULL);
1595         }
1596         return copied;
1597 }
1598
1599 static int set_reduced_using_equalities(isl_int *dst, isl_int *src,
1600         struct isl_basic_set *bset, int *elim)
1601 {
1602         return reduced_using_equalities(dst, src,
1603                                         (struct isl_basic_map *)bset, elim);
1604 }
1605
1606 static struct isl_basic_set *isl_basic_set_reduce_using_equalities(
1607         struct isl_basic_set *bset, struct isl_basic_set *context)
1608 {
1609         int i;
1610         int *elim;
1611
1612         if (!bset || !context)
1613                 goto error;
1614
1615         if (context->n_eq == 0) {
1616                 isl_basic_set_free(context);
1617                 return bset;
1618         }
1619
1620         bset = isl_basic_set_cow(bset);
1621         if (!bset)
1622                 goto error;
1623
1624         elim = isl_alloc_array(bset->ctx, int, isl_basic_set_n_dim(bset));
1625         if (!elim)
1626                 goto error;
1627         set_compute_elimination_index(context, elim);
1628         for (i = 0; i < bset->n_eq; ++i)
1629                 set_reduced_using_equalities(bset->eq[i], bset->eq[i],
1630                                                         context, elim);
1631         for (i = 0; i < bset->n_ineq; ++i)
1632                 set_reduced_using_equalities(bset->ineq[i], bset->ineq[i],
1633                                                         context, elim);
1634         isl_basic_set_free(context);
1635         free(elim);
1636         bset = isl_basic_set_simplify(bset);
1637         bset = isl_basic_set_finalize(bset);
1638         return bset;
1639 error:
1640         isl_basic_set_free(bset);
1641         isl_basic_set_free(context);
1642         return NULL;
1643 }
1644
1645 static struct isl_basic_set *remove_shifted_constraints(
1646         struct isl_basic_set *bset, struct isl_basic_set *context)
1647 {
1648         unsigned int size;
1649         isl_int ***index;
1650         int bits;
1651         int k, h, l;
1652         isl_ctx *ctx;
1653
1654         if (!bset)
1655                 return NULL;
1656
1657         size = round_up(4 * (context->n_ineq+1) / 3 - 1);
1658         bits = ffs(size) - 1;
1659         ctx = isl_basic_set_get_ctx(bset);
1660         index = isl_calloc_array(ctx, isl_int **, size);
1661         if (!index)
1662                 return bset;
1663
1664         for (k = 0; k < context->n_ineq; ++k) {
1665                 h = set_hash_index(index, size, bits, context, k);
1666                 index[h] = &context->ineq[k];
1667         }
1668         for (k = 0; k < bset->n_ineq; ++k) {
1669                 h = set_hash_index(index, size, bits, bset, k);
1670                 if (!index[h])
1671                         continue;
1672                 l = index[h] - &context->ineq[0];
1673                 if (isl_int_lt(bset->ineq[k][0], context->ineq[l][0]))
1674                         continue;
1675                 bset = isl_basic_set_cow(bset);
1676                 if (!bset)
1677                         goto error;
1678                 isl_basic_set_drop_inequality(bset, k);
1679                 --k;
1680         }
1681         free(index);
1682         return bset;
1683 error:
1684         free(index);
1685         return bset;
1686 }
1687
1688 /* Remove all information from bset that is redundant in the context
1689  * of context.  Both bset and context are assumed to be full-dimensional.
1690  *
1691  * We first * remove the inequalities from "bset"
1692  * that are obviously redundant with respect to some inequality in "context".
1693  *
1694  * If there are any inequalities left, we construct a tableau for
1695  * the context and then add the inequalities of "bset".
1696  * Before adding these inequalities, we freeze all constraints such that
1697  * they won't be considered redundant in terms of the constraints of "bset".
1698  * Then we detect all redundant constraints (among the
1699  * constraints that weren't frozen), first by checking for redundancy in the
1700  * the tableau and then by checking if replacing a constraint by its negation
1701  * would lead to an empty set.  This last step is fairly expensive
1702  * and could be optimized by more reuse of the tableau.
1703  * Finally, we update bset according to the results.
1704  */
1705 static __isl_give isl_basic_set *uset_gist_full(__isl_take isl_basic_set *bset,
1706         __isl_take isl_basic_set *context)
1707 {
1708         int i, k;
1709         isl_basic_set *combined = NULL;
1710         struct isl_tab *tab = NULL;
1711         unsigned context_ineq;
1712         unsigned total;
1713
1714         if (!bset || !context)
1715                 goto error;
1716
1717         if (isl_basic_set_is_universe(bset)) {
1718                 isl_basic_set_free(context);
1719                 return bset;
1720         }
1721
1722         if (isl_basic_set_is_universe(context)) {
1723                 isl_basic_set_free(context);
1724                 return bset;
1725         }
1726
1727         bset = remove_shifted_constraints(bset, context);
1728         if (!bset)
1729                 goto error;
1730         if (bset->n_ineq == 0)
1731                 goto done;
1732
1733         context_ineq = context->n_ineq;
1734         combined = isl_basic_set_cow(isl_basic_set_copy(context));
1735         combined = isl_basic_set_extend_constraints(combined, 0, bset->n_ineq);
1736         tab = isl_tab_from_basic_set(combined, 0);
1737         for (i = 0; i < context_ineq; ++i)
1738                 if (isl_tab_freeze_constraint(tab, i) < 0)
1739                         goto error;
1740         tab = isl_tab_extend(tab, bset->n_ineq);
1741         for (i = 0; i < bset->n_ineq; ++i)
1742                 if (isl_tab_add_ineq(tab, bset->ineq[i]) < 0)
1743                         goto error;
1744         bset = isl_basic_set_add_constraints(combined, bset, 0);
1745         combined = NULL;
1746         if (!bset)
1747                 goto error;
1748         if (isl_tab_detect_redundant(tab) < 0)
1749                 goto error;
1750         total = isl_basic_set_total_dim(bset);
1751         for (i = context_ineq; i < bset->n_ineq; ++i) {
1752                 int is_empty;
1753                 if (tab->con[i].is_redundant)
1754                         continue;
1755                 tab->con[i].is_redundant = 1;
1756                 combined = isl_basic_set_dup(bset);
1757                 combined = isl_basic_set_update_from_tab(combined, tab);
1758                 combined = isl_basic_set_extend_constraints(combined, 0, 1);
1759                 k = isl_basic_set_alloc_inequality(combined);
1760                 if (k < 0)
1761                         goto error;
1762                 isl_seq_neg(combined->ineq[k], bset->ineq[i], 1 + total);
1763                 isl_int_sub_ui(combined->ineq[k][0], combined->ineq[k][0], 1);
1764                 is_empty = isl_basic_set_is_empty(combined);
1765                 if (is_empty < 0)
1766                         goto error;
1767                 isl_basic_set_free(combined);
1768                 combined = NULL;
1769                 if (!is_empty)
1770                         tab->con[i].is_redundant = 0;
1771         }
1772         for (i = 0; i < context_ineq; ++i)
1773                 tab->con[i].is_redundant = 1;
1774         bset = isl_basic_set_update_from_tab(bset, tab);
1775         if (bset) {
1776                 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
1777                 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
1778         }
1779
1780         isl_tab_free(tab);
1781 done:
1782         bset = isl_basic_set_simplify(bset);
1783         bset = isl_basic_set_finalize(bset);
1784         isl_basic_set_free(context);
1785         return bset;
1786 error:
1787         isl_tab_free(tab);
1788         isl_basic_set_free(combined);
1789         isl_basic_set_free(context);
1790         isl_basic_set_free(bset);
1791         return NULL;
1792 }
1793
1794 /* Remove all information from bset that is redundant in the context
1795  * of context.  In particular, equalities that are linear combinations
1796  * of those in context are removed.  Then the inequalities that are
1797  * redundant in the context of the equalities and inequalities of
1798  * context are removed.
1799  *
1800  * We first compute the integer affine hull of the intersection,
1801  * compute the gist inside this affine hull and then add back
1802  * those equalities that are not implied by the context.
1803  *
1804  * If two constraints are mutually redundant, then uset_gist_full
1805  * will remove the second of those constraints.  We therefore first
1806  * sort the constraints so that constraints not involving existentially
1807  * quantified variables are given precedence over those that do.
1808  * We have to perform this sorting before the variable compression,
1809  * because that may effect the order of the variables.
1810  */
1811 static __isl_give isl_basic_set *uset_gist(__isl_take isl_basic_set *bset,
1812         __isl_take isl_basic_set *context)
1813 {
1814         isl_mat *eq;
1815         isl_mat *T, *T2;
1816         isl_basic_set *aff;
1817         isl_basic_set *aff_context;
1818         unsigned total;
1819
1820         if (!bset || !context)
1821                 goto error;
1822
1823         bset = isl_basic_set_intersect(bset, isl_basic_set_copy(context));
1824         if (isl_basic_set_plain_is_empty(bset)) {
1825                 isl_basic_set_free(context);
1826                 return bset;
1827         }
1828         bset = isl_basic_set_sort_constraints(bset);
1829         aff = isl_basic_set_affine_hull(isl_basic_set_copy(bset));
1830         if (!aff)
1831                 goto error;
1832         if (isl_basic_set_plain_is_empty(aff)) {
1833                 isl_basic_set_free(aff);
1834                 isl_basic_set_free(context);
1835                 return bset;
1836         }
1837         if (aff->n_eq == 0) {
1838                 isl_basic_set_free(aff);
1839                 return uset_gist_full(bset, context);
1840         }
1841         total = isl_basic_set_total_dim(bset);
1842         eq = isl_mat_sub_alloc6(bset->ctx, aff->eq, 0, aff->n_eq, 0, 1 + total);
1843         eq = isl_mat_cow(eq);
1844         T = isl_mat_variable_compression(eq, &T2);
1845         if (T && T->n_col == 0) {
1846                 isl_mat_free(T);
1847                 isl_mat_free(T2);
1848                 isl_basic_set_free(context);
1849                 isl_basic_set_free(aff);
1850                 return isl_basic_set_set_to_empty(bset);
1851         }
1852
1853         aff_context = isl_basic_set_affine_hull(isl_basic_set_copy(context));
1854
1855         bset = isl_basic_set_preimage(bset, isl_mat_copy(T));
1856         context = isl_basic_set_preimage(context, T);
1857
1858         bset = uset_gist_full(bset, context);
1859         bset = isl_basic_set_preimage(bset, T2);
1860         bset = isl_basic_set_intersect(bset, aff);
1861         bset = isl_basic_set_reduce_using_equalities(bset, aff_context);
1862
1863         if (bset) {
1864                 ISL_F_SET(bset, ISL_BASIC_SET_NO_IMPLICIT);
1865                 ISL_F_SET(bset, ISL_BASIC_SET_NO_REDUNDANT);
1866         }
1867
1868         return bset;
1869 error:
1870         isl_basic_set_free(bset);
1871         isl_basic_set_free(context);
1872         return NULL;
1873 }
1874
1875 /* Normalize the divs in "bmap" in the context of the equalities in "context".
1876  * We simply add the equalities in context to bmap and then do a regular
1877  * div normalizations.  Better results can be obtained by normalizing
1878  * only the divs in bmap than do not also appear in context.
1879  * We need to be careful to reduce the divs using the equalities
1880  * so that later calls to isl_basic_map_overlying_set wouldn't introduce
1881  * spurious constraints.
1882  */
1883 static struct isl_basic_map *normalize_divs_in_context(
1884         struct isl_basic_map *bmap, struct isl_basic_map *context)
1885 {
1886         int i;
1887         unsigned total_context;
1888         int div_eq;
1889
1890         div_eq = n_pure_div_eq(bmap);
1891         if (div_eq == 0)
1892                 return bmap;
1893
1894         if (context->n_div > 0)
1895                 bmap = isl_basic_map_align_divs(bmap, context);
1896
1897         total_context = isl_basic_map_total_dim(context);
1898         bmap = isl_basic_map_extend_constraints(bmap, context->n_eq, 0);
1899         for (i = 0; i < context->n_eq; ++i) {
1900                 int k;
1901                 k = isl_basic_map_alloc_equality(bmap);
1902                 isl_seq_cpy(bmap->eq[k], context->eq[i], 1 + total_context);
1903                 isl_seq_clr(bmap->eq[k] + 1 + total_context,
1904                                 isl_basic_map_total_dim(bmap) - total_context);
1905         }
1906         bmap = isl_basic_map_gauss(bmap, NULL);
1907         bmap = normalize_divs(bmap, NULL);
1908         bmap = isl_basic_map_gauss(bmap, NULL);
1909         return bmap;
1910 }
1911
1912 struct isl_basic_map *isl_basic_map_gist(struct isl_basic_map *bmap,
1913         struct isl_basic_map *context)
1914 {
1915         struct isl_basic_set *bset;
1916
1917         if (!bmap || !context)
1918                 goto error;
1919
1920         if (isl_basic_map_is_universe(bmap)) {
1921                 isl_basic_map_free(context);
1922                 return bmap;
1923         }
1924         if (isl_basic_map_plain_is_empty(context)) {
1925                 isl_basic_map_free(bmap);
1926                 return context;
1927         }
1928         if (isl_basic_map_plain_is_empty(bmap)) {
1929                 isl_basic_map_free(context);
1930                 return bmap;
1931         }
1932
1933         bmap = isl_basic_map_remove_redundancies(bmap);
1934         context = isl_basic_map_remove_redundancies(context);
1935
1936         if (context->n_eq)
1937                 bmap = normalize_divs_in_context(bmap, context);
1938
1939         context = isl_basic_map_align_divs(context, bmap);
1940         bmap = isl_basic_map_align_divs(bmap, context);
1941
1942         bset = uset_gist(isl_basic_map_underlying_set(isl_basic_map_copy(bmap)),
1943                          isl_basic_map_underlying_set(context));
1944
1945         return isl_basic_map_overlying_set(bset, bmap);
1946 error:
1947         isl_basic_map_free(bmap);
1948         isl_basic_map_free(context);
1949         return NULL;
1950 }
1951
1952 /*
1953  * Assumes context has no implicit divs.
1954  */
1955 __isl_give isl_map *isl_map_gist_basic_map(__isl_take isl_map *map,
1956         __isl_take isl_basic_map *context)
1957 {
1958         int i;
1959
1960         if (!map || !context)
1961                 goto error;;
1962
1963         if (isl_basic_map_plain_is_empty(context)) {
1964                 isl_map_free(map);
1965                 return isl_map_from_basic_map(context);
1966         }
1967
1968         context = isl_basic_map_remove_redundancies(context);
1969         map = isl_map_cow(map);
1970         if (!map || !context)
1971                 goto error;;
1972         isl_assert(map->ctx, isl_space_is_equal(map->dim, context->dim), goto error);
1973         map = isl_map_compute_divs(map);
1974         for (i = 0; i < map->n; ++i)
1975                 context = isl_basic_map_align_divs(context, map->p[i]);
1976         for (i = map->n - 1; i >= 0; --i) {
1977                 map->p[i] = isl_basic_map_gist(map->p[i],
1978                                                 isl_basic_map_copy(context));
1979                 if (!map->p[i])
1980                         goto error;
1981                 if (isl_basic_map_plain_is_empty(map->p[i])) {
1982                         isl_basic_map_free(map->p[i]);
1983                         if (i != map->n - 1)
1984                                 map->p[i] = map->p[map->n - 1];
1985                         map->n--;
1986                 }
1987         }
1988         isl_basic_map_free(context);
1989         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
1990         return map;
1991 error:
1992         isl_map_free(map);
1993         isl_basic_map_free(context);
1994         return NULL;
1995 }
1996
1997 static __isl_give isl_map *map_gist(__isl_take isl_map *map,
1998         __isl_take isl_map *context)
1999 {
2000         context = isl_map_compute_divs(context);
2001         return isl_map_gist_basic_map(map, isl_map_simple_hull(context));
2002 }
2003
2004 __isl_give isl_map *isl_map_gist(__isl_take isl_map *map,
2005         __isl_take isl_map *context)
2006 {
2007         return isl_map_align_params_map_map_and(map, context, &map_gist);
2008 }
2009
2010 struct isl_basic_set *isl_basic_set_gist(struct isl_basic_set *bset,
2011                                                 struct isl_basic_set *context)
2012 {
2013         return (struct isl_basic_set *)isl_basic_map_gist(
2014                 (struct isl_basic_map *)bset, (struct isl_basic_map *)context);
2015 }
2016
2017 __isl_give isl_set *isl_set_gist_basic_set(__isl_take isl_set *set,
2018         __isl_take isl_basic_set *context)
2019 {
2020         return (struct isl_set *)isl_map_gist_basic_map((struct isl_map *)set,
2021                                         (struct isl_basic_map *)context);
2022 }
2023
2024 __isl_give isl_set *isl_set_gist_params_basic_set(__isl_take isl_set *set,
2025         __isl_take isl_basic_set *context)
2026 {
2027         isl_space *space = isl_set_get_space(set);
2028         isl_basic_set *dom_context = isl_basic_set_universe(space);
2029         dom_context = isl_basic_set_intersect_params(dom_context, context);
2030         return isl_set_gist_basic_set(set, dom_context);
2031 }
2032
2033 __isl_give isl_set *isl_set_gist(__isl_take isl_set *set,
2034         __isl_take isl_set *context)
2035 {
2036         return (struct isl_set *)isl_map_gist((struct isl_map *)set,
2037                                         (struct isl_map *)context);
2038 }
2039
2040 __isl_give isl_map *isl_map_gist_domain(__isl_take isl_map *map,
2041         __isl_take isl_set *context)
2042 {
2043         isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2044         map_context = isl_map_intersect_domain(map_context, context);
2045         return isl_map_gist(map, map_context);
2046 }
2047
2048 __isl_give isl_map *isl_map_gist_range(__isl_take isl_map *map,
2049         __isl_take isl_set *context)
2050 {
2051         isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2052         map_context = isl_map_intersect_range(map_context, context);
2053         return isl_map_gist(map, map_context);
2054 }
2055
2056 __isl_give isl_map *isl_map_gist_params(__isl_take isl_map *map,
2057         __isl_take isl_set *context)
2058 {
2059         isl_map *map_context = isl_map_universe(isl_map_get_space(map));
2060         map_context = isl_map_intersect_params(map_context, context);
2061         return isl_map_gist(map, map_context);
2062 }
2063
2064 __isl_give isl_set *isl_set_gist_params(__isl_take isl_set *set,
2065         __isl_take isl_set *context)
2066 {
2067         return isl_map_gist_params(set, context);
2068 }
2069
2070 /* Quick check to see if two basic maps are disjoint.
2071  * In particular, we reduce the equalities and inequalities of
2072  * one basic map in the context of the equalities of the other
2073  * basic map and check if we get a contradiction.
2074  */
2075 int isl_basic_map_plain_is_disjoint(__isl_keep isl_basic_map *bmap1,
2076         __isl_keep isl_basic_map *bmap2)
2077 {
2078         struct isl_vec *v = NULL;
2079         int *elim = NULL;
2080         unsigned total;
2081         int i;
2082
2083         if (!bmap1 || !bmap2)
2084                 return -1;
2085         isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
2086                         return -1);
2087         if (bmap1->n_div || bmap2->n_div)
2088                 return 0;
2089         if (!bmap1->n_eq && !bmap2->n_eq)
2090                 return 0;
2091
2092         total = isl_space_dim(bmap1->dim, isl_dim_all);
2093         if (total == 0)
2094                 return 0;
2095         v = isl_vec_alloc(bmap1->ctx, 1 + total);
2096         if (!v)
2097                 goto error;
2098         elim = isl_alloc_array(bmap1->ctx, int, total);
2099         if (!elim)
2100                 goto error;
2101         compute_elimination_index(bmap1, elim);
2102         for (i = 0; i < bmap2->n_eq; ++i) {
2103                 int reduced;
2104                 reduced = reduced_using_equalities(v->block.data, bmap2->eq[i],
2105                                                         bmap1, elim);
2106                 if (reduced && !isl_int_is_zero(v->block.data[0]) &&
2107                     isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2108                         goto disjoint;
2109         }
2110         for (i = 0; i < bmap2->n_ineq; ++i) {
2111                 int reduced;
2112                 reduced = reduced_using_equalities(v->block.data,
2113                                                 bmap2->ineq[i], bmap1, elim);
2114                 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2115                     isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2116                         goto disjoint;
2117         }
2118         compute_elimination_index(bmap2, elim);
2119         for (i = 0; i < bmap1->n_ineq; ++i) {
2120                 int reduced;
2121                 reduced = reduced_using_equalities(v->block.data,
2122                                                 bmap1->ineq[i], bmap2, elim);
2123                 if (reduced && isl_int_is_neg(v->block.data[0]) &&
2124                     isl_seq_first_non_zero(v->block.data + 1, total) == -1)
2125                         goto disjoint;
2126         }
2127         isl_vec_free(v);
2128         free(elim);
2129         return 0;
2130 disjoint:
2131         isl_vec_free(v);
2132         free(elim);
2133         return 1;
2134 error:
2135         isl_vec_free(v);
2136         free(elim);
2137         return -1;
2138 }
2139
2140 int isl_basic_set_plain_is_disjoint(__isl_keep isl_basic_set *bset1,
2141         __isl_keep isl_basic_set *bset2)
2142 {
2143         return isl_basic_map_plain_is_disjoint((struct isl_basic_map *)bset1,
2144                                               (struct isl_basic_map *)bset2);
2145 }
2146
2147 int isl_map_plain_is_disjoint(__isl_keep isl_map *map1,
2148         __isl_keep isl_map *map2)
2149 {
2150         int i, j;
2151
2152         if (!map1 || !map2)
2153                 return -1;
2154
2155         if (isl_map_plain_is_equal(map1, map2))
2156                 return 0;
2157
2158         for (i = 0; i < map1->n; ++i) {
2159                 for (j = 0; j < map2->n; ++j) {
2160                         int d = isl_basic_map_plain_is_disjoint(map1->p[i],
2161                                                                map2->p[j]);
2162                         if (d != 1)
2163                                 return d;
2164                 }
2165         }
2166         return 1;
2167 }
2168
2169 int isl_set_plain_is_disjoint(__isl_keep isl_set *set1,
2170         __isl_keep isl_set *set2)
2171 {
2172         return isl_map_plain_is_disjoint((struct isl_map *)set1,
2173                                         (struct isl_map *)set2);
2174 }
2175
2176 int isl_set_fast_is_disjoint(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
2177 {
2178         return isl_set_plain_is_disjoint(set1, set2);
2179 }
2180
2181 /* Check if we can combine a given div with lower bound l and upper
2182  * bound u with some other div and if so return that other div.
2183  * Otherwise return -1.
2184  *
2185  * We first check that
2186  *      - the bounds are opposites of each other (except for the constant
2187  *        term)
2188  *      - the bounds do not reference any other div
2189  *      - no div is defined in terms of this div
2190  *
2191  * Let m be the size of the range allowed on the div by the bounds.
2192  * That is, the bounds are of the form
2193  *
2194  *      e <= a <= e + m - 1
2195  *
2196  * with e some expression in the other variables.
2197  * We look for another div b such that no third div is defined in terms
2198  * of this second div b and such that in any constraint that contains
2199  * a (except for the given lower and upper bound), also contains b
2200  * with a coefficient that is m times that of b.
2201  * That is, all constraints (execpt for the lower and upper bound)
2202  * are of the form
2203  *
2204  *      e + f (a + m b) >= 0
2205  *
2206  * If so, we return b so that "a + m b" can be replaced by
2207  * a single div "c = a + m b".
2208  */
2209 static int div_find_coalesce(struct isl_basic_map *bmap, int *pairs,
2210         unsigned div, unsigned l, unsigned u)
2211 {
2212         int i, j;
2213         unsigned dim;
2214         int coalesce = -1;
2215
2216         if (bmap->n_div <= 1)
2217                 return -1;
2218         dim = isl_space_dim(bmap->dim, isl_dim_all);
2219         if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim, div) != -1)
2220                 return -1;
2221         if (isl_seq_first_non_zero(bmap->ineq[l] + 1 + dim + div + 1,
2222                                    bmap->n_div - div - 1) != -1)
2223                 return -1;
2224         if (!isl_seq_is_neg(bmap->ineq[l] + 1, bmap->ineq[u] + 1,
2225                             dim + bmap->n_div))
2226                 return -1;
2227
2228         for (i = 0; i < bmap->n_div; ++i) {
2229                 if (isl_int_is_zero(bmap->div[i][0]))
2230                         continue;
2231                 if (!isl_int_is_zero(bmap->div[i][1 + 1 + dim + div]))
2232                         return -1;
2233         }
2234
2235         isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2236         if (isl_int_is_neg(bmap->ineq[l][0])) {
2237                 isl_int_sub(bmap->ineq[l][0],
2238                             bmap->ineq[l][0], bmap->ineq[u][0]);
2239                 bmap = isl_basic_map_copy(bmap);
2240                 bmap = isl_basic_map_set_to_empty(bmap);
2241                 isl_basic_map_free(bmap);
2242                 return -1;
2243         }
2244         isl_int_add_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2245         for (i = 0; i < bmap->n_div; ++i) {
2246                 if (i == div)
2247                         continue;
2248                 if (!pairs[i])
2249                         continue;
2250                 for (j = 0; j < bmap->n_div; ++j) {
2251                         if (isl_int_is_zero(bmap->div[j][0]))
2252                                 continue;
2253                         if (!isl_int_is_zero(bmap->div[j][1 + 1 + dim + i]))
2254                                 break;
2255                 }
2256                 if (j < bmap->n_div)
2257                         continue;
2258                 for (j = 0; j < bmap->n_ineq; ++j) {
2259                         int valid;
2260                         if (j == l || j == u)
2261                                 continue;
2262                         if (isl_int_is_zero(bmap->ineq[j][1 + dim + div]))
2263                                 continue;
2264                         if (isl_int_is_zero(bmap->ineq[j][1 + dim + i]))
2265                                 break;
2266                         isl_int_mul(bmap->ineq[j][1 + dim + div],
2267                                     bmap->ineq[j][1 + dim + div],
2268                                     bmap->ineq[l][0]);
2269                         valid = isl_int_eq(bmap->ineq[j][1 + dim + div],
2270                                            bmap->ineq[j][1 + dim + i]);
2271                         isl_int_divexact(bmap->ineq[j][1 + dim + div],
2272                                          bmap->ineq[j][1 + dim + div],
2273                                          bmap->ineq[l][0]);
2274                         if (!valid)
2275                                 break;
2276                 }
2277                 if (j < bmap->n_ineq)
2278                         continue;
2279                 coalesce = i;
2280                 break;
2281         }
2282         isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
2283         isl_int_sub(bmap->ineq[l][0], bmap->ineq[l][0], bmap->ineq[u][0]);
2284         return coalesce;
2285 }
2286
2287 /* Given a lower and an upper bound on div i, construct an inequality
2288  * that when nonnegative ensures that this pair of bounds always allows
2289  * for an integer value of the given div.
2290  * The lower bound is inequality l, while the upper bound is inequality u.
2291  * The constructed inequality is stored in ineq.
2292  * g, fl, fu are temporary scalars.
2293  *
2294  * Let the upper bound be
2295  *
2296  *      -n_u a + e_u >= 0
2297  *
2298  * and the lower bound
2299  *
2300  *      n_l a + e_l >= 0
2301  *
2302  * Let n_u = f_u g and n_l = f_l g, with g = gcd(n_u, n_l).
2303  * We have
2304  *
2305  *      - f_u e_l <= f_u f_l g a <= f_l e_u
2306  *
2307  * Since all variables are integer valued, this is equivalent to
2308  *
2309  *      - f_u e_l - (f_u - 1) <= f_u f_l g a <= f_l e_u + (f_l - 1)
2310  *
2311  * If this interval is at least f_u f_l g, then it contains at least
2312  * one integer value for a.
2313  * That is, the test constraint is
2314  *
2315  *      f_l e_u + f_u e_l + f_l - 1 + f_u - 1 + 1 >= f_u f_l g
2316  */
2317 static void construct_test_ineq(struct isl_basic_map *bmap, int i,
2318         int l, int u, isl_int *ineq, isl_int g, isl_int fl, isl_int fu)
2319 {
2320         unsigned dim;
2321         dim = isl_space_dim(bmap->dim, isl_dim_all);
2322
2323         isl_int_gcd(g, bmap->ineq[l][1 + dim + i], bmap->ineq[u][1 + dim + i]);
2324         isl_int_divexact(fl, bmap->ineq[l][1 + dim + i], g);
2325         isl_int_divexact(fu, bmap->ineq[u][1 + dim + i], g);
2326         isl_int_neg(fu, fu);
2327         isl_seq_combine(ineq, fl, bmap->ineq[u], fu, bmap->ineq[l],
2328                         1 + dim + bmap->n_div);
2329         isl_int_add(ineq[0], ineq[0], fl);
2330         isl_int_add(ineq[0], ineq[0], fu);
2331         isl_int_sub_ui(ineq[0], ineq[0], 1);
2332         isl_int_mul(g, g, fl);
2333         isl_int_mul(g, g, fu);
2334         isl_int_sub(ineq[0], ineq[0], g);
2335 }
2336
2337 /* Remove more kinds of divs that are not strictly needed.
2338  * In particular, if all pairs of lower and upper bounds on a div
2339  * are such that they allow at least one integer value of the div,
2340  * the we can eliminate the div using Fourier-Motzkin without
2341  * introducing any spurious solutions.
2342  */
2343 static struct isl_basic_map *drop_more_redundant_divs(
2344         struct isl_basic_map *bmap, int *pairs, int n)
2345 {
2346         struct isl_tab *tab = NULL;
2347         struct isl_vec *vec = NULL;
2348         unsigned dim;
2349         int remove = -1;
2350         isl_int g, fl, fu;
2351
2352         isl_int_init(g);
2353         isl_int_init(fl);
2354         isl_int_init(fu);
2355
2356         if (!bmap)
2357                 goto error;
2358
2359         dim = isl_space_dim(bmap->dim, isl_dim_all);
2360         vec = isl_vec_alloc(bmap->ctx, 1 + dim + bmap->n_div);
2361         if (!vec)
2362                 goto error;
2363
2364         tab = isl_tab_from_basic_map(bmap, 0);
2365
2366         while (n > 0) {
2367                 int i, l, u;
2368                 int best = -1;
2369                 enum isl_lp_result res;
2370
2371                 for (i = 0; i < bmap->n_div; ++i) {
2372                         if (!pairs[i])
2373                                 continue;
2374                         if (best >= 0 && pairs[best] <= pairs[i])
2375                                 continue;
2376                         best = i;
2377                 }
2378
2379                 i = best;
2380                 for (l = 0; l < bmap->n_ineq; ++l) {
2381                         if (!isl_int_is_pos(bmap->ineq[l][1 + dim + i]))
2382                                 continue;
2383                         for (u = 0; u < bmap->n_ineq; ++u) {
2384                                 if (!isl_int_is_neg(bmap->ineq[u][1 + dim + i]))
2385                                         continue;
2386                                 construct_test_ineq(bmap, i, l, u,
2387                                                     vec->el, g, fl, fu);
2388                                 res = isl_tab_min(tab, vec->el,
2389                                                   bmap->ctx->one, &g, NULL, 0);
2390                                 if (res == isl_lp_error)
2391                                         goto error;
2392                                 if (res == isl_lp_empty) {
2393                                         bmap = isl_basic_map_set_to_empty(bmap);
2394                                         break;
2395                                 }
2396                                 if (res != isl_lp_ok || isl_int_is_neg(g))
2397                                         break;
2398                         }
2399                         if (u < bmap->n_ineq)
2400                                 break;
2401                 }
2402                 if (l == bmap->n_ineq) {
2403                         remove = i;
2404                         break;
2405                 }
2406                 pairs[i] = 0;
2407                 --n;
2408         }
2409
2410         isl_tab_free(tab);
2411         isl_vec_free(vec);
2412
2413         isl_int_clear(g);
2414         isl_int_clear(fl);
2415         isl_int_clear(fu);
2416
2417         free(pairs);
2418
2419         if (remove < 0)
2420                 return bmap;
2421
2422         bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, remove, 1);
2423         return isl_basic_map_drop_redundant_divs(bmap);
2424 error:
2425         free(pairs);
2426         isl_basic_map_free(bmap);
2427         isl_tab_free(tab);
2428         isl_vec_free(vec);
2429         isl_int_clear(g);
2430         isl_int_clear(fl);
2431         isl_int_clear(fu);
2432         return NULL;
2433 }
2434
2435 /* Given a pair of divs div1 and div2 such that, expect for the lower bound l
2436  * and the upper bound u, div1 always occurs together with div2 in the form 
2437  * (div1 + m div2), where m is the constant range on the variable div1
2438  * allowed by l and u, replace the pair div1 and div2 by a single
2439  * div that is equal to div1 + m div2.
2440  *
2441  * The new div will appear in the location that contains div2.
2442  * We need to modify all constraints that contain
2443  * div2 = (div - div1) / m
2444  * (If a constraint does not contain div2, it will also not contain div1.)
2445  * If the constraint also contains div1, then we know they appear
2446  * as f (div1 + m div2) and we can simply replace (div1 + m div2) by div,
2447  * i.e., the coefficient of div is f.
2448  *
2449  * Otherwise, we first need to introduce div1 into the constraint.
2450  * Let the l be
2451  *
2452  *      div1 + f >=0
2453  *
2454  * and u
2455  *
2456  *      -div1 + f' >= 0
2457  *
2458  * A lower bound on div2
2459  *
2460  *      n div2 + t >= 0
2461  *
2462  * can be replaced by
2463  *
2464  *      (n * (m div 2 + div1) + m t + n f)/g >= 0
2465  *
2466  * with g = gcd(m,n).
2467  * An upper bound
2468  *
2469  *      -n div2 + t >= 0
2470  *
2471  * can be replaced by
2472  *
2473  *      (-n * (m div2 + div1) + m t + n f')/g >= 0
2474  *
2475  * These constraint are those that we would obtain from eliminating
2476  * div1 using Fourier-Motzkin.
2477  *
2478  * After all constraints have been modified, we drop the lower and upper
2479  * bound and then drop div1.
2480  */
2481 static struct isl_basic_map *coalesce_divs(struct isl_basic_map *bmap,
2482         unsigned div1, unsigned div2, unsigned l, unsigned u)
2483 {
2484         isl_int a;
2485         isl_int b;
2486         isl_int m;
2487         unsigned dim, total;
2488         int i;
2489
2490         dim = isl_space_dim(bmap->dim, isl_dim_all);
2491         total = 1 + dim + bmap->n_div;
2492
2493         isl_int_init(a);
2494         isl_int_init(b);
2495         isl_int_init(m);
2496         isl_int_add(m, bmap->ineq[l][0], bmap->ineq[u][0]);
2497         isl_int_add_ui(m, m, 1);
2498
2499         for (i = 0; i < bmap->n_ineq; ++i) {
2500                 if (i == l || i == u)
2501                         continue;
2502                 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div2]))
2503                         continue;
2504                 if (isl_int_is_zero(bmap->ineq[i][1 + dim + div1])) {
2505                         isl_int_gcd(b, m, bmap->ineq[i][1 + dim + div2]);
2506                         isl_int_divexact(a, m, b);
2507                         isl_int_divexact(b, bmap->ineq[i][1 + dim + div2], b);
2508                         if (isl_int_is_pos(b)) {
2509                                 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2510                                                 b, bmap->ineq[l], total);
2511                         } else {
2512                                 isl_int_neg(b, b);
2513                                 isl_seq_combine(bmap->ineq[i], a, bmap->ineq[i],
2514                                                 b, bmap->ineq[u], total);
2515                         }
2516                 }
2517                 isl_int_set(bmap->ineq[i][1 + dim + div2],
2518                             bmap->ineq[i][1 + dim + div1]);
2519                 isl_int_set_si(bmap->ineq[i][1 + dim + div1], 0);
2520         }
2521
2522         isl_int_clear(a);
2523         isl_int_clear(b);
2524         isl_int_clear(m);
2525         if (l > u) {
2526                 isl_basic_map_drop_inequality(bmap, l);
2527                 isl_basic_map_drop_inequality(bmap, u);
2528         } else {
2529                 isl_basic_map_drop_inequality(bmap, u);
2530                 isl_basic_map_drop_inequality(bmap, l);
2531         }
2532         bmap = isl_basic_map_drop_div(bmap, div1);
2533         return bmap;
2534 }
2535
2536 /* First check if we can coalesce any pair of divs and
2537  * then continue with dropping more redundant divs.
2538  *
2539  * We loop over all pairs of lower and upper bounds on a div
2540  * with coefficient 1 and -1, respectively, check if there
2541  * is any other div "c" with which we can coalesce the div
2542  * and if so, perform the coalescing.
2543  */
2544 static struct isl_basic_map *coalesce_or_drop_more_redundant_divs(
2545         struct isl_basic_map *bmap, int *pairs, int n)
2546 {
2547         int i, l, u;
2548         unsigned dim;
2549
2550         dim = isl_space_dim(bmap->dim, isl_dim_all);
2551
2552         for (i = 0; i < bmap->n_div; ++i) {
2553                 if (!pairs[i])
2554                         continue;
2555                 for (l = 0; l < bmap->n_ineq; ++l) {
2556                         if (!isl_int_is_one(bmap->ineq[l][1 + dim + i]))
2557                                 continue;
2558                         for (u = 0; u < bmap->n_ineq; ++u) {
2559                                 int c;
2560
2561                                 if (!isl_int_is_negone(bmap->ineq[u][1+dim+i]))
2562                                         continue;
2563                                 c = div_find_coalesce(bmap, pairs, i, l, u);
2564                                 if (c < 0)
2565                                         continue;
2566                                 free(pairs);
2567                                 bmap = coalesce_divs(bmap, i, c, l, u);
2568                                 return isl_basic_map_drop_redundant_divs(bmap);
2569                         }
2570                 }
2571         }
2572
2573         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
2574                 return bmap;
2575
2576         return drop_more_redundant_divs(bmap, pairs, n);
2577 }
2578
2579 /* Remove divs that are not strictly needed.
2580  * In particular, if a div only occurs positively (or negatively)
2581  * in constraints, then it can simply be dropped.
2582  * Also, if a div occurs only occurs in two constraints and if moreover
2583  * those two constraints are opposite to each other, except for the constant
2584  * term and if the sum of the constant terms is such that for any value
2585  * of the other values, there is always at least one integer value of the
2586  * div, i.e., if one plus this sum is greater than or equal to
2587  * the (absolute value) of the coefficent of the div in the constraints,
2588  * then we can also simply drop the div.
2589  *
2590  * If any divs are left after these simple checks then we move on
2591  * to more complicated cases in drop_more_redundant_divs.
2592  */
2593 struct isl_basic_map *isl_basic_map_drop_redundant_divs(
2594         struct isl_basic_map *bmap)
2595 {
2596         int i, j;
2597         unsigned off;
2598         int *pairs = NULL;
2599         int n = 0;
2600
2601         if (!bmap)
2602                 goto error;
2603
2604         off = isl_space_dim(bmap->dim, isl_dim_all);
2605         pairs = isl_calloc_array(bmap->ctx, int, bmap->n_div);
2606         if (!pairs)
2607                 goto error;
2608
2609         for (i = 0; i < bmap->n_div; ++i) {
2610                 int pos, neg;
2611                 int last_pos, last_neg;
2612                 int redundant;
2613                 int defined;
2614
2615                 defined = !isl_int_is_zero(bmap->div[i][0]);
2616                 for (j = 0; j < bmap->n_eq; ++j)
2617                         if (!isl_int_is_zero(bmap->eq[j][1 + off + i]))
2618                                 break;
2619                 if (j < bmap->n_eq)
2620                         continue;
2621                 ++n;
2622                 pos = neg = 0;
2623                 for (j = 0; j < bmap->n_ineq; ++j) {
2624                         if (isl_int_is_pos(bmap->ineq[j][1 + off + i])) {
2625                                 last_pos = j;
2626                                 ++pos;
2627                         }
2628                         if (isl_int_is_neg(bmap->ineq[j][1 + off + i])) {
2629                                 last_neg = j;
2630                                 ++neg;
2631                         }
2632                 }
2633                 pairs[i] = pos * neg;
2634                 if (pairs[i] == 0) {
2635                         for (j = bmap->n_ineq - 1; j >= 0; --j)
2636                                 if (!isl_int_is_zero(bmap->ineq[j][1+off+i]))
2637                                         isl_basic_map_drop_inequality(bmap, j);
2638                         bmap = isl_basic_map_drop_div(bmap, i);
2639                         free(pairs);
2640                         return isl_basic_map_drop_redundant_divs(bmap);
2641                 }
2642                 if (pairs[i] != 1)
2643                         continue;
2644                 if (!isl_seq_is_neg(bmap->ineq[last_pos] + 1,
2645                                     bmap->ineq[last_neg] + 1,
2646                                     off + bmap->n_div))
2647                         continue;
2648
2649                 isl_int_add(bmap->ineq[last_pos][0],
2650                             bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
2651                 isl_int_add_ui(bmap->ineq[last_pos][0],
2652                                bmap->ineq[last_pos][0], 1);
2653                 redundant = isl_int_ge(bmap->ineq[last_pos][0],
2654                                 bmap->ineq[last_pos][1+off+i]);
2655                 isl_int_sub_ui(bmap->ineq[last_pos][0],
2656                                bmap->ineq[last_pos][0], 1);
2657                 isl_int_sub(bmap->ineq[last_pos][0],
2658                             bmap->ineq[last_pos][0], bmap->ineq[last_neg][0]);
2659                 if (!redundant) {
2660                         if (defined ||
2661                             !ok_to_set_div_from_bound(bmap, i, last_pos)) {
2662                                 pairs[i] = 0;
2663                                 --n;
2664                                 continue;
2665                         }
2666                         bmap = set_div_from_lower_bound(bmap, i, last_pos);
2667                         bmap = isl_basic_map_simplify(bmap);
2668                         free(pairs);
2669                         return isl_basic_map_drop_redundant_divs(bmap);
2670                 }
2671                 if (last_pos > last_neg) {
2672                         isl_basic_map_drop_inequality(bmap, last_pos);
2673                         isl_basic_map_drop_inequality(bmap, last_neg);
2674                 } else {
2675                         isl_basic_map_drop_inequality(bmap, last_neg);
2676                         isl_basic_map_drop_inequality(bmap, last_pos);
2677                 }
2678                 bmap = isl_basic_map_drop_div(bmap, i);
2679                 free(pairs);
2680                 return isl_basic_map_drop_redundant_divs(bmap);
2681         }
2682
2683         if (n > 0)
2684                 return coalesce_or_drop_more_redundant_divs(bmap, pairs, n);
2685
2686         free(pairs);
2687         return bmap;
2688 error:
2689         free(pairs);
2690         isl_basic_map_free(bmap);
2691         return NULL;
2692 }
2693
2694 struct isl_basic_set *isl_basic_set_drop_redundant_divs(
2695         struct isl_basic_set *bset)
2696 {
2697         return (struct isl_basic_set *)
2698             isl_basic_map_drop_redundant_divs((struct isl_basic_map *)bset);
2699 }
2700
2701 struct isl_map *isl_map_drop_redundant_divs(struct isl_map *map)
2702 {
2703         int i;
2704
2705         if (!map)
2706                 return NULL;
2707         for (i = 0; i < map->n; ++i) {
2708                 map->p[i] = isl_basic_map_drop_redundant_divs(map->p[i]);
2709                 if (!map->p[i])
2710                         goto error;
2711         }
2712         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2713         return map;
2714 error:
2715         isl_map_free(map);
2716         return NULL;
2717 }
2718
2719 struct isl_set *isl_set_drop_redundant_divs(struct isl_set *set)
2720 {
2721         return (struct isl_set *)
2722             isl_map_drop_redundant_divs((struct isl_map *)set);
2723 }