blob: 64a9ba635d8e1d6b86a38f180174f2cffe7224bc [file] [log] [blame]
Tobias Grosser52a25232015-02-04 20:55:43 +00001/*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
Tobias Grosserccae1ee2016-12-22 23:08:57 +00006 * Copyright 2016 INRIA Paris
Michael Krusee0b34f32016-05-04 14:41:36 +00007 * Copyright 2016 Sven Verdoolaege
Tobias Grosser52a25232015-02-04 20:55:43 +00008 *
9 * Use of this software is governed by the MIT license
10 *
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
Tobias Grosserccae1ee2016-12-22 23:08:57 +000018 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
Tobias Grosser52a25232015-02-04 20:55:43 +000020 */
21
22#include <string.h>
23#include <isl_ctx_private.h>
24#include <isl_map_private.h>
25#include <isl_blk.h>
Tobias Grosser3e6070e2015-05-09 09:37:30 +000026#include <isl/constraint.h>
Tobias Grosser52a25232015-02-04 20:55:43 +000027#include "isl_space_private.h"
28#include "isl_equalities.h"
29#include <isl_lp_private.h>
30#include <isl_seq.h>
31#include <isl/set.h>
32#include <isl/map.h>
33#include <isl_reordering.h>
34#include "isl_sample.h"
35#include <isl_sort.h>
36#include "isl_tab.h"
37#include <isl/vec.h>
38#include <isl_mat_private.h>
39#include <isl_vec_private.h>
40#include <isl_dim_map.h>
41#include <isl_local_space_private.h>
42#include <isl_aff_private.h>
43#include <isl_options_private.h>
44#include <isl_morph.h>
45#include <isl_val_private.h>
46#include <isl/deprecated/map_int.h>
47#include <isl/deprecated/set_int.h>
48
Tobias Grosser06e15922016-11-16 11:06:47 +000049#include <bset_to_bmap.c>
50#include <bset_from_bmap.c>
51#include <set_to_map.c>
52#include <set_from_map.c>
53
Tobias Grosser52a25232015-02-04 20:55:43 +000054static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
55{
56 switch (type) {
57 case isl_dim_param: return dim->nparam;
58 case isl_dim_in: return dim->n_in;
59 case isl_dim_out: return dim->n_out;
60 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
61 default: return 0;
62 }
63}
64
65static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
66{
67 switch (type) {
68 case isl_dim_param: return 1;
69 case isl_dim_in: return 1 + dim->nparam;
70 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
71 default: return 0;
72 }
73}
74
75unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
76 enum isl_dim_type type)
77{
78 if (!bmap)
79 return 0;
80 switch (type) {
81 case isl_dim_cst: return 1;
82 case isl_dim_param:
83 case isl_dim_in:
84 case isl_dim_out: return isl_space_dim(bmap->dim, type);
85 case isl_dim_div: return bmap->n_div;
86 case isl_dim_all: return isl_basic_map_total_dim(bmap);
87 default: return 0;
88 }
89}
90
Tobias Grossere5671e52017-03-10 09:17:55 +000091/* Return the space of "map".
92 */
93__isl_keep isl_space *isl_map_peek_space(__isl_keep const isl_map *map)
94{
95 return map ? map->dim : NULL;
96}
97
Tobias Grosser52a25232015-02-04 20:55:43 +000098unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
99{
100 return map ? n(map->dim, type) : 0;
101}
102
103unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
104{
105 return set ? n(set->dim, type) : 0;
106}
107
108unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
109 enum isl_dim_type type)
110{
Michael Kruseffb32782016-08-17 15:24:45 +0000111 isl_space *space;
112
113 if (!bmap)
114 return 0;
115
116 space = bmap->dim;
Tobias Grosser52a25232015-02-04 20:55:43 +0000117 switch (type) {
118 case isl_dim_cst: return 0;
119 case isl_dim_param: return 1;
Michael Kruseffb32782016-08-17 15:24:45 +0000120 case isl_dim_in: return 1 + space->nparam;
121 case isl_dim_out: return 1 + space->nparam + space->n_in;
122 case isl_dim_div: return 1 + space->nparam + space->n_in +
123 space->n_out;
Tobias Grosser52a25232015-02-04 20:55:43 +0000124 default: return 0;
125 }
126}
127
128unsigned isl_basic_set_offset(struct isl_basic_set *bset,
129 enum isl_dim_type type)
130{
131 return isl_basic_map_offset(bset, type);
132}
133
134static unsigned map_offset(struct isl_map *map, enum isl_dim_type type)
135{
136 return pos(map->dim, type);
137}
138
139unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
140 enum isl_dim_type type)
141{
142 return isl_basic_map_dim(bset, type);
143}
144
145unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
146{
147 return isl_basic_set_dim(bset, isl_dim_set);
148}
149
150unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
151{
152 return isl_basic_set_dim(bset, isl_dim_param);
153}
154
155unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
156{
157 if (!bset)
158 return 0;
159 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
160}
161
162unsigned isl_set_n_dim(__isl_keep isl_set *set)
163{
164 return isl_set_dim(set, isl_dim_set);
165}
166
167unsigned isl_set_n_param(__isl_keep isl_set *set)
168{
169 return isl_set_dim(set, isl_dim_param);
170}
171
Tobias Grosserf4fe34b2017-03-16 21:33:20 +0000172unsigned isl_basic_map_n_in(__isl_keep const isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000173{
174 return bmap ? bmap->dim->n_in : 0;
175}
176
Tobias Grosserf4fe34b2017-03-16 21:33:20 +0000177unsigned isl_basic_map_n_out(__isl_keep const isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000178{
179 return bmap ? bmap->dim->n_out : 0;
180}
181
Tobias Grosserf4fe34b2017-03-16 21:33:20 +0000182unsigned isl_basic_map_n_param(__isl_keep const isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000183{
184 return bmap ? bmap->dim->nparam : 0;
185}
186
Tobias Grosserf4fe34b2017-03-16 21:33:20 +0000187unsigned isl_basic_map_n_div(__isl_keep const isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000188{
189 return bmap ? bmap->n_div : 0;
190}
191
192unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
193{
194 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
195}
196
197unsigned isl_map_n_in(const struct isl_map *map)
198{
199 return map ? map->dim->n_in : 0;
200}
201
202unsigned isl_map_n_out(const struct isl_map *map)
203{
204 return map ? map->dim->n_out : 0;
205}
206
207unsigned isl_map_n_param(const struct isl_map *map)
208{
209 return map ? map->dim->nparam : 0;
210}
211
Tobias Grossere5671e52017-03-10 09:17:55 +0000212/* Do "bmap1" and "bmap2" have the same parameters?
213 */
214static isl_bool isl_basic_map_has_equal_params(__isl_keep isl_basic_map *bmap1,
215 __isl_keep isl_basic_map *bmap2)
216{
217 isl_space *space1, *space2;
218
219 space1 = isl_basic_map_peek_space(bmap1);
220 space2 = isl_basic_map_peek_space(bmap2);
Tobias Grosser593ebdf2017-03-14 07:33:26 +0000221 return isl_space_has_equal_params(space1, space2);
Tobias Grossere5671e52017-03-10 09:17:55 +0000222}
223
224/* Do "map1" and "map2" have the same parameters?
225 */
226isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
227 __isl_keep isl_map *map2)
228{
229 isl_space *space1, *space2;
230
231 space1 = isl_map_peek_space(map1);
232 space2 = isl_map_peek_space(map2);
Tobias Grosser593ebdf2017-03-14 07:33:26 +0000233 return isl_space_has_equal_params(space1, space2);
Tobias Grossere5671e52017-03-10 09:17:55 +0000234}
235
236/* Do "map" and "set" have the same parameters?
237 */
238static isl_bool isl_map_set_has_equal_params(__isl_keep isl_map *map,
239 __isl_keep isl_set *set)
240{
241 return isl_map_has_equal_params(map, set_to_map(set));
242}
243
Tobias Grosser72745c22017-02-17 05:11:16 +0000244isl_bool isl_map_compatible_domain(__isl_keep isl_map *map,
245 __isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +0000246{
Tobias Grosser72745c22017-02-17 05:11:16 +0000247 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +0000248 if (!map || !set)
Tobias Grosser72745c22017-02-17 05:11:16 +0000249 return isl_bool_error;
Tobias Grossere5671e52017-03-10 09:17:55 +0000250 m = isl_map_has_equal_params(map, set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +0000251 if (m < 0 || !m)
252 return m;
253 return isl_space_tuple_is_equal(map->dim, isl_dim_in,
254 set->dim, isl_dim_set);
255}
256
Tobias Grosser932ec012016-07-06 09:11:00 +0000257isl_bool isl_basic_map_compatible_domain(__isl_keep isl_basic_map *bmap,
258 __isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +0000259{
Tobias Grosser932ec012016-07-06 09:11:00 +0000260 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +0000261 if (!bmap || !bset)
Tobias Grosser932ec012016-07-06 09:11:00 +0000262 return isl_bool_error;
Tobias Grossere5671e52017-03-10 09:17:55 +0000263 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +0000264 if (m < 0 || !m)
265 return m;
266 return isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
267 bset->dim, isl_dim_set);
268}
269
Tobias Grosser72745c22017-02-17 05:11:16 +0000270isl_bool isl_map_compatible_range(__isl_keep isl_map *map,
271 __isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +0000272{
Tobias Grosser72745c22017-02-17 05:11:16 +0000273 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +0000274 if (!map || !set)
Tobias Grosser72745c22017-02-17 05:11:16 +0000275 return isl_bool_error;
Tobias Grossere5671e52017-03-10 09:17:55 +0000276 m = isl_map_has_equal_params(map, set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +0000277 if (m < 0 || !m)
278 return m;
279 return isl_space_tuple_is_equal(map->dim, isl_dim_out,
280 set->dim, isl_dim_set);
281}
282
Tobias Grosser72745c22017-02-17 05:11:16 +0000283isl_bool isl_basic_map_compatible_range(__isl_keep isl_basic_map *bmap,
284 __isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +0000285{
Tobias Grosser72745c22017-02-17 05:11:16 +0000286 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +0000287 if (!bmap || !bset)
Tobias Grosser72745c22017-02-17 05:11:16 +0000288 return isl_bool_error;
Tobias Grossere5671e52017-03-10 09:17:55 +0000289 m = isl_basic_map_has_equal_params(bmap, bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +0000290 if (m < 0 || !m)
291 return m;
292 return isl_space_tuple_is_equal(bmap->dim, isl_dim_out,
293 bset->dim, isl_dim_set);
294}
295
296isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
297{
298 return bmap ? bmap->ctx : NULL;
299}
300
301isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
302{
303 return bset ? bset->ctx : NULL;
304}
305
306isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
307{
308 return map ? map->ctx : NULL;
309}
310
311isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
312{
313 return set ? set->ctx : NULL;
314}
315
Tobias Grossere5671e52017-03-10 09:17:55 +0000316/* Return the space of "bmap".
317 */
318__isl_keep isl_space *isl_basic_map_peek_space(
319 __isl_keep const isl_basic_map *bmap)
320{
321 return bmap ? bmap->dim : NULL;
322}
323
324/* Return the space of "bset".
325 */
326__isl_keep isl_space *isl_basic_set_peek_space(__isl_keep isl_basic_set *bset)
327{
328 return isl_basic_map_peek_space(bset_to_bmap(bset));
329}
330
Tobias Grosser52a25232015-02-04 20:55:43 +0000331__isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
332{
Tobias Grossere5671e52017-03-10 09:17:55 +0000333 return isl_space_copy(isl_basic_map_peek_space(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +0000334}
335
336__isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
337{
Tobias Grossere5671e52017-03-10 09:17:55 +0000338 return isl_basic_map_get_space(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +0000339}
340
341/* Extract the divs in "bmap" as a matrix.
342 */
343__isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
344{
345 int i;
346 isl_ctx *ctx;
347 isl_mat *div;
348 unsigned total;
349 unsigned cols;
350
351 if (!bmap)
352 return NULL;
353
354 ctx = isl_basic_map_get_ctx(bmap);
355 total = isl_space_dim(bmap->dim, isl_dim_all);
356 cols = 1 + 1 + total + bmap->n_div;
357 div = isl_mat_alloc(ctx, bmap->n_div, cols);
358 if (!div)
359 return NULL;
360
361 for (i = 0; i < bmap->n_div; ++i)
362 isl_seq_cpy(div->row[i], bmap->div[i], cols);
363
364 return div;
365}
366
367/* Extract the divs in "bset" as a matrix.
368 */
369__isl_give isl_mat *isl_basic_set_get_divs(__isl_keep isl_basic_set *bset)
370{
371 return isl_basic_map_get_divs(bset);
372}
373
374__isl_give isl_local_space *isl_basic_map_get_local_space(
375 __isl_keep isl_basic_map *bmap)
376{
377 isl_mat *div;
378
379 if (!bmap)
380 return NULL;
381
382 div = isl_basic_map_get_divs(bmap);
383 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
384}
385
386__isl_give isl_local_space *isl_basic_set_get_local_space(
387 __isl_keep isl_basic_set *bset)
388{
389 return isl_basic_map_get_local_space(bset);
390}
391
Michael Kruse959a8dc2016-01-15 15:54:45 +0000392/* For each known div d = floor(f/m), add the constraints
393 *
394 * f - m d >= 0
Tobias Grosser07b20952016-06-12 04:30:40 +0000395 * -(f-(m-1)) + m d >= 0
Michael Kruse959a8dc2016-01-15 15:54:45 +0000396 *
397 * Do not finalize the result.
398 */
399static __isl_give isl_basic_map *add_known_div_constraints(
400 __isl_take isl_basic_map *bmap)
401{
402 int i;
403 unsigned n_div;
404
405 if (!bmap)
406 return NULL;
407 n_div = isl_basic_map_dim(bmap, isl_dim_div);
408 if (n_div == 0)
409 return bmap;
410 bmap = isl_basic_map_cow(bmap);
411 bmap = isl_basic_map_extend_constraints(bmap, 0, 2 * n_div);
412 if (!bmap)
413 return NULL;
414 for (i = 0; i < n_div; ++i) {
415 if (isl_int_is_zero(bmap->div[i][0]))
416 continue;
417 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
418 return isl_basic_map_free(bmap);
419 }
420
421 return bmap;
422}
423
Tobias Grosser52a25232015-02-04 20:55:43 +0000424__isl_give isl_basic_map *isl_basic_map_from_local_space(
425 __isl_take isl_local_space *ls)
426{
427 int i;
428 int n_div;
429 isl_basic_map *bmap;
430
431 if (!ls)
432 return NULL;
433
434 n_div = isl_local_space_dim(ls, isl_dim_div);
435 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
436 n_div, 0, 2 * n_div);
437
438 for (i = 0; i < n_div; ++i)
439 if (isl_basic_map_alloc_div(bmap) < 0)
440 goto error;
441
Michael Kruse959a8dc2016-01-15 15:54:45 +0000442 for (i = 0; i < n_div; ++i)
Tobias Grosser52a25232015-02-04 20:55:43 +0000443 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
Michael Kruse959a8dc2016-01-15 15:54:45 +0000444 bmap = add_known_div_constraints(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +0000445
446 isl_local_space_free(ls);
447 return bmap;
448error:
449 isl_local_space_free(ls);
450 isl_basic_map_free(bmap);
451 return NULL;
452}
453
454__isl_give isl_basic_set *isl_basic_set_from_local_space(
455 __isl_take isl_local_space *ls)
456{
457 return isl_basic_map_from_local_space(ls);
458}
459
460__isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
461{
Tobias Grossere5671e52017-03-10 09:17:55 +0000462 return isl_space_copy(isl_map_peek_space(map));
Tobias Grosser52a25232015-02-04 20:55:43 +0000463}
464
465__isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
466{
467 if (!set)
468 return NULL;
469 return isl_space_copy(set->dim);
470}
471
472__isl_give isl_basic_map *isl_basic_map_set_tuple_name(
473 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
474{
475 bmap = isl_basic_map_cow(bmap);
476 if (!bmap)
477 return NULL;
478 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
479 if (!bmap->dim)
480 goto error;
481 bmap = isl_basic_map_finalize(bmap);
482 return bmap;
483error:
484 isl_basic_map_free(bmap);
485 return NULL;
486}
487
488__isl_give isl_basic_set *isl_basic_set_set_tuple_name(
489 __isl_take isl_basic_set *bset, const char *s)
490{
491 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
492}
493
494const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
495 enum isl_dim_type type)
496{
497 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
498}
499
500__isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
501 enum isl_dim_type type, const char *s)
502{
503 int i;
504
505 map = isl_map_cow(map);
506 if (!map)
507 return NULL;
508
509 map->dim = isl_space_set_tuple_name(map->dim, type, s);
510 if (!map->dim)
511 goto error;
512
513 for (i = 0; i < map->n; ++i) {
514 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
515 if (!map->p[i])
516 goto error;
517 }
518
519 return map;
520error:
521 isl_map_free(map);
522 return NULL;
523}
524
525/* Replace the identifier of the tuple of type "type" by "id".
526 */
527__isl_give isl_basic_map *isl_basic_map_set_tuple_id(
528 __isl_take isl_basic_map *bmap,
529 enum isl_dim_type type, __isl_take isl_id *id)
530{
531 bmap = isl_basic_map_cow(bmap);
532 if (!bmap)
533 goto error;
534 bmap->dim = isl_space_set_tuple_id(bmap->dim, type, id);
535 if (!bmap->dim)
536 return isl_basic_map_free(bmap);
537 bmap = isl_basic_map_finalize(bmap);
538 return bmap;
539error:
540 isl_id_free(id);
541 return NULL;
542}
543
544/* Replace the identifier of the tuple by "id".
545 */
546__isl_give isl_basic_set *isl_basic_set_set_tuple_id(
547 __isl_take isl_basic_set *bset, __isl_take isl_id *id)
548{
549 return isl_basic_map_set_tuple_id(bset, isl_dim_set, id);
550}
551
552/* Does the input or output tuple have a name?
553 */
Tobias Grosserb2f39922015-05-28 13:32:11 +0000554isl_bool isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
Tobias Grosser52a25232015-02-04 20:55:43 +0000555{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000556 return map ? isl_space_has_tuple_name(map->dim, type) : isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000557}
558
559const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
560 enum isl_dim_type type)
561{
562 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
563}
564
565__isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
566 const char *s)
567{
Tobias Grosser06e15922016-11-16 11:06:47 +0000568 return set_from_map(isl_map_set_tuple_name(set_to_map(set),
569 isl_dim_set, s));
Tobias Grosser52a25232015-02-04 20:55:43 +0000570}
571
572__isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
573 enum isl_dim_type type, __isl_take isl_id *id)
574{
575 map = isl_map_cow(map);
576 if (!map)
577 goto error;
578
579 map->dim = isl_space_set_tuple_id(map->dim, type, id);
580
581 return isl_map_reset_space(map, isl_space_copy(map->dim));
582error:
583 isl_id_free(id);
584 return NULL;
585}
586
587__isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
588 __isl_take isl_id *id)
589{
590 return isl_map_set_tuple_id(set, isl_dim_set, id);
591}
592
593__isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
594 enum isl_dim_type type)
595{
596 map = isl_map_cow(map);
597 if (!map)
598 return NULL;
599
600 map->dim = isl_space_reset_tuple_id(map->dim, type);
601
602 return isl_map_reset_space(map, isl_space_copy(map->dim));
603}
604
605__isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
606{
607 return isl_map_reset_tuple_id(set, isl_dim_set);
608}
609
Tobias Grosserb2f39922015-05-28 13:32:11 +0000610isl_bool isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
Tobias Grosser52a25232015-02-04 20:55:43 +0000611{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000612 return map ? isl_space_has_tuple_id(map->dim, type) : isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000613}
614
615__isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
616 enum isl_dim_type type)
617{
618 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
619}
620
Tobias Grosserb2f39922015-05-28 13:32:11 +0000621isl_bool isl_set_has_tuple_id(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +0000622{
623 return isl_map_has_tuple_id(set, isl_dim_set);
624}
625
626__isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
627{
628 return isl_map_get_tuple_id(set, isl_dim_set);
629}
630
631/* Does the set tuple have a name?
632 */
Tobias Grosserb2f39922015-05-28 13:32:11 +0000633isl_bool isl_set_has_tuple_name(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +0000634{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000635 if (!set)
636 return isl_bool_error;
637 return isl_space_has_tuple_name(set->dim, isl_dim_set);
Tobias Grosser52a25232015-02-04 20:55:43 +0000638}
639
640
641const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
642{
643 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
644}
645
646const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
647{
648 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
649}
650
651const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
652 enum isl_dim_type type, unsigned pos)
653{
654 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
655}
656
657const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
658 enum isl_dim_type type, unsigned pos)
659{
660 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
661}
662
663/* Does the given dimension have a name?
664 */
Tobias Grosserb2f39922015-05-28 13:32:11 +0000665isl_bool isl_map_has_dim_name(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +0000666 enum isl_dim_type type, unsigned pos)
667{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000668 if (!map)
669 return isl_bool_error;
670 return isl_space_has_dim_name(map->dim, type, pos);
Tobias Grosser52a25232015-02-04 20:55:43 +0000671}
672
673const char *isl_map_get_dim_name(__isl_keep isl_map *map,
674 enum isl_dim_type type, unsigned pos)
675{
676 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
677}
678
679const char *isl_set_get_dim_name(__isl_keep isl_set *set,
680 enum isl_dim_type type, unsigned pos)
681{
682 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
683}
684
685/* Does the given dimension have a name?
686 */
Tobias Grosserb2f39922015-05-28 13:32:11 +0000687isl_bool isl_set_has_dim_name(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +0000688 enum isl_dim_type type, unsigned pos)
689{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000690 if (!set)
691 return isl_bool_error;
692 return isl_space_has_dim_name(set->dim, type, pos);
Tobias Grosser52a25232015-02-04 20:55:43 +0000693}
694
695__isl_give isl_basic_map *isl_basic_map_set_dim_name(
696 __isl_take isl_basic_map *bmap,
697 enum isl_dim_type type, unsigned pos, const char *s)
698{
699 bmap = isl_basic_map_cow(bmap);
700 if (!bmap)
701 return NULL;
702 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
703 if (!bmap->dim)
704 goto error;
705 return isl_basic_map_finalize(bmap);
706error:
707 isl_basic_map_free(bmap);
708 return NULL;
709}
710
711__isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
712 enum isl_dim_type type, unsigned pos, const char *s)
713{
714 int i;
715
716 map = isl_map_cow(map);
717 if (!map)
718 return NULL;
719
720 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
721 if (!map->dim)
722 goto error;
723
724 for (i = 0; i < map->n; ++i) {
725 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
726 if (!map->p[i])
727 goto error;
728 }
729
730 return map;
731error:
732 isl_map_free(map);
733 return NULL;
734}
735
736__isl_give isl_basic_set *isl_basic_set_set_dim_name(
737 __isl_take isl_basic_set *bset,
738 enum isl_dim_type type, unsigned pos, const char *s)
739{
Tobias Grosser06e15922016-11-16 11:06:47 +0000740 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset),
741 type, pos, s));
Tobias Grosser52a25232015-02-04 20:55:43 +0000742}
743
744__isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
745 enum isl_dim_type type, unsigned pos, const char *s)
746{
Tobias Grosser06e15922016-11-16 11:06:47 +0000747 return set_from_map(isl_map_set_dim_name(set_to_map(set),
748 type, pos, s));
Tobias Grosser52a25232015-02-04 20:55:43 +0000749}
750
Tobias Grosserb2f39922015-05-28 13:32:11 +0000751isl_bool isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +0000752 enum isl_dim_type type, unsigned pos)
753{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000754 if (!bmap)
755 return isl_bool_error;
756 return isl_space_has_dim_id(bmap->dim, type, pos);
Tobias Grosser52a25232015-02-04 20:55:43 +0000757}
758
759__isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
760 enum isl_dim_type type, unsigned pos)
761{
762 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
763}
764
Tobias Grosserb2f39922015-05-28 13:32:11 +0000765isl_bool isl_map_has_dim_id(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +0000766 enum isl_dim_type type, unsigned pos)
767{
Tobias Grosserb2f39922015-05-28 13:32:11 +0000768 return map ? isl_space_has_dim_id(map->dim, type, pos) : isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000769}
770
771__isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
772 enum isl_dim_type type, unsigned pos)
773{
774 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
775}
776
Tobias Grosserb2f39922015-05-28 13:32:11 +0000777isl_bool isl_set_has_dim_id(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +0000778 enum isl_dim_type type, unsigned pos)
779{
780 return isl_map_has_dim_id(set, type, pos);
781}
782
783__isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
784 enum isl_dim_type type, unsigned pos)
785{
786 return isl_map_get_dim_id(set, type, pos);
787}
788
789__isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
790 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
791{
792 map = isl_map_cow(map);
793 if (!map)
794 goto error;
795
796 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
797
798 return isl_map_reset_space(map, isl_space_copy(map->dim));
799error:
800 isl_id_free(id);
801 return NULL;
802}
803
804__isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
805 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
806{
807 return isl_map_set_dim_id(set, type, pos, id);
808}
809
810int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
811 __isl_keep isl_id *id)
812{
813 if (!map)
814 return -1;
815 return isl_space_find_dim_by_id(map->dim, type, id);
816}
817
818int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
819 __isl_keep isl_id *id)
820{
821 return isl_map_find_dim_by_id(set, type, id);
822}
823
824/* Return the position of the dimension of the given type and name
825 * in "bmap".
826 * Return -1 if no such dimension can be found.
827 */
828int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map *bmap,
829 enum isl_dim_type type, const char *name)
830{
831 if (!bmap)
832 return -1;
833 return isl_space_find_dim_by_name(bmap->dim, type, name);
834}
835
836int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
837 const char *name)
838{
839 if (!map)
840 return -1;
841 return isl_space_find_dim_by_name(map->dim, type, name);
842}
843
844int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
845 const char *name)
846{
847 return isl_map_find_dim_by_name(set, type, name);
848}
849
850/* Reset the user pointer on all identifiers of parameters and tuples
851 * of the space of "map".
852 */
853__isl_give isl_map *isl_map_reset_user(__isl_take isl_map *map)
854{
855 isl_space *space;
856
857 space = isl_map_get_space(map);
858 space = isl_space_reset_user(space);
859 map = isl_map_reset_space(map, space);
860
861 return map;
862}
863
864/* Reset the user pointer on all identifiers of parameters and tuples
865 * of the space of "set".
866 */
867__isl_give isl_set *isl_set_reset_user(__isl_take isl_set *set)
868{
869 return isl_map_reset_user(set);
870}
871
Tobias Grosser72745c22017-02-17 05:11:16 +0000872isl_bool isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000873{
874 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +0000875 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000876 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
877}
878
Tobias Grosser5652c9c2016-10-01 19:46:51 +0000879/* Has "map" been marked as a rational map?
880 * In particular, have all basic maps in "map" been marked this way?
881 * An empty map is not considered to be rational.
882 * Maps where only some of the basic maps are marked rational
883 * are not allowed.
884 */
885isl_bool isl_map_is_rational(__isl_keep isl_map *map)
886{
887 int i;
888 isl_bool rational;
889
890 if (!map)
891 return isl_bool_error;
892 if (map->n == 0)
893 return isl_bool_false;
894 rational = isl_basic_map_is_rational(map->p[0]);
895 if (rational < 0)
896 return rational;
897 for (i = 1; i < map->n; ++i) {
898 isl_bool rational_i;
899
900 rational_i = isl_basic_map_is_rational(map->p[i]);
901 if (rational_i < 0)
Tobias Grosser72745c22017-02-17 05:11:16 +0000902 return rational_i;
Tobias Grosser5652c9c2016-10-01 19:46:51 +0000903 if (rational != rational_i)
904 isl_die(isl_map_get_ctx(map), isl_error_unsupported,
905 "mixed rational and integer basic maps "
906 "not supported", return isl_bool_error);
907 }
908
909 return rational;
910}
911
912/* Has "set" been marked as a rational set?
913 * In particular, have all basic set in "set" been marked this way?
914 * An empty set is not considered to be rational.
915 * Sets where only some of the basic sets are marked rational
916 * are not allowed.
917 */
918isl_bool isl_set_is_rational(__isl_keep isl_set *set)
919{
920 return isl_map_is_rational(set);
921}
922
Tobias Grosser52a25232015-02-04 20:55:43 +0000923int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
924{
925 return isl_basic_map_is_rational(bset);
926}
927
928/* Does "bmap" contain any rational points?
929 *
930 * If "bmap" has an equality for each dimension, equating the dimension
931 * to an integer constant, then it has no rational points, even if it
932 * is marked as rational.
933 */
Tobias Grosser72745c22017-02-17 05:11:16 +0000934isl_bool isl_basic_map_has_rational(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +0000935{
Tobias Grosser72745c22017-02-17 05:11:16 +0000936 isl_bool has_rational = isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +0000937 unsigned total;
938
939 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +0000940 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000941 if (isl_basic_map_plain_is_empty(bmap))
Tobias Grosser72745c22017-02-17 05:11:16 +0000942 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +0000943 if (!isl_basic_map_is_rational(bmap))
Tobias Grosser72745c22017-02-17 05:11:16 +0000944 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +0000945 bmap = isl_basic_map_copy(bmap);
946 bmap = isl_basic_map_implicit_equalities(bmap);
947 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +0000948 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000949 total = isl_basic_map_total_dim(bmap);
950 if (bmap->n_eq == total) {
951 int i, j;
952 for (i = 0; i < bmap->n_eq; ++i) {
953 j = isl_seq_first_non_zero(bmap->eq[i] + 1, total);
954 if (j < 0)
955 break;
956 if (!isl_int_is_one(bmap->eq[i][1 + j]) &&
957 !isl_int_is_negone(bmap->eq[i][1 + j]))
958 break;
959 j = isl_seq_first_non_zero(bmap->eq[i] + 1 + j + 1,
960 total - j - 1);
961 if (j >= 0)
962 break;
963 }
964 if (i == bmap->n_eq)
Tobias Grosser72745c22017-02-17 05:11:16 +0000965 has_rational = isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +0000966 }
967 isl_basic_map_free(bmap);
968
969 return has_rational;
970}
971
972/* Does "map" contain any rational points?
973 */
Tobias Grosser72745c22017-02-17 05:11:16 +0000974isl_bool isl_map_has_rational(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +0000975{
976 int i;
Tobias Grosser72745c22017-02-17 05:11:16 +0000977 isl_bool has_rational;
Tobias Grosser52a25232015-02-04 20:55:43 +0000978
979 if (!map)
Tobias Grosser72745c22017-02-17 05:11:16 +0000980 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +0000981 for (i = 0; i < map->n; ++i) {
982 has_rational = isl_basic_map_has_rational(map->p[i]);
Tobias Grosser72745c22017-02-17 05:11:16 +0000983 if (has_rational < 0 || has_rational)
984 return has_rational;
Tobias Grosser52a25232015-02-04 20:55:43 +0000985 }
Tobias Grosser72745c22017-02-17 05:11:16 +0000986 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +0000987}
988
989/* Does "set" contain any rational points?
990 */
Tobias Grosser72745c22017-02-17 05:11:16 +0000991isl_bool isl_set_has_rational(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +0000992{
993 return isl_map_has_rational(set);
994}
995
996/* Is this basic set a parameter domain?
997 */
Tobias Grosser72745c22017-02-17 05:11:16 +0000998isl_bool isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +0000999{
1000 if (!bset)
Tobias Grosser72745c22017-02-17 05:11:16 +00001001 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00001002 return isl_space_is_params(bset->dim);
1003}
1004
1005/* Is this set a parameter domain?
1006 */
Tobias Grosserb2f39922015-05-28 13:32:11 +00001007isl_bool isl_set_is_params(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +00001008{
1009 if (!set)
Tobias Grosserb2f39922015-05-28 13:32:11 +00001010 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00001011 return isl_space_is_params(set->dim);
1012}
1013
1014/* Is this map actually a parameter domain?
1015 * Users should never call this function. Outside of isl,
1016 * a map can never be a parameter domain.
1017 */
Tobias Grosser72745c22017-02-17 05:11:16 +00001018isl_bool isl_map_is_params(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00001019{
1020 if (!map)
Tobias Grosser72745c22017-02-17 05:11:16 +00001021 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00001022 return isl_space_is_params(map->dim);
1023}
1024
1025static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
1026 struct isl_basic_map *bmap, unsigned extra,
1027 unsigned n_eq, unsigned n_ineq)
1028{
1029 int i;
1030 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
1031
1032 bmap->ctx = ctx;
1033 isl_ctx_ref(ctx);
1034
1035 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
1036 if (isl_blk_is_error(bmap->block))
1037 goto error;
1038
1039 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
1040 if ((n_ineq + n_eq) && !bmap->ineq)
1041 goto error;
1042
1043 if (extra == 0) {
1044 bmap->block2 = isl_blk_empty();
1045 bmap->div = NULL;
1046 } else {
1047 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
1048 if (isl_blk_is_error(bmap->block2))
1049 goto error;
1050
1051 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
1052 if (!bmap->div)
1053 goto error;
1054 }
1055
1056 for (i = 0; i < n_ineq + n_eq; ++i)
1057 bmap->ineq[i] = bmap->block.data + i * row_size;
1058
1059 for (i = 0; i < extra; ++i)
1060 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
1061
1062 bmap->ref = 1;
1063 bmap->flags = 0;
1064 bmap->c_size = n_eq + n_ineq;
1065 bmap->eq = bmap->ineq + n_ineq;
1066 bmap->extra = extra;
1067 bmap->n_eq = 0;
1068 bmap->n_ineq = 0;
1069 bmap->n_div = 0;
1070 bmap->sample = NULL;
1071
1072 return bmap;
1073error:
1074 isl_basic_map_free(bmap);
1075 return NULL;
1076}
1077
1078struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
1079 unsigned nparam, unsigned dim, unsigned extra,
1080 unsigned n_eq, unsigned n_ineq)
1081{
1082 struct isl_basic_map *bmap;
1083 isl_space *space;
1084
1085 space = isl_space_set_alloc(ctx, nparam, dim);
1086 if (!space)
1087 return NULL;
1088
1089 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
Tobias Grosser06e15922016-11-16 11:06:47 +00001090 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00001091}
1092
1093struct isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
1094 unsigned extra, unsigned n_eq, unsigned n_ineq)
1095{
1096 struct isl_basic_map *bmap;
1097 if (!dim)
1098 return NULL;
1099 isl_assert(dim->ctx, dim->n_in == 0, goto error);
1100 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
Tobias Grosser06e15922016-11-16 11:06:47 +00001101 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00001102error:
1103 isl_space_free(dim);
1104 return NULL;
1105}
1106
1107struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
1108 unsigned extra, unsigned n_eq, unsigned n_ineq)
1109{
1110 struct isl_basic_map *bmap;
1111
1112 if (!dim)
1113 return NULL;
1114 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
1115 if (!bmap)
1116 goto error;
1117 bmap->dim = dim;
1118
1119 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
1120error:
1121 isl_space_free(dim);
1122 return NULL;
1123}
1124
1125struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
1126 unsigned nparam, unsigned in, unsigned out, unsigned extra,
1127 unsigned n_eq, unsigned n_ineq)
1128{
1129 struct isl_basic_map *bmap;
1130 isl_space *dim;
1131
1132 dim = isl_space_alloc(ctx, nparam, in, out);
1133 if (!dim)
1134 return NULL;
1135
1136 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1137 return bmap;
1138}
1139
1140static void dup_constraints(
1141 struct isl_basic_map *dst, struct isl_basic_map *src)
1142{
1143 int i;
1144 unsigned total = isl_basic_map_total_dim(src);
1145
1146 for (i = 0; i < src->n_eq; ++i) {
1147 int j = isl_basic_map_alloc_equality(dst);
1148 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
1149 }
1150
1151 for (i = 0; i < src->n_ineq; ++i) {
1152 int j = isl_basic_map_alloc_inequality(dst);
1153 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
1154 }
1155
1156 for (i = 0; i < src->n_div; ++i) {
1157 int j = isl_basic_map_alloc_div(dst);
1158 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
1159 }
1160 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
1161}
1162
1163struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
1164{
1165 struct isl_basic_map *dup;
1166
1167 if (!bmap)
1168 return NULL;
1169 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
1170 bmap->n_div, bmap->n_eq, bmap->n_ineq);
1171 if (!dup)
1172 return NULL;
1173 dup_constraints(dup, bmap);
1174 dup->flags = bmap->flags;
1175 dup->sample = isl_vec_copy(bmap->sample);
1176 return dup;
1177}
1178
1179struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
1180{
1181 struct isl_basic_map *dup;
1182
Tobias Grosser06e15922016-11-16 11:06:47 +00001183 dup = isl_basic_map_dup(bset_to_bmap(bset));
1184 return bset_from_bmap(dup);
Tobias Grosser52a25232015-02-04 20:55:43 +00001185}
1186
1187struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
1188{
1189 if (!bset)
1190 return NULL;
1191
1192 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
1193 bset->ref++;
1194 return bset;
1195 }
1196 return isl_basic_set_dup(bset);
1197}
1198
1199struct isl_set *isl_set_copy(struct isl_set *set)
1200{
1201 if (!set)
1202 return NULL;
1203
1204 set->ref++;
1205 return set;
1206}
1207
1208struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
1209{
1210 if (!bmap)
1211 return NULL;
1212
1213 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
1214 bmap->ref++;
1215 return bmap;
1216 }
1217 bmap = isl_basic_map_dup(bmap);
1218 if (bmap)
1219 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
1220 return bmap;
1221}
1222
1223struct isl_map *isl_map_copy(struct isl_map *map)
1224{
1225 if (!map)
1226 return NULL;
1227
1228 map->ref++;
1229 return map;
1230}
1231
1232__isl_null isl_basic_map *isl_basic_map_free(__isl_take isl_basic_map *bmap)
1233{
1234 if (!bmap)
1235 return NULL;
1236
1237 if (--bmap->ref > 0)
1238 return NULL;
1239
1240 isl_ctx_deref(bmap->ctx);
1241 free(bmap->div);
1242 isl_blk_free(bmap->ctx, bmap->block2);
1243 free(bmap->ineq);
1244 isl_blk_free(bmap->ctx, bmap->block);
1245 isl_vec_free(bmap->sample);
1246 isl_space_free(bmap->dim);
1247 free(bmap);
1248
1249 return NULL;
1250}
1251
1252__isl_null isl_basic_set *isl_basic_set_free(__isl_take isl_basic_set *bset)
1253{
Tobias Grosser06e15922016-11-16 11:06:47 +00001254 return isl_basic_map_free(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00001255}
1256
1257static int room_for_con(struct isl_basic_map *bmap, unsigned n)
1258{
1259 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
1260}
1261
Tobias Grossere5671e52017-03-10 09:17:55 +00001262/* Check that "map" has only named parameters, reporting an error
1263 * if it does not.
1264 */
1265isl_stat isl_map_check_named_params(__isl_keep isl_map *map)
1266{
1267 return isl_space_check_named_params(isl_map_peek_space(map));
1268}
1269
1270/* Check that "bmap1" and "bmap2" have the same parameters,
1271 * reporting an error if they do not.
1272 */
1273static isl_stat isl_basic_map_check_equal_params(
1274 __isl_keep isl_basic_map *bmap1, __isl_keep isl_basic_map *bmap2)
1275{
1276 isl_bool match;
1277
1278 match = isl_basic_map_has_equal_params(bmap1, bmap2);
1279 if (match < 0)
1280 return isl_stat_error;
1281 if (!match)
1282 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
1283 "parameters don't match", return isl_stat_error);
1284 return isl_stat_ok;
1285}
1286
Tobias Grosser52a25232015-02-04 20:55:43 +00001287__isl_give isl_map *isl_map_align_params_map_map_and(
1288 __isl_take isl_map *map1, __isl_take isl_map *map2,
1289 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
1290 __isl_take isl_map *map2))
1291{
1292 if (!map1 || !map2)
1293 goto error;
Tobias Grossere5671e52017-03-10 09:17:55 +00001294 if (isl_map_has_equal_params(map1, map2))
Tobias Grosser52a25232015-02-04 20:55:43 +00001295 return fn(map1, map2);
Tobias Grossere5671e52017-03-10 09:17:55 +00001296 if (isl_map_check_named_params(map1) < 0)
1297 goto error;
1298 if (isl_map_check_named_params(map2) < 0)
1299 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00001300 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1301 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1302 return fn(map1, map2);
1303error:
1304 isl_map_free(map1);
1305 isl_map_free(map2);
1306 return NULL;
1307}
1308
Tobias Grosserb2f39922015-05-28 13:32:11 +00001309isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
Tobias Grosser52a25232015-02-04 20:55:43 +00001310 __isl_keep isl_map *map2,
Tobias Grosserb2f39922015-05-28 13:32:11 +00001311 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
Tobias Grosser52a25232015-02-04 20:55:43 +00001312{
Tobias Grosserb2f39922015-05-28 13:32:11 +00001313 isl_bool r;
Tobias Grosser52a25232015-02-04 20:55:43 +00001314
1315 if (!map1 || !map2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00001316 return isl_bool_error;
Tobias Grossere5671e52017-03-10 09:17:55 +00001317 if (isl_map_has_equal_params(map1, map2))
Tobias Grosser52a25232015-02-04 20:55:43 +00001318 return fn(map1, map2);
Tobias Grossere5671e52017-03-10 09:17:55 +00001319 if (isl_map_check_named_params(map1) < 0)
1320 return isl_bool_error;
1321 if (isl_map_check_named_params(map2) < 0)
1322 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00001323 map1 = isl_map_copy(map1);
1324 map2 = isl_map_copy(map2);
1325 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
1326 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
1327 r = fn(map1, map2);
1328 isl_map_free(map1);
1329 isl_map_free(map2);
1330 return r;
1331}
1332
1333int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1334{
1335 struct isl_ctx *ctx;
1336 if (!bmap)
1337 return -1;
1338 ctx = bmap->ctx;
1339 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1340 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1341 return -1);
1342 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1343 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1344 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1345 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1346 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1347 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1348 isl_int *t;
1349 int j = isl_basic_map_alloc_inequality(bmap);
1350 if (j < 0)
1351 return -1;
1352 t = bmap->ineq[j];
1353 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1354 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1355 bmap->eq[-1] = t;
1356 bmap->n_eq++;
1357 bmap->n_ineq--;
1358 bmap->eq--;
1359 return 0;
1360 }
1361 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1362 bmap->extra - bmap->n_div);
1363 return bmap->n_eq++;
1364}
1365
1366int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1367{
Tobias Grosser06e15922016-11-16 11:06:47 +00001368 return isl_basic_map_alloc_equality(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00001369}
1370
1371int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1372{
1373 if (!bmap)
1374 return -1;
1375 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1376 bmap->n_eq -= n;
1377 return 0;
1378}
1379
1380int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1381{
Tobias Grosser06e15922016-11-16 11:06:47 +00001382 return isl_basic_map_free_equality(bset_to_bmap(bset), n);
Tobias Grosser52a25232015-02-04 20:55:43 +00001383}
1384
1385int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1386{
1387 isl_int *t;
1388 if (!bmap)
1389 return -1;
1390 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1391
1392 if (pos != bmap->n_eq - 1) {
1393 t = bmap->eq[pos];
1394 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1395 bmap->eq[bmap->n_eq - 1] = t;
1396 }
1397 bmap->n_eq--;
1398 return 0;
1399}
1400
Tobias Grosser52a25232015-02-04 20:55:43 +00001401/* Turn inequality "pos" of "bmap" into an equality.
1402 *
1403 * In particular, we move the inequality in front of the equalities
1404 * and move the last inequality in the position of the moved inequality.
1405 * Note that isl_tab_make_equalities_explicit depends on this particular
1406 * change in the ordering of the constraints.
1407 */
1408void isl_basic_map_inequality_to_equality(
1409 struct isl_basic_map *bmap, unsigned pos)
1410{
1411 isl_int *t;
1412
1413 t = bmap->ineq[pos];
1414 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1415 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1416 bmap->eq[-1] = t;
1417 bmap->n_eq++;
1418 bmap->n_ineq--;
1419 bmap->eq--;
1420 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1421 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1422 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1423 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1424}
1425
1426static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1427{
1428 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1429}
1430
1431int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
1432{
1433 struct isl_ctx *ctx;
1434 if (!bmap)
1435 return -1;
1436 ctx = bmap->ctx;
1437 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1438 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1439 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1440 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1441 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1442 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1443 1 + isl_basic_map_total_dim(bmap),
1444 bmap->extra - bmap->n_div);
1445 return bmap->n_ineq++;
1446}
1447
1448int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
1449{
Tobias Grosser06e15922016-11-16 11:06:47 +00001450 return isl_basic_map_alloc_inequality(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00001451}
1452
1453int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1454{
1455 if (!bmap)
1456 return -1;
1457 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1458 bmap->n_ineq -= n;
1459 return 0;
1460}
1461
1462int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1463{
Tobias Grosser06e15922016-11-16 11:06:47 +00001464 return isl_basic_map_free_inequality(bset_to_bmap(bset), n);
Tobias Grosser52a25232015-02-04 20:55:43 +00001465}
1466
1467int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1468{
1469 isl_int *t;
1470 if (!bmap)
1471 return -1;
1472 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1473
1474 if (pos != bmap->n_ineq - 1) {
1475 t = bmap->ineq[pos];
1476 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1477 bmap->ineq[bmap->n_ineq - 1] = t;
1478 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1479 }
1480 bmap->n_ineq--;
1481 return 0;
1482}
1483
1484int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1485{
Tobias Grosser06e15922016-11-16 11:06:47 +00001486 return isl_basic_map_drop_inequality(bset_to_bmap(bset), pos);
Tobias Grosser52a25232015-02-04 20:55:43 +00001487}
1488
1489__isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1490 isl_int *eq)
1491{
1492 int k;
1493
1494 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1495 if (!bmap)
1496 return NULL;
1497 k = isl_basic_map_alloc_equality(bmap);
1498 if (k < 0)
1499 goto error;
1500 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1501 return bmap;
1502error:
1503 isl_basic_map_free(bmap);
1504 return NULL;
1505}
1506
1507__isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1508 isl_int *eq)
1509{
Tobias Grosser06e15922016-11-16 11:06:47 +00001510 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset), eq));
Tobias Grosser52a25232015-02-04 20:55:43 +00001511}
1512
1513__isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1514 isl_int *ineq)
1515{
1516 int k;
1517
1518 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1519 if (!bmap)
1520 return NULL;
1521 k = isl_basic_map_alloc_inequality(bmap);
1522 if (k < 0)
1523 goto error;
1524 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1525 return bmap;
1526error:
1527 isl_basic_map_free(bmap);
1528 return NULL;
1529}
1530
1531__isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1532 isl_int *ineq)
1533{
Tobias Grosser06e15922016-11-16 11:06:47 +00001534 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset), ineq));
Tobias Grosser52a25232015-02-04 20:55:43 +00001535}
1536
1537int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1538{
1539 if (!bmap)
1540 return -1;
1541 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1542 isl_seq_clr(bmap->div[bmap->n_div] +
1543 1 + 1 + isl_basic_map_total_dim(bmap),
1544 bmap->extra - bmap->n_div);
1545 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1546 return bmap->n_div++;
1547}
1548
1549int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1550{
Tobias Grosser06e15922016-11-16 11:06:47 +00001551 return isl_basic_map_alloc_div(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00001552}
1553
Tobias Grosser94e53712016-12-31 07:46:11 +00001554/* Check that there are "n" dimensions of type "type" starting at "first"
1555 * in "bmap".
1556 */
1557static isl_stat isl_basic_map_check_range(__isl_keep isl_basic_map *bmap,
1558 enum isl_dim_type type, unsigned first, unsigned n)
1559{
1560 unsigned dim;
1561
1562 if (!bmap)
1563 return isl_stat_error;
1564 dim = isl_basic_map_dim(bmap, type);
1565 if (first + n > dim || first + n < first)
1566 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1567 "position or range out of bounds",
1568 return isl_stat_error);
1569 return isl_stat_ok;
1570}
1571
Tobias Grosser9ec4f952016-07-20 16:53:07 +00001572/* Insert an extra integer division, prescribed by "div", to "bmap"
1573 * at (integer division) position "pos".
1574 *
1575 * The integer division is first added at the end and then moved
1576 * into the right position.
1577 */
1578__isl_give isl_basic_map *isl_basic_map_insert_div(
1579 __isl_take isl_basic_map *bmap, int pos, __isl_keep isl_vec *div)
1580{
Tobias Grosser94e53712016-12-31 07:46:11 +00001581 int i, k;
Tobias Grosser9ec4f952016-07-20 16:53:07 +00001582
1583 bmap = isl_basic_map_cow(bmap);
1584 if (!bmap || !div)
1585 return isl_basic_map_free(bmap);
1586
1587 if (div->size != 1 + 1 + isl_basic_map_dim(bmap, isl_dim_all))
1588 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
1589 "unexpected size", return isl_basic_map_free(bmap));
Tobias Grosser94e53712016-12-31 07:46:11 +00001590 if (isl_basic_map_check_range(bmap, isl_dim_div, pos, 0) < 0)
1591 return isl_basic_map_free(bmap);
Tobias Grosser9ec4f952016-07-20 16:53:07 +00001592
1593 bmap = isl_basic_map_extend_space(bmap,
1594 isl_basic_map_get_space(bmap), 1, 0, 2);
1595 k = isl_basic_map_alloc_div(bmap);
1596 if (k < 0)
1597 return isl_basic_map_free(bmap);
1598 isl_seq_cpy(bmap->div[k], div->el, div->size);
1599 isl_int_set_si(bmap->div[k][div->size], 0);
1600
1601 for (i = k; i > pos; --i)
1602 isl_basic_map_swap_div(bmap, i, i - 1);
1603
1604 return bmap;
1605}
1606
Tobias Grosser72745c22017-02-17 05:11:16 +00001607isl_stat isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
Tobias Grosser52a25232015-02-04 20:55:43 +00001608{
1609 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +00001610 return isl_stat_error;
1611 isl_assert(bmap->ctx, n <= bmap->n_div, return isl_stat_error);
Tobias Grosser52a25232015-02-04 20:55:43 +00001612 bmap->n_div -= n;
Tobias Grosser72745c22017-02-17 05:11:16 +00001613 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00001614}
1615
Tobias Grosser52a25232015-02-04 20:55:43 +00001616/* Copy constraint from src to dst, putting the vars of src at offset
1617 * dim_off in dst and the divs of src at offset div_off in dst.
1618 * If both sets are actually map, then dim_off applies to the input
1619 * variables.
1620 */
1621static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1622 struct isl_basic_map *src_map, isl_int *src,
1623 unsigned in_off, unsigned out_off, unsigned div_off)
1624{
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00001625 unsigned src_nparam = isl_basic_map_dim(src_map, isl_dim_param);
1626 unsigned dst_nparam = isl_basic_map_dim(dst_map, isl_dim_param);
1627 unsigned src_in = isl_basic_map_dim(src_map, isl_dim_in);
1628 unsigned dst_in = isl_basic_map_dim(dst_map, isl_dim_in);
1629 unsigned src_out = isl_basic_map_dim(src_map, isl_dim_out);
1630 unsigned dst_out = isl_basic_map_dim(dst_map, isl_dim_out);
Tobias Grosser52a25232015-02-04 20:55:43 +00001631 isl_int_set(dst[0], src[0]);
1632 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1633 if (dst_nparam > src_nparam)
1634 isl_seq_clr(dst+1+src_nparam,
1635 dst_nparam - src_nparam);
1636 isl_seq_clr(dst+1+dst_nparam, in_off);
1637 isl_seq_cpy(dst+1+dst_nparam+in_off,
1638 src+1+src_nparam,
1639 isl_min(dst_in-in_off, src_in));
1640 if (dst_in-in_off > src_in)
1641 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1642 dst_in - in_off - src_in);
1643 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1644 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1645 src+1+src_nparam+src_in,
1646 isl_min(dst_out-out_off, src_out));
1647 if (dst_out-out_off > src_out)
1648 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1649 dst_out - out_off - src_out);
1650 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1651 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1652 src+1+src_nparam+src_in+src_out,
1653 isl_min(dst_map->extra-div_off, src_map->n_div));
1654 if (dst_map->n_div-div_off > src_map->n_div)
1655 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1656 div_off+src_map->n_div,
1657 dst_map->n_div - div_off - src_map->n_div);
1658}
1659
1660static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1661 struct isl_basic_map *src_map, isl_int *src,
1662 unsigned in_off, unsigned out_off, unsigned div_off)
1663{
1664 isl_int_set(dst[0], src[0]);
1665 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1666}
1667
1668static struct isl_basic_map *add_constraints(struct isl_basic_map *bmap1,
1669 struct isl_basic_map *bmap2, unsigned i_pos, unsigned o_pos)
1670{
1671 int i;
1672 unsigned div_off;
1673
1674 if (!bmap1 || !bmap2)
1675 goto error;
1676
1677 div_off = bmap1->n_div;
1678
1679 for (i = 0; i < bmap2->n_eq; ++i) {
1680 int i1 = isl_basic_map_alloc_equality(bmap1);
1681 if (i1 < 0)
1682 goto error;
1683 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1684 i_pos, o_pos, div_off);
1685 }
1686
1687 for (i = 0; i < bmap2->n_ineq; ++i) {
1688 int i1 = isl_basic_map_alloc_inequality(bmap1);
1689 if (i1 < 0)
1690 goto error;
1691 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1692 i_pos, o_pos, div_off);
1693 }
1694
1695 for (i = 0; i < bmap2->n_div; ++i) {
1696 int i1 = isl_basic_map_alloc_div(bmap1);
1697 if (i1 < 0)
1698 goto error;
1699 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1700 i_pos, o_pos, div_off);
1701 }
1702
1703 isl_basic_map_free(bmap2);
1704
1705 return bmap1;
1706
1707error:
1708 isl_basic_map_free(bmap1);
1709 isl_basic_map_free(bmap2);
1710 return NULL;
1711}
1712
1713struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1714 struct isl_basic_set *bset2, unsigned pos)
1715{
Tobias Grosser06e15922016-11-16 11:06:47 +00001716 return bset_from_bmap(add_constraints(bset_to_bmap(bset1),
1717 bset_to_bmap(bset2), 0, pos));
Tobias Grosser52a25232015-02-04 20:55:43 +00001718}
1719
1720struct isl_basic_map *isl_basic_map_extend_space(struct isl_basic_map *base,
1721 __isl_take isl_space *dim, unsigned extra,
1722 unsigned n_eq, unsigned n_ineq)
1723{
1724 struct isl_basic_map *ext;
1725 unsigned flags;
1726 int dims_ok;
1727
1728 if (!dim)
1729 goto error;
1730
1731 if (!base)
1732 goto error;
1733
1734 dims_ok = isl_space_is_equal(base->dim, dim) &&
1735 base->extra >= base->n_div + extra;
1736
1737 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1738 room_for_ineq(base, n_ineq)) {
1739 isl_space_free(dim);
1740 return base;
1741 }
1742
1743 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1744 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1745 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1746 extra += base->extra;
1747 n_eq += base->n_eq;
1748 n_ineq += base->n_ineq;
1749
1750 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1751 dim = NULL;
1752 if (!ext)
1753 goto error;
1754
1755 if (dims_ok)
1756 ext->sample = isl_vec_copy(base->sample);
1757 flags = base->flags;
1758 ext = add_constraints(ext, base, 0, 0);
1759 if (ext) {
1760 ext->flags = flags;
1761 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1762 }
1763
1764 return ext;
1765
1766error:
1767 isl_space_free(dim);
1768 isl_basic_map_free(base);
1769 return NULL;
1770}
1771
1772struct isl_basic_set *isl_basic_set_extend_space(struct isl_basic_set *base,
1773 __isl_take isl_space *dim, unsigned extra,
1774 unsigned n_eq, unsigned n_ineq)
1775{
Tobias Grosser06e15922016-11-16 11:06:47 +00001776 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base),
1777 dim, extra, n_eq, n_ineq));
Tobias Grosser52a25232015-02-04 20:55:43 +00001778}
1779
1780struct isl_basic_map *isl_basic_map_extend_constraints(
1781 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1782{
1783 if (!base)
1784 return NULL;
1785 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1786 0, n_eq, n_ineq);
1787}
1788
1789struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1790 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1791 unsigned n_eq, unsigned n_ineq)
1792{
1793 struct isl_basic_map *bmap;
1794 isl_space *dim;
1795
1796 if (!base)
1797 return NULL;
1798 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1799 if (!dim)
1800 goto error;
1801
1802 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1803 return bmap;
1804error:
1805 isl_basic_map_free(base);
1806 return NULL;
1807}
1808
1809struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1810 unsigned nparam, unsigned dim, unsigned extra,
1811 unsigned n_eq, unsigned n_ineq)
1812{
Tobias Grosser06e15922016-11-16 11:06:47 +00001813 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base),
1814 nparam, 0, dim, extra, n_eq, n_ineq));
Tobias Grosser52a25232015-02-04 20:55:43 +00001815}
1816
1817struct isl_basic_set *isl_basic_set_extend_constraints(
1818 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1819{
Tobias Grosser06e15922016-11-16 11:06:47 +00001820 isl_basic_map *bmap = bset_to_bmap(base);
1821 bmap = isl_basic_map_extend_constraints(bmap, n_eq, n_ineq);
1822 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00001823}
1824
1825struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1826{
Tobias Grosser06e15922016-11-16 11:06:47 +00001827 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00001828}
1829
1830struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1831{
1832 if (!bmap)
1833 return NULL;
1834
1835 if (bmap->ref > 1) {
1836 bmap->ref--;
1837 bmap = isl_basic_map_dup(bmap);
1838 }
Tobias Grosser1fa7b972015-02-16 19:33:40 +00001839 if (bmap) {
Tobias Grosser52a25232015-02-04 20:55:43 +00001840 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
Tobias Grosser1fa7b972015-02-16 19:33:40 +00001841 ISL_F_CLR(bmap, ISL_BASIC_MAP_REDUCED_COEFFICIENTS);
1842 }
Tobias Grosser52a25232015-02-04 20:55:43 +00001843 return bmap;
1844}
1845
Tobias Grosser07b20952016-06-12 04:30:40 +00001846/* Clear all cached information in "map", either because it is about
1847 * to be modified or because it is being freed.
1848 * Always return the same pointer that is passed in.
1849 * This is needed for the use in isl_map_free.
1850 */
1851static __isl_give isl_map *clear_caches(__isl_take isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00001852{
Tobias Grosser07b20952016-06-12 04:30:40 +00001853 isl_basic_map_free(map->cached_simple_hull[0]);
1854 isl_basic_map_free(map->cached_simple_hull[1]);
1855 map->cached_simple_hull[0] = NULL;
1856 map->cached_simple_hull[1] = NULL;
1857 return map;
Tobias Grosser52a25232015-02-04 20:55:43 +00001858}
1859
Tobias Grosser07b20952016-06-12 04:30:40 +00001860struct isl_set *isl_set_cow(struct isl_set *set)
1861{
1862 return isl_map_cow(set);
1863}
1864
1865/* Return an isl_map that is equal to "map" and that has only
1866 * a single reference.
1867 *
1868 * If the original input already has only one reference, then
1869 * simply return it, but clear all cached information, since
1870 * it may be rendered invalid by the operations that will be
1871 * performed on the result.
1872 *
1873 * Otherwise, create a duplicate (without any cached information).
1874 */
Tobias Grosser52a25232015-02-04 20:55:43 +00001875struct isl_map *isl_map_cow(struct isl_map *map)
1876{
1877 if (!map)
1878 return NULL;
1879
1880 if (map->ref == 1)
Tobias Grosser07b20952016-06-12 04:30:40 +00001881 return clear_caches(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00001882 map->ref--;
1883 return isl_map_dup(map);
1884}
1885
1886static void swap_vars(struct isl_blk blk, isl_int *a,
1887 unsigned a_len, unsigned b_len)
1888{
1889 isl_seq_cpy(blk.data, a+a_len, b_len);
1890 isl_seq_cpy(blk.data+b_len, a, a_len);
1891 isl_seq_cpy(a, blk.data, b_len+a_len);
1892}
1893
1894static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1895 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1896{
1897 int i;
1898 struct isl_blk blk;
1899
1900 if (!bmap)
1901 goto error;
1902
1903 isl_assert(bmap->ctx,
1904 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1905
1906 if (n1 == 0 || n2 == 0)
1907 return bmap;
1908
1909 bmap = isl_basic_map_cow(bmap);
1910 if (!bmap)
1911 return NULL;
1912
1913 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1914 if (isl_blk_is_error(blk))
1915 goto error;
1916
1917 for (i = 0; i < bmap->n_eq; ++i)
1918 swap_vars(blk,
1919 bmap->eq[i] + pos, n1, n2);
1920
1921 for (i = 0; i < bmap->n_ineq; ++i)
1922 swap_vars(blk,
1923 bmap->ineq[i] + pos, n1, n2);
1924
1925 for (i = 0; i < bmap->n_div; ++i)
1926 swap_vars(blk,
1927 bmap->div[i]+1 + pos, n1, n2);
1928
1929 isl_blk_free(bmap->ctx, blk);
1930
1931 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
1932 bmap = isl_basic_map_gauss(bmap, NULL);
1933 return isl_basic_map_finalize(bmap);
1934error:
1935 isl_basic_map_free(bmap);
1936 return NULL;
1937}
1938
Tobias Grosser52a25232015-02-04 20:55:43 +00001939struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1940{
1941 int i = 0;
1942 unsigned total;
1943 if (!bmap)
1944 goto error;
1945 total = isl_basic_map_total_dim(bmap);
Tobias Grosser72745c22017-02-17 05:11:16 +00001946 if (isl_basic_map_free_div(bmap, bmap->n_div) < 0)
1947 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00001948 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1949 if (bmap->n_eq > 0)
1950 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1951 else {
1952 i = isl_basic_map_alloc_equality(bmap);
1953 if (i < 0)
1954 goto error;
1955 }
1956 isl_int_set_si(bmap->eq[i][0], 1);
1957 isl_seq_clr(bmap->eq[i]+1, total);
1958 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
1959 isl_vec_free(bmap->sample);
1960 bmap->sample = NULL;
1961 return isl_basic_map_finalize(bmap);
1962error:
1963 isl_basic_map_free(bmap);
1964 return NULL;
1965}
1966
1967struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
1968{
Tobias Grosser06e15922016-11-16 11:06:47 +00001969 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00001970}
1971
1972/* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1973 * of "bmap").
1974 */
1975static void swap_div(__isl_keep isl_basic_map *bmap, int a, int b)
1976{
1977 isl_int *t = bmap->div[a];
1978 bmap->div[a] = bmap->div[b];
1979 bmap->div[b] = t;
1980}
1981
1982/* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1983 * div definitions accordingly.
1984 */
1985void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
1986{
1987 int i;
1988 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
1989
1990 swap_div(bmap, a, b);
1991
1992 for (i = 0; i < bmap->n_eq; ++i)
1993 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
1994
1995 for (i = 0; i < bmap->n_ineq; ++i)
1996 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
1997
1998 for (i = 0; i < bmap->n_div; ++i)
1999 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
2000 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2001}
2002
Tobias Grosser932ec012016-07-06 09:11:00 +00002003/* Swap divs "a" and "b" in "bset" and adjust the constraints and
2004 * div definitions accordingly.
2005 */
2006void isl_basic_set_swap_div(__isl_keep isl_basic_set *bset, int a, int b)
2007{
2008 isl_basic_map_swap_div(bset, a, b);
2009}
2010
Tobias Grosser52a25232015-02-04 20:55:43 +00002011/* Eliminate the specified n dimensions starting at first from the
2012 * constraints, without removing the dimensions from the space.
2013 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2014 */
2015__isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
2016 enum isl_dim_type type, unsigned first, unsigned n)
2017{
2018 int i;
2019
2020 if (!map)
2021 return NULL;
2022 if (n == 0)
2023 return map;
2024
2025 if (first + n > isl_map_dim(map, type) || first + n < first)
2026 isl_die(map->ctx, isl_error_invalid,
2027 "index out of bounds", goto error);
2028
2029 map = isl_map_cow(map);
2030 if (!map)
2031 return NULL;
2032
2033 for (i = 0; i < map->n; ++i) {
2034 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
2035 if (!map->p[i])
2036 goto error;
2037 }
2038 return map;
2039error:
2040 isl_map_free(map);
2041 return NULL;
2042}
2043
2044/* Eliminate the specified n dimensions starting at first from the
2045 * constraints, without removing the dimensions from the space.
2046 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2047 */
2048__isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
2049 enum isl_dim_type type, unsigned first, unsigned n)
2050{
Tobias Grosser06e15922016-11-16 11:06:47 +00002051 return set_from_map(isl_map_eliminate(set_to_map(set), type, first, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00002052}
2053
2054/* Eliminate the specified n dimensions starting at first from the
2055 * constraints, without removing the dimensions from the space.
2056 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2057 */
2058__isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
2059 unsigned first, unsigned n)
2060{
2061 return isl_set_eliminate(set, isl_dim_set, first, n);
2062}
2063
2064__isl_give isl_basic_map *isl_basic_map_remove_divs(
2065 __isl_take isl_basic_map *bmap)
2066{
2067 if (!bmap)
2068 return NULL;
2069 bmap = isl_basic_map_eliminate_vars(bmap,
2070 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
2071 if (!bmap)
2072 return NULL;
2073 bmap->n_div = 0;
2074 return isl_basic_map_finalize(bmap);
2075}
2076
2077__isl_give isl_basic_set *isl_basic_set_remove_divs(
2078 __isl_take isl_basic_set *bset)
2079{
Tobias Grosser06e15922016-11-16 11:06:47 +00002080 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00002081}
2082
2083__isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
2084{
2085 int i;
2086
2087 if (!map)
2088 return NULL;
2089 if (map->n == 0)
2090 return map;
2091
2092 map = isl_map_cow(map);
2093 if (!map)
2094 return NULL;
2095
2096 for (i = 0; i < map->n; ++i) {
2097 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
2098 if (!map->p[i])
2099 goto error;
2100 }
2101 return map;
2102error:
2103 isl_map_free(map);
2104 return NULL;
2105}
2106
2107__isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
2108{
2109 return isl_map_remove_divs(set);
2110}
2111
2112struct isl_basic_map *isl_basic_map_remove_dims(struct isl_basic_map *bmap,
2113 enum isl_dim_type type, unsigned first, unsigned n)
2114{
Tobias Grosser94e53712016-12-31 07:46:11 +00002115 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2116 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00002117 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
2118 return bmap;
2119 bmap = isl_basic_map_eliminate_vars(bmap,
2120 isl_basic_map_offset(bmap, type) - 1 + first, n);
2121 if (!bmap)
2122 return bmap;
2123 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
2124 return bmap;
2125 bmap = isl_basic_map_drop(bmap, type, first, n);
2126 return bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00002127}
2128
2129/* Return true if the definition of the given div (recursively) involves
2130 * any of the given variables.
2131 */
Tobias Grosser72745c22017-02-17 05:11:16 +00002132static isl_bool div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
Tobias Grosser52a25232015-02-04 20:55:43 +00002133 unsigned first, unsigned n)
2134{
2135 int i;
2136 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2137
2138 if (isl_int_is_zero(bmap->div[div][0]))
Tobias Grosser72745c22017-02-17 05:11:16 +00002139 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00002140 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
Tobias Grosser72745c22017-02-17 05:11:16 +00002141 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00002142
2143 for (i = bmap->n_div - 1; i >= 0; --i) {
Tobias Grosser72745c22017-02-17 05:11:16 +00002144 isl_bool involves;
2145
Tobias Grosser52a25232015-02-04 20:55:43 +00002146 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2147 continue;
Tobias Grosser72745c22017-02-17 05:11:16 +00002148 involves = div_involves_vars(bmap, i, first, n);
2149 if (involves < 0 || involves)
2150 return involves;
Tobias Grosser52a25232015-02-04 20:55:43 +00002151 }
2152
Tobias Grosser72745c22017-02-17 05:11:16 +00002153 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00002154}
2155
2156/* Try and add a lower and/or upper bound on "div" to "bmap"
2157 * based on inequality "i".
2158 * "total" is the total number of variables (excluding the divs).
2159 * "v" is a temporary object that can be used during the calculations.
2160 * If "lb" is set, then a lower bound should be constructed.
2161 * If "ub" is set, then an upper bound should be constructed.
2162 *
2163 * The calling function has already checked that the inequality does not
2164 * reference "div", but we still need to check that the inequality is
2165 * of the right form. We'll consider the case where we want to construct
2166 * a lower bound. The construction of upper bounds is similar.
2167 *
2168 * Let "div" be of the form
2169 *
2170 * q = floor((a + f(x))/d)
2171 *
2172 * We essentially check if constraint "i" is of the form
2173 *
2174 * b + f(x) >= 0
2175 *
2176 * so that we can use it to derive a lower bound on "div".
2177 * However, we allow a slightly more general form
2178 *
2179 * b + g(x) >= 0
2180 *
2181 * with the condition that the coefficients of g(x) - f(x) are all
2182 * divisible by d.
2183 * Rewriting this constraint as
2184 *
2185 * 0 >= -b - g(x)
2186 *
2187 * adding a + f(x) to both sides and dividing by d, we obtain
2188 *
2189 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2190 *
2191 * Taking the floor on both sides, we obtain
2192 *
2193 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2194 *
2195 * or
2196 *
2197 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2198 *
2199 * In the case of an upper bound, we construct the constraint
2200 *
2201 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2202 *
2203 */
2204static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
2205 __isl_take isl_basic_map *bmap, int div, int i,
2206 unsigned total, isl_int v, int lb, int ub)
2207{
2208 int j;
2209
2210 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
2211 if (lb) {
2212 isl_int_sub(v, bmap->ineq[i][1 + j],
2213 bmap->div[div][1 + 1 + j]);
2214 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
2215 }
2216 if (ub) {
2217 isl_int_add(v, bmap->ineq[i][1 + j],
2218 bmap->div[div][1 + 1 + j]);
2219 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
2220 }
2221 }
2222 if (!lb && !ub)
2223 return bmap;
2224
2225 bmap = isl_basic_map_cow(bmap);
2226 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
2227 if (lb) {
2228 int k = isl_basic_map_alloc_inequality(bmap);
2229 if (k < 0)
2230 goto error;
2231 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2232 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
2233 bmap->div[div][1 + j]);
2234 isl_int_cdiv_q(bmap->ineq[k][j],
2235 bmap->ineq[k][j], bmap->div[div][0]);
2236 }
2237 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
2238 }
2239 if (ub) {
2240 int k = isl_basic_map_alloc_inequality(bmap);
2241 if (k < 0)
2242 goto error;
2243 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
2244 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
2245 bmap->div[div][1 + j]);
2246 isl_int_fdiv_q(bmap->ineq[k][j],
2247 bmap->ineq[k][j], bmap->div[div][0]);
2248 }
2249 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
2250 }
2251
2252 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2253 return bmap;
2254error:
2255 isl_basic_map_free(bmap);
2256 return NULL;
2257}
2258
2259/* This function is called right before "div" is eliminated from "bmap"
2260 * using Fourier-Motzkin.
2261 * Look through the constraints of "bmap" for constraints on the argument
2262 * of the integer division and use them to construct constraints on the
2263 * integer division itself. These constraints can then be combined
2264 * during the Fourier-Motzkin elimination.
2265 * Note that it is only useful to introduce lower bounds on "div"
2266 * if "bmap" already contains upper bounds on "div" as the newly
2267 * introduce lower bounds can then be combined with the pre-existing
2268 * upper bounds. Similarly for upper bounds.
2269 * We therefore first check if "bmap" contains any lower and/or upper bounds
2270 * on "div".
2271 *
2272 * It is interesting to note that the introduction of these constraints
2273 * can indeed lead to more accurate results, even when compared to
2274 * deriving constraints on the argument of "div" from constraints on "div".
2275 * Consider, for example, the set
2276 *
2277 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2278 *
2279 * The second constraint can be rewritten as
2280 *
2281 * 2 * [(-i-2j+3)/4] + k >= 0
2282 *
2283 * from which we can derive
2284 *
2285 * -i - 2j + 3 >= -2k
2286 *
2287 * or
2288 *
2289 * i + 2j <= 3 + 2k
2290 *
2291 * Combined with the first constraint, we obtain
2292 *
2293 * -3 <= 3 + 2k or k >= -3
2294 *
2295 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2296 * the first constraint, we obtain
2297 *
2298 * [(i + 2j)/4] >= [-3/4] = -1
2299 *
2300 * Combining this constraint with the second constraint, we obtain
2301 *
2302 * k >= -2
2303 */
2304static __isl_give isl_basic_map *insert_bounds_on_div(
2305 __isl_take isl_basic_map *bmap, int div)
2306{
2307 int i;
2308 int check_lb, check_ub;
2309 isl_int v;
2310 unsigned total;
2311
2312 if (!bmap)
2313 return NULL;
2314
2315 if (isl_int_is_zero(bmap->div[div][0]))
2316 return bmap;
2317
2318 total = isl_space_dim(bmap->dim, isl_dim_all);
2319
2320 check_lb = 0;
2321 check_ub = 0;
2322 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
2323 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
2324 if (s > 0)
2325 check_ub = 1;
2326 if (s < 0)
2327 check_lb = 1;
2328 }
2329
2330 if (!check_lb && !check_ub)
2331 return bmap;
2332
2333 isl_int_init(v);
2334
2335 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
2336 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
2337 continue;
2338
2339 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
2340 check_lb, check_ub);
2341 }
2342
2343 isl_int_clear(v);
2344
2345 return bmap;
2346}
2347
2348/* Remove all divs (recursively) involving any of the given dimensions
2349 * in their definitions.
2350 */
2351__isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
2352 __isl_take isl_basic_map *bmap,
2353 enum isl_dim_type type, unsigned first, unsigned n)
2354{
2355 int i;
2356
Tobias Grosser94e53712016-12-31 07:46:11 +00002357 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2358 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00002359 first += isl_basic_map_offset(bmap, type);
2360
2361 for (i = bmap->n_div - 1; i >= 0; --i) {
Tobias Grosser72745c22017-02-17 05:11:16 +00002362 isl_bool involves;
2363
2364 involves = div_involves_vars(bmap, i, first, n);
2365 if (involves < 0)
2366 return isl_basic_map_free(bmap);
2367 if (!involves)
Tobias Grosser52a25232015-02-04 20:55:43 +00002368 continue;
2369 bmap = insert_bounds_on_div(bmap, i);
2370 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2371 if (!bmap)
2372 return NULL;
2373 i = bmap->n_div;
2374 }
2375
2376 return bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00002377}
2378
2379__isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
2380 __isl_take isl_basic_set *bset,
2381 enum isl_dim_type type, unsigned first, unsigned n)
2382{
2383 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
2384}
2385
2386__isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
2387 enum isl_dim_type type, unsigned first, unsigned n)
2388{
2389 int i;
2390
2391 if (!map)
2392 return NULL;
2393 if (map->n == 0)
2394 return map;
2395
2396 map = isl_map_cow(map);
2397 if (!map)
2398 return NULL;
2399
2400 for (i = 0; i < map->n; ++i) {
2401 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2402 type, first, n);
2403 if (!map->p[i])
2404 goto error;
2405 }
2406 return map;
2407error:
2408 isl_map_free(map);
2409 return NULL;
2410}
2411
2412__isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2413 enum isl_dim_type type, unsigned first, unsigned n)
2414{
Tobias Grosser06e15922016-11-16 11:06:47 +00002415 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set),
2416 type, first, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00002417}
2418
Tobias Grosser06e15922016-11-16 11:06:47 +00002419/* Does the description of "bmap" depend on the specified dimensions?
Tobias Grosser52a25232015-02-04 20:55:43 +00002420 * We also check whether the dimensions appear in any of the div definitions.
2421 * In principle there is no need for this check. If the dimensions appear
2422 * in a div definition, they also appear in the defining constraints of that
2423 * div.
2424 */
Tobias Grosserb2f39922015-05-28 13:32:11 +00002425isl_bool isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +00002426 enum isl_dim_type type, unsigned first, unsigned n)
2427{
2428 int i;
2429
Tobias Grosser94e53712016-12-31 07:46:11 +00002430 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00002431 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00002432
Tobias Grosser52a25232015-02-04 20:55:43 +00002433 first += isl_basic_map_offset(bmap, type);
2434 for (i = 0; i < bmap->n_eq; ++i)
2435 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00002436 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00002437 for (i = 0; i < bmap->n_ineq; ++i)
2438 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00002439 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00002440 for (i = 0; i < bmap->n_div; ++i) {
2441 if (isl_int_is_zero(bmap->div[i][0]))
2442 continue;
2443 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00002444 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00002445 }
2446
Tobias Grosserb2f39922015-05-28 13:32:11 +00002447 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00002448}
2449
Tobias Grosserb2f39922015-05-28 13:32:11 +00002450isl_bool isl_map_involves_dims(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +00002451 enum isl_dim_type type, unsigned first, unsigned n)
2452{
2453 int i;
2454
2455 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +00002456 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00002457
2458 if (first + n > isl_map_dim(map, type))
2459 isl_die(map->ctx, isl_error_invalid,
Tobias Grosserb2f39922015-05-28 13:32:11 +00002460 "index out of bounds", return isl_bool_error);
Tobias Grosser52a25232015-02-04 20:55:43 +00002461
2462 for (i = 0; i < map->n; ++i) {
Tobias Grosserb2f39922015-05-28 13:32:11 +00002463 isl_bool involves = isl_basic_map_involves_dims(map->p[i],
Tobias Grosser52a25232015-02-04 20:55:43 +00002464 type, first, n);
2465 if (involves < 0 || involves)
2466 return involves;
2467 }
2468
Tobias Grosserb2f39922015-05-28 13:32:11 +00002469 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00002470}
2471
Tobias Grosserb2f39922015-05-28 13:32:11 +00002472isl_bool isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
Tobias Grosser52a25232015-02-04 20:55:43 +00002473 enum isl_dim_type type, unsigned first, unsigned n)
2474{
2475 return isl_basic_map_involves_dims(bset, type, first, n);
2476}
2477
Tobias Grosserb2f39922015-05-28 13:32:11 +00002478isl_bool isl_set_involves_dims(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +00002479 enum isl_dim_type type, unsigned first, unsigned n)
2480{
2481 return isl_map_involves_dims(set, type, first, n);
2482}
2483
Tobias Grosser94e53712016-12-31 07:46:11 +00002484/* Drop all constraints in bmap that involve any of the dimensions
2485 * first to first+n-1.
2486 */
2487static __isl_give isl_basic_map *isl_basic_map_drop_constraints_involving(
2488 __isl_take isl_basic_map *bmap, unsigned first, unsigned n)
2489{
2490 int i;
2491
2492 if (n == 0)
2493 return bmap;
2494
2495 bmap = isl_basic_map_cow(bmap);
2496
2497 if (!bmap)
2498 return NULL;
2499
2500 for (i = bmap->n_eq - 1; i >= 0; --i) {
2501 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) == -1)
2502 continue;
2503 isl_basic_map_drop_equality(bmap, i);
2504 }
2505
2506 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2507 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) == -1)
2508 continue;
2509 isl_basic_map_drop_inequality(bmap, i);
2510 }
2511
2512 bmap = isl_basic_map_add_known_div_constraints(bmap);
2513 return bmap;
2514}
2515
2516/* Drop all constraints in bset that involve any of the dimensions
2517 * first to first+n-1.
2518 */
2519__isl_give isl_basic_set *isl_basic_set_drop_constraints_involving(
2520 __isl_take isl_basic_set *bset, unsigned first, unsigned n)
2521{
2522 return isl_basic_map_drop_constraints_involving(bset, first, n);
2523}
2524
2525/* Drop all constraints in bmap that do not involve any of the dimensions
2526 * first to first + n - 1 of the given type.
2527 */
2528__isl_give isl_basic_map *isl_basic_map_drop_constraints_not_involving_dims(
2529 __isl_take isl_basic_map *bmap,
2530 enum isl_dim_type type, unsigned first, unsigned n)
2531{
2532 int i;
2533
2534 if (n == 0) {
2535 isl_space *space = isl_basic_map_get_space(bmap);
2536 isl_basic_map_free(bmap);
2537 return isl_basic_map_universe(space);
2538 }
2539 bmap = isl_basic_map_cow(bmap);
2540 if (!bmap)
2541 return NULL;
2542
2543 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2544 return isl_basic_map_free(bmap);
2545
2546 first += isl_basic_map_offset(bmap, type) - 1;
2547
2548 for (i = bmap->n_eq - 1; i >= 0; --i) {
2549 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + first, n) != -1)
2550 continue;
2551 isl_basic_map_drop_equality(bmap, i);
2552 }
2553
2554 for (i = bmap->n_ineq - 1; i >= 0; --i) {
2555 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + first, n) != -1)
2556 continue;
2557 isl_basic_map_drop_inequality(bmap, i);
2558 }
2559
2560 bmap = isl_basic_map_add_known_div_constraints(bmap);
2561 return bmap;
2562}
2563
2564/* Drop all constraints in bset that do not involve any of the dimensions
2565 * first to first + n - 1 of the given type.
2566 */
2567__isl_give isl_basic_set *isl_basic_set_drop_constraints_not_involving_dims(
2568 __isl_take isl_basic_set *bset,
2569 enum isl_dim_type type, unsigned first, unsigned n)
2570{
2571 return isl_basic_map_drop_constraints_not_involving_dims(bset,
2572 type, first, n);
2573}
2574
2575/* Drop all constraints in bmap that involve any of the dimensions
2576 * first to first + n - 1 of the given type.
2577 */
2578__isl_give isl_basic_map *isl_basic_map_drop_constraints_involving_dims(
2579 __isl_take isl_basic_map *bmap,
2580 enum isl_dim_type type, unsigned first, unsigned n)
2581{
2582 if (!bmap)
2583 return NULL;
2584 if (n == 0)
2585 return bmap;
2586
2587 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
2588 return isl_basic_map_free(bmap);
2589
2590 bmap = isl_basic_map_remove_divs_involving_dims(bmap, type, first, n);
2591 first += isl_basic_map_offset(bmap, type) - 1;
2592 return isl_basic_map_drop_constraints_involving(bmap, first, n);
2593}
2594
2595/* Drop all constraints in bset that involve any of the dimensions
2596 * first to first + n - 1 of the given type.
2597 */
2598__isl_give isl_basic_set *isl_basic_set_drop_constraints_involving_dims(
2599 __isl_take isl_basic_set *bset,
2600 enum isl_dim_type type, unsigned first, unsigned n)
2601{
2602 return isl_basic_map_drop_constraints_involving_dims(bset,
2603 type, first, n);
2604}
2605
2606/* Drop constraints from "map" by applying "drop" to each basic map.
2607 */
2608static __isl_give isl_map *drop_constraints(__isl_take isl_map *map,
2609 enum isl_dim_type type, unsigned first, unsigned n,
2610 __isl_give isl_basic_map *(*drop)(__isl_take isl_basic_map *bmap,
2611 enum isl_dim_type type, unsigned first, unsigned n))
2612{
2613 int i;
2614 unsigned dim;
2615
2616 if (!map)
2617 return NULL;
2618
2619 dim = isl_map_dim(map, type);
2620 if (first + n > dim || first + n < first)
2621 isl_die(isl_map_get_ctx(map), isl_error_invalid,
2622 "index out of bounds", return isl_map_free(map));
2623
2624 map = isl_map_cow(map);
2625 if (!map)
2626 return NULL;
2627
2628 for (i = 0; i < map->n; ++i) {
2629 map->p[i] = drop(map->p[i], type, first, n);
2630 if (!map->p[i])
2631 return isl_map_free(map);
2632 }
2633
2634 if (map->n > 1)
2635 ISL_F_CLR(map, ISL_MAP_DISJOINT);
2636
2637 return map;
2638}
2639
2640/* Drop all constraints in map that involve any of the dimensions
2641 * first to first + n - 1 of the given type.
2642 */
2643__isl_give isl_map *isl_map_drop_constraints_involving_dims(
2644 __isl_take isl_map *map,
2645 enum isl_dim_type type, unsigned first, unsigned n)
2646{
2647 if (n == 0)
2648 return map;
2649 return drop_constraints(map, type, first, n,
2650 &isl_basic_map_drop_constraints_involving_dims);
2651}
2652
2653/* Drop all constraints in "map" that do not involve any of the dimensions
2654 * first to first + n - 1 of the given type.
2655 */
2656__isl_give isl_map *isl_map_drop_constraints_not_involving_dims(
2657 __isl_take isl_map *map,
2658 enum isl_dim_type type, unsigned first, unsigned n)
2659{
2660 if (n == 0) {
2661 isl_space *space = isl_map_get_space(map);
2662 isl_map_free(map);
2663 return isl_map_universe(space);
2664 }
2665 return drop_constraints(map, type, first, n,
2666 &isl_basic_map_drop_constraints_not_involving_dims);
2667}
2668
2669/* Drop all constraints in set that involve any of the dimensions
2670 * first to first + n - 1 of the given type.
2671 */
2672__isl_give isl_set *isl_set_drop_constraints_involving_dims(
2673 __isl_take isl_set *set,
2674 enum isl_dim_type type, unsigned first, unsigned n)
2675{
2676 return isl_map_drop_constraints_involving_dims(set, type, first, n);
2677}
2678
2679/* Drop all constraints in "set" that do not involve any of the dimensions
2680 * first to first + n - 1 of the given type.
2681 */
2682__isl_give isl_set *isl_set_drop_constraints_not_involving_dims(
2683 __isl_take isl_set *set,
2684 enum isl_dim_type type, unsigned first, unsigned n)
2685{
2686 return isl_map_drop_constraints_not_involving_dims(set, type, first, n);
2687}
2688
Tobias Grosser932ec012016-07-06 09:11:00 +00002689/* Does local variable "div" of "bmap" have a complete explicit representation?
2690 * Having a complete explicit representation requires not only
2691 * an explicit representation, but also that all local variables
2692 * that appear in this explicit representation in turn have
2693 * a complete explicit representation.
Tobias Grosser52a25232015-02-04 20:55:43 +00002694 */
Tobias Grosser932ec012016-07-06 09:11:00 +00002695isl_bool isl_basic_map_div_is_known(__isl_keep isl_basic_map *bmap, int div)
Tobias Grosser52a25232015-02-04 20:55:43 +00002696{
2697 int i;
2698 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
Tobias Grosser932ec012016-07-06 09:11:00 +00002699 isl_bool marked;
Tobias Grosser52a25232015-02-04 20:55:43 +00002700
Tobias Grosser932ec012016-07-06 09:11:00 +00002701 marked = isl_basic_map_div_is_marked_unknown(bmap, div);
2702 if (marked < 0 || marked)
2703 return isl_bool_not(marked);
Tobias Grosser52a25232015-02-04 20:55:43 +00002704
2705 for (i = bmap->n_div - 1; i >= 0; --i) {
Tobias Grosser932ec012016-07-06 09:11:00 +00002706 isl_bool known;
2707
Tobias Grosser52a25232015-02-04 20:55:43 +00002708 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2709 continue;
Tobias Grosser932ec012016-07-06 09:11:00 +00002710 known = isl_basic_map_div_is_known(bmap, i);
2711 if (known < 0 || !known)
2712 return known;
Tobias Grosser52a25232015-02-04 20:55:43 +00002713 }
2714
Tobias Grosser932ec012016-07-06 09:11:00 +00002715 return isl_bool_true;
2716}
2717
Tobias Grosser52a25232015-02-04 20:55:43 +00002718/* Remove all divs that are unknown or defined in terms of unknown divs.
2719 */
2720__isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
2721 __isl_take isl_basic_map *bmap)
2722{
2723 int i;
2724
2725 if (!bmap)
2726 return NULL;
2727
2728 for (i = bmap->n_div - 1; i >= 0; --i) {
Tobias Grosser932ec012016-07-06 09:11:00 +00002729 if (isl_basic_map_div_is_known(bmap, i))
Tobias Grosser52a25232015-02-04 20:55:43 +00002730 continue;
2731 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2732 if (!bmap)
2733 return NULL;
2734 i = bmap->n_div;
2735 }
2736
2737 return bmap;
2738}
2739
2740/* Remove all divs that are unknown or defined in terms of unknown divs.
2741 */
2742__isl_give isl_basic_set *isl_basic_set_remove_unknown_divs(
2743 __isl_take isl_basic_set *bset)
2744{
2745 return isl_basic_map_remove_unknown_divs(bset);
2746}
2747
2748__isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
2749{
2750 int i;
2751
2752 if (!map)
2753 return NULL;
2754 if (map->n == 0)
2755 return map;
2756
2757 map = isl_map_cow(map);
2758 if (!map)
2759 return NULL;
2760
2761 for (i = 0; i < map->n; ++i) {
2762 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
2763 if (!map->p[i])
2764 goto error;
2765 }
2766 return map;
2767error:
2768 isl_map_free(map);
2769 return NULL;
2770}
2771
2772__isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
2773{
Tobias Grosser06e15922016-11-16 11:06:47 +00002774 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00002775}
2776
2777__isl_give isl_basic_set *isl_basic_set_remove_dims(
2778 __isl_take isl_basic_set *bset,
2779 enum isl_dim_type type, unsigned first, unsigned n)
2780{
Tobias Grosser06e15922016-11-16 11:06:47 +00002781 isl_basic_map *bmap = bset_to_bmap(bset);
2782 bmap = isl_basic_map_remove_dims(bmap, type, first, n);
2783 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00002784}
2785
2786struct isl_map *isl_map_remove_dims(struct isl_map *map,
2787 enum isl_dim_type type, unsigned first, unsigned n)
2788{
2789 int i;
2790
2791 if (n == 0)
2792 return map;
2793
2794 map = isl_map_cow(map);
2795 if (!map)
2796 return NULL;
2797 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2798
2799 for (i = 0; i < map->n; ++i) {
2800 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
2801 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
2802 if (!map->p[i])
2803 goto error;
2804 }
2805 map = isl_map_drop(map, type, first, n);
2806 return map;
2807error:
2808 isl_map_free(map);
2809 return NULL;
2810}
2811
2812__isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
2813 enum isl_dim_type type, unsigned first, unsigned n)
2814{
Tobias Grosser06e15922016-11-16 11:06:47 +00002815 return set_from_map(isl_map_remove_dims(set_to_map(bset),
2816 type, first, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00002817}
2818
2819/* Project out n inputs starting at first using Fourier-Motzkin */
2820struct isl_map *isl_map_remove_inputs(struct isl_map *map,
2821 unsigned first, unsigned n)
2822{
2823 return isl_map_remove_dims(map, isl_dim_in, first, n);
2824}
2825
2826static void dump_term(struct isl_basic_map *bmap,
2827 isl_int c, int pos, FILE *out)
2828{
2829 const char *name;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00002830 unsigned in = isl_basic_map_dim(bmap, isl_dim_in);
2831 unsigned dim = in + isl_basic_map_dim(bmap, isl_dim_out);
2832 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
Tobias Grosser52a25232015-02-04 20:55:43 +00002833 if (!pos)
2834 isl_int_print(out, c, 0);
2835 else {
2836 if (!isl_int_is_one(c))
2837 isl_int_print(out, c, 0);
2838 if (pos < 1 + nparam) {
2839 name = isl_space_get_dim_name(bmap->dim,
2840 isl_dim_param, pos - 1);
2841 if (name)
2842 fprintf(out, "%s", name);
2843 else
2844 fprintf(out, "p%d", pos - 1);
2845 } else if (pos < 1 + nparam + in)
2846 fprintf(out, "i%d", pos - 1 - nparam);
2847 else if (pos < 1 + nparam + dim)
2848 fprintf(out, "o%d", pos - 1 - nparam - in);
2849 else
2850 fprintf(out, "e%d", pos - 1 - nparam - dim);
2851 }
2852}
2853
2854static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
2855 int sign, FILE *out)
2856{
2857 int i;
2858 int first;
2859 unsigned len = 1 + isl_basic_map_total_dim(bmap);
2860 isl_int v;
2861
2862 isl_int_init(v);
2863 for (i = 0, first = 1; i < len; ++i) {
2864 if (isl_int_sgn(c[i]) * sign <= 0)
2865 continue;
2866 if (!first)
2867 fprintf(out, " + ");
2868 first = 0;
2869 isl_int_abs(v, c[i]);
2870 dump_term(bmap, v, i, out);
2871 }
2872 isl_int_clear(v);
2873 if (first)
2874 fprintf(out, "0");
2875}
2876
2877static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
2878 const char *op, FILE *out, int indent)
2879{
2880 int i;
2881
2882 fprintf(out, "%*s", indent, "");
2883
2884 dump_constraint_sign(bmap, c, 1, out);
2885 fprintf(out, " %s ", op);
2886 dump_constraint_sign(bmap, c, -1, out);
2887
2888 fprintf(out, "\n");
2889
2890 for (i = bmap->n_div; i < bmap->extra; ++i) {
2891 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
2892 continue;
2893 fprintf(out, "%*s", indent, "");
2894 fprintf(out, "ERROR: unused div coefficient not zero\n");
2895 abort();
2896 }
2897}
2898
2899static void dump_constraints(struct isl_basic_map *bmap,
2900 isl_int **c, unsigned n,
2901 const char *op, FILE *out, int indent)
2902{
2903 int i;
2904
2905 for (i = 0; i < n; ++i)
2906 dump_constraint(bmap, c[i], op, out, indent);
2907}
2908
2909static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
2910{
2911 int j;
2912 int first = 1;
2913 unsigned total = isl_basic_map_total_dim(bmap);
2914
2915 for (j = 0; j < 1 + total; ++j) {
2916 if (isl_int_is_zero(exp[j]))
2917 continue;
2918 if (!first && isl_int_is_pos(exp[j]))
2919 fprintf(out, "+");
2920 dump_term(bmap, exp[j], j, out);
2921 first = 0;
2922 }
2923}
2924
2925static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
2926{
2927 int i;
2928
2929 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
2930 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
2931
2932 for (i = 0; i < bmap->n_div; ++i) {
2933 fprintf(out, "%*s", indent, "");
2934 fprintf(out, "e%d = [(", i);
2935 dump_affine(bmap, bmap->div[i]+1, out);
2936 fprintf(out, ")/");
2937 isl_int_print(out, bmap->div[i][0], 0);
2938 fprintf(out, "]\n");
2939 }
2940}
2941
2942void isl_basic_set_print_internal(struct isl_basic_set *bset,
2943 FILE *out, int indent)
2944{
2945 if (!bset) {
2946 fprintf(out, "null basic set\n");
2947 return;
2948 }
2949
2950 fprintf(out, "%*s", indent, "");
2951 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2952 bset->ref, bset->dim->nparam, bset->dim->n_out,
2953 bset->extra, bset->flags);
Tobias Grosser06e15922016-11-16 11:06:47 +00002954 dump(bset_to_bmap(bset), out, indent);
Tobias Grosser52a25232015-02-04 20:55:43 +00002955}
2956
2957void isl_basic_map_print_internal(struct isl_basic_map *bmap,
2958 FILE *out, int indent)
2959{
2960 if (!bmap) {
2961 fprintf(out, "null basic map\n");
2962 return;
2963 }
2964
2965 fprintf(out, "%*s", indent, "");
2966 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2967 "flags: %x, n_name: %d\n",
2968 bmap->ref,
2969 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
2970 bmap->extra, bmap->flags, bmap->dim->n_id);
2971 dump(bmap, out, indent);
2972}
2973
2974int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
2975{
2976 unsigned total;
2977 if (!bmap)
2978 return -1;
2979 total = isl_basic_map_total_dim(bmap);
2980 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
2981 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
2982 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
2983 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2984 return 0;
2985}
2986
Tobias Grosser07b20952016-06-12 04:30:40 +00002987__isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *space, int n,
Tobias Grosser52a25232015-02-04 20:55:43 +00002988 unsigned flags)
2989{
Tobias Grosser07b20952016-06-12 04:30:40 +00002990 if (!space)
Tobias Grosser52a25232015-02-04 20:55:43 +00002991 return NULL;
Tobias Grosser07b20952016-06-12 04:30:40 +00002992 if (isl_space_dim(space, isl_dim_in) != 0)
2993 isl_die(isl_space_get_ctx(space), isl_error_invalid,
2994 "set cannot have input dimensions", goto error);
2995 return isl_map_alloc_space(space, n, flags);
Tobias Grosser52a25232015-02-04 20:55:43 +00002996error:
Tobias Grosser07b20952016-06-12 04:30:40 +00002997 isl_space_free(space);
Tobias Grosser52a25232015-02-04 20:55:43 +00002998 return NULL;
2999}
3000
Tobias Grosser52a25232015-02-04 20:55:43 +00003001/* Make sure "map" has room for at least "n" more basic maps.
3002 */
3003struct isl_map *isl_map_grow(struct isl_map *map, int n)
3004{
3005 int i;
3006 struct isl_map *grown = NULL;
3007
3008 if (!map)
3009 return NULL;
3010 isl_assert(map->ctx, n >= 0, goto error);
3011 if (map->n + n <= map->size)
3012 return map;
3013 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
3014 if (!grown)
3015 goto error;
3016 for (i = 0; i < map->n; ++i) {
3017 grown->p[i] = isl_basic_map_copy(map->p[i]);
3018 if (!grown->p[i])
3019 goto error;
3020 grown->n++;
3021 }
3022 isl_map_free(map);
3023 return grown;
3024error:
3025 isl_map_free(grown);
3026 isl_map_free(map);
3027 return NULL;
3028}
3029
3030/* Make sure "set" has room for at least "n" more basic sets.
3031 */
3032struct isl_set *isl_set_grow(struct isl_set *set, int n)
3033{
Tobias Grosser06e15922016-11-16 11:06:47 +00003034 return set_from_map(isl_map_grow(set_to_map(set), n));
Tobias Grosser52a25232015-02-04 20:55:43 +00003035}
3036
Tobias Grosser52a25232015-02-04 20:55:43 +00003037struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
3038{
3039 return isl_map_from_basic_map(bset);
3040}
3041
3042struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
3043{
3044 struct isl_map *map;
3045
3046 if (!bmap)
3047 return NULL;
3048
3049 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
3050 return isl_map_add_basic_map(map, bmap);
3051}
3052
3053__isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
3054 __isl_take isl_basic_set *bset)
3055{
Tobias Grosser06e15922016-11-16 11:06:47 +00003056 return set_from_map(isl_map_add_basic_map(set_to_map(set),
3057 bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00003058}
3059
3060__isl_null isl_set *isl_set_free(__isl_take isl_set *set)
3061{
Tobias Grosser07b20952016-06-12 04:30:40 +00003062 return isl_map_free(set);
Tobias Grosser52a25232015-02-04 20:55:43 +00003063}
3064
3065void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
3066{
3067 int i;
3068
3069 if (!set) {
3070 fprintf(out, "null set\n");
3071 return;
3072 }
3073
3074 fprintf(out, "%*s", indent, "");
3075 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3076 set->ref, set->n, set->dim->nparam, set->dim->n_out,
3077 set->flags);
3078 for (i = 0; i < set->n; ++i) {
3079 fprintf(out, "%*s", indent, "");
3080 fprintf(out, "basic set %d:\n", i);
3081 isl_basic_set_print_internal(set->p[i], out, indent+4);
3082 }
3083}
3084
3085void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
3086{
3087 int i;
3088
3089 if (!map) {
3090 fprintf(out, "null map\n");
3091 return;
3092 }
3093
3094 fprintf(out, "%*s", indent, "");
3095 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3096 "flags: %x, n_name: %d\n",
3097 map->ref, map->n, map->dim->nparam, map->dim->n_in,
3098 map->dim->n_out, map->flags, map->dim->n_id);
3099 for (i = 0; i < map->n; ++i) {
3100 fprintf(out, "%*s", indent, "");
3101 fprintf(out, "basic map %d:\n", i);
3102 isl_basic_map_print_internal(map->p[i], out, indent+4);
3103 }
3104}
3105
3106struct isl_basic_map *isl_basic_map_intersect_domain(
3107 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3108{
3109 struct isl_basic_map *bmap_domain;
3110
Tobias Grossere5671e52017-03-10 09:17:55 +00003111 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00003112 goto error;
3113
Tobias Grosser52a25232015-02-04 20:55:43 +00003114 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
3115 isl_assert(bset->ctx,
3116 isl_basic_map_compatible_domain(bmap, bset), goto error);
3117
3118 bmap = isl_basic_map_cow(bmap);
3119 if (!bmap)
3120 goto error;
3121 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3122 bset->n_div, bset->n_eq, bset->n_ineq);
3123 bmap_domain = isl_basic_map_from_domain(bset);
3124 bmap = add_constraints(bmap, bmap_domain, 0, 0);
3125
3126 bmap = isl_basic_map_simplify(bmap);
3127 return isl_basic_map_finalize(bmap);
3128error:
3129 isl_basic_map_free(bmap);
3130 isl_basic_set_free(bset);
3131 return NULL;
3132}
3133
Tobias Grosser72745c22017-02-17 05:11:16 +00003134/* Check that the space of "bset" is the same as that of the range of "bmap".
3135 */
3136static isl_stat isl_basic_map_check_compatible_range(
3137 __isl_keep isl_basic_map *bmap, __isl_keep isl_basic_set *bset)
3138{
3139 isl_bool ok;
3140
3141 ok = isl_basic_map_compatible_range(bmap, bset);
3142 if (ok < 0)
3143 return isl_stat_error;
3144 if (!ok)
3145 isl_die(isl_basic_set_get_ctx(bset), isl_error_invalid,
3146 "incompatible spaces", return isl_stat_error);
3147
3148 return isl_stat_ok;
3149}
3150
Tobias Grosser52a25232015-02-04 20:55:43 +00003151struct isl_basic_map *isl_basic_map_intersect_range(
3152 struct isl_basic_map *bmap, struct isl_basic_set *bset)
3153{
3154 struct isl_basic_map *bmap_range;
3155
Tobias Grossere5671e52017-03-10 09:17:55 +00003156 if (isl_basic_map_check_equal_params(bmap, bset_to_bmap(bset)) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00003157 goto error;
3158
Tobias Grosser72745c22017-02-17 05:11:16 +00003159 if (isl_space_dim(bset->dim, isl_dim_set) != 0 &&
3160 isl_basic_map_check_compatible_range(bmap, bset) < 0)
3161 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00003162
Tobias Grossera67ac972016-02-26 11:35:12 +00003163 if (isl_basic_set_plain_is_universe(bset)) {
Tobias Grosser52a25232015-02-04 20:55:43 +00003164 isl_basic_set_free(bset);
3165 return bmap;
3166 }
3167
3168 bmap = isl_basic_map_cow(bmap);
3169 if (!bmap)
3170 goto error;
3171 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
3172 bset->n_div, bset->n_eq, bset->n_ineq);
Tobias Grossereab0943e2016-11-22 21:31:59 +00003173 bmap_range = bset_to_bmap(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00003174 bmap = add_constraints(bmap, bmap_range, 0, 0);
3175
3176 bmap = isl_basic_map_simplify(bmap);
3177 return isl_basic_map_finalize(bmap);
3178error:
3179 isl_basic_map_free(bmap);
3180 isl_basic_set_free(bset);
3181 return NULL;
3182}
3183
Tobias Grosserb2f39922015-05-28 13:32:11 +00003184isl_bool isl_basic_map_contains(__isl_keep isl_basic_map *bmap,
3185 __isl_keep isl_vec *vec)
Tobias Grosser52a25232015-02-04 20:55:43 +00003186{
3187 int i;
3188 unsigned total;
3189 isl_int s;
3190
3191 if (!bmap || !vec)
Tobias Grosserb2f39922015-05-28 13:32:11 +00003192 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00003193
3194 total = 1 + isl_basic_map_total_dim(bmap);
3195 if (total != vec->size)
Tobias Grosser72745c22017-02-17 05:11:16 +00003196 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00003197
3198 isl_int_init(s);
3199
3200 for (i = 0; i < bmap->n_eq; ++i) {
3201 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
3202 if (!isl_int_is_zero(s)) {
3203 isl_int_clear(s);
Tobias Grosserb2f39922015-05-28 13:32:11 +00003204 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00003205 }
3206 }
3207
3208 for (i = 0; i < bmap->n_ineq; ++i) {
3209 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
3210 if (isl_int_is_neg(s)) {
3211 isl_int_clear(s);
Tobias Grosserb2f39922015-05-28 13:32:11 +00003212 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00003213 }
3214 }
3215
3216 isl_int_clear(s);
3217
Tobias Grosserb2f39922015-05-28 13:32:11 +00003218 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00003219}
3220
Tobias Grosserb2f39922015-05-28 13:32:11 +00003221isl_bool isl_basic_set_contains(__isl_keep isl_basic_set *bset,
3222 __isl_keep isl_vec *vec)
Tobias Grosser52a25232015-02-04 20:55:43 +00003223{
Tobias Grosser06e15922016-11-16 11:06:47 +00003224 return isl_basic_map_contains(bset_to_bmap(bset), vec);
Tobias Grosser52a25232015-02-04 20:55:43 +00003225}
3226
3227struct isl_basic_map *isl_basic_map_intersect(
3228 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3229{
3230 struct isl_vec *sample = NULL;
3231
Tobias Grossere5671e52017-03-10 09:17:55 +00003232 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00003233 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00003234 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
3235 isl_space_dim(bmap1->dim, isl_dim_param) &&
3236 isl_space_dim(bmap2->dim, isl_dim_all) !=
3237 isl_space_dim(bmap2->dim, isl_dim_param))
3238 return isl_basic_map_intersect(bmap2, bmap1);
3239
3240 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
3241 isl_space_dim(bmap2->dim, isl_dim_param))
3242 isl_assert(bmap1->ctx,
3243 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
3244
Tobias Grosserfb3fb0a2015-11-21 20:48:39 +00003245 if (isl_basic_map_plain_is_empty(bmap1)) {
3246 isl_basic_map_free(bmap2);
3247 return bmap1;
3248 }
3249 if (isl_basic_map_plain_is_empty(bmap2)) {
3250 isl_basic_map_free(bmap1);
3251 return bmap2;
3252 }
3253
Tobias Grosser52a25232015-02-04 20:55:43 +00003254 if (bmap1->sample &&
3255 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
3256 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
3257 sample = isl_vec_copy(bmap1->sample);
3258 else if (bmap2->sample &&
3259 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
3260 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
3261 sample = isl_vec_copy(bmap2->sample);
3262
3263 bmap1 = isl_basic_map_cow(bmap1);
3264 if (!bmap1)
3265 goto error;
3266 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
3267 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
3268 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
3269
3270 if (!bmap1)
3271 isl_vec_free(sample);
3272 else if (sample) {
3273 isl_vec_free(bmap1->sample);
3274 bmap1->sample = sample;
3275 }
3276
3277 bmap1 = isl_basic_map_simplify(bmap1);
3278 return isl_basic_map_finalize(bmap1);
3279error:
3280 if (sample)
3281 isl_vec_free(sample);
3282 isl_basic_map_free(bmap1);
3283 isl_basic_map_free(bmap2);
3284 return NULL;
3285}
3286
3287struct isl_basic_set *isl_basic_set_intersect(
3288 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
3289{
Tobias Grosser06e15922016-11-16 11:06:47 +00003290 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1),
3291 bset_to_bmap(bset2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00003292}
3293
3294__isl_give isl_basic_set *isl_basic_set_intersect_params(
3295 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
3296{
3297 return isl_basic_set_intersect(bset1, bset2);
3298}
3299
3300/* Special case of isl_map_intersect, where both map1 and map2
3301 * are convex, without any divs and such that either map1 or map2
3302 * contains a single constraint. This constraint is then simply
3303 * added to the other map.
3304 */
3305static __isl_give isl_map *map_intersect_add_constraint(
3306 __isl_take isl_map *map1, __isl_take isl_map *map2)
3307{
3308 isl_assert(map1->ctx, map1->n == 1, goto error);
3309 isl_assert(map2->ctx, map1->n == 1, goto error);
3310 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
3311 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
3312
3313 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
3314 return isl_map_intersect(map2, map1);
3315
Tobias Grosser52a25232015-02-04 20:55:43 +00003316 map1 = isl_map_cow(map1);
3317 if (!map1)
3318 goto error;
3319 if (isl_map_plain_is_empty(map1)) {
3320 isl_map_free(map2);
3321 return map1;
3322 }
3323 map1->p[0] = isl_basic_map_cow(map1->p[0]);
3324 if (map2->p[0]->n_eq == 1)
3325 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
3326 else
3327 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
3328 map2->p[0]->ineq[0]);
3329
3330 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
3331 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
3332 if (!map1->p[0])
3333 goto error;
3334
3335 if (isl_basic_map_plain_is_empty(map1->p[0])) {
3336 isl_basic_map_free(map1->p[0]);
3337 map1->n = 0;
3338 }
3339
3340 isl_map_free(map2);
3341
3342 return map1;
3343error:
3344 isl_map_free(map1);
3345 isl_map_free(map2);
3346 return NULL;
3347}
3348
3349/* map2 may be either a parameter domain or a map living in the same
3350 * space as map1.
3351 */
3352static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
3353 __isl_take isl_map *map2)
3354{
3355 unsigned flags = 0;
3356 isl_map *result;
3357 int i, j;
3358
3359 if (!map1 || !map2)
3360 goto error;
3361
3362 if ((isl_map_plain_is_empty(map1) ||
3363 isl_map_plain_is_universe(map2)) &&
3364 isl_space_is_equal(map1->dim, map2->dim)) {
3365 isl_map_free(map2);
3366 return map1;
3367 }
3368 if ((isl_map_plain_is_empty(map2) ||
3369 isl_map_plain_is_universe(map1)) &&
3370 isl_space_is_equal(map1->dim, map2->dim)) {
3371 isl_map_free(map1);
3372 return map2;
3373 }
3374
3375 if (map1->n == 1 && map2->n == 1 &&
3376 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
3377 isl_space_is_equal(map1->dim, map2->dim) &&
3378 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
3379 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
3380 return map_intersect_add_constraint(map1, map2);
3381
3382 if (isl_space_dim(map2->dim, isl_dim_all) !=
3383 isl_space_dim(map2->dim, isl_dim_param))
3384 isl_assert(map1->ctx,
3385 isl_space_is_equal(map1->dim, map2->dim), goto error);
3386
3387 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
3388 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
3389 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
3390
3391 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3392 map1->n * map2->n, flags);
3393 if (!result)
3394 goto error;
3395 for (i = 0; i < map1->n; ++i)
3396 for (j = 0; j < map2->n; ++j) {
3397 struct isl_basic_map *part;
3398 part = isl_basic_map_intersect(
3399 isl_basic_map_copy(map1->p[i]),
3400 isl_basic_map_copy(map2->p[j]));
3401 if (isl_basic_map_is_empty(part) < 0)
3402 part = isl_basic_map_free(part);
3403 result = isl_map_add_basic_map(result, part);
3404 if (!result)
3405 goto error;
3406 }
3407 isl_map_free(map1);
3408 isl_map_free(map2);
3409 return result;
3410error:
3411 isl_map_free(map1);
3412 isl_map_free(map2);
3413 return NULL;
3414}
3415
3416static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
3417 __isl_take isl_map *map2)
3418{
3419 if (!map1 || !map2)
3420 goto error;
3421 if (!isl_space_is_equal(map1->dim, map2->dim))
3422 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
3423 "spaces don't match", goto error);
3424 return map_intersect_internal(map1, map2);
3425error:
3426 isl_map_free(map1);
3427 isl_map_free(map2);
3428 return NULL;
3429}
3430
3431__isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
3432 __isl_take isl_map *map2)
3433{
3434 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
3435}
3436
3437struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
3438{
Tobias Grosser06e15922016-11-16 11:06:47 +00003439 return set_from_map(isl_map_intersect(set_to_map(set1),
3440 set_to_map(set2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00003441}
3442
3443/* map_intersect_internal accepts intersections
3444 * with parameter domains, so we can just call that function.
3445 */
3446static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
3447 __isl_take isl_set *params)
3448{
3449 return map_intersect_internal(map, params);
3450}
3451
3452__isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
3453 __isl_take isl_map *map2)
3454{
3455 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
3456}
3457
3458__isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
3459 __isl_take isl_set *params)
3460{
3461 return isl_map_intersect_params(set, params);
3462}
3463
3464struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
3465{
Tobias Grosserb2f39922015-05-28 13:32:11 +00003466 isl_space *space;
3467 unsigned pos, n1, n2;
Tobias Grosser52a25232015-02-04 20:55:43 +00003468
3469 if (!bmap)
3470 return NULL;
3471 bmap = isl_basic_map_cow(bmap);
3472 if (!bmap)
3473 return NULL;
Tobias Grosserb2f39922015-05-28 13:32:11 +00003474 space = isl_space_reverse(isl_space_copy(bmap->dim));
3475 pos = isl_basic_map_offset(bmap, isl_dim_in);
3476 n1 = isl_basic_map_dim(bmap, isl_dim_in);
3477 n2 = isl_basic_map_dim(bmap, isl_dim_out);
3478 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
3479 return isl_basic_map_reset_space(bmap, space);
Tobias Grosser52a25232015-02-04 20:55:43 +00003480}
3481
3482static __isl_give isl_basic_map *basic_map_space_reset(
3483 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
3484{
3485 isl_space *space;
3486
3487 if (!bmap)
3488 return NULL;
3489 if (!isl_space_is_named_or_nested(bmap->dim, type))
3490 return bmap;
3491
3492 space = isl_basic_map_get_space(bmap);
3493 space = isl_space_reset(space, type);
3494 bmap = isl_basic_map_reset_space(bmap, space);
3495 return bmap;
3496}
3497
3498__isl_give isl_basic_map *isl_basic_map_insert_dims(
3499 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3500 unsigned pos, unsigned n)
3501{
Tobias Grosser72745c22017-02-17 05:11:16 +00003502 isl_bool rational;
Tobias Grosser52a25232015-02-04 20:55:43 +00003503 isl_space *res_dim;
3504 struct isl_basic_map *res;
3505 struct isl_dim_map *dim_map;
3506 unsigned total, off;
3507 enum isl_dim_type t;
3508
3509 if (n == 0)
3510 return basic_map_space_reset(bmap, type);
3511
3512 if (!bmap)
3513 return NULL;
3514
3515 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
3516
3517 total = isl_basic_map_total_dim(bmap) + n;
3518 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3519 off = 0;
3520 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3521 if (t != type) {
3522 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3523 } else {
3524 unsigned size = isl_basic_map_dim(bmap, t);
3525 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3526 0, pos, off);
3527 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3528 pos, size - pos, off + pos + n);
3529 }
3530 off += isl_space_dim(res_dim, t);
3531 }
3532 isl_dim_map_div(dim_map, bmap, off);
3533
3534 res = isl_basic_map_alloc_space(res_dim,
3535 bmap->n_div, bmap->n_eq, bmap->n_ineq);
Tobias Grosser72745c22017-02-17 05:11:16 +00003536 rational = isl_basic_map_is_rational(bmap);
3537 if (rational < 0)
3538 res = isl_basic_map_free(res);
3539 if (rational)
Tobias Grosser52a25232015-02-04 20:55:43 +00003540 res = isl_basic_map_set_rational(res);
3541 if (isl_basic_map_plain_is_empty(bmap)) {
3542 isl_basic_map_free(bmap);
3543 free(dim_map);
3544 return isl_basic_map_set_to_empty(res);
3545 }
3546 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3547 return isl_basic_map_finalize(res);
3548}
3549
3550__isl_give isl_basic_set *isl_basic_set_insert_dims(
3551 __isl_take isl_basic_set *bset,
3552 enum isl_dim_type type, unsigned pos, unsigned n)
3553{
3554 return isl_basic_map_insert_dims(bset, type, pos, n);
3555}
3556
Tobias Grossere0f8d592015-05-13 13:10:13 +00003557__isl_give isl_basic_map *isl_basic_map_add_dims(__isl_take isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +00003558 enum isl_dim_type type, unsigned n)
3559{
3560 if (!bmap)
3561 return NULL;
3562 return isl_basic_map_insert_dims(bmap, type,
3563 isl_basic_map_dim(bmap, type), n);
3564}
3565
3566__isl_give isl_basic_set *isl_basic_set_add_dims(__isl_take isl_basic_set *bset,
3567 enum isl_dim_type type, unsigned n)
3568{
3569 if (!bset)
3570 return NULL;
3571 isl_assert(bset->ctx, type != isl_dim_in, goto error);
Tobias Grossere0f8d592015-05-13 13:10:13 +00003572 return isl_basic_map_add_dims(bset, type, n);
Tobias Grosser52a25232015-02-04 20:55:43 +00003573error:
3574 isl_basic_set_free(bset);
3575 return NULL;
3576}
3577
3578static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
3579 enum isl_dim_type type)
3580{
3581 isl_space *space;
3582
3583 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3584 return map;
3585
3586 space = isl_map_get_space(map);
3587 space = isl_space_reset(space, type);
3588 map = isl_map_reset_space(map, space);
3589 return map;
3590}
3591
3592__isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3593 enum isl_dim_type type, unsigned pos, unsigned n)
3594{
3595 int i;
3596
3597 if (n == 0)
3598 return map_space_reset(map, type);
3599
3600 map = isl_map_cow(map);
3601 if (!map)
3602 return NULL;
3603
3604 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3605 if (!map->dim)
3606 goto error;
3607
3608 for (i = 0; i < map->n; ++i) {
3609 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3610 if (!map->p[i])
3611 goto error;
3612 }
3613
3614 return map;
3615error:
3616 isl_map_free(map);
3617 return NULL;
3618}
3619
3620__isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3621 enum isl_dim_type type, unsigned pos, unsigned n)
3622{
3623 return isl_map_insert_dims(set, type, pos, n);
3624}
3625
3626__isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3627 enum isl_dim_type type, unsigned n)
3628{
3629 if (!map)
3630 return NULL;
3631 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3632}
3633
3634__isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3635 enum isl_dim_type type, unsigned n)
3636{
3637 if (!set)
3638 return NULL;
3639 isl_assert(set->ctx, type != isl_dim_in, goto error);
Tobias Grosser06e15922016-11-16 11:06:47 +00003640 return set_from_map(isl_map_add_dims(set_to_map(set), type, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00003641error:
3642 isl_set_free(set);
3643 return NULL;
3644}
3645
3646__isl_give isl_basic_map *isl_basic_map_move_dims(
3647 __isl_take isl_basic_map *bmap,
3648 enum isl_dim_type dst_type, unsigned dst_pos,
3649 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3650{
3651 struct isl_dim_map *dim_map;
3652 struct isl_basic_map *res;
3653 enum isl_dim_type t;
3654 unsigned total, off;
3655
3656 if (!bmap)
3657 return NULL;
3658 if (n == 0)
3659 return bmap;
3660
Tobias Grosser94e53712016-12-31 07:46:11 +00003661 if (isl_basic_map_check_range(bmap, src_type, src_pos, n) < 0)
3662 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00003663
3664 if (dst_type == src_type && dst_pos == src_pos)
3665 return bmap;
3666
3667 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3668
3669 if (pos(bmap->dim, dst_type) + dst_pos ==
3670 pos(bmap->dim, src_type) + src_pos +
3671 ((src_type < dst_type) ? n : 0)) {
3672 bmap = isl_basic_map_cow(bmap);
3673 if (!bmap)
3674 return NULL;
3675
3676 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3677 src_type, src_pos, n);
3678 if (!bmap->dim)
3679 goto error;
3680
3681 bmap = isl_basic_map_finalize(bmap);
3682
3683 return bmap;
3684 }
3685
3686 total = isl_basic_map_total_dim(bmap);
3687 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3688
3689 off = 0;
3690 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3691 unsigned size = isl_space_dim(bmap->dim, t);
3692 if (t == dst_type) {
3693 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3694 0, dst_pos, off);
3695 off += dst_pos;
3696 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
3697 src_pos, n, off);
3698 off += n;
3699 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3700 dst_pos, size - dst_pos, off);
3701 off += size - dst_pos;
3702 } else if (t == src_type) {
3703 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3704 0, src_pos, off);
3705 off += src_pos;
3706 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3707 src_pos + n, size - src_pos - n, off);
3708 off += size - src_pos - n;
3709 } else {
3710 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3711 off += size;
3712 }
3713 }
3714 isl_dim_map_div(dim_map, bmap, off);
3715
3716 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3717 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3718 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3719 if (!bmap)
3720 goto error;
3721
3722 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3723 src_type, src_pos, n);
3724 if (!bmap->dim)
3725 goto error;
3726
3727 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3728 bmap = isl_basic_map_gauss(bmap, NULL);
3729 bmap = isl_basic_map_finalize(bmap);
3730
3731 return bmap;
3732error:
3733 isl_basic_map_free(bmap);
3734 return NULL;
3735}
3736
3737__isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
3738 enum isl_dim_type dst_type, unsigned dst_pos,
3739 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3740{
Tobias Grosser06e15922016-11-16 11:06:47 +00003741 isl_basic_map *bmap = bset_to_bmap(bset);
3742 bmap = isl_basic_map_move_dims(bmap, dst_type, dst_pos,
3743 src_type, src_pos, n);
3744 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00003745}
3746
3747__isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
3748 enum isl_dim_type dst_type, unsigned dst_pos,
3749 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3750{
3751 if (!set)
3752 return NULL;
3753 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
Tobias Grosser06e15922016-11-16 11:06:47 +00003754 return set_from_map(isl_map_move_dims(set_to_map(set),
3755 dst_type, dst_pos, src_type, src_pos, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00003756error:
3757 isl_set_free(set);
3758 return NULL;
3759}
3760
3761__isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
3762 enum isl_dim_type dst_type, unsigned dst_pos,
3763 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3764{
3765 int i;
3766
3767 if (!map)
3768 return NULL;
3769 if (n == 0)
3770 return map;
3771
3772 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
3773 goto error);
3774
3775 if (dst_type == src_type && dst_pos == src_pos)
3776 return map;
3777
3778 isl_assert(map->ctx, dst_type != src_type, goto error);
3779
3780 map = isl_map_cow(map);
3781 if (!map)
3782 return NULL;
3783
3784 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
3785 if (!map->dim)
3786 goto error;
3787
3788 for (i = 0; i < map->n; ++i) {
3789 map->p[i] = isl_basic_map_move_dims(map->p[i],
3790 dst_type, dst_pos,
3791 src_type, src_pos, n);
3792 if (!map->p[i])
3793 goto error;
3794 }
3795
3796 return map;
3797error:
3798 isl_map_free(map);
3799 return NULL;
3800}
3801
3802/* Move the specified dimensions to the last columns right before
3803 * the divs. Don't change the dimension specification of bmap.
3804 * That's the responsibility of the caller.
3805 */
3806static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
3807 enum isl_dim_type type, unsigned first, unsigned n)
3808{
3809 struct isl_dim_map *dim_map;
3810 struct isl_basic_map *res;
3811 enum isl_dim_type t;
3812 unsigned total, off;
3813
3814 if (!bmap)
3815 return NULL;
3816 if (pos(bmap->dim, type) + first + n ==
3817 1 + isl_space_dim(bmap->dim, isl_dim_all))
3818 return bmap;
3819
3820 total = isl_basic_map_total_dim(bmap);
3821 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3822
3823 off = 0;
3824 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3825 unsigned size = isl_space_dim(bmap->dim, t);
3826 if (t == type) {
3827 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3828 0, first, off);
3829 off += first;
3830 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3831 first, n, total - bmap->n_div - n);
3832 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3833 first + n, size - (first + n), off);
3834 off += size - (first + n);
3835 } else {
3836 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3837 off += size;
3838 }
3839 }
3840 isl_dim_map_div(dim_map, bmap, off + n);
3841
3842 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3843 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3844 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3845 return res;
3846}
3847
3848/* Insert "n" rows in the divs of "bmap".
3849 *
3850 * The number of columns is not changed, which means that the last
3851 * dimensions of "bmap" are being reintepreted as the new divs.
3852 * The space of "bmap" is not adjusted, however, which means
3853 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3854 * from the space of "bmap" is the responsibility of the caller.
3855 */
3856static __isl_give isl_basic_map *insert_div_rows(__isl_take isl_basic_map *bmap,
3857 int n)
3858{
3859 int i;
3860 size_t row_size;
3861 isl_int **new_div;
3862 isl_int *old;
3863
3864 bmap = isl_basic_map_cow(bmap);
3865 if (!bmap)
3866 return NULL;
3867
3868 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
3869 old = bmap->block2.data;
3870 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
3871 (bmap->extra + n) * (1 + row_size));
3872 if (!bmap->block2.data)
3873 return isl_basic_map_free(bmap);
3874 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
3875 if (!new_div)
3876 return isl_basic_map_free(bmap);
3877 for (i = 0; i < n; ++i) {
3878 new_div[i] = bmap->block2.data +
3879 (bmap->extra + i) * (1 + row_size);
3880 isl_seq_clr(new_div[i], 1 + row_size);
3881 }
3882 for (i = 0; i < bmap->extra; ++i)
3883 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
3884 free(bmap->div);
3885 bmap->div = new_div;
3886 bmap->n_div += n;
3887 bmap->extra += n;
3888
3889 return bmap;
3890}
3891
Tobias Grossera67ac972016-02-26 11:35:12 +00003892/* Drop constraints from "bmap" that only involve the variables
3893 * of "type" in the range [first, first + n] that are not related
3894 * to any of the variables outside that interval.
3895 * These constraints cannot influence the values for the variables
3896 * outside the interval, except in case they cause "bmap" to be empty.
3897 * Only drop the constraints if "bmap" is known to be non-empty.
3898 */
3899static __isl_give isl_basic_map *drop_irrelevant_constraints(
3900 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
3901 unsigned first, unsigned n)
3902{
3903 int i;
3904 int *groups;
3905 unsigned dim, n_div;
3906 isl_bool non_empty;
3907
3908 non_empty = isl_basic_map_plain_is_non_empty(bmap);
3909 if (non_empty < 0)
3910 return isl_basic_map_free(bmap);
3911 if (!non_empty)
3912 return bmap;
3913
3914 dim = isl_basic_map_dim(bmap, isl_dim_all);
3915 n_div = isl_basic_map_dim(bmap, isl_dim_div);
3916 groups = isl_calloc_array(isl_basic_map_get_ctx(bmap), int, dim);
3917 if (!groups)
3918 return isl_basic_map_free(bmap);
3919 first += isl_basic_map_offset(bmap, type) - 1;
3920 for (i = 0; i < first; ++i)
3921 groups[i] = -1;
3922 for (i = first + n; i < dim - n_div; ++i)
3923 groups[i] = -1;
3924
3925 bmap = isl_basic_map_drop_unrelated_constraints(bmap, groups);
3926
3927 return bmap;
3928}
3929
Tobias Grosser52a25232015-02-04 20:55:43 +00003930/* Turn the n dimensions of type type, starting at first
3931 * into existentially quantified variables.
Tobias Grossera67ac972016-02-26 11:35:12 +00003932 *
3933 * If a subset of the projected out variables are unrelated
3934 * to any of the variables that remain, then the constraints
3935 * involving this subset are simply dropped first.
Tobias Grosser52a25232015-02-04 20:55:43 +00003936 */
3937__isl_give isl_basic_map *isl_basic_map_project_out(
3938 __isl_take isl_basic_map *bmap,
3939 enum isl_dim_type type, unsigned first, unsigned n)
3940{
3941 if (n == 0)
3942 return basic_map_space_reset(bmap, type);
Tobias Grossera67ac972016-02-26 11:35:12 +00003943 if (type == isl_dim_div)
3944 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
3945 "cannot project out existentially quantified variables",
3946 return isl_basic_map_free(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00003947
Tobias Grossera67ac972016-02-26 11:35:12 +00003948 bmap = drop_irrelevant_constraints(bmap, type, first, n);
Tobias Grosser52a25232015-02-04 20:55:43 +00003949 if (!bmap)
3950 return NULL;
3951
3952 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
3953 return isl_basic_map_remove_dims(bmap, type, first, n);
3954
Tobias Grosser94e53712016-12-31 07:46:11 +00003955 if (isl_basic_map_check_range(bmap, type, first, n) < 0)
3956 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00003957
3958 bmap = move_last(bmap, type, first, n);
3959 bmap = isl_basic_map_cow(bmap);
3960 bmap = insert_div_rows(bmap, n);
3961 if (!bmap)
3962 return NULL;
3963
3964 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
3965 if (!bmap->dim)
3966 goto error;
3967 bmap = isl_basic_map_simplify(bmap);
3968 bmap = isl_basic_map_drop_redundant_divs(bmap);
3969 return isl_basic_map_finalize(bmap);
3970error:
3971 isl_basic_map_free(bmap);
3972 return NULL;
3973}
3974
3975/* Turn the n dimensions of type type, starting at first
3976 * into existentially quantified variables.
3977 */
3978struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
3979 enum isl_dim_type type, unsigned first, unsigned n)
3980{
Tobias Grosser06e15922016-11-16 11:06:47 +00003981 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset),
3982 type, first, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00003983}
3984
3985/* Turn the n dimensions of type type, starting at first
3986 * into existentially quantified variables.
3987 */
3988__isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
3989 enum isl_dim_type type, unsigned first, unsigned n)
3990{
3991 int i;
3992
3993 if (!map)
3994 return NULL;
3995
3996 if (n == 0)
3997 return map_space_reset(map, type);
3998
3999 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
4000
4001 map = isl_map_cow(map);
4002 if (!map)
4003 return NULL;
4004
4005 map->dim = isl_space_drop_dims(map->dim, type, first, n);
4006 if (!map->dim)
4007 goto error;
4008
4009 for (i = 0; i < map->n; ++i) {
4010 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
4011 if (!map->p[i])
4012 goto error;
4013 }
4014
4015 return map;
4016error:
4017 isl_map_free(map);
4018 return NULL;
4019}
4020
4021/* Turn the n dimensions of type type, starting at first
4022 * into existentially quantified variables.
4023 */
4024__isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
4025 enum isl_dim_type type, unsigned first, unsigned n)
4026{
Tobias Grosser06e15922016-11-16 11:06:47 +00004027 return set_from_map(isl_map_project_out(set_to_map(set),
4028 type, first, n));
Tobias Grosser52a25232015-02-04 20:55:43 +00004029}
4030
Michael Krusee0b34f32016-05-04 14:41:36 +00004031/* Return a map that projects the elements in "set" onto their
4032 * "n" set dimensions starting at "first".
4033 * "type" should be equal to isl_dim_set.
4034 */
4035__isl_give isl_map *isl_set_project_onto_map(__isl_take isl_set *set,
4036 enum isl_dim_type type, unsigned first, unsigned n)
4037{
4038 int i;
4039 int dim;
4040 isl_map *map;
4041
4042 if (!set)
4043 return NULL;
4044 if (type != isl_dim_set)
4045 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4046 "only set dimensions can be projected out", goto error);
4047 dim = isl_set_dim(set, isl_dim_set);
4048 if (first + n > dim || first + n < first)
4049 isl_die(isl_set_get_ctx(set), isl_error_invalid,
4050 "index out of bounds", goto error);
4051
4052 map = isl_map_from_domain(set);
4053 map = isl_map_add_dims(map, isl_dim_out, n);
4054 for (i = 0; i < n; ++i)
4055 map = isl_map_equate(map, isl_dim_in, first + i,
4056 isl_dim_out, i);
4057 return map;
4058error:
4059 isl_set_free(set);
4060 return NULL;
4061}
4062
Tobias Grosser52a25232015-02-04 20:55:43 +00004063static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
4064{
4065 int i, j;
4066
4067 for (i = 0; i < n; ++i) {
4068 j = isl_basic_map_alloc_div(bmap);
4069 if (j < 0)
4070 goto error;
4071 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
4072 }
4073 return bmap;
4074error:
4075 isl_basic_map_free(bmap);
4076 return NULL;
4077}
4078
4079struct isl_basic_map *isl_basic_map_apply_range(
4080 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4081{
4082 isl_space *dim_result = NULL;
4083 struct isl_basic_map *bmap;
4084 unsigned n_in, n_out, n, nparam, total, pos;
4085 struct isl_dim_map *dim_map1, *dim_map2;
4086
Tobias Grossere5671e52017-03-10 09:17:55 +00004087 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00004088 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00004089 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_out,
4090 bmap2->dim, isl_dim_in))
4091 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4092 "spaces don't match", goto error);
4093
4094 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
4095 isl_space_copy(bmap2->dim));
4096
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004097 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4098 n_out = isl_basic_map_dim(bmap2, isl_dim_out);
4099 n = isl_basic_map_dim(bmap1, isl_dim_out);
4100 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
Tobias Grosser52a25232015-02-04 20:55:43 +00004101
4102 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
4103 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4104 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
4105 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4106 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
4107 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4108 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
4109 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
4110 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4111 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4112 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4113
4114 bmap = isl_basic_map_alloc_space(dim_result,
4115 bmap1->n_div + bmap2->n_div + n,
4116 bmap1->n_eq + bmap2->n_eq,
4117 bmap1->n_ineq + bmap2->n_ineq);
4118 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4119 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4120 bmap = add_divs(bmap, n);
4121 bmap = isl_basic_map_simplify(bmap);
4122 bmap = isl_basic_map_drop_redundant_divs(bmap);
4123 return isl_basic_map_finalize(bmap);
4124error:
4125 isl_basic_map_free(bmap1);
4126 isl_basic_map_free(bmap2);
4127 return NULL;
4128}
4129
4130struct isl_basic_set *isl_basic_set_apply(
4131 struct isl_basic_set *bset, struct isl_basic_map *bmap)
4132{
4133 if (!bset || !bmap)
4134 goto error;
4135
4136 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
4137 goto error);
4138
Tobias Grosser06e15922016-11-16 11:06:47 +00004139 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset),
4140 bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00004141error:
4142 isl_basic_set_free(bset);
4143 isl_basic_map_free(bmap);
4144 return NULL;
4145}
4146
4147struct isl_basic_map *isl_basic_map_apply_domain(
4148 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4149{
Tobias Grossere5671e52017-03-10 09:17:55 +00004150 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00004151 goto error;
Tobias Grosser59d23bb2017-02-23 12:48:42 +00004152 if (!isl_space_tuple_is_equal(bmap1->dim, isl_dim_in,
4153 bmap2->dim, isl_dim_in))
4154 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
4155 "spaces don't match", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +00004156
4157 bmap1 = isl_basic_map_reverse(bmap1);
4158 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
4159 return isl_basic_map_reverse(bmap1);
4160error:
4161 isl_basic_map_free(bmap1);
4162 isl_basic_map_free(bmap2);
4163 return NULL;
4164}
4165
4166/* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4167 * A \cap B -> f(A) + f(B)
4168 */
4169struct isl_basic_map *isl_basic_map_sum(
4170 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4171{
4172 unsigned n_in, n_out, nparam, total, pos;
4173 struct isl_basic_map *bmap = NULL;
4174 struct isl_dim_map *dim_map1, *dim_map2;
4175 int i;
4176
4177 if (!bmap1 || !bmap2)
4178 goto error;
4179
4180 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
4181 goto error);
4182
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004183 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
4184 n_in = isl_basic_map_dim(bmap1, isl_dim_in);
4185 n_out = isl_basic_map_dim(bmap1, isl_dim_out);
Tobias Grosser52a25232015-02-04 20:55:43 +00004186
4187 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
4188 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
4189 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
4190 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
4191 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
4192 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
4193 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
4194 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
4195 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
4196 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
4197 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
4198
4199 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
4200 bmap1->n_div + bmap2->n_div + 2 * n_out,
4201 bmap1->n_eq + bmap2->n_eq + n_out,
4202 bmap1->n_ineq + bmap2->n_ineq);
4203 for (i = 0; i < n_out; ++i) {
4204 int j = isl_basic_map_alloc_equality(bmap);
4205 if (j < 0)
4206 goto error;
4207 isl_seq_clr(bmap->eq[j], 1+total);
4208 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
4209 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
4210 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
4211 }
4212 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
4213 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
4214 bmap = add_divs(bmap, 2 * n_out);
4215
4216 bmap = isl_basic_map_simplify(bmap);
4217 return isl_basic_map_finalize(bmap);
4218error:
4219 isl_basic_map_free(bmap);
4220 isl_basic_map_free(bmap1);
4221 isl_basic_map_free(bmap2);
4222 return NULL;
4223}
4224
4225/* Given two maps A -> f(A) and B -> g(B), construct a map
4226 * A \cap B -> f(A) + f(B)
4227 */
4228struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
4229{
4230 struct isl_map *result;
4231 int i, j;
4232
4233 if (!map1 || !map2)
4234 goto error;
4235
4236 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
4237
4238 result = isl_map_alloc_space(isl_space_copy(map1->dim),
4239 map1->n * map2->n, 0);
4240 if (!result)
4241 goto error;
4242 for (i = 0; i < map1->n; ++i)
4243 for (j = 0; j < map2->n; ++j) {
4244 struct isl_basic_map *part;
4245 part = isl_basic_map_sum(
4246 isl_basic_map_copy(map1->p[i]),
4247 isl_basic_map_copy(map2->p[j]));
4248 if (isl_basic_map_is_empty(part))
4249 isl_basic_map_free(part);
4250 else
4251 result = isl_map_add_basic_map(result, part);
4252 if (!result)
4253 goto error;
4254 }
4255 isl_map_free(map1);
4256 isl_map_free(map2);
4257 return result;
4258error:
4259 isl_map_free(map1);
4260 isl_map_free(map2);
4261 return NULL;
4262}
4263
4264__isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
4265 __isl_take isl_set *set2)
4266{
Tobias Grosser06e15922016-11-16 11:06:47 +00004267 return set_from_map(isl_map_sum(set_to_map(set1), set_to_map(set2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00004268}
4269
4270/* Given a basic map A -> f(A), construct A -> -f(A).
4271 */
4272struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
4273{
4274 int i, j;
4275 unsigned off, n;
4276
4277 bmap = isl_basic_map_cow(bmap);
4278 if (!bmap)
4279 return NULL;
4280
4281 n = isl_basic_map_dim(bmap, isl_dim_out);
4282 off = isl_basic_map_offset(bmap, isl_dim_out);
4283 for (i = 0; i < bmap->n_eq; ++i)
4284 for (j = 0; j < n; ++j)
4285 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
4286 for (i = 0; i < bmap->n_ineq; ++i)
4287 for (j = 0; j < n; ++j)
4288 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
4289 for (i = 0; i < bmap->n_div; ++i)
4290 for (j = 0; j < n; ++j)
4291 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
4292 bmap = isl_basic_map_gauss(bmap, NULL);
4293 return isl_basic_map_finalize(bmap);
4294}
4295
4296__isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
4297{
4298 return isl_basic_map_neg(bset);
4299}
4300
4301/* Given a map A -> f(A), construct A -> -f(A).
4302 */
4303struct isl_map *isl_map_neg(struct isl_map *map)
4304{
4305 int i;
4306
4307 map = isl_map_cow(map);
4308 if (!map)
4309 return NULL;
4310
4311 for (i = 0; i < map->n; ++i) {
4312 map->p[i] = isl_basic_map_neg(map->p[i]);
4313 if (!map->p[i])
4314 goto error;
4315 }
4316
4317 return map;
4318error:
4319 isl_map_free(map);
4320 return NULL;
4321}
4322
4323__isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
4324{
Tobias Grosser06e15922016-11-16 11:06:47 +00004325 return set_from_map(isl_map_neg(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00004326}
4327
4328/* Given a basic map A -> f(A) and an integer d, construct a basic map
4329 * A -> floor(f(A)/d).
4330 */
4331struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
4332 isl_int d)
4333{
4334 unsigned n_in, n_out, nparam, total, pos;
4335 struct isl_basic_map *result = NULL;
4336 struct isl_dim_map *dim_map;
4337 int i;
4338
4339 if (!bmap)
4340 return NULL;
4341
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004342 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4343 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4344 n_out = isl_basic_map_dim(bmap, isl_dim_out);
Tobias Grosser52a25232015-02-04 20:55:43 +00004345
4346 total = nparam + n_in + n_out + bmap->n_div + n_out;
4347 dim_map = isl_dim_map_alloc(bmap->ctx, total);
4348 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
4349 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
4350 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
4351 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
4352
4353 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
4354 bmap->n_div + n_out,
4355 bmap->n_eq, bmap->n_ineq + 2 * n_out);
4356 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
4357 result = add_divs(result, n_out);
4358 for (i = 0; i < n_out; ++i) {
4359 int j;
4360 j = isl_basic_map_alloc_inequality(result);
4361 if (j < 0)
4362 goto error;
4363 isl_seq_clr(result->ineq[j], 1+total);
4364 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
4365 isl_int_set_si(result->ineq[j][1+pos+i], 1);
4366 j = isl_basic_map_alloc_inequality(result);
4367 if (j < 0)
4368 goto error;
4369 isl_seq_clr(result->ineq[j], 1+total);
4370 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
4371 isl_int_set_si(result->ineq[j][1+pos+i], -1);
4372 isl_int_sub_ui(result->ineq[j][0], d, 1);
4373 }
4374
4375 result = isl_basic_map_simplify(result);
4376 return isl_basic_map_finalize(result);
4377error:
4378 isl_basic_map_free(result);
4379 return NULL;
4380}
4381
4382/* Given a map A -> f(A) and an integer d, construct a map
4383 * A -> floor(f(A)/d).
4384 */
4385struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
4386{
4387 int i;
4388
4389 map = isl_map_cow(map);
4390 if (!map)
4391 return NULL;
4392
4393 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4394 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4395 for (i = 0; i < map->n; ++i) {
4396 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
4397 if (!map->p[i])
4398 goto error;
4399 }
4400
4401 return map;
4402error:
4403 isl_map_free(map);
4404 return NULL;
4405}
4406
4407/* Given a map A -> f(A) and an integer d, construct a map
4408 * A -> floor(f(A)/d).
4409 */
4410__isl_give isl_map *isl_map_floordiv_val(__isl_take isl_map *map,
4411 __isl_take isl_val *d)
4412{
4413 if (!map || !d)
4414 goto error;
4415 if (!isl_val_is_int(d))
4416 isl_die(isl_val_get_ctx(d), isl_error_invalid,
4417 "expecting integer denominator", goto error);
4418 map = isl_map_floordiv(map, d->n);
4419 isl_val_free(d);
4420 return map;
4421error:
4422 isl_map_free(map);
4423 isl_val_free(d);
4424 return NULL;
4425}
4426
4427static struct isl_basic_map *var_equal(struct isl_basic_map *bmap, unsigned pos)
4428{
4429 int i;
4430 unsigned nparam;
4431 unsigned n_in;
4432
4433 i = isl_basic_map_alloc_equality(bmap);
4434 if (i < 0)
4435 goto error;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004436 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4437 n_in = isl_basic_map_dim(bmap, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +00004438 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
4439 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
4440 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
4441 return isl_basic_map_finalize(bmap);
4442error:
4443 isl_basic_map_free(bmap);
4444 return NULL;
4445}
4446
Tobias Grosser06e15922016-11-16 11:06:47 +00004447/* Add a constraint to "bmap" expressing i_pos < o_pos
Tobias Grosser52a25232015-02-04 20:55:43 +00004448 */
4449static struct isl_basic_map *var_less(struct isl_basic_map *bmap, unsigned pos)
4450{
4451 int i;
4452 unsigned nparam;
4453 unsigned n_in;
4454
4455 i = isl_basic_map_alloc_inequality(bmap);
4456 if (i < 0)
4457 goto error;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004458 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4459 n_in = isl_basic_map_dim(bmap, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +00004460 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4461 isl_int_set_si(bmap->ineq[i][0], -1);
4462 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4463 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4464 return isl_basic_map_finalize(bmap);
4465error:
4466 isl_basic_map_free(bmap);
4467 return NULL;
4468}
4469
4470/* Add a constraint to "bmap" expressing i_pos <= o_pos
4471 */
4472static __isl_give isl_basic_map *var_less_or_equal(
4473 __isl_take isl_basic_map *bmap, unsigned pos)
4474{
4475 int i;
4476 unsigned nparam;
4477 unsigned n_in;
4478
4479 i = isl_basic_map_alloc_inequality(bmap);
4480 if (i < 0)
4481 goto error;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004482 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4483 n_in = isl_basic_map_dim(bmap, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +00004484 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4485 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
4486 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
4487 return isl_basic_map_finalize(bmap);
4488error:
4489 isl_basic_map_free(bmap);
4490 return NULL;
4491}
4492
Tobias Grosser06e15922016-11-16 11:06:47 +00004493/* Add a constraint to "bmap" expressing i_pos > o_pos
Tobias Grosser52a25232015-02-04 20:55:43 +00004494 */
4495static struct isl_basic_map *var_more(struct isl_basic_map *bmap, unsigned pos)
4496{
4497 int i;
4498 unsigned nparam;
4499 unsigned n_in;
4500
4501 i = isl_basic_map_alloc_inequality(bmap);
4502 if (i < 0)
4503 goto error;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004504 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4505 n_in = isl_basic_map_dim(bmap, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +00004506 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4507 isl_int_set_si(bmap->ineq[i][0], -1);
4508 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4509 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4510 return isl_basic_map_finalize(bmap);
4511error:
4512 isl_basic_map_free(bmap);
4513 return NULL;
4514}
4515
4516/* Add a constraint to "bmap" expressing i_pos >= o_pos
4517 */
4518static __isl_give isl_basic_map *var_more_or_equal(
4519 __isl_take isl_basic_map *bmap, unsigned pos)
4520{
4521 int i;
4522 unsigned nparam;
4523 unsigned n_in;
4524
4525 i = isl_basic_map_alloc_inequality(bmap);
4526 if (i < 0)
4527 goto error;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00004528 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4529 n_in = isl_basic_map_dim(bmap, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +00004530 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
4531 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
4532 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
4533 return isl_basic_map_finalize(bmap);
4534error:
4535 isl_basic_map_free(bmap);
4536 return NULL;
4537}
4538
4539__isl_give isl_basic_map *isl_basic_map_equal(
4540 __isl_take isl_space *dim, unsigned n_equal)
4541{
4542 int i;
4543 struct isl_basic_map *bmap;
4544 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
4545 if (!bmap)
4546 return NULL;
4547 for (i = 0; i < n_equal && bmap; ++i)
4548 bmap = var_equal(bmap, i);
4549 return isl_basic_map_finalize(bmap);
4550}
4551
4552/* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4553 */
4554__isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
4555 unsigned pos)
4556{
4557 int i;
4558 struct isl_basic_map *bmap;
4559 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4560 if (!bmap)
4561 return NULL;
4562 for (i = 0; i < pos && bmap; ++i)
4563 bmap = var_equal(bmap, i);
4564 if (bmap)
4565 bmap = var_less(bmap, pos);
4566 return isl_basic_map_finalize(bmap);
4567}
4568
Tobias Grosser06e15922016-11-16 11:06:47 +00004569/* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
Tobias Grosser52a25232015-02-04 20:55:43 +00004570 */
4571__isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
4572 __isl_take isl_space *dim, unsigned pos)
4573{
4574 int i;
4575 isl_basic_map *bmap;
4576
4577 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4578 for (i = 0; i < pos; ++i)
4579 bmap = var_equal(bmap, i);
4580 bmap = var_less_or_equal(bmap, pos);
4581 return isl_basic_map_finalize(bmap);
4582}
4583
Tobias Grosser06e15922016-11-16 11:06:47 +00004584/* Return a relation on "dim" expressing i_pos > o_pos
Tobias Grosser52a25232015-02-04 20:55:43 +00004585 */
4586__isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
4587 unsigned pos)
4588{
4589 int i;
4590 struct isl_basic_map *bmap;
4591 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4592 if (!bmap)
4593 return NULL;
4594 for (i = 0; i < pos && bmap; ++i)
4595 bmap = var_equal(bmap, i);
4596 if (bmap)
4597 bmap = var_more(bmap, pos);
4598 return isl_basic_map_finalize(bmap);
4599}
4600
Tobias Grosser06e15922016-11-16 11:06:47 +00004601/* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
Tobias Grosser52a25232015-02-04 20:55:43 +00004602 */
4603__isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
4604 __isl_take isl_space *dim, unsigned pos)
4605{
4606 int i;
4607 isl_basic_map *bmap;
4608
4609 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
4610 for (i = 0; i < pos; ++i)
4611 bmap = var_equal(bmap, i);
4612 bmap = var_more_or_equal(bmap, pos);
4613 return isl_basic_map_finalize(bmap);
4614}
4615
4616static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
4617 unsigned n, int equal)
4618{
4619 struct isl_map *map;
4620 int i;
4621
4622 if (n == 0 && equal)
4623 return isl_map_universe(dims);
4624
4625 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4626
4627 for (i = 0; i + 1 < n; ++i)
4628 map = isl_map_add_basic_map(map,
4629 isl_basic_map_less_at(isl_space_copy(dims), i));
4630 if (n > 0) {
4631 if (equal)
4632 map = isl_map_add_basic_map(map,
4633 isl_basic_map_less_or_equal_at(dims, n - 1));
4634 else
4635 map = isl_map_add_basic_map(map,
4636 isl_basic_map_less_at(dims, n - 1));
4637 } else
4638 isl_space_free(dims);
4639
4640 return map;
4641}
4642
4643static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
4644{
4645 if (!dims)
4646 return NULL;
4647 return map_lex_lte_first(dims, dims->n_out, equal);
4648}
4649
4650__isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
4651{
4652 return map_lex_lte_first(dim, n, 0);
4653}
4654
4655__isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
4656{
4657 return map_lex_lte_first(dim, n, 1);
4658}
4659
4660__isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
4661{
4662 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
4663}
4664
4665__isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
4666{
4667 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
4668}
4669
4670static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
4671 unsigned n, int equal)
4672{
4673 struct isl_map *map;
4674 int i;
4675
4676 if (n == 0 && equal)
4677 return isl_map_universe(dims);
4678
4679 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
4680
4681 for (i = 0; i + 1 < n; ++i)
4682 map = isl_map_add_basic_map(map,
4683 isl_basic_map_more_at(isl_space_copy(dims), i));
4684 if (n > 0) {
4685 if (equal)
4686 map = isl_map_add_basic_map(map,
4687 isl_basic_map_more_or_equal_at(dims, n - 1));
4688 else
4689 map = isl_map_add_basic_map(map,
4690 isl_basic_map_more_at(dims, n - 1));
4691 } else
4692 isl_space_free(dims);
4693
4694 return map;
4695}
4696
4697static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
4698{
4699 if (!dims)
4700 return NULL;
4701 return map_lex_gte_first(dims, dims->n_out, equal);
4702}
4703
4704__isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
4705{
4706 return map_lex_gte_first(dim, n, 0);
4707}
4708
4709__isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
4710{
4711 return map_lex_gte_first(dim, n, 1);
4712}
4713
4714__isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
4715{
4716 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
4717}
4718
4719__isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
4720{
4721 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
4722}
4723
4724__isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
4725 __isl_take isl_set *set2)
4726{
4727 isl_map *map;
4728 map = isl_map_lex_le(isl_set_get_space(set1));
4729 map = isl_map_intersect_domain(map, set1);
4730 map = isl_map_intersect_range(map, set2);
4731 return map;
4732}
4733
4734__isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
4735 __isl_take isl_set *set2)
4736{
4737 isl_map *map;
4738 map = isl_map_lex_lt(isl_set_get_space(set1));
4739 map = isl_map_intersect_domain(map, set1);
4740 map = isl_map_intersect_range(map, set2);
4741 return map;
4742}
4743
4744__isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
4745 __isl_take isl_set *set2)
4746{
4747 isl_map *map;
4748 map = isl_map_lex_ge(isl_set_get_space(set1));
4749 map = isl_map_intersect_domain(map, set1);
4750 map = isl_map_intersect_range(map, set2);
4751 return map;
4752}
4753
4754__isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
4755 __isl_take isl_set *set2)
4756{
4757 isl_map *map;
4758 map = isl_map_lex_gt(isl_set_get_space(set1));
4759 map = isl_map_intersect_domain(map, set1);
4760 map = isl_map_intersect_range(map, set2);
4761 return map;
4762}
4763
4764__isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
4765 __isl_take isl_map *map2)
4766{
4767 isl_map *map;
4768 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
4769 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4770 map = isl_map_apply_range(map, isl_map_reverse(map2));
4771 return map;
4772}
4773
4774__isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
4775 __isl_take isl_map *map2)
4776{
4777 isl_map *map;
4778 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
4779 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4780 map = isl_map_apply_range(map, isl_map_reverse(map2));
4781 return map;
4782}
4783
4784__isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
4785 __isl_take isl_map *map2)
4786{
4787 isl_map *map;
4788 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
4789 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4790 map = isl_map_apply_range(map, isl_map_reverse(map2));
4791 return map;
4792}
4793
4794__isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
4795 __isl_take isl_map *map2)
4796{
4797 isl_map *map;
4798 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
4799 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4800 map = isl_map_apply_range(map, isl_map_reverse(map2));
4801 return map;
4802}
4803
Tobias Grosser52a25232015-02-04 20:55:43 +00004804/* For a div d = floor(f/m), add the constraint
4805 *
4806 * f - m d >= 0
4807 */
Tobias Grosser72745c22017-02-17 05:11:16 +00004808static isl_stat add_upper_div_constraint(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +00004809 unsigned pos, isl_int *div)
4810{
4811 int i;
4812 unsigned total = isl_basic_map_total_dim(bmap);
4813
4814 i = isl_basic_map_alloc_inequality(bmap);
4815 if (i < 0)
Tobias Grosser72745c22017-02-17 05:11:16 +00004816 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00004817 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
4818 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
4819
Tobias Grosser72745c22017-02-17 05:11:16 +00004820 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00004821}
4822
4823/* For a div d = floor(f/m), add the constraint
4824 *
Tobias Grosser07b20952016-06-12 04:30:40 +00004825 * -(f-(m-1)) + m d >= 0
Tobias Grosser52a25232015-02-04 20:55:43 +00004826 */
Tobias Grosser72745c22017-02-17 05:11:16 +00004827static isl_stat add_lower_div_constraint(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +00004828 unsigned pos, isl_int *div)
4829{
4830 int i;
4831 unsigned total = isl_basic_map_total_dim(bmap);
4832
4833 i = isl_basic_map_alloc_inequality(bmap);
4834 if (i < 0)
Tobias Grosser72745c22017-02-17 05:11:16 +00004835 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00004836 isl_seq_neg(bmap->ineq[i], div + 1, 1 + total);
4837 isl_int_set(bmap->ineq[i][1 + pos], div[0]);
4838 isl_int_add(bmap->ineq[i][0], bmap->ineq[i][0], bmap->ineq[i][1 + pos]);
4839 isl_int_sub_ui(bmap->ineq[i][0], bmap->ineq[i][0], 1);
4840
Tobias Grosser72745c22017-02-17 05:11:16 +00004841 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00004842}
4843
4844/* For a div d = floor(f/m), add the constraints
4845 *
4846 * f - m d >= 0
Tobias Grosser07b20952016-06-12 04:30:40 +00004847 * -(f-(m-1)) + m d >= 0
Tobias Grosser52a25232015-02-04 20:55:43 +00004848 *
4849 * Note that the second constraint is the negation of
4850 *
Tobias Grosser07b20952016-06-12 04:30:40 +00004851 * f - m d >= m
Tobias Grosser52a25232015-02-04 20:55:43 +00004852 */
4853int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
4854 unsigned pos, isl_int *div)
4855{
4856 if (add_upper_div_constraint(bmap, pos, div) < 0)
4857 return -1;
4858 if (add_lower_div_constraint(bmap, pos, div) < 0)
4859 return -1;
4860 return 0;
4861}
4862
4863int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
4864 unsigned pos, isl_int *div)
4865{
Tobias Grosser06e15922016-11-16 11:06:47 +00004866 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset),
Tobias Grosser52a25232015-02-04 20:55:43 +00004867 pos, div);
4868}
4869
4870int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
4871{
4872 unsigned total = isl_basic_map_total_dim(bmap);
4873 unsigned div_pos = total - bmap->n_div + div;
4874
4875 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
4876 bmap->div[div]);
4877}
4878
4879/* For each known div d = floor(f/m), add the constraints
4880 *
4881 * f - m d >= 0
Tobias Grosser07b20952016-06-12 04:30:40 +00004882 * -(f-(m-1)) + m d >= 0
Michael Kruse959a8dc2016-01-15 15:54:45 +00004883 *
4884 * Remove duplicate constraints in case of some these div constraints
4885 * already appear in "bmap".
Tobias Grosser52a25232015-02-04 20:55:43 +00004886 */
4887__isl_give isl_basic_map *isl_basic_map_add_known_div_constraints(
4888 __isl_take isl_basic_map *bmap)
4889{
Tobias Grosser52a25232015-02-04 20:55:43 +00004890 unsigned n_div;
4891
4892 if (!bmap)
4893 return NULL;
4894 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4895 if (n_div == 0)
4896 return bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00004897
Michael Kruse959a8dc2016-01-15 15:54:45 +00004898 bmap = add_known_div_constraints(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00004899 bmap = isl_basic_map_remove_duplicate_constraints(bmap, NULL, 0);
4900 bmap = isl_basic_map_finalize(bmap);
4901 return bmap;
4902}
4903
4904/* Add the div constraint of sign "sign" for div "div" of "bmap".
4905 *
4906 * In particular, if this div is of the form d = floor(f/m),
4907 * then add the constraint
4908 *
4909 * f - m d >= 0
4910 *
4911 * if sign < 0 or the constraint
4912 *
Tobias Grosser07b20952016-06-12 04:30:40 +00004913 * -(f-(m-1)) + m d >= 0
Tobias Grosser52a25232015-02-04 20:55:43 +00004914 *
4915 * if sign > 0.
4916 */
4917int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map *bmap,
4918 unsigned div, int sign)
4919{
4920 unsigned total;
4921 unsigned div_pos;
4922
4923 if (!bmap)
4924 return -1;
4925
4926 total = isl_basic_map_total_dim(bmap);
4927 div_pos = total - bmap->n_div + div;
4928
4929 if (sign < 0)
4930 return add_upper_div_constraint(bmap, div_pos, bmap->div[div]);
4931 else
4932 return add_lower_div_constraint(bmap, div_pos, bmap->div[div]);
4933}
4934
Tobias Grosser52a25232015-02-04 20:55:43 +00004935struct isl_basic_set *isl_basic_map_underlying_set(
4936 struct isl_basic_map *bmap)
4937{
4938 if (!bmap)
4939 goto error;
4940 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
4941 bmap->n_div == 0 &&
4942 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
4943 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
Tobias Grosser06e15922016-11-16 11:06:47 +00004944 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00004945 bmap = isl_basic_map_cow(bmap);
4946 if (!bmap)
4947 goto error;
4948 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
4949 if (!bmap->dim)
4950 goto error;
4951 bmap->extra -= bmap->n_div;
4952 bmap->n_div = 0;
4953 bmap = isl_basic_map_finalize(bmap);
Tobias Grosser06e15922016-11-16 11:06:47 +00004954 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00004955error:
4956 isl_basic_map_free(bmap);
4957 return NULL;
4958}
4959
4960__isl_give isl_basic_set *isl_basic_set_underlying_set(
4961 __isl_take isl_basic_set *bset)
4962{
Tobias Grosser06e15922016-11-16 11:06:47 +00004963 return isl_basic_map_underlying_set(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00004964}
4965
4966/* Replace each element in "list" by the result of applying
Tobias Grosser1fa7b972015-02-16 19:33:40 +00004967 * isl_basic_map_underlying_set to the element.
Tobias Grosser52a25232015-02-04 20:55:43 +00004968 */
Tobias Grosser1fa7b972015-02-16 19:33:40 +00004969__isl_give isl_basic_set_list *isl_basic_map_list_underlying_set(
4970 __isl_take isl_basic_map_list *list)
Tobias Grosser52a25232015-02-04 20:55:43 +00004971{
4972 int i, n;
4973
4974 if (!list)
4975 return NULL;
4976
Tobias Grosser1fa7b972015-02-16 19:33:40 +00004977 n = isl_basic_map_list_n_basic_map(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00004978 for (i = 0; i < n; ++i) {
Tobias Grosser1fa7b972015-02-16 19:33:40 +00004979 isl_basic_map *bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00004980 isl_basic_set *bset;
4981
Tobias Grosser1fa7b972015-02-16 19:33:40 +00004982 bmap = isl_basic_map_list_get_basic_map(list, i);
4983 bset = isl_basic_set_underlying_set(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00004984 list = isl_basic_set_list_set_basic_set(list, i, bset);
4985 }
4986
4987 return list;
4988}
4989
4990struct isl_basic_map *isl_basic_map_overlying_set(
4991 struct isl_basic_set *bset, struct isl_basic_map *like)
4992{
4993 struct isl_basic_map *bmap;
4994 struct isl_ctx *ctx;
4995 unsigned total;
4996 int i;
4997
4998 if (!bset || !like)
4999 goto error;
5000 ctx = bset->ctx;
5001 isl_assert(ctx, bset->n_div == 0, goto error);
5002 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
5003 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
5004 goto error);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005005 if (like->n_div == 0) {
5006 isl_space *space = isl_basic_map_get_space(like);
Tobias Grosser52a25232015-02-04 20:55:43 +00005007 isl_basic_map_free(like);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005008 return isl_basic_map_reset_space(bset, space);
Tobias Grosser52a25232015-02-04 20:55:43 +00005009 }
5010 bset = isl_basic_set_cow(bset);
5011 if (!bset)
5012 goto error;
5013 total = bset->dim->n_out + bset->extra;
Tobias Grosser06e15922016-11-16 11:06:47 +00005014 bmap = bset_to_bmap(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00005015 isl_space_free(bmap->dim);
5016 bmap->dim = isl_space_copy(like->dim);
5017 if (!bmap->dim)
5018 goto error;
5019 bmap->n_div = like->n_div;
5020 bmap->extra += like->n_div;
5021 if (bmap->extra) {
5022 unsigned ltotal;
5023 isl_int **div;
5024 ltotal = total - bmap->extra + like->extra;
5025 if (ltotal > total)
5026 ltotal = total;
5027 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
5028 bmap->extra * (1 + 1 + total));
5029 if (isl_blk_is_error(bmap->block2))
5030 goto error;
5031 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
5032 if (!div)
5033 goto error;
5034 bmap->div = div;
5035 for (i = 0; i < bmap->extra; ++i)
5036 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
5037 for (i = 0; i < like->n_div; ++i) {
5038 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
5039 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
5040 }
5041 bmap = isl_basic_map_add_known_div_constraints(bmap);
5042 }
5043 isl_basic_map_free(like);
5044 bmap = isl_basic_map_simplify(bmap);
5045 bmap = isl_basic_map_finalize(bmap);
5046 return bmap;
5047error:
5048 isl_basic_map_free(like);
5049 isl_basic_set_free(bset);
5050 return NULL;
5051}
5052
5053struct isl_basic_set *isl_basic_set_from_underlying_set(
5054 struct isl_basic_set *bset, struct isl_basic_set *like)
5055{
Tobias Grosser06e15922016-11-16 11:06:47 +00005056 return bset_from_bmap(isl_basic_map_overlying_set(bset,
5057 bset_to_bmap(like)));
Tobias Grosser52a25232015-02-04 20:55:43 +00005058}
5059
Tobias Grosser52a25232015-02-04 20:55:43 +00005060struct isl_set *isl_map_underlying_set(struct isl_map *map)
5061{
5062 int i;
5063
5064 map = isl_map_cow(map);
5065 if (!map)
5066 return NULL;
5067 map->dim = isl_space_cow(map->dim);
5068 if (!map->dim)
5069 goto error;
5070
5071 for (i = 1; i < map->n; ++i)
5072 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
5073 goto error);
5074 for (i = 0; i < map->n; ++i) {
Tobias Grosser06e15922016-11-16 11:06:47 +00005075 map->p[i] = bset_to_bmap(
5076 isl_basic_map_underlying_set(map->p[i]));
Tobias Grosser52a25232015-02-04 20:55:43 +00005077 if (!map->p[i])
5078 goto error;
5079 }
5080 if (map->n == 0)
5081 map->dim = isl_space_underlying(map->dim, 0);
5082 else {
5083 isl_space_free(map->dim);
5084 map->dim = isl_space_copy(map->p[0]->dim);
5085 }
5086 if (!map->dim)
5087 goto error;
Tobias Grosser06e15922016-11-16 11:06:47 +00005088 return set_from_map(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00005089error:
5090 isl_map_free(map);
5091 return NULL;
5092}
5093
Michael Kruse959a8dc2016-01-15 15:54:45 +00005094/* Replace the space of "bmap" by "space".
5095 *
5096 * If the space of "bmap" is identical to "space" (including the identifiers
5097 * of the input and output dimensions), then simply return the original input.
5098 */
Tobias Grosser52a25232015-02-04 20:55:43 +00005099__isl_give isl_basic_map *isl_basic_map_reset_space(
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005100 __isl_take isl_basic_map *bmap, __isl_take isl_space *space)
Tobias Grosser52a25232015-02-04 20:55:43 +00005101{
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005102 isl_bool equal;
Tobias Grossere5671e52017-03-10 09:17:55 +00005103 isl_space *bmap_space;
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005104
Tobias Grossere5671e52017-03-10 09:17:55 +00005105 bmap_space = isl_basic_map_peek_space(bmap);
5106 equal = isl_space_is_equal(bmap_space, space);
Michael Kruse959a8dc2016-01-15 15:54:45 +00005107 if (equal >= 0 && equal)
Tobias Grosser593ebdf2017-03-14 07:33:26 +00005108 equal = isl_space_has_equal_ids(bmap_space, space);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005109 if (equal < 0)
5110 goto error;
5111 if (equal) {
5112 isl_space_free(space);
5113 return bmap;
5114 }
Tobias Grosser52a25232015-02-04 20:55:43 +00005115 bmap = isl_basic_map_cow(bmap);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005116 if (!bmap || !space)
Tobias Grosser52a25232015-02-04 20:55:43 +00005117 goto error;
5118
5119 isl_space_free(bmap->dim);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005120 bmap->dim = space;
Tobias Grosser52a25232015-02-04 20:55:43 +00005121
5122 bmap = isl_basic_map_finalize(bmap);
5123
5124 return bmap;
5125error:
5126 isl_basic_map_free(bmap);
Tobias Grosser6e3ba332015-08-11 11:31:18 +00005127 isl_space_free(space);
Tobias Grosser52a25232015-02-04 20:55:43 +00005128 return NULL;
5129}
5130
5131__isl_give isl_basic_set *isl_basic_set_reset_space(
5132 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
5133{
Tobias Grosser06e15922016-11-16 11:06:47 +00005134 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset),
5135 dim));
Tobias Grosser52a25232015-02-04 20:55:43 +00005136}
5137
5138__isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
5139 __isl_take isl_space *dim)
5140{
5141 int i;
5142
5143 map = isl_map_cow(map);
5144 if (!map || !dim)
5145 goto error;
5146
5147 for (i = 0; i < map->n; ++i) {
5148 map->p[i] = isl_basic_map_reset_space(map->p[i],
5149 isl_space_copy(dim));
5150 if (!map->p[i])
5151 goto error;
5152 }
5153 isl_space_free(map->dim);
5154 map->dim = dim;
5155
5156 return map;
5157error:
5158 isl_map_free(map);
5159 isl_space_free(dim);
5160 return NULL;
5161}
5162
5163__isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
5164 __isl_take isl_space *dim)
5165{
Tobias Grosser06e15922016-11-16 11:06:47 +00005166 return set_from_map(isl_map_reset_space(set_to_map(set), dim));
Tobias Grosser52a25232015-02-04 20:55:43 +00005167}
5168
5169/* Compute the parameter domain of the given basic set.
5170 */
5171__isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
5172{
Tobias Grosser72745c22017-02-17 05:11:16 +00005173 isl_bool is_params;
Tobias Grosser52a25232015-02-04 20:55:43 +00005174 isl_space *space;
5175 unsigned n;
5176
Tobias Grosser72745c22017-02-17 05:11:16 +00005177 is_params = isl_basic_set_is_params(bset);
5178 if (is_params < 0)
5179 return isl_basic_set_free(bset);
5180 if (is_params)
Tobias Grosser52a25232015-02-04 20:55:43 +00005181 return bset;
5182
5183 n = isl_basic_set_dim(bset, isl_dim_set);
5184 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
5185 space = isl_basic_set_get_space(bset);
5186 space = isl_space_params(space);
5187 bset = isl_basic_set_reset_space(bset, space);
5188 return bset;
5189}
5190
5191/* Construct a zero-dimensional basic set with the given parameter domain.
5192 */
5193__isl_give isl_basic_set *isl_basic_set_from_params(
5194 __isl_take isl_basic_set *bset)
5195{
5196 isl_space *space;
5197 space = isl_basic_set_get_space(bset);
5198 space = isl_space_set_from_params(space);
5199 bset = isl_basic_set_reset_space(bset, space);
5200 return bset;
5201}
5202
5203/* Compute the parameter domain of the given set.
5204 */
5205__isl_give isl_set *isl_set_params(__isl_take isl_set *set)
5206{
5207 isl_space *space;
5208 unsigned n;
5209
5210 if (isl_set_is_params(set))
5211 return set;
5212
5213 n = isl_set_dim(set, isl_dim_set);
5214 set = isl_set_project_out(set, isl_dim_set, 0, n);
5215 space = isl_set_get_space(set);
5216 space = isl_space_params(space);
5217 set = isl_set_reset_space(set, space);
5218 return set;
5219}
5220
5221/* Construct a zero-dimensional set with the given parameter domain.
5222 */
5223__isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
5224{
5225 isl_space *space;
5226 space = isl_set_get_space(set);
5227 space = isl_space_set_from_params(space);
5228 set = isl_set_reset_space(set, space);
5229 return set;
5230}
5231
5232/* Compute the parameter domain of the given map.
5233 */
5234__isl_give isl_set *isl_map_params(__isl_take isl_map *map)
5235{
5236 isl_space *space;
5237 unsigned n;
5238
5239 n = isl_map_dim(map, isl_dim_in);
5240 map = isl_map_project_out(map, isl_dim_in, 0, n);
5241 n = isl_map_dim(map, isl_dim_out);
5242 map = isl_map_project_out(map, isl_dim_out, 0, n);
5243 space = isl_map_get_space(map);
5244 space = isl_space_params(space);
5245 map = isl_map_reset_space(map, space);
5246 return map;
5247}
5248
5249struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
5250{
Tobias Grosserb2f39922015-05-28 13:32:11 +00005251 isl_space *space;
Tobias Grosser52a25232015-02-04 20:55:43 +00005252 unsigned n_out;
5253
5254 if (!bmap)
5255 return NULL;
Tobias Grosserb2f39922015-05-28 13:32:11 +00005256 space = isl_space_domain(isl_basic_map_get_space(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00005257
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00005258 n_out = isl_basic_map_dim(bmap, isl_dim_out);
Tobias Grosserb2f39922015-05-28 13:32:11 +00005259 bmap = isl_basic_map_project_out(bmap, isl_dim_out, 0, n_out);
Tobias Grosser52a25232015-02-04 20:55:43 +00005260
Tobias Grosserb2f39922015-05-28 13:32:11 +00005261 return isl_basic_map_reset_space(bmap, space);
Tobias Grosser52a25232015-02-04 20:55:43 +00005262}
5263
Tobias Grosser72745c22017-02-17 05:11:16 +00005264isl_bool isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00005265{
5266 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +00005267 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00005268 return isl_space_may_be_set(bmap->dim);
5269}
5270
5271/* Is this basic map actually a set?
5272 * Users should never call this function. Outside of isl,
5273 * the type should indicate whether something is a set or a map.
5274 */
Tobias Grosser72745c22017-02-17 05:11:16 +00005275isl_bool isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00005276{
5277 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +00005278 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00005279 return isl_space_is_set(bmap->dim);
5280}
5281
5282struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
5283{
Tobias Grosser72745c22017-02-17 05:11:16 +00005284 isl_bool is_set;
5285
5286 is_set = isl_basic_map_is_set(bmap);
5287 if (is_set < 0)
5288 goto error;
5289 if (is_set)
Tobias Grosser52a25232015-02-04 20:55:43 +00005290 return bmap;
5291 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
Tobias Grosser72745c22017-02-17 05:11:16 +00005292error:
5293 isl_basic_map_free(bmap);
5294 return NULL;
Tobias Grosser52a25232015-02-04 20:55:43 +00005295}
5296
5297__isl_give isl_basic_map *isl_basic_map_domain_map(
5298 __isl_take isl_basic_map *bmap)
5299{
Tobias Grosser72745c22017-02-17 05:11:16 +00005300 int i;
Tobias Grosser52a25232015-02-04 20:55:43 +00005301 isl_space *dim;
5302 isl_basic_map *domain;
5303 int nparam, n_in, n_out;
Tobias Grosser52a25232015-02-04 20:55:43 +00005304
5305 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5306 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5307 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5308
5309 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
5310 domain = isl_basic_map_universe(dim);
5311
5312 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5313 bmap = isl_basic_map_apply_range(bmap, domain);
5314 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
5315
Tobias Grosser72745c22017-02-17 05:11:16 +00005316 for (i = 0; i < n_in; ++i)
5317 bmap = isl_basic_map_equate(bmap, isl_dim_in, i,
5318 isl_dim_out, i);
Tobias Grosser52a25232015-02-04 20:55:43 +00005319
5320 bmap = isl_basic_map_gauss(bmap, NULL);
5321 return isl_basic_map_finalize(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00005322}
5323
5324__isl_give isl_basic_map *isl_basic_map_range_map(
5325 __isl_take isl_basic_map *bmap)
5326{
Tobias Grosser72745c22017-02-17 05:11:16 +00005327 int i;
Tobias Grosser52a25232015-02-04 20:55:43 +00005328 isl_space *dim;
5329 isl_basic_map *range;
5330 int nparam, n_in, n_out;
Tobias Grosser52a25232015-02-04 20:55:43 +00005331
5332 nparam = isl_basic_map_dim(bmap, isl_dim_param);
5333 n_in = isl_basic_map_dim(bmap, isl_dim_in);
5334 n_out = isl_basic_map_dim(bmap, isl_dim_out);
5335
5336 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
5337 range = isl_basic_map_universe(dim);
5338
5339 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
5340 bmap = isl_basic_map_apply_range(bmap, range);
5341 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
5342
Tobias Grosser72745c22017-02-17 05:11:16 +00005343 for (i = 0; i < n_out; ++i)
5344 bmap = isl_basic_map_equate(bmap, isl_dim_in, n_in + i,
5345 isl_dim_out, i);
Tobias Grosser52a25232015-02-04 20:55:43 +00005346
5347 bmap = isl_basic_map_gauss(bmap, NULL);
5348 return isl_basic_map_finalize(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00005349}
5350
5351int isl_map_may_be_set(__isl_keep isl_map *map)
5352{
5353 if (!map)
5354 return -1;
5355 return isl_space_may_be_set(map->dim);
5356}
5357
5358/* Is this map actually a set?
5359 * Users should never call this function. Outside of isl,
5360 * the type should indicate whether something is a set or a map.
5361 */
Tobias Grosser72745c22017-02-17 05:11:16 +00005362isl_bool isl_map_is_set(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00005363{
5364 if (!map)
Tobias Grosser72745c22017-02-17 05:11:16 +00005365 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00005366 return isl_space_is_set(map->dim);
5367}
5368
5369struct isl_set *isl_map_range(struct isl_map *map)
5370{
5371 int i;
Tobias Grosser72745c22017-02-17 05:11:16 +00005372 isl_bool is_set;
Tobias Grosser52a25232015-02-04 20:55:43 +00005373 struct isl_set *set;
5374
Tobias Grosser72745c22017-02-17 05:11:16 +00005375 is_set = isl_map_is_set(map);
5376 if (is_set < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00005377 goto error;
Tobias Grosser72745c22017-02-17 05:11:16 +00005378 if (is_set)
Tobias Grosser06e15922016-11-16 11:06:47 +00005379 return set_from_map(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00005380
5381 map = isl_map_cow(map);
5382 if (!map)
5383 goto error;
5384
Tobias Grosser06e15922016-11-16 11:06:47 +00005385 set = set_from_map(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00005386 set->dim = isl_space_range(set->dim);
5387 if (!set->dim)
5388 goto error;
5389 for (i = 0; i < map->n; ++i) {
5390 set->p[i] = isl_basic_map_range(map->p[i]);
5391 if (!set->p[i])
5392 goto error;
5393 }
5394 ISL_F_CLR(set, ISL_MAP_DISJOINT);
5395 ISL_F_CLR(set, ISL_SET_NORMALIZED);
5396 return set;
5397error:
5398 isl_map_free(map);
5399 return NULL;
5400}
5401
5402__isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
5403{
5404 int i;
5405
5406 map = isl_map_cow(map);
5407 if (!map)
5408 return NULL;
5409
5410 map->dim = isl_space_domain_map(map->dim);
5411 if (!map->dim)
5412 goto error;
5413 for (i = 0; i < map->n; ++i) {
5414 map->p[i] = isl_basic_map_domain_map(map->p[i]);
5415 if (!map->p[i])
5416 goto error;
5417 }
5418 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5419 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5420 return map;
5421error:
5422 isl_map_free(map);
5423 return NULL;
5424}
5425
5426__isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
5427{
5428 int i;
5429 isl_space *range_dim;
5430
5431 map = isl_map_cow(map);
5432 if (!map)
5433 return NULL;
5434
5435 range_dim = isl_space_range(isl_map_get_space(map));
5436 range_dim = isl_space_from_range(range_dim);
5437 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
5438 map->dim = isl_space_join(map->dim, range_dim);
5439 if (!map->dim)
5440 goto error;
5441 for (i = 0; i < map->n; ++i) {
5442 map->p[i] = isl_basic_map_range_map(map->p[i]);
5443 if (!map->p[i])
5444 goto error;
5445 }
5446 ISL_F_CLR(map, ISL_MAP_DISJOINT);
5447 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5448 return map;
5449error:
5450 isl_map_free(map);
5451 return NULL;
5452}
5453
5454/* Given a wrapped map of the form A[B -> C],
5455 * return the map A[B -> C] -> B.
5456 */
5457__isl_give isl_map *isl_set_wrapped_domain_map(__isl_take isl_set *set)
5458{
5459 isl_id *id;
5460 isl_map *map;
5461
5462 if (!set)
5463 return NULL;
5464 if (!isl_set_has_tuple_id(set))
5465 return isl_map_domain_map(isl_set_unwrap(set));
5466
5467 id = isl_set_get_tuple_id(set);
5468 map = isl_map_domain_map(isl_set_unwrap(set));
5469 map = isl_map_set_tuple_id(map, isl_dim_in, id);
5470
5471 return map;
5472}
5473
Tobias Grosser52a25232015-02-04 20:55:43 +00005474__isl_give isl_basic_map *isl_basic_map_from_domain(
5475 __isl_take isl_basic_set *bset)
5476{
5477 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
5478}
5479
5480__isl_give isl_basic_map *isl_basic_map_from_range(
5481 __isl_take isl_basic_set *bset)
5482{
5483 isl_space *space;
5484 space = isl_basic_set_get_space(bset);
5485 space = isl_space_from_range(space);
5486 bset = isl_basic_set_reset_space(bset, space);
Tobias Grosser06e15922016-11-16 11:06:47 +00005487 return bset_to_bmap(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00005488}
5489
5490/* Create a relation with the given set as range.
5491 * The domain of the created relation is a zero-dimensional
5492 * flat anonymous space.
5493 */
5494__isl_give isl_map *isl_map_from_range(__isl_take isl_set *set)
5495{
5496 isl_space *space;
5497 space = isl_set_get_space(set);
5498 space = isl_space_from_range(space);
5499 set = isl_set_reset_space(set, space);
Tobias Grosser06e15922016-11-16 11:06:47 +00005500 return set_to_map(set);
Tobias Grosser52a25232015-02-04 20:55:43 +00005501}
5502
5503/* Create a relation with the given set as domain.
5504 * The range of the created relation is a zero-dimensional
5505 * flat anonymous space.
5506 */
5507__isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
5508{
5509 return isl_map_reverse(isl_map_from_range(set));
5510}
5511
5512__isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
5513 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
5514{
5515 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
5516}
5517
5518__isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
5519 __isl_take isl_set *range)
5520{
5521 return isl_map_apply_range(isl_map_reverse(domain), range);
5522}
5523
Tobias Grosser07b20952016-06-12 04:30:40 +00005524/* Return a newly allocated isl_map with given space and flags and
5525 * room for "n" basic maps.
5526 * Make sure that all cached information is cleared.
5527 */
5528__isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *space, int n,
Tobias Grosser52a25232015-02-04 20:55:43 +00005529 unsigned flags)
5530{
5531 struct isl_map *map;
5532
Tobias Grosser07b20952016-06-12 04:30:40 +00005533 if (!space)
Tobias Grosser52a25232015-02-04 20:55:43 +00005534 return NULL;
5535 if (n < 0)
Tobias Grosser07b20952016-06-12 04:30:40 +00005536 isl_die(space->ctx, isl_error_internal,
Tobias Grosser52a25232015-02-04 20:55:43 +00005537 "negative number of basic maps", goto error);
Tobias Grosser07b20952016-06-12 04:30:40 +00005538 map = isl_calloc(space->ctx, struct isl_map,
Tobias Grosser52a25232015-02-04 20:55:43 +00005539 sizeof(struct isl_map) +
5540 (n - 1) * sizeof(struct isl_basic_map *));
5541 if (!map)
5542 goto error;
5543
Tobias Grosser07b20952016-06-12 04:30:40 +00005544 map->ctx = space->ctx;
Tobias Grosser52a25232015-02-04 20:55:43 +00005545 isl_ctx_ref(map->ctx);
5546 map->ref = 1;
5547 map->size = n;
5548 map->n = 0;
Tobias Grosser07b20952016-06-12 04:30:40 +00005549 map->dim = space;
Tobias Grosser52a25232015-02-04 20:55:43 +00005550 map->flags = flags;
5551 return map;
5552error:
Tobias Grosser07b20952016-06-12 04:30:40 +00005553 isl_space_free(space);
Tobias Grosser52a25232015-02-04 20:55:43 +00005554 return NULL;
5555}
5556
Tobias Grosser52a25232015-02-04 20:55:43 +00005557__isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
5558{
5559 struct isl_basic_map *bmap;
5560 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
5561 bmap = isl_basic_map_set_to_empty(bmap);
5562 return bmap;
5563}
5564
5565__isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
5566{
5567 struct isl_basic_set *bset;
5568 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
5569 bset = isl_basic_set_set_to_empty(bset);
5570 return bset;
5571}
5572
Tobias Grosser52a25232015-02-04 20:55:43 +00005573__isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
5574{
5575 struct isl_basic_map *bmap;
5576 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
5577 bmap = isl_basic_map_finalize(bmap);
5578 return bmap;
5579}
5580
5581__isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
5582{
5583 struct isl_basic_set *bset;
5584 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
5585 bset = isl_basic_set_finalize(bset);
5586 return bset;
5587}
5588
5589__isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
5590{
5591 int i;
5592 unsigned total = isl_space_dim(dim, isl_dim_all);
5593 isl_basic_map *bmap;
5594
5595 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
5596 for (i = 0; i < total; ++i) {
5597 int k = isl_basic_map_alloc_inequality(bmap);
5598 if (k < 0)
5599 goto error;
5600 isl_seq_clr(bmap->ineq[k], 1 + total);
5601 isl_int_set_si(bmap->ineq[k][1 + i], 1);
5602 }
5603 return bmap;
5604error:
5605 isl_basic_map_free(bmap);
5606 return NULL;
5607}
5608
5609__isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
5610{
5611 return isl_basic_map_nat_universe(dim);
5612}
5613
5614__isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
5615{
5616 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
5617}
5618
5619__isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
5620{
5621 return isl_map_nat_universe(dim);
5622}
5623
Tobias Grosser52a25232015-02-04 20:55:43 +00005624__isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
5625{
5626 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5627}
5628
Tobias Grosser52a25232015-02-04 20:55:43 +00005629__isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
5630{
5631 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
5632}
5633
Tobias Grosser52a25232015-02-04 20:55:43 +00005634__isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
5635{
5636 struct isl_map *map;
5637 if (!dim)
5638 return NULL;
5639 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5640 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5641 return map;
5642}
5643
5644__isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5645{
5646 struct isl_set *set;
5647 if (!dim)
5648 return NULL;
5649 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5650 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5651 return set;
5652}
5653
Tobias Grosser52a25232015-02-04 20:55:43 +00005654struct isl_map *isl_map_dup(struct isl_map *map)
5655{
5656 int i;
5657 struct isl_map *dup;
5658
5659 if (!map)
5660 return NULL;
5661 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5662 for (i = 0; i < map->n; ++i)
5663 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5664 return dup;
5665}
5666
5667__isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
5668 __isl_take isl_basic_map *bmap)
5669{
5670 if (!bmap || !map)
5671 goto error;
5672 if (isl_basic_map_plain_is_empty(bmap)) {
5673 isl_basic_map_free(bmap);
5674 return map;
5675 }
5676 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
5677 isl_assert(map->ctx, map->n < map->size, goto error);
5678 map->p[map->n] = bmap;
5679 map->n++;
5680 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5681 return map;
5682error:
5683 if (map)
5684 isl_map_free(map);
5685 if (bmap)
5686 isl_basic_map_free(bmap);
5687 return NULL;
5688}
5689
5690__isl_null isl_map *isl_map_free(__isl_take isl_map *map)
5691{
5692 int i;
5693
5694 if (!map)
5695 return NULL;
5696
5697 if (--map->ref > 0)
5698 return NULL;
5699
Tobias Grosser07b20952016-06-12 04:30:40 +00005700 clear_caches(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00005701 isl_ctx_deref(map->ctx);
5702 for (i = 0; i < map->n; ++i)
5703 isl_basic_map_free(map->p[i]);
5704 isl_space_free(map->dim);
5705 free(map);
5706
5707 return NULL;
5708}
5709
Tobias Grosser52a25232015-02-04 20:55:43 +00005710static struct isl_basic_map *isl_basic_map_fix_pos_si(
5711 struct isl_basic_map *bmap, unsigned pos, int value)
5712{
5713 int j;
5714
5715 bmap = isl_basic_map_cow(bmap);
5716 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5717 j = isl_basic_map_alloc_equality(bmap);
5718 if (j < 0)
5719 goto error;
5720 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5721 isl_int_set_si(bmap->eq[j][pos], -1);
5722 isl_int_set_si(bmap->eq[j][0], value);
5723 bmap = isl_basic_map_simplify(bmap);
5724 return isl_basic_map_finalize(bmap);
5725error:
5726 isl_basic_map_free(bmap);
5727 return NULL;
5728}
5729
5730static __isl_give isl_basic_map *isl_basic_map_fix_pos(
5731 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
5732{
5733 int j;
5734
5735 bmap = isl_basic_map_cow(bmap);
5736 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5737 j = isl_basic_map_alloc_equality(bmap);
5738 if (j < 0)
5739 goto error;
5740 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5741 isl_int_set_si(bmap->eq[j][pos], -1);
5742 isl_int_set(bmap->eq[j][0], value);
5743 bmap = isl_basic_map_simplify(bmap);
5744 return isl_basic_map_finalize(bmap);
5745error:
5746 isl_basic_map_free(bmap);
5747 return NULL;
5748}
5749
5750struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
5751 enum isl_dim_type type, unsigned pos, int value)
5752{
Tobias Grosser94e53712016-12-31 07:46:11 +00005753 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5754 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00005755 return isl_basic_map_fix_pos_si(bmap,
5756 isl_basic_map_offset(bmap, type) + pos, value);
Tobias Grosser52a25232015-02-04 20:55:43 +00005757}
5758
5759__isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
5760 enum isl_dim_type type, unsigned pos, isl_int value)
5761{
Tobias Grosser94e53712016-12-31 07:46:11 +00005762 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5763 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00005764 return isl_basic_map_fix_pos(bmap,
5765 isl_basic_map_offset(bmap, type) + pos, value);
Tobias Grosser52a25232015-02-04 20:55:43 +00005766}
5767
5768/* Fix the value of the variable at position "pos" of type "type" of "bmap"
5769 * to be equal to "v".
5770 */
5771__isl_give isl_basic_map *isl_basic_map_fix_val(__isl_take isl_basic_map *bmap,
5772 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5773{
5774 if (!bmap || !v)
5775 goto error;
5776 if (!isl_val_is_int(v))
5777 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
5778 "expecting integer value", goto error);
Tobias Grosser94e53712016-12-31 07:46:11 +00005779 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5780 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00005781 pos += isl_basic_map_offset(bmap, type);
5782 bmap = isl_basic_map_fix_pos(bmap, pos, v->n);
5783 isl_val_free(v);
5784 return bmap;
5785error:
5786 isl_basic_map_free(bmap);
5787 isl_val_free(v);
5788 return NULL;
5789}
5790
5791/* Fix the value of the variable at position "pos" of type "type" of "bset"
5792 * to be equal to "v".
5793 */
5794__isl_give isl_basic_set *isl_basic_set_fix_val(__isl_take isl_basic_set *bset,
5795 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5796{
5797 return isl_basic_map_fix_val(bset, type, pos, v);
5798}
5799
5800struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
5801 enum isl_dim_type type, unsigned pos, int value)
5802{
Tobias Grosser06e15922016-11-16 11:06:47 +00005803 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
5804 type, pos, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005805}
5806
5807__isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
5808 enum isl_dim_type type, unsigned pos, isl_int value)
5809{
Tobias Grosser06e15922016-11-16 11:06:47 +00005810 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset),
5811 type, pos, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005812}
5813
5814struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
5815 unsigned input, int value)
5816{
5817 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
5818}
5819
5820struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
5821 unsigned dim, int value)
5822{
Tobias Grosser06e15922016-11-16 11:06:47 +00005823 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset),
5824 isl_dim_set, dim, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005825}
5826
5827static int remove_if_empty(__isl_keep isl_map *map, int i)
5828{
5829 int empty = isl_basic_map_plain_is_empty(map->p[i]);
5830
5831 if (empty < 0)
5832 return -1;
5833 if (!empty)
5834 return 0;
5835
5836 isl_basic_map_free(map->p[i]);
5837 if (i != map->n - 1) {
5838 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5839 map->p[i] = map->p[map->n - 1];
5840 }
5841 map->n--;
5842
5843 return 0;
5844}
5845
5846/* Perform "fn" on each basic map of "map", where we may not be holding
5847 * the only reference to "map".
5848 * In particular, "fn" should be a semantics preserving operation
5849 * that we want to apply to all copies of "map". We therefore need
5850 * to be careful not to modify "map" in a way that breaks "map"
5851 * in case anything goes wrong.
5852 */
5853__isl_give isl_map *isl_map_inline_foreach_basic_map(__isl_take isl_map *map,
5854 __isl_give isl_basic_map *(*fn)(__isl_take isl_basic_map *bmap))
5855{
5856 struct isl_basic_map *bmap;
5857 int i;
5858
5859 if (!map)
5860 return NULL;
5861
5862 for (i = map->n - 1; i >= 0; --i) {
5863 bmap = isl_basic_map_copy(map->p[i]);
5864 bmap = fn(bmap);
5865 if (!bmap)
5866 goto error;
5867 isl_basic_map_free(map->p[i]);
5868 map->p[i] = bmap;
5869 if (remove_if_empty(map, i) < 0)
5870 goto error;
5871 }
5872
5873 return map;
5874error:
5875 isl_map_free(map);
5876 return NULL;
5877}
5878
5879struct isl_map *isl_map_fix_si(struct isl_map *map,
5880 enum isl_dim_type type, unsigned pos, int value)
5881{
5882 int i;
5883
5884 map = isl_map_cow(map);
5885 if (!map)
5886 return NULL;
5887
5888 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5889 for (i = map->n - 1; i >= 0; --i) {
5890 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
5891 if (remove_if_empty(map, i) < 0)
5892 goto error;
5893 }
5894 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5895 return map;
5896error:
5897 isl_map_free(map);
5898 return NULL;
5899}
5900
5901__isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
5902 enum isl_dim_type type, unsigned pos, int value)
5903{
Tobias Grosser06e15922016-11-16 11:06:47 +00005904 return set_from_map(isl_map_fix_si(set_to_map(set), type, pos, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005905}
5906
5907__isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
5908 enum isl_dim_type type, unsigned pos, isl_int value)
5909{
5910 int i;
5911
5912 map = isl_map_cow(map);
5913 if (!map)
5914 return NULL;
5915
5916 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5917 for (i = 0; i < map->n; ++i) {
5918 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
5919 if (!map->p[i])
5920 goto error;
5921 }
5922 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5923 return map;
5924error:
5925 isl_map_free(map);
5926 return NULL;
5927}
5928
5929__isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
5930 enum isl_dim_type type, unsigned pos, isl_int value)
5931{
Tobias Grosser06e15922016-11-16 11:06:47 +00005932 return set_from_map(isl_map_fix(set_to_map(set), type, pos, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005933}
5934
5935/* Fix the value of the variable at position "pos" of type "type" of "map"
5936 * to be equal to "v".
5937 */
5938__isl_give isl_map *isl_map_fix_val(__isl_take isl_map *map,
5939 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5940{
5941 int i;
5942
5943 map = isl_map_cow(map);
5944 if (!map || !v)
5945 goto error;
5946
5947 if (!isl_val_is_int(v))
5948 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5949 "expecting integer value", goto error);
5950 if (pos >= isl_map_dim(map, type))
5951 isl_die(isl_map_get_ctx(map), isl_error_invalid,
5952 "index out of bounds", goto error);
5953 for (i = map->n - 1; i >= 0; --i) {
5954 map->p[i] = isl_basic_map_fix_val(map->p[i], type, pos,
5955 isl_val_copy(v));
5956 if (remove_if_empty(map, i) < 0)
5957 goto error;
5958 }
5959 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5960 isl_val_free(v);
5961 return map;
5962error:
5963 isl_map_free(map);
5964 isl_val_free(v);
5965 return NULL;
5966}
5967
5968/* Fix the value of the variable at position "pos" of type "type" of "set"
5969 * to be equal to "v".
5970 */
5971__isl_give isl_set *isl_set_fix_val(__isl_take isl_set *set,
5972 enum isl_dim_type type, unsigned pos, __isl_take isl_val *v)
5973{
5974 return isl_map_fix_val(set, type, pos, v);
5975}
5976
5977struct isl_map *isl_map_fix_input_si(struct isl_map *map,
5978 unsigned input, int value)
5979{
5980 return isl_map_fix_si(map, isl_dim_in, input, value);
5981}
5982
5983struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
5984{
Tobias Grosser06e15922016-11-16 11:06:47 +00005985 return set_from_map(isl_map_fix_si(set_to_map(set),
5986 isl_dim_set, dim, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00005987}
5988
5989static __isl_give isl_basic_map *basic_map_bound_si(
5990 __isl_take isl_basic_map *bmap,
5991 enum isl_dim_type type, unsigned pos, int value, int upper)
5992{
5993 int j;
5994
Tobias Grosser94e53712016-12-31 07:46:11 +00005995 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
5996 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00005997 pos += isl_basic_map_offset(bmap, type);
5998 bmap = isl_basic_map_cow(bmap);
5999 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6000 j = isl_basic_map_alloc_inequality(bmap);
6001 if (j < 0)
6002 goto error;
6003 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6004 if (upper) {
6005 isl_int_set_si(bmap->ineq[j][pos], -1);
6006 isl_int_set_si(bmap->ineq[j][0], value);
6007 } else {
6008 isl_int_set_si(bmap->ineq[j][pos], 1);
6009 isl_int_set_si(bmap->ineq[j][0], -value);
6010 }
6011 bmap = isl_basic_map_simplify(bmap);
6012 return isl_basic_map_finalize(bmap);
6013error:
6014 isl_basic_map_free(bmap);
6015 return NULL;
6016}
6017
6018__isl_give isl_basic_map *isl_basic_map_lower_bound_si(
6019 __isl_take isl_basic_map *bmap,
6020 enum isl_dim_type type, unsigned pos, int value)
6021{
6022 return basic_map_bound_si(bmap, type, pos, value, 0);
6023}
6024
6025/* Constrain the values of the given dimension to be no greater than "value".
6026 */
6027__isl_give isl_basic_map *isl_basic_map_upper_bound_si(
6028 __isl_take isl_basic_map *bmap,
6029 enum isl_dim_type type, unsigned pos, int value)
6030{
6031 return basic_map_bound_si(bmap, type, pos, value, 1);
6032}
6033
Tobias Grosser52a25232015-02-04 20:55:43 +00006034static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
6035 enum isl_dim_type type, unsigned pos, int value, int upper)
6036{
6037 int i;
6038
6039 map = isl_map_cow(map);
6040 if (!map)
6041 return NULL;
6042
6043 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
6044 for (i = 0; i < map->n; ++i) {
6045 map->p[i] = basic_map_bound_si(map->p[i],
6046 type, pos, value, upper);
6047 if (!map->p[i])
6048 goto error;
6049 }
6050 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6051 return map;
6052error:
6053 isl_map_free(map);
6054 return NULL;
6055}
6056
6057__isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
6058 enum isl_dim_type type, unsigned pos, int value)
6059{
6060 return map_bound_si(map, type, pos, value, 0);
6061}
6062
6063__isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
6064 enum isl_dim_type type, unsigned pos, int value)
6065{
6066 return map_bound_si(map, type, pos, value, 1);
6067}
6068
6069__isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
6070 enum isl_dim_type type, unsigned pos, int value)
6071{
Tobias Grosser06e15922016-11-16 11:06:47 +00006072 return set_from_map(isl_map_lower_bound_si(set_to_map(set),
6073 type, pos, value));
Tobias Grosser52a25232015-02-04 20:55:43 +00006074}
6075
6076__isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
6077 enum isl_dim_type type, unsigned pos, int value)
6078{
6079 return isl_map_upper_bound_si(set, type, pos, value);
6080}
6081
6082/* Bound the given variable of "bmap" from below (or above is "upper"
6083 * is set) to "value".
6084 */
6085static __isl_give isl_basic_map *basic_map_bound(
6086 __isl_take isl_basic_map *bmap,
6087 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6088{
6089 int j;
6090
Tobias Grosser94e53712016-12-31 07:46:11 +00006091 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
6092 return isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00006093 pos += isl_basic_map_offset(bmap, type);
6094 bmap = isl_basic_map_cow(bmap);
6095 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
6096 j = isl_basic_map_alloc_inequality(bmap);
6097 if (j < 0)
6098 goto error;
6099 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
6100 if (upper) {
6101 isl_int_set_si(bmap->ineq[j][pos], -1);
6102 isl_int_set(bmap->ineq[j][0], value);
6103 } else {
6104 isl_int_set_si(bmap->ineq[j][pos], 1);
6105 isl_int_neg(bmap->ineq[j][0], value);
6106 }
6107 bmap = isl_basic_map_simplify(bmap);
6108 return isl_basic_map_finalize(bmap);
6109error:
6110 isl_basic_map_free(bmap);
6111 return NULL;
6112}
6113
6114/* Bound the given variable of "map" from below (or above is "upper"
6115 * is set) to "value".
6116 */
6117static __isl_give isl_map *map_bound(__isl_take isl_map *map,
6118 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
6119{
6120 int i;
6121
6122 map = isl_map_cow(map);
6123 if (!map)
6124 return NULL;
6125
6126 if (pos >= isl_map_dim(map, type))
6127 isl_die(map->ctx, isl_error_invalid,
6128 "index out of bounds", goto error);
6129 for (i = map->n - 1; i >= 0; --i) {
6130 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
6131 if (remove_if_empty(map, i) < 0)
6132 goto error;
6133 }
6134 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6135 return map;
6136error:
6137 isl_map_free(map);
6138 return NULL;
6139}
6140
6141__isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
6142 enum isl_dim_type type, unsigned pos, isl_int value)
6143{
6144 return map_bound(map, type, pos, value, 0);
6145}
6146
6147__isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
6148 enum isl_dim_type type, unsigned pos, isl_int value)
6149{
6150 return map_bound(map, type, pos, value, 1);
6151}
6152
6153__isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
6154 enum isl_dim_type type, unsigned pos, isl_int value)
6155{
6156 return isl_map_lower_bound(set, type, pos, value);
6157}
6158
6159__isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
6160 enum isl_dim_type type, unsigned pos, isl_int value)
6161{
6162 return isl_map_upper_bound(set, type, pos, value);
6163}
6164
6165/* Force the values of the variable at position "pos" of type "type" of "set"
6166 * to be no smaller than "value".
6167 */
6168__isl_give isl_set *isl_set_lower_bound_val(__isl_take isl_set *set,
6169 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6170{
6171 if (!value)
6172 goto error;
6173 if (!isl_val_is_int(value))
6174 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6175 "expecting integer value", goto error);
6176 set = isl_set_lower_bound(set, type, pos, value->n);
6177 isl_val_free(value);
6178 return set;
6179error:
6180 isl_val_free(value);
6181 isl_set_free(set);
6182 return NULL;
6183}
6184
6185/* Force the values of the variable at position "pos" of type "type" of "set"
6186 * to be no greater than "value".
6187 */
6188__isl_give isl_set *isl_set_upper_bound_val(__isl_take isl_set *set,
6189 enum isl_dim_type type, unsigned pos, __isl_take isl_val *value)
6190{
6191 if (!value)
6192 goto error;
6193 if (!isl_val_is_int(value))
6194 isl_die(isl_set_get_ctx(set), isl_error_invalid,
6195 "expecting integer value", goto error);
6196 set = isl_set_upper_bound(set, type, pos, value->n);
6197 isl_val_free(value);
6198 return set;
6199error:
6200 isl_val_free(value);
6201 isl_set_free(set);
6202 return NULL;
6203}
6204
Tobias Grosser52a25232015-02-04 20:55:43 +00006205struct isl_map *isl_map_reverse(struct isl_map *map)
6206{
6207 int i;
6208
6209 map = isl_map_cow(map);
6210 if (!map)
6211 return NULL;
6212
6213 map->dim = isl_space_reverse(map->dim);
6214 if (!map->dim)
6215 goto error;
6216 for (i = 0; i < map->n; ++i) {
6217 map->p[i] = isl_basic_map_reverse(map->p[i]);
6218 if (!map->p[i])
6219 goto error;
6220 }
6221 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6222 return map;
6223error:
6224 isl_map_free(map);
6225 return NULL;
6226}
6227
Tobias Grosser52a25232015-02-04 20:55:43 +00006228#undef TYPE
6229#define TYPE isl_pw_multi_aff
6230#undef SUFFIX
6231#define SUFFIX _pw_multi_aff
6232#undef EMPTY
6233#define EMPTY isl_pw_multi_aff_empty
6234#undef ADD
6235#define ADD isl_pw_multi_aff_union_add
6236#include "isl_map_lexopt_templ.c"
6237
6238/* Given a map "map", compute the lexicographically minimal
6239 * (or maximal) image element for each domain element in dom,
6240 * in the form of an isl_pw_multi_aff.
Tobias Grosser37034db2016-03-25 19:38:18 +00006241 * If "empty" is not NULL, then set *empty to those elements in dom that
6242 * do not have an image element.
Tobias Grosser932ec012016-07-06 09:11:00 +00006243 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6244 * should be computed over the domain of "map". "empty" is also NULL
6245 * in this case.
Tobias Grosser52a25232015-02-04 20:55:43 +00006246 *
6247 * We first compute the lexicographically minimal or maximal element
6248 * in the first basic map. This results in a partial solution "res"
6249 * and a subset "todo" of dom that still need to be handled.
6250 * We then consider each of the remaining maps in "map" and successively
6251 * update both "res" and "todo".
Tobias Grosser37034db2016-03-25 19:38:18 +00006252 * If "empty" is NULL, then the todo sets are not needed and therefore
6253 * also not computed.
Tobias Grosser52a25232015-02-04 20:55:43 +00006254 */
6255static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
6256 __isl_take isl_map *map, __isl_take isl_set *dom,
Tobias Grosser932ec012016-07-06 09:11:00 +00006257 __isl_give isl_set **empty, unsigned flags)
Tobias Grosser52a25232015-02-04 20:55:43 +00006258{
6259 int i;
Tobias Grosser932ec012016-07-06 09:11:00 +00006260 int full;
Tobias Grosser52a25232015-02-04 20:55:43 +00006261 isl_pw_multi_aff *res;
6262 isl_set *todo;
6263
Tobias Grosser932ec012016-07-06 09:11:00 +00006264 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6265 if (!map || (!full && !dom))
Tobias Grosser52a25232015-02-04 20:55:43 +00006266 goto error;
6267
6268 if (isl_map_plain_is_empty(map)) {
6269 if (empty)
6270 *empty = dom;
6271 else
6272 isl_set_free(dom);
6273 return isl_pw_multi_aff_from_map(map);
6274 }
6275
6276 res = basic_map_partial_lexopt_pw_multi_aff(
6277 isl_basic_map_copy(map->p[0]),
Tobias Grosser932ec012016-07-06 09:11:00 +00006278 isl_set_copy(dom), empty, flags);
Tobias Grosser52a25232015-02-04 20:55:43 +00006279
Tobias Grosser37034db2016-03-25 19:38:18 +00006280 if (empty)
6281 todo = *empty;
Tobias Grosser52a25232015-02-04 20:55:43 +00006282 for (i = 1; i < map->n; ++i) {
6283 isl_pw_multi_aff *res_i;
Tobias Grosser52a25232015-02-04 20:55:43 +00006284
6285 res_i = basic_map_partial_lexopt_pw_multi_aff(
6286 isl_basic_map_copy(map->p[i]),
Tobias Grosser932ec012016-07-06 09:11:00 +00006287 isl_set_copy(dom), empty, flags);
Tobias Grosser52a25232015-02-04 20:55:43 +00006288
Tobias Grosser932ec012016-07-06 09:11:00 +00006289 if (ISL_FL_ISSET(flags, ISL_OPT_MAX))
Tobias Grosser52a25232015-02-04 20:55:43 +00006290 res = isl_pw_multi_aff_union_lexmax(res, res_i);
6291 else
6292 res = isl_pw_multi_aff_union_lexmin(res, res_i);
6293
Tobias Grosser37034db2016-03-25 19:38:18 +00006294 if (empty)
6295 todo = isl_set_intersect(todo, *empty);
Tobias Grosser52a25232015-02-04 20:55:43 +00006296 }
6297
6298 isl_set_free(dom);
6299 isl_map_free(map);
6300
6301 if (empty)
6302 *empty = todo;
Tobias Grosser52a25232015-02-04 20:55:43 +00006303
6304 return res;
6305error:
6306 if (empty)
6307 *empty = NULL;
6308 isl_set_free(dom);
6309 isl_map_free(map);
6310 return NULL;
6311}
6312
6313#undef TYPE
6314#define TYPE isl_map
6315#undef SUFFIX
6316#define SUFFIX
6317#undef EMPTY
6318#define EMPTY isl_map_empty
6319#undef ADD
6320#define ADD isl_map_union_disjoint
6321#include "isl_map_lexopt_templ.c"
6322
6323/* Given a map "map", compute the lexicographically minimal
Michael Krusee0b34f32016-05-04 14:41:36 +00006324 * (or maximal) image element for each domain element in "dom",
6325 * in the form of an isl_map.
6326 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6327 * do not have an image element.
Tobias Grosser932ec012016-07-06 09:11:00 +00006328 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6329 * should be computed over the domain of "map". "empty" is also NULL
6330 * in this case.
Tobias Grosser52a25232015-02-04 20:55:43 +00006331 *
Michael Krusee0b34f32016-05-04 14:41:36 +00006332 * If the input consists of more than one disjunct, then first
6333 * compute the desired result in the form of an isl_pw_multi_aff and
6334 * then convert that into an isl_map.
Tobias Grosser52a25232015-02-04 20:55:43 +00006335 *
Michael Krusee0b34f32016-05-04 14:41:36 +00006336 * This function used to have an explicit implementation in terms
6337 * of isl_maps, but it would continually intersect the domains of
6338 * partial results with the complement of the domain of the next
6339 * partial solution, potentially leading to an explosion in the number
6340 * of disjuncts if there are several disjuncts in the input.
6341 * An even earlier implementation of this function would look for
6342 * better results in the domain of the partial result and for extra
6343 * results in the complement of this domain, which would lead to
6344 * even more splintering.
Tobias Grosser52a25232015-02-04 20:55:43 +00006345 */
6346static __isl_give isl_map *isl_map_partial_lexopt_aligned(
Tobias Grosser932ec012016-07-06 09:11:00 +00006347 __isl_take isl_map *map, __isl_take isl_set *dom,
6348 __isl_give isl_set **empty, unsigned flags)
Tobias Grosser52a25232015-02-04 20:55:43 +00006349{
Tobias Grosser932ec012016-07-06 09:11:00 +00006350 int full;
Tobias Grosser52a25232015-02-04 20:55:43 +00006351 struct isl_map *res;
Michael Krusee0b34f32016-05-04 14:41:36 +00006352 isl_pw_multi_aff *pma;
Tobias Grosser52a25232015-02-04 20:55:43 +00006353
Tobias Grosser932ec012016-07-06 09:11:00 +00006354 full = ISL_FL_ISSET(flags, ISL_OPT_FULL);
6355 if (!map || (!full && !dom))
Tobias Grosser52a25232015-02-04 20:55:43 +00006356 goto error;
6357
6358 if (isl_map_plain_is_empty(map)) {
6359 if (empty)
6360 *empty = dom;
6361 else
6362 isl_set_free(dom);
6363 return map;
6364 }
6365
Michael Krusee0b34f32016-05-04 14:41:36 +00006366 if (map->n == 1) {
6367 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
Tobias Grosser932ec012016-07-06 09:11:00 +00006368 dom, empty, flags);
Michael Krusee0b34f32016-05-04 14:41:36 +00006369 isl_map_free(map);
6370 return res;
Tobias Grosser52a25232015-02-04 20:55:43 +00006371 }
6372
Tobias Grosser932ec012016-07-06 09:11:00 +00006373 pma = isl_map_partial_lexopt_aligned_pw_multi_aff(map, dom, empty,
6374 flags);
Michael Krusee0b34f32016-05-04 14:41:36 +00006375 return isl_map_from_pw_multi_aff(pma);
Tobias Grosser52a25232015-02-04 20:55:43 +00006376error:
6377 if (empty)
6378 *empty = NULL;
6379 isl_set_free(dom);
6380 isl_map_free(map);
6381 return NULL;
6382}
6383
6384__isl_give isl_map *isl_map_partial_lexmax(
6385 __isl_take isl_map *map, __isl_take isl_set *dom,
6386 __isl_give isl_set **empty)
6387{
Tobias Grosser932ec012016-07-06 09:11:00 +00006388 return isl_map_partial_lexopt(map, dom, empty, ISL_OPT_MAX);
Tobias Grosser52a25232015-02-04 20:55:43 +00006389}
6390
6391__isl_give isl_map *isl_map_partial_lexmin(
6392 __isl_take isl_map *map, __isl_take isl_set *dom,
6393 __isl_give isl_set **empty)
6394{
6395 return isl_map_partial_lexopt(map, dom, empty, 0);
6396}
6397
6398__isl_give isl_set *isl_set_partial_lexmin(
6399 __isl_take isl_set *set, __isl_take isl_set *dom,
6400 __isl_give isl_set **empty)
6401{
Tobias Grosser06e15922016-11-16 11:06:47 +00006402 return set_from_map(isl_map_partial_lexmin(set_to_map(set),
6403 dom, empty));
Tobias Grosser52a25232015-02-04 20:55:43 +00006404}
6405
6406__isl_give isl_set *isl_set_partial_lexmax(
6407 __isl_take isl_set *set, __isl_take isl_set *dom,
6408 __isl_give isl_set **empty)
6409{
Tobias Grosser06e15922016-11-16 11:06:47 +00006410 return set_from_map(isl_map_partial_lexmax(set_to_map(set),
6411 dom, empty));
Tobias Grosser52a25232015-02-04 20:55:43 +00006412}
6413
Tobias Grosser932ec012016-07-06 09:11:00 +00006414/* Compute the lexicographic minimum (or maximum if "flags" includes
6415 * ISL_OPT_MAX) of "bset" over its parametric domain.
Tobias Grosser52a25232015-02-04 20:55:43 +00006416 */
Tobias Grosser932ec012016-07-06 09:11:00 +00006417__isl_give isl_set *isl_basic_set_lexopt(__isl_take isl_basic_set *bset,
6418 unsigned flags)
Tobias Grosser52a25232015-02-04 20:55:43 +00006419{
Tobias Grosser932ec012016-07-06 09:11:00 +00006420 return isl_basic_map_lexopt(bset, flags);
Tobias Grosser52a25232015-02-04 20:55:43 +00006421}
6422
6423__isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
6424{
Tobias Grosser932ec012016-07-06 09:11:00 +00006425 return isl_basic_map_lexopt(bmap, ISL_OPT_MAX);
Tobias Grosser52a25232015-02-04 20:55:43 +00006426}
6427
6428__isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
6429{
Tobias Grosser06e15922016-11-16 11:06:47 +00006430 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00006431}
6432
6433__isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
6434{
Tobias Grosser06e15922016-11-16 11:06:47 +00006435 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00006436}
6437
Tobias Grosser932ec012016-07-06 09:11:00 +00006438/* Compute the lexicographic minimum of "bset" over its parametric domain
6439 * for the purpose of quantifier elimination.
6440 * That is, find an explicit representation for all the existentially
6441 * quantified variables in "bset" by computing their lexicographic
6442 * minimum.
6443 */
6444static __isl_give isl_set *isl_basic_set_lexmin_compute_divs(
6445 __isl_take isl_basic_set *bset)
6446{
6447 return isl_basic_set_lexopt(bset, ISL_OPT_QE);
6448}
6449
Tobias Grosser52a25232015-02-04 20:55:43 +00006450/* Extract the first and only affine expression from list
6451 * and then add it to *pwaff with the given dom.
6452 * This domain is known to be disjoint from other domains
6453 * because of the way isl_basic_map_foreach_lexmax works.
6454 */
Tobias Grosser72745c22017-02-17 05:11:16 +00006455static isl_stat update_dim_opt(__isl_take isl_basic_set *dom,
Tobias Grosser52a25232015-02-04 20:55:43 +00006456 __isl_take isl_aff_list *list, void *user)
6457{
6458 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
6459 isl_aff *aff;
6460 isl_pw_aff **pwaff = user;
6461 isl_pw_aff *pwaff_i;
6462
6463 if (!list)
6464 goto error;
6465 if (isl_aff_list_n_aff(list) != 1)
6466 isl_die(ctx, isl_error_internal,
6467 "expecting single element list", goto error);
6468
6469 aff = isl_aff_list_get_aff(list, 0);
6470 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
6471
6472 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
6473
6474 isl_aff_list_free(list);
6475
Tobias Grosser72745c22017-02-17 05:11:16 +00006476 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00006477error:
6478 isl_basic_set_free(dom);
6479 isl_aff_list_free(list);
Tobias Grosser72745c22017-02-17 05:11:16 +00006480 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00006481}
6482
6483/* Given a basic map with one output dimension, compute the minimum or
6484 * maximum of that dimension as an isl_pw_aff.
6485 *
6486 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6487 * call update_dim_opt on each leaf of the result.
6488 */
6489static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
6490 int max)
6491{
6492 isl_space *dim = isl_basic_map_get_space(bmap);
6493 isl_pw_aff *pwaff;
Tobias Grosser72745c22017-02-17 05:11:16 +00006494 isl_stat r;
Tobias Grosser52a25232015-02-04 20:55:43 +00006495
6496 dim = isl_space_from_domain(isl_space_domain(dim));
6497 dim = isl_space_add_dims(dim, isl_dim_out, 1);
6498 pwaff = isl_pw_aff_empty(dim);
6499
6500 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
6501 if (r < 0)
6502 return isl_pw_aff_free(pwaff);
6503
6504 return pwaff;
6505}
6506
6507/* Compute the minimum or maximum of the given output dimension
6508 * as a function of the parameters and the input dimensions,
6509 * but independently of the other output dimensions.
6510 *
6511 * We first project out the other output dimension and then compute
6512 * the "lexicographic" maximum in each basic map, combining the results
6513 * using isl_pw_aff_union_max.
6514 */
6515static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
6516 int max)
6517{
6518 int i;
6519 isl_pw_aff *pwaff;
6520 unsigned n_out;
6521
6522 n_out = isl_map_dim(map, isl_dim_out);
6523 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
6524 map = isl_map_project_out(map, isl_dim_out, 0, pos);
6525 if (!map)
6526 return NULL;
6527
6528 if (map->n == 0) {
6529 isl_space *dim = isl_map_get_space(map);
6530 isl_map_free(map);
6531 return isl_pw_aff_empty(dim);
6532 }
6533
6534 pwaff = basic_map_dim_opt(map->p[0], max);
6535 for (i = 1; i < map->n; ++i) {
6536 isl_pw_aff *pwaff_i;
6537
6538 pwaff_i = basic_map_dim_opt(map->p[i], max);
6539 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6540 }
6541
6542 isl_map_free(map);
6543
6544 return pwaff;
6545}
6546
Tobias Grosser932ec012016-07-06 09:11:00 +00006547/* Compute the minimum of the given output dimension as a function of the
6548 * parameters and input dimensions, but independently of
6549 * the other output dimensions.
6550 */
6551__isl_give isl_pw_aff *isl_map_dim_min(__isl_take isl_map *map, int pos)
6552{
6553 return map_dim_opt(map, pos, 0);
6554}
6555
Tobias Grosser52a25232015-02-04 20:55:43 +00006556/* Compute the maximum of the given output dimension as a function of the
6557 * parameters and input dimensions, but independently of
6558 * the other output dimensions.
6559 */
6560__isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6561{
6562 return map_dim_opt(map, pos, 1);
6563}
6564
6565/* Compute the minimum or maximum of the given set dimension
6566 * as a function of the parameters,
6567 * but independently of the other set dimensions.
6568 */
6569static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6570 int max)
6571{
6572 return map_dim_opt(set, pos, max);
6573}
6574
6575/* Compute the maximum of the given set dimension as a function of the
6576 * parameters, but independently of the other set dimensions.
6577 */
6578__isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6579{
6580 return set_dim_opt(set, pos, 1);
6581}
6582
6583/* Compute the minimum of the given set dimension as a function of the
6584 * parameters, but independently of the other set dimensions.
6585 */
6586__isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6587{
6588 return set_dim_opt(set, pos, 0);
6589}
6590
6591/* Apply a preimage specified by "mat" on the parameters of "bset".
6592 * bset is assumed to have only parameters and divs.
6593 */
6594static struct isl_basic_set *basic_set_parameter_preimage(
6595 struct isl_basic_set *bset, struct isl_mat *mat)
6596{
6597 unsigned nparam;
6598
6599 if (!bset || !mat)
6600 goto error;
6601
6602 bset->dim = isl_space_cow(bset->dim);
6603 if (!bset->dim)
6604 goto error;
6605
6606 nparam = isl_basic_set_dim(bset, isl_dim_param);
6607
6608 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6609
6610 bset->dim->nparam = 0;
6611 bset->dim->n_out = nparam;
6612 bset = isl_basic_set_preimage(bset, mat);
6613 if (bset) {
6614 bset->dim->nparam = bset->dim->n_out;
6615 bset->dim->n_out = 0;
6616 }
6617 return bset;
6618error:
6619 isl_mat_free(mat);
6620 isl_basic_set_free(bset);
6621 return NULL;
6622}
6623
6624/* Apply a preimage specified by "mat" on the parameters of "set".
6625 * set is assumed to have only parameters and divs.
6626 */
Tobias Grosser37034db2016-03-25 19:38:18 +00006627static __isl_give isl_set *set_parameter_preimage(__isl_take isl_set *set,
6628 __isl_take isl_mat *mat)
Tobias Grosser52a25232015-02-04 20:55:43 +00006629{
Tobias Grosser37034db2016-03-25 19:38:18 +00006630 isl_space *space;
Tobias Grosser52a25232015-02-04 20:55:43 +00006631 unsigned nparam;
6632
6633 if (!set || !mat)
6634 goto error;
6635
Tobias Grosser52a25232015-02-04 20:55:43 +00006636 nparam = isl_set_dim(set, isl_dim_param);
6637
Tobias Grosser37034db2016-03-25 19:38:18 +00006638 if (mat->n_row != 1 + nparam)
6639 isl_die(isl_set_get_ctx(set), isl_error_internal,
6640 "unexpected number of rows", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +00006641
Tobias Grosser37034db2016-03-25 19:38:18 +00006642 space = isl_set_get_space(set);
6643 space = isl_space_move_dims(space, isl_dim_set, 0,
6644 isl_dim_param, 0, nparam);
6645 set = isl_set_reset_space(set, space);
Tobias Grosser52a25232015-02-04 20:55:43 +00006646 set = isl_set_preimage(set, mat);
Tobias Grosser37034db2016-03-25 19:38:18 +00006647 nparam = isl_set_dim(set, isl_dim_out);
6648 space = isl_set_get_space(set);
6649 space = isl_space_move_dims(space, isl_dim_param, 0,
6650 isl_dim_out, 0, nparam);
6651 set = isl_set_reset_space(set, space);
Tobias Grosser52a25232015-02-04 20:55:43 +00006652 return set;
6653error:
Tobias Grosser52a25232015-02-04 20:55:43 +00006654 isl_mat_free(mat);
Tobias Grosser52a25232015-02-04 20:55:43 +00006655 isl_set_free(set);
6656 return NULL;
6657}
6658
6659/* Intersect the basic set "bset" with the affine space specified by the
6660 * equalities in "eq".
6661 */
6662static struct isl_basic_set *basic_set_append_equalities(
6663 struct isl_basic_set *bset, struct isl_mat *eq)
6664{
6665 int i, k;
6666 unsigned len;
6667
6668 if (!bset || !eq)
6669 goto error;
6670
6671 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
6672 eq->n_row, 0);
6673 if (!bset)
6674 goto error;
6675
6676 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
6677 for (i = 0; i < eq->n_row; ++i) {
6678 k = isl_basic_set_alloc_equality(bset);
6679 if (k < 0)
6680 goto error;
6681 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
6682 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
6683 }
6684 isl_mat_free(eq);
6685
6686 bset = isl_basic_set_gauss(bset, NULL);
6687 bset = isl_basic_set_finalize(bset);
6688
6689 return bset;
6690error:
6691 isl_mat_free(eq);
6692 isl_basic_set_free(bset);
6693 return NULL;
6694}
6695
6696/* Intersect the set "set" with the affine space specified by the
6697 * equalities in "eq".
6698 */
6699static struct isl_set *set_append_equalities(struct isl_set *set,
6700 struct isl_mat *eq)
6701{
6702 int i;
6703
6704 if (!set || !eq)
6705 goto error;
6706
6707 for (i = 0; i < set->n; ++i) {
6708 set->p[i] = basic_set_append_equalities(set->p[i],
6709 isl_mat_copy(eq));
6710 if (!set->p[i])
6711 goto error;
6712 }
6713 isl_mat_free(eq);
6714 return set;
6715error:
6716 isl_mat_free(eq);
6717 isl_set_free(set);
6718 return NULL;
6719}
6720
6721/* Given a basic set "bset" that only involves parameters and existentially
6722 * quantified variables, return the index of the first equality
6723 * that only involves parameters. If there is no such equality then
6724 * return bset->n_eq.
6725 *
6726 * This function assumes that isl_basic_set_gauss has been called on "bset".
6727 */
6728static int first_parameter_equality(__isl_keep isl_basic_set *bset)
6729{
6730 int i, j;
6731 unsigned nparam, n_div;
6732
6733 if (!bset)
6734 return -1;
6735
6736 nparam = isl_basic_set_dim(bset, isl_dim_param);
6737 n_div = isl_basic_set_dim(bset, isl_dim_div);
6738
6739 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
6740 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
6741 ++i;
6742 }
6743
6744 return i;
6745}
6746
6747/* Compute an explicit representation for the existentially quantified
6748 * variables in "bset" by computing the "minimal value" of the set
6749 * variables. Since there are no set variables, the computation of
6750 * the minimal value essentially computes an explicit representation
6751 * of the non-empty part(s) of "bset".
6752 *
6753 * The input only involves parameters and existentially quantified variables.
6754 * All equalities among parameters have been removed.
6755 *
6756 * Since the existentially quantified variables in the result are in general
6757 * going to be different from those in the input, we first replace
6758 * them by the minimal number of variables based on their equalities.
6759 * This should simplify the parametric integer programming.
6760 */
6761static __isl_give isl_set *base_compute_divs(__isl_take isl_basic_set *bset)
6762{
6763 isl_morph *morph1, *morph2;
6764 isl_set *set;
6765 unsigned n;
6766
6767 if (!bset)
6768 return NULL;
6769 if (bset->n_eq == 0)
Tobias Grosser932ec012016-07-06 09:11:00 +00006770 return isl_basic_set_lexmin_compute_divs(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00006771
6772 morph1 = isl_basic_set_parameter_compression(bset);
6773 bset = isl_morph_basic_set(isl_morph_copy(morph1), bset);
6774 bset = isl_basic_set_lift(bset);
6775 morph2 = isl_basic_set_variable_compression(bset, isl_dim_set);
6776 bset = isl_morph_basic_set(morph2, bset);
6777 n = isl_basic_set_dim(bset, isl_dim_set);
6778 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
6779
Tobias Grosser932ec012016-07-06 09:11:00 +00006780 set = isl_basic_set_lexmin_compute_divs(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00006781
6782 set = isl_morph_set(isl_morph_inverse(morph1), set);
6783
6784 return set;
6785}
6786
6787/* Project the given basic set onto its parameter domain, possibly introducing
6788 * new, explicit, existential variables in the constraints.
6789 * The input has parameters and (possibly implicit) existential variables.
6790 * The output has the same parameters, but only
6791 * explicit existentially quantified variables.
6792 *
6793 * The actual projection is performed by pip, but pip doesn't seem
6794 * to like equalities very much, so we first remove the equalities
6795 * among the parameters by performing a variable compression on
6796 * the parameters. Afterward, an inverse transformation is performed
6797 * and the equalities among the parameters are inserted back in.
6798 *
6799 * The variable compression on the parameters may uncover additional
6800 * equalities that were only implicit before. We therefore check
6801 * if there are any new parameter equalities in the result and
6802 * if so recurse. The removal of parameter equalities is required
6803 * for the parameter compression performed by base_compute_divs.
6804 */
6805static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
6806{
6807 int i;
6808 struct isl_mat *eq;
6809 struct isl_mat *T, *T2;
6810 struct isl_set *set;
6811 unsigned nparam;
6812
6813 bset = isl_basic_set_cow(bset);
6814 if (!bset)
6815 return NULL;
6816
6817 if (bset->n_eq == 0)
6818 return base_compute_divs(bset);
6819
6820 bset = isl_basic_set_gauss(bset, NULL);
6821 if (!bset)
6822 return NULL;
6823 if (isl_basic_set_plain_is_empty(bset))
6824 return isl_set_from_basic_set(bset);
6825
6826 i = first_parameter_equality(bset);
6827 if (i == bset->n_eq)
6828 return base_compute_divs(bset);
6829
6830 nparam = isl_basic_set_dim(bset, isl_dim_param);
6831 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
6832 0, 1 + nparam);
6833 eq = isl_mat_cow(eq);
6834 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
6835 if (T && T->n_col == 0) {
6836 isl_mat_free(T);
6837 isl_mat_free(T2);
6838 isl_mat_free(eq);
6839 bset = isl_basic_set_set_to_empty(bset);
6840 return isl_set_from_basic_set(bset);
6841 }
6842 bset = basic_set_parameter_preimage(bset, T);
6843
6844 i = first_parameter_equality(bset);
6845 if (!bset)
6846 set = NULL;
6847 else if (i == bset->n_eq)
6848 set = base_compute_divs(bset);
6849 else
6850 set = parameter_compute_divs(bset);
6851 set = set_parameter_preimage(set, T2);
6852 set = set_append_equalities(set, eq);
6853 return set;
6854}
6855
6856/* Insert the divs from "ls" before those of "bmap".
6857 *
6858 * The number of columns is not changed, which means that the last
6859 * dimensions of "bmap" are being reintepreted as the divs from "ls".
6860 * The caller is responsible for removing the same number of dimensions
6861 * from the space of "bmap".
6862 */
6863static __isl_give isl_basic_map *insert_divs_from_local_space(
6864 __isl_take isl_basic_map *bmap, __isl_keep isl_local_space *ls)
6865{
6866 int i;
6867 int n_div;
6868 int old_n_div;
6869
6870 n_div = isl_local_space_dim(ls, isl_dim_div);
6871 if (n_div == 0)
6872 return bmap;
6873
6874 old_n_div = bmap->n_div;
6875 bmap = insert_div_rows(bmap, n_div);
6876 if (!bmap)
6877 return NULL;
6878
6879 for (i = 0; i < n_div; ++i) {
6880 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
6881 isl_seq_clr(bmap->div[i] + ls->div->n_col, old_n_div);
6882 }
6883
6884 return bmap;
6885}
6886
6887/* Replace the space of "bmap" by the space and divs of "ls".
6888 *
6889 * If "ls" has any divs, then we simplify the result since we may
6890 * have discovered some additional equalities that could simplify
6891 * the div expressions.
6892 */
6893static __isl_give isl_basic_map *basic_replace_space_by_local_space(
6894 __isl_take isl_basic_map *bmap, __isl_take isl_local_space *ls)
6895{
6896 int n_div;
6897
6898 bmap = isl_basic_map_cow(bmap);
6899 if (!bmap || !ls)
6900 goto error;
6901
6902 n_div = isl_local_space_dim(ls, isl_dim_div);
6903 bmap = insert_divs_from_local_space(bmap, ls);
6904 if (!bmap)
6905 goto error;
6906
6907 isl_space_free(bmap->dim);
6908 bmap->dim = isl_local_space_get_space(ls);
6909 if (!bmap->dim)
6910 goto error;
6911
6912 isl_local_space_free(ls);
6913 if (n_div > 0)
6914 bmap = isl_basic_map_simplify(bmap);
6915 bmap = isl_basic_map_finalize(bmap);
6916 return bmap;
6917error:
6918 isl_basic_map_free(bmap);
6919 isl_local_space_free(ls);
6920 return NULL;
6921}
6922
6923/* Replace the space of "map" by the space and divs of "ls".
6924 */
6925static __isl_give isl_map *replace_space_by_local_space(__isl_take isl_map *map,
6926 __isl_take isl_local_space *ls)
6927{
6928 int i;
6929
6930 map = isl_map_cow(map);
6931 if (!map || !ls)
6932 goto error;
6933
6934 for (i = 0; i < map->n; ++i) {
6935 map->p[i] = basic_replace_space_by_local_space(map->p[i],
6936 isl_local_space_copy(ls));
6937 if (!map->p[i])
6938 goto error;
6939 }
6940 isl_space_free(map->dim);
6941 map->dim = isl_local_space_get_space(ls);
6942 if (!map->dim)
6943 goto error;
6944
6945 isl_local_space_free(ls);
6946 return map;
6947error:
6948 isl_local_space_free(ls);
6949 isl_map_free(map);
6950 return NULL;
6951}
6952
6953/* Compute an explicit representation for the existentially
6954 * quantified variables for which do not know any explicit representation yet.
6955 *
6956 * We first sort the existentially quantified variables so that the
6957 * existentially quantified variables for which we already have an explicit
6958 * representation are placed before those for which we do not.
6959 * The input dimensions, the output dimensions and the existentially
6960 * quantified variables for which we already have an explicit
6961 * representation are then turned into parameters.
6962 * compute_divs returns a map with the same parameters and
6963 * no input or output dimensions and the dimension specification
6964 * is reset to that of the input, including the existentially quantified
6965 * variables for which we already had an explicit representation.
6966 */
6967static struct isl_map *compute_divs(struct isl_basic_map *bmap)
6968{
6969 struct isl_basic_set *bset;
6970 struct isl_set *set;
6971 struct isl_map *map;
6972 isl_space *dim;
6973 isl_local_space *ls;
6974 unsigned nparam;
6975 unsigned n_in;
6976 unsigned n_out;
Tobias Grosser37034db2016-03-25 19:38:18 +00006977 int n_known;
Tobias Grosser52a25232015-02-04 20:55:43 +00006978 int i;
6979
6980 bmap = isl_basic_map_sort_divs(bmap);
6981 bmap = isl_basic_map_cow(bmap);
6982 if (!bmap)
6983 return NULL;
6984
Tobias Grosser37034db2016-03-25 19:38:18 +00006985 n_known = isl_basic_map_first_unknown_div(bmap);
6986 if (n_known < 0)
6987 return isl_map_from_basic_map(isl_basic_map_free(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00006988
6989 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6990 n_in = isl_basic_map_dim(bmap, isl_dim_in);
6991 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6992 dim = isl_space_set_alloc(bmap->ctx,
6993 nparam + n_in + n_out + n_known, 0);
6994 if (!dim)
6995 goto error;
6996
6997 ls = isl_basic_map_get_local_space(bmap);
6998 ls = isl_local_space_drop_dims(ls, isl_dim_div,
6999 n_known, bmap->n_div - n_known);
7000 if (n_known > 0) {
7001 for (i = n_known; i < bmap->n_div; ++i)
7002 swap_div(bmap, i - n_known, i);
7003 bmap->n_div -= n_known;
7004 bmap->extra -= n_known;
7005 }
7006 bmap = isl_basic_map_reset_space(bmap, dim);
Tobias Grosser06e15922016-11-16 11:06:47 +00007007 bset = bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00007008
7009 set = parameter_compute_divs(bset);
Tobias Grosser06e15922016-11-16 11:06:47 +00007010 map = set_to_map(set);
Tobias Grosser52a25232015-02-04 20:55:43 +00007011 map = replace_space_by_local_space(map, ls);
7012
7013 return map;
7014error:
7015 isl_basic_map_free(bmap);
7016 return NULL;
7017}
7018
Tobias Grosser37034db2016-03-25 19:38:18 +00007019/* Remove the explicit representation of local variable "div",
7020 * if there is any.
7021 */
7022__isl_give isl_basic_map *isl_basic_map_mark_div_unknown(
7023 __isl_take isl_basic_map *bmap, int div)
7024{
Tobias Grosser932ec012016-07-06 09:11:00 +00007025 isl_bool unknown;
Tobias Grosser37034db2016-03-25 19:38:18 +00007026
Tobias Grosser932ec012016-07-06 09:11:00 +00007027 unknown = isl_basic_map_div_is_marked_unknown(bmap, div);
7028 if (unknown < 0)
Tobias Grosser37034db2016-03-25 19:38:18 +00007029 return isl_basic_map_free(bmap);
Tobias Grosser932ec012016-07-06 09:11:00 +00007030 if (unknown)
Tobias Grosser37034db2016-03-25 19:38:18 +00007031 return bmap;
7032
7033 bmap = isl_basic_map_cow(bmap);
7034 if (!bmap)
7035 return NULL;
7036 isl_int_set_si(bmap->div[div][0], 0);
7037 return bmap;
7038}
7039
Tobias Grosser932ec012016-07-06 09:11:00 +00007040/* Is local variable "div" of "bmap" marked as not having an explicit
7041 * representation?
7042 * Note that even if "div" is not marked in this way and therefore
7043 * has an explicit representation, this representation may still
7044 * depend (indirectly) on other local variables that do not
7045 * have an explicit representation.
Michael Kruse959a8dc2016-01-15 15:54:45 +00007046 */
Tobias Grosser932ec012016-07-06 09:11:00 +00007047isl_bool isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map *bmap,
7048 int div)
Michael Kruse959a8dc2016-01-15 15:54:45 +00007049{
Tobias Grosser94e53712016-12-31 07:46:11 +00007050 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
Michael Kruse959a8dc2016-01-15 15:54:45 +00007051 return isl_bool_error;
Tobias Grosser932ec012016-07-06 09:11:00 +00007052 return isl_int_is_zero(bmap->div[div][0]);
Michael Kruse959a8dc2016-01-15 15:54:45 +00007053}
7054
Tobias Grosser37034db2016-03-25 19:38:18 +00007055/* Return the position of the first local variable that does not
7056 * have an explicit representation.
7057 * Return the total number of local variables if they all have
7058 * an explicit representation.
7059 * Return -1 on error.
7060 */
7061int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map *bmap)
7062{
7063 int i;
7064
7065 if (!bmap)
7066 return -1;
7067
7068 for (i = 0; i < bmap->n_div; ++i) {
7069 if (!isl_basic_map_div_is_known(bmap, i))
7070 return i;
7071 }
7072 return bmap->n_div;
7073}
7074
Tobias Grosser9ec4f952016-07-20 16:53:07 +00007075/* Return the position of the first local variable that does not
7076 * have an explicit representation.
7077 * Return the total number of local variables if they all have
7078 * an explicit representation.
7079 * Return -1 on error.
7080 */
7081int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set *bset)
7082{
7083 return isl_basic_map_first_unknown_div(bset);
7084}
7085
Michael Kruse959a8dc2016-01-15 15:54:45 +00007086/* Does "bmap" have an explicit representation for all local variables?
7087 */
7088isl_bool isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00007089{
Tobias Grosser37034db2016-03-25 19:38:18 +00007090 int first, n;
Tobias Grosser52a25232015-02-04 20:55:43 +00007091
Tobias Grosser37034db2016-03-25 19:38:18 +00007092 n = isl_basic_map_dim(bmap, isl_dim_div);
7093 first = isl_basic_map_first_unknown_div(bmap);
7094 if (first < 0)
Michael Kruse959a8dc2016-01-15 15:54:45 +00007095 return isl_bool_error;
Tobias Grosser37034db2016-03-25 19:38:18 +00007096 return first == n;
Tobias Grosser52a25232015-02-04 20:55:43 +00007097}
7098
Michael Kruse959a8dc2016-01-15 15:54:45 +00007099/* Do all basic maps in "map" have an explicit representation
7100 * for all local variables?
7101 */
7102isl_bool isl_map_divs_known(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00007103{
7104 int i;
7105
7106 if (!map)
Michael Kruse959a8dc2016-01-15 15:54:45 +00007107 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007108
7109 for (i = 0; i < map->n; ++i) {
7110 int known = isl_basic_map_divs_known(map->p[i]);
7111 if (known <= 0)
7112 return known;
7113 }
7114
Michael Kruse959a8dc2016-01-15 15:54:45 +00007115 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00007116}
7117
7118/* If bmap contains any unknown divs, then compute explicit
7119 * expressions for them. However, this computation may be
7120 * quite expensive, so first try to remove divs that aren't
7121 * strictly needed.
7122 */
7123struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
7124{
7125 int known;
7126 struct isl_map *map;
7127
7128 known = isl_basic_map_divs_known(bmap);
7129 if (known < 0)
7130 goto error;
7131 if (known)
7132 return isl_map_from_basic_map(bmap);
7133
7134 bmap = isl_basic_map_drop_redundant_divs(bmap);
7135
7136 known = isl_basic_map_divs_known(bmap);
7137 if (known < 0)
7138 goto error;
7139 if (known)
7140 return isl_map_from_basic_map(bmap);
7141
7142 map = compute_divs(bmap);
7143 return map;
7144error:
7145 isl_basic_map_free(bmap);
7146 return NULL;
7147}
7148
7149struct isl_map *isl_map_compute_divs(struct isl_map *map)
7150{
7151 int i;
7152 int known;
7153 struct isl_map *res;
7154
7155 if (!map)
7156 return NULL;
7157 if (map->n == 0)
7158 return map;
7159
Michael Kruse959a8dc2016-01-15 15:54:45 +00007160 known = isl_map_divs_known(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00007161 if (known < 0) {
7162 isl_map_free(map);
7163 return NULL;
7164 }
7165 if (known)
7166 return map;
7167
7168 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
7169 for (i = 1 ; i < map->n; ++i) {
7170 struct isl_map *r2;
7171 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
7172 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
7173 res = isl_map_union_disjoint(res, r2);
7174 else
7175 res = isl_map_union(res, r2);
7176 }
7177 isl_map_free(map);
7178
7179 return res;
7180}
7181
7182struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
7183{
Tobias Grosser06e15922016-11-16 11:06:47 +00007184 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00007185}
7186
7187struct isl_set *isl_set_compute_divs(struct isl_set *set)
7188{
Tobias Grosser06e15922016-11-16 11:06:47 +00007189 return set_from_map(isl_map_compute_divs(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00007190}
7191
7192struct isl_set *isl_map_domain(struct isl_map *map)
7193{
7194 int i;
7195 struct isl_set *set;
7196
7197 if (!map)
7198 goto error;
7199
7200 map = isl_map_cow(map);
7201 if (!map)
7202 return NULL;
7203
Tobias Grosser06e15922016-11-16 11:06:47 +00007204 set = set_from_map(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00007205 set->dim = isl_space_domain(set->dim);
7206 if (!set->dim)
7207 goto error;
7208 for (i = 0; i < map->n; ++i) {
7209 set->p[i] = isl_basic_map_domain(map->p[i]);
7210 if (!set->p[i])
7211 goto error;
7212 }
7213 ISL_F_CLR(set, ISL_MAP_DISJOINT);
7214 ISL_F_CLR(set, ISL_SET_NORMALIZED);
7215 return set;
7216error:
7217 isl_map_free(map);
7218 return NULL;
7219}
7220
7221/* Return the union of "map1" and "map2", where we assume for now that
7222 * "map1" and "map2" are disjoint. Note that the basic maps inside
7223 * "map1" or "map2" may not be disjoint from each other.
7224 * Also note that this function is also called from isl_map_union,
7225 * which takes care of handling the situation where "map1" and "map2"
7226 * may not be disjoint.
7227 *
7228 * If one of the inputs is empty, we can simply return the other input.
7229 * Similarly, if one of the inputs is universal, then it is equal to the union.
7230 */
7231static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
7232 __isl_take isl_map *map2)
7233{
7234 int i;
7235 unsigned flags = 0;
7236 struct isl_map *map = NULL;
7237 int is_universe;
7238
7239 if (!map1 || !map2)
7240 goto error;
7241
7242 if (!isl_space_is_equal(map1->dim, map2->dim))
7243 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
7244 "spaces don't match", goto error);
7245
7246 if (map1->n == 0) {
7247 isl_map_free(map1);
7248 return map2;
7249 }
7250 if (map2->n == 0) {
7251 isl_map_free(map2);
7252 return map1;
7253 }
7254
7255 is_universe = isl_map_plain_is_universe(map1);
7256 if (is_universe < 0)
7257 goto error;
7258 if (is_universe) {
7259 isl_map_free(map2);
7260 return map1;
7261 }
7262
7263 is_universe = isl_map_plain_is_universe(map2);
7264 if (is_universe < 0)
7265 goto error;
7266 if (is_universe) {
7267 isl_map_free(map1);
7268 return map2;
7269 }
7270
7271 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
7272 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
7273 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7274
7275 map = isl_map_alloc_space(isl_space_copy(map1->dim),
7276 map1->n + map2->n, flags);
7277 if (!map)
7278 goto error;
7279 for (i = 0; i < map1->n; ++i) {
7280 map = isl_map_add_basic_map(map,
7281 isl_basic_map_copy(map1->p[i]));
7282 if (!map)
7283 goto error;
7284 }
7285 for (i = 0; i < map2->n; ++i) {
7286 map = isl_map_add_basic_map(map,
7287 isl_basic_map_copy(map2->p[i]));
7288 if (!map)
7289 goto error;
7290 }
7291 isl_map_free(map1);
7292 isl_map_free(map2);
7293 return map;
7294error:
7295 isl_map_free(map);
7296 isl_map_free(map1);
7297 isl_map_free(map2);
7298 return NULL;
7299}
7300
7301/* Return the union of "map1" and "map2", where "map1" and "map2" are
7302 * guaranteed to be disjoint by the caller.
7303 *
7304 * Note that this functions is called from within isl_map_make_disjoint,
7305 * so we have to be careful not to touch the constraints of the inputs
7306 * in any way.
7307 */
7308__isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
7309 __isl_take isl_map *map2)
7310{
7311 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
7312}
7313
7314/* Return the union of "map1" and "map2", where "map1" and "map2" may
7315 * not be disjoint. The parameters are assumed to have been aligned.
7316 *
7317 * We currently simply call map_union_disjoint, the internal operation
7318 * of which does not really depend on the inputs being disjoint.
7319 * If the result contains more than one basic map, then we clear
7320 * the disjoint flag since the result may contain basic maps from
7321 * both inputs and these are not guaranteed to be disjoint.
7322 *
7323 * As a special case, if "map1" and "map2" are obviously equal,
7324 * then we simply return "map1".
7325 */
7326static __isl_give isl_map *map_union_aligned(__isl_take isl_map *map1,
7327 __isl_take isl_map *map2)
7328{
7329 int equal;
7330
7331 if (!map1 || !map2)
7332 goto error;
7333
7334 equal = isl_map_plain_is_equal(map1, map2);
7335 if (equal < 0)
7336 goto error;
7337 if (equal) {
7338 isl_map_free(map2);
7339 return map1;
7340 }
7341
7342 map1 = map_union_disjoint(map1, map2);
7343 if (!map1)
7344 return NULL;
7345 if (map1->n > 1)
7346 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
7347 return map1;
7348error:
7349 isl_map_free(map1);
7350 isl_map_free(map2);
7351 return NULL;
7352}
7353
7354/* Return the union of "map1" and "map2", where "map1" and "map2" may
7355 * not be disjoint.
7356 */
7357__isl_give isl_map *isl_map_union(__isl_take isl_map *map1,
7358 __isl_take isl_map *map2)
7359{
7360 return isl_map_align_params_map_map_and(map1, map2, &map_union_aligned);
7361}
7362
7363struct isl_set *isl_set_union_disjoint(
7364 struct isl_set *set1, struct isl_set *set2)
7365{
Tobias Grosser06e15922016-11-16 11:06:47 +00007366 return set_from_map(isl_map_union_disjoint(set_to_map(set1),
7367 set_to_map(set2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00007368}
7369
7370struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
7371{
Tobias Grosser06e15922016-11-16 11:06:47 +00007372 return set_from_map(isl_map_union(set_to_map(set1), set_to_map(set2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00007373}
7374
7375/* Apply "fn" to pairs of elements from "map" and "set" and collect
7376 * the results.
7377 *
7378 * "map" and "set" are assumed to be compatible and non-NULL.
7379 */
7380static __isl_give isl_map *map_intersect_set(__isl_take isl_map *map,
7381 __isl_take isl_set *set,
7382 __isl_give isl_basic_map *fn(__isl_take isl_basic_map *bmap,
7383 __isl_take isl_basic_set *bset))
7384{
7385 unsigned flags = 0;
7386 struct isl_map *result;
7387 int i, j;
7388
7389 if (isl_set_plain_is_universe(set)) {
7390 isl_set_free(set);
7391 return map;
7392 }
7393
7394 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
7395 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
7396 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
7397
7398 result = isl_map_alloc_space(isl_space_copy(map->dim),
7399 map->n * set->n, flags);
7400 for (i = 0; result && i < map->n; ++i)
7401 for (j = 0; j < set->n; ++j) {
7402 result = isl_map_add_basic_map(result,
7403 fn(isl_basic_map_copy(map->p[i]),
7404 isl_basic_set_copy(set->p[j])));
7405 if (!result)
7406 break;
7407 }
7408
7409 isl_map_free(map);
7410 isl_set_free(set);
7411 return result;
7412}
7413
7414static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
7415 __isl_take isl_set *set)
7416{
Tobias Grosser72745c22017-02-17 05:11:16 +00007417 isl_bool ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00007418
Tobias Grosser72745c22017-02-17 05:11:16 +00007419 ok = isl_map_compatible_range(map, set);
7420 if (ok < 0)
7421 goto error;
7422 if (!ok)
Tobias Grosser52a25232015-02-04 20:55:43 +00007423 isl_die(set->ctx, isl_error_invalid,
7424 "incompatible spaces", goto error);
7425
7426 return map_intersect_set(map, set, &isl_basic_map_intersect_range);
7427error:
7428 isl_map_free(map);
7429 isl_set_free(set);
7430 return NULL;
7431}
7432
7433__isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
7434 __isl_take isl_set *set)
7435{
7436 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
7437}
7438
7439static __isl_give isl_map *map_intersect_domain(__isl_take isl_map *map,
7440 __isl_take isl_set *set)
7441{
Tobias Grosser72745c22017-02-17 05:11:16 +00007442 isl_bool ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00007443
Tobias Grosser72745c22017-02-17 05:11:16 +00007444 ok = isl_map_compatible_domain(map, set);
7445 if (ok < 0)
7446 goto error;
7447 if (!ok)
Tobias Grosser52a25232015-02-04 20:55:43 +00007448 isl_die(set->ctx, isl_error_invalid,
7449 "incompatible spaces", goto error);
7450
7451 return map_intersect_set(map, set, &isl_basic_map_intersect_domain);
7452error:
7453 isl_map_free(map);
7454 isl_set_free(set);
7455 return NULL;
7456}
7457
7458__isl_give isl_map *isl_map_intersect_domain(__isl_take isl_map *map,
7459 __isl_take isl_set *set)
7460{
7461 return isl_map_align_params_map_map_and(map, set,
7462 &map_intersect_domain);
7463}
7464
7465static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
7466 __isl_take isl_map *map2)
7467{
7468 if (!map1 || !map2)
7469 goto error;
7470 map1 = isl_map_reverse(map1);
7471 map1 = isl_map_apply_range(map1, map2);
7472 return isl_map_reverse(map1);
7473error:
7474 isl_map_free(map1);
7475 isl_map_free(map2);
7476 return NULL;
7477}
7478
7479__isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
7480 __isl_take isl_map *map2)
7481{
7482 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
7483}
7484
7485static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
7486 __isl_take isl_map *map2)
7487{
7488 isl_space *dim_result;
7489 struct isl_map *result;
7490 int i, j;
7491
7492 if (!map1 || !map2)
7493 goto error;
7494
7495 dim_result = isl_space_join(isl_space_copy(map1->dim),
7496 isl_space_copy(map2->dim));
7497
7498 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
7499 if (!result)
7500 goto error;
7501 for (i = 0; i < map1->n; ++i)
7502 for (j = 0; j < map2->n; ++j) {
7503 result = isl_map_add_basic_map(result,
7504 isl_basic_map_apply_range(
7505 isl_basic_map_copy(map1->p[i]),
7506 isl_basic_map_copy(map2->p[j])));
7507 if (!result)
7508 goto error;
7509 }
7510 isl_map_free(map1);
7511 isl_map_free(map2);
7512 if (result && result->n <= 1)
7513 ISL_F_SET(result, ISL_MAP_DISJOINT);
7514 return result;
7515error:
7516 isl_map_free(map1);
7517 isl_map_free(map2);
7518 return NULL;
7519}
7520
7521__isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
7522 __isl_take isl_map *map2)
7523{
7524 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
7525}
7526
7527/*
7528 * returns range - domain
7529 */
7530struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
7531{
Tobias Grosserb2f39922015-05-28 13:32:11 +00007532 isl_space *target_space;
Tobias Grosser52a25232015-02-04 20:55:43 +00007533 struct isl_basic_set *bset;
7534 unsigned dim;
7535 unsigned nparam;
7536 int i;
7537
7538 if (!bmap)
7539 goto error;
7540 isl_assert(bmap->ctx, isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7541 bmap->dim, isl_dim_out),
7542 goto error);
Tobias Grosserb2f39922015-05-28 13:32:11 +00007543 target_space = isl_space_domain(isl_basic_map_get_space(bmap));
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00007544 dim = isl_basic_map_dim(bmap, isl_dim_in);
7545 nparam = isl_basic_map_dim(bmap, isl_dim_param);
Tobias Grosserb2f39922015-05-28 13:32:11 +00007546 bmap = isl_basic_map_from_range(isl_basic_map_wrap(bmap));
7547 bmap = isl_basic_map_add_dims(bmap, isl_dim_in, dim);
7548 bmap = isl_basic_map_extend_constraints(bmap, dim, 0);
Tobias Grosser52a25232015-02-04 20:55:43 +00007549 for (i = 0; i < dim; ++i) {
Tobias Grosserb2f39922015-05-28 13:32:11 +00007550 int j = isl_basic_map_alloc_equality(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00007551 if (j < 0) {
Tobias Grosserb2f39922015-05-28 13:32:11 +00007552 bmap = isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00007553 break;
7554 }
Tobias Grosserb2f39922015-05-28 13:32:11 +00007555 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7556 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7557 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], 1);
7558 isl_int_set_si(bmap->eq[j][1+nparam+2*dim+i], -1);
Tobias Grosser52a25232015-02-04 20:55:43 +00007559 }
Tobias Grosserb2f39922015-05-28 13:32:11 +00007560 bset = isl_basic_map_domain(bmap);
7561 bset = isl_basic_set_reset_space(bset, target_space);
Tobias Grosser52a25232015-02-04 20:55:43 +00007562 return bset;
7563error:
7564 isl_basic_map_free(bmap);
7565 return NULL;
7566}
7567
7568/*
7569 * returns range - domain
7570 */
7571__isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
7572{
7573 int i;
7574 isl_space *dim;
7575 struct isl_set *result;
7576
7577 if (!map)
7578 return NULL;
7579
7580 isl_assert(map->ctx, isl_space_tuple_is_equal(map->dim, isl_dim_in,
7581 map->dim, isl_dim_out),
7582 goto error);
7583 dim = isl_map_get_space(map);
7584 dim = isl_space_domain(dim);
7585 result = isl_set_alloc_space(dim, map->n, 0);
7586 if (!result)
7587 goto error;
7588 for (i = 0; i < map->n; ++i)
7589 result = isl_set_add_basic_set(result,
7590 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
7591 isl_map_free(map);
7592 return result;
7593error:
7594 isl_map_free(map);
7595 return NULL;
7596}
7597
7598/*
7599 * returns [domain -> range] -> range - domain
7600 */
7601__isl_give isl_basic_map *isl_basic_map_deltas_map(
7602 __isl_take isl_basic_map *bmap)
7603{
7604 int i, k;
7605 isl_space *dim;
7606 isl_basic_map *domain;
7607 int nparam, n;
7608 unsigned total;
7609
7610 if (!isl_space_tuple_is_equal(bmap->dim, isl_dim_in,
7611 bmap->dim, isl_dim_out))
7612 isl_die(bmap->ctx, isl_error_invalid,
7613 "domain and range don't match", goto error);
7614
7615 nparam = isl_basic_map_dim(bmap, isl_dim_param);
7616 n = isl_basic_map_dim(bmap, isl_dim_in);
7617
7618 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
7619 domain = isl_basic_map_universe(dim);
7620
7621 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
7622 bmap = isl_basic_map_apply_range(bmap, domain);
7623 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
7624
7625 total = isl_basic_map_total_dim(bmap);
7626
7627 for (i = 0; i < n; ++i) {
7628 k = isl_basic_map_alloc_equality(bmap);
7629 if (k < 0)
7630 goto error;
7631 isl_seq_clr(bmap->eq[k], 1 + total);
7632 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
7633 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
7634 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
7635 }
7636
7637 bmap = isl_basic_map_gauss(bmap, NULL);
7638 return isl_basic_map_finalize(bmap);
7639error:
7640 isl_basic_map_free(bmap);
7641 return NULL;
7642}
7643
7644/*
7645 * returns [domain -> range] -> range - domain
7646 */
7647__isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
7648{
7649 int i;
7650 isl_space *domain_dim;
7651
7652 if (!map)
7653 return NULL;
7654
7655 if (!isl_space_tuple_is_equal(map->dim, isl_dim_in,
7656 map->dim, isl_dim_out))
7657 isl_die(map->ctx, isl_error_invalid,
7658 "domain and range don't match", goto error);
7659
7660 map = isl_map_cow(map);
7661 if (!map)
7662 return NULL;
7663
7664 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
7665 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
7666 map->dim = isl_space_join(map->dim, domain_dim);
7667 if (!map->dim)
7668 goto error;
7669 for (i = 0; i < map->n; ++i) {
7670 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
7671 if (!map->p[i])
7672 goto error;
7673 }
7674 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
7675 return map;
7676error:
7677 isl_map_free(map);
7678 return NULL;
7679}
7680
7681static __isl_give isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
7682{
7683 struct isl_basic_map *bmap;
7684 unsigned nparam;
7685 unsigned dim;
7686 int i;
7687
7688 if (!dims)
7689 return NULL;
7690
7691 nparam = dims->nparam;
7692 dim = dims->n_out;
7693 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
7694 if (!bmap)
7695 goto error;
7696
7697 for (i = 0; i < dim; ++i) {
7698 int j = isl_basic_map_alloc_equality(bmap);
7699 if (j < 0)
7700 goto error;
7701 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
7702 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
7703 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
7704 }
7705 return isl_basic_map_finalize(bmap);
7706error:
7707 isl_basic_map_free(bmap);
7708 return NULL;
7709}
7710
7711__isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
7712{
7713 if (!dim)
7714 return NULL;
7715 if (dim->n_in != dim->n_out)
7716 isl_die(dim->ctx, isl_error_invalid,
7717 "number of input and output dimensions needs to be "
7718 "the same", goto error);
7719 return basic_map_identity(dim);
7720error:
7721 isl_space_free(dim);
7722 return NULL;
7723}
7724
Tobias Grosser52a25232015-02-04 20:55:43 +00007725__isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
7726{
7727 return isl_map_from_basic_map(isl_basic_map_identity(dim));
7728}
7729
Tobias Grosser52a25232015-02-04 20:55:43 +00007730__isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
7731{
7732 isl_space *dim = isl_set_get_space(set);
7733 isl_map *id;
7734 id = isl_map_identity(isl_space_map_from_set(dim));
7735 return isl_map_intersect_range(id, set);
7736}
7737
7738/* Construct a basic set with all set dimensions having only non-negative
7739 * values.
7740 */
7741__isl_give isl_basic_set *isl_basic_set_positive_orthant(
7742 __isl_take isl_space *space)
7743{
7744 int i;
7745 unsigned nparam;
7746 unsigned dim;
7747 struct isl_basic_set *bset;
7748
7749 if (!space)
7750 return NULL;
7751 nparam = space->nparam;
7752 dim = space->n_out;
7753 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
7754 if (!bset)
7755 return NULL;
7756 for (i = 0; i < dim; ++i) {
7757 int k = isl_basic_set_alloc_inequality(bset);
7758 if (k < 0)
7759 goto error;
7760 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
7761 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
7762 }
7763 return bset;
7764error:
7765 isl_basic_set_free(bset);
7766 return NULL;
7767}
7768
7769/* Construct the half-space x_pos >= 0.
7770 */
7771static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
7772 int pos)
7773{
7774 int k;
7775 isl_basic_set *nonneg;
7776
7777 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7778 k = isl_basic_set_alloc_inequality(nonneg);
7779 if (k < 0)
7780 goto error;
7781 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
7782 isl_int_set_si(nonneg->ineq[k][pos], 1);
7783
7784 return isl_basic_set_finalize(nonneg);
7785error:
7786 isl_basic_set_free(nonneg);
7787 return NULL;
7788}
7789
7790/* Construct the half-space x_pos <= -1.
7791 */
7792static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
7793{
7794 int k;
7795 isl_basic_set *neg;
7796
7797 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
7798 k = isl_basic_set_alloc_inequality(neg);
7799 if (k < 0)
7800 goto error;
7801 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
7802 isl_int_set_si(neg->ineq[k][0], -1);
7803 isl_int_set_si(neg->ineq[k][pos], -1);
7804
7805 return isl_basic_set_finalize(neg);
7806error:
7807 isl_basic_set_free(neg);
7808 return NULL;
7809}
7810
7811__isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
7812 enum isl_dim_type type, unsigned first, unsigned n)
7813{
7814 int i;
Tobias Grossere0f8d592015-05-13 13:10:13 +00007815 unsigned offset;
Tobias Grosser52a25232015-02-04 20:55:43 +00007816 isl_basic_set *nonneg;
7817 isl_basic_set *neg;
7818
7819 if (!set)
7820 return NULL;
7821 if (n == 0)
7822 return set;
7823
7824 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
7825
Tobias Grossere0f8d592015-05-13 13:10:13 +00007826 offset = pos(set->dim, type);
Tobias Grosser52a25232015-02-04 20:55:43 +00007827 for (i = 0; i < n; ++i) {
7828 nonneg = nonneg_halfspace(isl_set_get_space(set),
Tobias Grossere0f8d592015-05-13 13:10:13 +00007829 offset + first + i);
7830 neg = neg_halfspace(isl_set_get_space(set), offset + first + i);
Tobias Grosser52a25232015-02-04 20:55:43 +00007831
7832 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
7833 }
7834
7835 return set;
7836error:
7837 isl_set_free(set);
7838 return NULL;
7839}
7840
Tobias Grosser72745c22017-02-17 05:11:16 +00007841static isl_stat foreach_orthant(__isl_take isl_set *set, int *signs, int first,
7842 int len,
7843 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
Tobias Grosser52a25232015-02-04 20:55:43 +00007844 void *user)
7845{
7846 isl_set *half;
7847
7848 if (!set)
Tobias Grosser72745c22017-02-17 05:11:16 +00007849 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007850 if (isl_set_plain_is_empty(set)) {
7851 isl_set_free(set);
Tobias Grosser72745c22017-02-17 05:11:16 +00007852 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00007853 }
7854 if (first == len)
7855 return fn(set, signs, user);
7856
7857 signs[first] = 1;
7858 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
7859 1 + first));
7860 half = isl_set_intersect(half, isl_set_copy(set));
7861 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
7862 goto error;
7863
7864 signs[first] = -1;
7865 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
7866 1 + first));
7867 half = isl_set_intersect(half, set);
7868 return foreach_orthant(half, signs, first + 1, len, fn, user);
7869error:
7870 isl_set_free(set);
Tobias Grosser72745c22017-02-17 05:11:16 +00007871 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007872}
7873
7874/* Call "fn" on the intersections of "set" with each of the orthants
7875 * (except for obviously empty intersections). The orthant is identified
7876 * by the signs array, with each entry having value 1 or -1 according
7877 * to the sign of the corresponding variable.
7878 */
Tobias Grosser72745c22017-02-17 05:11:16 +00007879isl_stat isl_set_foreach_orthant(__isl_keep isl_set *set,
7880 isl_stat (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
Tobias Grosser52a25232015-02-04 20:55:43 +00007881 void *user)
7882{
7883 unsigned nparam;
7884 unsigned nvar;
7885 int *signs;
Tobias Grosser72745c22017-02-17 05:11:16 +00007886 isl_stat r;
Tobias Grosser52a25232015-02-04 20:55:43 +00007887
7888 if (!set)
Tobias Grosser72745c22017-02-17 05:11:16 +00007889 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007890 if (isl_set_plain_is_empty(set))
Tobias Grosser72745c22017-02-17 05:11:16 +00007891 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00007892
7893 nparam = isl_set_dim(set, isl_dim_param);
7894 nvar = isl_set_dim(set, isl_dim_set);
7895
7896 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
7897
7898 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
7899 fn, user);
7900
7901 free(signs);
7902
7903 return r;
7904}
7905
Tobias Grosserb2f39922015-05-28 13:32:11 +00007906isl_bool isl_set_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
Tobias Grosser52a25232015-02-04 20:55:43 +00007907{
Tobias Grosser06e15922016-11-16 11:06:47 +00007908 return isl_map_is_equal(set_to_map(set1), set_to_map(set2));
Tobias Grosser52a25232015-02-04 20:55:43 +00007909}
7910
Tobias Grosserb2f39922015-05-28 13:32:11 +00007911isl_bool isl_basic_map_is_subset(__isl_keep isl_basic_map *bmap1,
7912 __isl_keep isl_basic_map *bmap2)
Tobias Grosser52a25232015-02-04 20:55:43 +00007913{
7914 int is_subset;
7915 struct isl_map *map1;
7916 struct isl_map *map2;
7917
7918 if (!bmap1 || !bmap2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00007919 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007920
7921 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
7922 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
7923
7924 is_subset = isl_map_is_subset(map1, map2);
7925
7926 isl_map_free(map1);
7927 isl_map_free(map2);
7928
7929 return is_subset;
7930}
7931
Tobias Grosserb2f39922015-05-28 13:32:11 +00007932isl_bool isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
Tobias Grosser52a25232015-02-04 20:55:43 +00007933 __isl_keep isl_basic_set *bset2)
7934{
7935 return isl_basic_map_is_subset(bset1, bset2);
7936}
7937
Tobias Grosserb2f39922015-05-28 13:32:11 +00007938isl_bool isl_basic_map_is_equal(__isl_keep isl_basic_map *bmap1,
7939 __isl_keep isl_basic_map *bmap2)
Tobias Grosser52a25232015-02-04 20:55:43 +00007940{
Tobias Grosserb2f39922015-05-28 13:32:11 +00007941 isl_bool is_subset;
Tobias Grosser52a25232015-02-04 20:55:43 +00007942
7943 if (!bmap1 || !bmap2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00007944 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007945 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
Tobias Grosserb2f39922015-05-28 13:32:11 +00007946 if (is_subset != isl_bool_true)
Tobias Grosser52a25232015-02-04 20:55:43 +00007947 return is_subset;
7948 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
7949 return is_subset;
7950}
7951
Tobias Grosserb2f39922015-05-28 13:32:11 +00007952isl_bool isl_basic_set_is_equal(__isl_keep isl_basic_set *bset1,
7953 __isl_keep isl_basic_set *bset2)
Tobias Grosser52a25232015-02-04 20:55:43 +00007954{
7955 return isl_basic_map_is_equal(
Tobias Grosser06e15922016-11-16 11:06:47 +00007956 bset_to_bmap(bset1), bset_to_bmap(bset2));
Tobias Grosser52a25232015-02-04 20:55:43 +00007957}
7958
Tobias Grosserb2f39922015-05-28 13:32:11 +00007959isl_bool isl_map_is_empty(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00007960{
7961 int i;
7962 int is_empty;
7963
7964 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +00007965 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007966 for (i = 0; i < map->n; ++i) {
7967 is_empty = isl_basic_map_is_empty(map->p[i]);
7968 if (is_empty < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00007969 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007970 if (!is_empty)
Tobias Grosserb2f39922015-05-28 13:32:11 +00007971 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00007972 }
Tobias Grosserb2f39922015-05-28 13:32:11 +00007973 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00007974}
7975
Tobias Grosserb2f39922015-05-28 13:32:11 +00007976isl_bool isl_map_plain_is_empty(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00007977{
Tobias Grosserb2f39922015-05-28 13:32:11 +00007978 return map ? map->n == 0 : isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007979}
7980
Tobias Grosserb2f39922015-05-28 13:32:11 +00007981isl_bool isl_set_plain_is_empty(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +00007982{
Tobias Grosserb2f39922015-05-28 13:32:11 +00007983 return set ? set->n == 0 : isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007984}
7985
Tobias Grosserb2f39922015-05-28 13:32:11 +00007986isl_bool isl_set_is_empty(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +00007987{
Tobias Grosser06e15922016-11-16 11:06:47 +00007988 return isl_map_is_empty(set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +00007989}
7990
Tobias Grosser72745c22017-02-17 05:11:16 +00007991isl_bool isl_map_has_equal_space(__isl_keep isl_map *map1,
7992 __isl_keep isl_map *map2)
Tobias Grosser52a25232015-02-04 20:55:43 +00007993{
7994 if (!map1 || !map2)
Tobias Grosser72745c22017-02-17 05:11:16 +00007995 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00007996
7997 return isl_space_is_equal(map1->dim, map2->dim);
7998}
7999
Tobias Grosser72745c22017-02-17 05:11:16 +00008000isl_bool isl_set_has_equal_space(__isl_keep isl_set *set1,
8001 __isl_keep isl_set *set2)
Tobias Grosser52a25232015-02-04 20:55:43 +00008002{
8003 if (!set1 || !set2)
Tobias Grosser72745c22017-02-17 05:11:16 +00008004 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008005
8006 return isl_space_is_equal(set1->dim, set2->dim);
8007}
8008
Tobias Grosserb2f39922015-05-28 13:32:11 +00008009static isl_bool map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
Tobias Grosser52a25232015-02-04 20:55:43 +00008010{
Tobias Grosserb2f39922015-05-28 13:32:11 +00008011 isl_bool is_subset;
Tobias Grosser52a25232015-02-04 20:55:43 +00008012
8013 if (!map1 || !map2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008014 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008015 is_subset = isl_map_is_subset(map1, map2);
Tobias Grosserb2f39922015-05-28 13:32:11 +00008016 if (is_subset != isl_bool_true)
Tobias Grosser52a25232015-02-04 20:55:43 +00008017 return is_subset;
8018 is_subset = isl_map_is_subset(map2, map1);
8019 return is_subset;
8020}
8021
Tobias Grosser932ec012016-07-06 09:11:00 +00008022/* Is "map1" equal to "map2"?
8023 *
8024 * First check if they are obviously equal.
8025 * If not, then perform a more detailed analysis.
8026 */
Tobias Grosserb2f39922015-05-28 13:32:11 +00008027isl_bool isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
Tobias Grosser52a25232015-02-04 20:55:43 +00008028{
Tobias Grosser932ec012016-07-06 09:11:00 +00008029 isl_bool equal;
8030
8031 equal = isl_map_plain_is_equal(map1, map2);
8032 if (equal < 0 || equal)
8033 return equal;
Tobias Grosser52a25232015-02-04 20:55:43 +00008034 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
8035}
8036
Tobias Grosserb2f39922015-05-28 13:32:11 +00008037isl_bool isl_basic_map_is_strict_subset(
Tobias Grosser52a25232015-02-04 20:55:43 +00008038 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8039{
Tobias Grosserb2f39922015-05-28 13:32:11 +00008040 isl_bool is_subset;
Tobias Grosser52a25232015-02-04 20:55:43 +00008041
8042 if (!bmap1 || !bmap2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008043 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008044 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
Tobias Grosserb2f39922015-05-28 13:32:11 +00008045 if (is_subset != isl_bool_true)
Tobias Grosser52a25232015-02-04 20:55:43 +00008046 return is_subset;
8047 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
Tobias Grosserb2f39922015-05-28 13:32:11 +00008048 if (is_subset == isl_bool_error)
Tobias Grosser52a25232015-02-04 20:55:43 +00008049 return is_subset;
8050 return !is_subset;
8051}
8052
Tobias Grosserb2f39922015-05-28 13:32:11 +00008053isl_bool isl_map_is_strict_subset(__isl_keep isl_map *map1,
8054 __isl_keep isl_map *map2)
Tobias Grosser52a25232015-02-04 20:55:43 +00008055{
Tobias Grosserb2f39922015-05-28 13:32:11 +00008056 isl_bool is_subset;
Tobias Grosser52a25232015-02-04 20:55:43 +00008057
8058 if (!map1 || !map2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008059 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008060 is_subset = isl_map_is_subset(map1, map2);
Tobias Grosserb2f39922015-05-28 13:32:11 +00008061 if (is_subset != isl_bool_true)
Tobias Grosser52a25232015-02-04 20:55:43 +00008062 return is_subset;
8063 is_subset = isl_map_is_subset(map2, map1);
Tobias Grosserb2f39922015-05-28 13:32:11 +00008064 if (is_subset == isl_bool_error)
Tobias Grosser52a25232015-02-04 20:55:43 +00008065 return is_subset;
8066 return !is_subset;
8067}
8068
Tobias Grosserb2f39922015-05-28 13:32:11 +00008069isl_bool isl_set_is_strict_subset(__isl_keep isl_set *set1,
8070 __isl_keep isl_set *set2)
Tobias Grosser52a25232015-02-04 20:55:43 +00008071{
Tobias Grosser06e15922016-11-16 11:06:47 +00008072 return isl_map_is_strict_subset(set_to_map(set1), set_to_map(set2));
Tobias Grosser52a25232015-02-04 20:55:43 +00008073}
8074
Tobias Grossera67ac972016-02-26 11:35:12 +00008075/* Is "bmap" obviously equal to the universe with the same space?
8076 *
8077 * That is, does it not have any constraints?
8078 */
8079isl_bool isl_basic_map_plain_is_universe(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00008080{
8081 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008082 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008083 return bmap->n_eq == 0 && bmap->n_ineq == 0;
8084}
8085
Tobias Grossera67ac972016-02-26 11:35:12 +00008086/* Is "bset" obviously equal to the universe with the same space?
8087 */
8088isl_bool isl_basic_set_plain_is_universe(__isl_keep isl_basic_set *bset)
8089{
8090 return isl_basic_map_plain_is_universe(bset);
8091}
8092
8093/* If "c" does not involve any existentially quantified variables,
8094 * then set *univ to false and abort
8095 */
8096static isl_stat involves_divs(__isl_take isl_constraint *c, void *user)
8097{
8098 isl_bool *univ = user;
8099 unsigned n;
8100
8101 n = isl_constraint_dim(c, isl_dim_div);
8102 *univ = isl_constraint_involves_dims(c, isl_dim_div, 0, n);
8103 isl_constraint_free(c);
8104 if (*univ < 0 || !*univ)
8105 return isl_stat_error;
8106 return isl_stat_ok;
8107}
8108
8109/* Is "bmap" equal to the universe with the same space?
8110 *
8111 * First check if it is obviously equal to the universe.
8112 * If not and if there are any constraints not involving
8113 * existentially quantified variables, then it is certainly
8114 * not equal to the universe.
8115 * Otherwise, check if the universe is a subset of "bmap".
8116 */
8117isl_bool isl_basic_map_is_universe(__isl_keep isl_basic_map *bmap)
8118{
8119 isl_bool univ;
8120 isl_basic_map *test;
8121
8122 univ = isl_basic_map_plain_is_universe(bmap);
8123 if (univ < 0 || univ)
8124 return univ;
8125 if (isl_basic_map_dim(bmap, isl_dim_div) == 0)
8126 return isl_bool_false;
8127 univ = isl_bool_true;
8128 if (isl_basic_map_foreach_constraint(bmap, &involves_divs, &univ) < 0 &&
8129 univ)
8130 return isl_bool_error;
8131 if (univ < 0 || !univ)
8132 return univ;
8133 test = isl_basic_map_universe(isl_basic_map_get_space(bmap));
8134 univ = isl_basic_map_is_subset(test, bmap);
8135 isl_basic_map_free(test);
8136 return univ;
8137}
8138
8139/* Is "bset" equal to the universe with the same space?
8140 */
Tobias Grosserb2f39922015-05-28 13:32:11 +00008141isl_bool isl_basic_set_is_universe(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +00008142{
Tobias Grossera67ac972016-02-26 11:35:12 +00008143 return isl_basic_map_is_universe(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +00008144}
8145
Tobias Grosserb2f39922015-05-28 13:32:11 +00008146isl_bool isl_map_plain_is_universe(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00008147{
8148 int i;
8149
8150 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008151 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008152
8153 for (i = 0; i < map->n; ++i) {
Tobias Grossera67ac972016-02-26 11:35:12 +00008154 isl_bool r = isl_basic_map_plain_is_universe(map->p[i]);
Tobias Grosser52a25232015-02-04 20:55:43 +00008155 if (r < 0 || r)
8156 return r;
8157 }
8158
Tobias Grosserb2f39922015-05-28 13:32:11 +00008159 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008160}
8161
Tobias Grosserb2f39922015-05-28 13:32:11 +00008162isl_bool isl_set_plain_is_universe(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +00008163{
Tobias Grosser06e15922016-11-16 11:06:47 +00008164 return isl_map_plain_is_universe(set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +00008165}
8166
Tobias Grosserb2f39922015-05-28 13:32:11 +00008167isl_bool isl_basic_map_is_empty(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00008168{
8169 struct isl_basic_set *bset = NULL;
8170 struct isl_vec *sample = NULL;
Tobias Grossera67ac972016-02-26 11:35:12 +00008171 isl_bool empty, non_empty;
Tobias Grosser52a25232015-02-04 20:55:43 +00008172
8173 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008174 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008175
8176 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
Tobias Grosserb2f39922015-05-28 13:32:11 +00008177 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00008178
Tobias Grossera67ac972016-02-26 11:35:12 +00008179 if (isl_basic_map_plain_is_universe(bmap))
Tobias Grosserb2f39922015-05-28 13:32:11 +00008180 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008181
8182 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
8183 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
8184 copy = isl_basic_map_remove_redundancies(copy);
8185 empty = isl_basic_map_plain_is_empty(copy);
8186 isl_basic_map_free(copy);
8187 return empty;
8188 }
8189
Tobias Grossera67ac972016-02-26 11:35:12 +00008190 non_empty = isl_basic_map_plain_is_non_empty(bmap);
8191 if (non_empty < 0)
8192 return isl_bool_error;
8193 if (non_empty)
8194 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008195 isl_vec_free(bmap->sample);
8196 bmap->sample = NULL;
8197 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
8198 if (!bset)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008199 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008200 sample = isl_basic_set_sample_vec(bset);
8201 if (!sample)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008202 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008203 empty = sample->size == 0;
8204 isl_vec_free(bmap->sample);
8205 bmap->sample = sample;
8206 if (empty)
8207 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
8208
8209 return empty;
8210}
8211
Tobias Grosserb2f39922015-05-28 13:32:11 +00008212isl_bool isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00008213{
8214 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008215 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008216 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
8217}
8218
Tobias Grosserb2f39922015-05-28 13:32:11 +00008219isl_bool isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +00008220{
8221 if (!bset)
Tobias Grosserb2f39922015-05-28 13:32:11 +00008222 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008223 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
8224}
8225
Tobias Grossera67ac972016-02-26 11:35:12 +00008226/* Is "bmap" known to be non-empty?
8227 *
8228 * That is, is the cached sample still valid?
8229 */
8230isl_bool isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map *bmap)
8231{
8232 unsigned total;
8233
8234 if (!bmap)
8235 return isl_bool_error;
8236 if (!bmap->sample)
8237 return isl_bool_false;
8238 total = 1 + isl_basic_map_total_dim(bmap);
8239 if (bmap->sample->size != total)
8240 return isl_bool_false;
8241 return isl_basic_map_contains(bmap, bmap->sample);
8242}
8243
Tobias Grosserb2f39922015-05-28 13:32:11 +00008244isl_bool isl_basic_set_is_empty(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +00008245{
Tobias Grosser06e15922016-11-16 11:06:47 +00008246 return isl_basic_map_is_empty(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00008247}
8248
8249struct isl_map *isl_basic_map_union(
8250 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8251{
8252 struct isl_map *map;
8253 if (!bmap1 || !bmap2)
8254 goto error;
8255
8256 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
8257
8258 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
8259 if (!map)
8260 goto error;
8261 map = isl_map_add_basic_map(map, bmap1);
8262 map = isl_map_add_basic_map(map, bmap2);
8263 return map;
8264error:
8265 isl_basic_map_free(bmap1);
8266 isl_basic_map_free(bmap2);
8267 return NULL;
8268}
8269
8270struct isl_set *isl_basic_set_union(
8271 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
8272{
Tobias Grosser06e15922016-11-16 11:06:47 +00008273 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1),
8274 bset_to_bmap(bset2)));
Tobias Grosser52a25232015-02-04 20:55:43 +00008275}
8276
8277/* Order divs such that any div only depends on previous divs */
8278struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
8279{
8280 int i;
8281 unsigned off;
8282
8283 if (!bmap)
8284 return NULL;
8285
8286 off = isl_space_dim(bmap->dim, isl_dim_all);
8287
8288 for (i = 0; i < bmap->n_div; ++i) {
8289 int pos;
8290 if (isl_int_is_zero(bmap->div[i][0]))
8291 continue;
8292 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
8293 bmap->n_div-i);
8294 if (pos == -1)
8295 continue;
Tobias Grosser37034db2016-03-25 19:38:18 +00008296 if (pos == 0)
8297 isl_die(isl_basic_map_get_ctx(bmap), isl_error_internal,
8298 "integer division depends on itself",
8299 return isl_basic_map_free(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00008300 isl_basic_map_swap_div(bmap, i, i + pos);
8301 --i;
8302 }
8303 return bmap;
8304}
8305
8306struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
8307{
Tobias Grosser06e15922016-11-16 11:06:47 +00008308 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +00008309}
8310
8311__isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
8312{
8313 int i;
8314
8315 if (!map)
8316 return 0;
8317
8318 for (i = 0; i < map->n; ++i) {
8319 map->p[i] = isl_basic_map_order_divs(map->p[i]);
8320 if (!map->p[i])
8321 goto error;
8322 }
8323
8324 return map;
8325error:
8326 isl_map_free(map);
8327 return NULL;
8328}
8329
Tobias Grosser06e15922016-11-16 11:06:47 +00008330/* Sort the local variables of "bset".
8331 */
8332__isl_give isl_basic_set *isl_basic_set_sort_divs(
8333 __isl_take isl_basic_set *bset)
8334{
8335 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset)));
8336}
8337
Tobias Grosser52a25232015-02-04 20:55:43 +00008338/* Apply the expansion computed by isl_merge_divs.
8339 * The expansion itself is given by "exp" while the resulting
8340 * list of divs is given by "div".
Tobias Grossera67ac972016-02-26 11:35:12 +00008341 *
Tobias Grosser07b20952016-06-12 04:30:40 +00008342 * Move the integer divisions of "bmap" into the right position
Tobias Grossera67ac972016-02-26 11:35:12 +00008343 * according to "exp" and then introduce the additional integer
8344 * divisions, adding div constraints.
8345 * The moving should be done first to avoid moving coefficients
8346 * in the definitions of the extra integer divisions.
Tobias Grosser52a25232015-02-04 20:55:43 +00008347 */
Tobias Grosser07b20952016-06-12 04:30:40 +00008348__isl_give isl_basic_map *isl_basic_map_expand_divs(
Tobias Grosser06e15922016-11-16 11:06:47 +00008349 __isl_take isl_basic_map *bmap, __isl_take isl_mat *div, int *exp)
Tobias Grosser52a25232015-02-04 20:55:43 +00008350{
8351 int i, j;
8352 int n_div;
8353
Tobias Grosser07b20952016-06-12 04:30:40 +00008354 bmap = isl_basic_map_cow(bmap);
8355 if (!bmap || !div)
Tobias Grosser52a25232015-02-04 20:55:43 +00008356 goto error;
8357
Tobias Grosser07b20952016-06-12 04:30:40 +00008358 if (div->n_row < bmap->n_div)
Tobias Grosser52a25232015-02-04 20:55:43 +00008359 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
8360 "not an expansion", goto error);
8361
Tobias Grosser07b20952016-06-12 04:30:40 +00008362 n_div = bmap->n_div;
8363 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
Tobias Grosser52a25232015-02-04 20:55:43 +00008364 div->n_row - n_div, 0,
8365 2 * (div->n_row - n_div));
8366
8367 for (i = n_div; i < div->n_row; ++i)
Tobias Grosser07b20952016-06-12 04:30:40 +00008368 if (isl_basic_map_alloc_div(bmap) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00008369 goto error;
8370
Tobias Grossera67ac972016-02-26 11:35:12 +00008371 for (j = n_div - 1; j >= 0; --j) {
8372 if (exp[j] == j)
8373 break;
Tobias Grosser07b20952016-06-12 04:30:40 +00008374 isl_basic_map_swap_div(bmap, j, exp[j]);
Tobias Grossera67ac972016-02-26 11:35:12 +00008375 }
8376 j = 0;
8377 for (i = 0; i < div->n_row; ++i) {
8378 if (j < n_div && exp[j] == i) {
8379 j++;
Tobias Grosser52a25232015-02-04 20:55:43 +00008380 } else {
Tobias Grosser07b20952016-06-12 04:30:40 +00008381 isl_seq_cpy(bmap->div[i], div->row[i], div->n_col);
Tobias Grosser932ec012016-07-06 09:11:00 +00008382 if (isl_basic_map_div_is_marked_unknown(bmap, i))
Tobias Grosser07b20952016-06-12 04:30:40 +00008383 continue;
8384 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00008385 goto error;
8386 }
8387 }
8388
8389 isl_mat_free(div);
Tobias Grosser07b20952016-06-12 04:30:40 +00008390 return bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00008391error:
Tobias Grosser07b20952016-06-12 04:30:40 +00008392 isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00008393 isl_mat_free(div);
8394 return NULL;
8395}
8396
Tobias Grosser07b20952016-06-12 04:30:40 +00008397/* Apply the expansion computed by isl_merge_divs.
8398 * The expansion itself is given by "exp" while the resulting
8399 * list of divs is given by "div".
8400 */
8401__isl_give isl_basic_set *isl_basic_set_expand_divs(
8402 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
8403{
8404 return isl_basic_map_expand_divs(bset, div, exp);
8405}
8406
Tobias Grosser52a25232015-02-04 20:55:43 +00008407/* Look for a div in dst that corresponds to the div "div" in src.
8408 * The divs before "div" in src and dst are assumed to be the same.
8409 *
8410 * Returns -1 if no corresponding div was found and the position
8411 * of the corresponding div in dst otherwise.
8412 */
8413static int find_div(struct isl_basic_map *dst,
8414 struct isl_basic_map *src, unsigned div)
8415{
8416 int i;
8417
8418 unsigned total = isl_space_dim(src->dim, isl_dim_all);
8419
8420 isl_assert(dst->ctx, div <= dst->n_div, return -1);
8421 for (i = div; i < dst->n_div; ++i)
8422 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
8423 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
8424 dst->n_div - div) == -1)
8425 return i;
8426 return -1;
8427}
8428
8429/* Align the divs of "dst" to those of "src", adding divs from "src"
8430 * if needed. That is, make sure that the first src->n_div divs
8431 * of the result are equal to those of src.
8432 *
8433 * The result is not finalized as by design it will have redundant
8434 * divs if any divs from "src" were copied.
8435 */
8436__isl_give isl_basic_map *isl_basic_map_align_divs(
8437 __isl_take isl_basic_map *dst, __isl_keep isl_basic_map *src)
8438{
8439 int i;
8440 int known, extended;
8441 unsigned total;
8442
8443 if (!dst || !src)
8444 return isl_basic_map_free(dst);
8445
8446 if (src->n_div == 0)
8447 return dst;
8448
8449 known = isl_basic_map_divs_known(src);
8450 if (known < 0)
8451 return isl_basic_map_free(dst);
8452 if (!known)
8453 isl_die(isl_basic_map_get_ctx(src), isl_error_invalid,
8454 "some src divs are unknown",
8455 return isl_basic_map_free(dst));
8456
8457 src = isl_basic_map_order_divs(src);
8458
8459 extended = 0;
8460 total = isl_space_dim(src->dim, isl_dim_all);
8461 for (i = 0; i < src->n_div; ++i) {
8462 int j = find_div(dst, src, i);
8463 if (j < 0) {
8464 if (!extended) {
8465 int extra = src->n_div - i;
8466 dst = isl_basic_map_cow(dst);
8467 if (!dst)
8468 return NULL;
8469 dst = isl_basic_map_extend_space(dst,
8470 isl_space_copy(dst->dim),
8471 extra, 0, 2 * extra);
8472 extended = 1;
8473 }
8474 j = isl_basic_map_alloc_div(dst);
8475 if (j < 0)
8476 return isl_basic_map_free(dst);
8477 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
8478 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
8479 if (isl_basic_map_add_div_constraints(dst, j) < 0)
8480 return isl_basic_map_free(dst);
8481 }
8482 if (j != i)
8483 isl_basic_map_swap_div(dst, i, j);
8484 }
8485 return dst;
8486}
8487
Tobias Grosser52a25232015-02-04 20:55:43 +00008488struct isl_map *isl_map_align_divs(struct isl_map *map)
8489{
8490 int i;
8491
8492 if (!map)
8493 return NULL;
8494 if (map->n == 0)
8495 return map;
8496 map = isl_map_compute_divs(map);
8497 map = isl_map_cow(map);
8498 if (!map)
8499 return NULL;
8500
8501 for (i = 1; i < map->n; ++i)
8502 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
8503 for (i = 1; i < map->n; ++i) {
8504 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
8505 if (!map->p[i])
8506 return isl_map_free(map);
8507 }
8508
8509 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
8510 return map;
8511}
8512
8513struct isl_set *isl_set_align_divs(struct isl_set *set)
8514{
Tobias Grosser06e15922016-11-16 11:06:47 +00008515 return set_from_map(isl_map_align_divs(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00008516}
8517
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008518/* Align the divs of the basic maps in "map" to those
8519 * of the basic maps in "list", as well as to the other basic maps in "map".
Tobias Grosser52a25232015-02-04 20:55:43 +00008520 * The elements in "list" are assumed to have known divs.
8521 */
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008522__isl_give isl_map *isl_map_align_divs_to_basic_map_list(
8523 __isl_take isl_map *map, __isl_keep isl_basic_map_list *list)
Tobias Grosser52a25232015-02-04 20:55:43 +00008524{
8525 int i, n;
8526
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008527 map = isl_map_compute_divs(map);
8528 map = isl_map_cow(map);
8529 if (!map || !list)
8530 return isl_map_free(map);
8531 if (map->n == 0)
8532 return map;
Tobias Grosser52a25232015-02-04 20:55:43 +00008533
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008534 n = isl_basic_map_list_n_basic_map(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00008535 for (i = 0; i < n; ++i) {
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008536 isl_basic_map *bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00008537
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008538 bmap = isl_basic_map_list_get_basic_map(list, i);
8539 map->p[0] = isl_basic_map_align_divs(map->p[0], bmap);
8540 isl_basic_map_free(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00008541 }
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008542 if (!map->p[0])
8543 return isl_map_free(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00008544
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008545 return isl_map_align_divs(map);
Tobias Grosser52a25232015-02-04 20:55:43 +00008546}
8547
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008548/* Align the divs of each element of "list" to those of "bmap".
8549 * Both "bmap" and the elements of "list" are assumed to have known divs.
Tobias Grosser52a25232015-02-04 20:55:43 +00008550 */
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008551__isl_give isl_basic_map_list *isl_basic_map_list_align_divs_to_basic_map(
8552 __isl_take isl_basic_map_list *list, __isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00008553{
8554 int i, n;
8555
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008556 if (!list || !bmap)
8557 return isl_basic_map_list_free(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00008558
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008559 n = isl_basic_map_list_n_basic_map(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00008560 for (i = 0; i < n; ++i) {
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008561 isl_basic_map *bmap_i;
Tobias Grosser52a25232015-02-04 20:55:43 +00008562
Tobias Grosser1fa7b972015-02-16 19:33:40 +00008563 bmap_i = isl_basic_map_list_get_basic_map(list, i);
8564 bmap_i = isl_basic_map_align_divs(bmap_i, bmap);
8565 list = isl_basic_map_list_set_basic_map(list, i, bmap_i);
Tobias Grosser52a25232015-02-04 20:55:43 +00008566 }
8567
8568 return list;
8569}
8570
8571static __isl_give isl_set *set_apply( __isl_take isl_set *set,
8572 __isl_take isl_map *map)
8573{
Tobias Grosser72745c22017-02-17 05:11:16 +00008574 isl_bool ok;
8575
8576 ok = isl_map_compatible_domain(map, set);
8577 if (ok < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00008578 goto error;
Tobias Grosser72745c22017-02-17 05:11:16 +00008579 if (!ok)
8580 isl_die(isl_set_get_ctx(set), isl_error_invalid,
8581 "incompatible spaces", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +00008582 map = isl_map_intersect_domain(map, set);
8583 set = isl_map_range(map);
8584 return set;
8585error:
8586 isl_set_free(set);
8587 isl_map_free(map);
8588 return NULL;
8589}
8590
8591__isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
8592 __isl_take isl_map *map)
8593{
8594 return isl_map_align_params_map_map_and(set, map, &set_apply);
8595}
8596
8597/* There is no need to cow as removing empty parts doesn't change
8598 * the meaning of the set.
8599 */
8600struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
8601{
8602 int i;
8603
8604 if (!map)
8605 return NULL;
8606
8607 for (i = map->n - 1; i >= 0; --i)
8608 remove_if_empty(map, i);
8609
8610 return map;
8611}
8612
8613struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
8614{
Tobias Grosser06e15922016-11-16 11:06:47 +00008615 return set_from_map(isl_map_remove_empty_parts(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00008616}
8617
Tobias Grosser52a25232015-02-04 20:55:43 +00008618/* Given two basic sets bset1 and bset2, compute the maximal difference
8619 * between the values of dimension pos in bset1 and those in bset2
8620 * for any common value of the parameters and dimensions preceding pos.
8621 */
8622static enum isl_lp_result basic_set_maximal_difference_at(
8623 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
8624 int pos, isl_int *opt)
8625{
Tobias Grossereab0943e2016-11-22 21:31:59 +00008626 isl_basic_map *bmap1;
8627 isl_basic_map *bmap2;
Tobias Grosser52a25232015-02-04 20:55:43 +00008628 struct isl_ctx *ctx;
8629 struct isl_vec *obj;
8630 unsigned total;
8631 unsigned nparam;
Tobias Grossereab0943e2016-11-22 21:31:59 +00008632 unsigned dim1;
Tobias Grosser52a25232015-02-04 20:55:43 +00008633 enum isl_lp_result res;
8634
8635 if (!bset1 || !bset2)
8636 return isl_lp_error;
8637
8638 nparam = isl_basic_set_n_param(bset1);
8639 dim1 = isl_basic_set_n_dim(bset1);
Tobias Grossereab0943e2016-11-22 21:31:59 +00008640
8641 bmap1 = isl_basic_map_from_range(isl_basic_set_copy(bset1));
8642 bmap2 = isl_basic_map_from_range(isl_basic_set_copy(bset2));
8643 bmap1 = isl_basic_map_move_dims(bmap1, isl_dim_in, 0,
8644 isl_dim_out, 0, pos);
8645 bmap2 = isl_basic_map_move_dims(bmap2, isl_dim_in, 0,
8646 isl_dim_out, 0, pos);
8647 bmap1 = isl_basic_map_range_product(bmap1, bmap2);
Tobias Grosser52a25232015-02-04 20:55:43 +00008648 if (!bmap1)
Tobias Grossereab0943e2016-11-22 21:31:59 +00008649 return isl_lp_error;
8650
Tobias Grosser52a25232015-02-04 20:55:43 +00008651 total = isl_basic_map_total_dim(bmap1);
8652 ctx = bmap1->ctx;
8653 obj = isl_vec_alloc(ctx, 1 + total);
8654 if (!obj)
Tobias Grossereab0943e2016-11-22 21:31:59 +00008655 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008656 isl_seq_clr(obj->block.data, 1 + total);
8657 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
8658 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
8659 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
8660 opt, NULL, NULL);
8661 isl_basic_map_free(bmap1);
8662 isl_vec_free(obj);
8663 return res;
8664error:
Tobias Grosser52a25232015-02-04 20:55:43 +00008665 isl_basic_map_free(bmap1);
8666 return isl_lp_error;
8667}
8668
8669/* Given two _disjoint_ basic sets bset1 and bset2, check whether
8670 * for any common value of the parameters and dimensions preceding pos
8671 * in both basic sets, the values of dimension pos in bset1 are
8672 * smaller or larger than those in bset2.
8673 *
8674 * Returns
8675 * 1 if bset1 follows bset2
8676 * -1 if bset1 precedes bset2
8677 * 0 if bset1 and bset2 are incomparable
8678 * -2 if some error occurred.
8679 */
8680int isl_basic_set_compare_at(struct isl_basic_set *bset1,
8681 struct isl_basic_set *bset2, int pos)
8682{
8683 isl_int opt;
8684 enum isl_lp_result res;
8685 int cmp;
8686
8687 isl_int_init(opt);
8688
8689 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8690
8691 if (res == isl_lp_empty)
8692 cmp = 0;
8693 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8694 res == isl_lp_unbounded)
8695 cmp = 1;
8696 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8697 cmp = -1;
8698 else
8699 cmp = -2;
8700
8701 isl_int_clear(opt);
8702 return cmp;
8703}
8704
8705/* Given two basic sets bset1 and bset2, check whether
8706 * for any common value of the parameters and dimensions preceding pos
8707 * there is a value of dimension pos in bset1 that is larger
8708 * than a value of the same dimension in bset2.
8709 *
8710 * Return
8711 * 1 if there exists such a pair
8712 * 0 if there is no such pair, but there is a pair of equal values
8713 * -1 otherwise
8714 * -2 if some error occurred.
8715 */
8716int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
8717 __isl_keep isl_basic_set *bset2, int pos)
8718{
8719 isl_int opt;
8720 enum isl_lp_result res;
8721 int cmp;
8722
8723 isl_int_init(opt);
8724
8725 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
8726
8727 if (res == isl_lp_empty)
8728 cmp = -1;
8729 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
8730 res == isl_lp_unbounded)
8731 cmp = 1;
8732 else if (res == isl_lp_ok && isl_int_is_neg(opt))
8733 cmp = -1;
8734 else if (res == isl_lp_ok)
8735 cmp = 0;
8736 else
8737 cmp = -2;
8738
8739 isl_int_clear(opt);
8740 return cmp;
8741}
8742
8743/* Given two sets set1 and set2, check whether
8744 * for any common value of the parameters and dimensions preceding pos
8745 * there is a value of dimension pos in set1 that is larger
8746 * than a value of the same dimension in set2.
8747 *
8748 * Return
8749 * 1 if there exists such a pair
8750 * 0 if there is no such pair, but there is a pair of equal values
8751 * -1 otherwise
8752 * -2 if some error occurred.
8753 */
8754int isl_set_follows_at(__isl_keep isl_set *set1,
8755 __isl_keep isl_set *set2, int pos)
8756{
8757 int i, j;
8758 int follows = -1;
8759
8760 if (!set1 || !set2)
8761 return -2;
8762
8763 for (i = 0; i < set1->n; ++i)
8764 for (j = 0; j < set2->n; ++j) {
8765 int f;
8766 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
8767 if (f == 1 || f == -2)
8768 return f;
8769 if (f > follows)
8770 follows = f;
8771 }
8772
8773 return follows;
8774}
8775
Tobias Grosser72745c22017-02-17 05:11:16 +00008776static isl_bool isl_basic_map_plain_has_fixed_var(
8777 __isl_keep isl_basic_map *bmap, unsigned pos, isl_int *val)
Tobias Grosser52a25232015-02-04 20:55:43 +00008778{
8779 int i;
8780 int d;
8781 unsigned total;
8782
8783 if (!bmap)
Tobias Grosser72745c22017-02-17 05:11:16 +00008784 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008785 total = isl_basic_map_total_dim(bmap);
8786 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
8787 for (; d+1 > pos; --d)
8788 if (!isl_int_is_zero(bmap->eq[i][1+d]))
8789 break;
8790 if (d != pos)
8791 continue;
8792 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
Tobias Grosser72745c22017-02-17 05:11:16 +00008793 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008794 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
Tobias Grosser72745c22017-02-17 05:11:16 +00008795 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008796 if (!isl_int_is_one(bmap->eq[i][1+d]))
Tobias Grosser72745c22017-02-17 05:11:16 +00008797 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008798 if (val)
8799 isl_int_neg(*val, bmap->eq[i][0]);
Tobias Grosser72745c22017-02-17 05:11:16 +00008800 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00008801 }
Tobias Grosser72745c22017-02-17 05:11:16 +00008802 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008803}
8804
Tobias Grosser72745c22017-02-17 05:11:16 +00008805static isl_bool isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +00008806 unsigned pos, isl_int *val)
8807{
8808 int i;
8809 isl_int v;
8810 isl_int tmp;
Tobias Grosser72745c22017-02-17 05:11:16 +00008811 isl_bool fixed;
Tobias Grosser52a25232015-02-04 20:55:43 +00008812
8813 if (!map)
Tobias Grosser72745c22017-02-17 05:11:16 +00008814 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008815 if (map->n == 0)
Tobias Grosser72745c22017-02-17 05:11:16 +00008816 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008817 if (map->n == 1)
8818 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
8819 isl_int_init(v);
8820 isl_int_init(tmp);
8821 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
Tobias Grosser72745c22017-02-17 05:11:16 +00008822 for (i = 1; fixed == isl_bool_true && i < map->n; ++i) {
Tobias Grosser52a25232015-02-04 20:55:43 +00008823 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
Tobias Grosser72745c22017-02-17 05:11:16 +00008824 if (fixed == isl_bool_true && isl_int_ne(tmp, v))
8825 fixed = isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00008826 }
8827 if (val)
8828 isl_int_set(*val, v);
8829 isl_int_clear(tmp);
8830 isl_int_clear(v);
8831 return fixed;
8832}
8833
Tobias Grosser72745c22017-02-17 05:11:16 +00008834static isl_bool isl_basic_set_plain_has_fixed_var(
8835 __isl_keep isl_basic_set *bset, unsigned pos, isl_int *val)
Tobias Grosser52a25232015-02-04 20:55:43 +00008836{
Tobias Grosser06e15922016-11-16 11:06:47 +00008837 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset),
Tobias Grosser52a25232015-02-04 20:55:43 +00008838 pos, val);
8839}
8840
Tobias Grosser72745c22017-02-17 05:11:16 +00008841isl_bool isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +00008842 enum isl_dim_type type, unsigned pos, isl_int *val)
8843{
Tobias Grosser72745c22017-02-17 05:11:16 +00008844 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
8845 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00008846 return isl_basic_map_plain_has_fixed_var(bmap,
8847 isl_basic_map_offset(bmap, type) - 1 + pos, val);
8848}
8849
8850/* If "bmap" obviously lies on a hyperplane where the given dimension
8851 * has a fixed value, then return that value.
8852 * Otherwise return NaN.
8853 */
8854__isl_give isl_val *isl_basic_map_plain_get_val_if_fixed(
8855 __isl_keep isl_basic_map *bmap,
8856 enum isl_dim_type type, unsigned pos)
8857{
8858 isl_ctx *ctx;
8859 isl_val *v;
Tobias Grosser72745c22017-02-17 05:11:16 +00008860 isl_bool fixed;
Tobias Grosser52a25232015-02-04 20:55:43 +00008861
8862 if (!bmap)
8863 return NULL;
8864 ctx = isl_basic_map_get_ctx(bmap);
8865 v = isl_val_alloc(ctx);
8866 if (!v)
8867 return NULL;
8868 fixed = isl_basic_map_plain_is_fixed(bmap, type, pos, &v->n);
8869 if (fixed < 0)
8870 return isl_val_free(v);
8871 if (fixed) {
8872 isl_int_set_si(v->d, 1);
8873 return v;
8874 }
8875 isl_val_free(v);
8876 return isl_val_nan(ctx);
8877}
8878
Tobias Grosser72745c22017-02-17 05:11:16 +00008879isl_bool isl_map_plain_is_fixed(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +00008880 enum isl_dim_type type, unsigned pos, isl_int *val)
8881{
8882 if (pos >= isl_map_dim(map, type))
Tobias Grosser72745c22017-02-17 05:11:16 +00008883 isl_die(isl_map_get_ctx(map), isl_error_invalid,
8884 "position out of bounds", return isl_bool_error);
Tobias Grosser52a25232015-02-04 20:55:43 +00008885 return isl_map_plain_has_fixed_var(map,
8886 map_offset(map, type) - 1 + pos, val);
8887}
8888
8889/* If "map" obviously lies on a hyperplane where the given dimension
8890 * has a fixed value, then return that value.
8891 * Otherwise return NaN.
8892 */
8893__isl_give isl_val *isl_map_plain_get_val_if_fixed(__isl_keep isl_map *map,
8894 enum isl_dim_type type, unsigned pos)
8895{
8896 isl_ctx *ctx;
8897 isl_val *v;
Tobias Grosser72745c22017-02-17 05:11:16 +00008898 isl_bool fixed;
Tobias Grosser52a25232015-02-04 20:55:43 +00008899
8900 if (!map)
8901 return NULL;
8902 ctx = isl_map_get_ctx(map);
8903 v = isl_val_alloc(ctx);
8904 if (!v)
8905 return NULL;
8906 fixed = isl_map_plain_is_fixed(map, type, pos, &v->n);
8907 if (fixed < 0)
8908 return isl_val_free(v);
8909 if (fixed) {
8910 isl_int_set_si(v->d, 1);
8911 return v;
8912 }
8913 isl_val_free(v);
8914 return isl_val_nan(ctx);
8915}
8916
8917/* If "set" obviously lies on a hyperplane where the given dimension
8918 * has a fixed value, then return that value.
8919 * Otherwise return NaN.
8920 */
8921__isl_give isl_val *isl_set_plain_get_val_if_fixed(__isl_keep isl_set *set,
8922 enum isl_dim_type type, unsigned pos)
8923{
8924 return isl_map_plain_get_val_if_fixed(set, type, pos);
8925}
8926
Tobias Grosser72745c22017-02-17 05:11:16 +00008927isl_bool isl_set_plain_is_fixed(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +00008928 enum isl_dim_type type, unsigned pos, isl_int *val)
8929{
8930 return isl_map_plain_is_fixed(set, type, pos, val);
8931}
8932
Tobias Grosser52a25232015-02-04 20:55:43 +00008933/* Check if dimension dim has fixed value and if so and if val is not NULL,
8934 * then return this fixed value in *val.
8935 */
Tobias Grosser72745c22017-02-17 05:11:16 +00008936isl_bool isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
Tobias Grosser52a25232015-02-04 20:55:43 +00008937 unsigned dim, isl_int *val)
8938{
8939 return isl_basic_set_plain_has_fixed_var(bset,
8940 isl_basic_set_n_param(bset) + dim, val);
8941}
8942
Michael Kruse959a8dc2016-01-15 15:54:45 +00008943/* Return -1 if the constraint "c1" should be sorted before "c2"
8944 * and 1 if it should be sorted after "c2".
8945 * Return 0 if the two constraints are the same (up to the constant term).
8946 *
8947 * In particular, if a constraint involves later variables than another
8948 * then it is sorted after this other constraint.
8949 * uset_gist depends on constraints without existentially quantified
Tobias Grosser52a25232015-02-04 20:55:43 +00008950 * variables sorting first.
Michael Kruse959a8dc2016-01-15 15:54:45 +00008951 *
8952 * For constraints that have the same latest variable, those
8953 * with the same coefficient for this latest variable (first in absolute value
8954 * and then in actual value) are grouped together.
8955 * This is useful for detecting pairs of constraints that can
8956 * be chained in their printed representation.
8957 *
8958 * Finally, within a group, constraints are sorted according to
8959 * their coefficients (excluding the constant term).
Tobias Grosser52a25232015-02-04 20:55:43 +00008960 */
8961static int sort_constraint_cmp(const void *p1, const void *p2, void *arg)
8962{
8963 isl_int **c1 = (isl_int **) p1;
8964 isl_int **c2 = (isl_int **) p2;
8965 int l1, l2;
8966 unsigned size = *(unsigned *) arg;
Michael Kruse959a8dc2016-01-15 15:54:45 +00008967 int cmp;
Tobias Grosser52a25232015-02-04 20:55:43 +00008968
8969 l1 = isl_seq_last_non_zero(*c1 + 1, size);
8970 l2 = isl_seq_last_non_zero(*c2 + 1, size);
8971
8972 if (l1 != l2)
8973 return l1 - l2;
8974
Michael Kruse959a8dc2016-01-15 15:54:45 +00008975 cmp = isl_int_abs_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
8976 if (cmp != 0)
8977 return cmp;
8978 cmp = isl_int_cmp((*c1)[1 + l1], (*c2)[1 + l1]);
8979 if (cmp != 0)
8980 return -cmp;
8981
Tobias Grosser52a25232015-02-04 20:55:43 +00008982 return isl_seq_cmp(*c1 + 1, *c2 + 1, size);
8983}
8984
Michael Kruse959a8dc2016-01-15 15:54:45 +00008985/* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
8986 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
8987 * and 0 if the two constraints are the same (up to the constant term).
8988 */
8989int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map *bmap,
8990 isl_int *c1, isl_int *c2)
8991{
8992 unsigned total;
8993
8994 if (!bmap)
8995 return -2;
8996 total = isl_basic_map_total_dim(bmap);
8997 return sort_constraint_cmp(&c1, &c2, &total);
8998}
8999
9000__isl_give isl_basic_map *isl_basic_map_sort_constraints(
9001 __isl_take isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +00009002{
9003 unsigned total;
9004
9005 if (!bmap)
9006 return NULL;
9007 if (bmap->n_ineq == 0)
9008 return bmap;
9009 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9010 return bmap;
9011 total = isl_basic_map_total_dim(bmap);
9012 if (isl_sort(bmap->ineq, bmap->n_ineq, sizeof(isl_int *),
9013 &sort_constraint_cmp, &total) < 0)
9014 return isl_basic_map_free(bmap);
9015 return bmap;
9016}
9017
9018__isl_give isl_basic_set *isl_basic_set_sort_constraints(
9019 __isl_take isl_basic_set *bset)
9020{
Tobias Grosser06e15922016-11-16 11:06:47 +00009021 isl_basic_map *bmap = bset_to_bmap(bset);
9022 return bset_from_bmap(isl_basic_map_sort_constraints(bmap));
Tobias Grosser52a25232015-02-04 20:55:43 +00009023}
9024
9025struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
9026{
9027 if (!bmap)
9028 return NULL;
9029 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
9030 return bmap;
9031 bmap = isl_basic_map_remove_redundancies(bmap);
9032 bmap = isl_basic_map_sort_constraints(bmap);
9033 if (bmap)
9034 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
9035 return bmap;
9036}
Tobias Grossercf66ea32017-02-28 07:06:06 +00009037int isl_basic_map_plain_cmp(__isl_keep isl_basic_map *bmap1,
9038 __isl_keep isl_basic_map *bmap2)
Tobias Grosser52a25232015-02-04 20:55:43 +00009039{
9040 int i, cmp;
9041 unsigned total;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00009042 isl_space *space1, *space2;
Tobias Grosser52a25232015-02-04 20:55:43 +00009043
Tobias Grosser3e6070e2015-05-09 09:37:30 +00009044 if (!bmap1 || !bmap2)
9045 return -1;
9046
Tobias Grosser52a25232015-02-04 20:55:43 +00009047 if (bmap1 == bmap2)
9048 return 0;
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00009049 space1 = isl_basic_map_peek_space(bmap1);
9050 space2 = isl_basic_map_peek_space(bmap2);
9051 cmp = isl_space_cmp(space1, space2);
9052 if (cmp)
9053 return cmp;
Tobias Grosser52a25232015-02-04 20:55:43 +00009054 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
9055 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
9056 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
Tobias Grosser52a25232015-02-04 20:55:43 +00009057 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
9058 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9059 return 0;
9060 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
9061 return 1;
9062 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
9063 return -1;
9064 if (bmap1->n_eq != bmap2->n_eq)
9065 return bmap1->n_eq - bmap2->n_eq;
9066 if (bmap1->n_ineq != bmap2->n_ineq)
9067 return bmap1->n_ineq - bmap2->n_ineq;
9068 if (bmap1->n_div != bmap2->n_div)
9069 return bmap1->n_div - bmap2->n_div;
9070 total = isl_basic_map_total_dim(bmap1);
9071 for (i = 0; i < bmap1->n_eq; ++i) {
9072 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
9073 if (cmp)
9074 return cmp;
9075 }
9076 for (i = 0; i < bmap1->n_ineq; ++i) {
9077 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
9078 if (cmp)
9079 return cmp;
9080 }
9081 for (i = 0; i < bmap1->n_div; ++i) {
9082 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
9083 if (cmp)
9084 return cmp;
9085 }
9086 return 0;
9087}
9088
Tobias Grossercf66ea32017-02-28 07:06:06 +00009089int isl_basic_set_plain_cmp(__isl_keep isl_basic_set *bset1,
9090 __isl_keep isl_basic_set *bset2)
Tobias Grosser52a25232015-02-04 20:55:43 +00009091{
9092 return isl_basic_map_plain_cmp(bset1, bset2);
9093}
9094
9095int isl_set_plain_cmp(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
9096{
9097 int i, cmp;
9098
9099 if (set1 == set2)
9100 return 0;
9101 if (set1->n != set2->n)
9102 return set1->n - set2->n;
9103
9104 for (i = 0; i < set1->n; ++i) {
9105 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
9106 if (cmp)
9107 return cmp;
9108 }
9109
9110 return 0;
9111}
9112
Tobias Grosserb2f39922015-05-28 13:32:11 +00009113isl_bool isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
Tobias Grosser52a25232015-02-04 20:55:43 +00009114 __isl_keep isl_basic_map *bmap2)
9115{
Tobias Grossere0f8d592015-05-13 13:10:13 +00009116 if (!bmap1 || !bmap2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009117 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009118 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
9119}
9120
Tobias Grosserb2f39922015-05-28 13:32:11 +00009121isl_bool isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
Tobias Grosser52a25232015-02-04 20:55:43 +00009122 __isl_keep isl_basic_set *bset2)
9123{
Tobias Grosser06e15922016-11-16 11:06:47 +00009124 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1),
9125 bset_to_bmap(bset2));
Tobias Grosser52a25232015-02-04 20:55:43 +00009126}
9127
9128static int qsort_bmap_cmp(const void *p1, const void *p2)
9129{
Tobias Grossercf66ea32017-02-28 07:06:06 +00009130 isl_basic_map *bmap1 = *(isl_basic_map **) p1;
9131 isl_basic_map *bmap2 = *(isl_basic_map **) p2;
Tobias Grosser52a25232015-02-04 20:55:43 +00009132
9133 return isl_basic_map_plain_cmp(bmap1, bmap2);
9134}
9135
9136/* Sort the basic maps of "map" and remove duplicate basic maps.
9137 *
9138 * While removing basic maps, we make sure that the basic maps remain
9139 * sorted because isl_map_normalize expects the basic maps of the result
9140 * to be sorted.
9141 */
9142static __isl_give isl_map *sort_and_remove_duplicates(__isl_take isl_map *map)
9143{
9144 int i, j;
9145
9146 map = isl_map_remove_empty_parts(map);
9147 if (!map)
9148 return NULL;
9149 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
9150 for (i = map->n - 1; i >= 1; --i) {
9151 if (!isl_basic_map_plain_is_equal(map->p[i - 1], map->p[i]))
9152 continue;
9153 isl_basic_map_free(map->p[i-1]);
9154 for (j = i; j < map->n; ++j)
9155 map->p[j - 1] = map->p[j];
9156 map->n--;
9157 }
9158
9159 return map;
9160}
9161
9162/* Remove obvious duplicates among the basic maps of "map".
9163 *
9164 * Unlike isl_map_normalize, this function does not remove redundant
9165 * constraints and only removes duplicates that have exactly the same
9166 * constraints in the input. It does sort the constraints and
9167 * the basic maps to ease the detection of duplicates.
9168 *
9169 * If "map" has already been normalized or if the basic maps are
9170 * disjoint, then there can be no duplicates.
9171 */
9172__isl_give isl_map *isl_map_remove_obvious_duplicates(__isl_take isl_map *map)
9173{
9174 int i;
9175 isl_basic_map *bmap;
9176
9177 if (!map)
9178 return NULL;
9179 if (map->n <= 1)
9180 return map;
9181 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED | ISL_MAP_DISJOINT))
9182 return map;
9183 for (i = 0; i < map->n; ++i) {
9184 bmap = isl_basic_map_copy(map->p[i]);
9185 bmap = isl_basic_map_sort_constraints(bmap);
9186 if (!bmap)
9187 return isl_map_free(map);
9188 isl_basic_map_free(map->p[i]);
9189 map->p[i] = bmap;
9190 }
9191
9192 map = sort_and_remove_duplicates(map);
9193 return map;
9194}
9195
9196/* We normalize in place, but if anything goes wrong we need
9197 * to return NULL, so we need to make sure we don't change the
9198 * meaning of any possible other copies of map.
9199 */
9200__isl_give isl_map *isl_map_normalize(__isl_take isl_map *map)
9201{
9202 int i;
9203 struct isl_basic_map *bmap;
9204
9205 if (!map)
9206 return NULL;
9207 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
9208 return map;
9209 for (i = 0; i < map->n; ++i) {
9210 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
9211 if (!bmap)
9212 goto error;
9213 isl_basic_map_free(map->p[i]);
9214 map->p[i] = bmap;
9215 }
9216
9217 map = sort_and_remove_duplicates(map);
9218 if (map)
9219 ISL_F_SET(map, ISL_MAP_NORMALIZED);
9220 return map;
9221error:
9222 isl_map_free(map);
9223 return NULL;
9224}
9225
9226struct isl_set *isl_set_normalize(struct isl_set *set)
9227{
Tobias Grosser06e15922016-11-16 11:06:47 +00009228 return set_from_map(isl_map_normalize(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +00009229}
9230
Tobias Grosserb2f39922015-05-28 13:32:11 +00009231isl_bool isl_map_plain_is_equal(__isl_keep isl_map *map1,
9232 __isl_keep isl_map *map2)
Tobias Grosser52a25232015-02-04 20:55:43 +00009233{
9234 int i;
Tobias Grosserb2f39922015-05-28 13:32:11 +00009235 isl_bool equal;
Tobias Grosser52a25232015-02-04 20:55:43 +00009236
9237 if (!map1 || !map2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009238 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009239
9240 if (map1 == map2)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009241 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +00009242 if (!isl_space_is_equal(map1->dim, map2->dim))
Tobias Grosserb2f39922015-05-28 13:32:11 +00009243 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +00009244
9245 map1 = isl_map_copy(map1);
9246 map2 = isl_map_copy(map2);
9247 map1 = isl_map_normalize(map1);
9248 map2 = isl_map_normalize(map2);
9249 if (!map1 || !map2)
9250 goto error;
9251 equal = map1->n == map2->n;
9252 for (i = 0; equal && i < map1->n; ++i) {
9253 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
9254 if (equal < 0)
9255 goto error;
9256 }
9257 isl_map_free(map1);
9258 isl_map_free(map2);
9259 return equal;
9260error:
9261 isl_map_free(map1);
9262 isl_map_free(map2);
Tobias Grosserb2f39922015-05-28 13:32:11 +00009263 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009264}
9265
Tobias Grosserb2f39922015-05-28 13:32:11 +00009266isl_bool isl_set_plain_is_equal(__isl_keep isl_set *set1,
9267 __isl_keep isl_set *set2)
Tobias Grosser52a25232015-02-04 20:55:43 +00009268{
Tobias Grosser06e15922016-11-16 11:06:47 +00009269 return isl_map_plain_is_equal(set_to_map(set1), set_to_map(set2));
Tobias Grosser52a25232015-02-04 20:55:43 +00009270}
9271
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009272/* Return the basic maps in "map" as a list.
Tobias Grosser52a25232015-02-04 20:55:43 +00009273 */
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009274__isl_give isl_basic_map_list *isl_map_get_basic_map_list(
9275 __isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +00009276{
9277 int i;
9278 isl_ctx *ctx;
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009279 isl_basic_map_list *list;
Tobias Grosser52a25232015-02-04 20:55:43 +00009280
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009281 if (!map)
Tobias Grosser52a25232015-02-04 20:55:43 +00009282 return NULL;
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009283 ctx = isl_map_get_ctx(map);
9284 list = isl_basic_map_list_alloc(ctx, map->n);
Tobias Grosser52a25232015-02-04 20:55:43 +00009285
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009286 for (i = 0; i < map->n; ++i) {
9287 isl_basic_map *bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00009288
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009289 bmap = isl_basic_map_copy(map->p[i]);
9290 list = isl_basic_map_list_add(list, bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00009291 }
9292
9293 return list;
9294}
9295
9296/* Return the intersection of the elements in the non-empty list "list".
9297 * All elements are assumed to live in the same space.
9298 */
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009299__isl_give isl_basic_map *isl_basic_map_list_intersect(
9300 __isl_take isl_basic_map_list *list)
Tobias Grosser52a25232015-02-04 20:55:43 +00009301{
9302 int i, n;
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009303 isl_basic_map *bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00009304
9305 if (!list)
9306 return NULL;
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009307 n = isl_basic_map_list_n_basic_map(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00009308 if (n < 1)
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009309 isl_die(isl_basic_map_list_get_ctx(list), isl_error_invalid,
Tobias Grosser52a25232015-02-04 20:55:43 +00009310 "expecting non-empty list", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +00009311
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009312 bmap = isl_basic_map_list_get_basic_map(list, 0);
9313 for (i = 1; i < n; ++i) {
9314 isl_basic_map *bmap_i;
9315
9316 bmap_i = isl_basic_map_list_get_basic_map(list, i);
9317 bmap = isl_basic_map_intersect(bmap, bmap_i);
Tobias Grosser52a25232015-02-04 20:55:43 +00009318 }
9319
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009320 isl_basic_map_list_free(list);
9321 return bmap;
Tobias Grosser52a25232015-02-04 20:55:43 +00009322error:
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009323 isl_basic_map_list_free(list);
Tobias Grosser52a25232015-02-04 20:55:43 +00009324 return NULL;
9325}
9326
Tobias Grosser1fa7b972015-02-16 19:33:40 +00009327/* Return the intersection of the elements in the non-empty list "list".
9328 * All elements are assumed to live in the same space.
9329 */
9330__isl_give isl_basic_set *isl_basic_set_list_intersect(
9331 __isl_take isl_basic_set_list *list)
9332{
9333 return isl_basic_map_list_intersect(list);
9334}
9335
Tobias Grossereab0943e2016-11-22 21:31:59 +00009336/* Return the union of the elements of "list".
9337 * The list is required to have at least one element.
9338 */
9339__isl_give isl_set *isl_basic_set_list_union(
9340 __isl_take isl_basic_set_list *list)
9341{
9342 int i, n;
9343 isl_space *space;
9344 isl_basic_set *bset;
9345 isl_set *set;
9346
9347 if (!list)
9348 return NULL;
9349 n = isl_basic_set_list_n_basic_set(list);
9350 if (n < 1)
9351 isl_die(isl_basic_set_list_get_ctx(list), isl_error_invalid,
9352 "expecting non-empty list", goto error);
9353
9354 bset = isl_basic_set_list_get_basic_set(list, 0);
9355 space = isl_basic_set_get_space(bset);
9356 isl_basic_set_free(bset);
9357
9358 set = isl_set_alloc_space(space, n, 0);
9359 for (i = 0; i < n; ++i) {
9360 bset = isl_basic_set_list_get_basic_set(list, i);
9361 set = isl_set_add_basic_set(set, bset);
9362 }
9363
9364 isl_basic_set_list_free(list);
9365 return set;
9366error:
9367 isl_basic_set_list_free(list);
9368 return NULL;
9369}
9370
Tobias Grossera67ac972016-02-26 11:35:12 +00009371/* Return the union of the elements in the non-empty list "list".
9372 * All elements are assumed to live in the same space.
9373 */
9374__isl_give isl_set *isl_set_list_union(__isl_take isl_set_list *list)
9375{
9376 int i, n;
9377 isl_set *set;
9378
9379 if (!list)
9380 return NULL;
9381 n = isl_set_list_n_set(list);
9382 if (n < 1)
9383 isl_die(isl_set_list_get_ctx(list), isl_error_invalid,
9384 "expecting non-empty list", goto error);
9385
9386 set = isl_set_list_get_set(list, 0);
9387 for (i = 1; i < n; ++i) {
9388 isl_set *set_i;
9389
9390 set_i = isl_set_list_get_set(list, i);
9391 set = isl_set_union(set, set_i);
9392 }
9393
9394 isl_set_list_free(list);
9395 return set;
9396error:
9397 isl_set_list_free(list);
9398 return NULL;
9399}
9400
Tobias Grosser52a25232015-02-04 20:55:43 +00009401struct isl_basic_map *isl_basic_map_product(
9402 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
9403{
9404 isl_space *dim_result = NULL;
9405 struct isl_basic_map *bmap;
9406 unsigned in1, in2, out1, out2, nparam, total, pos;
9407 struct isl_dim_map *dim_map1, *dim_map2;
9408
Tobias Grossere5671e52017-03-10 09:17:55 +00009409 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00009410 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009411 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
9412 isl_space_copy(bmap2->dim));
9413
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00009414 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9415 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9416 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9417 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9418 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
Tobias Grosser52a25232015-02-04 20:55:43 +00009419
9420 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
9421 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9422 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9423 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9424 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9425 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9426 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9427 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9428 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9429 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9430 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9431
9432 bmap = isl_basic_map_alloc_space(dim_result,
9433 bmap1->n_div + bmap2->n_div,
9434 bmap1->n_eq + bmap2->n_eq,
9435 bmap1->n_ineq + bmap2->n_ineq);
9436 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9437 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9438 bmap = isl_basic_map_simplify(bmap);
9439 return isl_basic_map_finalize(bmap);
9440error:
9441 isl_basic_map_free(bmap1);
9442 isl_basic_map_free(bmap2);
9443 return NULL;
9444}
9445
9446__isl_give isl_basic_map *isl_basic_map_flat_product(
9447 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9448{
9449 isl_basic_map *prod;
9450
9451 prod = isl_basic_map_product(bmap1, bmap2);
9452 prod = isl_basic_map_flatten(prod);
9453 return prod;
9454}
9455
9456__isl_give isl_basic_set *isl_basic_set_flat_product(
9457 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
9458{
9459 return isl_basic_map_flat_range_product(bset1, bset2);
9460}
9461
9462__isl_give isl_basic_map *isl_basic_map_domain_product(
9463 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9464{
9465 isl_space *space_result = NULL;
9466 isl_basic_map *bmap;
9467 unsigned in1, in2, out, nparam, total, pos;
9468 struct isl_dim_map *dim_map1, *dim_map2;
9469
9470 if (!bmap1 || !bmap2)
9471 goto error;
9472
9473 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
9474 isl_space_copy(bmap2->dim));
9475
9476 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
9477 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
9478 out = isl_basic_map_dim(bmap1, isl_dim_out);
9479 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
9480
9481 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
9482 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9483 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9484 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9485 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9486 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9487 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
9488 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
9489 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
9490 isl_dim_map_div(dim_map1, bmap1, pos += out);
9491 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9492
9493 bmap = isl_basic_map_alloc_space(space_result,
9494 bmap1->n_div + bmap2->n_div,
9495 bmap1->n_eq + bmap2->n_eq,
9496 bmap1->n_ineq + bmap2->n_ineq);
9497 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9498 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
9499 bmap = isl_basic_map_simplify(bmap);
9500 return isl_basic_map_finalize(bmap);
9501error:
9502 isl_basic_map_free(bmap1);
9503 isl_basic_map_free(bmap2);
9504 return NULL;
9505}
9506
9507__isl_give isl_basic_map *isl_basic_map_range_product(
9508 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9509{
Tobias Grosser72745c22017-02-17 05:11:16 +00009510 isl_bool rational;
Tobias Grosser52a25232015-02-04 20:55:43 +00009511 isl_space *dim_result = NULL;
9512 isl_basic_map *bmap;
9513 unsigned in, out1, out2, nparam, total, pos;
9514 struct isl_dim_map *dim_map1, *dim_map2;
9515
Tobias Grosser5652c9c2016-10-01 19:46:51 +00009516 rational = isl_basic_map_is_rational(bmap1);
9517 if (rational >= 0 && rational)
9518 rational = isl_basic_map_is_rational(bmap2);
9519 if (!bmap1 || !bmap2 || rational < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00009520 goto error;
9521
Tobias Grossere5671e52017-03-10 09:17:55 +00009522 if (isl_basic_map_check_equal_params(bmap1, bmap2) < 0)
9523 goto error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009524
9525 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
9526 isl_space_copy(bmap2->dim));
9527
9528 in = isl_basic_map_dim(bmap1, isl_dim_in);
Tobias Grosserf4fe34b2017-03-16 21:33:20 +00009529 out1 = isl_basic_map_dim(bmap1, isl_dim_out);
9530 out2 = isl_basic_map_dim(bmap2, isl_dim_out);
9531 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
Tobias Grosser52a25232015-02-04 20:55:43 +00009532
9533 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
9534 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
9535 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
9536 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
9537 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
9538 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
9539 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
9540 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
9541 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
9542 isl_dim_map_div(dim_map1, bmap1, pos += out2);
9543 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
9544
9545 bmap = isl_basic_map_alloc_space(dim_result,
9546 bmap1->n_div + bmap2->n_div,
9547 bmap1->n_eq + bmap2->n_eq,
9548 bmap1->n_ineq + bmap2->n_ineq);
9549 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
9550 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
Tobias Grosser5652c9c2016-10-01 19:46:51 +00009551 if (rational)
9552 bmap = isl_basic_map_set_rational(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +00009553 bmap = isl_basic_map_simplify(bmap);
9554 return isl_basic_map_finalize(bmap);
9555error:
9556 isl_basic_map_free(bmap1);
9557 isl_basic_map_free(bmap2);
9558 return NULL;
9559}
9560
9561__isl_give isl_basic_map *isl_basic_map_flat_range_product(
9562 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
9563{
9564 isl_basic_map *prod;
9565
9566 prod = isl_basic_map_range_product(bmap1, bmap2);
9567 prod = isl_basic_map_flatten_range(prod);
9568 return prod;
9569}
9570
9571/* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9572 * and collect the results.
9573 * The result live in the space obtained by calling "space_product"
9574 * on the spaces of "map1" and "map2".
9575 * If "remove_duplicates" is set then the result may contain duplicates
9576 * (even if the inputs do not) and so we try and remove the obvious
9577 * duplicates.
9578 */
9579static __isl_give isl_map *map_product(__isl_take isl_map *map1,
9580 __isl_take isl_map *map2,
9581 __isl_give isl_space *(*space_product)(__isl_take isl_space *left,
9582 __isl_take isl_space *right),
9583 __isl_give isl_basic_map *(*basic_map_product)(
9584 __isl_take isl_basic_map *left,
9585 __isl_take isl_basic_map *right),
9586 int remove_duplicates)
9587{
9588 unsigned flags = 0;
9589 struct isl_map *result;
9590 int i, j;
Tobias Grossere5671e52017-03-10 09:17:55 +00009591 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +00009592
Tobias Grossere5671e52017-03-10 09:17:55 +00009593 m = isl_map_has_equal_params(map1, map2);
9594 if (m < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +00009595 goto error;
Tobias Grossere5671e52017-03-10 09:17:55 +00009596 if (!m)
9597 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
9598 "parameters don't match", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +00009599
9600 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
9601 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
9602 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
9603
9604 result = isl_map_alloc_space(space_product(isl_space_copy(map1->dim),
9605 isl_space_copy(map2->dim)),
9606 map1->n * map2->n, flags);
9607 if (!result)
9608 goto error;
9609 for (i = 0; i < map1->n; ++i)
9610 for (j = 0; j < map2->n; ++j) {
9611 struct isl_basic_map *part;
9612 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
9613 isl_basic_map_copy(map2->p[j]));
9614 if (isl_basic_map_is_empty(part))
9615 isl_basic_map_free(part);
9616 else
9617 result = isl_map_add_basic_map(result, part);
9618 if (!result)
9619 goto error;
9620 }
9621 if (remove_duplicates)
9622 result = isl_map_remove_obvious_duplicates(result);
9623 isl_map_free(map1);
9624 isl_map_free(map2);
9625 return result;
9626error:
9627 isl_map_free(map1);
9628 isl_map_free(map2);
9629 return NULL;
9630}
9631
9632/* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9633 */
9634static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
9635 __isl_take isl_map *map2)
9636{
9637 return map_product(map1, map2, &isl_space_product,
9638 &isl_basic_map_product, 0);
9639}
9640
9641__isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
9642 __isl_take isl_map *map2)
9643{
9644 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
9645}
9646
9647/* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9648 */
9649__isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
9650 __isl_take isl_map *map2)
9651{
9652 isl_map *prod;
9653
9654 prod = isl_map_product(map1, map2);
9655 prod = isl_map_flatten(prod);
9656 return prod;
9657}
9658
9659/* Given two set A and B, construct its Cartesian product A x B.
9660 */
9661struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
9662{
9663 return isl_map_range_product(set1, set2);
9664}
9665
9666__isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
9667 __isl_take isl_set *set2)
9668{
9669 return isl_map_flat_range_product(set1, set2);
9670}
9671
9672/* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
9673 */
9674static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
9675 __isl_take isl_map *map2)
9676{
9677 return map_product(map1, map2, &isl_space_domain_product,
9678 &isl_basic_map_domain_product, 1);
9679}
9680
9681/* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
9682 */
9683static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
9684 __isl_take isl_map *map2)
9685{
9686 return map_product(map1, map2, &isl_space_range_product,
9687 &isl_basic_map_range_product, 1);
9688}
9689
9690__isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
9691 __isl_take isl_map *map2)
9692{
9693 return isl_map_align_params_map_map_and(map1, map2,
9694 &map_domain_product_aligned);
9695}
9696
9697__isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
9698 __isl_take isl_map *map2)
9699{
9700 return isl_map_align_params_map_map_and(map1, map2,
9701 &map_range_product_aligned);
9702}
9703
9704/* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
9705 */
9706__isl_give isl_map *isl_map_factor_domain(__isl_take isl_map *map)
9707{
9708 isl_space *space;
9709 int total1, keep1, total2, keep2;
9710
9711 if (!map)
9712 return NULL;
9713 if (!isl_space_domain_is_wrapping(map->dim) ||
9714 !isl_space_range_is_wrapping(map->dim))
9715 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9716 "not a product", return isl_map_free(map));
9717
9718 space = isl_map_get_space(map);
9719 total1 = isl_space_dim(space, isl_dim_in);
9720 total2 = isl_space_dim(space, isl_dim_out);
9721 space = isl_space_factor_domain(space);
9722 keep1 = isl_space_dim(space, isl_dim_in);
9723 keep2 = isl_space_dim(space, isl_dim_out);
9724 map = isl_map_project_out(map, isl_dim_in, keep1, total1 - keep1);
9725 map = isl_map_project_out(map, isl_dim_out, keep2, total2 - keep2);
9726 map = isl_map_reset_space(map, space);
9727
9728 return map;
9729}
9730
9731/* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
9732 */
9733__isl_give isl_map *isl_map_factor_range(__isl_take isl_map *map)
9734{
9735 isl_space *space;
9736 int total1, keep1, total2, keep2;
9737
9738 if (!map)
9739 return NULL;
9740 if (!isl_space_domain_is_wrapping(map->dim) ||
9741 !isl_space_range_is_wrapping(map->dim))
9742 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9743 "not a product", return isl_map_free(map));
9744
9745 space = isl_map_get_space(map);
9746 total1 = isl_space_dim(space, isl_dim_in);
9747 total2 = isl_space_dim(space, isl_dim_out);
9748 space = isl_space_factor_range(space);
9749 keep1 = isl_space_dim(space, isl_dim_in);
9750 keep2 = isl_space_dim(space, isl_dim_out);
9751 map = isl_map_project_out(map, isl_dim_in, 0, total1 - keep1);
9752 map = isl_map_project_out(map, isl_dim_out, 0, total2 - keep2);
9753 map = isl_map_reset_space(map, space);
9754
9755 return map;
9756}
9757
9758/* Given a map of the form [A -> B] -> C, return the map A -> C.
9759 */
9760__isl_give isl_map *isl_map_domain_factor_domain(__isl_take isl_map *map)
9761{
9762 isl_space *space;
9763 int total, keep;
9764
9765 if (!map)
9766 return NULL;
9767 if (!isl_space_domain_is_wrapping(map->dim))
9768 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9769 "domain is not a product", return isl_map_free(map));
9770
9771 space = isl_map_get_space(map);
9772 total = isl_space_dim(space, isl_dim_in);
9773 space = isl_space_domain_factor_domain(space);
9774 keep = isl_space_dim(space, isl_dim_in);
9775 map = isl_map_project_out(map, isl_dim_in, keep, total - keep);
9776 map = isl_map_reset_space(map, space);
9777
9778 return map;
9779}
9780
9781/* Given a map of the form [A -> B] -> C, return the map B -> C.
9782 */
9783__isl_give isl_map *isl_map_domain_factor_range(__isl_take isl_map *map)
9784{
9785 isl_space *space;
9786 int total, keep;
9787
9788 if (!map)
9789 return NULL;
9790 if (!isl_space_domain_is_wrapping(map->dim))
9791 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9792 "domain is not a product", return isl_map_free(map));
9793
9794 space = isl_map_get_space(map);
9795 total = isl_space_dim(space, isl_dim_in);
9796 space = isl_space_domain_factor_range(space);
9797 keep = isl_space_dim(space, isl_dim_in);
9798 map = isl_map_project_out(map, isl_dim_in, 0, total - keep);
9799 map = isl_map_reset_space(map, space);
9800
9801 return map;
9802}
9803
9804/* Given a map A -> [B -> C], extract the map A -> B.
9805 */
9806__isl_give isl_map *isl_map_range_factor_domain(__isl_take isl_map *map)
9807{
9808 isl_space *space;
9809 int total, keep;
9810
9811 if (!map)
9812 return NULL;
9813 if (!isl_space_range_is_wrapping(map->dim))
9814 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9815 "range is not a product", return isl_map_free(map));
9816
9817 space = isl_map_get_space(map);
9818 total = isl_space_dim(space, isl_dim_out);
9819 space = isl_space_range_factor_domain(space);
9820 keep = isl_space_dim(space, isl_dim_out);
9821 map = isl_map_project_out(map, isl_dim_out, keep, total - keep);
9822 map = isl_map_reset_space(map, space);
9823
9824 return map;
9825}
9826
9827/* Given a map A -> [B -> C], extract the map A -> C.
9828 */
9829__isl_give isl_map *isl_map_range_factor_range(__isl_take isl_map *map)
9830{
9831 isl_space *space;
9832 int total, keep;
9833
9834 if (!map)
9835 return NULL;
9836 if (!isl_space_range_is_wrapping(map->dim))
9837 isl_die(isl_map_get_ctx(map), isl_error_invalid,
9838 "range is not a product", return isl_map_free(map));
9839
9840 space = isl_map_get_space(map);
9841 total = isl_space_dim(space, isl_dim_out);
9842 space = isl_space_range_factor_range(space);
9843 keep = isl_space_dim(space, isl_dim_out);
9844 map = isl_map_project_out(map, isl_dim_out, 0, total - keep);
9845 map = isl_map_reset_space(map, space);
9846
9847 return map;
9848}
9849
9850/* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
9851 */
9852__isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
9853 __isl_take isl_map *map2)
9854{
9855 isl_map *prod;
9856
9857 prod = isl_map_domain_product(map1, map2);
9858 prod = isl_map_flatten_domain(prod);
9859 return prod;
9860}
9861
9862/* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
9863 */
9864__isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
9865 __isl_take isl_map *map2)
9866{
9867 isl_map *prod;
9868
9869 prod = isl_map_range_product(map1, map2);
9870 prod = isl_map_flatten_range(prod);
9871 return prod;
9872}
9873
9874uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
9875{
9876 int i;
9877 uint32_t hash = isl_hash_init();
9878 unsigned total;
9879
9880 if (!bmap)
9881 return 0;
9882 bmap = isl_basic_map_copy(bmap);
9883 bmap = isl_basic_map_normalize(bmap);
9884 if (!bmap)
9885 return 0;
9886 total = isl_basic_map_total_dim(bmap);
9887 isl_hash_byte(hash, bmap->n_eq & 0xFF);
9888 for (i = 0; i < bmap->n_eq; ++i) {
9889 uint32_t c_hash;
9890 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
9891 isl_hash_hash(hash, c_hash);
9892 }
9893 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
9894 for (i = 0; i < bmap->n_ineq; ++i) {
9895 uint32_t c_hash;
9896 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
9897 isl_hash_hash(hash, c_hash);
9898 }
9899 isl_hash_byte(hash, bmap->n_div & 0xFF);
9900 for (i = 0; i < bmap->n_div; ++i) {
9901 uint32_t c_hash;
9902 if (isl_int_is_zero(bmap->div[i][0]))
9903 continue;
9904 isl_hash_byte(hash, i & 0xFF);
9905 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
9906 isl_hash_hash(hash, c_hash);
9907 }
9908 isl_basic_map_free(bmap);
9909 return hash;
9910}
9911
9912uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
9913{
Tobias Grosser06e15922016-11-16 11:06:47 +00009914 return isl_basic_map_get_hash(bset_to_bmap(bset));
Tobias Grosser52a25232015-02-04 20:55:43 +00009915}
9916
9917uint32_t isl_map_get_hash(__isl_keep isl_map *map)
9918{
9919 int i;
9920 uint32_t hash;
9921
9922 if (!map)
9923 return 0;
9924 map = isl_map_copy(map);
9925 map = isl_map_normalize(map);
9926 if (!map)
9927 return 0;
9928
9929 hash = isl_hash_init();
9930 for (i = 0; i < map->n; ++i) {
9931 uint32_t bmap_hash;
9932 bmap_hash = isl_basic_map_get_hash(map->p[i]);
9933 isl_hash_hash(hash, bmap_hash);
9934 }
9935
9936 isl_map_free(map);
9937
9938 return hash;
9939}
9940
9941uint32_t isl_set_get_hash(__isl_keep isl_set *set)
9942{
Tobias Grosser06e15922016-11-16 11:06:47 +00009943 return isl_map_get_hash(set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +00009944}
9945
Tobias Grosser52a25232015-02-04 20:55:43 +00009946/* Return the number of basic maps in the (current) representation of "map".
9947 */
9948int isl_map_n_basic_map(__isl_keep isl_map *map)
9949{
9950 return map ? map->n : 0;
9951}
9952
9953int isl_set_n_basic_set(__isl_keep isl_set *set)
9954{
9955 return set ? set->n : 0;
9956}
9957
Tobias Grosserb2f39922015-05-28 13:32:11 +00009958isl_stat isl_map_foreach_basic_map(__isl_keep isl_map *map,
9959 isl_stat (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
Tobias Grosser52a25232015-02-04 20:55:43 +00009960{
9961 int i;
9962
9963 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009964 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009965
9966 for (i = 0; i < map->n; ++i)
9967 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009968 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009969
Tobias Grosserb2f39922015-05-28 13:32:11 +00009970 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00009971}
9972
Tobias Grosserb2f39922015-05-28 13:32:11 +00009973isl_stat isl_set_foreach_basic_set(__isl_keep isl_set *set,
9974 isl_stat (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
Tobias Grosser52a25232015-02-04 20:55:43 +00009975{
9976 int i;
9977
9978 if (!set)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009979 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009980
9981 for (i = 0; i < set->n; ++i)
9982 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +00009983 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +00009984
Tobias Grosserb2f39922015-05-28 13:32:11 +00009985 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +00009986}
9987
Tobias Grosser4db55312015-06-30 08:22:14 +00009988/* Return a list of basic sets, the union of which is equal to "set".
9989 */
9990__isl_give isl_basic_set_list *isl_set_get_basic_set_list(
9991 __isl_keep isl_set *set)
9992{
9993 int i;
9994 isl_basic_set_list *list;
9995
9996 if (!set)
9997 return NULL;
9998
9999 list = isl_basic_set_list_alloc(isl_set_get_ctx(set), set->n);
10000 for (i = 0; i < set->n; ++i) {
10001 isl_basic_set *bset;
10002
10003 bset = isl_basic_set_copy(set->p[i]);
10004 list = isl_basic_set_list_add(list, bset);
10005 }
10006
10007 return list;
10008}
10009
Tobias Grosser52a25232015-02-04 20:55:43 +000010010__isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
10011{
10012 isl_space *dim;
10013
10014 if (!bset)
10015 return NULL;
10016
10017 bset = isl_basic_set_cow(bset);
10018 if (!bset)
10019 return NULL;
10020
10021 dim = isl_basic_set_get_space(bset);
10022 dim = isl_space_lift(dim, bset->n_div);
10023 if (!dim)
10024 goto error;
10025 isl_space_free(bset->dim);
10026 bset->dim = dim;
10027 bset->extra -= bset->n_div;
10028 bset->n_div = 0;
10029
10030 bset = isl_basic_set_finalize(bset);
10031
10032 return bset;
10033error:
10034 isl_basic_set_free(bset);
10035 return NULL;
10036}
10037
10038__isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
10039{
10040 int i;
10041 isl_space *dim;
10042 unsigned n_div;
10043
10044 set = isl_set_align_divs(set);
10045
10046 if (!set)
10047 return NULL;
10048
10049 set = isl_set_cow(set);
10050 if (!set)
10051 return NULL;
10052
10053 n_div = set->p[0]->n_div;
10054 dim = isl_set_get_space(set);
10055 dim = isl_space_lift(dim, n_div);
10056 if (!dim)
10057 goto error;
10058 isl_space_free(set->dim);
10059 set->dim = dim;
10060
10061 for (i = 0; i < set->n; ++i) {
10062 set->p[i] = isl_basic_set_lift(set->p[i]);
10063 if (!set->p[i])
10064 goto error;
10065 }
10066
10067 return set;
10068error:
10069 isl_set_free(set);
10070 return NULL;
10071}
10072
Tobias Grosser52a25232015-02-04 20:55:43 +000010073int isl_basic_set_size(__isl_keep isl_basic_set *bset)
10074{
10075 unsigned dim;
10076 int size = 0;
10077
10078 if (!bset)
10079 return -1;
10080
10081 dim = isl_basic_set_total_dim(bset);
10082 size += bset->n_eq * (1 + dim);
10083 size += bset->n_ineq * (1 + dim);
10084 size += bset->n_div * (2 + dim);
10085
10086 return size;
10087}
10088
10089int isl_set_size(__isl_keep isl_set *set)
10090{
10091 int i;
10092 int size = 0;
10093
10094 if (!set)
10095 return -1;
10096
10097 for (i = 0; i < set->n; ++i)
10098 size += isl_basic_set_size(set->p[i]);
10099
10100 return size;
10101}
10102
10103/* Check if there is any lower bound (if lower == 0) and/or upper
10104 * bound (if upper == 0) on the specified dim.
10105 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010106static isl_bool basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010107 enum isl_dim_type type, unsigned pos, int lower, int upper)
10108{
10109 int i;
10110
Tobias Grosser94e53712016-12-31 07:46:11 +000010111 if (isl_basic_map_check_range(bmap, type, pos, 1) < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010112 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010113
Tobias Grosser52a25232015-02-04 20:55:43 +000010114 pos += isl_basic_map_offset(bmap, type);
10115
10116 for (i = 0; i < bmap->n_div; ++i) {
10117 if (isl_int_is_zero(bmap->div[i][0]))
10118 continue;
10119 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
Tobias Grosserb2f39922015-05-28 13:32:11 +000010120 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010121 }
10122
10123 for (i = 0; i < bmap->n_eq; ++i)
10124 if (!isl_int_is_zero(bmap->eq[i][pos]))
Tobias Grosserb2f39922015-05-28 13:32:11 +000010125 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010126
10127 for (i = 0; i < bmap->n_ineq; ++i) {
10128 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
10129 if (sgn > 0)
10130 lower = 1;
10131 if (sgn < 0)
10132 upper = 1;
10133 }
10134
10135 return lower && upper;
10136}
10137
Tobias Grosser72745c22017-02-17 05:11:16 +000010138isl_bool isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010139 enum isl_dim_type type, unsigned pos)
10140{
10141 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
10142}
10143
Tobias Grosserb2f39922015-05-28 13:32:11 +000010144isl_bool isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010145 enum isl_dim_type type, unsigned pos)
10146{
10147 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
10148}
10149
Tobias Grosserb2f39922015-05-28 13:32:11 +000010150isl_bool isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010151 enum isl_dim_type type, unsigned pos)
10152{
10153 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
10154}
10155
Tobias Grosser72745c22017-02-17 05:11:16 +000010156isl_bool isl_map_dim_is_bounded(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +000010157 enum isl_dim_type type, unsigned pos)
10158{
10159 int i;
10160
10161 if (!map)
Tobias Grosser72745c22017-02-17 05:11:16 +000010162 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010163
10164 for (i = 0; i < map->n; ++i) {
Tobias Grosser72745c22017-02-17 05:11:16 +000010165 isl_bool bounded;
Tobias Grosser52a25232015-02-04 20:55:43 +000010166 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
10167 if (bounded < 0 || !bounded)
10168 return bounded;
10169 }
10170
Tobias Grosser72745c22017-02-17 05:11:16 +000010171 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010172}
10173
Tobias Grosser72745c22017-02-17 05:11:16 +000010174/* Return true if the specified dim is involved in both an upper bound
Tobias Grosser52a25232015-02-04 20:55:43 +000010175 * and a lower bound.
10176 */
Tobias Grosser72745c22017-02-17 05:11:16 +000010177isl_bool isl_set_dim_is_bounded(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +000010178 enum isl_dim_type type, unsigned pos)
10179{
Tobias Grosser06e15922016-11-16 11:06:47 +000010180 return isl_map_dim_is_bounded(set_to_map(set), type, pos);
Tobias Grosser52a25232015-02-04 20:55:43 +000010181}
10182
10183/* Does "map" have a bound (according to "fn") for any of its basic maps?
10184 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010185static isl_bool has_any_bound(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +000010186 enum isl_dim_type type, unsigned pos,
Tobias Grosserb2f39922015-05-28 13:32:11 +000010187 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010188 enum isl_dim_type type, unsigned pos))
10189{
10190 int i;
10191
10192 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010193 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010194
10195 for (i = 0; i < map->n; ++i) {
Tobias Grosserb2f39922015-05-28 13:32:11 +000010196 isl_bool bounded;
Tobias Grosser52a25232015-02-04 20:55:43 +000010197 bounded = fn(map->p[i], type, pos);
10198 if (bounded < 0 || bounded)
10199 return bounded;
10200 }
10201
Tobias Grosserb2f39922015-05-28 13:32:11 +000010202 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010203}
10204
10205/* Return 1 if the specified dim is involved in any lower bound.
10206 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010207isl_bool isl_set_dim_has_any_lower_bound(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +000010208 enum isl_dim_type type, unsigned pos)
10209{
10210 return has_any_bound(set, type, pos,
10211 &isl_basic_map_dim_has_lower_bound);
10212}
10213
10214/* Return 1 if the specified dim is involved in any upper bound.
10215 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010216isl_bool isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +000010217 enum isl_dim_type type, unsigned pos)
10218{
10219 return has_any_bound(set, type, pos,
10220 &isl_basic_map_dim_has_upper_bound);
10221}
10222
10223/* Does "map" have a bound (according to "fn") for all of its basic maps?
10224 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010225static isl_bool has_bound(__isl_keep isl_map *map,
Tobias Grosser52a25232015-02-04 20:55:43 +000010226 enum isl_dim_type type, unsigned pos,
Tobias Grosserb2f39922015-05-28 13:32:11 +000010227 isl_bool (*fn)(__isl_keep isl_basic_map *bmap,
Tobias Grosser52a25232015-02-04 20:55:43 +000010228 enum isl_dim_type type, unsigned pos))
10229{
10230 int i;
10231
10232 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010233 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010234
10235 for (i = 0; i < map->n; ++i) {
Tobias Grosserb2f39922015-05-28 13:32:11 +000010236 isl_bool bounded;
Tobias Grosser52a25232015-02-04 20:55:43 +000010237 bounded = fn(map->p[i], type, pos);
10238 if (bounded < 0 || !bounded)
10239 return bounded;
10240 }
10241
Tobias Grosserb2f39922015-05-28 13:32:11 +000010242 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010243}
10244
10245/* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10246 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010247isl_bool isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +000010248 enum isl_dim_type type, unsigned pos)
10249{
10250 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
10251}
10252
10253/* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10254 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010255isl_bool isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
Tobias Grosser52a25232015-02-04 20:55:43 +000010256 enum isl_dim_type type, unsigned pos)
10257{
10258 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
10259}
10260
10261/* For each of the "n" variables starting at "first", determine
10262 * the sign of the variable and put the results in the first "n"
10263 * elements of the array "signs".
10264 * Sign
10265 * 1 means that the variable is non-negative
10266 * -1 means that the variable is non-positive
10267 * 0 means the variable attains both positive and negative values.
10268 */
Tobias Grosser72745c22017-02-17 05:11:16 +000010269isl_stat isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
Tobias Grosser52a25232015-02-04 20:55:43 +000010270 unsigned first, unsigned n, int *signs)
10271{
10272 isl_vec *bound = NULL;
10273 struct isl_tab *tab = NULL;
10274 struct isl_tab_undo *snap;
10275 int i;
10276
10277 if (!bset || !signs)
Tobias Grosser72745c22017-02-17 05:11:16 +000010278 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010279
10280 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
10281 tab = isl_tab_from_basic_set(bset, 0);
10282 if (!bound || !tab)
10283 goto error;
10284
10285 isl_seq_clr(bound->el, bound->size);
10286 isl_int_set_si(bound->el[0], -1);
10287
10288 snap = isl_tab_snap(tab);
10289 for (i = 0; i < n; ++i) {
10290 int empty;
10291
10292 isl_int_set_si(bound->el[1 + first + i], -1);
10293 if (isl_tab_add_ineq(tab, bound->el) < 0)
10294 goto error;
10295 empty = tab->empty;
10296 isl_int_set_si(bound->el[1 + first + i], 0);
10297 if (isl_tab_rollback(tab, snap) < 0)
10298 goto error;
10299
10300 if (empty) {
10301 signs[i] = 1;
10302 continue;
10303 }
10304
10305 isl_int_set_si(bound->el[1 + first + i], 1);
10306 if (isl_tab_add_ineq(tab, bound->el) < 0)
10307 goto error;
10308 empty = tab->empty;
10309 isl_int_set_si(bound->el[1 + first + i], 0);
10310 if (isl_tab_rollback(tab, snap) < 0)
10311 goto error;
10312
10313 signs[i] = empty ? -1 : 0;
10314 }
10315
10316 isl_tab_free(tab);
10317 isl_vec_free(bound);
Tobias Grosser72745c22017-02-17 05:11:16 +000010318 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +000010319error:
10320 isl_tab_free(tab);
10321 isl_vec_free(bound);
Tobias Grosser72745c22017-02-17 05:11:16 +000010322 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010323}
10324
Tobias Grosser72745c22017-02-17 05:11:16 +000010325isl_stat isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
Tobias Grosser52a25232015-02-04 20:55:43 +000010326 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
10327{
10328 if (!bset || !signs)
Tobias Grosser72745c22017-02-17 05:11:16 +000010329 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010330 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
Tobias Grosser72745c22017-02-17 05:11:16 +000010331 return isl_stat_error);
Tobias Grosser52a25232015-02-04 20:55:43 +000010332
10333 first += pos(bset->dim, type) - 1;
10334 return isl_basic_set_vars_get_sign(bset, first, n, signs);
10335}
10336
10337/* Is it possible for the integer division "div" to depend (possibly
10338 * indirectly) on any output dimensions?
10339 *
10340 * If the div is undefined, then we conservatively assume that it
10341 * may depend on them.
10342 * Otherwise, we check if it actually depends on them or on any integer
10343 * divisions that may depend on them.
10344 */
Tobias Grosser72745c22017-02-17 05:11:16 +000010345static isl_bool div_may_involve_output(__isl_keep isl_basic_map *bmap, int div)
Tobias Grosser52a25232015-02-04 20:55:43 +000010346{
10347 int i;
10348 unsigned n_out, o_out;
10349 unsigned n_div, o_div;
10350
10351 if (isl_int_is_zero(bmap->div[div][0]))
Tobias Grosser72745c22017-02-17 05:11:16 +000010352 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010353
10354 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10355 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10356
10357 if (isl_seq_first_non_zero(bmap->div[div] + 1 + o_out, n_out) != -1)
Tobias Grosser72745c22017-02-17 05:11:16 +000010358 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010359
10360 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10361 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10362
10363 for (i = 0; i < n_div; ++i) {
Tobias Grosser72745c22017-02-17 05:11:16 +000010364 isl_bool may_involve;
10365
Tobias Grosser52a25232015-02-04 20:55:43 +000010366 if (isl_int_is_zero(bmap->div[div][1 + o_div + i]))
10367 continue;
Tobias Grosser72745c22017-02-17 05:11:16 +000010368 may_involve = div_may_involve_output(bmap, i);
10369 if (may_involve < 0 || may_involve)
10370 return may_involve;
Tobias Grosser52a25232015-02-04 20:55:43 +000010371 }
10372
Tobias Grosser72745c22017-02-17 05:11:16 +000010373 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010374}
10375
Michael Kruse959a8dc2016-01-15 15:54:45 +000010376/* Return the first integer division of "bmap" in the range
10377 * [first, first + n[ that may depend on any output dimensions and
10378 * that has a non-zero coefficient in "c" (where the first coefficient
10379 * in "c" corresponds to integer division "first").
10380 */
10381static int first_div_may_involve_output(__isl_keep isl_basic_map *bmap,
10382 isl_int *c, int first, int n)
10383{
10384 int k;
10385
10386 if (!bmap)
10387 return -1;
10388
10389 for (k = first; k < first + n; ++k) {
Tobias Grosser72745c22017-02-17 05:11:16 +000010390 isl_bool may_involve;
10391
Michael Kruse959a8dc2016-01-15 15:54:45 +000010392 if (isl_int_is_zero(c[k]))
10393 continue;
Tobias Grosser72745c22017-02-17 05:11:16 +000010394 may_involve = div_may_involve_output(bmap, k);
10395 if (may_involve < 0)
10396 return -1;
10397 if (may_involve)
Michael Kruse959a8dc2016-01-15 15:54:45 +000010398 return k;
10399 }
10400
10401 return first + n;
10402}
10403
10404/* Look for a pair of inequality constraints in "bmap" of the form
10405 *
10406 * -l + i >= 0 or i >= l
10407 * and
10408 * n + l - i >= 0 or i <= l + n
10409 *
10410 * with n < "m" and i the output dimension at position "pos".
10411 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10412 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10413 * and earlier output dimensions, as well as integer divisions that do
10414 * not involve any of the output dimensions.
10415 *
10416 * Return the index of the first inequality constraint or bmap->n_ineq
10417 * if no such pair can be found.
10418 */
10419static int find_modulo_constraint_pair(__isl_keep isl_basic_map *bmap,
10420 int pos, isl_int m)
10421{
10422 int i, j;
10423 isl_ctx *ctx;
10424 unsigned total;
10425 unsigned n_div, o_div;
10426 unsigned n_out, o_out;
10427 int less;
10428
10429 if (!bmap)
10430 return -1;
10431
10432 ctx = isl_basic_map_get_ctx(bmap);
10433 total = isl_basic_map_total_dim(bmap);
10434 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10435 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10436 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10437 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10438 for (i = 0; i < bmap->n_ineq; ++i) {
10439 if (!isl_int_abs_eq(bmap->ineq[i][o_out + pos], ctx->one))
10440 continue;
10441 if (isl_seq_first_non_zero(bmap->ineq[i] + o_out + pos + 1,
10442 n_out - (pos + 1)) != -1)
10443 continue;
10444 if (first_div_may_involve_output(bmap, bmap->ineq[i] + o_div,
10445 0, n_div) < n_div)
10446 continue;
10447 for (j = i + 1; j < bmap->n_ineq; ++j) {
10448 if (!isl_int_abs_eq(bmap->ineq[j][o_out + pos],
10449 ctx->one))
10450 continue;
10451 if (!isl_seq_is_neg(bmap->ineq[i] + 1,
10452 bmap->ineq[j] + 1, total))
10453 continue;
10454 break;
10455 }
10456 if (j >= bmap->n_ineq)
10457 continue;
10458 isl_int_add(bmap->ineq[i][0],
10459 bmap->ineq[i][0], bmap->ineq[j][0]);
10460 less = isl_int_abs_lt(bmap->ineq[i][0], m);
10461 isl_int_sub(bmap->ineq[i][0],
10462 bmap->ineq[i][0], bmap->ineq[j][0]);
10463 if (!less)
10464 continue;
10465 if (isl_int_is_one(bmap->ineq[i][o_out + pos]))
10466 return i;
10467 else
10468 return j;
10469 }
10470
10471 return bmap->n_ineq;
10472}
10473
Tobias Grosser52a25232015-02-04 20:55:43 +000010474/* Return the index of the equality of "bmap" that defines
10475 * the output dimension "pos" in terms of earlier dimensions.
10476 * The equality may also involve integer divisions, as long
10477 * as those integer divisions are defined in terms of
10478 * parameters or input dimensions.
Michael Kruse959a8dc2016-01-15 15:54:45 +000010479 * In this case, *div is set to the number of integer divisions and
10480 * *ineq is set to the number of inequality constraints (provided
10481 * div and ineq are not NULL).
10482 *
10483 * The equality may also involve a single integer division involving
10484 * the output dimensions (typically only output dimension "pos") as
10485 * long as the coefficient of output dimension "pos" is 1 or -1 and
10486 * there is a pair of constraints i >= l and i <= l + n, with i referring
10487 * to output dimension "pos", l an expression involving only earlier
10488 * dimensions and n smaller than the coefficient of the integer division
10489 * in the equality. In this case, the output dimension can be defined
10490 * in terms of a modulo expression that does not involve the integer division.
10491 * *div is then set to this single integer division and
10492 * *ineq is set to the index of constraint i >= l.
10493 *
Tobias Grosser52a25232015-02-04 20:55:43 +000010494 * Return bmap->n_eq if there is no such equality.
10495 * Return -1 on error.
10496 */
10497int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map *bmap,
Michael Kruse959a8dc2016-01-15 15:54:45 +000010498 int pos, int *div, int *ineq)
Tobias Grosser52a25232015-02-04 20:55:43 +000010499{
Michael Kruse959a8dc2016-01-15 15:54:45 +000010500 int j, k, l;
Tobias Grosser52a25232015-02-04 20:55:43 +000010501 unsigned n_out, o_out;
10502 unsigned n_div, o_div;
10503
10504 if (!bmap)
10505 return -1;
10506
10507 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10508 o_out = isl_basic_map_offset(bmap, isl_dim_out);
10509 n_div = isl_basic_map_dim(bmap, isl_dim_div);
10510 o_div = isl_basic_map_offset(bmap, isl_dim_div);
10511
Michael Kruse959a8dc2016-01-15 15:54:45 +000010512 if (ineq)
10513 *ineq = bmap->n_ineq;
10514 if (div)
10515 *div = n_div;
Tobias Grosser52a25232015-02-04 20:55:43 +000010516 for (j = 0; j < bmap->n_eq; ++j) {
10517 if (isl_int_is_zero(bmap->eq[j][o_out + pos]))
10518 continue;
10519 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + pos + 1,
10520 n_out - (pos + 1)) != -1)
10521 continue;
Michael Kruse959a8dc2016-01-15 15:54:45 +000010522 k = first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10523 0, n_div);
Tobias Grosser52a25232015-02-04 20:55:43 +000010524 if (k >= n_div)
10525 return j;
Michael Kruse959a8dc2016-01-15 15:54:45 +000010526 if (!isl_int_is_one(bmap->eq[j][o_out + pos]) &&
10527 !isl_int_is_negone(bmap->eq[j][o_out + pos]))
10528 continue;
10529 if (first_div_may_involve_output(bmap, bmap->eq[j] + o_div,
10530 k + 1, n_div - (k+1)) < n_div)
10531 continue;
10532 l = find_modulo_constraint_pair(bmap, pos,
10533 bmap->eq[j][o_div + k]);
10534 if (l < 0)
10535 return -1;
10536 if (l >= bmap->n_ineq)
10537 continue;
10538 if (div)
10539 *div = k;
10540 if (ineq)
10541 *ineq = l;
10542 return j;
Tobias Grosser52a25232015-02-04 20:55:43 +000010543 }
10544
10545 return bmap->n_eq;
10546}
10547
10548/* Check if the given basic map is obviously single-valued.
10549 * In particular, for each output dimension, check that there is
10550 * an equality that defines the output dimension in terms of
10551 * earlier dimensions.
10552 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010553isl_bool isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +000010554{
10555 int i;
10556 unsigned n_out;
10557
10558 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010559 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010560
10561 n_out = isl_basic_map_dim(bmap, isl_dim_out);
10562
10563 for (i = 0; i < n_out; ++i) {
10564 int eq;
10565
Michael Kruse959a8dc2016-01-15 15:54:45 +000010566 eq = isl_basic_map_output_defining_equality(bmap, i,
10567 NULL, NULL);
Tobias Grosser52a25232015-02-04 20:55:43 +000010568 if (eq < 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010569 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010570 if (eq >= bmap->n_eq)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010571 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010572 }
10573
Tobias Grosserb2f39922015-05-28 13:32:11 +000010574 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010575}
10576
10577/* Check if the given basic map is single-valued.
10578 * We simply compute
10579 *
10580 * M \circ M^-1
10581 *
10582 * and check if the result is a subset of the identity mapping.
10583 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010584isl_bool isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +000010585{
10586 isl_space *space;
10587 isl_basic_map *test;
10588 isl_basic_map *id;
Tobias Grosserb2f39922015-05-28 13:32:11 +000010589 isl_bool sv;
Tobias Grosser52a25232015-02-04 20:55:43 +000010590
10591 sv = isl_basic_map_plain_is_single_valued(bmap);
10592 if (sv < 0 || sv)
10593 return sv;
10594
10595 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
10596 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
10597
10598 space = isl_basic_map_get_space(bmap);
10599 space = isl_space_map_from_set(isl_space_range(space));
10600 id = isl_basic_map_identity(space);
10601
10602 sv = isl_basic_map_is_subset(test, id);
10603
10604 isl_basic_map_free(test);
10605 isl_basic_map_free(id);
10606
10607 return sv;
10608}
10609
10610/* Check if the given map is obviously single-valued.
10611 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010612isl_bool isl_map_plain_is_single_valued(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010613{
10614 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010615 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010616 if (map->n == 0)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010617 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010618 if (map->n >= 2)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010619 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010620
10621 return isl_basic_map_plain_is_single_valued(map->p[0]);
10622}
10623
10624/* Check if the given map is single-valued.
10625 * We simply compute
10626 *
10627 * M \circ M^-1
10628 *
10629 * and check if the result is a subset of the identity mapping.
10630 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010631isl_bool isl_map_is_single_valued(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010632{
10633 isl_space *dim;
10634 isl_map *test;
10635 isl_map *id;
Tobias Grosserb2f39922015-05-28 13:32:11 +000010636 isl_bool sv;
Tobias Grosser52a25232015-02-04 20:55:43 +000010637
10638 sv = isl_map_plain_is_single_valued(map);
10639 if (sv < 0 || sv)
10640 return sv;
10641
10642 test = isl_map_reverse(isl_map_copy(map));
10643 test = isl_map_apply_range(test, isl_map_copy(map));
10644
10645 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
10646 id = isl_map_identity(dim);
10647
10648 sv = isl_map_is_subset(test, id);
10649
10650 isl_map_free(test);
10651 isl_map_free(id);
10652
10653 return sv;
10654}
10655
Tobias Grosserb2f39922015-05-28 13:32:11 +000010656isl_bool isl_map_is_injective(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010657{
Tobias Grosserb2f39922015-05-28 13:32:11 +000010658 isl_bool in;
Tobias Grosser52a25232015-02-04 20:55:43 +000010659
10660 map = isl_map_copy(map);
10661 map = isl_map_reverse(map);
10662 in = isl_map_is_single_valued(map);
10663 isl_map_free(map);
10664
10665 return in;
10666}
10667
10668/* Check if the given map is obviously injective.
10669 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010670isl_bool isl_map_plain_is_injective(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010671{
Tobias Grosserb2f39922015-05-28 13:32:11 +000010672 isl_bool in;
Tobias Grosser52a25232015-02-04 20:55:43 +000010673
10674 map = isl_map_copy(map);
10675 map = isl_map_reverse(map);
10676 in = isl_map_plain_is_single_valued(map);
10677 isl_map_free(map);
10678
10679 return in;
10680}
10681
Tobias Grosserb2f39922015-05-28 13:32:11 +000010682isl_bool isl_map_is_bijective(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010683{
Tobias Grosserb2f39922015-05-28 13:32:11 +000010684 isl_bool sv;
Tobias Grosser52a25232015-02-04 20:55:43 +000010685
10686 sv = isl_map_is_single_valued(map);
10687 if (sv < 0 || !sv)
10688 return sv;
10689
10690 return isl_map_is_injective(map);
10691}
10692
Tobias Grosserb2f39922015-05-28 13:32:11 +000010693isl_bool isl_set_is_singleton(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +000010694{
Tobias Grosser06e15922016-11-16 11:06:47 +000010695 return isl_map_is_single_valued(set_to_map(set));
Tobias Grosser52a25232015-02-04 20:55:43 +000010696}
10697
Michael Krusee0b34f32016-05-04 14:41:36 +000010698/* Does "map" only map elements to themselves?
10699 *
10700 * If the domain and range spaces are different, then "map"
10701 * is considered not to be an identity relation, even if it is empty.
10702 * Otherwise, construct the maximal identity relation and
10703 * check whether "map" is a subset of this relation.
10704 */
10705isl_bool isl_map_is_identity(__isl_keep isl_map *map)
10706{
10707 isl_space *space;
10708 isl_map *id;
10709 isl_bool equal, is_identity;
10710
10711 space = isl_map_get_space(map);
10712 equal = isl_space_tuple_is_equal(space, isl_dim_in, space, isl_dim_out);
10713 isl_space_free(space);
10714 if (equal < 0 || !equal)
10715 return equal;
10716
10717 id = isl_map_identity(isl_map_get_space(map));
10718 is_identity = isl_map_is_subset(map, id);
10719 isl_map_free(id);
10720
10721 return is_identity;
10722}
10723
Tobias Grosser52a25232015-02-04 20:55:43 +000010724int isl_map_is_translation(__isl_keep isl_map *map)
10725{
10726 int ok;
10727 isl_set *delta;
10728
10729 delta = isl_map_deltas(isl_map_copy(map));
10730 ok = isl_set_is_singleton(delta);
10731 isl_set_free(delta);
10732
10733 return ok;
10734}
10735
10736static int unique(isl_int *p, unsigned pos, unsigned len)
10737{
10738 if (isl_seq_first_non_zero(p, pos) != -1)
10739 return 0;
10740 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
10741 return 0;
10742 return 1;
10743}
10744
Tobias Grosser72745c22017-02-17 05:11:16 +000010745isl_bool isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +000010746{
10747 int i, j;
10748 unsigned nvar;
10749 unsigned ovar;
10750
10751 if (!bset)
Tobias Grosser72745c22017-02-17 05:11:16 +000010752 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010753
10754 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
Tobias Grosser72745c22017-02-17 05:11:16 +000010755 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010756
10757 nvar = isl_basic_set_dim(bset, isl_dim_set);
10758 ovar = isl_space_offset(bset->dim, isl_dim_set);
10759 for (j = 0; j < nvar; ++j) {
10760 int lower = 0, upper = 0;
10761 for (i = 0; i < bset->n_eq; ++i) {
10762 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
10763 continue;
10764 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
Tobias Grosser72745c22017-02-17 05:11:16 +000010765 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010766 break;
10767 }
10768 if (i < bset->n_eq)
10769 continue;
10770 for (i = 0; i < bset->n_ineq; ++i) {
10771 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
10772 continue;
10773 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
Tobias Grosser72745c22017-02-17 05:11:16 +000010774 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010775 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
10776 lower = 1;
10777 else
10778 upper = 1;
10779 }
10780 if (!lower || !upper)
Tobias Grosser72745c22017-02-17 05:11:16 +000010781 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010782 }
10783
Tobias Grosser72745c22017-02-17 05:11:16 +000010784 return isl_bool_true;
Tobias Grosser52a25232015-02-04 20:55:43 +000010785}
10786
Tobias Grosser72745c22017-02-17 05:11:16 +000010787isl_bool isl_set_is_box(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +000010788{
10789 if (!set)
Tobias Grosser72745c22017-02-17 05:11:16 +000010790 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010791 if (set->n != 1)
Tobias Grosser72745c22017-02-17 05:11:16 +000010792 return isl_bool_false;
Tobias Grosser52a25232015-02-04 20:55:43 +000010793
10794 return isl_basic_set_is_box(set->p[0]);
10795}
10796
Tobias Grosserb2f39922015-05-28 13:32:11 +000010797isl_bool isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
Tobias Grosser52a25232015-02-04 20:55:43 +000010798{
10799 if (!bset)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010800 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010801
10802 return isl_space_is_wrapping(bset->dim);
10803}
10804
Tobias Grosserb2f39922015-05-28 13:32:11 +000010805isl_bool isl_set_is_wrapping(__isl_keep isl_set *set)
Tobias Grosser52a25232015-02-04 20:55:43 +000010806{
10807 if (!set)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010808 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010809
10810 return isl_space_is_wrapping(set->dim);
10811}
10812
Michael Kruse959a8dc2016-01-15 15:54:45 +000010813/* Modify the space of "map" through a call to "change".
10814 * If "can_change" is set (not NULL), then first call it to check
10815 * if the modification is allowed, printing the error message "cannot_change"
10816 * if it is not.
10817 */
10818static __isl_give isl_map *isl_map_change_space(__isl_take isl_map *map,
10819 isl_bool (*can_change)(__isl_keep isl_map *map),
10820 const char *cannot_change,
10821 __isl_give isl_space *(*change)(__isl_take isl_space *space))
10822{
10823 isl_bool ok;
10824 isl_space *space;
10825
10826 if (!map)
10827 return NULL;
10828
10829 ok = can_change ? can_change(map) : isl_bool_true;
10830 if (ok < 0)
10831 return isl_map_free(map);
10832 if (!ok)
10833 isl_die(isl_map_get_ctx(map), isl_error_invalid, cannot_change,
10834 return isl_map_free(map));
10835
10836 space = change(isl_map_get_space(map));
10837 map = isl_map_reset_space(map, space);
10838
10839 return map;
10840}
10841
Tobias Grosser52a25232015-02-04 20:55:43 +000010842/* Is the domain of "map" a wrapped relation?
10843 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010844isl_bool isl_map_domain_is_wrapping(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010845{
10846 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010847 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010848
10849 return isl_space_domain_is_wrapping(map->dim);
10850}
10851
10852/* Is the range of "map" a wrapped relation?
10853 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000010854isl_bool isl_map_range_is_wrapping(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000010855{
10856 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000010857 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000010858
10859 return isl_space_range_is_wrapping(map->dim);
10860}
10861
10862__isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
10863{
10864 bmap = isl_basic_map_cow(bmap);
10865 if (!bmap)
10866 return NULL;
10867
10868 bmap->dim = isl_space_wrap(bmap->dim);
10869 if (!bmap->dim)
10870 goto error;
10871
10872 bmap = isl_basic_map_finalize(bmap);
10873
Tobias Grosser06e15922016-11-16 11:06:47 +000010874 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000010875error:
10876 isl_basic_map_free(bmap);
10877 return NULL;
10878}
10879
Michael Kruse959a8dc2016-01-15 15:54:45 +000010880/* Given a map A -> B, return the set (A -> B).
10881 */
Tobias Grosser52a25232015-02-04 20:55:43 +000010882__isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
10883{
Michael Kruse959a8dc2016-01-15 15:54:45 +000010884 return isl_map_change_space(map, NULL, NULL, &isl_space_wrap);
Tobias Grosser52a25232015-02-04 20:55:43 +000010885}
10886
10887__isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
10888{
10889 bset = isl_basic_set_cow(bset);
10890 if (!bset)
10891 return NULL;
10892
10893 bset->dim = isl_space_unwrap(bset->dim);
10894 if (!bset->dim)
10895 goto error;
10896
10897 bset = isl_basic_set_finalize(bset);
10898
Tobias Grosser06e15922016-11-16 11:06:47 +000010899 return bset_to_bmap(bset);
Tobias Grosser52a25232015-02-04 20:55:43 +000010900error:
10901 isl_basic_set_free(bset);
10902 return NULL;
10903}
10904
Michael Kruse959a8dc2016-01-15 15:54:45 +000010905/* Given a set (A -> B), return the map A -> B.
10906 * Error out if "set" is not of the form (A -> B).
10907 */
Tobias Grosser52a25232015-02-04 20:55:43 +000010908__isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
10909{
Michael Kruse959a8dc2016-01-15 15:54:45 +000010910 return isl_map_change_space(set, &isl_set_is_wrapping,
10911 "not a wrapping set", &isl_space_unwrap);
Tobias Grosser52a25232015-02-04 20:55:43 +000010912}
10913
10914__isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
10915 enum isl_dim_type type)
10916{
10917 if (!bmap)
10918 return NULL;
10919
10920 if (!isl_space_is_named_or_nested(bmap->dim, type))
10921 return bmap;
10922
10923 bmap = isl_basic_map_cow(bmap);
10924 if (!bmap)
10925 return NULL;
10926
10927 bmap->dim = isl_space_reset(bmap->dim, type);
10928 if (!bmap->dim)
10929 goto error;
10930
10931 bmap = isl_basic_map_finalize(bmap);
10932
10933 return bmap;
10934error:
10935 isl_basic_map_free(bmap);
10936 return NULL;
10937}
10938
10939__isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
10940 enum isl_dim_type type)
10941{
10942 int i;
10943
10944 if (!map)
10945 return NULL;
10946
10947 if (!isl_space_is_named_or_nested(map->dim, type))
10948 return map;
10949
10950 map = isl_map_cow(map);
10951 if (!map)
10952 return NULL;
10953
10954 for (i = 0; i < map->n; ++i) {
10955 map->p[i] = isl_basic_map_reset(map->p[i], type);
10956 if (!map->p[i])
10957 goto error;
10958 }
10959 map->dim = isl_space_reset(map->dim, type);
10960 if (!map->dim)
10961 goto error;
10962
10963 return map;
10964error:
10965 isl_map_free(map);
10966 return NULL;
10967}
10968
10969__isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
10970{
10971 if (!bmap)
10972 return NULL;
10973
10974 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
10975 return bmap;
10976
10977 bmap = isl_basic_map_cow(bmap);
10978 if (!bmap)
10979 return NULL;
10980
10981 bmap->dim = isl_space_flatten(bmap->dim);
10982 if (!bmap->dim)
10983 goto error;
10984
10985 bmap = isl_basic_map_finalize(bmap);
10986
10987 return bmap;
10988error:
10989 isl_basic_map_free(bmap);
10990 return NULL;
10991}
10992
10993__isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
10994{
Tobias Grosser06e15922016-11-16 11:06:47 +000010995 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset)));
Tobias Grosser52a25232015-02-04 20:55:43 +000010996}
10997
10998__isl_give isl_basic_map *isl_basic_map_flatten_domain(
10999 __isl_take isl_basic_map *bmap)
11000{
11001 if (!bmap)
11002 return NULL;
11003
11004 if (!bmap->dim->nested[0])
11005 return bmap;
11006
11007 bmap = isl_basic_map_cow(bmap);
11008 if (!bmap)
11009 return NULL;
11010
11011 bmap->dim = isl_space_flatten_domain(bmap->dim);
11012 if (!bmap->dim)
11013 goto error;
11014
11015 bmap = isl_basic_map_finalize(bmap);
11016
11017 return bmap;
11018error:
11019 isl_basic_map_free(bmap);
11020 return NULL;
11021}
11022
11023__isl_give isl_basic_map *isl_basic_map_flatten_range(
11024 __isl_take isl_basic_map *bmap)
11025{
11026 if (!bmap)
11027 return NULL;
11028
11029 if (!bmap->dim->nested[1])
11030 return bmap;
11031
11032 bmap = isl_basic_map_cow(bmap);
11033 if (!bmap)
11034 return NULL;
11035
11036 bmap->dim = isl_space_flatten_range(bmap->dim);
11037 if (!bmap->dim)
11038 goto error;
11039
11040 bmap = isl_basic_map_finalize(bmap);
11041
11042 return bmap;
11043error:
11044 isl_basic_map_free(bmap);
11045 return NULL;
11046}
11047
Michael Kruse959a8dc2016-01-15 15:54:45 +000011048/* Remove any internal structure from the spaces of domain and range of "map".
11049 */
Tobias Grosser52a25232015-02-04 20:55:43 +000011050__isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
11051{
Tobias Grosser52a25232015-02-04 20:55:43 +000011052 if (!map)
11053 return NULL;
11054
11055 if (!map->dim->nested[0] && !map->dim->nested[1])
11056 return map;
11057
Michael Kruse959a8dc2016-01-15 15:54:45 +000011058 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten);
Tobias Grosser52a25232015-02-04 20:55:43 +000011059}
11060
11061__isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
11062{
Tobias Grosser06e15922016-11-16 11:06:47 +000011063 return set_from_map(isl_map_flatten(set_to_map(set)));
Tobias Grosser52a25232015-02-04 20:55:43 +000011064}
11065
11066__isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
11067{
11068 isl_space *dim, *flat_dim;
11069 isl_map *map;
11070
11071 dim = isl_set_get_space(set);
11072 flat_dim = isl_space_flatten(isl_space_copy(dim));
11073 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
11074 map = isl_map_intersect_domain(map, set);
11075
11076 return map;
11077}
11078
Michael Kruse959a8dc2016-01-15 15:54:45 +000011079/* Remove any internal structure from the space of the domain of "map".
11080 */
Tobias Grosser52a25232015-02-04 20:55:43 +000011081__isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
11082{
Tobias Grosser52a25232015-02-04 20:55:43 +000011083 if (!map)
11084 return NULL;
11085
11086 if (!map->dim->nested[0])
11087 return map;
11088
Michael Kruse959a8dc2016-01-15 15:54:45 +000011089 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_domain);
Tobias Grosser52a25232015-02-04 20:55:43 +000011090}
11091
Michael Kruse959a8dc2016-01-15 15:54:45 +000011092/* Remove any internal structure from the space of the range of "map".
11093 */
Tobias Grosser52a25232015-02-04 20:55:43 +000011094__isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
11095{
Tobias Grosser52a25232015-02-04 20:55:43 +000011096 if (!map)
11097 return NULL;
11098
11099 if (!map->dim->nested[1])
11100 return map;
11101
Michael Kruse959a8dc2016-01-15 15:54:45 +000011102 return isl_map_change_space(map, NULL, NULL, &isl_space_flatten_range);
Tobias Grosser52a25232015-02-04 20:55:43 +000011103}
11104
11105/* Reorder the dimensions of "bmap" according to the given dim_map
Tobias Grossera7f1e042016-02-04 06:19:12 +000011106 * and set the dimension specification to "dim" and
11107 * perform Gaussian elimination on the result.
Tobias Grosser52a25232015-02-04 20:55:43 +000011108 */
11109__isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
11110 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
11111{
11112 isl_basic_map *res;
11113 unsigned flags;
11114
11115 bmap = isl_basic_map_cow(bmap);
11116 if (!bmap || !dim || !dim_map)
11117 goto error;
11118
11119 flags = bmap->flags;
11120 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
11121 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
11122 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
11123 res = isl_basic_map_alloc_space(dim,
11124 bmap->n_div, bmap->n_eq, bmap->n_ineq);
11125 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
11126 if (res)
11127 res->flags = flags;
Tobias Grossera7f1e042016-02-04 06:19:12 +000011128 res = isl_basic_map_gauss(res, NULL);
Tobias Grosser52a25232015-02-04 20:55:43 +000011129 res = isl_basic_map_finalize(res);
11130 return res;
11131error:
11132 free(dim_map);
11133 isl_basic_map_free(bmap);
11134 isl_space_free(dim);
11135 return NULL;
11136}
11137
11138/* Reorder the dimensions of "map" according to given reordering.
11139 */
11140__isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
11141 __isl_take isl_reordering *r)
11142{
11143 int i;
11144 struct isl_dim_map *dim_map;
11145
11146 map = isl_map_cow(map);
11147 dim_map = isl_dim_map_from_reordering(r);
11148 if (!map || !r || !dim_map)
11149 goto error;
11150
11151 for (i = 0; i < map->n; ++i) {
11152 struct isl_dim_map *dim_map_i;
11153
11154 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
11155
11156 map->p[i] = isl_basic_map_realign(map->p[i],
11157 isl_space_copy(r->dim), dim_map_i);
11158
11159 if (!map->p[i])
11160 goto error;
11161 }
11162
11163 map = isl_map_reset_space(map, isl_space_copy(r->dim));
11164
11165 isl_reordering_free(r);
11166 free(dim_map);
11167 return map;
11168error:
11169 free(dim_map);
11170 isl_map_free(map);
11171 isl_reordering_free(r);
11172 return NULL;
11173}
11174
11175__isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
11176 __isl_take isl_reordering *r)
11177{
Tobias Grosser06e15922016-11-16 11:06:47 +000011178 return set_from_map(isl_map_realign(set_to_map(set), r));
Tobias Grosser52a25232015-02-04 20:55:43 +000011179}
11180
11181__isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
11182 __isl_take isl_space *model)
11183{
11184 isl_ctx *ctx;
Tobias Grossere5671e52017-03-10 09:17:55 +000011185 isl_bool aligned;
Tobias Grosser52a25232015-02-04 20:55:43 +000011186
11187 if (!map || !model)
11188 goto error;
11189
11190 ctx = isl_space_get_ctx(model);
11191 if (!isl_space_has_named_params(model))
11192 isl_die(ctx, isl_error_invalid,
11193 "model has unnamed parameters", goto error);
Tobias Grossere5671e52017-03-10 09:17:55 +000011194 if (isl_map_check_named_params(map) < 0)
11195 goto error;
11196 aligned = isl_map_space_has_equal_params(map, model);
11197 if (aligned < 0)
11198 goto error;
11199 if (!aligned) {
Tobias Grosser52a25232015-02-04 20:55:43 +000011200 isl_reordering *exp;
11201
11202 model = isl_space_drop_dims(model, isl_dim_in,
11203 0, isl_space_dim(model, isl_dim_in));
11204 model = isl_space_drop_dims(model, isl_dim_out,
11205 0, isl_space_dim(model, isl_dim_out));
11206 exp = isl_parameter_alignment_reordering(map->dim, model);
11207 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
11208 map = isl_map_realign(map, exp);
11209 }
11210
11211 isl_space_free(model);
11212 return map;
11213error:
11214 isl_space_free(model);
11215 isl_map_free(map);
11216 return NULL;
11217}
11218
11219__isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
11220 __isl_take isl_space *model)
11221{
11222 return isl_map_align_params(set, model);
11223}
11224
11225/* Align the parameters of "bmap" to those of "model", introducing
11226 * additional parameters if needed.
11227 */
11228__isl_give isl_basic_map *isl_basic_map_align_params(
11229 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
11230{
11231 isl_ctx *ctx;
Tobias Grosser593ebdf2017-03-14 07:33:26 +000011232 isl_bool equal_params;
Tobias Grosser52a25232015-02-04 20:55:43 +000011233
11234 if (!bmap || !model)
11235 goto error;
11236
11237 ctx = isl_space_get_ctx(model);
11238 if (!isl_space_has_named_params(model))
11239 isl_die(ctx, isl_error_invalid,
11240 "model has unnamed parameters", goto error);
11241 if (!isl_space_has_named_params(bmap->dim))
11242 isl_die(ctx, isl_error_invalid,
11243 "relation has unnamed parameters", goto error);
Tobias Grosser593ebdf2017-03-14 07:33:26 +000011244 equal_params = isl_space_has_equal_params(bmap->dim, model);
11245 if (equal_params < 0)
11246 goto error;
11247 if (!equal_params) {
Tobias Grosser52a25232015-02-04 20:55:43 +000011248 isl_reordering *exp;
11249 struct isl_dim_map *dim_map;
11250
11251 model = isl_space_drop_dims(model, isl_dim_in,
11252 0, isl_space_dim(model, isl_dim_in));
11253 model = isl_space_drop_dims(model, isl_dim_out,
11254 0, isl_space_dim(model, isl_dim_out));
11255 exp = isl_parameter_alignment_reordering(bmap->dim, model);
11256 exp = isl_reordering_extend_space(exp,
11257 isl_basic_map_get_space(bmap));
11258 dim_map = isl_dim_map_from_reordering(exp);
11259 bmap = isl_basic_map_realign(bmap,
11260 exp ? isl_space_copy(exp->dim) : NULL,
11261 isl_dim_map_extend(dim_map, bmap));
11262 isl_reordering_free(exp);
11263 free(dim_map);
11264 }
11265
11266 isl_space_free(model);
11267 return bmap;
11268error:
11269 isl_space_free(model);
11270 isl_basic_map_free(bmap);
11271 return NULL;
11272}
11273
Tobias Grossere5671e52017-03-10 09:17:55 +000011274/* Do "bset" and "space" have the same parameters?
11275 */
11276isl_bool isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set *bset,
11277 __isl_keep isl_space *space)
11278{
11279 isl_space *bset_space;
11280
11281 bset_space = isl_basic_set_peek_space(bset);
Tobias Grosser593ebdf2017-03-14 07:33:26 +000011282 return isl_space_has_equal_params(bset_space, space);
Tobias Grossere5671e52017-03-10 09:17:55 +000011283}
11284
11285/* Do "map" and "space" have the same parameters?
11286 */
11287isl_bool isl_map_space_has_equal_params(__isl_keep isl_map *map,
11288 __isl_keep isl_space *space)
11289{
11290 isl_space *map_space;
11291
11292 map_space = isl_map_peek_space(map);
Tobias Grosser593ebdf2017-03-14 07:33:26 +000011293 return isl_space_has_equal_params(map_space, space);
Tobias Grossere5671e52017-03-10 09:17:55 +000011294}
11295
11296/* Do "set" and "space" have the same parameters?
11297 */
11298isl_bool isl_set_space_has_equal_params(__isl_keep isl_set *set,
11299 __isl_keep isl_space *space)
11300{
11301 return isl_map_space_has_equal_params(set_to_map(set), space);
11302}
11303
Tobias Grosser52a25232015-02-04 20:55:43 +000011304/* Align the parameters of "bset" to those of "model", introducing
11305 * additional parameters if needed.
11306 */
11307__isl_give isl_basic_set *isl_basic_set_align_params(
11308 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
11309{
11310 return isl_basic_map_align_params(bset, model);
11311}
11312
11313__isl_give isl_mat *isl_basic_map_equalities_matrix(
11314 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11315 enum isl_dim_type c2, enum isl_dim_type c3,
11316 enum isl_dim_type c4, enum isl_dim_type c5)
11317{
11318 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11319 struct isl_mat *mat;
11320 int i, j, k;
11321 int pos;
11322
11323 if (!bmap)
11324 return NULL;
11325 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
11326 isl_basic_map_total_dim(bmap) + 1);
11327 if (!mat)
11328 return NULL;
11329 for (i = 0; i < bmap->n_eq; ++i)
11330 for (j = 0, pos = 0; j < 5; ++j) {
11331 int off = isl_basic_map_offset(bmap, c[j]);
11332 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11333 isl_int_set(mat->row[i][pos],
11334 bmap->eq[i][off + k]);
11335 ++pos;
11336 }
11337 }
11338
11339 return mat;
11340}
11341
11342__isl_give isl_mat *isl_basic_map_inequalities_matrix(
11343 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
11344 enum isl_dim_type c2, enum isl_dim_type c3,
11345 enum isl_dim_type c4, enum isl_dim_type c5)
11346{
11347 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11348 struct isl_mat *mat;
11349 int i, j, k;
11350 int pos;
11351
11352 if (!bmap)
11353 return NULL;
11354 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
11355 isl_basic_map_total_dim(bmap) + 1);
11356 if (!mat)
11357 return NULL;
11358 for (i = 0; i < bmap->n_ineq; ++i)
11359 for (j = 0, pos = 0; j < 5; ++j) {
11360 int off = isl_basic_map_offset(bmap, c[j]);
11361 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11362 isl_int_set(mat->row[i][pos],
11363 bmap->ineq[i][off + k]);
11364 ++pos;
11365 }
11366 }
11367
11368 return mat;
11369}
11370
11371__isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
11372 __isl_take isl_space *dim,
11373 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11374 enum isl_dim_type c2, enum isl_dim_type c3,
11375 enum isl_dim_type c4, enum isl_dim_type c5)
11376{
11377 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
11378 isl_basic_map *bmap;
11379 unsigned total;
11380 unsigned extra;
11381 int i, j, k, l;
11382 int pos;
11383
11384 if (!dim || !eq || !ineq)
11385 goto error;
11386
11387 if (eq->n_col != ineq->n_col)
11388 isl_die(dim->ctx, isl_error_invalid,
11389 "equalities and inequalities matrices should have "
11390 "same number of columns", goto error);
11391
11392 total = 1 + isl_space_dim(dim, isl_dim_all);
11393
11394 if (eq->n_col < total)
11395 isl_die(dim->ctx, isl_error_invalid,
11396 "number of columns too small", goto error);
11397
11398 extra = eq->n_col - total;
11399
11400 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
11401 eq->n_row, ineq->n_row);
11402 if (!bmap)
11403 goto error;
11404 for (i = 0; i < extra; ++i) {
11405 k = isl_basic_map_alloc_div(bmap);
11406 if (k < 0)
11407 goto error;
11408 isl_int_set_si(bmap->div[k][0], 0);
11409 }
11410 for (i = 0; i < eq->n_row; ++i) {
11411 l = isl_basic_map_alloc_equality(bmap);
11412 if (l < 0)
11413 goto error;
11414 for (j = 0, pos = 0; j < 5; ++j) {
11415 int off = isl_basic_map_offset(bmap, c[j]);
11416 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11417 isl_int_set(bmap->eq[l][off + k],
11418 eq->row[i][pos]);
11419 ++pos;
11420 }
11421 }
11422 }
11423 for (i = 0; i < ineq->n_row; ++i) {
11424 l = isl_basic_map_alloc_inequality(bmap);
11425 if (l < 0)
11426 goto error;
11427 for (j = 0, pos = 0; j < 5; ++j) {
11428 int off = isl_basic_map_offset(bmap, c[j]);
11429 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
11430 isl_int_set(bmap->ineq[l][off + k],
11431 ineq->row[i][pos]);
11432 ++pos;
11433 }
11434 }
11435 }
11436
11437 isl_space_free(dim);
11438 isl_mat_free(eq);
11439 isl_mat_free(ineq);
11440
11441 bmap = isl_basic_map_simplify(bmap);
11442 return isl_basic_map_finalize(bmap);
11443error:
11444 isl_space_free(dim);
11445 isl_mat_free(eq);
11446 isl_mat_free(ineq);
11447 return NULL;
11448}
11449
11450__isl_give isl_mat *isl_basic_set_equalities_matrix(
11451 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11452 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11453{
Tobias Grosser06e15922016-11-16 11:06:47 +000011454 return isl_basic_map_equalities_matrix(bset_to_bmap(bset),
Tobias Grosser52a25232015-02-04 20:55:43 +000011455 c1, c2, c3, c4, isl_dim_in);
11456}
11457
11458__isl_give isl_mat *isl_basic_set_inequalities_matrix(
11459 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
11460 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11461{
Tobias Grosser06e15922016-11-16 11:06:47 +000011462 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset),
Tobias Grosser52a25232015-02-04 20:55:43 +000011463 c1, c2, c3, c4, isl_dim_in);
11464}
11465
11466__isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
11467 __isl_take isl_space *dim,
11468 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
11469 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
11470{
Tobias Grosser06e15922016-11-16 11:06:47 +000011471 isl_basic_map *bmap;
11472 bmap = isl_basic_map_from_constraint_matrices(dim, eq, ineq,
Tobias Grosser52a25232015-02-04 20:55:43 +000011473 c1, c2, c3, c4, isl_dim_in);
Tobias Grosser06e15922016-11-16 11:06:47 +000011474 return bset_from_bmap(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011475}
11476
Tobias Grosserb2f39922015-05-28 13:32:11 +000011477isl_bool isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +000011478{
11479 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011480 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011481
11482 return isl_space_can_zip(bmap->dim);
11483}
11484
Tobias Grosserb2f39922015-05-28 13:32:11 +000011485isl_bool isl_map_can_zip(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000011486{
11487 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011488 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011489
11490 return isl_space_can_zip(map->dim);
11491}
11492
11493/* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11494 * (A -> C) -> (B -> D).
11495 */
11496__isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
11497{
11498 unsigned pos;
11499 unsigned n1;
11500 unsigned n2;
11501
11502 if (!bmap)
11503 return NULL;
11504
11505 if (!isl_basic_map_can_zip(bmap))
11506 isl_die(bmap->ctx, isl_error_invalid,
11507 "basic map cannot be zipped", goto error);
11508 pos = isl_basic_map_offset(bmap, isl_dim_in) +
11509 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
11510 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
11511 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
11512 bmap = isl_basic_map_cow(bmap);
11513 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
11514 if (!bmap)
11515 return NULL;
11516 bmap->dim = isl_space_zip(bmap->dim);
11517 if (!bmap->dim)
11518 goto error;
Michael Kruse959a8dc2016-01-15 15:54:45 +000011519 bmap = isl_basic_map_mark_final(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011520 return bmap;
11521error:
11522 isl_basic_map_free(bmap);
11523 return NULL;
11524}
11525
11526/* Given a map (A -> B) -> (C -> D), return the corresponding map
11527 * (A -> C) -> (B -> D).
11528 */
11529__isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
11530{
11531 int i;
11532
11533 if (!map)
11534 return NULL;
11535
11536 if (!isl_map_can_zip(map))
11537 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
11538 goto error);
11539
11540 map = isl_map_cow(map);
11541 if (!map)
11542 return NULL;
11543
11544 for (i = 0; i < map->n; ++i) {
11545 map->p[i] = isl_basic_map_zip(map->p[i]);
11546 if (!map->p[i])
11547 goto error;
11548 }
11549
11550 map->dim = isl_space_zip(map->dim);
11551 if (!map->dim)
11552 goto error;
11553
11554 return map;
11555error:
11556 isl_map_free(map);
11557 return NULL;
11558}
11559
11560/* Can we apply isl_basic_map_curry to "bmap"?
11561 * That is, does it have a nested relation in its domain?
11562 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000011563isl_bool isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +000011564{
11565 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011566 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011567
11568 return isl_space_can_curry(bmap->dim);
11569}
11570
11571/* Can we apply isl_map_curry to "map"?
11572 * That is, does it have a nested relation in its domain?
11573 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000011574isl_bool isl_map_can_curry(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000011575{
11576 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011577 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011578
11579 return isl_space_can_curry(map->dim);
11580}
11581
11582/* Given a basic map (A -> B) -> C, return the corresponding basic map
11583 * A -> (B -> C).
11584 */
11585__isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
11586{
11587
11588 if (!bmap)
11589 return NULL;
11590
11591 if (!isl_basic_map_can_curry(bmap))
11592 isl_die(bmap->ctx, isl_error_invalid,
11593 "basic map cannot be curried", goto error);
11594 bmap = isl_basic_map_cow(bmap);
11595 if (!bmap)
11596 return NULL;
11597 bmap->dim = isl_space_curry(bmap->dim);
11598 if (!bmap->dim)
11599 goto error;
Michael Kruse959a8dc2016-01-15 15:54:45 +000011600 bmap = isl_basic_map_mark_final(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011601 return bmap;
11602error:
11603 isl_basic_map_free(bmap);
11604 return NULL;
11605}
11606
11607/* Given a map (A -> B) -> C, return the corresponding map
11608 * A -> (B -> C).
11609 */
11610__isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
11611{
Michael Kruse959a8dc2016-01-15 15:54:45 +000011612 return isl_map_change_space(map, &isl_map_can_curry,
11613 "map cannot be curried", &isl_space_curry);
11614}
Tobias Grosser52a25232015-02-04 20:55:43 +000011615
Michael Kruse959a8dc2016-01-15 15:54:45 +000011616/* Can isl_map_range_curry be applied to "map"?
11617 * That is, does it have a nested relation in its range,
11618 * the domain of which is itself a nested relation?
11619 */
11620isl_bool isl_map_can_range_curry(__isl_keep isl_map *map)
11621{
Tobias Grosser52a25232015-02-04 20:55:43 +000011622 if (!map)
Michael Kruse959a8dc2016-01-15 15:54:45 +000011623 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011624
Michael Kruse959a8dc2016-01-15 15:54:45 +000011625 return isl_space_can_range_curry(map->dim);
11626}
Tobias Grosser52a25232015-02-04 20:55:43 +000011627
Michael Kruse959a8dc2016-01-15 15:54:45 +000011628/* Given a map A -> ((B -> C) -> D), return the corresponding map
11629 * A -> (B -> (C -> D)).
11630 */
11631__isl_give isl_map *isl_map_range_curry(__isl_take isl_map *map)
11632{
11633 return isl_map_change_space(map, &isl_map_can_range_curry,
11634 "map range cannot be curried",
11635 &isl_space_range_curry);
Tobias Grosser52a25232015-02-04 20:55:43 +000011636}
11637
11638/* Can we apply isl_basic_map_uncurry to "bmap"?
11639 * That is, does it have a nested relation in its domain?
11640 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000011641isl_bool isl_basic_map_can_uncurry(__isl_keep isl_basic_map *bmap)
Tobias Grosser52a25232015-02-04 20:55:43 +000011642{
11643 if (!bmap)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011644 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011645
11646 return isl_space_can_uncurry(bmap->dim);
11647}
11648
11649/* Can we apply isl_map_uncurry to "map"?
11650 * That is, does it have a nested relation in its domain?
11651 */
Tobias Grosserb2f39922015-05-28 13:32:11 +000011652isl_bool isl_map_can_uncurry(__isl_keep isl_map *map)
Tobias Grosser52a25232015-02-04 20:55:43 +000011653{
11654 if (!map)
Tobias Grosserb2f39922015-05-28 13:32:11 +000011655 return isl_bool_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000011656
11657 return isl_space_can_uncurry(map->dim);
11658}
11659
11660/* Given a basic map A -> (B -> C), return the corresponding basic map
11661 * (A -> B) -> C.
11662 */
11663__isl_give isl_basic_map *isl_basic_map_uncurry(__isl_take isl_basic_map *bmap)
11664{
11665
11666 if (!bmap)
11667 return NULL;
11668
11669 if (!isl_basic_map_can_uncurry(bmap))
11670 isl_die(bmap->ctx, isl_error_invalid,
11671 "basic map cannot be uncurried",
11672 return isl_basic_map_free(bmap));
11673 bmap = isl_basic_map_cow(bmap);
11674 if (!bmap)
11675 return NULL;
11676 bmap->dim = isl_space_uncurry(bmap->dim);
11677 if (!bmap->dim)
11678 return isl_basic_map_free(bmap);
Michael Kruse959a8dc2016-01-15 15:54:45 +000011679 bmap = isl_basic_map_mark_final(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011680 return bmap;
11681}
11682
11683/* Given a map A -> (B -> C), return the corresponding map
11684 * (A -> B) -> C.
11685 */
11686__isl_give isl_map *isl_map_uncurry(__isl_take isl_map *map)
11687{
Michael Kruse959a8dc2016-01-15 15:54:45 +000011688 return isl_map_change_space(map, &isl_map_can_uncurry,
11689 "map cannot be uncurried", &isl_space_uncurry);
Tobias Grosser52a25232015-02-04 20:55:43 +000011690}
11691
11692/* Construct a basic map mapping the domain of the affine expression
11693 * to a one-dimensional range prescribed by the affine expression.
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011694 * If "rational" is set, then construct a rational basic map.
Tobias Grosser37034db2016-03-25 19:38:18 +000011695 *
11696 * A NaN affine expression cannot be converted to a basic map.
Tobias Grosser52a25232015-02-04 20:55:43 +000011697 */
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011698static __isl_give isl_basic_map *isl_basic_map_from_aff2(
11699 __isl_take isl_aff *aff, int rational)
Tobias Grosser52a25232015-02-04 20:55:43 +000011700{
11701 int k;
11702 int pos;
Tobias Grosser37034db2016-03-25 19:38:18 +000011703 isl_bool is_nan;
Tobias Grosser52a25232015-02-04 20:55:43 +000011704 isl_local_space *ls;
Tobias Grosser37034db2016-03-25 19:38:18 +000011705 isl_basic_map *bmap = NULL;
Tobias Grosser52a25232015-02-04 20:55:43 +000011706
11707 if (!aff)
11708 return NULL;
Tobias Grosser37034db2016-03-25 19:38:18 +000011709 is_nan = isl_aff_is_nan(aff);
11710 if (is_nan < 0)
11711 goto error;
11712 if (is_nan)
11713 isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
11714 "cannot convert NaN", goto error);
Tobias Grosser52a25232015-02-04 20:55:43 +000011715
11716 ls = isl_aff_get_local_space(aff);
11717 bmap = isl_basic_map_from_local_space(ls);
11718 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
11719 k = isl_basic_map_alloc_equality(bmap);
11720 if (k < 0)
11721 goto error;
11722
11723 pos = isl_basic_map_offset(bmap, isl_dim_out);
11724 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
11725 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
11726 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
11727 aff->v->size - (pos + 1));
11728
11729 isl_aff_free(aff);
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011730 if (rational)
11731 bmap = isl_basic_map_set_rational(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011732 bmap = isl_basic_map_finalize(bmap);
11733 return bmap;
11734error:
11735 isl_aff_free(aff);
11736 isl_basic_map_free(bmap);
11737 return NULL;
11738}
11739
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011740/* Construct a basic map mapping the domain of the affine expression
11741 * to a one-dimensional range prescribed by the affine expression.
11742 */
11743__isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
11744{
11745 return isl_basic_map_from_aff2(aff, 0);
11746}
11747
Tobias Grosser52a25232015-02-04 20:55:43 +000011748/* Construct a map mapping the domain of the affine expression
11749 * to a one-dimensional range prescribed by the affine expression.
11750 */
11751__isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
11752{
11753 isl_basic_map *bmap;
11754
11755 bmap = isl_basic_map_from_aff(aff);
11756 return isl_map_from_basic_map(bmap);
11757}
11758
11759/* Construct a basic map mapping the domain the multi-affine expression
11760 * to its range, with each dimension in the range equated to the
11761 * corresponding affine expression.
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011762 * If "rational" is set, then construct a rational basic map.
Tobias Grosser52a25232015-02-04 20:55:43 +000011763 */
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011764__isl_give isl_basic_map *isl_basic_map_from_multi_aff2(
11765 __isl_take isl_multi_aff *maff, int rational)
Tobias Grosser52a25232015-02-04 20:55:43 +000011766{
11767 int i;
11768 isl_space *space;
11769 isl_basic_map *bmap;
11770
11771 if (!maff)
11772 return NULL;
11773
11774 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
11775 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
11776 "invalid space", goto error);
11777
11778 space = isl_space_domain(isl_multi_aff_get_space(maff));
11779 bmap = isl_basic_map_universe(isl_space_from_domain(space));
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011780 if (rational)
11781 bmap = isl_basic_map_set_rational(bmap);
Tobias Grosser52a25232015-02-04 20:55:43 +000011782
11783 for (i = 0; i < maff->n; ++i) {
11784 isl_aff *aff;
11785 isl_basic_map *bmap_i;
11786
11787 aff = isl_aff_copy(maff->p[i]);
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011788 bmap_i = isl_basic_map_from_aff2(aff, rational);
Tobias Grosser52a25232015-02-04 20:55:43 +000011789
11790 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
11791 }
11792
11793 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
11794
11795 isl_multi_aff_free(maff);
11796 return bmap;
11797error:
11798 isl_multi_aff_free(maff);
11799 return NULL;
11800}
11801
Tobias Grosser5652c9c2016-10-01 19:46:51 +000011802/* Construct a basic map mapping the domain the multi-affine expression
11803 * to its range, with each dimension in the range equated to the
11804 * corresponding affine expression.
11805 */
11806__isl_give isl_basic_map *isl_basic_map_from_multi_aff(
11807 __isl_take isl_multi_aff *ma)
11808{
11809 return isl_basic_map_from_multi_aff2(ma, 0);
11810}
11811
Tobias Grosser52a25232015-02-04 20:55:43 +000011812/* Construct a map mapping the domain the multi-affine expression
11813 * to its range, with each dimension in the range equated to the
11814 * corresponding affine expression.
11815 */
11816__isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
11817{
11818 isl_basic_map *bmap;
11819
11820 bmap = isl_basic_map_from_multi_aff(maff);
11821 return isl_map_from_basic_map(bmap);
11822}
11823
11824/* Construct a basic map mapping a domain in the given space to
11825 * to an n-dimensional range, with n the number of elements in the list,
11826 * where each coordinate in the range is prescribed by the
11827 * corresponding affine expression.
11828 * The domains of all affine expressions in the list are assumed to match
11829 * domain_dim.
11830 */
11831__isl_give isl_basic_map *isl_basic_map_from_aff_list(
11832 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
11833{
11834 int i;
11835 isl_space *dim;
11836 isl_basic_map *bmap;
11837
11838 if (!list)
11839 return NULL;
11840
11841 dim = isl_space_from_domain(domain_dim);
11842 bmap = isl_basic_map_universe(dim);
11843
11844 for (i = 0; i < list->n; ++i) {
11845 isl_aff *aff;
11846 isl_basic_map *bmap_i;
11847
11848 aff = isl_aff_copy(list->p[i]);
11849 bmap_i = isl_basic_map_from_aff(aff);
11850
11851 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
11852 }
11853
11854 isl_aff_list_free(list);
11855 return bmap;
11856}
11857
11858__isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
11859 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11860{
11861 return isl_map_equate(set, type1, pos1, type2, pos2);
11862}
11863
11864/* Construct a basic map where the given dimensions are equal to each other.
11865 */
11866static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
11867 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11868{
11869 isl_basic_map *bmap = NULL;
11870 int i;
11871
11872 if (!space)
11873 return NULL;
11874
11875 if (pos1 >= isl_space_dim(space, type1))
11876 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11877 "index out of bounds", goto error);
11878 if (pos2 >= isl_space_dim(space, type2))
11879 isl_die(isl_space_get_ctx(space), isl_error_invalid,
11880 "index out of bounds", goto error);
11881
11882 if (type1 == type2 && pos1 == pos2)
11883 return isl_basic_map_universe(space);
11884
11885 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
11886 i = isl_basic_map_alloc_equality(bmap);
11887 if (i < 0)
11888 goto error;
11889 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
11890 pos1 += isl_basic_map_offset(bmap, type1);
11891 pos2 += isl_basic_map_offset(bmap, type2);
11892 isl_int_set_si(bmap->eq[i][pos1], -1);
11893 isl_int_set_si(bmap->eq[i][pos2], 1);
11894 bmap = isl_basic_map_finalize(bmap);
11895 isl_space_free(space);
11896 return bmap;
11897error:
11898 isl_space_free(space);
11899 isl_basic_map_free(bmap);
11900 return NULL;
11901}
11902
11903/* Add a constraint imposing that the given two dimensions are equal.
11904 */
11905__isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
11906 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11907{
11908 isl_basic_map *eq;
11909
11910 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
11911
11912 bmap = isl_basic_map_intersect(bmap, eq);
11913
11914 return bmap;
11915}
11916
11917/* Add a constraint imposing that the given two dimensions are equal.
11918 */
11919__isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
11920 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11921{
11922 isl_basic_map *bmap;
11923
11924 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
11925
11926 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
11927
11928 return map;
11929}
11930
11931/* Add a constraint imposing that the given two dimensions have opposite values.
11932 */
11933__isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
11934 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
11935{
11936 isl_basic_map *bmap = NULL;
11937 int i;
11938
11939 if (!map)
11940 return NULL;
11941
11942 if (pos1 >= isl_map_dim(map, type1))
11943 isl_die(map->ctx, isl_error_invalid,
11944 "index out of bounds", goto error);
11945 if (pos2 >= isl_map_dim(map, type2))
11946 isl_die(map->ctx, isl_error_invalid,
11947 "index out of bounds", goto error);
11948
11949 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
11950 i = isl_basic_map_alloc_equality(bmap);
11951 if (i < 0)
11952 goto error;
11953 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
11954 pos1 += isl_basic_map_offset(bmap, type1);
11955 pos2 += isl_basic_map_offset(bmap, type2);
11956 isl_int_set_si(bmap->eq[i][pos1], 1);
11957 isl_int_set_si(bmap->eq[i][pos2], 1);
11958 bmap = isl_basic_map_finalize(bmap);
11959
11960 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
11961
11962 return map;
11963error:
11964 isl_basic_map_free(bmap);
11965 isl_map_free(map);
11966 return NULL;
11967}
11968
11969/* Construct a constraint imposing that the value of the first dimension is
11970 * greater than or equal to that of the second.
11971 */
11972static __isl_give isl_constraint *constraint_order_ge(
11973 __isl_take isl_space *space, enum isl_dim_type type1, int pos1,
11974 enum isl_dim_type type2, int pos2)
11975{
11976 isl_constraint *c;
11977
11978 if (!space)
11979 return NULL;
11980
Tobias Grosserb2f39922015-05-28 13:32:11 +000011981 c = isl_constraint_alloc_inequality(isl_local_space_from_space(space));
Tobias Grosser52a25232015-02-04 20:55:43 +000011982
11983 if (pos1 >= isl_constraint_dim(c, type1))
11984 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
11985 "index out of bounds", return isl_constraint_free(c));
11986 if (pos2 >= isl_constraint_dim(c, type2))
11987 isl_die(isl_constraint_get_ctx(c), isl_error_invalid,
11988 "index out of bounds", return isl_constraint_free(c));
11989
11990 if (type1 == type2 && pos1 == pos2)
11991 return c;
11992
11993 c = isl_constraint_set_coefficient_si(c, type1, pos1, 1);
11994 c = isl_constraint_set_coefficient_si(c, type2, pos2, -1);
11995
11996 return c;
11997}
11998
11999/* Add a constraint imposing that the value of the first dimension is
12000 * greater than or equal to that of the second.
12001 */
12002__isl_give isl_basic_map *isl_basic_map_order_ge(__isl_take isl_basic_map *bmap,
12003 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12004{
12005 isl_constraint *c;
12006 isl_space *space;
12007
12008 if (type1 == type2 && pos1 == pos2)
12009 return bmap;
12010 space = isl_basic_map_get_space(bmap);
12011 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12012 bmap = isl_basic_map_add_constraint(bmap, c);
12013
12014 return bmap;
12015}
12016
12017/* Add a constraint imposing that the value of the first dimension is
12018 * greater than or equal to that of the second.
12019 */
12020__isl_give isl_map *isl_map_order_ge(__isl_take isl_map *map,
12021 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12022{
12023 isl_constraint *c;
12024 isl_space *space;
12025
12026 if (type1 == type2 && pos1 == pos2)
12027 return map;
12028 space = isl_map_get_space(map);
12029 c = constraint_order_ge(space, type1, pos1, type2, pos2);
12030 map = isl_map_add_constraint(map, c);
12031
12032 return map;
12033}
12034
12035/* Add a constraint imposing that the value of the first dimension is
12036 * less than or equal to that of the second.
12037 */
12038__isl_give isl_map *isl_map_order_le(__isl_take isl_map *map,
12039 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12040{
12041 return isl_map_order_ge(map, type2, pos2, type1, pos1);
12042}
12043
12044/* Construct a basic map where the value of the first dimension is
12045 * greater than that of the second.
12046 */
12047static __isl_give isl_basic_map *greator(__isl_take isl_space *space,
12048 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12049{
12050 isl_basic_map *bmap = NULL;
12051 int i;
12052
12053 if (!space)
12054 return NULL;
12055
12056 if (pos1 >= isl_space_dim(space, type1))
12057 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12058 "index out of bounds", goto error);
12059 if (pos2 >= isl_space_dim(space, type2))
12060 isl_die(isl_space_get_ctx(space), isl_error_invalid,
12061 "index out of bounds", goto error);
12062
12063 if (type1 == type2 && pos1 == pos2)
12064 return isl_basic_map_empty(space);
12065
12066 bmap = isl_basic_map_alloc_space(space, 0, 0, 1);
12067 i = isl_basic_map_alloc_inequality(bmap);
12068 if (i < 0)
12069 return isl_basic_map_free(bmap);
12070 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
12071 pos1 += isl_basic_map_offset(bmap, type1);
12072 pos2 += isl_basic_map_offset(bmap, type2);
12073 isl_int_set_si(bmap->ineq[i][pos1], 1);
12074 isl_int_set_si(bmap->ineq[i][pos2], -1);
12075 isl_int_set_si(bmap->ineq[i][0], -1);
12076 bmap = isl_basic_map_finalize(bmap);
12077
12078 return bmap;
12079error:
12080 isl_space_free(space);
12081 isl_basic_map_free(bmap);
12082 return NULL;
12083}
12084
12085/* Add a constraint imposing that the value of the first dimension is
12086 * greater than that of the second.
12087 */
12088__isl_give isl_basic_map *isl_basic_map_order_gt(__isl_take isl_basic_map *bmap,
12089 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12090{
12091 isl_basic_map *gt;
12092
12093 gt = greator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
12094
12095 bmap = isl_basic_map_intersect(bmap, gt);
12096
12097 return bmap;
12098}
12099
12100/* Add a constraint imposing that the value of the first dimension is
12101 * greater than that of the second.
12102 */
12103__isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
12104 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12105{
12106 isl_basic_map *bmap;
12107
12108 bmap = greator(isl_map_get_space(map), type1, pos1, type2, pos2);
12109
12110 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
12111
12112 return map;
12113}
12114
12115/* Add a constraint imposing that the value of the first dimension is
12116 * smaller than that of the second.
12117 */
12118__isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
12119 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
12120{
12121 return isl_map_order_gt(map, type2, pos2, type1, pos1);
12122}
12123
12124__isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
12125 int pos)
12126{
12127 isl_aff *div;
12128 isl_local_space *ls;
12129
12130 if (!bmap)
12131 return NULL;
12132
12133 if (!isl_basic_map_divs_known(bmap))
12134 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12135 "some divs are unknown", return NULL);
12136
12137 ls = isl_basic_map_get_local_space(bmap);
12138 div = isl_local_space_get_div(ls, pos);
12139 isl_local_space_free(ls);
12140
12141 return div;
12142}
12143
12144__isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
12145 int pos)
12146{
12147 return isl_basic_map_get_div(bset, pos);
12148}
12149
12150/* Plug in "subs" for dimension "type", "pos" of "bset".
12151 *
12152 * Let i be the dimension to replace and let "subs" be of the form
12153 *
12154 * f/d
12155 *
12156 * Any integer division with a non-zero coefficient for i,
12157 *
12158 * floor((a i + g)/m)
12159 *
12160 * is replaced by
12161 *
12162 * floor((a f + d g)/(m d))
12163 *
12164 * Constraints of the form
12165 *
12166 * a i + g
12167 *
12168 * are replaced by
12169 *
12170 * a f + d g
12171 *
12172 * We currently require that "subs" is an integral expression.
12173 * Handling rational expressions may require us to add stride constraints
12174 * as we do in isl_basic_set_preimage_multi_aff.
12175 */
12176__isl_give isl_basic_set *isl_basic_set_substitute(
12177 __isl_take isl_basic_set *bset,
12178 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12179{
12180 int i;
12181 isl_int v;
12182 isl_ctx *ctx;
12183
12184 if (bset && isl_basic_set_plain_is_empty(bset))
12185 return bset;
12186
12187 bset = isl_basic_set_cow(bset);
12188 if (!bset || !subs)
12189 goto error;
12190
12191 ctx = isl_basic_set_get_ctx(bset);
12192 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
12193 isl_die(ctx, isl_error_invalid,
12194 "spaces don't match", goto error);
12195 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
12196 isl_die(ctx, isl_error_unsupported,
12197 "cannot handle divs yet", goto error);
12198 if (!isl_int_is_one(subs->v->el[0]))
12199 isl_die(ctx, isl_error_invalid,
12200 "can only substitute integer expressions", goto error);
12201
12202 pos += isl_basic_set_offset(bset, type);
12203
12204 isl_int_init(v);
12205
12206 for (i = 0; i < bset->n_eq; ++i) {
12207 if (isl_int_is_zero(bset->eq[i][pos]))
12208 continue;
12209 isl_int_set(v, bset->eq[i][pos]);
12210 isl_int_set_si(bset->eq[i][pos], 0);
12211 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
12212 v, subs->v->el + 1, subs->v->size - 1);
12213 }
12214
12215 for (i = 0; i < bset->n_ineq; ++i) {
12216 if (isl_int_is_zero(bset->ineq[i][pos]))
12217 continue;
12218 isl_int_set(v, bset->ineq[i][pos]);
12219 isl_int_set_si(bset->ineq[i][pos], 0);
12220 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
12221 v, subs->v->el + 1, subs->v->size - 1);
12222 }
12223
12224 for (i = 0; i < bset->n_div; ++i) {
12225 if (isl_int_is_zero(bset->div[i][1 + pos]))
12226 continue;
12227 isl_int_set(v, bset->div[i][1 + pos]);
12228 isl_int_set_si(bset->div[i][1 + pos], 0);
12229 isl_seq_combine(bset->div[i] + 1,
12230 subs->v->el[0], bset->div[i] + 1,
12231 v, subs->v->el + 1, subs->v->size - 1);
12232 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
12233 }
12234
12235 isl_int_clear(v);
12236
12237 bset = isl_basic_set_simplify(bset);
12238 return isl_basic_set_finalize(bset);
12239error:
12240 isl_basic_set_free(bset);
12241 return NULL;
12242}
12243
12244/* Plug in "subs" for dimension "type", "pos" of "set".
12245 */
12246__isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
12247 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
12248{
12249 int i;
12250
12251 if (set && isl_set_plain_is_empty(set))
12252 return set;
12253
12254 set = isl_set_cow(set);
12255 if (!set || !subs)
12256 goto error;
12257
12258 for (i = set->n - 1; i >= 0; --i) {
12259 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
12260 if (remove_if_empty(set, i) < 0)
12261 goto error;
12262 }
12263
12264 return set;
12265error:
12266 isl_set_free(set);
12267 return NULL;
12268}
12269
12270/* Check if the range of "ma" is compatible with the domain or range
12271 * (depending on "type") of "bmap".
Tobias Grosser52a25232015-02-04 20:55:43 +000012272 */
Tobias Grosser72745c22017-02-17 05:11:16 +000012273static isl_stat check_basic_map_compatible_range_multi_aff(
Tobias Grosser52a25232015-02-04 20:55:43 +000012274 __isl_keep isl_basic_map *bmap, enum isl_dim_type type,
12275 __isl_keep isl_multi_aff *ma)
12276{
Tobias Grosser72745c22017-02-17 05:11:16 +000012277 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +000012278 isl_space *ma_space;
12279
12280 ma_space = isl_multi_aff_get_space(ma);
12281
Tobias Grosser593ebdf2017-03-14 07:33:26 +000012282 m = isl_space_has_equal_params(bmap->dim, ma_space);
Tobias Grosser52a25232015-02-04 20:55:43 +000012283 if (m < 0)
12284 goto error;
12285 if (!m)
12286 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12287 "parameters don't match", goto error);
12288 m = isl_space_tuple_is_equal(bmap->dim, type, ma_space, isl_dim_out);
12289 if (m < 0)
12290 goto error;
12291 if (!m)
12292 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
12293 "spaces don't match", goto error);
12294
12295 isl_space_free(ma_space);
Tobias Grosser72745c22017-02-17 05:11:16 +000012296 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +000012297error:
12298 isl_space_free(ma_space);
Tobias Grosser72745c22017-02-17 05:11:16 +000012299 return isl_stat_error;
Tobias Grosser52a25232015-02-04 20:55:43 +000012300}
12301
12302/* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12303 * coefficients before the transformed range of dimensions,
12304 * the "n_after" coefficients after the transformed range of dimensions
12305 * and the coefficients of the other divs in "bmap".
12306 */
12307static int set_ma_divs(__isl_keep isl_basic_map *bmap,
12308 __isl_keep isl_multi_aff *ma, int n_before, int n_after, int n_div)
12309{
12310 int i;
12311 int n_param;
12312 int n_set;
12313 isl_local_space *ls;
12314
12315 if (n_div == 0)
12316 return 0;
12317
12318 ls = isl_aff_get_domain_local_space(ma->p[0]);
12319 if (!ls)
12320 return -1;
12321
12322 n_param = isl_local_space_dim(ls, isl_dim_param);
12323 n_set = isl_local_space_dim(ls, isl_dim_set);
12324 for (i = 0; i < n_div; ++i) {
12325 int o_bmap = 0, o_ls = 0;
12326
12327 isl_seq_cpy(bmap->div[i], ls->div->row[i], 1 + 1 + n_param);
12328 o_bmap += 1 + 1 + n_param;
12329 o_ls += 1 + 1 + n_param;
12330 isl_seq_clr(bmap->div[i] + o_bmap, n_before);
12331 o_bmap += n_before;
12332 isl_seq_cpy(bmap->div[i] + o_bmap,
12333 ls->div->row[i] + o_ls, n_set);
12334 o_bmap += n_set;
12335 o_ls += n_set;
12336 isl_seq_clr(bmap->div[i] + o_bmap, n_after);
12337 o_bmap += n_after;
12338 isl_seq_cpy(bmap->div[i] + o_bmap,
12339 ls->div->row[i] + o_ls, n_div);
12340 o_bmap += n_div;
12341 o_ls += n_div;
12342 isl_seq_clr(bmap->div[i] + o_bmap, bmap->n_div - n_div);
Tobias Grosser59d23bb2017-02-23 12:48:42 +000012343 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
Tobias Grosser52a25232015-02-04 20:55:43 +000012344 goto error;
12345 }
12346
12347 isl_local_space_free(ls);
12348 return 0;
12349error:
12350 isl_local_space_free(ls);
12351 return -1;
12352}
12353
12354/* How many stride constraints does "ma" enforce?
12355 * That is, how many of the affine expressions have a denominator
12356 * different from one?
12357 */
12358static int multi_aff_strides(__isl_keep isl_multi_aff *ma)
12359{
12360 int i;
12361 int strides = 0;
12362
12363 for (i = 0; i < ma->n; ++i)
12364 if (!isl_int_is_one(ma->p[i]->v->el[0]))
12365 strides++;
12366
12367 return strides;
12368}
12369
12370/* For each affine expression in ma of the form
12371 *
12372 * x_i = (f_i y + h_i)/m_i
12373 *
12374 * with m_i different from one, add a constraint to "bmap"
12375 * of the form
12376 *
12377 * f_i y + h_i = m_i alpha_i
12378 *
12379 * with alpha_i an additional existentially quantified variable.
Tobias Grossera67ac972016-02-26 11:35:12 +000012380 *
12381 * The input variables of "ma" correspond to a subset of the variables
12382 * of "bmap". There are "n_before" variables in "bmap" before this
12383 * subset and "n_after" variables after this subset.
12384 * The integer divisions of the affine expressions in "ma" are assumed
12385 * to have been aligned. There are "n_div_ma" of them and
12386 * they appear first in "bmap", straight after the "n_after" variables.
Tobias Grosser52a25232015-02-04 20:55:43 +000012387 */
12388static __isl_give isl_basic_map *add_ma_strides(
12389 __isl_take isl_basic_map *bmap, __isl_keep isl_multi_aff *ma,
Tobias Grossera67ac972016-02-26 11:35:12 +000012390 int n_before, int n_after, int n_div_ma)
Tobias Grosser52a25232015-02-04 20:55:43 +000012391{
12392 int i, k;
12393 int div;
12394 int total;
12395 int n_param;
12396 int n_in;
Tobias Grosser52a25232015-02-04 20:55:43 +000012397
12398 total = isl_basic_map_total_dim(bmap);
12399 n_param = isl_multi_aff_dim(ma, isl_dim_param);
12400 n_in = isl_multi_aff_dim(ma, isl_dim_in);
Tobias Grosser52a25232015-02-04 20:55:43 +000012401 for (i = 0; i < ma->n; ++i) {
12402 int o_bmap = 0, o_ma = 1;
12403
12404 if (isl_int_is_one(ma->p[i]->v->el[0]))
12405 continue;
12406 div = isl_basic_map_alloc_div(bmap);
12407 k = isl_basic_map_alloc_equality(bmap);
12408 if (div < 0 || k < 0)
12409 goto error;
12410 isl_int_set_si(bmap->div[div][0], 0);
12411 isl_seq_cpy(bmap->eq[k] + o_bmap,
12412 ma->p[i]->v->el + o_ma, 1 + n_param);
12413 o_bmap += 1 + n_param;
12414 o_ma += 1 + n_param;
12415 isl_seq_clr(bmap->eq[k] + o_bmap, n_before);
12416 o_bmap += n_before;
12417 isl_seq_cpy(bmap->eq[k] + o_bmap,
12418 ma->p[i]->v->el + o_ma, n_in);
12419 o_bmap += n_in;
12420 o_ma += n_in;
12421 isl_seq_clr(bmap->eq[k] + o_bmap, n_after);
12422 o_bmap += n_after;
12423 isl_seq_cpy(bmap->eq[k] + o_bmap,
Tobias Grossera67ac972016-02-26 11:35:12 +000012424 ma->p[i]->v->el + o_ma, n_div_ma);
12425 o_bmap += n_div_ma;
12426 o_ma += n_div_ma;
Tobias Grosser52a25232015-02-04 20:55:43 +000012427 isl_seq_clr(bmap->eq[k] + o_bmap, 1 + total - o_bmap);
12428 isl_int_neg(bmap->eq[k][1 + total], ma->p[i]->v->el[0]);
12429 total++;
12430 }
12431
12432 return bmap;
12433error:
12434 isl_basic_map_free(bmap);
12435 return NULL;
12436}
12437
12438/* Replace the domain or range space (depending on "type) of "space" by "set".
12439 */
12440static __isl_give isl_space *isl_space_set(__isl_take isl_space *space,
12441 enum isl_dim_type type, __isl_take isl_space *set)
12442{
12443 if (type == isl_dim_in) {
12444 space = isl_space_range(space);
12445 space = isl_space_map_from_domain_and_range(set, space);
12446 } else {
12447 space = isl_space_domain(space);
12448 space = isl_space_map_from_domain_and_range(space, set);
12449 }
12450
12451 return space;
12452}
12453
12454/* Compute the preimage of the domain or range (depending on "type")
12455 * of "bmap" under the function represented by "ma".
12456 * In other words, plug in "ma" in the domain or range of "bmap".
12457 * The result is a basic map that lives in the same space as "bmap"
12458 * except that the domain or range has been replaced by
12459 * the domain space of "ma".
12460 *
12461 * If bmap is represented by
12462 *
12463 * A(p) + S u + B x + T v + C(divs) >= 0,
12464 *
12465 * where u and x are input and output dimensions if type == isl_dim_out
12466 * while x and v are input and output dimensions if type == isl_dim_in,
12467 * and ma is represented by
12468 *
12469 * x = D(p) + F(y) + G(divs')
12470 *
12471 * then the result is
12472 *
12473 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12474 *
12475 * The divs in the input set are similarly adjusted.
12476 * In particular
12477 *
12478 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12479 *
12480 * becomes
12481 *
12482 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12483 * B_i G(divs') + c_i(divs))/n_i)
12484 *
12485 * If bmap is not a rational map and if F(y) involves any denominators
12486 *
12487 * x_i = (f_i y + h_i)/m_i
12488 *
12489 * then additional constraints are added to ensure that we only
12490 * map back integer points. That is we enforce
12491 *
12492 * f_i y + h_i = m_i alpha_i
12493 *
12494 * with alpha_i an additional existentially quantified variable.
12495 *
12496 * We first copy over the divs from "ma".
12497 * Then we add the modified constraints and divs from "bmap".
12498 * Finally, we add the stride constraints, if needed.
12499 */
12500__isl_give isl_basic_map *isl_basic_map_preimage_multi_aff(
12501 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
12502 __isl_take isl_multi_aff *ma)
12503{
12504 int i, k;
12505 isl_space *space;
12506 isl_basic_map *res = NULL;
12507 int n_before, n_after, n_div_bmap, n_div_ma;
12508 isl_int f, c1, c2, g;
Tobias Grosser72745c22017-02-17 05:11:16 +000012509 isl_bool rational;
12510 int strides;
Tobias Grosser52a25232015-02-04 20:55:43 +000012511
12512 isl_int_init(f);
12513 isl_int_init(c1);
12514 isl_int_init(c2);
12515 isl_int_init(g);
12516
12517 ma = isl_multi_aff_align_divs(ma);
12518 if (!bmap || !ma)
12519 goto error;
12520 if (check_basic_map_compatible_range_multi_aff(bmap, type, ma) < 0)
12521 goto error;
12522
12523 if (type == isl_dim_in) {
12524 n_before = 0;
12525 n_after = isl_basic_map_dim(bmap, isl_dim_out);
12526 } else {
12527 n_before = isl_basic_map_dim(bmap, isl_dim_in);
12528 n_after = 0;
12529 }
12530 n_div_bmap = isl_basic_map_dim(bmap, isl_dim_div);
12531 n_div_ma = ma->n ? isl_aff_dim(ma->p[0], isl_dim_div) : 0;
12532
12533 space = isl_multi_aff_get_domain_space(ma);
12534 space = isl_space_set(isl_basic_map_get_space(bmap), type, space);
12535 rational = isl_basic_map_is_rational(bmap);
12536 strides = rational ? 0 : multi_aff_strides(ma);
12537 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides,
12538 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma);
12539 if (rational)
12540 res = isl_basic_map_set_rational(res);
12541
12542 for (i = 0; i < n_div_ma + n_div_bmap; ++i)
12543 if (isl_basic_map_alloc_div(res) < 0)
12544 goto error;
12545
12546 if (set_ma_divs(res, ma, n_before, n_after, n_div_ma) < 0)
12547 goto error;
12548
12549 for (i = 0; i < bmap->n_eq; ++i) {
12550 k = isl_basic_map_alloc_equality(res);
12551 if (k < 0)
12552 goto error;
12553 isl_seq_preimage(res->eq[k], bmap->eq[i], ma, n_before,
12554 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12555 }
12556
12557 for (i = 0; i < bmap->n_ineq; ++i) {
12558 k = isl_basic_map_alloc_inequality(res);
12559 if (k < 0)
12560 goto error;
12561 isl_seq_preimage(res->ineq[k], bmap->ineq[i], ma, n_before,
12562 n_after, n_div_ma, n_div_bmap, f, c1, c2, g, 0);
12563 }
12564
12565 for (i = 0; i < bmap->n_div; ++i) {
12566 if (isl_int_is_zero(bmap->div[i][0])) {
12567 isl_int_set_si(res->div[n_div_ma + i][0], 0);
12568 continue;
12569 }
12570 isl_seq_preimage(res->div[n_div_ma + i], bmap->div[i], ma,
12571 n_before, n_after, n_div_ma, n_div_bmap,
12572 f, c1, c2, g, 1);
12573 }
12574
12575 if (strides)
Tobias Grossera67ac972016-02-26 11:35:12 +000012576 res = add_ma_strides(res, ma, n_before, n_after, n_div_ma);
Tobias Grosser52a25232015-02-04 20:55:43 +000012577
12578 isl_int_clear(f);
12579 isl_int_clear(c1);
12580 isl_int_clear(c2);
12581 isl_int_clear(g);
12582 isl_basic_map_free(bmap);
12583 isl_multi_aff_free(ma);
Tobias Grosser59d23bb2017-02-23 12:48:42 +000012584 res = isl_basic_map_simplify(res);
Tobias Grosser52a25232015-02-04 20:55:43 +000012585 return isl_basic_map_finalize(res);
12586error:
12587 isl_int_clear(f);
12588 isl_int_clear(c1);
12589 isl_int_clear(c2);
12590 isl_int_clear(g);
12591 isl_basic_map_free(bmap);
12592 isl_multi_aff_free(ma);
12593 isl_basic_map_free(res);
12594 return NULL;
12595}
12596
12597/* Compute the preimage of "bset" under the function represented by "ma".
12598 * In other words, plug in "ma" in "bset". The result is a basic set
12599 * that lives in the domain space of "ma".
12600 */
12601__isl_give isl_basic_set *isl_basic_set_preimage_multi_aff(
12602 __isl_take isl_basic_set *bset, __isl_take isl_multi_aff *ma)
12603{
12604 return isl_basic_map_preimage_multi_aff(bset, isl_dim_set, ma);
12605}
12606
12607/* Compute the preimage of the domain of "bmap" under the function
12608 * represented by "ma".
12609 * In other words, plug in "ma" in the domain of "bmap".
12610 * The result is a basic map that lives in the same space as "bmap"
12611 * except that the domain has been replaced by the domain space of "ma".
12612 */
12613__isl_give isl_basic_map *isl_basic_map_preimage_domain_multi_aff(
12614 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12615{
12616 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_in, ma);
12617}
12618
12619/* Compute the preimage of the range of "bmap" under the function
12620 * represented by "ma".
12621 * In other words, plug in "ma" in the range of "bmap".
12622 * The result is a basic map that lives in the same space as "bmap"
12623 * except that the range has been replaced by the domain space of "ma".
12624 */
12625__isl_give isl_basic_map *isl_basic_map_preimage_range_multi_aff(
12626 __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma)
12627{
12628 return isl_basic_map_preimage_multi_aff(bmap, isl_dim_out, ma);
12629}
12630
12631/* Check if the range of "ma" is compatible with the domain or range
12632 * (depending on "type") of "map".
Tobias Grosser72745c22017-02-17 05:11:16 +000012633 * Return isl_stat_error if anything is wrong.
Tobias Grosser52a25232015-02-04 20:55:43 +000012634 */
Tobias Grosser72745c22017-02-17 05:11:16 +000012635static isl_stat check_map_compatible_range_multi_aff(
Tobias Grosser52a25232015-02-04 20:55:43 +000012636 __isl_keep isl_map *map, enum isl_dim_type type,
12637 __isl_keep isl_multi_aff *ma)
12638{
Tobias Grosser72745c22017-02-17 05:11:16 +000012639 isl_bool m;
Tobias Grosser52a25232015-02-04 20:55:43 +000012640 isl_space *ma_space;
12641
12642 ma_space = isl_multi_aff_get_space(ma);
12643 m = isl_space_tuple_is_equal(map->dim, type, ma_space, isl_dim_out);
12644 isl_space_free(ma_space);
Tobias Grosser72745c22017-02-17 05:11:16 +000012645 if (m < 0)
12646 return isl_stat_error;
12647 if (!m)
Tobias Grosser52a25232015-02-04 20:55:43 +000012648 isl_die(isl_map_get_ctx(map), isl_error_invalid,
Tobias Grosser72745c22017-02-17 05:11:16 +000012649 "spaces don't match", return isl_stat_error);
12650 return isl_stat_ok;
Tobias Grosser52a25232015-02-04 20:55:43 +000012651}
12652
12653/* Compute the preimage of the domain or range (depending on "type")
12654 * of "map" under the function represented by "ma".
12655 * In other words, plug in "ma" in the domain or range of "map".
12656 * The result is a map that lives in the same space as "map"
12657 * except that the domain or range has been replaced by
12658 * the domain space of "ma".
12659 *
12660 * The parameters are assumed to have been aligned.
12661 */
12662static __isl_give isl_map *map_preimage_multi_aff(__isl_take isl_map *map,
12663 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
12664{
12665 int i;
12666 isl_space *space;
12667
12668 map = isl_map_cow(map);
12669 ma = isl_multi_aff_align_divs(ma);
12670 if (!map || !ma)
12671 goto error;
12672 if (check_map_compatible_range_multi_aff(map, type, ma) < 0)
12673 goto error;
12674
12675 for (i = 0; i < map->n; ++i) {
12676 map->p[i] = isl_basic_map_preimage_multi_aff(map->p[i], type,
12677 isl_multi_aff_copy(ma));
12678 if (!map->p[i])
12679 goto error;
12680 }
12681
12682 space = isl_multi_aff_get_domain_space(ma);
12683 space = isl_space_set(isl_map_get_space(map), type, space);
12684
12685 isl_space_free(map->dim);
12686 map->dim = space;
12687 if (!map->dim)
12688 goto error;
12689
12690 isl_multi_aff_free(ma);
12691 if (map->n > 1)
12692 ISL_F_CLR(map, ISL_MAP_DISJOINT);
12693 ISL_F_CLR(map, ISL_SET_NORMALIZED);
12694 return map;
12695error:
12696 isl_multi_aff_free(ma);
12697 isl_map_free(map);
12698 return NULL;
12699}
12700
12701/* Compute the preimage of the domain or range (depending on "type")
12702 * of "map" under the function represented by "ma".
12703 * In other words, plug in "ma" in the domain or range of "map".
12704 * The result is a map that lives in the same space as "map"
12705 * except that the domain or range has been replaced by
12706 * the domain space of "ma".
12707 */
12708__isl_give isl_map *isl_map_preimage_multi_aff(__isl_take isl_map *map,
12709 enum isl_dim_type type, __isl_take isl_multi_aff *ma)
12710{
Tobias Grossere5671e52017-03-10 09:17:55 +000012711 isl_bool aligned;
12712
Tobias Grosser52a25232015-02-04 20:55:43 +000012713 if (!map || !ma)
12714 goto error;
12715
Tobias Grossere5671e52017-03-10 09:17:55 +000012716 aligned = isl_map_space_has_equal_params(map, ma->space);
12717 if (aligned < 0)
12718 goto error;
12719 if (aligned)
Tobias Grosser52a25232015-02-04 20:55:43 +000012720 return map_preimage_multi_aff(map, type, ma);
12721
Tobias Grossere5671e52017-03-10 09:17:55 +000012722 if (isl_map_check_named_params(map) < 0)
12723 goto error;
12724 if (!isl_space_has_named_params(ma->space))
Tobias Grosser52a25232015-02-04 20:55:43 +000012725 isl_die(map->ctx, isl_error_invalid,
12726 "unaligned unnamed parameters", goto error);
12727 map = isl_map_align_params(map, isl_multi_aff_get_space(ma));
12728 ma = isl_multi_aff_align_params(ma, isl_map_get_space(map));
12729
12730 return map_preimage_multi_aff(map, type, ma);
12731error:
12732 isl_multi_aff_free(ma);
12733 return isl_map_free(map);
12734}
12735
12736/* Compute the preimage of "set" under the function represented by "ma".
12737 * In other words, plug in "ma" in "set". The result is a set
12738 * that lives in the domain space of "ma".
12739 */
12740__isl_give isl_set *isl_set_preimage_multi_aff(__isl_take isl_set *set,
12741 __isl_take isl_multi_aff *ma)
12742{
12743 return isl_map_preimage_multi_aff(set, isl_dim_set, ma);
12744}
12745
12746/* Compute the preimage of the domain of "map" under the function
12747 * represented by "ma".
12748 * In other words, plug in "ma" in the domain of "map".
12749 * The result is a map that lives in the same space as "map"
12750 * except that the domain has been replaced by the domain space of "ma".
12751 */
12752__isl_give isl_map *isl_map_preimage_domain_multi_aff(__isl_take isl_map *map,
12753 __isl_take isl_multi_aff *ma)
12754{
12755 return isl_map_preimage_multi_aff(map, isl_dim_in, ma);
12756}
12757
12758/* Compute the preimage of the range of "map" under the function
12759 * represented by "ma".
12760 * In other words, plug in "ma" in the range of "map".
12761 * The result is a map that lives in the same space as "map"
12762 * except that the range has been replaced by the domain space of "ma".
12763 */
12764__isl_give isl_map *isl_map_preimage_range_multi_aff(__isl_take isl_map *map,
12765 __isl_take isl_multi_aff *ma)
12766{
12767 return isl_map_preimage_multi_aff(map, isl_dim_out, ma);
12768}
12769
12770/* Compute the preimage of "map" under the function represented by "pma".
12771 * In other words, plug in "pma" in the domain or range of "map".
12772 * The result is a map that lives in the same space as "map",
12773 * except that the space of type "type" has been replaced by
12774 * the domain space of "pma".
12775 *
12776 * The parameters of "map" and "pma" are assumed to have been aligned.
12777 */
12778static __isl_give isl_map *isl_map_preimage_pw_multi_aff_aligned(
12779 __isl_take isl_map *map, enum isl_dim_type type,
12780 __isl_take isl_pw_multi_aff *pma)
12781{
12782 int i;
12783 isl_map *res;
12784
12785 if (!pma)
12786 goto error;
12787
12788 if (pma->n == 0) {
12789 isl_pw_multi_aff_free(pma);
12790 res = isl_map_empty(isl_map_get_space(map));
12791 isl_map_free(map);
12792 return res;
12793 }
12794
12795 res = isl_map_preimage_multi_aff(isl_map_copy(map), type,
12796 isl_multi_aff_copy(pma->p[0].maff));
12797 if (type == isl_dim_in)
12798 res = isl_map_intersect_domain(res,
12799 isl_map_copy(pma->p[0].set));
12800 else
12801 res = isl_map_intersect_range(res,
12802 isl_map_copy(pma->p[0].set));
12803
12804 for (i = 1; i < pma->n; ++i) {
12805 isl_map *res_i;
12806
12807 res_i = isl_map_preimage_multi_aff(isl_map_copy(map), type,
12808 isl_multi_aff_copy(pma->p[i].maff));
12809 if (type == isl_dim_in)
12810 res_i = isl_map_intersect_domain(res_i,
12811 isl_map_copy(pma->p[i].set));
12812 else
12813 res_i = isl_map_intersect_range(res_i,
12814 isl_map_copy(pma->p[i].set));
12815 res = isl_map_union(res, res_i);
12816 }
12817
12818 isl_pw_multi_aff_free(pma);
12819 isl_map_free(map);
12820 return res;
12821error:
12822 isl_pw_multi_aff_free(pma);
12823 isl_map_free(map);
12824 return NULL;
12825}
12826
12827/* Compute the preimage of "map" under the function represented by "pma".
12828 * In other words, plug in "pma" in the domain or range of "map".
12829 * The result is a map that lives in the same space as "map",
12830 * except that the space of type "type" has been replaced by
12831 * the domain space of "pma".
12832 */
12833__isl_give isl_map *isl_map_preimage_pw_multi_aff(__isl_take isl_map *map,
12834 enum isl_dim_type type, __isl_take isl_pw_multi_aff *pma)
12835{
Tobias Grossere5671e52017-03-10 09:17:55 +000012836 isl_bool aligned;
12837
Tobias Grosser52a25232015-02-04 20:55:43 +000012838 if (!map || !pma)
12839 goto error;
12840
Tobias Grossere5671e52017-03-10 09:17:55 +000012841 aligned = isl_map_space_has_equal_params(map, pma->dim);
12842 if (aligned < 0)
12843 goto error;
12844 if (aligned)
Tobias Grosser52a25232015-02-04 20:55:43 +000012845 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
12846
Tobias Grossere5671e52017-03-10 09:17:55 +000012847 if (isl_map_check_named_params(map) < 0)
12848 goto error;
12849 if (!isl_space_has_named_params(pma->dim))
Tobias Grosser52a25232015-02-04 20:55:43 +000012850 isl_die(map->ctx, isl_error_invalid,
12851 "unaligned unnamed parameters", goto error);
12852 map = isl_map_align_params(map, isl_pw_multi_aff_get_space(pma));
12853 pma = isl_pw_multi_aff_align_params(pma, isl_map_get_space(map));
12854
12855 return isl_map_preimage_pw_multi_aff_aligned(map, type, pma);
12856error:
12857 isl_pw_multi_aff_free(pma);
12858 return isl_map_free(map);
12859}
12860
12861/* Compute the preimage of "set" under the function represented by "pma".
12862 * In other words, plug in "pma" in "set". The result is a set
12863 * that lives in the domain space of "pma".
12864 */
12865__isl_give isl_set *isl_set_preimage_pw_multi_aff(__isl_take isl_set *set,
12866 __isl_take isl_pw_multi_aff *pma)
12867{
12868 return isl_map_preimage_pw_multi_aff(set, isl_dim_set, pma);
12869}
12870
12871/* Compute the preimage of the domain of "map" under the function
12872 * represented by "pma".
12873 * In other words, plug in "pma" in the domain of "map".
12874 * The result is a map that lives in the same space as "map",
12875 * except that domain space has been replaced by the domain space of "pma".
12876 */
12877__isl_give isl_map *isl_map_preimage_domain_pw_multi_aff(
12878 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
12879{
12880 return isl_map_preimage_pw_multi_aff(map, isl_dim_in, pma);
12881}
12882
12883/* Compute the preimage of the range of "map" under the function
12884 * represented by "pma".
12885 * In other words, plug in "pma" in the range of "map".
12886 * The result is a map that lives in the same space as "map",
12887 * except that range space has been replaced by the domain space of "pma".
12888 */
12889__isl_give isl_map *isl_map_preimage_range_pw_multi_aff(
12890 __isl_take isl_map *map, __isl_take isl_pw_multi_aff *pma)
12891{
12892 return isl_map_preimage_pw_multi_aff(map, isl_dim_out, pma);
12893}
12894
12895/* Compute the preimage of "map" under the function represented by "mpa".
12896 * In other words, plug in "mpa" in the domain or range of "map".
12897 * The result is a map that lives in the same space as "map",
12898 * except that the space of type "type" has been replaced by
12899 * the domain space of "mpa".
12900 *
12901 * If the map does not involve any constraints that refer to the
12902 * dimensions of the substituted space, then the only possible
12903 * effect of "mpa" on the map is to map the space to a different space.
12904 * We create a separate isl_multi_aff to effectuate this change
12905 * in order to avoid spurious splitting of the map along the pieces
12906 * of "mpa".
12907 */
12908__isl_give isl_map *isl_map_preimage_multi_pw_aff(__isl_take isl_map *map,
12909 enum isl_dim_type type, __isl_take isl_multi_pw_aff *mpa)
12910{
12911 int n;
12912 isl_pw_multi_aff *pma;
12913
12914 if (!map || !mpa)
12915 goto error;
12916
12917 n = isl_map_dim(map, type);
12918 if (!isl_map_involves_dims(map, type, 0, n)) {
12919 isl_space *space;
12920 isl_multi_aff *ma;
12921
12922 space = isl_multi_pw_aff_get_space(mpa);
12923 isl_multi_pw_aff_free(mpa);
12924 ma = isl_multi_aff_zero(space);
12925 return isl_map_preimage_multi_aff(map, type, ma);
12926 }
12927
12928 pma = isl_pw_multi_aff_from_multi_pw_aff(mpa);
12929 return isl_map_preimage_pw_multi_aff(map, type, pma);
12930error:
12931 isl_map_free(map);
12932 isl_multi_pw_aff_free(mpa);
12933 return NULL;
12934}
12935
12936/* Compute the preimage of "map" under the function represented by "mpa".
12937 * In other words, plug in "mpa" in the domain "map".
12938 * The result is a map that lives in the same space as "map",
12939 * except that domain space has been replaced by the domain space of "mpa".
12940 */
12941__isl_give isl_map *isl_map_preimage_domain_multi_pw_aff(
12942 __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa)
12943{
12944 return isl_map_preimage_multi_pw_aff(map, isl_dim_in, mpa);
12945}
12946
12947/* Compute the preimage of "set" by the function represented by "mpa".
12948 * In other words, plug in "mpa" in "set".
12949 */
12950__isl_give isl_set *isl_set_preimage_multi_pw_aff(__isl_take isl_set *set,
12951 __isl_take isl_multi_pw_aff *mpa)
12952{
12953 return isl_map_preimage_multi_pw_aff(set, isl_dim_set, mpa);
12954}
Michael Kruse1b8eb412016-12-06 14:37:39 +000012955
Tobias Grosser94e53712016-12-31 07:46:11 +000012956/* Are the "n" "coefficients" starting at "first" of the integer division
12957 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
12958 * to each other?
12959 * The "coefficient" at position 0 is the denominator.
12960 * The "coefficient" at position 1 is the constant term.
12961 */
12962isl_bool isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map *bmap1,
12963 int pos1, __isl_keep isl_basic_map *bmap2, int pos2,
12964 unsigned first, unsigned n)
12965{
12966 if (isl_basic_map_check_range(bmap1, isl_dim_div, pos1, 1) < 0)
12967 return isl_bool_error;
12968 if (isl_basic_map_check_range(bmap2, isl_dim_div, pos2, 1) < 0)
12969 return isl_bool_error;
12970 return isl_seq_eq(bmap1->div[pos1] + first,
12971 bmap2->div[pos2] + first, n);
12972}
12973
12974/* Are the integer division expressions at position "pos1" in "bmap1" and
12975 * "pos2" in "bmap2" equal to each other, except that the constant terms
12976 * are different?
12977 */
12978isl_bool isl_basic_map_equal_div_expr_except_constant(
12979 __isl_keep isl_basic_map *bmap1, int pos1,
12980 __isl_keep isl_basic_map *bmap2, int pos2)
12981{
12982 isl_bool equal;
12983 unsigned total;
12984
12985 if (!bmap1 || !bmap2)
12986 return isl_bool_error;
12987 total = isl_basic_map_total_dim(bmap1);
12988 if (total != isl_basic_map_total_dim(bmap2))
12989 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
12990 "incomparable div expressions", return isl_bool_error);
12991 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
12992 0, 1);
12993 if (equal < 0 || !equal)
12994 return equal;
12995 equal = isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
12996 1, 1);
12997 if (equal < 0 || equal)
12998 return isl_bool_not(equal);
12999 return isl_basic_map_equal_div_expr_part(bmap1, pos1, bmap2, pos2,
13000 2, total);
13001}
13002
13003/* Replace the numerator of the constant term of the integer division
13004 * expression at position "div" in "bmap" by "value".
13005 * The caller guarantees that this does not change the meaning
13006 * of the input.
13007 */
13008__isl_give isl_basic_map *isl_basic_map_set_div_expr_constant_num_si_inplace(
13009 __isl_take isl_basic_map *bmap, int div, int value)
13010{
13011 if (isl_basic_map_check_range(bmap, isl_dim_div, div, 1) < 0)
13012 return isl_basic_map_free(bmap);
13013
13014 isl_int_set_si(bmap->div[div][1], value);
13015
13016 return bmap;
13017}
13018
Michael Kruse1b8eb412016-12-06 14:37:39 +000013019/* Is the point "inner" internal to inequality constraint "ineq"
13020 * of "bset"?
13021 * The point is considered to be internal to the inequality constraint,
13022 * if it strictly lies on the positive side of the inequality constraint,
13023 * or if it lies on the constraint and the constraint is lexico-positive.
13024 */
13025static isl_bool is_internal(__isl_keep isl_vec *inner,
13026 __isl_keep isl_basic_set *bset, int ineq)
13027{
13028 isl_ctx *ctx;
13029 int pos;
13030 unsigned total;
13031
13032 if (!inner || !bset)
13033 return isl_bool_error;
13034
13035 ctx = isl_basic_set_get_ctx(bset);
13036 isl_seq_inner_product(inner->el, bset->ineq[ineq], inner->size,
13037 &ctx->normalize_gcd);
13038 if (!isl_int_is_zero(ctx->normalize_gcd))
13039 return isl_int_is_nonneg(ctx->normalize_gcd);
13040
13041 total = isl_basic_set_dim(bset, isl_dim_all);
13042 pos = isl_seq_first_non_zero(bset->ineq[ineq] + 1, total);
13043 return isl_int_is_pos(bset->ineq[ineq][1 + pos]);
13044}
13045
13046/* Tighten the inequality constraints of "bset" that are outward with respect
13047 * to the point "vec".
13048 * That is, tighten the constraints that are not satisfied by "vec".
13049 *
13050 * "vec" is a point internal to some superset S of "bset" that is used
13051 * to make the subsets of S disjoint, by tightening one half of the constraints
13052 * that separate two subsets. In particular, the constraints of S
13053 * are all satisfied by "vec" and should not be tightened.
13054 * Of the internal constraints, those that have "vec" on the outside
13055 * are tightened. The shared facet is included in the adjacent subset
13056 * with the opposite constraint.
13057 * For constraints that saturate "vec", this criterion cannot be used
13058 * to determine which of the two sides should be tightened.
13059 * Instead, the sign of the first non-zero coefficient is used
13060 * to make this choice. Note that this second criterion is never used
13061 * on the constraints of S since "vec" is interior to "S".
13062 */
13063__isl_give isl_basic_set *isl_basic_set_tighten_outward(
13064 __isl_take isl_basic_set *bset, __isl_keep isl_vec *vec)
13065{
13066 int j;
13067
13068 bset = isl_basic_set_cow(bset);
13069 if (!bset)
13070 return NULL;
13071 for (j = 0; j < bset->n_ineq; ++j) {
13072 isl_bool internal;
13073
13074 internal = is_internal(vec, bset, j);
13075 if (internal < 0)
13076 return isl_basic_set_free(bset);
13077 if (internal)
13078 continue;
13079 isl_int_sub_ui(bset->ineq[j][0], bset->ineq[j][0], 1);
13080 }
13081
13082 return bset;
13083}