2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
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
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
26 #include <isl/constraint.h>
27 #include "isl_space_private.h"
28 #include "isl_equalities.h"
29 #include <isl_lp_private.h>
33 #include <isl_reordering.h>
34 #include "isl_sample.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>
49 #include <bset_to_bmap.c>
50 #include <bset_from_bmap.c>
51 #include <set_to_map.c>
52 #include <set_from_map.c>
54 static unsigned n(__isl_keep isl_space
*dim
, enum isl_dim_type 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
;
65 static unsigned pos(__isl_keep isl_space
*dim
, enum isl_dim_type 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
;
75 unsigned isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
76 enum isl_dim_type type
)
81 case isl_dim_cst
: return 1;
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
);
91 unsigned isl_map_dim(__isl_keep isl_map
*map
, enum isl_dim_type type
)
93 return map
? n(map
->dim
, type
) : 0;
96 unsigned isl_set_dim(__isl_keep isl_set
*set
, enum isl_dim_type type
)
98 return set
? n(set
->dim
, type
) : 0;
101 unsigned isl_basic_map_offset(struct isl_basic_map
*bmap
,
102 enum isl_dim_type type
)
111 case isl_dim_cst
: return 0;
112 case isl_dim_param
: return 1;
113 case isl_dim_in
: return 1 + space
->nparam
;
114 case isl_dim_out
: return 1 + space
->nparam
+ space
->n_in
;
115 case isl_dim_div
: return 1 + space
->nparam
+ space
->n_in
+
121 unsigned isl_basic_set_offset(struct isl_basic_set
*bset
,
122 enum isl_dim_type type
)
124 return isl_basic_map_offset(bset
, type
);
127 static unsigned map_offset(struct isl_map
*map
, enum isl_dim_type type
)
129 return pos(map
->dim
, type
);
132 unsigned isl_basic_set_dim(__isl_keep isl_basic_set
*bset
,
133 enum isl_dim_type type
)
135 return isl_basic_map_dim(bset
, type
);
138 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set
*bset
)
140 return isl_basic_set_dim(bset
, isl_dim_set
);
143 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set
*bset
)
145 return isl_basic_set_dim(bset
, isl_dim_param
);
148 unsigned isl_basic_set_total_dim(const struct isl_basic_set
*bset
)
152 return isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->n_div
;
155 unsigned isl_set_n_dim(__isl_keep isl_set
*set
)
157 return isl_set_dim(set
, isl_dim_set
);
160 unsigned isl_set_n_param(__isl_keep isl_set
*set
)
162 return isl_set_dim(set
, isl_dim_param
);
165 unsigned isl_basic_map_n_in(const struct isl_basic_map
*bmap
)
167 return bmap
? bmap
->dim
->n_in
: 0;
170 unsigned isl_basic_map_n_out(const struct isl_basic_map
*bmap
)
172 return bmap
? bmap
->dim
->n_out
: 0;
175 unsigned isl_basic_map_n_param(const struct isl_basic_map
*bmap
)
177 return bmap
? bmap
->dim
->nparam
: 0;
180 unsigned isl_basic_map_n_div(const struct isl_basic_map
*bmap
)
182 return bmap
? bmap
->n_div
: 0;
185 unsigned isl_basic_map_total_dim(const struct isl_basic_map
*bmap
)
187 return bmap
? isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->n_div
: 0;
190 unsigned isl_map_n_in(const struct isl_map
*map
)
192 return map
? map
->dim
->n_in
: 0;
195 unsigned isl_map_n_out(const struct isl_map
*map
)
197 return map
? map
->dim
->n_out
: 0;
200 unsigned isl_map_n_param(const struct isl_map
*map
)
202 return map
? map
->dim
->nparam
: 0;
205 isl_bool
isl_map_compatible_domain(__isl_keep isl_map
*map
,
206 __isl_keep isl_set
*set
)
210 return isl_bool_error
;
211 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
214 return isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
215 set
->dim
, isl_dim_set
);
218 isl_bool
isl_basic_map_compatible_domain(__isl_keep isl_basic_map
*bmap
,
219 __isl_keep isl_basic_set
*bset
)
223 return isl_bool_error
;
224 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
227 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
228 bset
->dim
, isl_dim_set
);
231 isl_bool
isl_map_compatible_range(__isl_keep isl_map
*map
,
232 __isl_keep isl_set
*set
)
236 return isl_bool_error
;
237 m
= isl_space_match(map
->dim
, isl_dim_param
, set
->dim
, isl_dim_param
);
240 return isl_space_tuple_is_equal(map
->dim
, isl_dim_out
,
241 set
->dim
, isl_dim_set
);
244 isl_bool
isl_basic_map_compatible_range(__isl_keep isl_basic_map
*bmap
,
245 __isl_keep isl_basic_set
*bset
)
249 return isl_bool_error
;
250 m
= isl_space_match(bmap
->dim
, isl_dim_param
, bset
->dim
, isl_dim_param
);
253 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_out
,
254 bset
->dim
, isl_dim_set
);
257 isl_ctx
*isl_basic_map_get_ctx(__isl_keep isl_basic_map
*bmap
)
259 return bmap
? bmap
->ctx
: NULL
;
262 isl_ctx
*isl_basic_set_get_ctx(__isl_keep isl_basic_set
*bset
)
264 return bset
? bset
->ctx
: NULL
;
267 isl_ctx
*isl_map_get_ctx(__isl_keep isl_map
*map
)
269 return map
? map
->ctx
: NULL
;
272 isl_ctx
*isl_set_get_ctx(__isl_keep isl_set
*set
)
274 return set
? set
->ctx
: NULL
;
277 __isl_give isl_space
*isl_basic_map_get_space(__isl_keep isl_basic_map
*bmap
)
281 return isl_space_copy(bmap
->dim
);
284 __isl_give isl_space
*isl_basic_set_get_space(__isl_keep isl_basic_set
*bset
)
288 return isl_space_copy(bset
->dim
);
291 /* Extract the divs in "bmap" as a matrix.
293 __isl_give isl_mat
*isl_basic_map_get_divs(__isl_keep isl_basic_map
*bmap
)
304 ctx
= isl_basic_map_get_ctx(bmap
);
305 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
306 cols
= 1 + 1 + total
+ bmap
->n_div
;
307 div
= isl_mat_alloc(ctx
, bmap
->n_div
, cols
);
311 for (i
= 0; i
< bmap
->n_div
; ++i
)
312 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
317 /* Extract the divs in "bset" as a matrix.
319 __isl_give isl_mat
*isl_basic_set_get_divs(__isl_keep isl_basic_set
*bset
)
321 return isl_basic_map_get_divs(bset
);
324 __isl_give isl_local_space
*isl_basic_map_get_local_space(
325 __isl_keep isl_basic_map
*bmap
)
332 div
= isl_basic_map_get_divs(bmap
);
333 return isl_local_space_alloc_div(isl_space_copy(bmap
->dim
), div
);
336 __isl_give isl_local_space
*isl_basic_set_get_local_space(
337 __isl_keep isl_basic_set
*bset
)
339 return isl_basic_map_get_local_space(bset
);
342 /* For each known div d = floor(f/m), add the constraints
345 * -(f-(m-1)) + m d >= 0
347 * Do not finalize the result.
349 static __isl_give isl_basic_map
*add_known_div_constraints(
350 __isl_take isl_basic_map
*bmap
)
357 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
360 bmap
= isl_basic_map_cow(bmap
);
361 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
364 for (i
= 0; i
< n_div
; ++i
) {
365 if (isl_int_is_zero(bmap
->div
[i
][0]))
367 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
368 return isl_basic_map_free(bmap
);
374 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
375 __isl_take isl_local_space
*ls
)
384 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
385 bmap
= isl_basic_map_alloc_space(isl_local_space_get_space(ls
),
386 n_div
, 0, 2 * n_div
);
388 for (i
= 0; i
< n_div
; ++i
)
389 if (isl_basic_map_alloc_div(bmap
) < 0)
392 for (i
= 0; i
< n_div
; ++i
)
393 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
394 bmap
= add_known_div_constraints(bmap
);
396 isl_local_space_free(ls
);
399 isl_local_space_free(ls
);
400 isl_basic_map_free(bmap
);
404 __isl_give isl_basic_set
*isl_basic_set_from_local_space(
405 __isl_take isl_local_space
*ls
)
407 return isl_basic_map_from_local_space(ls
);
410 __isl_give isl_space
*isl_map_get_space(__isl_keep isl_map
*map
)
414 return isl_space_copy(map
->dim
);
417 __isl_give isl_space
*isl_set_get_space(__isl_keep isl_set
*set
)
421 return isl_space_copy(set
->dim
);
424 __isl_give isl_basic_map
*isl_basic_map_set_tuple_name(
425 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, const char *s
)
427 bmap
= isl_basic_map_cow(bmap
);
430 bmap
->dim
= isl_space_set_tuple_name(bmap
->dim
, type
, s
);
433 bmap
= isl_basic_map_finalize(bmap
);
436 isl_basic_map_free(bmap
);
440 __isl_give isl_basic_set
*isl_basic_set_set_tuple_name(
441 __isl_take isl_basic_set
*bset
, const char *s
)
443 return isl_basic_map_set_tuple_name(bset
, isl_dim_set
, s
);
446 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map
*bmap
,
447 enum isl_dim_type type
)
449 return bmap
? isl_space_get_tuple_name(bmap
->dim
, type
) : NULL
;
452 __isl_give isl_map
*isl_map_set_tuple_name(__isl_take isl_map
*map
,
453 enum isl_dim_type type
, const char *s
)
457 map
= isl_map_cow(map
);
461 map
->dim
= isl_space_set_tuple_name(map
->dim
, type
, s
);
465 for (i
= 0; i
< map
->n
; ++i
) {
466 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
477 /* Replace the identifier of the tuple of type "type" by "id".
479 __isl_give isl_basic_map
*isl_basic_map_set_tuple_id(
480 __isl_take isl_basic_map
*bmap
,
481 enum isl_dim_type type
, __isl_take isl_id
*id
)
483 bmap
= isl_basic_map_cow(bmap
);
486 bmap
->dim
= isl_space_set_tuple_id(bmap
->dim
, type
, id
);
488 return isl_basic_map_free(bmap
);
489 bmap
= isl_basic_map_finalize(bmap
);
496 /* Replace the identifier of the tuple by "id".
498 __isl_give isl_basic_set
*isl_basic_set_set_tuple_id(
499 __isl_take isl_basic_set
*bset
, __isl_take isl_id
*id
)
501 return isl_basic_map_set_tuple_id(bset
, isl_dim_set
, id
);
504 /* Does the input or output tuple have a name?
506 isl_bool
isl_map_has_tuple_name(__isl_keep isl_map
*map
, enum isl_dim_type type
)
508 return map
? isl_space_has_tuple_name(map
->dim
, type
) : isl_bool_error
;
511 const char *isl_map_get_tuple_name(__isl_keep isl_map
*map
,
512 enum isl_dim_type type
)
514 return map
? isl_space_get_tuple_name(map
->dim
, type
) : NULL
;
517 __isl_give isl_set
*isl_set_set_tuple_name(__isl_take isl_set
*set
,
520 return set_from_map(isl_map_set_tuple_name(set_to_map(set
),
524 __isl_give isl_map
*isl_map_set_tuple_id(__isl_take isl_map
*map
,
525 enum isl_dim_type type
, __isl_take isl_id
*id
)
527 map
= isl_map_cow(map
);
531 map
->dim
= isl_space_set_tuple_id(map
->dim
, type
, id
);
533 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
539 __isl_give isl_set
*isl_set_set_tuple_id(__isl_take isl_set
*set
,
540 __isl_take isl_id
*id
)
542 return isl_map_set_tuple_id(set
, isl_dim_set
, id
);
545 __isl_give isl_map
*isl_map_reset_tuple_id(__isl_take isl_map
*map
,
546 enum isl_dim_type type
)
548 map
= isl_map_cow(map
);
552 map
->dim
= isl_space_reset_tuple_id(map
->dim
, type
);
554 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
557 __isl_give isl_set
*isl_set_reset_tuple_id(__isl_take isl_set
*set
)
559 return isl_map_reset_tuple_id(set
, isl_dim_set
);
562 isl_bool
isl_map_has_tuple_id(__isl_keep isl_map
*map
, enum isl_dim_type type
)
564 return map
? isl_space_has_tuple_id(map
->dim
, type
) : isl_bool_error
;
567 __isl_give isl_id
*isl_map_get_tuple_id(__isl_keep isl_map
*map
,
568 enum isl_dim_type type
)
570 return map
? isl_space_get_tuple_id(map
->dim
, type
) : NULL
;
573 isl_bool
isl_set_has_tuple_id(__isl_keep isl_set
*set
)
575 return isl_map_has_tuple_id(set
, isl_dim_set
);
578 __isl_give isl_id
*isl_set_get_tuple_id(__isl_keep isl_set
*set
)
580 return isl_map_get_tuple_id(set
, isl_dim_set
);
583 /* Does the set tuple have a name?
585 isl_bool
isl_set_has_tuple_name(__isl_keep isl_set
*set
)
588 return isl_bool_error
;
589 return isl_space_has_tuple_name(set
->dim
, isl_dim_set
);
593 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
595 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
598 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
600 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
603 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
604 enum isl_dim_type type
, unsigned pos
)
606 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
609 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
610 enum isl_dim_type type
, unsigned pos
)
612 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
615 /* Does the given dimension have a name?
617 isl_bool
isl_map_has_dim_name(__isl_keep isl_map
*map
,
618 enum isl_dim_type type
, unsigned pos
)
621 return isl_bool_error
;
622 return isl_space_has_dim_name(map
->dim
, type
, pos
);
625 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
626 enum isl_dim_type type
, unsigned pos
)
628 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
631 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
632 enum isl_dim_type type
, unsigned pos
)
634 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
637 /* Does the given dimension have a name?
639 isl_bool
isl_set_has_dim_name(__isl_keep isl_set
*set
,
640 enum isl_dim_type type
, unsigned pos
)
643 return isl_bool_error
;
644 return isl_space_has_dim_name(set
->dim
, type
, pos
);
647 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
648 __isl_take isl_basic_map
*bmap
,
649 enum isl_dim_type type
, unsigned pos
, const char *s
)
651 bmap
= isl_basic_map_cow(bmap
);
654 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
657 return isl_basic_map_finalize(bmap
);
659 isl_basic_map_free(bmap
);
663 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
664 enum isl_dim_type type
, unsigned pos
, const char *s
)
668 map
= isl_map_cow(map
);
672 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
676 for (i
= 0; i
< map
->n
; ++i
) {
677 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
688 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
689 __isl_take isl_basic_set
*bset
,
690 enum isl_dim_type type
, unsigned pos
, const char *s
)
692 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset
),
696 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
697 enum isl_dim_type type
, unsigned pos
, const char *s
)
699 return set_from_map(isl_map_set_dim_name(set_to_map(set
),
703 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
704 enum isl_dim_type type
, unsigned pos
)
707 return isl_bool_error
;
708 return isl_space_has_dim_id(bmap
->dim
, type
, pos
);
711 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
712 enum isl_dim_type type
, unsigned pos
)
714 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
717 isl_bool
isl_map_has_dim_id(__isl_keep isl_map
*map
,
718 enum isl_dim_type type
, unsigned pos
)
720 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : isl_bool_error
;
723 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
724 enum isl_dim_type type
, unsigned pos
)
726 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
729 isl_bool
isl_set_has_dim_id(__isl_keep isl_set
*set
,
730 enum isl_dim_type type
, unsigned pos
)
732 return isl_map_has_dim_id(set
, type
, pos
);
735 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
736 enum isl_dim_type type
, unsigned pos
)
738 return isl_map_get_dim_id(set
, type
, pos
);
741 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
742 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
744 map
= isl_map_cow(map
);
748 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
750 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
756 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
757 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
759 return isl_map_set_dim_id(set
, type
, pos
, id
);
762 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
763 __isl_keep isl_id
*id
)
767 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
770 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
771 __isl_keep isl_id
*id
)
773 return isl_map_find_dim_by_id(set
, type
, id
);
776 /* Return the position of the dimension of the given type and name
778 * Return -1 if no such dimension can be found.
780 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
781 enum isl_dim_type type
, const char *name
)
785 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
788 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
793 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
796 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
799 return isl_map_find_dim_by_name(set
, type
, name
);
802 /* Reset the user pointer on all identifiers of parameters and tuples
803 * of the space of "map".
805 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
809 space
= isl_map_get_space(map
);
810 space
= isl_space_reset_user(space
);
811 map
= isl_map_reset_space(map
, space
);
816 /* Reset the user pointer on all identifiers of parameters and tuples
817 * of the space of "set".
819 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
821 return isl_map_reset_user(set
);
824 isl_bool
isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
827 return isl_bool_error
;
828 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
831 /* Has "map" been marked as a rational map?
832 * In particular, have all basic maps in "map" been marked this way?
833 * An empty map is not considered to be rational.
834 * Maps where only some of the basic maps are marked rational
837 isl_bool
isl_map_is_rational(__isl_keep isl_map
*map
)
843 return isl_bool_error
;
845 return isl_bool_false
;
846 rational
= isl_basic_map_is_rational(map
->p
[0]);
849 for (i
= 1; i
< map
->n
; ++i
) {
852 rational_i
= isl_basic_map_is_rational(map
->p
[i
]);
855 if (rational
!= rational_i
)
856 isl_die(isl_map_get_ctx(map
), isl_error_unsupported
,
857 "mixed rational and integer basic maps "
858 "not supported", return isl_bool_error
);
864 /* Has "set" been marked as a rational set?
865 * In particular, have all basic set in "set" been marked this way?
866 * An empty set is not considered to be rational.
867 * Sets where only some of the basic sets are marked rational
870 isl_bool
isl_set_is_rational(__isl_keep isl_set
*set
)
872 return isl_map_is_rational(set
);
875 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
877 return isl_basic_map_is_rational(bset
);
880 /* Does "bmap" contain any rational points?
882 * If "bmap" has an equality for each dimension, equating the dimension
883 * to an integer constant, then it has no rational points, even if it
884 * is marked as rational.
886 isl_bool
isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
888 isl_bool has_rational
= isl_bool_true
;
892 return isl_bool_error
;
893 if (isl_basic_map_plain_is_empty(bmap
))
894 return isl_bool_false
;
895 if (!isl_basic_map_is_rational(bmap
))
896 return isl_bool_false
;
897 bmap
= isl_basic_map_copy(bmap
);
898 bmap
= isl_basic_map_implicit_equalities(bmap
);
900 return isl_bool_error
;
901 total
= isl_basic_map_total_dim(bmap
);
902 if (bmap
->n_eq
== total
) {
904 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
905 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
908 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
909 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
911 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
917 has_rational
= isl_bool_false
;
919 isl_basic_map_free(bmap
);
924 /* Does "map" contain any rational points?
926 isl_bool
isl_map_has_rational(__isl_keep isl_map
*map
)
929 isl_bool has_rational
;
932 return isl_bool_error
;
933 for (i
= 0; i
< map
->n
; ++i
) {
934 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
935 if (has_rational
< 0 || has_rational
)
938 return isl_bool_false
;
941 /* Does "set" contain any rational points?
943 isl_bool
isl_set_has_rational(__isl_keep isl_set
*set
)
945 return isl_map_has_rational(set
);
948 /* Is this basic set a parameter domain?
950 isl_bool
isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
953 return isl_bool_error
;
954 return isl_space_is_params(bset
->dim
);
957 /* Is this set a parameter domain?
959 isl_bool
isl_set_is_params(__isl_keep isl_set
*set
)
962 return isl_bool_error
;
963 return isl_space_is_params(set
->dim
);
966 /* Is this map actually a parameter domain?
967 * Users should never call this function. Outside of isl,
968 * a map can never be a parameter domain.
970 isl_bool
isl_map_is_params(__isl_keep isl_map
*map
)
973 return isl_bool_error
;
974 return isl_space_is_params(map
->dim
);
977 static struct isl_basic_map
*basic_map_init(struct isl_ctx
*ctx
,
978 struct isl_basic_map
*bmap
, unsigned extra
,
979 unsigned n_eq
, unsigned n_ineq
)
982 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
987 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
988 if (isl_blk_is_error(bmap
->block
))
991 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
992 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
996 bmap
->block2
= isl_blk_empty();
999 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
1000 if (isl_blk_is_error(bmap
->block2
))
1003 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
1008 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
1009 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
1011 for (i
= 0; i
< extra
; ++i
)
1012 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
1016 bmap
->c_size
= n_eq
+ n_ineq
;
1017 bmap
->eq
= bmap
->ineq
+ n_ineq
;
1018 bmap
->extra
= extra
;
1022 bmap
->sample
= NULL
;
1026 isl_basic_map_free(bmap
);
1030 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
1031 unsigned nparam
, unsigned dim
, unsigned extra
,
1032 unsigned n_eq
, unsigned n_ineq
)
1034 struct isl_basic_map
*bmap
;
1037 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
1041 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1042 return bset_from_bmap(bmap
);
1045 struct isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
1046 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1048 struct isl_basic_map
*bmap
;
1051 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
1052 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1053 return bset_from_bmap(bmap
);
1055 isl_space_free(dim
);
1059 struct isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*dim
,
1060 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1062 struct isl_basic_map
*bmap
;
1066 bmap
= isl_calloc_type(dim
->ctx
, struct isl_basic_map
);
1071 return basic_map_init(dim
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
1073 isl_space_free(dim
);
1077 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
1078 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
1079 unsigned n_eq
, unsigned n_ineq
)
1081 struct isl_basic_map
*bmap
;
1084 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
1088 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1092 static void dup_constraints(
1093 struct isl_basic_map
*dst
, struct isl_basic_map
*src
)
1096 unsigned total
= isl_basic_map_total_dim(src
);
1098 for (i
= 0; i
< src
->n_eq
; ++i
) {
1099 int j
= isl_basic_map_alloc_equality(dst
);
1100 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1103 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1104 int j
= isl_basic_map_alloc_inequality(dst
);
1105 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1108 for (i
= 0; i
< src
->n_div
; ++i
) {
1109 int j
= isl_basic_map_alloc_div(dst
);
1110 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1112 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1115 struct isl_basic_map
*isl_basic_map_dup(struct isl_basic_map
*bmap
)
1117 struct isl_basic_map
*dup
;
1121 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1122 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1125 dup_constraints(dup
, bmap
);
1126 dup
->flags
= bmap
->flags
;
1127 dup
->sample
= isl_vec_copy(bmap
->sample
);
1131 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1133 struct isl_basic_map
*dup
;
1135 dup
= isl_basic_map_dup(bset_to_bmap(bset
));
1136 return bset_from_bmap(dup
);
1139 struct isl_basic_set
*isl_basic_set_copy(struct isl_basic_set
*bset
)
1144 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1148 return isl_basic_set_dup(bset
);
1151 struct isl_set
*isl_set_copy(struct isl_set
*set
)
1160 struct isl_basic_map
*isl_basic_map_copy(struct isl_basic_map
*bmap
)
1165 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1169 bmap
= isl_basic_map_dup(bmap
);
1171 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1175 struct isl_map
*isl_map_copy(struct isl_map
*map
)
1184 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1189 if (--bmap
->ref
> 0)
1192 isl_ctx_deref(bmap
->ctx
);
1194 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1196 isl_blk_free(bmap
->ctx
, bmap
->block
);
1197 isl_vec_free(bmap
->sample
);
1198 isl_space_free(bmap
->dim
);
1204 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1206 return isl_basic_map_free(bset_to_bmap(bset
));
1209 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1211 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1214 __isl_give isl_map
*isl_map_align_params_map_map_and(
1215 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1216 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1217 __isl_take isl_map
*map2
))
1221 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1222 return fn(map1
, map2
);
1223 if (!isl_space_has_named_params(map1
->dim
) ||
1224 !isl_space_has_named_params(map2
->dim
))
1225 isl_die(map1
->ctx
, isl_error_invalid
,
1226 "unaligned unnamed parameters", goto error
);
1227 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1228 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1229 return fn(map1
, map2
);
1236 isl_bool
isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1237 __isl_keep isl_map
*map2
,
1238 isl_bool (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1243 return isl_bool_error
;
1244 if (isl_space_match(map1
->dim
, isl_dim_param
, map2
->dim
, isl_dim_param
))
1245 return fn(map1
, map2
);
1246 if (!isl_space_has_named_params(map1
->dim
) ||
1247 !isl_space_has_named_params(map2
->dim
))
1248 isl_die(map1
->ctx
, isl_error_invalid
,
1249 "unaligned unnamed parameters", return isl_bool_error
);
1250 map1
= isl_map_copy(map1
);
1251 map2
= isl_map_copy(map2
);
1252 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1253 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1260 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1262 struct isl_ctx
*ctx
;
1266 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1267 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1269 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1270 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1271 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1272 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1273 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1274 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1276 int j
= isl_basic_map_alloc_inequality(bmap
);
1280 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1281 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1288 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1289 bmap
->extra
- bmap
->n_div
);
1290 return bmap
->n_eq
++;
1293 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1295 return isl_basic_map_alloc_equality(bset_to_bmap(bset
));
1298 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1302 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1307 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1309 return isl_basic_map_free_equality(bset_to_bmap(bset
), n
);
1312 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1317 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1319 if (pos
!= bmap
->n_eq
- 1) {
1321 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1322 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1328 int isl_basic_set_drop_equality(struct isl_basic_set
*bset
, unsigned pos
)
1330 return isl_basic_map_drop_equality(bset_to_bmap(bset
), pos
);
1333 /* Turn inequality "pos" of "bmap" into an equality.
1335 * In particular, we move the inequality in front of the equalities
1336 * and move the last inequality in the position of the moved inequality.
1337 * Note that isl_tab_make_equalities_explicit depends on this particular
1338 * change in the ordering of the constraints.
1340 void isl_basic_map_inequality_to_equality(
1341 struct isl_basic_map
*bmap
, unsigned pos
)
1345 t
= bmap
->ineq
[pos
];
1346 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1347 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1352 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1353 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1354 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1355 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1358 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1360 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1363 int isl_basic_map_alloc_inequality(struct isl_basic_map
*bmap
)
1365 struct isl_ctx
*ctx
;
1369 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1370 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1371 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1372 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1373 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1374 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1375 1 + isl_basic_map_total_dim(bmap
),
1376 bmap
->extra
- bmap
->n_div
);
1377 return bmap
->n_ineq
++;
1380 int isl_basic_set_alloc_inequality(struct isl_basic_set
*bset
)
1382 return isl_basic_map_alloc_inequality(bset_to_bmap(bset
));
1385 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1389 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1394 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1396 return isl_basic_map_free_inequality(bset_to_bmap(bset
), n
);
1399 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1404 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1406 if (pos
!= bmap
->n_ineq
- 1) {
1407 t
= bmap
->ineq
[pos
];
1408 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1409 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1410 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1416 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1418 return isl_basic_map_drop_inequality(bset_to_bmap(bset
), pos
);
1421 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1426 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1429 k
= isl_basic_map_alloc_equality(bmap
);
1432 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1435 isl_basic_map_free(bmap
);
1439 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1442 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset
), eq
));
1445 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1450 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1453 k
= isl_basic_map_alloc_inequality(bmap
);
1456 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1459 isl_basic_map_free(bmap
);
1463 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1466 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset
), ineq
));
1469 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1473 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1474 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1475 1 + 1 + isl_basic_map_total_dim(bmap
),
1476 bmap
->extra
- bmap
->n_div
);
1477 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1478 return bmap
->n_div
++;
1481 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1483 return isl_basic_map_alloc_div(bset_to_bmap(bset
));
1486 /* Check that there are "n" dimensions of type "type" starting at "first"
1489 static isl_stat
isl_basic_map_check_range(__isl_keep isl_basic_map
*bmap
,
1490 enum isl_dim_type type
, unsigned first
, unsigned n
)
1495 return isl_stat_error
;
1496 dim
= isl_basic_map_dim(bmap
, type
);
1497 if (first
+ n
> dim
|| first
+ n
< first
)
1498 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1499 "position or range out of bounds",
1500 return isl_stat_error
);
1504 /* Insert an extra integer division, prescribed by "div", to "bmap"
1505 * at (integer division) position "pos".
1507 * The integer division is first added at the end and then moved
1508 * into the right position.
1510 __isl_give isl_basic_map
*isl_basic_map_insert_div(
1511 __isl_take isl_basic_map
*bmap
, int pos
, __isl_keep isl_vec
*div
)
1515 bmap
= isl_basic_map_cow(bmap
);
1517 return isl_basic_map_free(bmap
);
1519 if (div
->size
!= 1 + 1 + isl_basic_map_dim(bmap
, isl_dim_all
))
1520 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1521 "unexpected size", return isl_basic_map_free(bmap
));
1522 if (isl_basic_map_check_range(bmap
, isl_dim_div
, pos
, 0) < 0)
1523 return isl_basic_map_free(bmap
);
1525 bmap
= isl_basic_map_extend_space(bmap
,
1526 isl_basic_map_get_space(bmap
), 1, 0, 2);
1527 k
= isl_basic_map_alloc_div(bmap
);
1529 return isl_basic_map_free(bmap
);
1530 isl_seq_cpy(bmap
->div
[k
], div
->el
, div
->size
);
1531 isl_int_set_si(bmap
->div
[k
][div
->size
], 0);
1533 for (i
= k
; i
> pos
; --i
)
1534 isl_basic_map_swap_div(bmap
, i
, i
- 1);
1539 isl_stat
isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1542 return isl_stat_error
;
1543 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return isl_stat_error
);
1548 isl_stat
isl_basic_set_free_div(struct isl_basic_set
*bset
, unsigned n
)
1550 return isl_basic_map_free_div(bset_to_bmap(bset
), n
);
1553 /* Copy constraint from src to dst, putting the vars of src at offset
1554 * dim_off in dst and the divs of src at offset div_off in dst.
1555 * If both sets are actually map, then dim_off applies to the input
1558 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1559 struct isl_basic_map
*src_map
, isl_int
*src
,
1560 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1562 unsigned src_nparam
= isl_basic_map_n_param(src_map
);
1563 unsigned dst_nparam
= isl_basic_map_n_param(dst_map
);
1564 unsigned src_in
= isl_basic_map_n_in(src_map
);
1565 unsigned dst_in
= isl_basic_map_n_in(dst_map
);
1566 unsigned src_out
= isl_basic_map_n_out(src_map
);
1567 unsigned dst_out
= isl_basic_map_n_out(dst_map
);
1568 isl_int_set(dst
[0], src
[0]);
1569 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1570 if (dst_nparam
> src_nparam
)
1571 isl_seq_clr(dst
+1+src_nparam
,
1572 dst_nparam
- src_nparam
);
1573 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1574 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1576 isl_min(dst_in
-in_off
, src_in
));
1577 if (dst_in
-in_off
> src_in
)
1578 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1579 dst_in
- in_off
- src_in
);
1580 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1581 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1582 src
+1+src_nparam
+src_in
,
1583 isl_min(dst_out
-out_off
, src_out
));
1584 if (dst_out
-out_off
> src_out
)
1585 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1586 dst_out
- out_off
- src_out
);
1587 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1588 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1589 src
+1+src_nparam
+src_in
+src_out
,
1590 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1591 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1592 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1593 div_off
+src_map
->n_div
,
1594 dst_map
->n_div
- div_off
- src_map
->n_div
);
1597 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1598 struct isl_basic_map
*src_map
, isl_int
*src
,
1599 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1601 isl_int_set(dst
[0], src
[0]);
1602 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1605 static struct isl_basic_map
*add_constraints(struct isl_basic_map
*bmap1
,
1606 struct isl_basic_map
*bmap2
, unsigned i_pos
, unsigned o_pos
)
1611 if (!bmap1
|| !bmap2
)
1614 div_off
= bmap1
->n_div
;
1616 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1617 int i1
= isl_basic_map_alloc_equality(bmap1
);
1620 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1621 i_pos
, o_pos
, div_off
);
1624 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1625 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1628 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1629 i_pos
, o_pos
, div_off
);
1632 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1633 int i1
= isl_basic_map_alloc_div(bmap1
);
1636 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1637 i_pos
, o_pos
, div_off
);
1640 isl_basic_map_free(bmap2
);
1645 isl_basic_map_free(bmap1
);
1646 isl_basic_map_free(bmap2
);
1650 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1651 struct isl_basic_set
*bset2
, unsigned pos
)
1653 return bset_from_bmap(add_constraints(bset_to_bmap(bset1
),
1654 bset_to_bmap(bset2
), 0, pos
));
1657 struct isl_basic_map
*isl_basic_map_extend_space(struct isl_basic_map
*base
,
1658 __isl_take isl_space
*dim
, unsigned extra
,
1659 unsigned n_eq
, unsigned n_ineq
)
1661 struct isl_basic_map
*ext
;
1671 dims_ok
= isl_space_is_equal(base
->dim
, dim
) &&
1672 base
->extra
>= base
->n_div
+ extra
;
1674 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1675 room_for_ineq(base
, n_ineq
)) {
1676 isl_space_free(dim
);
1680 isl_assert(base
->ctx
, base
->dim
->nparam
<= dim
->nparam
, goto error
);
1681 isl_assert(base
->ctx
, base
->dim
->n_in
<= dim
->n_in
, goto error
);
1682 isl_assert(base
->ctx
, base
->dim
->n_out
<= dim
->n_out
, goto error
);
1683 extra
+= base
->extra
;
1685 n_ineq
+= base
->n_ineq
;
1687 ext
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1693 ext
->sample
= isl_vec_copy(base
->sample
);
1694 flags
= base
->flags
;
1695 ext
= add_constraints(ext
, base
, 0, 0);
1698 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1704 isl_space_free(dim
);
1705 isl_basic_map_free(base
);
1709 struct isl_basic_set
*isl_basic_set_extend_space(struct isl_basic_set
*base
,
1710 __isl_take isl_space
*dim
, unsigned extra
,
1711 unsigned n_eq
, unsigned n_ineq
)
1713 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base
),
1714 dim
, extra
, n_eq
, n_ineq
));
1717 struct isl_basic_map
*isl_basic_map_extend_constraints(
1718 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1722 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1726 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1727 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1728 unsigned n_eq
, unsigned n_ineq
)
1730 struct isl_basic_map
*bmap
;
1735 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1739 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1742 isl_basic_map_free(base
);
1746 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1747 unsigned nparam
, unsigned dim
, unsigned extra
,
1748 unsigned n_eq
, unsigned n_ineq
)
1750 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base
),
1751 nparam
, 0, dim
, extra
, n_eq
, n_ineq
));
1754 struct isl_basic_set
*isl_basic_set_extend_constraints(
1755 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1757 isl_basic_map
*bmap
= bset_to_bmap(base
);
1758 bmap
= isl_basic_map_extend_constraints(bmap
, n_eq
, n_ineq
);
1759 return bset_from_bmap(bmap
);
1762 struct isl_basic_set
*isl_basic_set_cow(struct isl_basic_set
*bset
)
1764 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset
)));
1767 struct isl_basic_map
*isl_basic_map_cow(struct isl_basic_map
*bmap
)
1772 if (bmap
->ref
> 1) {
1774 bmap
= isl_basic_map_dup(bmap
);
1777 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1778 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1783 /* Clear all cached information in "map", either because it is about
1784 * to be modified or because it is being freed.
1785 * Always return the same pointer that is passed in.
1786 * This is needed for the use in isl_map_free.
1788 static __isl_give isl_map
*clear_caches(__isl_take isl_map
*map
)
1790 isl_basic_map_free(map
->cached_simple_hull
[0]);
1791 isl_basic_map_free(map
->cached_simple_hull
[1]);
1792 map
->cached_simple_hull
[0] = NULL
;
1793 map
->cached_simple_hull
[1] = NULL
;
1797 struct isl_set
*isl_set_cow(struct isl_set
*set
)
1799 return isl_map_cow(set
);
1802 /* Return an isl_map that is equal to "map" and that has only
1803 * a single reference.
1805 * If the original input already has only one reference, then
1806 * simply return it, but clear all cached information, since
1807 * it may be rendered invalid by the operations that will be
1808 * performed on the result.
1810 * Otherwise, create a duplicate (without any cached information).
1812 struct isl_map
*isl_map_cow(struct isl_map
*map
)
1818 return clear_caches(map
);
1820 return isl_map_dup(map
);
1823 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1824 unsigned a_len
, unsigned b_len
)
1826 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1827 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1828 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1831 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1832 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
1840 isl_assert(bmap
->ctx
,
1841 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
1843 if (n1
== 0 || n2
== 0)
1846 bmap
= isl_basic_map_cow(bmap
);
1850 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
1851 if (isl_blk_is_error(blk
))
1854 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1856 bmap
->eq
[i
] + pos
, n1
, n2
);
1858 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1860 bmap
->ineq
[i
] + pos
, n1
, n2
);
1862 for (i
= 0; i
< bmap
->n_div
; ++i
)
1864 bmap
->div
[i
]+1 + pos
, n1
, n2
);
1866 isl_blk_free(bmap
->ctx
, blk
);
1868 ISL_F_CLR(bmap
, ISL_BASIC_SET_NORMALIZED
);
1869 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1870 return isl_basic_map_finalize(bmap
);
1872 isl_basic_map_free(bmap
);
1876 struct isl_basic_map
*isl_basic_map_set_to_empty(struct isl_basic_map
*bmap
)
1882 total
= isl_basic_map_total_dim(bmap
);
1883 if (isl_basic_map_free_div(bmap
, bmap
->n_div
) < 0)
1884 return isl_basic_map_free(bmap
);
1885 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1887 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
1889 i
= isl_basic_map_alloc_equality(bmap
);
1893 isl_int_set_si(bmap
->eq
[i
][0], 1);
1894 isl_seq_clr(bmap
->eq
[i
]+1, total
);
1895 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
1896 isl_vec_free(bmap
->sample
);
1897 bmap
->sample
= NULL
;
1898 return isl_basic_map_finalize(bmap
);
1900 isl_basic_map_free(bmap
);
1904 struct isl_basic_set
*isl_basic_set_set_to_empty(struct isl_basic_set
*bset
)
1906 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset
)));
1909 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
1912 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
1914 isl_int
*t
= bmap
->div
[a
];
1915 bmap
->div
[a
] = bmap
->div
[b
];
1919 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
1920 * div definitions accordingly.
1922 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
1925 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
1927 swap_div(bmap
, a
, b
);
1929 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1930 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
1932 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1933 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
1935 for (i
= 0; i
< bmap
->n_div
; ++i
)
1936 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
1937 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1940 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
1941 * div definitions accordingly.
1943 void isl_basic_set_swap_div(__isl_keep isl_basic_set
*bset
, int a
, int b
)
1945 isl_basic_map_swap_div(bset
, a
, b
);
1948 /* Eliminate the specified n dimensions starting at first from the
1949 * constraints, without removing the dimensions from the space.
1950 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1952 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
1953 enum isl_dim_type type
, unsigned first
, unsigned n
)
1962 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
1963 isl_die(map
->ctx
, isl_error_invalid
,
1964 "index out of bounds", goto error
);
1966 map
= isl_map_cow(map
);
1970 for (i
= 0; i
< map
->n
; ++i
) {
1971 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
1981 /* Eliminate the specified n dimensions starting at first from the
1982 * constraints, without removing the dimensions from the space.
1983 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1985 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
1986 enum isl_dim_type type
, unsigned first
, unsigned n
)
1988 return set_from_map(isl_map_eliminate(set_to_map(set
), type
, first
, n
));
1991 /* Eliminate the specified n dimensions starting at first from the
1992 * constraints, without removing the dimensions from the space.
1993 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1995 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
1996 unsigned first
, unsigned n
)
1998 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
2001 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
2002 __isl_take isl_basic_map
*bmap
)
2006 bmap
= isl_basic_map_eliminate_vars(bmap
,
2007 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
2011 return isl_basic_map_finalize(bmap
);
2014 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
2015 __isl_take isl_basic_set
*bset
)
2017 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset
)));
2020 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
2029 map
= isl_map_cow(map
);
2033 for (i
= 0; i
< map
->n
; ++i
) {
2034 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
2044 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
2046 return isl_map_remove_divs(set
);
2049 struct isl_basic_map
*isl_basic_map_remove_dims(struct isl_basic_map
*bmap
,
2050 enum isl_dim_type type
, unsigned first
, unsigned n
)
2052 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2053 return isl_basic_map_free(bmap
);
2054 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2056 bmap
= isl_basic_map_eliminate_vars(bmap
,
2057 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
2060 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
2062 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
2066 /* Return true if the definition of the given div (recursively) involves
2067 * any of the given variables.
2069 static isl_bool
div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
2070 unsigned first
, unsigned n
)
2073 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2075 if (isl_int_is_zero(bmap
->div
[div
][0]))
2076 return isl_bool_false
;
2077 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
2078 return isl_bool_true
;
2080 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2083 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2085 involves
= div_involves_vars(bmap
, i
, first
, n
);
2086 if (involves
< 0 || involves
)
2090 return isl_bool_false
;
2093 /* Try and add a lower and/or upper bound on "div" to "bmap"
2094 * based on inequality "i".
2095 * "total" is the total number of variables (excluding the divs).
2096 * "v" is a temporary object that can be used during the calculations.
2097 * If "lb" is set, then a lower bound should be constructed.
2098 * If "ub" is set, then an upper bound should be constructed.
2100 * The calling function has already checked that the inequality does not
2101 * reference "div", but we still need to check that the inequality is
2102 * of the right form. We'll consider the case where we want to construct
2103 * a lower bound. The construction of upper bounds is similar.
2105 * Let "div" be of the form
2107 * q = floor((a + f(x))/d)
2109 * We essentially check if constraint "i" is of the form
2113 * so that we can use it to derive a lower bound on "div".
2114 * However, we allow a slightly more general form
2118 * with the condition that the coefficients of g(x) - f(x) are all
2120 * Rewriting this constraint as
2124 * adding a + f(x) to both sides and dividing by d, we obtain
2126 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2128 * Taking the floor on both sides, we obtain
2130 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2134 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2136 * In the case of an upper bound, we construct the constraint
2138 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2141 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
2142 __isl_take isl_basic_map
*bmap
, int div
, int i
,
2143 unsigned total
, isl_int v
, int lb
, int ub
)
2147 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
2149 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
2150 bmap
->div
[div
][1 + 1 + j
]);
2151 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2154 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
2155 bmap
->div
[div
][1 + 1 + j
]);
2156 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2162 bmap
= isl_basic_map_cow(bmap
);
2163 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2165 int k
= isl_basic_map_alloc_inequality(bmap
);
2168 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2169 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2170 bmap
->div
[div
][1 + j
]);
2171 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2172 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2174 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2177 int k
= isl_basic_map_alloc_inequality(bmap
);
2180 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2181 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2182 bmap
->div
[div
][1 + j
]);
2183 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2184 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2186 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2189 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2192 isl_basic_map_free(bmap
);
2196 /* This function is called right before "div" is eliminated from "bmap"
2197 * using Fourier-Motzkin.
2198 * Look through the constraints of "bmap" for constraints on the argument
2199 * of the integer division and use them to construct constraints on the
2200 * integer division itself. These constraints can then be combined
2201 * during the Fourier-Motzkin elimination.
2202 * Note that it is only useful to introduce lower bounds on "div"
2203 * if "bmap" already contains upper bounds on "div" as the newly
2204 * introduce lower bounds can then be combined with the pre-existing
2205 * upper bounds. Similarly for upper bounds.
2206 * We therefore first check if "bmap" contains any lower and/or upper bounds
2209 * It is interesting to note that the introduction of these constraints
2210 * can indeed lead to more accurate results, even when compared to
2211 * deriving constraints on the argument of "div" from constraints on "div".
2212 * Consider, for example, the set
2214 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2216 * The second constraint can be rewritten as
2218 * 2 * [(-i-2j+3)/4] + k >= 0
2220 * from which we can derive
2222 * -i - 2j + 3 >= -2k
2228 * Combined with the first constraint, we obtain
2230 * -3 <= 3 + 2k or k >= -3
2232 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2233 * the first constraint, we obtain
2235 * [(i + 2j)/4] >= [-3/4] = -1
2237 * Combining this constraint with the second constraint, we obtain
2241 static __isl_give isl_basic_map
*insert_bounds_on_div(
2242 __isl_take isl_basic_map
*bmap
, int div
)
2245 int check_lb
, check_ub
;
2252 if (isl_int_is_zero(bmap
->div
[div
][0]))
2255 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2259 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2260 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2267 if (!check_lb
&& !check_ub
)
2272 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2273 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2276 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2277 check_lb
, check_ub
);
2285 /* Remove all divs (recursively) involving any of the given dimensions
2286 * in their definitions.
2288 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2289 __isl_take isl_basic_map
*bmap
,
2290 enum isl_dim_type type
, unsigned first
, unsigned n
)
2294 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2295 return isl_basic_map_free(bmap
);
2296 first
+= isl_basic_map_offset(bmap
, type
);
2298 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2301 involves
= div_involves_vars(bmap
, i
, first
, n
);
2303 return isl_basic_map_free(bmap
);
2306 bmap
= insert_bounds_on_div(bmap
, i
);
2307 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2316 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2317 __isl_take isl_basic_set
*bset
,
2318 enum isl_dim_type type
, unsigned first
, unsigned n
)
2320 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2323 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2324 enum isl_dim_type type
, unsigned first
, unsigned n
)
2333 map
= isl_map_cow(map
);
2337 for (i
= 0; i
< map
->n
; ++i
) {
2338 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2349 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2350 enum isl_dim_type type
, unsigned first
, unsigned n
)
2352 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set
),
2356 /* Does the description of "bmap" depend on the specified dimensions?
2357 * We also check whether the dimensions appear in any of the div definitions.
2358 * In principle there is no need for this check. If the dimensions appear
2359 * in a div definition, they also appear in the defining constraints of that
2362 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2363 enum isl_dim_type type
, unsigned first
, unsigned n
)
2367 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2368 return isl_bool_error
;
2370 first
+= isl_basic_map_offset(bmap
, type
);
2371 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2372 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2373 return isl_bool_true
;
2374 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2375 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2376 return isl_bool_true
;
2377 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2378 if (isl_int_is_zero(bmap
->div
[i
][0]))
2380 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2381 return isl_bool_true
;
2384 return isl_bool_false
;
2387 isl_bool
isl_map_involves_dims(__isl_keep isl_map
*map
,
2388 enum isl_dim_type type
, unsigned first
, unsigned n
)
2393 return isl_bool_error
;
2395 if (first
+ n
> isl_map_dim(map
, type
))
2396 isl_die(map
->ctx
, isl_error_invalid
,
2397 "index out of bounds", return isl_bool_error
);
2399 for (i
= 0; i
< map
->n
; ++i
) {
2400 isl_bool involves
= isl_basic_map_involves_dims(map
->p
[i
],
2402 if (involves
< 0 || involves
)
2406 return isl_bool_false
;
2409 isl_bool
isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2410 enum isl_dim_type type
, unsigned first
, unsigned n
)
2412 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2415 isl_bool
isl_set_involves_dims(__isl_keep isl_set
*set
,
2416 enum isl_dim_type type
, unsigned first
, unsigned n
)
2418 return isl_map_involves_dims(set
, type
, first
, n
);
2421 /* Drop all constraints in bmap that involve any of the dimensions
2422 * first to first+n-1.
2424 static __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving(
2425 __isl_take isl_basic_map
*bmap
, unsigned first
, unsigned n
)
2432 bmap
= isl_basic_map_cow(bmap
);
2437 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2438 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
2440 isl_basic_map_drop_equality(bmap
, i
);
2443 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2444 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) == -1)
2446 isl_basic_map_drop_inequality(bmap
, i
);
2449 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2453 /* Drop all constraints in bset that involve any of the dimensions
2454 * first to first+n-1.
2456 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving(
2457 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
2459 return isl_basic_map_drop_constraints_involving(bset
, first
, n
);
2462 /* Drop all constraints in bmap that do not involve any of the dimensions
2463 * first to first + n - 1 of the given type.
2465 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_not_involving_dims(
2466 __isl_take isl_basic_map
*bmap
,
2467 enum isl_dim_type type
, unsigned first
, unsigned n
)
2472 isl_space
*space
= isl_basic_map_get_space(bmap
);
2473 isl_basic_map_free(bmap
);
2474 return isl_basic_map_universe(space
);
2476 bmap
= isl_basic_map_cow(bmap
);
2480 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2481 return isl_basic_map_free(bmap
);
2483 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2485 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2486 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) != -1)
2488 isl_basic_map_drop_equality(bmap
, i
);
2491 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2492 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) != -1)
2494 isl_basic_map_drop_inequality(bmap
, i
);
2497 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2501 /* Drop all constraints in bset that do not involve any of the dimensions
2502 * first to first + n - 1 of the given type.
2504 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_not_involving_dims(
2505 __isl_take isl_basic_set
*bset
,
2506 enum isl_dim_type type
, unsigned first
, unsigned n
)
2508 return isl_basic_map_drop_constraints_not_involving_dims(bset
,
2512 /* Drop all constraints in bmap that involve any of the dimensions
2513 * first to first + n - 1 of the given type.
2515 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving_dims(
2516 __isl_take isl_basic_map
*bmap
,
2517 enum isl_dim_type type
, unsigned first
, unsigned n
)
2524 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2525 return isl_basic_map_free(bmap
);
2527 bmap
= isl_basic_map_remove_divs_involving_dims(bmap
, type
, first
, n
);
2528 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2529 return isl_basic_map_drop_constraints_involving(bmap
, first
, n
);
2532 /* Drop all constraints in bset that involve any of the dimensions
2533 * first to first + n - 1 of the given type.
2535 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving_dims(
2536 __isl_take isl_basic_set
*bset
,
2537 enum isl_dim_type type
, unsigned first
, unsigned n
)
2539 return isl_basic_map_drop_constraints_involving_dims(bset
,
2543 /* Drop constraints from "map" by applying "drop" to each basic map.
2545 static __isl_give isl_map
*drop_constraints(__isl_take isl_map
*map
,
2546 enum isl_dim_type type
, unsigned first
, unsigned n
,
2547 __isl_give isl_basic_map
*(*drop
)(__isl_take isl_basic_map
*bmap
,
2548 enum isl_dim_type type
, unsigned first
, unsigned n
))
2556 dim
= isl_map_dim(map
, type
);
2557 if (first
+ n
> dim
|| first
+ n
< first
)
2558 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
2559 "index out of bounds", return isl_map_free(map
));
2561 map
= isl_map_cow(map
);
2565 for (i
= 0; i
< map
->n
; ++i
) {
2566 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
2568 return isl_map_free(map
);
2572 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
2577 /* Drop all constraints in map that involve any of the dimensions
2578 * first to first + n - 1 of the given type.
2580 __isl_give isl_map
*isl_map_drop_constraints_involving_dims(
2581 __isl_take isl_map
*map
,
2582 enum isl_dim_type type
, unsigned first
, unsigned n
)
2586 return drop_constraints(map
, type
, first
, n
,
2587 &isl_basic_map_drop_constraints_involving_dims
);
2590 /* Drop all constraints in "map" that do not involve any of the dimensions
2591 * first to first + n - 1 of the given type.
2593 __isl_give isl_map
*isl_map_drop_constraints_not_involving_dims(
2594 __isl_take isl_map
*map
,
2595 enum isl_dim_type type
, unsigned first
, unsigned n
)
2598 isl_space
*space
= isl_map_get_space(map
);
2600 return isl_map_universe(space
);
2602 return drop_constraints(map
, type
, first
, n
,
2603 &isl_basic_map_drop_constraints_not_involving_dims
);
2606 /* Drop all constraints in set that involve any of the dimensions
2607 * first to first + n - 1 of the given type.
2609 __isl_give isl_set
*isl_set_drop_constraints_involving_dims(
2610 __isl_take isl_set
*set
,
2611 enum isl_dim_type type
, unsigned first
, unsigned n
)
2613 return isl_map_drop_constraints_involving_dims(set
, type
, first
, n
);
2616 /* Drop all constraints in "set" that do not involve any of the dimensions
2617 * first to first + n - 1 of the given type.
2619 __isl_give isl_set
*isl_set_drop_constraints_not_involving_dims(
2620 __isl_take isl_set
*set
,
2621 enum isl_dim_type type
, unsigned first
, unsigned n
)
2623 return isl_map_drop_constraints_not_involving_dims(set
, type
, first
, n
);
2626 /* Does local variable "div" of "bmap" have a complete explicit representation?
2627 * Having a complete explicit representation requires not only
2628 * an explicit representation, but also that all local variables
2629 * that appear in this explicit representation in turn have
2630 * a complete explicit representation.
2632 isl_bool
isl_basic_map_div_is_known(__isl_keep isl_basic_map
*bmap
, int div
)
2635 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2638 marked
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
2639 if (marked
< 0 || marked
)
2640 return isl_bool_not(marked
);
2642 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2645 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2647 known
= isl_basic_map_div_is_known(bmap
, i
);
2648 if (known
< 0 || !known
)
2652 return isl_bool_true
;
2655 /* Does local variable "div" of "bset" have a complete explicit representation?
2657 isl_bool
isl_basic_set_div_is_known(__isl_keep isl_basic_set
*bset
, int div
)
2659 return isl_basic_map_div_is_known(bset
, div
);
2662 /* Remove all divs that are unknown or defined in terms of unknown divs.
2664 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
2665 __isl_take isl_basic_map
*bmap
)
2672 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2673 if (isl_basic_map_div_is_known(bmap
, i
))
2675 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2684 /* Remove all divs that are unknown or defined in terms of unknown divs.
2686 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
2687 __isl_take isl_basic_set
*bset
)
2689 return isl_basic_map_remove_unknown_divs(bset
);
2692 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
2701 map
= isl_map_cow(map
);
2705 for (i
= 0; i
< map
->n
; ++i
) {
2706 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
2716 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
2718 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set
)));
2721 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
2722 __isl_take isl_basic_set
*bset
,
2723 enum isl_dim_type type
, unsigned first
, unsigned n
)
2725 isl_basic_map
*bmap
= bset_to_bmap(bset
);
2726 bmap
= isl_basic_map_remove_dims(bmap
, type
, first
, n
);
2727 return bset_from_bmap(bmap
);
2730 struct isl_map
*isl_map_remove_dims(struct isl_map
*map
,
2731 enum isl_dim_type type
, unsigned first
, unsigned n
)
2738 map
= isl_map_cow(map
);
2741 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
2743 for (i
= 0; i
< map
->n
; ++i
) {
2744 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
2745 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
2749 map
= isl_map_drop(map
, type
, first
, n
);
2756 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
2757 enum isl_dim_type type
, unsigned first
, unsigned n
)
2759 return set_from_map(isl_map_remove_dims(set_to_map(bset
),
2763 /* Project out n inputs starting at first using Fourier-Motzkin */
2764 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
2765 unsigned first
, unsigned n
)
2767 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
2770 static void dump_term(struct isl_basic_map
*bmap
,
2771 isl_int c
, int pos
, FILE *out
)
2774 unsigned in
= isl_basic_map_n_in(bmap
);
2775 unsigned dim
= in
+ isl_basic_map_n_out(bmap
);
2776 unsigned nparam
= isl_basic_map_n_param(bmap
);
2778 isl_int_print(out
, c
, 0);
2780 if (!isl_int_is_one(c
))
2781 isl_int_print(out
, c
, 0);
2782 if (pos
< 1 + nparam
) {
2783 name
= isl_space_get_dim_name(bmap
->dim
,
2784 isl_dim_param
, pos
- 1);
2786 fprintf(out
, "%s", name
);
2788 fprintf(out
, "p%d", pos
- 1);
2789 } else if (pos
< 1 + nparam
+ in
)
2790 fprintf(out
, "i%d", pos
- 1 - nparam
);
2791 else if (pos
< 1 + nparam
+ dim
)
2792 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
2794 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
2798 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
2799 int sign
, FILE *out
)
2803 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
2807 for (i
= 0, first
= 1; i
< len
; ++i
) {
2808 if (isl_int_sgn(c
[i
]) * sign
<= 0)
2811 fprintf(out
, " + ");
2813 isl_int_abs(v
, c
[i
]);
2814 dump_term(bmap
, v
, i
, out
);
2821 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
2822 const char *op
, FILE *out
, int indent
)
2826 fprintf(out
, "%*s", indent
, "");
2828 dump_constraint_sign(bmap
, c
, 1, out
);
2829 fprintf(out
, " %s ", op
);
2830 dump_constraint_sign(bmap
, c
, -1, out
);
2834 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
2835 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
2837 fprintf(out
, "%*s", indent
, "");
2838 fprintf(out
, "ERROR: unused div coefficient not zero\n");
2843 static void dump_constraints(struct isl_basic_map
*bmap
,
2844 isl_int
**c
, unsigned n
,
2845 const char *op
, FILE *out
, int indent
)
2849 for (i
= 0; i
< n
; ++i
)
2850 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
2853 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
2857 unsigned total
= isl_basic_map_total_dim(bmap
);
2859 for (j
= 0; j
< 1 + total
; ++j
) {
2860 if (isl_int_is_zero(exp
[j
]))
2862 if (!first
&& isl_int_is_pos(exp
[j
]))
2864 dump_term(bmap
, exp
[j
], j
, out
);
2869 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
2873 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
2874 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
2876 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2877 fprintf(out
, "%*s", indent
, "");
2878 fprintf(out
, "e%d = [(", i
);
2879 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
2881 isl_int_print(out
, bmap
->div
[i
][0], 0);
2882 fprintf(out
, "]\n");
2886 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
2887 FILE *out
, int indent
)
2890 fprintf(out
, "null basic set\n");
2894 fprintf(out
, "%*s", indent
, "");
2895 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2896 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
2897 bset
->extra
, bset
->flags
);
2898 dump(bset_to_bmap(bset
), out
, indent
);
2901 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
2902 FILE *out
, int indent
)
2905 fprintf(out
, "null basic map\n");
2909 fprintf(out
, "%*s", indent
, "");
2910 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2911 "flags: %x, n_name: %d\n",
2913 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
2914 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
2915 dump(bmap
, out
, indent
);
2918 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
2923 total
= isl_basic_map_total_dim(bmap
);
2924 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
2925 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
2926 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
2927 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2931 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*space
, int n
,
2936 if (isl_space_dim(space
, isl_dim_in
) != 0)
2937 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
2938 "set cannot have input dimensions", goto error
);
2939 return isl_map_alloc_space(space
, n
, flags
);
2941 isl_space_free(space
);
2945 struct isl_set
*isl_set_alloc(struct isl_ctx
*ctx
,
2946 unsigned nparam
, unsigned dim
, int n
, unsigned flags
)
2948 struct isl_set
*set
;
2951 dims
= isl_space_alloc(ctx
, nparam
, 0, dim
);
2955 set
= isl_set_alloc_space(dims
, n
, flags
);
2959 /* Make sure "map" has room for at least "n" more basic maps.
2961 struct isl_map
*isl_map_grow(struct isl_map
*map
, int n
)
2964 struct isl_map
*grown
= NULL
;
2968 isl_assert(map
->ctx
, n
>= 0, goto error
);
2969 if (map
->n
+ n
<= map
->size
)
2971 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
2974 for (i
= 0; i
< map
->n
; ++i
) {
2975 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
2983 isl_map_free(grown
);
2988 /* Make sure "set" has room for at least "n" more basic sets.
2990 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
2992 return set_from_map(isl_map_grow(set_to_map(set
), n
));
2995 struct isl_set
*isl_set_dup(struct isl_set
*set
)
2998 struct isl_set
*dup
;
3003 dup
= isl_set_alloc_space(isl_space_copy(set
->dim
), set
->n
, set
->flags
);
3006 for (i
= 0; i
< set
->n
; ++i
)
3007 dup
= isl_set_add_basic_set(dup
, isl_basic_set_copy(set
->p
[i
]));
3011 struct isl_set
*isl_set_from_basic_set(struct isl_basic_set
*bset
)
3013 return isl_map_from_basic_map(bset
);
3016 struct isl_map
*isl_map_from_basic_map(struct isl_basic_map
*bmap
)
3018 struct isl_map
*map
;
3023 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
3024 return isl_map_add_basic_map(map
, bmap
);
3027 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
3028 __isl_take isl_basic_set
*bset
)
3030 return set_from_map(isl_map_add_basic_map(set_to_map(set
),
3031 bset_to_bmap(bset
)));
3034 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
3036 return isl_map_free(set
);
3039 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
3044 fprintf(out
, "null set\n");
3048 fprintf(out
, "%*s", indent
, "");
3049 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3050 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
3052 for (i
= 0; i
< set
->n
; ++i
) {
3053 fprintf(out
, "%*s", indent
, "");
3054 fprintf(out
, "basic set %d:\n", i
);
3055 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
3059 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
3064 fprintf(out
, "null map\n");
3068 fprintf(out
, "%*s", indent
, "");
3069 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3070 "flags: %x, n_name: %d\n",
3071 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
3072 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
3073 for (i
= 0; i
< map
->n
; ++i
) {
3074 fprintf(out
, "%*s", indent
, "");
3075 fprintf(out
, "basic map %d:\n", i
);
3076 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
3080 struct isl_basic_map
*isl_basic_map_intersect_domain(
3081 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3083 struct isl_basic_map
*bmap_domain
;
3088 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
3089 bset
->dim
, isl_dim_param
), goto error
);
3091 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
3092 isl_assert(bset
->ctx
,
3093 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
3095 bmap
= isl_basic_map_cow(bmap
);
3098 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3099 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3100 bmap_domain
= isl_basic_map_from_domain(bset
);
3101 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
3103 bmap
= isl_basic_map_simplify(bmap
);
3104 return isl_basic_map_finalize(bmap
);
3106 isl_basic_map_free(bmap
);
3107 isl_basic_set_free(bset
);
3111 /* Check that the space of "bset" is the same as that of the range of "bmap".
3113 static isl_stat
isl_basic_map_check_compatible_range(
3114 __isl_keep isl_basic_map
*bmap
, __isl_keep isl_basic_set
*bset
)
3118 ok
= isl_basic_map_compatible_range(bmap
, bset
);
3120 return isl_stat_error
;
3122 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3123 "incompatible spaces", return isl_stat_error
);
3128 struct isl_basic_map
*isl_basic_map_intersect_range(
3129 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3131 struct isl_basic_map
*bmap_range
;
3136 isl_assert(bset
->ctx
, isl_space_match(bmap
->dim
, isl_dim_param
,
3137 bset
->dim
, isl_dim_param
), goto error
);
3139 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0 &&
3140 isl_basic_map_check_compatible_range(bmap
, bset
) < 0)
3143 if (isl_basic_set_plain_is_universe(bset
)) {
3144 isl_basic_set_free(bset
);
3148 bmap
= isl_basic_map_cow(bmap
);
3151 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3152 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3153 bmap_range
= bset_to_bmap(bset
);
3154 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
3156 bmap
= isl_basic_map_simplify(bmap
);
3157 return isl_basic_map_finalize(bmap
);
3159 isl_basic_map_free(bmap
);
3160 isl_basic_set_free(bset
);
3164 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
3165 __isl_keep isl_vec
*vec
)
3172 return isl_bool_error
;
3174 total
= 1 + isl_basic_map_total_dim(bmap
);
3175 if (total
!= vec
->size
)
3176 return isl_bool_false
;
3180 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
3181 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
3182 if (!isl_int_is_zero(s
)) {
3184 return isl_bool_false
;
3188 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
3189 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
3190 if (isl_int_is_neg(s
)) {
3192 return isl_bool_false
;
3198 return isl_bool_true
;
3201 isl_bool
isl_basic_set_contains(__isl_keep isl_basic_set
*bset
,
3202 __isl_keep isl_vec
*vec
)
3204 return isl_basic_map_contains(bset_to_bmap(bset
), vec
);
3207 struct isl_basic_map
*isl_basic_map_intersect(
3208 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3210 struct isl_vec
*sample
= NULL
;
3212 if (!bmap1
|| !bmap2
)
3215 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
3216 bmap2
->dim
, isl_dim_param
), goto error
);
3217 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
3218 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
3219 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3220 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3221 return isl_basic_map_intersect(bmap2
, bmap1
);
3223 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3224 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3225 isl_assert(bmap1
->ctx
,
3226 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
3228 if (isl_basic_map_plain_is_empty(bmap1
)) {
3229 isl_basic_map_free(bmap2
);
3232 if (isl_basic_map_plain_is_empty(bmap2
)) {
3233 isl_basic_map_free(bmap1
);
3237 if (bmap1
->sample
&&
3238 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
3239 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
3240 sample
= isl_vec_copy(bmap1
->sample
);
3241 else if (bmap2
->sample
&&
3242 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
3243 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
3244 sample
= isl_vec_copy(bmap2
->sample
);
3246 bmap1
= isl_basic_map_cow(bmap1
);
3249 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
3250 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
3251 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
3254 isl_vec_free(sample
);
3256 isl_vec_free(bmap1
->sample
);
3257 bmap1
->sample
= sample
;
3260 bmap1
= isl_basic_map_simplify(bmap1
);
3261 return isl_basic_map_finalize(bmap1
);
3264 isl_vec_free(sample
);
3265 isl_basic_map_free(bmap1
);
3266 isl_basic_map_free(bmap2
);
3270 struct isl_basic_set
*isl_basic_set_intersect(
3271 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
3273 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1
),
3274 bset_to_bmap(bset2
)));
3277 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
3278 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
3280 return isl_basic_set_intersect(bset1
, bset2
);
3283 /* Special case of isl_map_intersect, where both map1 and map2
3284 * are convex, without any divs and such that either map1 or map2
3285 * contains a single constraint. This constraint is then simply
3286 * added to the other map.
3288 static __isl_give isl_map
*map_intersect_add_constraint(
3289 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
3291 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
3292 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
3293 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3294 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3296 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
3297 return isl_map_intersect(map2
, map1
);
3299 map1
= isl_map_cow(map1
);
3302 if (isl_map_plain_is_empty(map1
)) {
3306 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
3307 if (map2
->p
[0]->n_eq
== 1)
3308 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
3310 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
3311 map2
->p
[0]->ineq
[0]);
3313 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
3314 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
3318 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
3319 isl_basic_map_free(map1
->p
[0]);
3332 /* map2 may be either a parameter domain or a map living in the same
3335 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
3336 __isl_take isl_map
*map2
)
3345 if ((isl_map_plain_is_empty(map1
) ||
3346 isl_map_plain_is_universe(map2
)) &&
3347 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3351 if ((isl_map_plain_is_empty(map2
) ||
3352 isl_map_plain_is_universe(map1
)) &&
3353 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3358 if (map1
->n
== 1 && map2
->n
== 1 &&
3359 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
3360 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
3361 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
3362 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
3363 return map_intersect_add_constraint(map1
, map2
);
3365 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
3366 isl_space_dim(map2
->dim
, isl_dim_param
))
3367 isl_assert(map1
->ctx
,
3368 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3370 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
3371 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3372 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3374 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3375 map1
->n
* map2
->n
, flags
);
3378 for (i
= 0; i
< map1
->n
; ++i
)
3379 for (j
= 0; j
< map2
->n
; ++j
) {
3380 struct isl_basic_map
*part
;
3381 part
= isl_basic_map_intersect(
3382 isl_basic_map_copy(map1
->p
[i
]),
3383 isl_basic_map_copy(map2
->p
[j
]));
3384 if (isl_basic_map_is_empty(part
) < 0)
3385 part
= isl_basic_map_free(part
);
3386 result
= isl_map_add_basic_map(result
, part
);
3399 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3400 __isl_take isl_map
*map2
)
3404 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3405 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3406 "spaces don't match", goto error
);
3407 return map_intersect_internal(map1
, map2
);
3414 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3415 __isl_take isl_map
*map2
)
3417 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3420 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3422 return set_from_map(isl_map_intersect(set_to_map(set1
),
3426 /* map_intersect_internal accepts intersections
3427 * with parameter domains, so we can just call that function.
3429 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3430 __isl_take isl_set
*params
)
3432 return map_intersect_internal(map
, params
);
3435 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3436 __isl_take isl_map
*map2
)
3438 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3441 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3442 __isl_take isl_set
*params
)
3444 return isl_map_intersect_params(set
, params
);
3447 struct isl_basic_map
*isl_basic_map_reverse(struct isl_basic_map
*bmap
)
3450 unsigned pos
, n1
, n2
;
3454 bmap
= isl_basic_map_cow(bmap
);
3457 space
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3458 pos
= isl_basic_map_offset(bmap
, isl_dim_in
);
3459 n1
= isl_basic_map_dim(bmap
, isl_dim_in
);
3460 n2
= isl_basic_map_dim(bmap
, isl_dim_out
);
3461 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
3462 return isl_basic_map_reset_space(bmap
, space
);
3465 static __isl_give isl_basic_map
*basic_map_space_reset(
3466 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3472 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3475 space
= isl_basic_map_get_space(bmap
);
3476 space
= isl_space_reset(space
, type
);
3477 bmap
= isl_basic_map_reset_space(bmap
, space
);
3481 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3482 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3483 unsigned pos
, unsigned n
)
3487 struct isl_basic_map
*res
;
3488 struct isl_dim_map
*dim_map
;
3489 unsigned total
, off
;
3490 enum isl_dim_type t
;
3493 return basic_map_space_reset(bmap
, type
);
3498 res_dim
= isl_space_insert_dims(isl_basic_map_get_space(bmap
), type
, pos
, n
);
3500 total
= isl_basic_map_total_dim(bmap
) + n
;
3501 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3503 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3505 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3507 unsigned size
= isl_basic_map_dim(bmap
, t
);
3508 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3510 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3511 pos
, size
- pos
, off
+ pos
+ n
);
3513 off
+= isl_space_dim(res_dim
, t
);
3515 isl_dim_map_div(dim_map
, bmap
, off
);
3517 res
= isl_basic_map_alloc_space(res_dim
,
3518 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3519 rational
= isl_basic_map_is_rational(bmap
);
3521 res
= isl_basic_map_free(res
);
3523 res
= isl_basic_map_set_rational(res
);
3524 if (isl_basic_map_plain_is_empty(bmap
)) {
3525 isl_basic_map_free(bmap
);
3527 return isl_basic_map_set_to_empty(res
);
3529 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3530 return isl_basic_map_finalize(res
);
3533 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3534 __isl_take isl_basic_set
*bset
,
3535 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3537 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3540 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3541 enum isl_dim_type type
, unsigned n
)
3545 return isl_basic_map_insert_dims(bmap
, type
,
3546 isl_basic_map_dim(bmap
, type
), n
);
3549 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3550 enum isl_dim_type type
, unsigned n
)
3554 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3555 return isl_basic_map_add_dims(bset
, type
, n
);
3557 isl_basic_set_free(bset
);
3561 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3562 enum isl_dim_type type
)
3566 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3569 space
= isl_map_get_space(map
);
3570 space
= isl_space_reset(space
, type
);
3571 map
= isl_map_reset_space(map
, space
);
3575 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3576 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3581 return map_space_reset(map
, type
);
3583 map
= isl_map_cow(map
);
3587 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3591 for (i
= 0; i
< map
->n
; ++i
) {
3592 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
3603 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
3604 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3606 return isl_map_insert_dims(set
, type
, pos
, n
);
3609 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
3610 enum isl_dim_type type
, unsigned n
)
3614 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
3617 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
3618 enum isl_dim_type type
, unsigned n
)
3622 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
3623 return set_from_map(isl_map_add_dims(set_to_map(set
), type
, n
));
3629 __isl_give isl_basic_map
*isl_basic_map_move_dims(
3630 __isl_take isl_basic_map
*bmap
,
3631 enum isl_dim_type dst_type
, unsigned dst_pos
,
3632 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3634 struct isl_dim_map
*dim_map
;
3635 struct isl_basic_map
*res
;
3636 enum isl_dim_type t
;
3637 unsigned total
, off
;
3644 if (isl_basic_map_check_range(bmap
, src_type
, src_pos
, n
) < 0)
3645 return isl_basic_map_free(bmap
);
3647 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3650 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
3652 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
3653 pos(bmap
->dim
, src_type
) + src_pos
+
3654 ((src_type
< dst_type
) ? n
: 0)) {
3655 bmap
= isl_basic_map_cow(bmap
);
3659 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3660 src_type
, src_pos
, n
);
3664 bmap
= isl_basic_map_finalize(bmap
);
3669 total
= isl_basic_map_total_dim(bmap
);
3670 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3673 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3674 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3675 if (t
== dst_type
) {
3676 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3679 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
3682 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3683 dst_pos
, size
- dst_pos
, off
);
3684 off
+= size
- dst_pos
;
3685 } else if (t
== src_type
) {
3686 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3689 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3690 src_pos
+ n
, size
- src_pos
- n
, off
);
3691 off
+= size
- src_pos
- n
;
3693 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3697 isl_dim_map_div(dim_map
, bmap
, off
);
3699 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3700 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3701 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3705 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3706 src_type
, src_pos
, n
);
3710 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
3711 bmap
= isl_basic_map_gauss(bmap
, NULL
);
3712 bmap
= isl_basic_map_finalize(bmap
);
3716 isl_basic_map_free(bmap
);
3720 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
3721 enum isl_dim_type dst_type
, unsigned dst_pos
,
3722 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3724 isl_basic_map
*bmap
= bset_to_bmap(bset
);
3725 bmap
= isl_basic_map_move_dims(bmap
, dst_type
, dst_pos
,
3726 src_type
, src_pos
, n
);
3727 return bset_from_bmap(bmap
);
3730 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
3731 enum isl_dim_type dst_type
, unsigned dst_pos
,
3732 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3736 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
3737 return set_from_map(isl_map_move_dims(set_to_map(set
),
3738 dst_type
, dst_pos
, src_type
, src_pos
, n
));
3744 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
3745 enum isl_dim_type dst_type
, unsigned dst_pos
,
3746 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3755 isl_assert(map
->ctx
, src_pos
+ n
<= isl_map_dim(map
, src_type
),
3758 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3761 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
3763 map
= isl_map_cow(map
);
3767 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
3771 for (i
= 0; i
< map
->n
; ++i
) {
3772 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
3774 src_type
, src_pos
, n
);
3785 /* Move the specified dimensions to the last columns right before
3786 * the divs. Don't change the dimension specification of bmap.
3787 * That's the responsibility of the caller.
3789 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
3790 enum isl_dim_type type
, unsigned first
, unsigned n
)
3792 struct isl_dim_map
*dim_map
;
3793 struct isl_basic_map
*res
;
3794 enum isl_dim_type t
;
3795 unsigned total
, off
;
3799 if (pos(bmap
->dim
, type
) + first
+ n
==
3800 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
3803 total
= isl_basic_map_total_dim(bmap
);
3804 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3807 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3808 unsigned size
= isl_space_dim(bmap
->dim
, t
);
3810 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3813 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3814 first
, n
, total
- bmap
->n_div
- n
);
3815 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3816 first
+ n
, size
- (first
+ n
), off
);
3817 off
+= size
- (first
+ n
);
3819 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3823 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
3825 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
3826 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3827 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3831 /* Insert "n" rows in the divs of "bmap".
3833 * The number of columns is not changed, which means that the last
3834 * dimensions of "bmap" are being reintepreted as the new divs.
3835 * The space of "bmap" is not adjusted, however, which means
3836 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
3837 * from the space of "bmap" is the responsibility of the caller.
3839 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
3847 bmap
= isl_basic_map_cow(bmap
);
3851 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
3852 old
= bmap
->block2
.data
;
3853 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
3854 (bmap
->extra
+ n
) * (1 + row_size
));
3855 if (!bmap
->block2
.data
)
3856 return isl_basic_map_free(bmap
);
3857 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
3859 return isl_basic_map_free(bmap
);
3860 for (i
= 0; i
< n
; ++i
) {
3861 new_div
[i
] = bmap
->block2
.data
+
3862 (bmap
->extra
+ i
) * (1 + row_size
);
3863 isl_seq_clr(new_div
[i
], 1 + row_size
);
3865 for (i
= 0; i
< bmap
->extra
; ++i
)
3866 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
3868 bmap
->div
= new_div
;
3875 /* Drop constraints from "bmap" that only involve the variables
3876 * of "type" in the range [first, first + n] that are not related
3877 * to any of the variables outside that interval.
3878 * These constraints cannot influence the values for the variables
3879 * outside the interval, except in case they cause "bmap" to be empty.
3880 * Only drop the constraints if "bmap" is known to be non-empty.
3882 static __isl_give isl_basic_map
*drop_irrelevant_constraints(
3883 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3884 unsigned first
, unsigned n
)
3888 unsigned dim
, n_div
;
3891 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
3893 return isl_basic_map_free(bmap
);
3897 dim
= isl_basic_map_dim(bmap
, isl_dim_all
);
3898 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
3899 groups
= isl_calloc_array(isl_basic_map_get_ctx(bmap
), int, dim
);
3901 return isl_basic_map_free(bmap
);
3902 first
+= isl_basic_map_offset(bmap
, type
) - 1;
3903 for (i
= 0; i
< first
; ++i
)
3905 for (i
= first
+ n
; i
< dim
- n_div
; ++i
)
3908 bmap
= isl_basic_map_drop_unrelated_constraints(bmap
, groups
);
3913 /* Turn the n dimensions of type type, starting at first
3914 * into existentially quantified variables.
3916 * If a subset of the projected out variables are unrelated
3917 * to any of the variables that remain, then the constraints
3918 * involving this subset are simply dropped first.
3920 __isl_give isl_basic_map
*isl_basic_map_project_out(
3921 __isl_take isl_basic_map
*bmap
,
3922 enum isl_dim_type type
, unsigned first
, unsigned n
)
3925 return basic_map_space_reset(bmap
, type
);
3926 if (type
== isl_dim_div
)
3927 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
3928 "cannot project out existentially quantified variables",
3929 return isl_basic_map_free(bmap
));
3931 bmap
= drop_irrelevant_constraints(bmap
, type
, first
, n
);
3935 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
3936 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3938 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
3939 return isl_basic_map_free(bmap
);
3941 bmap
= move_last(bmap
, type
, first
, n
);
3942 bmap
= isl_basic_map_cow(bmap
);
3943 bmap
= insert_div_rows(bmap
, n
);
3947 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
3950 bmap
= isl_basic_map_simplify(bmap
);
3951 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
3952 return isl_basic_map_finalize(bmap
);
3954 isl_basic_map_free(bmap
);
3958 /* Turn the n dimensions of type type, starting at first
3959 * into existentially quantified variables.
3961 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
3962 enum isl_dim_type type
, unsigned first
, unsigned n
)
3964 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset
),
3968 /* Turn the n dimensions of type type, starting at first
3969 * into existentially quantified variables.
3971 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
3972 enum isl_dim_type type
, unsigned first
, unsigned n
)
3980 return map_space_reset(map
, type
);
3982 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
3984 map
= isl_map_cow(map
);
3988 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
3992 for (i
= 0; i
< map
->n
; ++i
) {
3993 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
4004 /* Turn the n dimensions of type type, starting at first
4005 * into existentially quantified variables.
4007 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
4008 enum isl_dim_type type
, unsigned first
, unsigned n
)
4010 return set_from_map(isl_map_project_out(set_to_map(set
),
4014 /* Return a map that projects the elements in "set" onto their
4015 * "n" set dimensions starting at "first".
4016 * "type" should be equal to isl_dim_set.
4018 __isl_give isl_map
*isl_set_project_onto_map(__isl_take isl_set
*set
,
4019 enum isl_dim_type type
, unsigned first
, unsigned n
)
4027 if (type
!= isl_dim_set
)
4028 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4029 "only set dimensions can be projected out", goto error
);
4030 dim
= isl_set_dim(set
, isl_dim_set
);
4031 if (first
+ n
> dim
|| first
+ n
< first
)
4032 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4033 "index out of bounds", goto error
);
4035 map
= isl_map_from_domain(set
);
4036 map
= isl_map_add_dims(map
, isl_dim_out
, n
);
4037 for (i
= 0; i
< n
; ++i
)
4038 map
= isl_map_equate(map
, isl_dim_in
, first
+ i
,
4046 static struct isl_basic_map
*add_divs(struct isl_basic_map
*bmap
, unsigned n
)
4050 for (i
= 0; i
< n
; ++i
) {
4051 j
= isl_basic_map_alloc_div(bmap
);
4054 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
4058 isl_basic_map_free(bmap
);
4062 struct isl_basic_map
*isl_basic_map_apply_range(
4063 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4065 isl_space
*dim_result
= NULL
;
4066 struct isl_basic_map
*bmap
;
4067 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
4068 struct isl_dim_map
*dim_map1
, *dim_map2
;
4070 if (!bmap1
|| !bmap2
)
4072 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
4073 bmap2
->dim
, isl_dim_param
))
4074 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4075 "parameters don't match", goto error
);
4076 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
4077 bmap2
->dim
, isl_dim_in
))
4078 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4079 "spaces don't match", goto error
);
4081 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
4082 isl_space_copy(bmap2
->dim
));
4084 n_in
= isl_basic_map_n_in(bmap1
);
4085 n_out
= isl_basic_map_n_out(bmap2
);
4086 n
= isl_basic_map_n_out(bmap1
);
4087 nparam
= isl_basic_map_n_param(bmap1
);
4089 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
4090 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4091 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4092 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4093 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
4094 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4095 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
4096 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
4097 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4098 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4099 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4101 bmap
= isl_basic_map_alloc_space(dim_result
,
4102 bmap1
->n_div
+ bmap2
->n_div
+ n
,
4103 bmap1
->n_eq
+ bmap2
->n_eq
,
4104 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4105 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4106 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4107 bmap
= add_divs(bmap
, n
);
4108 bmap
= isl_basic_map_simplify(bmap
);
4109 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4110 return isl_basic_map_finalize(bmap
);
4112 isl_basic_map_free(bmap1
);
4113 isl_basic_map_free(bmap2
);
4117 struct isl_basic_set
*isl_basic_set_apply(
4118 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
4123 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
4126 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset
),
4129 isl_basic_set_free(bset
);
4130 isl_basic_map_free(bmap
);
4134 struct isl_basic_map
*isl_basic_map_apply_domain(
4135 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4137 if (!bmap1
|| !bmap2
)
4140 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
4141 bmap2
->dim
, isl_dim_param
))
4142 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4143 "parameters don't match", goto error
);
4144 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_in
,
4145 bmap2
->dim
, isl_dim_in
))
4146 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4147 "spaces don't match", goto error
);
4149 bmap1
= isl_basic_map_reverse(bmap1
);
4150 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
4151 return isl_basic_map_reverse(bmap1
);
4153 isl_basic_map_free(bmap1
);
4154 isl_basic_map_free(bmap2
);
4158 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4159 * A \cap B -> f(A) + f(B)
4161 struct isl_basic_map
*isl_basic_map_sum(
4162 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4164 unsigned n_in
, n_out
, nparam
, total
, pos
;
4165 struct isl_basic_map
*bmap
= NULL
;
4166 struct isl_dim_map
*dim_map1
, *dim_map2
;
4169 if (!bmap1
|| !bmap2
)
4172 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
4175 nparam
= isl_basic_map_n_param(bmap1
);
4176 n_in
= isl_basic_map_n_in(bmap1
);
4177 n_out
= isl_basic_map_n_out(bmap1
);
4179 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
4180 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4181 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
4182 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4183 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
4184 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4185 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4186 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
4187 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4188 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4189 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
4191 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
4192 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
4193 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
4194 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4195 for (i
= 0; i
< n_out
; ++i
) {
4196 int j
= isl_basic_map_alloc_equality(bmap
);
4199 isl_seq_clr(bmap
->eq
[j
], 1+total
);
4200 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
4201 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
4202 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
4204 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4205 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4206 bmap
= add_divs(bmap
, 2 * n_out
);
4208 bmap
= isl_basic_map_simplify(bmap
);
4209 return isl_basic_map_finalize(bmap
);
4211 isl_basic_map_free(bmap
);
4212 isl_basic_map_free(bmap1
);
4213 isl_basic_map_free(bmap2
);
4217 /* Given two maps A -> f(A) and B -> g(B), construct a map
4218 * A \cap B -> f(A) + f(B)
4220 struct isl_map
*isl_map_sum(struct isl_map
*map1
, struct isl_map
*map2
)
4222 struct isl_map
*result
;
4228 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
4230 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
4231 map1
->n
* map2
->n
, 0);
4234 for (i
= 0; i
< map1
->n
; ++i
)
4235 for (j
= 0; j
< map2
->n
; ++j
) {
4236 struct isl_basic_map
*part
;
4237 part
= isl_basic_map_sum(
4238 isl_basic_map_copy(map1
->p
[i
]),
4239 isl_basic_map_copy(map2
->p
[j
]));
4240 if (isl_basic_map_is_empty(part
))
4241 isl_basic_map_free(part
);
4243 result
= isl_map_add_basic_map(result
, part
);
4256 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
4257 __isl_take isl_set
*set2
)
4259 return set_from_map(isl_map_sum(set_to_map(set1
), set_to_map(set2
)));
4262 /* Given a basic map A -> f(A), construct A -> -f(A).
4264 struct isl_basic_map
*isl_basic_map_neg(struct isl_basic_map
*bmap
)
4269 bmap
= isl_basic_map_cow(bmap
);
4273 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
4274 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
4275 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4276 for (j
= 0; j
< n
; ++j
)
4277 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
4278 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
4279 for (j
= 0; j
< n
; ++j
)
4280 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
4281 for (i
= 0; i
< bmap
->n_div
; ++i
)
4282 for (j
= 0; j
< n
; ++j
)
4283 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
4284 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4285 return isl_basic_map_finalize(bmap
);
4288 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
4290 return isl_basic_map_neg(bset
);
4293 /* Given a map A -> f(A), construct A -> -f(A).
4295 struct isl_map
*isl_map_neg(struct isl_map
*map
)
4299 map
= isl_map_cow(map
);
4303 for (i
= 0; i
< map
->n
; ++i
) {
4304 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
4315 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
4317 return set_from_map(isl_map_neg(set_to_map(set
)));
4320 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4321 * A -> floor(f(A)/d).
4323 struct isl_basic_map
*isl_basic_map_floordiv(struct isl_basic_map
*bmap
,
4326 unsigned n_in
, n_out
, nparam
, total
, pos
;
4327 struct isl_basic_map
*result
= NULL
;
4328 struct isl_dim_map
*dim_map
;
4334 nparam
= isl_basic_map_n_param(bmap
);
4335 n_in
= isl_basic_map_n_in(bmap
);
4336 n_out
= isl_basic_map_n_out(bmap
);
4338 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
4339 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4340 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
4341 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
4342 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
4343 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
4345 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
4346 bmap
->n_div
+ n_out
,
4347 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
4348 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
4349 result
= add_divs(result
, n_out
);
4350 for (i
= 0; i
< n_out
; ++i
) {
4352 j
= isl_basic_map_alloc_inequality(result
);
4355 isl_seq_clr(result
->ineq
[j
], 1+total
);
4356 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4357 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
4358 j
= isl_basic_map_alloc_inequality(result
);
4361 isl_seq_clr(result
->ineq
[j
], 1+total
);
4362 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4363 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
4364 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
4367 result
= isl_basic_map_simplify(result
);
4368 return isl_basic_map_finalize(result
);
4370 isl_basic_map_free(result
);
4374 /* Given a map A -> f(A) and an integer d, construct a map
4375 * A -> floor(f(A)/d).
4377 struct isl_map
*isl_map_floordiv(struct isl_map
*map
, isl_int d
)
4381 map
= isl_map_cow(map
);
4385 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
4386 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
4387 for (i
= 0; i
< map
->n
; ++i
) {
4388 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
4399 /* Given a map A -> f(A) and an integer d, construct a map
4400 * A -> floor(f(A)/d).
4402 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
4403 __isl_take isl_val
*d
)
4407 if (!isl_val_is_int(d
))
4408 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
4409 "expecting integer denominator", goto error
);
4410 map
= isl_map_floordiv(map
, d
->n
);
4419 static struct isl_basic_map
*var_equal(struct isl_basic_map
*bmap
, unsigned pos
)
4425 i
= isl_basic_map_alloc_equality(bmap
);
4428 nparam
= isl_basic_map_n_param(bmap
);
4429 n_in
= isl_basic_map_n_in(bmap
);
4430 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4431 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
4432 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
4433 return isl_basic_map_finalize(bmap
);
4435 isl_basic_map_free(bmap
);
4439 /* Add a constraint to "bmap" expressing i_pos < o_pos
4441 static struct isl_basic_map
*var_less(struct isl_basic_map
*bmap
, unsigned pos
)
4447 i
= isl_basic_map_alloc_inequality(bmap
);
4450 nparam
= isl_basic_map_n_param(bmap
);
4451 n_in
= isl_basic_map_n_in(bmap
);
4452 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4453 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4454 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4455 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4456 return isl_basic_map_finalize(bmap
);
4458 isl_basic_map_free(bmap
);
4462 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4464 static __isl_give isl_basic_map
*var_less_or_equal(
4465 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4471 i
= isl_basic_map_alloc_inequality(bmap
);
4474 nparam
= isl_basic_map_n_param(bmap
);
4475 n_in
= isl_basic_map_n_in(bmap
);
4476 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4477 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4478 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4479 return isl_basic_map_finalize(bmap
);
4481 isl_basic_map_free(bmap
);
4485 /* Add a constraint to "bmap" expressing i_pos > o_pos
4487 static struct isl_basic_map
*var_more(struct isl_basic_map
*bmap
, unsigned pos
)
4493 i
= isl_basic_map_alloc_inequality(bmap
);
4496 nparam
= isl_basic_map_n_param(bmap
);
4497 n_in
= isl_basic_map_n_in(bmap
);
4498 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4499 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4500 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4501 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4502 return isl_basic_map_finalize(bmap
);
4504 isl_basic_map_free(bmap
);
4508 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4510 static __isl_give isl_basic_map
*var_more_or_equal(
4511 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4517 i
= isl_basic_map_alloc_inequality(bmap
);
4520 nparam
= isl_basic_map_n_param(bmap
);
4521 n_in
= isl_basic_map_n_in(bmap
);
4522 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4523 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4524 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4525 return isl_basic_map_finalize(bmap
);
4527 isl_basic_map_free(bmap
);
4531 __isl_give isl_basic_map
*isl_basic_map_equal(
4532 __isl_take isl_space
*dim
, unsigned n_equal
)
4535 struct isl_basic_map
*bmap
;
4536 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4539 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4540 bmap
= var_equal(bmap
, i
);
4541 return isl_basic_map_finalize(bmap
);
4544 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4546 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4550 struct isl_basic_map
*bmap
;
4551 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4554 for (i
= 0; i
< pos
&& bmap
; ++i
)
4555 bmap
= var_equal(bmap
, i
);
4557 bmap
= var_less(bmap
, pos
);
4558 return isl_basic_map_finalize(bmap
);
4561 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4563 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4564 __isl_take isl_space
*dim
, unsigned pos
)
4567 isl_basic_map
*bmap
;
4569 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4570 for (i
= 0; i
< pos
; ++i
)
4571 bmap
= var_equal(bmap
, i
);
4572 bmap
= var_less_or_equal(bmap
, pos
);
4573 return isl_basic_map_finalize(bmap
);
4576 /* Return a relation on "dim" expressing i_pos > o_pos
4578 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*dim
,
4582 struct isl_basic_map
*bmap
;
4583 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4586 for (i
= 0; i
< pos
&& bmap
; ++i
)
4587 bmap
= var_equal(bmap
, i
);
4589 bmap
= var_more(bmap
, pos
);
4590 return isl_basic_map_finalize(bmap
);
4593 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4595 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
4596 __isl_take isl_space
*dim
, unsigned pos
)
4599 isl_basic_map
*bmap
;
4601 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4602 for (i
= 0; i
< pos
; ++i
)
4603 bmap
= var_equal(bmap
, i
);
4604 bmap
= var_more_or_equal(bmap
, pos
);
4605 return isl_basic_map_finalize(bmap
);
4608 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*dims
,
4609 unsigned n
, int equal
)
4611 struct isl_map
*map
;
4614 if (n
== 0 && equal
)
4615 return isl_map_universe(dims
);
4617 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4619 for (i
= 0; i
+ 1 < n
; ++i
)
4620 map
= isl_map_add_basic_map(map
,
4621 isl_basic_map_less_at(isl_space_copy(dims
), i
));
4624 map
= isl_map_add_basic_map(map
,
4625 isl_basic_map_less_or_equal_at(dims
, n
- 1));
4627 map
= isl_map_add_basic_map(map
,
4628 isl_basic_map_less_at(dims
, n
- 1));
4630 isl_space_free(dims
);
4635 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*dims
, int equal
)
4639 return map_lex_lte_first(dims
, dims
->n_out
, equal
);
4642 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
4644 return map_lex_lte_first(dim
, n
, 0);
4647 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
4649 return map_lex_lte_first(dim
, n
, 1);
4652 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
4654 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
4657 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
4659 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
4662 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*dims
,
4663 unsigned n
, int equal
)
4665 struct isl_map
*map
;
4668 if (n
== 0 && equal
)
4669 return isl_map_universe(dims
);
4671 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4673 for (i
= 0; i
+ 1 < n
; ++i
)
4674 map
= isl_map_add_basic_map(map
,
4675 isl_basic_map_more_at(isl_space_copy(dims
), i
));
4678 map
= isl_map_add_basic_map(map
,
4679 isl_basic_map_more_or_equal_at(dims
, n
- 1));
4681 map
= isl_map_add_basic_map(map
,
4682 isl_basic_map_more_at(dims
, n
- 1));
4684 isl_space_free(dims
);
4689 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*dims
, int equal
)
4693 return map_lex_gte_first(dims
, dims
->n_out
, equal
);
4696 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
4698 return map_lex_gte_first(dim
, n
, 0);
4701 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
4703 return map_lex_gte_first(dim
, n
, 1);
4706 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
4708 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
4711 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
4713 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
4716 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
4717 __isl_take isl_set
*set2
)
4720 map
= isl_map_lex_le(isl_set_get_space(set1
));
4721 map
= isl_map_intersect_domain(map
, set1
);
4722 map
= isl_map_intersect_range(map
, set2
);
4726 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
4727 __isl_take isl_set
*set2
)
4730 map
= isl_map_lex_lt(isl_set_get_space(set1
));
4731 map
= isl_map_intersect_domain(map
, set1
);
4732 map
= isl_map_intersect_range(map
, set2
);
4736 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
4737 __isl_take isl_set
*set2
)
4740 map
= isl_map_lex_ge(isl_set_get_space(set1
));
4741 map
= isl_map_intersect_domain(map
, set1
);
4742 map
= isl_map_intersect_range(map
, set2
);
4746 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
4747 __isl_take isl_set
*set2
)
4750 map
= isl_map_lex_gt(isl_set_get_space(set1
));
4751 map
= isl_map_intersect_domain(map
, set1
);
4752 map
= isl_map_intersect_range(map
, set2
);
4756 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
4757 __isl_take isl_map
*map2
)
4760 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
4761 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4762 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4766 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
4767 __isl_take isl_map
*map2
)
4770 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
4771 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4772 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4776 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
4777 __isl_take isl_map
*map2
)
4780 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
4781 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4782 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4786 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
4787 __isl_take isl_map
*map2
)
4790 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
4791 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
4792 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
4796 static __isl_give isl_basic_map
*basic_map_from_basic_set(
4797 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
4799 struct isl_basic_map
*bmap
;
4801 bset
= isl_basic_set_cow(bset
);
4805 isl_assert(bset
->ctx
, isl_space_compatible_internal(bset
->dim
, dim
),
4807 isl_space_free(bset
->dim
);
4808 bmap
= bset_to_bmap(bset
);
4810 return isl_basic_map_finalize(bmap
);
4812 isl_basic_set_free(bset
);
4813 isl_space_free(dim
);
4817 __isl_give isl_basic_map
*isl_basic_map_from_basic_set(
4818 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*space
)
4820 return basic_map_from_basic_set(bset
, space
);
4823 /* For a div d = floor(f/m), add the constraint
4827 static isl_stat
add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
4828 unsigned pos
, isl_int
*div
)
4831 unsigned total
= isl_basic_map_total_dim(bmap
);
4833 i
= isl_basic_map_alloc_inequality(bmap
);
4835 return isl_stat_error
;
4836 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4837 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
4842 /* For a div d = floor(f/m), add the constraint
4844 * -(f-(m-1)) + m d >= 0
4846 static isl_stat
add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
4847 unsigned pos
, isl_int
*div
)
4850 unsigned total
= isl_basic_map_total_dim(bmap
);
4852 i
= isl_basic_map_alloc_inequality(bmap
);
4854 return isl_stat_error
;
4855 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
4856 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
4857 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
4858 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
4863 /* For a div d = floor(f/m), add the constraints
4866 * -(f-(m-1)) + m d >= 0
4868 * Note that the second constraint is the negation of
4872 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
4873 unsigned pos
, isl_int
*div
)
4875 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
4877 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
4882 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
4883 unsigned pos
, isl_int
*div
)
4885 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset
),
4889 int isl_basic_map_add_div_constraints(struct isl_basic_map
*bmap
, unsigned div
)
4891 unsigned total
= isl_basic_map_total_dim(bmap
);
4892 unsigned div_pos
= total
- bmap
->n_div
+ div
;
4894 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
4898 /* For each known div d = floor(f/m), add the constraints
4901 * -(f-(m-1)) + m d >= 0
4903 * Remove duplicate constraints in case of some these div constraints
4904 * already appear in "bmap".
4906 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
4907 __isl_take isl_basic_map
*bmap
)
4913 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4917 bmap
= add_known_div_constraints(bmap
);
4918 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
4919 bmap
= isl_basic_map_finalize(bmap
);
4923 /* Add the div constraint of sign "sign" for div "div" of "bmap".
4925 * In particular, if this div is of the form d = floor(f/m),
4926 * then add the constraint
4930 * if sign < 0 or the constraint
4932 * -(f-(m-1)) + m d >= 0
4936 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
4937 unsigned div
, int sign
)
4945 total
= isl_basic_map_total_dim(bmap
);
4946 div_pos
= total
- bmap
->n_div
+ div
;
4949 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4951 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
4954 int isl_basic_set_add_div_constraints(struct isl_basic_set
*bset
, unsigned div
)
4956 return isl_basic_map_add_div_constraints(bset
, div
);
4959 struct isl_basic_set
*isl_basic_map_underlying_set(
4960 struct isl_basic_map
*bmap
)
4964 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
4966 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
4967 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
4968 return bset_from_bmap(bmap
);
4969 bmap
= isl_basic_map_cow(bmap
);
4972 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
4975 bmap
->extra
-= bmap
->n_div
;
4977 bmap
= isl_basic_map_finalize(bmap
);
4978 return bset_from_bmap(bmap
);
4980 isl_basic_map_free(bmap
);
4984 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
4985 __isl_take isl_basic_set
*bset
)
4987 return isl_basic_map_underlying_set(bset_to_bmap(bset
));
4990 /* Replace each element in "list" by the result of applying
4991 * isl_basic_map_underlying_set to the element.
4993 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
4994 __isl_take isl_basic_map_list
*list
)
5001 n
= isl_basic_map_list_n_basic_map(list
);
5002 for (i
= 0; i
< n
; ++i
) {
5003 isl_basic_map
*bmap
;
5004 isl_basic_set
*bset
;
5006 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
5007 bset
= isl_basic_set_underlying_set(bmap
);
5008 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
5014 struct isl_basic_map
*isl_basic_map_overlying_set(
5015 struct isl_basic_set
*bset
, struct isl_basic_map
*like
)
5017 struct isl_basic_map
*bmap
;
5018 struct isl_ctx
*ctx
;
5025 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
5026 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
5027 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
5029 if (like
->n_div
== 0) {
5030 isl_space
*space
= isl_basic_map_get_space(like
);
5031 isl_basic_map_free(like
);
5032 return isl_basic_map_reset_space(bset
, space
);
5034 bset
= isl_basic_set_cow(bset
);
5037 total
= bset
->dim
->n_out
+ bset
->extra
;
5038 bmap
= bset_to_bmap(bset
);
5039 isl_space_free(bmap
->dim
);
5040 bmap
->dim
= isl_space_copy(like
->dim
);
5043 bmap
->n_div
= like
->n_div
;
5044 bmap
->extra
+= like
->n_div
;
5048 ltotal
= total
- bmap
->extra
+ like
->extra
;
5051 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
5052 bmap
->extra
* (1 + 1 + total
));
5053 if (isl_blk_is_error(bmap
->block2
))
5055 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
5059 for (i
= 0; i
< bmap
->extra
; ++i
)
5060 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
5061 for (i
= 0; i
< like
->n_div
; ++i
) {
5062 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
5063 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
5065 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
5067 isl_basic_map_free(like
);
5068 bmap
= isl_basic_map_simplify(bmap
);
5069 bmap
= isl_basic_map_finalize(bmap
);
5072 isl_basic_map_free(like
);
5073 isl_basic_set_free(bset
);
5077 struct isl_basic_set
*isl_basic_set_from_underlying_set(
5078 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
5080 return bset_from_bmap(isl_basic_map_overlying_set(bset
,
5081 bset_to_bmap(like
)));
5084 struct isl_set
*isl_set_from_underlying_set(
5085 struct isl_set
*set
, struct isl_basic_set
*like
)
5091 isl_assert(set
->ctx
, set
->dim
->n_out
== isl_basic_set_total_dim(like
),
5093 if (isl_space_is_equal(set
->dim
, like
->dim
) && like
->n_div
== 0) {
5094 isl_basic_set_free(like
);
5097 set
= isl_set_cow(set
);
5100 for (i
= 0; i
< set
->n
; ++i
) {
5101 set
->p
[i
] = isl_basic_set_from_underlying_set(set
->p
[i
],
5102 isl_basic_set_copy(like
));
5106 isl_space_free(set
->dim
);
5107 set
->dim
= isl_space_copy(like
->dim
);
5110 isl_basic_set_free(like
);
5113 isl_basic_set_free(like
);
5118 struct isl_set
*isl_map_underlying_set(struct isl_map
*map
)
5122 map
= isl_map_cow(map
);
5125 map
->dim
= isl_space_cow(map
->dim
);
5129 for (i
= 1; i
< map
->n
; ++i
)
5130 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
5132 for (i
= 0; i
< map
->n
; ++i
) {
5133 map
->p
[i
] = bset_to_bmap(
5134 isl_basic_map_underlying_set(map
->p
[i
]));
5139 map
->dim
= isl_space_underlying(map
->dim
, 0);
5141 isl_space_free(map
->dim
);
5142 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
5146 return set_from_map(map
);
5152 struct isl_set
*isl_set_to_underlying_set(struct isl_set
*set
)
5154 return set_from_map(isl_map_underlying_set(set_to_map(set
)));
5157 /* Replace the space of "bmap" by "space".
5159 * If the space of "bmap" is identical to "space" (including the identifiers
5160 * of the input and output dimensions), then simply return the original input.
5162 __isl_give isl_basic_map
*isl_basic_map_reset_space(
5163 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*space
)
5169 equal
= isl_space_is_equal(bmap
->dim
, space
);
5170 if (equal
>= 0 && equal
)
5171 equal
= isl_space_match(bmap
->dim
, isl_dim_in
,
5173 if (equal
>= 0 && equal
)
5174 equal
= isl_space_match(bmap
->dim
, isl_dim_out
,
5175 space
, isl_dim_out
);
5179 isl_space_free(space
);
5182 bmap
= isl_basic_map_cow(bmap
);
5183 if (!bmap
|| !space
)
5186 isl_space_free(bmap
->dim
);
5189 bmap
= isl_basic_map_finalize(bmap
);
5193 isl_basic_map_free(bmap
);
5194 isl_space_free(space
);
5198 __isl_give isl_basic_set
*isl_basic_set_reset_space(
5199 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
5201 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset
),
5205 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
5206 __isl_take isl_space
*dim
)
5210 map
= isl_map_cow(map
);
5214 for (i
= 0; i
< map
->n
; ++i
) {
5215 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
5216 isl_space_copy(dim
));
5220 isl_space_free(map
->dim
);
5226 isl_space_free(dim
);
5230 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
5231 __isl_take isl_space
*dim
)
5233 return set_from_map(isl_map_reset_space(set_to_map(set
), dim
));
5236 /* Compute the parameter domain of the given basic set.
5238 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
5244 is_params
= isl_basic_set_is_params(bset
);
5246 return isl_basic_set_free(bset
);
5250 n
= isl_basic_set_dim(bset
, isl_dim_set
);
5251 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
5252 space
= isl_basic_set_get_space(bset
);
5253 space
= isl_space_params(space
);
5254 bset
= isl_basic_set_reset_space(bset
, space
);
5258 /* Construct a zero-dimensional basic set with the given parameter domain.
5260 __isl_give isl_basic_set
*isl_basic_set_from_params(
5261 __isl_take isl_basic_set
*bset
)
5264 space
= isl_basic_set_get_space(bset
);
5265 space
= isl_space_set_from_params(space
);
5266 bset
= isl_basic_set_reset_space(bset
, space
);
5270 /* Compute the parameter domain of the given set.
5272 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
5277 if (isl_set_is_params(set
))
5280 n
= isl_set_dim(set
, isl_dim_set
);
5281 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
5282 space
= isl_set_get_space(set
);
5283 space
= isl_space_params(space
);
5284 set
= isl_set_reset_space(set
, space
);
5288 /* Construct a zero-dimensional set with the given parameter domain.
5290 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
5293 space
= isl_set_get_space(set
);
5294 space
= isl_space_set_from_params(space
);
5295 set
= isl_set_reset_space(set
, space
);
5299 /* Compute the parameter domain of the given map.
5301 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
5306 n
= isl_map_dim(map
, isl_dim_in
);
5307 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
5308 n
= isl_map_dim(map
, isl_dim_out
);
5309 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
5310 space
= isl_map_get_space(map
);
5311 space
= isl_space_params(space
);
5312 map
= isl_map_reset_space(map
, space
);
5316 struct isl_basic_set
*isl_basic_map_domain(struct isl_basic_map
*bmap
)
5323 space
= isl_space_domain(isl_basic_map_get_space(bmap
));
5325 n_out
= isl_basic_map_n_out(bmap
);
5326 bmap
= isl_basic_map_project_out(bmap
, isl_dim_out
, 0, n_out
);
5328 return isl_basic_map_reset_space(bmap
, space
);
5331 isl_bool
isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
5334 return isl_bool_error
;
5335 return isl_space_may_be_set(bmap
->dim
);
5338 /* Is this basic map actually a set?
5339 * Users should never call this function. Outside of isl,
5340 * the type should indicate whether something is a set or a map.
5342 isl_bool
isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
5345 return isl_bool_error
;
5346 return isl_space_is_set(bmap
->dim
);
5349 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
5353 is_set
= isl_basic_map_is_set(bmap
);
5358 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
5360 isl_basic_map_free(bmap
);
5364 __isl_give isl_basic_map
*isl_basic_map_domain_map(
5365 __isl_take isl_basic_map
*bmap
)
5369 isl_basic_map
*domain
;
5370 int nparam
, n_in
, n_out
;
5372 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5373 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5374 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5376 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
5377 domain
= isl_basic_map_universe(dim
);
5379 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5380 bmap
= isl_basic_map_apply_range(bmap
, domain
);
5381 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
5383 for (i
= 0; i
< n_in
; ++i
)
5384 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, i
,
5387 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5388 return isl_basic_map_finalize(bmap
);
5391 __isl_give isl_basic_map
*isl_basic_map_range_map(
5392 __isl_take isl_basic_map
*bmap
)
5396 isl_basic_map
*range
;
5397 int nparam
, n_in
, n_out
;
5399 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5400 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5401 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5403 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
5404 range
= isl_basic_map_universe(dim
);
5406 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5407 bmap
= isl_basic_map_apply_range(bmap
, range
);
5408 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
5410 for (i
= 0; i
< n_out
; ++i
)
5411 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, n_in
+ i
,
5414 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5415 return isl_basic_map_finalize(bmap
);
5418 int isl_map_may_be_set(__isl_keep isl_map
*map
)
5422 return isl_space_may_be_set(map
->dim
);
5425 /* Is this map actually a set?
5426 * Users should never call this function. Outside of isl,
5427 * the type should indicate whether something is a set or a map.
5429 isl_bool
isl_map_is_set(__isl_keep isl_map
*map
)
5432 return isl_bool_error
;
5433 return isl_space_is_set(map
->dim
);
5436 struct isl_set
*isl_map_range(struct isl_map
*map
)
5440 struct isl_set
*set
;
5442 is_set
= isl_map_is_set(map
);
5446 return set_from_map(map
);
5448 map
= isl_map_cow(map
);
5452 set
= set_from_map(map
);
5453 set
->dim
= isl_space_range(set
->dim
);
5456 for (i
= 0; i
< map
->n
; ++i
) {
5457 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
5461 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5462 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5469 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5473 map
= isl_map_cow(map
);
5477 map
->dim
= isl_space_domain_map(map
->dim
);
5480 for (i
= 0; i
< map
->n
; ++i
) {
5481 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5485 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5486 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5493 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5496 isl_space
*range_dim
;
5498 map
= isl_map_cow(map
);
5502 range_dim
= isl_space_range(isl_map_get_space(map
));
5503 range_dim
= isl_space_from_range(range_dim
);
5504 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5505 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5508 for (i
= 0; i
< map
->n
; ++i
) {
5509 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5513 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5514 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5521 /* Given a wrapped map of the form A[B -> C],
5522 * return the map A[B -> C] -> B.
5524 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5531 if (!isl_set_has_tuple_id(set
))
5532 return isl_map_domain_map(isl_set_unwrap(set
));
5534 id
= isl_set_get_tuple_id(set
);
5535 map
= isl_map_domain_map(isl_set_unwrap(set
));
5536 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5541 __isl_give isl_map
*isl_map_from_set(__isl_take isl_set
*set
,
5542 __isl_take isl_space
*dim
)
5545 struct isl_map
*map
= NULL
;
5547 set
= isl_set_cow(set
);
5550 isl_assert(set
->ctx
, isl_space_compatible_internal(set
->dim
, dim
),
5552 map
= set_to_map(set
);
5553 for (i
= 0; i
< set
->n
; ++i
) {
5554 map
->p
[i
] = basic_map_from_basic_set(
5555 set
->p
[i
], isl_space_copy(dim
));
5559 isl_space_free(map
->dim
);
5563 isl_space_free(dim
);
5568 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5569 __isl_take isl_basic_set
*bset
)
5571 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5574 __isl_give isl_basic_map
*isl_basic_map_from_range(
5575 __isl_take isl_basic_set
*bset
)
5578 space
= isl_basic_set_get_space(bset
);
5579 space
= isl_space_from_range(space
);
5580 bset
= isl_basic_set_reset_space(bset
, space
);
5581 return bset_to_bmap(bset
);
5584 /* Create a relation with the given set as range.
5585 * The domain of the created relation is a zero-dimensional
5586 * flat anonymous space.
5588 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5591 space
= isl_set_get_space(set
);
5592 space
= isl_space_from_range(space
);
5593 set
= isl_set_reset_space(set
, space
);
5594 return set_to_map(set
);
5597 /* Create a relation with the given set as domain.
5598 * The range of the created relation is a zero-dimensional
5599 * flat anonymous space.
5601 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5603 return isl_map_reverse(isl_map_from_range(set
));
5606 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5607 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5609 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5612 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5613 __isl_take isl_set
*range
)
5615 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5618 /* Return a newly allocated isl_map with given space and flags and
5619 * room for "n" basic maps.
5620 * Make sure that all cached information is cleared.
5622 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*space
, int n
,
5625 struct isl_map
*map
;
5630 isl_die(space
->ctx
, isl_error_internal
,
5631 "negative number of basic maps", goto error
);
5632 map
= isl_calloc(space
->ctx
, struct isl_map
,
5633 sizeof(struct isl_map
) +
5634 (n
- 1) * sizeof(struct isl_basic_map
*));
5638 map
->ctx
= space
->ctx
;
5639 isl_ctx_ref(map
->ctx
);
5647 isl_space_free(space
);
5651 struct isl_map
*isl_map_alloc(struct isl_ctx
*ctx
,
5652 unsigned nparam
, unsigned in
, unsigned out
, int n
,
5655 struct isl_map
*map
;
5658 dims
= isl_space_alloc(ctx
, nparam
, in
, out
);
5662 map
= isl_map_alloc_space(dims
, n
, flags
);
5666 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*dim
)
5668 struct isl_basic_map
*bmap
;
5669 bmap
= isl_basic_map_alloc_space(dim
, 0, 1, 0);
5670 bmap
= isl_basic_map_set_to_empty(bmap
);
5674 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*dim
)
5676 struct isl_basic_set
*bset
;
5677 bset
= isl_basic_set_alloc_space(dim
, 0, 1, 0);
5678 bset
= isl_basic_set_set_to_empty(bset
);
5682 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*dim
)
5684 struct isl_basic_map
*bmap
;
5685 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, 0);
5686 bmap
= isl_basic_map_finalize(bmap
);
5690 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*dim
)
5692 struct isl_basic_set
*bset
;
5693 bset
= isl_basic_set_alloc_space(dim
, 0, 0, 0);
5694 bset
= isl_basic_set_finalize(bset
);
5698 __isl_give isl_basic_map
*isl_basic_map_nat_universe(__isl_take isl_space
*dim
)
5701 unsigned total
= isl_space_dim(dim
, isl_dim_all
);
5702 isl_basic_map
*bmap
;
5704 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, total
);
5705 for (i
= 0; i
< total
; ++i
) {
5706 int k
= isl_basic_map_alloc_inequality(bmap
);
5709 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
5710 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
5714 isl_basic_map_free(bmap
);
5718 __isl_give isl_basic_set
*isl_basic_set_nat_universe(__isl_take isl_space
*dim
)
5720 return isl_basic_map_nat_universe(dim
);
5723 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
5725 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
5728 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
5730 return isl_map_nat_universe(dim
);
5733 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*dim
)
5735 return isl_map_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5738 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*dim
)
5740 return isl_set_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5743 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*dim
)
5745 struct isl_map
*map
;
5748 map
= isl_map_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5749 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(dim
));
5753 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*dim
)
5755 struct isl_set
*set
;
5758 set
= isl_set_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5759 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(dim
));
5763 struct isl_map
*isl_map_dup(struct isl_map
*map
)
5766 struct isl_map
*dup
;
5770 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
5771 for (i
= 0; i
< map
->n
; ++i
)
5772 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
5776 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
5777 __isl_take isl_basic_map
*bmap
)
5781 if (isl_basic_map_plain_is_empty(bmap
)) {
5782 isl_basic_map_free(bmap
);
5785 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
5786 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
5787 map
->p
[map
->n
] = bmap
;
5789 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5795 isl_basic_map_free(bmap
);
5799 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
5810 isl_ctx_deref(map
->ctx
);
5811 for (i
= 0; i
< map
->n
; ++i
)
5812 isl_basic_map_free(map
->p
[i
]);
5813 isl_space_free(map
->dim
);
5819 static struct isl_basic_map
*isl_basic_map_fix_pos_si(
5820 struct isl_basic_map
*bmap
, unsigned pos
, int value
)
5824 bmap
= isl_basic_map_cow(bmap
);
5825 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5826 j
= isl_basic_map_alloc_equality(bmap
);
5829 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5830 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5831 isl_int_set_si(bmap
->eq
[j
][0], value
);
5832 bmap
= isl_basic_map_simplify(bmap
);
5833 return isl_basic_map_finalize(bmap
);
5835 isl_basic_map_free(bmap
);
5839 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
5840 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
5844 bmap
= isl_basic_map_cow(bmap
);
5845 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
5846 j
= isl_basic_map_alloc_equality(bmap
);
5849 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
5850 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
5851 isl_int_set(bmap
->eq
[j
][0], value
);
5852 bmap
= isl_basic_map_simplify(bmap
);
5853 return isl_basic_map_finalize(bmap
);
5855 isl_basic_map_free(bmap
);
5859 struct isl_basic_map
*isl_basic_map_fix_si(struct isl_basic_map
*bmap
,
5860 enum isl_dim_type type
, unsigned pos
, int value
)
5862 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5863 return isl_basic_map_free(bmap
);
5864 return isl_basic_map_fix_pos_si(bmap
,
5865 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5868 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
5869 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5871 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5872 return isl_basic_map_free(bmap
);
5873 return isl_basic_map_fix_pos(bmap
,
5874 isl_basic_map_offset(bmap
, type
) + pos
, value
);
5877 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
5878 * to be equal to "v".
5880 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
5881 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5885 if (!isl_val_is_int(v
))
5886 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
5887 "expecting integer value", goto error
);
5888 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
5890 pos
+= isl_basic_map_offset(bmap
, type
);
5891 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
5895 isl_basic_map_free(bmap
);
5900 /* Fix the value of the variable at position "pos" of type "type" of "bset"
5901 * to be equal to "v".
5903 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
5904 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
5906 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
5909 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
5910 enum isl_dim_type type
, unsigned pos
, int value
)
5912 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
5916 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
5917 enum isl_dim_type type
, unsigned pos
, isl_int value
)
5919 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset
),
5923 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
5924 unsigned input
, int value
)
5926 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
5929 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
5930 unsigned dim
, int value
)
5932 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
5933 isl_dim_set
, dim
, value
));
5936 static int remove_if_empty(__isl_keep isl_map
*map
, int i
)
5938 int empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
5945 isl_basic_map_free(map
->p
[i
]);
5946 if (i
!= map
->n
- 1) {
5947 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5948 map
->p
[i
] = map
->p
[map
->n
- 1];
5955 /* Perform "fn" on each basic map of "map", where we may not be holding
5956 * the only reference to "map".
5957 * In particular, "fn" should be a semantics preserving operation
5958 * that we want to apply to all copies of "map". We therefore need
5959 * to be careful not to modify "map" in a way that breaks "map"
5960 * in case anything goes wrong.
5962 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
5963 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
5965 struct isl_basic_map
*bmap
;
5971 for (i
= map
->n
- 1; i
>= 0; --i
) {
5972 bmap
= isl_basic_map_copy(map
->p
[i
]);
5976 isl_basic_map_free(map
->p
[i
]);
5978 if (remove_if_empty(map
, i
) < 0)
5988 struct isl_map
*isl_map_fix_si(struct isl_map
*map
,
5989 enum isl_dim_type type
, unsigned pos
, int value
)
5993 map
= isl_map_cow(map
);
5997 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
5998 for (i
= map
->n
- 1; i
>= 0; --i
) {
5999 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
6000 if (remove_if_empty(map
, i
) < 0)
6003 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6010 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
6011 enum isl_dim_type type
, unsigned pos
, int value
)
6013 return set_from_map(isl_map_fix_si(set_to_map(set
), type
, pos
, value
));
6016 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
6017 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6021 map
= isl_map_cow(map
);
6025 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6026 for (i
= 0; i
< map
->n
; ++i
) {
6027 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
6031 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6038 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
6039 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6041 return set_from_map(isl_map_fix(set_to_map(set
), type
, pos
, value
));
6044 /* Fix the value of the variable at position "pos" of type "type" of "map"
6045 * to be equal to "v".
6047 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
6048 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6052 map
= isl_map_cow(map
);
6056 if (!isl_val_is_int(v
))
6057 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6058 "expecting integer value", goto error
);
6059 if (pos
>= isl_map_dim(map
, type
))
6060 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6061 "index out of bounds", goto error
);
6062 for (i
= map
->n
- 1; i
>= 0; --i
) {
6063 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
6065 if (remove_if_empty(map
, i
) < 0)
6068 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6077 /* Fix the value of the variable at position "pos" of type "type" of "set"
6078 * to be equal to "v".
6080 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
6081 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6083 return isl_map_fix_val(set
, type
, pos
, v
);
6086 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
6087 unsigned input
, int value
)
6089 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
6092 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
6094 return set_from_map(isl_map_fix_si(set_to_map(set
),
6095 isl_dim_set
, dim
, value
));
6098 static __isl_give isl_basic_map
*basic_map_bound_si(
6099 __isl_take isl_basic_map
*bmap
,
6100 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6104 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6105 return isl_basic_map_free(bmap
);
6106 pos
+= isl_basic_map_offset(bmap
, type
);
6107 bmap
= isl_basic_map_cow(bmap
);
6108 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6109 j
= isl_basic_map_alloc_inequality(bmap
);
6112 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6114 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6115 isl_int_set_si(bmap
->ineq
[j
][0], value
);
6117 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6118 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
6120 bmap
= isl_basic_map_simplify(bmap
);
6121 return isl_basic_map_finalize(bmap
);
6123 isl_basic_map_free(bmap
);
6127 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
6128 __isl_take isl_basic_map
*bmap
,
6129 enum isl_dim_type type
, unsigned pos
, int value
)
6131 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
6134 /* Constrain the values of the given dimension to be no greater than "value".
6136 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
6137 __isl_take isl_basic_map
*bmap
,
6138 enum isl_dim_type type
, unsigned pos
, int value
)
6140 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
6143 struct isl_basic_set
*isl_basic_set_lower_bound_dim(struct isl_basic_set
*bset
,
6144 unsigned dim
, isl_int value
)
6148 bset
= isl_basic_set_cow(bset
);
6149 bset
= isl_basic_set_extend_constraints(bset
, 0, 1);
6150 j
= isl_basic_set_alloc_inequality(bset
);
6153 isl_seq_clr(bset
->ineq
[j
], 1 + isl_basic_set_total_dim(bset
));
6154 isl_int_set_si(bset
->ineq
[j
][1 + isl_basic_set_n_param(bset
) + dim
], 1);
6155 isl_int_neg(bset
->ineq
[j
][0], value
);
6156 bset
= isl_basic_set_simplify(bset
);
6157 return isl_basic_set_finalize(bset
);
6159 isl_basic_set_free(bset
);
6163 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
6164 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6168 map
= isl_map_cow(map
);
6172 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6173 for (i
= 0; i
< map
->n
; ++i
) {
6174 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
6175 type
, pos
, value
, upper
);
6179 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6186 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
6187 enum isl_dim_type type
, unsigned pos
, int value
)
6189 return map_bound_si(map
, type
, pos
, value
, 0);
6192 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
6193 enum isl_dim_type type
, unsigned pos
, int value
)
6195 return map_bound_si(map
, type
, pos
, value
, 1);
6198 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
6199 enum isl_dim_type type
, unsigned pos
, int value
)
6201 return set_from_map(isl_map_lower_bound_si(set_to_map(set
),
6205 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
6206 enum isl_dim_type type
, unsigned pos
, int value
)
6208 return isl_map_upper_bound_si(set
, type
, pos
, value
);
6211 /* Bound the given variable of "bmap" from below (or above is "upper"
6212 * is set) to "value".
6214 static __isl_give isl_basic_map
*basic_map_bound(
6215 __isl_take isl_basic_map
*bmap
,
6216 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6220 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6221 return isl_basic_map_free(bmap
);
6222 pos
+= isl_basic_map_offset(bmap
, type
);
6223 bmap
= isl_basic_map_cow(bmap
);
6224 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6225 j
= isl_basic_map_alloc_inequality(bmap
);
6228 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6230 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6231 isl_int_set(bmap
->ineq
[j
][0], value
);
6233 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6234 isl_int_neg(bmap
->ineq
[j
][0], value
);
6236 bmap
= isl_basic_map_simplify(bmap
);
6237 return isl_basic_map_finalize(bmap
);
6239 isl_basic_map_free(bmap
);
6243 /* Bound the given variable of "map" from below (or above is "upper"
6244 * is set) to "value".
6246 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
6247 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6251 map
= isl_map_cow(map
);
6255 if (pos
>= isl_map_dim(map
, type
))
6256 isl_die(map
->ctx
, isl_error_invalid
,
6257 "index out of bounds", goto error
);
6258 for (i
= map
->n
- 1; i
>= 0; --i
) {
6259 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
6260 if (remove_if_empty(map
, i
) < 0)
6263 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6270 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
6271 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6273 return map_bound(map
, type
, pos
, value
, 0);
6276 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
6277 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6279 return map_bound(map
, type
, pos
, value
, 1);
6282 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
6283 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6285 return isl_map_lower_bound(set
, type
, pos
, value
);
6288 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
6289 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6291 return isl_map_upper_bound(set
, type
, pos
, value
);
6294 /* Force the values of the variable at position "pos" of type "type" of "set"
6295 * to be no smaller than "value".
6297 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
6298 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6302 if (!isl_val_is_int(value
))
6303 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6304 "expecting integer value", goto error
);
6305 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
6306 isl_val_free(value
);
6309 isl_val_free(value
);
6314 /* Force the values of the variable at position "pos" of type "type" of "set"
6315 * to be no greater than "value".
6317 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
6318 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6322 if (!isl_val_is_int(value
))
6323 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6324 "expecting integer value", goto error
);
6325 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
6326 isl_val_free(value
);
6329 isl_val_free(value
);
6334 struct isl_set
*isl_set_lower_bound_dim(struct isl_set
*set
, unsigned dim
,
6339 set
= isl_set_cow(set
);
6343 isl_assert(set
->ctx
, dim
< isl_set_n_dim(set
), goto error
);
6344 for (i
= 0; i
< set
->n
; ++i
) {
6345 set
->p
[i
] = isl_basic_set_lower_bound_dim(set
->p
[i
], dim
, value
);
6355 struct isl_map
*isl_map_reverse(struct isl_map
*map
)
6359 map
= isl_map_cow(map
);
6363 map
->dim
= isl_space_reverse(map
->dim
);
6366 for (i
= 0; i
< map
->n
; ++i
) {
6367 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
6371 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6379 #define TYPE isl_pw_multi_aff
6381 #define SUFFIX _pw_multi_aff
6383 #define EMPTY isl_pw_multi_aff_empty
6385 #define ADD isl_pw_multi_aff_union_add
6386 #include "isl_map_lexopt_templ.c"
6388 /* Given a map "map", compute the lexicographically minimal
6389 * (or maximal) image element for each domain element in dom,
6390 * in the form of an isl_pw_multi_aff.
6391 * If "empty" is not NULL, then set *empty to those elements in dom that
6392 * do not have an image element.
6393 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6394 * should be computed over the domain of "map". "empty" is also NULL
6397 * We first compute the lexicographically minimal or maximal element
6398 * in the first basic map. This results in a partial solution "res"
6399 * and a subset "todo" of dom that still need to be handled.
6400 * We then consider each of the remaining maps in "map" and successively
6401 * update both "res" and "todo".
6402 * If "empty" is NULL, then the todo sets are not needed and therefore
6403 * also not computed.
6405 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6406 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6407 __isl_give isl_set
**empty
, unsigned flags
)
6411 isl_pw_multi_aff
*res
;
6414 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6415 if (!map
|| (!full
&& !dom
))
6418 if (isl_map_plain_is_empty(map
)) {
6423 return isl_pw_multi_aff_from_map(map
);
6426 res
= basic_map_partial_lexopt_pw_multi_aff(
6427 isl_basic_map_copy(map
->p
[0]),
6428 isl_set_copy(dom
), empty
, flags
);
6432 for (i
= 1; i
< map
->n
; ++i
) {
6433 isl_pw_multi_aff
*res_i
;
6435 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6436 isl_basic_map_copy(map
->p
[i
]),
6437 isl_set_copy(dom
), empty
, flags
);
6439 if (ISL_FL_ISSET(flags
, ISL_OPT_MAX
))
6440 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6442 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6445 todo
= isl_set_intersect(todo
, *empty
);
6464 #define TYPE isl_map
6468 #define EMPTY isl_map_empty
6470 #define ADD isl_map_union_disjoint
6471 #include "isl_map_lexopt_templ.c"
6473 /* Given a map "map", compute the lexicographically minimal
6474 * (or maximal) image element for each domain element in "dom",
6475 * in the form of an isl_map.
6476 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6477 * do not have an image element.
6478 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6479 * should be computed over the domain of "map". "empty" is also NULL
6482 * If the input consists of more than one disjunct, then first
6483 * compute the desired result in the form of an isl_pw_multi_aff and
6484 * then convert that into an isl_map.
6486 * This function used to have an explicit implementation in terms
6487 * of isl_maps, but it would continually intersect the domains of
6488 * partial results with the complement of the domain of the next
6489 * partial solution, potentially leading to an explosion in the number
6490 * of disjuncts if there are several disjuncts in the input.
6491 * An even earlier implementation of this function would look for
6492 * better results in the domain of the partial result and for extra
6493 * results in the complement of this domain, which would lead to
6494 * even more splintering.
6496 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6497 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6498 __isl_give isl_set
**empty
, unsigned flags
)
6501 struct isl_map
*res
;
6502 isl_pw_multi_aff
*pma
;
6504 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6505 if (!map
|| (!full
&& !dom
))
6508 if (isl_map_plain_is_empty(map
)) {
6517 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6523 pma
= isl_map_partial_lexopt_aligned_pw_multi_aff(map
, dom
, empty
,
6525 return isl_map_from_pw_multi_aff(pma
);
6534 __isl_give isl_map
*isl_map_partial_lexmax(
6535 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6536 __isl_give isl_set
**empty
)
6538 return isl_map_partial_lexopt(map
, dom
, empty
, ISL_OPT_MAX
);
6541 __isl_give isl_map
*isl_map_partial_lexmin(
6542 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6543 __isl_give isl_set
**empty
)
6545 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6548 __isl_give isl_set
*isl_set_partial_lexmin(
6549 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6550 __isl_give isl_set
**empty
)
6552 return set_from_map(isl_map_partial_lexmin(set_to_map(set
),
6556 __isl_give isl_set
*isl_set_partial_lexmax(
6557 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6558 __isl_give isl_set
**empty
)
6560 return set_from_map(isl_map_partial_lexmax(set_to_map(set
),
6564 /* Compute the lexicographic minimum (or maximum if "flags" includes
6565 * ISL_OPT_MAX) of "bset" over its parametric domain.
6567 __isl_give isl_set
*isl_basic_set_lexopt(__isl_take isl_basic_set
*bset
,
6570 return isl_basic_map_lexopt(bset
, flags
);
6573 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6575 return isl_basic_map_lexopt(bmap
, ISL_OPT_MAX
);
6578 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6580 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset
)));
6583 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6585 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset
)));
6588 /* Compute the lexicographic minimum of "bset" over its parametric domain
6589 * for the purpose of quantifier elimination.
6590 * That is, find an explicit representation for all the existentially
6591 * quantified variables in "bset" by computing their lexicographic
6594 static __isl_give isl_set
*isl_basic_set_lexmin_compute_divs(
6595 __isl_take isl_basic_set
*bset
)
6597 return isl_basic_set_lexopt(bset
, ISL_OPT_QE
);
6600 /* Extract the first and only affine expression from list
6601 * and then add it to *pwaff with the given dom.
6602 * This domain is known to be disjoint from other domains
6603 * because of the way isl_basic_map_foreach_lexmax works.
6605 static isl_stat
update_dim_opt(__isl_take isl_basic_set
*dom
,
6606 __isl_take isl_aff_list
*list
, void *user
)
6608 isl_ctx
*ctx
= isl_basic_set_get_ctx(dom
);
6610 isl_pw_aff
**pwaff
= user
;
6611 isl_pw_aff
*pwaff_i
;
6615 if (isl_aff_list_n_aff(list
) != 1)
6616 isl_die(ctx
, isl_error_internal
,
6617 "expecting single element list", goto error
);
6619 aff
= isl_aff_list_get_aff(list
, 0);
6620 pwaff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(dom
), aff
);
6622 *pwaff
= isl_pw_aff_add_disjoint(*pwaff
, pwaff_i
);
6624 isl_aff_list_free(list
);
6628 isl_basic_set_free(dom
);
6629 isl_aff_list_free(list
);
6630 return isl_stat_error
;
6633 /* Given a basic map with one output dimension, compute the minimum or
6634 * maximum of that dimension as an isl_pw_aff.
6636 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6637 * call update_dim_opt on each leaf of the result.
6639 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6642 isl_space
*dim
= isl_basic_map_get_space(bmap
);
6646 dim
= isl_space_from_domain(isl_space_domain(dim
));
6647 dim
= isl_space_add_dims(dim
, isl_dim_out
, 1);
6648 pwaff
= isl_pw_aff_empty(dim
);
6650 r
= isl_basic_map_foreach_lexopt(bmap
, max
, &update_dim_opt
, &pwaff
);
6652 return isl_pw_aff_free(pwaff
);
6657 /* Compute the minimum or maximum of the given output dimension
6658 * as a function of the parameters and the input dimensions,
6659 * but independently of the other output dimensions.
6661 * We first project out the other output dimension and then compute
6662 * the "lexicographic" maximum in each basic map, combining the results
6663 * using isl_pw_aff_union_max.
6665 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
6672 n_out
= isl_map_dim(map
, isl_dim_out
);
6673 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
6674 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
6679 isl_space
*dim
= isl_map_get_space(map
);
6681 return isl_pw_aff_empty(dim
);
6684 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
6685 for (i
= 1; i
< map
->n
; ++i
) {
6686 isl_pw_aff
*pwaff_i
;
6688 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
6689 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
6697 /* Compute the minimum of the given output dimension as a function of the
6698 * parameters and input dimensions, but independently of
6699 * the other output dimensions.
6701 __isl_give isl_pw_aff
*isl_map_dim_min(__isl_take isl_map
*map
, int pos
)
6703 return map_dim_opt(map
, pos
, 0);
6706 /* Compute the maximum of the given output dimension as a function of the
6707 * parameters and input dimensions, but independently of
6708 * the other output dimensions.
6710 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
6712 return map_dim_opt(map
, pos
, 1);
6715 /* Compute the minimum or maximum of the given set dimension
6716 * as a function of the parameters,
6717 * but independently of the other set dimensions.
6719 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
6722 return map_dim_opt(set
, pos
, max
);
6725 /* Compute the maximum of the given set dimension as a function of the
6726 * parameters, but independently of the other set dimensions.
6728 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
6730 return set_dim_opt(set
, pos
, 1);
6733 /* Compute the minimum of the given set dimension as a function of the
6734 * parameters, but independently of the other set dimensions.
6736 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
6738 return set_dim_opt(set
, pos
, 0);
6741 /* Apply a preimage specified by "mat" on the parameters of "bset".
6742 * bset is assumed to have only parameters and divs.
6744 static struct isl_basic_set
*basic_set_parameter_preimage(
6745 struct isl_basic_set
*bset
, struct isl_mat
*mat
)
6752 bset
->dim
= isl_space_cow(bset
->dim
);
6756 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6758 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6760 bset
->dim
->nparam
= 0;
6761 bset
->dim
->n_out
= nparam
;
6762 bset
= isl_basic_set_preimage(bset
, mat
);
6764 bset
->dim
->nparam
= bset
->dim
->n_out
;
6765 bset
->dim
->n_out
= 0;
6770 isl_basic_set_free(bset
);
6774 /* Apply a preimage specified by "mat" on the parameters of "set".
6775 * set is assumed to have only parameters and divs.
6777 static __isl_give isl_set
*set_parameter_preimage(__isl_take isl_set
*set
,
6778 __isl_take isl_mat
*mat
)
6786 nparam
= isl_set_dim(set
, isl_dim_param
);
6788 if (mat
->n_row
!= 1 + nparam
)
6789 isl_die(isl_set_get_ctx(set
), isl_error_internal
,
6790 "unexpected number of rows", goto error
);
6792 space
= isl_set_get_space(set
);
6793 space
= isl_space_move_dims(space
, isl_dim_set
, 0,
6794 isl_dim_param
, 0, nparam
);
6795 set
= isl_set_reset_space(set
, space
);
6796 set
= isl_set_preimage(set
, mat
);
6797 nparam
= isl_set_dim(set
, isl_dim_out
);
6798 space
= isl_set_get_space(set
);
6799 space
= isl_space_move_dims(space
, isl_dim_param
, 0,
6800 isl_dim_out
, 0, nparam
);
6801 set
= isl_set_reset_space(set
, space
);
6809 /* Intersect the basic set "bset" with the affine space specified by the
6810 * equalities in "eq".
6812 static struct isl_basic_set
*basic_set_append_equalities(
6813 struct isl_basic_set
*bset
, struct isl_mat
*eq
)
6821 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
6826 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
6827 for (i
= 0; i
< eq
->n_row
; ++i
) {
6828 k
= isl_basic_set_alloc_equality(bset
);
6831 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
6832 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
6836 bset
= isl_basic_set_gauss(bset
, NULL
);
6837 bset
= isl_basic_set_finalize(bset
);
6842 isl_basic_set_free(bset
);
6846 /* Intersect the set "set" with the affine space specified by the
6847 * equalities in "eq".
6849 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
6857 for (i
= 0; i
< set
->n
; ++i
) {
6858 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
6871 /* Given a basic set "bset" that only involves parameters and existentially
6872 * quantified variables, return the index of the first equality
6873 * that only involves parameters. If there is no such equality then
6874 * return bset->n_eq.
6876 * This function assumes that isl_basic_set_gauss has been called on "bset".
6878 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
6881 unsigned nparam
, n_div
;
6886 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6887 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
6889 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
6890 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
6897 /* Compute an explicit representation for the existentially quantified
6898 * variables in "bset" by computing the "minimal value" of the set
6899 * variables. Since there are no set variables, the computation of
6900 * the minimal value essentially computes an explicit representation
6901 * of the non-empty part(s) of "bset".
6903 * The input only involves parameters and existentially quantified variables.
6904 * All equalities among parameters have been removed.
6906 * Since the existentially quantified variables in the result are in general
6907 * going to be different from those in the input, we first replace
6908 * them by the minimal number of variables based on their equalities.
6909 * This should simplify the parametric integer programming.
6911 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
6913 isl_morph
*morph1
, *morph2
;
6919 if (bset
->n_eq
== 0)
6920 return isl_basic_set_lexmin_compute_divs(bset
);
6922 morph1
= isl_basic_set_parameter_compression(bset
);
6923 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
6924 bset
= isl_basic_set_lift(bset
);
6925 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
6926 bset
= isl_morph_basic_set(morph2
, bset
);
6927 n
= isl_basic_set_dim(bset
, isl_dim_set
);
6928 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
6930 set
= isl_basic_set_lexmin_compute_divs(bset
);
6932 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
6937 /* Project the given basic set onto its parameter domain, possibly introducing
6938 * new, explicit, existential variables in the constraints.
6939 * The input has parameters and (possibly implicit) existential variables.
6940 * The output has the same parameters, but only
6941 * explicit existentially quantified variables.
6943 * The actual projection is performed by pip, but pip doesn't seem
6944 * to like equalities very much, so we first remove the equalities
6945 * among the parameters by performing a variable compression on
6946 * the parameters. Afterward, an inverse transformation is performed
6947 * and the equalities among the parameters are inserted back in.
6949 * The variable compression on the parameters may uncover additional
6950 * equalities that were only implicit before. We therefore check
6951 * if there are any new parameter equalities in the result and
6952 * if so recurse. The removal of parameter equalities is required
6953 * for the parameter compression performed by base_compute_divs.
6955 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
6959 struct isl_mat
*T
, *T2
;
6960 struct isl_set
*set
;
6963 bset
= isl_basic_set_cow(bset
);
6967 if (bset
->n_eq
== 0)
6968 return base_compute_divs(bset
);
6970 bset
= isl_basic_set_gauss(bset
, NULL
);
6973 if (isl_basic_set_plain_is_empty(bset
))
6974 return isl_set_from_basic_set(bset
);
6976 i
= first_parameter_equality(bset
);
6977 if (i
== bset
->n_eq
)
6978 return base_compute_divs(bset
);
6980 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6981 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
6983 eq
= isl_mat_cow(eq
);
6984 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
6985 if (T
&& T
->n_col
== 0) {
6989 bset
= isl_basic_set_set_to_empty(bset
);
6990 return isl_set_from_basic_set(bset
);
6992 bset
= basic_set_parameter_preimage(bset
, T
);
6994 i
= first_parameter_equality(bset
);
6997 else if (i
== bset
->n_eq
)
6998 set
= base_compute_divs(bset
);
7000 set
= parameter_compute_divs(bset
);
7001 set
= set_parameter_preimage(set
, T2
);
7002 set
= set_append_equalities(set
, eq
);
7006 /* Insert the divs from "ls" before those of "bmap".
7008 * The number of columns is not changed, which means that the last
7009 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7010 * The caller is responsible for removing the same number of dimensions
7011 * from the space of "bmap".
7013 static __isl_give isl_basic_map
*insert_divs_from_local_space(
7014 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
7020 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7024 old_n_div
= bmap
->n_div
;
7025 bmap
= insert_div_rows(bmap
, n_div
);
7029 for (i
= 0; i
< n_div
; ++i
) {
7030 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
7031 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
7037 /* Replace the space of "bmap" by the space and divs of "ls".
7039 * If "ls" has any divs, then we simplify the result since we may
7040 * have discovered some additional equalities that could simplify
7041 * the div expressions.
7043 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
7044 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
7048 bmap
= isl_basic_map_cow(bmap
);
7052 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7053 bmap
= insert_divs_from_local_space(bmap
, ls
);
7057 isl_space_free(bmap
->dim
);
7058 bmap
->dim
= isl_local_space_get_space(ls
);
7062 isl_local_space_free(ls
);
7064 bmap
= isl_basic_map_simplify(bmap
);
7065 bmap
= isl_basic_map_finalize(bmap
);
7068 isl_basic_map_free(bmap
);
7069 isl_local_space_free(ls
);
7073 /* Replace the space of "map" by the space and divs of "ls".
7075 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
7076 __isl_take isl_local_space
*ls
)
7080 map
= isl_map_cow(map
);
7084 for (i
= 0; i
< map
->n
; ++i
) {
7085 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
7086 isl_local_space_copy(ls
));
7090 isl_space_free(map
->dim
);
7091 map
->dim
= isl_local_space_get_space(ls
);
7095 isl_local_space_free(ls
);
7098 isl_local_space_free(ls
);
7103 /* Compute an explicit representation for the existentially
7104 * quantified variables for which do not know any explicit representation yet.
7106 * We first sort the existentially quantified variables so that the
7107 * existentially quantified variables for which we already have an explicit
7108 * representation are placed before those for which we do not.
7109 * The input dimensions, the output dimensions and the existentially
7110 * quantified variables for which we already have an explicit
7111 * representation are then turned into parameters.
7112 * compute_divs returns a map with the same parameters and
7113 * no input or output dimensions and the dimension specification
7114 * is reset to that of the input, including the existentially quantified
7115 * variables for which we already had an explicit representation.
7117 static struct isl_map
*compute_divs(struct isl_basic_map
*bmap
)
7119 struct isl_basic_set
*bset
;
7120 struct isl_set
*set
;
7121 struct isl_map
*map
;
7123 isl_local_space
*ls
;
7130 bmap
= isl_basic_map_sort_divs(bmap
);
7131 bmap
= isl_basic_map_cow(bmap
);
7135 n_known
= isl_basic_map_first_unknown_div(bmap
);
7137 return isl_map_from_basic_map(isl_basic_map_free(bmap
));
7139 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7140 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
7141 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
7142 dim
= isl_space_set_alloc(bmap
->ctx
,
7143 nparam
+ n_in
+ n_out
+ n_known
, 0);
7147 ls
= isl_basic_map_get_local_space(bmap
);
7148 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
7149 n_known
, bmap
->n_div
- n_known
);
7151 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
7152 swap_div(bmap
, i
- n_known
, i
);
7153 bmap
->n_div
-= n_known
;
7154 bmap
->extra
-= n_known
;
7156 bmap
= isl_basic_map_reset_space(bmap
, dim
);
7157 bset
= bset_from_bmap(bmap
);
7159 set
= parameter_compute_divs(bset
);
7160 map
= set_to_map(set
);
7161 map
= replace_space_by_local_space(map
, ls
);
7165 isl_basic_map_free(bmap
);
7169 /* Remove the explicit representation of local variable "div",
7172 __isl_give isl_basic_map
*isl_basic_map_mark_div_unknown(
7173 __isl_take isl_basic_map
*bmap
, int div
)
7177 unknown
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
7179 return isl_basic_map_free(bmap
);
7183 bmap
= isl_basic_map_cow(bmap
);
7186 isl_int_set_si(bmap
->div
[div
][0], 0);
7190 /* Is local variable "div" of "bmap" marked as not having an explicit
7192 * Note that even if "div" is not marked in this way and therefore
7193 * has an explicit representation, this representation may still
7194 * depend (indirectly) on other local variables that do not
7195 * have an explicit representation.
7197 isl_bool
isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map
*bmap
,
7200 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
7201 return isl_bool_error
;
7202 return isl_int_is_zero(bmap
->div
[div
][0]);
7205 /* Return the position of the first local variable that does not
7206 * have an explicit representation.
7207 * Return the total number of local variables if they all have
7208 * an explicit representation.
7209 * Return -1 on error.
7211 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map
*bmap
)
7218 for (i
= 0; i
< bmap
->n_div
; ++i
) {
7219 if (!isl_basic_map_div_is_known(bmap
, i
))
7225 /* Return the position of the first local variable that does not
7226 * have an explicit representation.
7227 * Return the total number of local variables if they all have
7228 * an explicit representation.
7229 * Return -1 on error.
7231 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set
*bset
)
7233 return isl_basic_map_first_unknown_div(bset
);
7236 /* Does "bmap" have an explicit representation for all local variables?
7238 isl_bool
isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
7242 n
= isl_basic_map_dim(bmap
, isl_dim_div
);
7243 first
= isl_basic_map_first_unknown_div(bmap
);
7245 return isl_bool_error
;
7249 /* Do all basic maps in "map" have an explicit representation
7250 * for all local variables?
7252 isl_bool
isl_map_divs_known(__isl_keep isl_map
*map
)
7257 return isl_bool_error
;
7259 for (i
= 0; i
< map
->n
; ++i
) {
7260 int known
= isl_basic_map_divs_known(map
->p
[i
]);
7265 return isl_bool_true
;
7268 /* If bmap contains any unknown divs, then compute explicit
7269 * expressions for them. However, this computation may be
7270 * quite expensive, so first try to remove divs that aren't
7273 struct isl_map
*isl_basic_map_compute_divs(struct isl_basic_map
*bmap
)
7276 struct isl_map
*map
;
7278 known
= isl_basic_map_divs_known(bmap
);
7282 return isl_map_from_basic_map(bmap
);
7284 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
7286 known
= isl_basic_map_divs_known(bmap
);
7290 return isl_map_from_basic_map(bmap
);
7292 map
= compute_divs(bmap
);
7295 isl_basic_map_free(bmap
);
7299 struct isl_map
*isl_map_compute_divs(struct isl_map
*map
)
7303 struct isl_map
*res
;
7310 known
= isl_map_divs_known(map
);
7318 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
7319 for (i
= 1 ; i
< map
->n
; ++i
) {
7321 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
7322 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
7323 res
= isl_map_union_disjoint(res
, r2
);
7325 res
= isl_map_union(res
, r2
);
7332 struct isl_set
*isl_basic_set_compute_divs(struct isl_basic_set
*bset
)
7334 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset
)));
7337 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
7339 return set_from_map(isl_map_compute_divs(set_to_map(set
)));
7342 struct isl_set
*isl_map_domain(struct isl_map
*map
)
7345 struct isl_set
*set
;
7350 map
= isl_map_cow(map
);
7354 set
= set_from_map(map
);
7355 set
->dim
= isl_space_domain(set
->dim
);
7358 for (i
= 0; i
< map
->n
; ++i
) {
7359 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7363 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7364 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7371 /* Return the union of "map1" and "map2", where we assume for now that
7372 * "map1" and "map2" are disjoint. Note that the basic maps inside
7373 * "map1" or "map2" may not be disjoint from each other.
7374 * Also note that this function is also called from isl_map_union,
7375 * which takes care of handling the situation where "map1" and "map2"
7376 * may not be disjoint.
7378 * If one of the inputs is empty, we can simply return the other input.
7379 * Similarly, if one of the inputs is universal, then it is equal to the union.
7381 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7382 __isl_take isl_map
*map2
)
7386 struct isl_map
*map
= NULL
;
7392 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7393 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7394 "spaces don't match", goto error
);
7405 is_universe
= isl_map_plain_is_universe(map1
);
7406 if (is_universe
< 0)
7413 is_universe
= isl_map_plain_is_universe(map2
);
7414 if (is_universe
< 0)
7421 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7422 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7423 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7425 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7426 map1
->n
+ map2
->n
, flags
);
7429 for (i
= 0; i
< map1
->n
; ++i
) {
7430 map
= isl_map_add_basic_map(map
,
7431 isl_basic_map_copy(map1
->p
[i
]));
7435 for (i
= 0; i
< map2
->n
; ++i
) {
7436 map
= isl_map_add_basic_map(map
,
7437 isl_basic_map_copy(map2
->p
[i
]));
7451 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7452 * guaranteed to be disjoint by the caller.
7454 * Note that this functions is called from within isl_map_make_disjoint,
7455 * so we have to be careful not to touch the constraints of the inputs
7458 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7459 __isl_take isl_map
*map2
)
7461 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7464 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7465 * not be disjoint. The parameters are assumed to have been aligned.
7467 * We currently simply call map_union_disjoint, the internal operation
7468 * of which does not really depend on the inputs being disjoint.
7469 * If the result contains more than one basic map, then we clear
7470 * the disjoint flag since the result may contain basic maps from
7471 * both inputs and these are not guaranteed to be disjoint.
7473 * As a special case, if "map1" and "map2" are obviously equal,
7474 * then we simply return "map1".
7476 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7477 __isl_take isl_map
*map2
)
7484 equal
= isl_map_plain_is_equal(map1
, map2
);
7492 map1
= map_union_disjoint(map1
, map2
);
7496 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7504 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7507 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7508 __isl_take isl_map
*map2
)
7510 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7513 struct isl_set
*isl_set_union_disjoint(
7514 struct isl_set
*set1
, struct isl_set
*set2
)
7516 return set_from_map(isl_map_union_disjoint(set_to_map(set1
),
7520 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7522 return set_from_map(isl_map_union(set_to_map(set1
), set_to_map(set2
)));
7525 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7528 * "map" and "set" are assumed to be compatible and non-NULL.
7530 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7531 __isl_take isl_set
*set
,
7532 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7533 __isl_take isl_basic_set
*bset
))
7536 struct isl_map
*result
;
7539 if (isl_set_plain_is_universe(set
)) {
7544 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7545 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7546 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7548 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7549 map
->n
* set
->n
, flags
);
7550 for (i
= 0; result
&& i
< map
->n
; ++i
)
7551 for (j
= 0; j
< set
->n
; ++j
) {
7552 result
= isl_map_add_basic_map(result
,
7553 fn(isl_basic_map_copy(map
->p
[i
]),
7554 isl_basic_set_copy(set
->p
[j
])));
7564 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7565 __isl_take isl_set
*set
)
7569 ok
= isl_map_compatible_range(map
, set
);
7573 isl_die(set
->ctx
, isl_error_invalid
,
7574 "incompatible spaces", goto error
);
7576 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7583 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7584 __isl_take isl_set
*set
)
7586 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7589 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7590 __isl_take isl_set
*set
)
7594 ok
= isl_map_compatible_domain(map
, set
);
7598 isl_die(set
->ctx
, isl_error_invalid
,
7599 "incompatible spaces", goto error
);
7601 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7608 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7609 __isl_take isl_set
*set
)
7611 return isl_map_align_params_map_map_and(map
, set
,
7612 &map_intersect_domain
);
7615 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
7616 __isl_take isl_map
*map2
)
7620 map1
= isl_map_reverse(map1
);
7621 map1
= isl_map_apply_range(map1
, map2
);
7622 return isl_map_reverse(map1
);
7629 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
7630 __isl_take isl_map
*map2
)
7632 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
7635 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
7636 __isl_take isl_map
*map2
)
7638 isl_space
*dim_result
;
7639 struct isl_map
*result
;
7645 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
7646 isl_space_copy(map2
->dim
));
7648 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
7651 for (i
= 0; i
< map1
->n
; ++i
)
7652 for (j
= 0; j
< map2
->n
; ++j
) {
7653 result
= isl_map_add_basic_map(result
,
7654 isl_basic_map_apply_range(
7655 isl_basic_map_copy(map1
->p
[i
]),
7656 isl_basic_map_copy(map2
->p
[j
])));
7662 if (result
&& result
->n
<= 1)
7663 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
7671 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
7672 __isl_take isl_map
*map2
)
7674 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
7678 * returns range - domain
7680 struct isl_basic_set
*isl_basic_map_deltas(struct isl_basic_map
*bmap
)
7682 isl_space
*target_space
;
7683 struct isl_basic_set
*bset
;
7690 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7691 bmap
->dim
, isl_dim_out
),
7693 target_space
= isl_space_domain(isl_basic_map_get_space(bmap
));
7694 dim
= isl_basic_map_n_in(bmap
);
7695 nparam
= isl_basic_map_n_param(bmap
);
7696 bmap
= isl_basic_map_from_range(isl_basic_map_wrap(bmap
));
7697 bmap
= isl_basic_map_add_dims(bmap
, isl_dim_in
, dim
);
7698 bmap
= isl_basic_map_extend_constraints(bmap
, dim
, 0);
7699 for (i
= 0; i
< dim
; ++i
) {
7700 int j
= isl_basic_map_alloc_equality(bmap
);
7702 bmap
= isl_basic_map_free(bmap
);
7705 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7706 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7707 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], 1);
7708 isl_int_set_si(bmap
->eq
[j
][1+nparam
+2*dim
+i
], -1);
7710 bset
= isl_basic_map_domain(bmap
);
7711 bset
= isl_basic_set_reset_space(bset
, target_space
);
7714 isl_basic_map_free(bmap
);
7719 * returns range - domain
7721 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
7725 struct isl_set
*result
;
7730 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7731 map
->dim
, isl_dim_out
),
7733 dim
= isl_map_get_space(map
);
7734 dim
= isl_space_domain(dim
);
7735 result
= isl_set_alloc_space(dim
, map
->n
, 0);
7738 for (i
= 0; i
< map
->n
; ++i
)
7739 result
= isl_set_add_basic_set(result
,
7740 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
7749 * returns [domain -> range] -> range - domain
7751 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
7752 __isl_take isl_basic_map
*bmap
)
7756 isl_basic_map
*domain
;
7760 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7761 bmap
->dim
, isl_dim_out
))
7762 isl_die(bmap
->ctx
, isl_error_invalid
,
7763 "domain and range don't match", goto error
);
7765 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7766 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
7768 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
7769 domain
= isl_basic_map_universe(dim
);
7771 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
7772 bmap
= isl_basic_map_apply_range(bmap
, domain
);
7773 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
7775 total
= isl_basic_map_total_dim(bmap
);
7777 for (i
= 0; i
< n
; ++i
) {
7778 k
= isl_basic_map_alloc_equality(bmap
);
7781 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
7782 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
7783 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
7784 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
7787 bmap
= isl_basic_map_gauss(bmap
, NULL
);
7788 return isl_basic_map_finalize(bmap
);
7790 isl_basic_map_free(bmap
);
7795 * returns [domain -> range] -> range - domain
7797 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
7800 isl_space
*domain_dim
;
7805 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7806 map
->dim
, isl_dim_out
))
7807 isl_die(map
->ctx
, isl_error_invalid
,
7808 "domain and range don't match", goto error
);
7810 map
= isl_map_cow(map
);
7814 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
7815 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
7816 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
7819 for (i
= 0; i
< map
->n
; ++i
) {
7820 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
7824 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
7831 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*dims
)
7833 struct isl_basic_map
*bmap
;
7841 nparam
= dims
->nparam
;
7843 bmap
= isl_basic_map_alloc_space(dims
, 0, dim
, 0);
7847 for (i
= 0; i
< dim
; ++i
) {
7848 int j
= isl_basic_map_alloc_equality(bmap
);
7851 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7852 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7853 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
7855 return isl_basic_map_finalize(bmap
);
7857 isl_basic_map_free(bmap
);
7861 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*dim
)
7865 if (dim
->n_in
!= dim
->n_out
)
7866 isl_die(dim
->ctx
, isl_error_invalid
,
7867 "number of input and output dimensions needs to be "
7868 "the same", goto error
);
7869 return basic_map_identity(dim
);
7871 isl_space_free(dim
);
7875 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
7877 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
7880 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
7882 isl_space
*dim
= isl_set_get_space(set
);
7884 id
= isl_map_identity(isl_space_map_from_set(dim
));
7885 return isl_map_intersect_range(id
, set
);
7888 /* Construct a basic set with all set dimensions having only non-negative
7891 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
7892 __isl_take isl_space
*space
)
7897 struct isl_basic_set
*bset
;
7901 nparam
= space
->nparam
;
7903 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
7906 for (i
= 0; i
< dim
; ++i
) {
7907 int k
= isl_basic_set_alloc_inequality(bset
);
7910 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
7911 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
7915 isl_basic_set_free(bset
);
7919 /* Construct the half-space x_pos >= 0.
7921 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*dim
,
7925 isl_basic_set
*nonneg
;
7927 nonneg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7928 k
= isl_basic_set_alloc_inequality(nonneg
);
7931 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
7932 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
7934 return isl_basic_set_finalize(nonneg
);
7936 isl_basic_set_free(nonneg
);
7940 /* Construct the half-space x_pos <= -1.
7942 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*dim
, int pos
)
7947 neg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
7948 k
= isl_basic_set_alloc_inequality(neg
);
7951 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
7952 isl_int_set_si(neg
->ineq
[k
][0], -1);
7953 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
7955 return isl_basic_set_finalize(neg
);
7957 isl_basic_set_free(neg
);
7961 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
7962 enum isl_dim_type type
, unsigned first
, unsigned n
)
7966 isl_basic_set
*nonneg
;
7974 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
7976 offset
= pos(set
->dim
, type
);
7977 for (i
= 0; i
< n
; ++i
) {
7978 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
7979 offset
+ first
+ i
);
7980 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
7982 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
7991 static isl_stat
foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
7993 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
7999 return isl_stat_error
;
8000 if (isl_set_plain_is_empty(set
)) {
8005 return fn(set
, signs
, user
);
8008 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
8010 half
= isl_set_intersect(half
, isl_set_copy(set
));
8011 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
8015 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
8017 half
= isl_set_intersect(half
, set
);
8018 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
8021 return isl_stat_error
;
8024 /* Call "fn" on the intersections of "set" with each of the orthants
8025 * (except for obviously empty intersections). The orthant is identified
8026 * by the signs array, with each entry having value 1 or -1 according
8027 * to the sign of the corresponding variable.
8029 isl_stat
isl_set_foreach_orthant(__isl_keep isl_set
*set
,
8030 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8039 return isl_stat_error
;
8040 if (isl_set_plain_is_empty(set
))
8043 nparam
= isl_set_dim(set
, isl_dim_param
);
8044 nvar
= isl_set_dim(set
, isl_dim_set
);
8046 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
8048 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
8056 isl_bool
isl_set_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8058 return isl_map_is_equal(set_to_map(set1
), set_to_map(set2
));
8061 isl_bool
isl_basic_map_is_subset(__isl_keep isl_basic_map
*bmap1
,
8062 __isl_keep isl_basic_map
*bmap2
)
8065 struct isl_map
*map1
;
8066 struct isl_map
*map2
;
8068 if (!bmap1
|| !bmap2
)
8069 return isl_bool_error
;
8071 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
8072 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
8074 is_subset
= isl_map_is_subset(map1
, map2
);
8082 isl_bool
isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
8083 __isl_keep isl_basic_set
*bset2
)
8085 return isl_basic_map_is_subset(bset1
, bset2
);
8088 isl_bool
isl_basic_map_is_equal(__isl_keep isl_basic_map
*bmap1
,
8089 __isl_keep isl_basic_map
*bmap2
)
8093 if (!bmap1
|| !bmap2
)
8094 return isl_bool_error
;
8095 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8096 if (is_subset
!= isl_bool_true
)
8098 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8102 isl_bool
isl_basic_set_is_equal(__isl_keep isl_basic_set
*bset1
,
8103 __isl_keep isl_basic_set
*bset2
)
8105 return isl_basic_map_is_equal(
8106 bset_to_bmap(bset1
), bset_to_bmap(bset2
));
8109 isl_bool
isl_map_is_empty(__isl_keep isl_map
*map
)
8115 return isl_bool_error
;
8116 for (i
= 0; i
< map
->n
; ++i
) {
8117 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
8119 return isl_bool_error
;
8121 return isl_bool_false
;
8123 return isl_bool_true
;
8126 isl_bool
isl_map_plain_is_empty(__isl_keep isl_map
*map
)
8128 return map
? map
->n
== 0 : isl_bool_error
;
8131 isl_bool
isl_set_plain_is_empty(__isl_keep isl_set
*set
)
8133 return set
? set
->n
== 0 : isl_bool_error
;
8136 isl_bool
isl_set_is_empty(__isl_keep isl_set
*set
)
8138 return isl_map_is_empty(set_to_map(set
));
8141 isl_bool
isl_map_has_equal_space(__isl_keep isl_map
*map1
,
8142 __isl_keep isl_map
*map2
)
8145 return isl_bool_error
;
8147 return isl_space_is_equal(map1
->dim
, map2
->dim
);
8150 isl_bool
isl_set_has_equal_space(__isl_keep isl_set
*set1
,
8151 __isl_keep isl_set
*set2
)
8154 return isl_bool_error
;
8156 return isl_space_is_equal(set1
->dim
, set2
->dim
);
8159 static isl_bool
map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8164 return isl_bool_error
;
8165 is_subset
= isl_map_is_subset(map1
, map2
);
8166 if (is_subset
!= isl_bool_true
)
8168 is_subset
= isl_map_is_subset(map2
, map1
);
8172 /* Is "map1" equal to "map2"?
8174 * First check if they are obviously equal.
8175 * If not, then perform a more detailed analysis.
8177 isl_bool
isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8181 equal
= isl_map_plain_is_equal(map1
, map2
);
8182 if (equal
< 0 || equal
)
8184 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
8187 isl_bool
isl_basic_map_is_strict_subset(
8188 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8192 if (!bmap1
|| !bmap2
)
8193 return isl_bool_error
;
8194 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8195 if (is_subset
!= isl_bool_true
)
8197 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8198 if (is_subset
== isl_bool_error
)
8203 isl_bool
isl_map_is_strict_subset(__isl_keep isl_map
*map1
,
8204 __isl_keep isl_map
*map2
)
8209 return isl_bool_error
;
8210 is_subset
= isl_map_is_subset(map1
, map2
);
8211 if (is_subset
!= isl_bool_true
)
8213 is_subset
= isl_map_is_subset(map2
, map1
);
8214 if (is_subset
== isl_bool_error
)
8219 isl_bool
isl_set_is_strict_subset(__isl_keep isl_set
*set1
,
8220 __isl_keep isl_set
*set2
)
8222 return isl_map_is_strict_subset(set_to_map(set1
), set_to_map(set2
));
8225 /* Is "bmap" obviously equal to the universe with the same space?
8227 * That is, does it not have any constraints?
8229 isl_bool
isl_basic_map_plain_is_universe(__isl_keep isl_basic_map
*bmap
)
8232 return isl_bool_error
;
8233 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
8236 /* Is "bset" obviously equal to the universe with the same space?
8238 isl_bool
isl_basic_set_plain_is_universe(__isl_keep isl_basic_set
*bset
)
8240 return isl_basic_map_plain_is_universe(bset
);
8243 /* If "c" does not involve any existentially quantified variables,
8244 * then set *univ to false and abort
8246 static isl_stat
involves_divs(__isl_take isl_constraint
*c
, void *user
)
8248 isl_bool
*univ
= user
;
8251 n
= isl_constraint_dim(c
, isl_dim_div
);
8252 *univ
= isl_constraint_involves_dims(c
, isl_dim_div
, 0, n
);
8253 isl_constraint_free(c
);
8254 if (*univ
< 0 || !*univ
)
8255 return isl_stat_error
;
8259 /* Is "bmap" equal to the universe with the same space?
8261 * First check if it is obviously equal to the universe.
8262 * If not and if there are any constraints not involving
8263 * existentially quantified variables, then it is certainly
8264 * not equal to the universe.
8265 * Otherwise, check if the universe is a subset of "bmap".
8267 isl_bool
isl_basic_map_is_universe(__isl_keep isl_basic_map
*bmap
)
8270 isl_basic_map
*test
;
8272 univ
= isl_basic_map_plain_is_universe(bmap
);
8273 if (univ
< 0 || univ
)
8275 if (isl_basic_map_dim(bmap
, isl_dim_div
) == 0)
8276 return isl_bool_false
;
8277 univ
= isl_bool_true
;
8278 if (isl_basic_map_foreach_constraint(bmap
, &involves_divs
, &univ
) < 0 &&
8280 return isl_bool_error
;
8281 if (univ
< 0 || !univ
)
8283 test
= isl_basic_map_universe(isl_basic_map_get_space(bmap
));
8284 univ
= isl_basic_map_is_subset(test
, bmap
);
8285 isl_basic_map_free(test
);
8289 /* Is "bset" equal to the universe with the same space?
8291 isl_bool
isl_basic_set_is_universe(__isl_keep isl_basic_set
*bset
)
8293 return isl_basic_map_is_universe(bset
);
8296 isl_bool
isl_map_plain_is_universe(__isl_keep isl_map
*map
)
8301 return isl_bool_error
;
8303 for (i
= 0; i
< map
->n
; ++i
) {
8304 isl_bool r
= isl_basic_map_plain_is_universe(map
->p
[i
]);
8309 return isl_bool_false
;
8312 isl_bool
isl_set_plain_is_universe(__isl_keep isl_set
*set
)
8314 return isl_map_plain_is_universe(set_to_map(set
));
8317 isl_bool
isl_basic_map_is_empty(__isl_keep isl_basic_map
*bmap
)
8319 struct isl_basic_set
*bset
= NULL
;
8320 struct isl_vec
*sample
= NULL
;
8321 isl_bool empty
, non_empty
;
8324 return isl_bool_error
;
8326 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
8327 return isl_bool_true
;
8329 if (isl_basic_map_plain_is_universe(bmap
))
8330 return isl_bool_false
;
8332 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
8333 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
8334 copy
= isl_basic_map_remove_redundancies(copy
);
8335 empty
= isl_basic_map_plain_is_empty(copy
);
8336 isl_basic_map_free(copy
);
8340 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
8342 return isl_bool_error
;
8344 return isl_bool_false
;
8345 isl_vec_free(bmap
->sample
);
8346 bmap
->sample
= NULL
;
8347 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
8349 return isl_bool_error
;
8350 sample
= isl_basic_set_sample_vec(bset
);
8352 return isl_bool_error
;
8353 empty
= sample
->size
== 0;
8354 isl_vec_free(bmap
->sample
);
8355 bmap
->sample
= sample
;
8357 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
8362 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
8365 return isl_bool_error
;
8366 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
8369 isl_bool
isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
8372 return isl_bool_error
;
8373 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
8376 /* Is "bmap" known to be non-empty?
8378 * That is, is the cached sample still valid?
8380 isl_bool
isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map
*bmap
)
8385 return isl_bool_error
;
8387 return isl_bool_false
;
8388 total
= 1 + isl_basic_map_total_dim(bmap
);
8389 if (bmap
->sample
->size
!= total
)
8390 return isl_bool_false
;
8391 return isl_basic_map_contains(bmap
, bmap
->sample
);
8394 isl_bool
isl_basic_set_is_empty(__isl_keep isl_basic_set
*bset
)
8396 return isl_basic_map_is_empty(bset_to_bmap(bset
));
8399 struct isl_map
*isl_basic_map_union(
8400 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8402 struct isl_map
*map
;
8403 if (!bmap1
|| !bmap2
)
8406 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
8408 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
8411 map
= isl_map_add_basic_map(map
, bmap1
);
8412 map
= isl_map_add_basic_map(map
, bmap2
);
8415 isl_basic_map_free(bmap1
);
8416 isl_basic_map_free(bmap2
);
8420 struct isl_set
*isl_basic_set_union(
8421 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
8423 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1
),
8424 bset_to_bmap(bset2
)));
8427 /* Order divs such that any div only depends on previous divs */
8428 struct isl_basic_map
*isl_basic_map_order_divs(struct isl_basic_map
*bmap
)
8436 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8438 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8440 if (isl_int_is_zero(bmap
->div
[i
][0]))
8442 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8447 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_internal
,
8448 "integer division depends on itself",
8449 return isl_basic_map_free(bmap
));
8450 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8456 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8458 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset
)));
8461 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8468 for (i
= 0; i
< map
->n
; ++i
) {
8469 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8480 /* Sort the local variables of "bset".
8482 __isl_give isl_basic_set
*isl_basic_set_sort_divs(
8483 __isl_take isl_basic_set
*bset
)
8485 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset
)));
8488 /* Apply the expansion computed by isl_merge_divs.
8489 * The expansion itself is given by "exp" while the resulting
8490 * list of divs is given by "div".
8492 * Move the integer divisions of "bmap" into the right position
8493 * according to "exp" and then introduce the additional integer
8494 * divisions, adding div constraints.
8495 * The moving should be done first to avoid moving coefficients
8496 * in the definitions of the extra integer divisions.
8498 __isl_give isl_basic_map
*isl_basic_map_expand_divs(
8499 __isl_take isl_basic_map
*bmap
, __isl_take isl_mat
*div
, int *exp
)
8504 bmap
= isl_basic_map_cow(bmap
);
8508 if (div
->n_row
< bmap
->n_div
)
8509 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8510 "not an expansion", goto error
);
8512 n_div
= bmap
->n_div
;
8513 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
8514 div
->n_row
- n_div
, 0,
8515 2 * (div
->n_row
- n_div
));
8517 for (i
= n_div
; i
< div
->n_row
; ++i
)
8518 if (isl_basic_map_alloc_div(bmap
) < 0)
8521 for (j
= n_div
- 1; j
>= 0; --j
) {
8524 isl_basic_map_swap_div(bmap
, j
, exp
[j
]);
8527 for (i
= 0; i
< div
->n_row
; ++i
) {
8528 if (j
< n_div
&& exp
[j
] == i
) {
8531 isl_seq_cpy(bmap
->div
[i
], div
->row
[i
], div
->n_col
);
8532 if (isl_basic_map_div_is_marked_unknown(bmap
, i
))
8534 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
8542 isl_basic_map_free(bmap
);
8547 /* Apply the expansion computed by isl_merge_divs.
8548 * The expansion itself is given by "exp" while the resulting
8549 * list of divs is given by "div".
8551 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8552 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8554 return isl_basic_map_expand_divs(bset
, div
, exp
);
8557 /* Look for a div in dst that corresponds to the div "div" in src.
8558 * The divs before "div" in src and dst are assumed to be the same.
8560 * Returns -1 if no corresponding div was found and the position
8561 * of the corresponding div in dst otherwise.
8563 static int find_div(struct isl_basic_map
*dst
,
8564 struct isl_basic_map
*src
, unsigned div
)
8568 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8570 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8571 for (i
= div
; i
< dst
->n_div
; ++i
)
8572 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8573 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8574 dst
->n_div
- div
) == -1)
8579 /* Align the divs of "dst" to those of "src", adding divs from "src"
8580 * if needed. That is, make sure that the first src->n_div divs
8581 * of the result are equal to those of src.
8583 * The result is not finalized as by design it will have redundant
8584 * divs if any divs from "src" were copied.
8586 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8587 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8590 int known
, extended
;
8594 return isl_basic_map_free(dst
);
8596 if (src
->n_div
== 0)
8599 known
= isl_basic_map_divs_known(src
);
8601 return isl_basic_map_free(dst
);
8603 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
8604 "some src divs are unknown",
8605 return isl_basic_map_free(dst
));
8607 src
= isl_basic_map_order_divs(src
);
8610 total
= isl_space_dim(src
->dim
, isl_dim_all
);
8611 for (i
= 0; i
< src
->n_div
; ++i
) {
8612 int j
= find_div(dst
, src
, i
);
8615 int extra
= src
->n_div
- i
;
8616 dst
= isl_basic_map_cow(dst
);
8619 dst
= isl_basic_map_extend_space(dst
,
8620 isl_space_copy(dst
->dim
),
8621 extra
, 0, 2 * extra
);
8624 j
= isl_basic_map_alloc_div(dst
);
8626 return isl_basic_map_free(dst
);
8627 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
8628 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
8629 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
8630 return isl_basic_map_free(dst
);
8633 isl_basic_map_swap_div(dst
, i
, j
);
8638 struct isl_basic_set
*isl_basic_set_align_divs(
8639 struct isl_basic_set
*dst
, struct isl_basic_set
*src
)
8641 return bset_from_bmap(isl_basic_map_align_divs(bset_to_bmap(dst
),
8642 bset_to_bmap(src
)));
8645 struct isl_map
*isl_map_align_divs(struct isl_map
*map
)
8653 map
= isl_map_compute_divs(map
);
8654 map
= isl_map_cow(map
);
8658 for (i
= 1; i
< map
->n
; ++i
)
8659 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
8660 for (i
= 1; i
< map
->n
; ++i
) {
8661 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
8663 return isl_map_free(map
);
8666 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8670 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
8672 return set_from_map(isl_map_align_divs(set_to_map(set
)));
8675 /* Align the divs of the basic maps in "map" to those
8676 * of the basic maps in "list", as well as to the other basic maps in "map".
8677 * The elements in "list" are assumed to have known divs.
8679 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
8680 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
8684 map
= isl_map_compute_divs(map
);
8685 map
= isl_map_cow(map
);
8687 return isl_map_free(map
);
8691 n
= isl_basic_map_list_n_basic_map(list
);
8692 for (i
= 0; i
< n
; ++i
) {
8693 isl_basic_map
*bmap
;
8695 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
8696 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
8697 isl_basic_map_free(bmap
);
8700 return isl_map_free(map
);
8702 return isl_map_align_divs(map
);
8705 /* Align the divs of each element of "list" to those of "bmap".
8706 * Both "bmap" and the elements of "list" are assumed to have known divs.
8708 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
8709 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
8714 return isl_basic_map_list_free(list
);
8716 n
= isl_basic_map_list_n_basic_map(list
);
8717 for (i
= 0; i
< n
; ++i
) {
8718 isl_basic_map
*bmap_i
;
8720 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
8721 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
8722 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
8728 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
8729 __isl_take isl_map
*map
)
8733 ok
= isl_map_compatible_domain(map
, set
);
8737 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
8738 "incompatible spaces", goto error
);
8739 map
= isl_map_intersect_domain(map
, set
);
8740 set
= isl_map_range(map
);
8748 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
8749 __isl_take isl_map
*map
)
8751 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
8754 /* There is no need to cow as removing empty parts doesn't change
8755 * the meaning of the set.
8757 struct isl_map
*isl_map_remove_empty_parts(struct isl_map
*map
)
8764 for (i
= map
->n
- 1; i
>= 0; --i
)
8765 remove_if_empty(map
, i
);
8770 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
8772 return set_from_map(isl_map_remove_empty_parts(set_to_map(set
)));
8775 static __isl_give isl_basic_map
*map_copy_basic_map(__isl_keep isl_map
*map
)
8777 struct isl_basic_map
*bmap
;
8778 if (!map
|| map
->n
== 0)
8780 bmap
= map
->p
[map
->n
-1];
8781 isl_assert(map
->ctx
, ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
), return NULL
);
8782 return isl_basic_map_copy(bmap
);
8785 __isl_give isl_basic_map
*isl_map_copy_basic_map(__isl_keep isl_map
*map
)
8787 return map_copy_basic_map(map
);
8790 struct isl_basic_set
*isl_set_copy_basic_set(struct isl_set
*set
)
8792 return bset_from_bmap(map_copy_basic_map(set_to_map(set
)));
8795 static __isl_give isl_map
*map_drop_basic_map(__isl_take isl_map
*map
,
8796 __isl_keep isl_basic_map
*bmap
)
8802 for (i
= map
->n
-1; i
>= 0; --i
) {
8803 if (map
->p
[i
] != bmap
)
8805 map
= isl_map_cow(map
);
8808 isl_basic_map_free(map
->p
[i
]);
8809 if (i
!= map
->n
-1) {
8810 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
8811 map
->p
[i
] = map
->p
[map
->n
-1];
8822 __isl_give isl_map
*isl_map_drop_basic_map(__isl_take isl_map
*map
,
8823 __isl_keep isl_basic_map
*bmap
)
8825 return map_drop_basic_map(map
, bmap
);
8828 struct isl_set
*isl_set_drop_basic_set(struct isl_set
*set
,
8829 struct isl_basic_set
*bset
)
8831 return set_from_map(map_drop_basic_map(set_to_map(set
),
8832 bset_to_bmap(bset
)));
8835 /* Given two basic sets bset1 and bset2, compute the maximal difference
8836 * between the values of dimension pos in bset1 and those in bset2
8837 * for any common value of the parameters and dimensions preceding pos.
8839 static enum isl_lp_result
basic_set_maximal_difference_at(
8840 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
8841 int pos
, isl_int
*opt
)
8843 isl_basic_map
*bmap1
;
8844 isl_basic_map
*bmap2
;
8845 struct isl_ctx
*ctx
;
8846 struct isl_vec
*obj
;
8850 enum isl_lp_result res
;
8852 if (!bset1
|| !bset2
)
8853 return isl_lp_error
;
8855 nparam
= isl_basic_set_n_param(bset1
);
8856 dim1
= isl_basic_set_n_dim(bset1
);
8858 bmap1
= isl_basic_map_from_range(isl_basic_set_copy(bset1
));
8859 bmap2
= isl_basic_map_from_range(isl_basic_set_copy(bset2
));
8860 bmap1
= isl_basic_map_move_dims(bmap1
, isl_dim_in
, 0,
8861 isl_dim_out
, 0, pos
);
8862 bmap2
= isl_basic_map_move_dims(bmap2
, isl_dim_in
, 0,
8863 isl_dim_out
, 0, pos
);
8864 bmap1
= isl_basic_map_range_product(bmap1
, bmap2
);
8866 return isl_lp_error
;
8868 total
= isl_basic_map_total_dim(bmap1
);
8870 obj
= isl_vec_alloc(ctx
, 1 + total
);
8873 isl_seq_clr(obj
->block
.data
, 1 + total
);
8874 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
8875 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
8876 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
8878 isl_basic_map_free(bmap1
);
8882 isl_basic_map_free(bmap1
);
8883 return isl_lp_error
;
8886 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
8887 * for any common value of the parameters and dimensions preceding pos
8888 * in both basic sets, the values of dimension pos in bset1 are
8889 * smaller or larger than those in bset2.
8892 * 1 if bset1 follows bset2
8893 * -1 if bset1 precedes bset2
8894 * 0 if bset1 and bset2 are incomparable
8895 * -2 if some error occurred.
8897 int isl_basic_set_compare_at(struct isl_basic_set
*bset1
,
8898 struct isl_basic_set
*bset2
, int pos
)
8901 enum isl_lp_result res
;
8906 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8908 if (res
== isl_lp_empty
)
8910 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8911 res
== isl_lp_unbounded
)
8913 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8922 /* Given two basic sets bset1 and bset2, check whether
8923 * for any common value of the parameters and dimensions preceding pos
8924 * there is a value of dimension pos in bset1 that is larger
8925 * than a value of the same dimension in bset2.
8928 * 1 if there exists such a pair
8929 * 0 if there is no such pair, but there is a pair of equal values
8931 * -2 if some error occurred.
8933 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
8934 __isl_keep isl_basic_set
*bset2
, int pos
)
8937 enum isl_lp_result res
;
8942 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
8944 if (res
== isl_lp_empty
)
8946 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
8947 res
== isl_lp_unbounded
)
8949 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
8951 else if (res
== isl_lp_ok
)
8960 /* Given two sets set1 and set2, check whether
8961 * for any common value of the parameters and dimensions preceding pos
8962 * there is a value of dimension pos in set1 that is larger
8963 * than a value of the same dimension in set2.
8966 * 1 if there exists such a pair
8967 * 0 if there is no such pair, but there is a pair of equal values
8969 * -2 if some error occurred.
8971 int isl_set_follows_at(__isl_keep isl_set
*set1
,
8972 __isl_keep isl_set
*set2
, int pos
)
8980 for (i
= 0; i
< set1
->n
; ++i
)
8981 for (j
= 0; j
< set2
->n
; ++j
) {
8983 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
8984 if (f
== 1 || f
== -2)
8993 static isl_bool
isl_basic_map_plain_has_fixed_var(
8994 __isl_keep isl_basic_map
*bmap
, unsigned pos
, isl_int
*val
)
9001 return isl_bool_error
;
9002 total
= isl_basic_map_total_dim(bmap
);
9003 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
9004 for (; d
+1 > pos
; --d
)
9005 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
9009 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
9010 return isl_bool_false
;
9011 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
9012 return isl_bool_false
;
9013 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
9014 return isl_bool_false
;
9016 isl_int_neg(*val
, bmap
->eq
[i
][0]);
9017 return isl_bool_true
;
9019 return isl_bool_false
;
9022 static isl_bool
isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
9023 unsigned pos
, isl_int
*val
)
9031 return isl_bool_error
;
9033 return isl_bool_false
;
9035 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
9038 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
9039 for (i
= 1; fixed
== isl_bool_true
&& i
< map
->n
; ++i
) {
9040 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
9041 if (fixed
== isl_bool_true
&& isl_int_ne(tmp
, v
))
9042 fixed
= isl_bool_false
;
9045 isl_int_set(*val
, v
);
9051 static isl_bool
isl_basic_set_plain_has_fixed_var(
9052 __isl_keep isl_basic_set
*bset
, unsigned pos
, isl_int
*val
)
9054 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset
),
9058 static int isl_set_plain_has_fixed_var(__isl_keep isl_set
*set
, unsigned pos
,
9061 return isl_map_plain_has_fixed_var(set_to_map(set
), pos
, val
);
9064 isl_bool
isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
9065 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9067 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
9068 return isl_bool_error
;
9069 return isl_basic_map_plain_has_fixed_var(bmap
,
9070 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
9073 /* If "bmap" obviously lies on a hyperplane where the given dimension
9074 * has a fixed value, then return that value.
9075 * Otherwise return NaN.
9077 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
9078 __isl_keep isl_basic_map
*bmap
,
9079 enum isl_dim_type type
, unsigned pos
)
9087 ctx
= isl_basic_map_get_ctx(bmap
);
9088 v
= isl_val_alloc(ctx
);
9091 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
9093 return isl_val_free(v
);
9095 isl_int_set_si(v
->d
, 1);
9099 return isl_val_nan(ctx
);
9102 isl_bool
isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
9103 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9105 if (pos
>= isl_map_dim(map
, type
))
9106 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9107 "position out of bounds", return isl_bool_error
);
9108 return isl_map_plain_has_fixed_var(map
,
9109 map_offset(map
, type
) - 1 + pos
, val
);
9112 /* If "map" obviously lies on a hyperplane where the given dimension
9113 * has a fixed value, then return that value.
9114 * Otherwise return NaN.
9116 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
9117 enum isl_dim_type type
, unsigned pos
)
9125 ctx
= isl_map_get_ctx(map
);
9126 v
= isl_val_alloc(ctx
);
9129 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
9131 return isl_val_free(v
);
9133 isl_int_set_si(v
->d
, 1);
9137 return isl_val_nan(ctx
);
9140 /* If "set" obviously lies on a hyperplane where the given dimension
9141 * has a fixed value, then return that value.
9142 * Otherwise return NaN.
9144 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
9145 enum isl_dim_type type
, unsigned pos
)
9147 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
9150 isl_bool
isl_set_plain_is_fixed(__isl_keep isl_set
*set
,
9151 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9153 return isl_map_plain_is_fixed(set
, type
, pos
, val
);
9156 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9157 * then return this fixed value in *val.
9159 isl_bool
isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
9160 unsigned dim
, isl_int
*val
)
9162 return isl_basic_set_plain_has_fixed_var(bset
,
9163 isl_basic_set_n_param(bset
) + dim
, val
);
9166 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9167 * then return this fixed value in *val.
9169 int isl_set_plain_dim_is_fixed(__isl_keep isl_set
*set
,
9170 unsigned dim
, isl_int
*val
)
9172 return isl_set_plain_has_fixed_var(set
, isl_set_n_param(set
) + dim
, val
);
9175 /* Check if input variable in has fixed value and if so and if val is not NULL,
9176 * then return this fixed value in *val.
9178 int isl_map_plain_input_is_fixed(__isl_keep isl_map
*map
,
9179 unsigned in
, isl_int
*val
)
9181 return isl_map_plain_has_fixed_var(map
, isl_map_n_param(map
) + in
, val
);
9184 /* Check if dimension dim has an (obvious) fixed lower bound and if so
9185 * and if val is not NULL, then return this lower bound in *val.
9187 int isl_basic_set_plain_dim_has_fixed_lower_bound(
9188 __isl_keep isl_basic_set
*bset
, unsigned dim
, isl_int
*val
)
9190 int i
, i_eq
= -1, i_ineq
= -1;
9197 total
= isl_basic_set_total_dim(bset
);
9198 nparam
= isl_basic_set_n_param(bset
);
9199 for (i
= 0; i
< bset
->n_eq
; ++i
) {
9200 if (isl_int_is_zero(bset
->eq
[i
][1+nparam
+dim
]))
9206 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
9207 if (!isl_int_is_pos(bset
->ineq
[i
][1+nparam
+dim
]))
9209 if (i_eq
!= -1 || i_ineq
!= -1)
9213 if (i_eq
== -1 && i_ineq
== -1)
9215 c
= i_eq
!= -1 ? bset
->eq
[i_eq
] : bset
->ineq
[i_ineq
];
9216 /* The coefficient should always be one due to normalization. */
9217 if (!isl_int_is_one(c
[1+nparam
+dim
]))
9219 if (isl_seq_first_non_zero(c
+1, nparam
+dim
) != -1)
9221 if (isl_seq_first_non_zero(c
+1+nparam
+dim
+1,
9222 total
- nparam
- dim
- 1) != -1)
9225 isl_int_neg(*val
, c
[0]);
9229 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set
*set
,
9230 unsigned dim
, isl_int
*val
)
9242 return isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
9246 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[0],
9248 for (i
= 1; fixed
== 1 && i
< set
->n
; ++i
) {
9249 fixed
= isl_basic_set_plain_dim_has_fixed_lower_bound(set
->p
[i
],
9251 if (fixed
== 1 && isl_int_ne(tmp
, v
))
9255 isl_int_set(*val
, v
);
9261 /* Return -1 if the constraint "c1" should be sorted before "c2"
9262 * and 1 if it should be sorted after "c2".
9263 * Return 0 if the two constraints are the same (up to the constant term).
9265 * In particular, if a constraint involves later variables than another
9266 * then it is sorted after this other constraint.
9267 * uset_gist depends on constraints without existentially quantified
9268 * variables sorting first.
9270 * For constraints that have the same latest variable, those
9271 * with the same coefficient for this latest variable (first in absolute value
9272 * and then in actual value) are grouped together.
9273 * This is useful for detecting pairs of constraints that can
9274 * be chained in their printed representation.
9276 * Finally, within a group, constraints are sorted according to
9277 * their coefficients (excluding the constant term).
9279 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
9281 isl_int
**c1
= (isl_int
**) p1
;
9282 isl_int
**c2
= (isl_int
**) p2
;
9284 unsigned size
= *(unsigned *) arg
;
9287 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
9288 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
9293 cmp
= isl_int_abs_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9296 cmp
= isl_int_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9300 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
9303 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9304 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9305 * and 0 if the two constraints are the same (up to the constant term).
9307 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map
*bmap
,
9308 isl_int
*c1
, isl_int
*c2
)
9314 total
= isl_basic_map_total_dim(bmap
);
9315 return sort_constraint_cmp(&c1
, &c2
, &total
);
9318 __isl_give isl_basic_map
*isl_basic_map_sort_constraints(
9319 __isl_take isl_basic_map
*bmap
)
9325 if (bmap
->n_ineq
== 0)
9327 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9329 total
= isl_basic_map_total_dim(bmap
);
9330 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
9331 &sort_constraint_cmp
, &total
) < 0)
9332 return isl_basic_map_free(bmap
);
9336 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
9337 __isl_take isl_basic_set
*bset
)
9339 isl_basic_map
*bmap
= bset_to_bmap(bset
);
9340 return bset_from_bmap(isl_basic_map_sort_constraints(bmap
));
9343 struct isl_basic_map
*isl_basic_map_normalize(struct isl_basic_map
*bmap
)
9347 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9349 bmap
= isl_basic_map_remove_redundancies(bmap
);
9350 bmap
= isl_basic_map_sort_constraints(bmap
);
9352 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED
);
9356 struct isl_basic_set
*isl_basic_set_normalize(struct isl_basic_set
*bset
)
9358 return bset_from_bmap(isl_basic_map_normalize(bset_to_bmap(bset
)));
9361 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map
*bmap1
,
9362 const __isl_keep isl_basic_map
*bmap2
)
9367 if (!bmap1
|| !bmap2
)
9372 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
9373 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
9374 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
9375 if (isl_basic_map_n_param(bmap1
) != isl_basic_map_n_param(bmap2
))
9376 return isl_basic_map_n_param(bmap1
) - isl_basic_map_n_param(bmap2
);
9377 if (isl_basic_map_n_in(bmap1
) != isl_basic_map_n_in(bmap2
))
9378 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9379 if (isl_basic_map_n_out(bmap1
) != isl_basic_map_n_out(bmap2
))
9380 return isl_basic_map_n_out(bmap1
) - isl_basic_map_n_out(bmap2
);
9381 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
9382 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9384 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
9386 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9388 if (bmap1
->n_eq
!= bmap2
->n_eq
)
9389 return bmap1
->n_eq
- bmap2
->n_eq
;
9390 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
9391 return bmap1
->n_ineq
- bmap2
->n_ineq
;
9392 if (bmap1
->n_div
!= bmap2
->n_div
)
9393 return bmap1
->n_div
- bmap2
->n_div
;
9394 total
= isl_basic_map_total_dim(bmap1
);
9395 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
9396 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
9400 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
9401 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
9405 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
9406 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
9413 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set
*bset1
,
9414 const __isl_keep isl_basic_set
*bset2
)
9416 return isl_basic_map_plain_cmp(bset1
, bset2
);
9419 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9425 if (set1
->n
!= set2
->n
)
9426 return set1
->n
- set2
->n
;
9428 for (i
= 0; i
< set1
->n
; ++i
) {
9429 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
9437 isl_bool
isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
9438 __isl_keep isl_basic_map
*bmap2
)
9440 if (!bmap1
|| !bmap2
)
9441 return isl_bool_error
;
9442 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
9445 isl_bool
isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
9446 __isl_keep isl_basic_set
*bset2
)
9448 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1
),
9449 bset_to_bmap(bset2
));
9452 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
9454 const struct isl_basic_map
*bmap1
= *(const struct isl_basic_map
**)p1
;
9455 const struct isl_basic_map
*bmap2
= *(const struct isl_basic_map
**)p2
;
9457 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
9460 /* Sort the basic maps of "map" and remove duplicate basic maps.
9462 * While removing basic maps, we make sure that the basic maps remain
9463 * sorted because isl_map_normalize expects the basic maps of the result
9466 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
9470 map
= isl_map_remove_empty_parts(map
);
9473 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
9474 for (i
= map
->n
- 1; i
>= 1; --i
) {
9475 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
9477 isl_basic_map_free(map
->p
[i
-1]);
9478 for (j
= i
; j
< map
->n
; ++j
)
9479 map
->p
[j
- 1] = map
->p
[j
];
9486 /* Remove obvious duplicates among the basic maps of "map".
9488 * Unlike isl_map_normalize, this function does not remove redundant
9489 * constraints and only removes duplicates that have exactly the same
9490 * constraints in the input. It does sort the constraints and
9491 * the basic maps to ease the detection of duplicates.
9493 * If "map" has already been normalized or if the basic maps are
9494 * disjoint, then there can be no duplicates.
9496 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
9499 isl_basic_map
*bmap
;
9505 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
9507 for (i
= 0; i
< map
->n
; ++i
) {
9508 bmap
= isl_basic_map_copy(map
->p
[i
]);
9509 bmap
= isl_basic_map_sort_constraints(bmap
);
9511 return isl_map_free(map
);
9512 isl_basic_map_free(map
->p
[i
]);
9516 map
= sort_and_remove_duplicates(map
);
9520 /* We normalize in place, but if anything goes wrong we need
9521 * to return NULL, so we need to make sure we don't change the
9522 * meaning of any possible other copies of map.
9524 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9527 struct isl_basic_map
*bmap
;
9531 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9533 for (i
= 0; i
< map
->n
; ++i
) {
9534 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9537 isl_basic_map_free(map
->p
[i
]);
9541 map
= sort_and_remove_duplicates(map
);
9543 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9550 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9552 return set_from_map(isl_map_normalize(set_to_map(set
)));
9555 isl_bool
isl_map_plain_is_equal(__isl_keep isl_map
*map1
,
9556 __isl_keep isl_map
*map2
)
9562 return isl_bool_error
;
9565 return isl_bool_true
;
9566 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9567 return isl_bool_false
;
9569 map1
= isl_map_copy(map1
);
9570 map2
= isl_map_copy(map2
);
9571 map1
= isl_map_normalize(map1
);
9572 map2
= isl_map_normalize(map2
);
9575 equal
= map1
->n
== map2
->n
;
9576 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9577 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9587 return isl_bool_error
;
9590 isl_bool
isl_set_plain_is_equal(__isl_keep isl_set
*set1
,
9591 __isl_keep isl_set
*set2
)
9593 return isl_map_plain_is_equal(set_to_map(set1
), set_to_map(set2
));
9596 /* Return an interval that ranges from min to max (inclusive)
9598 struct isl_basic_set
*isl_basic_set_interval(struct isl_ctx
*ctx
,
9599 isl_int min
, isl_int max
)
9602 struct isl_basic_set
*bset
= NULL
;
9604 bset
= isl_basic_set_alloc(ctx
, 0, 1, 0, 0, 2);
9608 k
= isl_basic_set_alloc_inequality(bset
);
9611 isl_int_set_si(bset
->ineq
[k
][1], 1);
9612 isl_int_neg(bset
->ineq
[k
][0], min
);
9614 k
= isl_basic_set_alloc_inequality(bset
);
9617 isl_int_set_si(bset
->ineq
[k
][1], -1);
9618 isl_int_set(bset
->ineq
[k
][0], max
);
9622 isl_basic_set_free(bset
);
9626 /* Return the basic maps in "map" as a list.
9628 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9629 __isl_keep isl_map
*map
)
9633 isl_basic_map_list
*list
;
9637 ctx
= isl_map_get_ctx(map
);
9638 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9640 for (i
= 0; i
< map
->n
; ++i
) {
9641 isl_basic_map
*bmap
;
9643 bmap
= isl_basic_map_copy(map
->p
[i
]);
9644 list
= isl_basic_map_list_add(list
, bmap
);
9650 /* Return the intersection of the elements in the non-empty list "list".
9651 * All elements are assumed to live in the same space.
9653 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9654 __isl_take isl_basic_map_list
*list
)
9657 isl_basic_map
*bmap
;
9661 n
= isl_basic_map_list_n_basic_map(list
);
9663 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9664 "expecting non-empty list", goto error
);
9666 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9667 for (i
= 1; i
< n
; ++i
) {
9668 isl_basic_map
*bmap_i
;
9670 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9671 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9674 isl_basic_map_list_free(list
);
9677 isl_basic_map_list_free(list
);
9681 /* Return the intersection of the elements in the non-empty list "list".
9682 * All elements are assumed to live in the same space.
9684 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9685 __isl_take isl_basic_set_list
*list
)
9687 return isl_basic_map_list_intersect(list
);
9690 /* Return the union of the elements of "list".
9691 * The list is required to have at least one element.
9693 __isl_give isl_set
*isl_basic_set_list_union(
9694 __isl_take isl_basic_set_list
*list
)
9698 isl_basic_set
*bset
;
9703 n
= isl_basic_set_list_n_basic_set(list
);
9705 isl_die(isl_basic_set_list_get_ctx(list
), isl_error_invalid
,
9706 "expecting non-empty list", goto error
);
9708 bset
= isl_basic_set_list_get_basic_set(list
, 0);
9709 space
= isl_basic_set_get_space(bset
);
9710 isl_basic_set_free(bset
);
9712 set
= isl_set_alloc_space(space
, n
, 0);
9713 for (i
= 0; i
< n
; ++i
) {
9714 bset
= isl_basic_set_list_get_basic_set(list
, i
);
9715 set
= isl_set_add_basic_set(set
, bset
);
9718 isl_basic_set_list_free(list
);
9721 isl_basic_set_list_free(list
);
9725 /* Return the union of the elements in the non-empty list "list".
9726 * All elements are assumed to live in the same space.
9728 __isl_give isl_set
*isl_set_list_union(__isl_take isl_set_list
*list
)
9735 n
= isl_set_list_n_set(list
);
9737 isl_die(isl_set_list_get_ctx(list
), isl_error_invalid
,
9738 "expecting non-empty list", goto error
);
9740 set
= isl_set_list_get_set(list
, 0);
9741 for (i
= 1; i
< n
; ++i
) {
9744 set_i
= isl_set_list_get_set(list
, i
);
9745 set
= isl_set_union(set
, set_i
);
9748 isl_set_list_free(list
);
9751 isl_set_list_free(list
);
9755 /* Return the Cartesian product of the basic sets in list (in the given order).
9757 __isl_give isl_basic_set
*isl_basic_set_list_product(
9758 __isl_take
struct isl_basic_set_list
*list
)
9766 struct isl_basic_set
*product
= NULL
;
9770 isl_assert(list
->ctx
, list
->n
> 0, goto error
);
9771 isl_assert(list
->ctx
, list
->p
[0], goto error
);
9772 nparam
= isl_basic_set_n_param(list
->p
[0]);
9773 dim
= isl_basic_set_n_dim(list
->p
[0]);
9774 extra
= list
->p
[0]->n_div
;
9775 n_eq
= list
->p
[0]->n_eq
;
9776 n_ineq
= list
->p
[0]->n_ineq
;
9777 for (i
= 1; i
< list
->n
; ++i
) {
9778 isl_assert(list
->ctx
, list
->p
[i
], goto error
);
9779 isl_assert(list
->ctx
,
9780 nparam
== isl_basic_set_n_param(list
->p
[i
]), goto error
);
9781 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9782 extra
+= list
->p
[i
]->n_div
;
9783 n_eq
+= list
->p
[i
]->n_eq
;
9784 n_ineq
+= list
->p
[i
]->n_ineq
;
9786 product
= isl_basic_set_alloc(list
->ctx
, nparam
, dim
, extra
,
9791 for (i
= 0; i
< list
->n
; ++i
) {
9792 isl_basic_set_add_constraints(product
,
9793 isl_basic_set_copy(list
->p
[i
]), dim
);
9794 dim
+= isl_basic_set_n_dim(list
->p
[i
]);
9796 isl_basic_set_list_free(list
);
9799 isl_basic_set_free(product
);
9800 isl_basic_set_list_free(list
);
9804 struct isl_basic_map
*isl_basic_map_product(
9805 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
9807 isl_space
*dim_result
= NULL
;
9808 struct isl_basic_map
*bmap
;
9809 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9810 struct isl_dim_map
*dim_map1
, *dim_map2
;
9812 if (!bmap1
|| !bmap2
)
9815 isl_assert(bmap1
->ctx
, isl_space_match(bmap1
->dim
, isl_dim_param
,
9816 bmap2
->dim
, isl_dim_param
), goto error
);
9817 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9818 isl_space_copy(bmap2
->dim
));
9820 in1
= isl_basic_map_n_in(bmap1
);
9821 in2
= isl_basic_map_n_in(bmap2
);
9822 out1
= isl_basic_map_n_out(bmap1
);
9823 out2
= isl_basic_map_n_out(bmap2
);
9824 nparam
= isl_basic_map_n_param(bmap1
);
9826 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9827 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9828 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9829 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9830 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9831 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9832 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9833 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9834 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9835 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9836 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9838 bmap
= isl_basic_map_alloc_space(dim_result
,
9839 bmap1
->n_div
+ bmap2
->n_div
,
9840 bmap1
->n_eq
+ bmap2
->n_eq
,
9841 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9842 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9843 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9844 bmap
= isl_basic_map_simplify(bmap
);
9845 return isl_basic_map_finalize(bmap
);
9847 isl_basic_map_free(bmap1
);
9848 isl_basic_map_free(bmap2
);
9852 __isl_give isl_basic_map
*isl_basic_map_flat_product(
9853 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9855 isl_basic_map
*prod
;
9857 prod
= isl_basic_map_product(bmap1
, bmap2
);
9858 prod
= isl_basic_map_flatten(prod
);
9862 __isl_give isl_basic_set
*isl_basic_set_flat_product(
9863 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
9865 return isl_basic_map_flat_range_product(bset1
, bset2
);
9868 __isl_give isl_basic_map
*isl_basic_map_domain_product(
9869 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9871 isl_space
*space_result
= NULL
;
9872 isl_basic_map
*bmap
;
9873 unsigned in1
, in2
, out
, nparam
, total
, pos
;
9874 struct isl_dim_map
*dim_map1
, *dim_map2
;
9876 if (!bmap1
|| !bmap2
)
9879 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
9880 isl_space_copy(bmap2
->dim
));
9882 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9883 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9884 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9885 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9887 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
9888 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9889 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9890 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9891 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9892 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9893 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9894 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9895 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
9896 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
9897 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9899 bmap
= isl_basic_map_alloc_space(space_result
,
9900 bmap1
->n_div
+ bmap2
->n_div
,
9901 bmap1
->n_eq
+ bmap2
->n_eq
,
9902 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9903 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9904 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9905 bmap
= isl_basic_map_simplify(bmap
);
9906 return isl_basic_map_finalize(bmap
);
9908 isl_basic_map_free(bmap1
);
9909 isl_basic_map_free(bmap2
);
9913 __isl_give isl_basic_map
*isl_basic_map_range_product(
9914 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9917 isl_space
*dim_result
= NULL
;
9918 isl_basic_map
*bmap
;
9919 unsigned in
, out1
, out2
, nparam
, total
, pos
;
9920 struct isl_dim_map
*dim_map1
, *dim_map2
;
9922 rational
= isl_basic_map_is_rational(bmap1
);
9923 if (rational
>= 0 && rational
)
9924 rational
= isl_basic_map_is_rational(bmap2
);
9925 if (!bmap1
|| !bmap2
|| rational
< 0)
9928 if (!isl_space_match(bmap1
->dim
, isl_dim_param
,
9929 bmap2
->dim
, isl_dim_param
))
9930 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
9931 "parameters don't match", goto error
);
9933 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
9934 isl_space_copy(bmap2
->dim
));
9936 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9937 out1
= isl_basic_map_n_out(bmap1
);
9938 out2
= isl_basic_map_n_out(bmap2
);
9939 nparam
= isl_basic_map_n_param(bmap1
);
9941 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9942 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9943 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9944 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9945 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9946 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9947 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
9948 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
9949 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9950 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9951 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9953 bmap
= isl_basic_map_alloc_space(dim_result
,
9954 bmap1
->n_div
+ bmap2
->n_div
,
9955 bmap1
->n_eq
+ bmap2
->n_eq
,
9956 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9957 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9958 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9960 bmap
= isl_basic_map_set_rational(bmap
);
9961 bmap
= isl_basic_map_simplify(bmap
);
9962 return isl_basic_map_finalize(bmap
);
9964 isl_basic_map_free(bmap1
);
9965 isl_basic_map_free(bmap2
);
9969 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
9970 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9972 isl_basic_map
*prod
;
9974 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
9975 prod
= isl_basic_map_flatten_range(prod
);
9979 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9980 * and collect the results.
9981 * The result live in the space obtained by calling "space_product"
9982 * on the spaces of "map1" and "map2".
9983 * If "remove_duplicates" is set then the result may contain duplicates
9984 * (even if the inputs do not) and so we try and remove the obvious
9987 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
9988 __isl_take isl_map
*map2
,
9989 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
9990 __isl_take isl_space
*right
),
9991 __isl_give isl_basic_map
*(*basic_map_product
)(
9992 __isl_take isl_basic_map
*left
,
9993 __isl_take isl_basic_map
*right
),
9994 int remove_duplicates
)
9997 struct isl_map
*result
;
10000 if (!map1
|| !map2
)
10003 isl_assert(map1
->ctx
, isl_space_match(map1
->dim
, isl_dim_param
,
10004 map2
->dim
, isl_dim_param
), goto error
);
10006 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
10007 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
10008 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
10010 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
10011 isl_space_copy(map2
->dim
)),
10012 map1
->n
* map2
->n
, flags
);
10015 for (i
= 0; i
< map1
->n
; ++i
)
10016 for (j
= 0; j
< map2
->n
; ++j
) {
10017 struct isl_basic_map
*part
;
10018 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
10019 isl_basic_map_copy(map2
->p
[j
]));
10020 if (isl_basic_map_is_empty(part
))
10021 isl_basic_map_free(part
);
10023 result
= isl_map_add_basic_map(result
, part
);
10027 if (remove_duplicates
)
10028 result
= isl_map_remove_obvious_duplicates(result
);
10029 isl_map_free(map1
);
10030 isl_map_free(map2
);
10033 isl_map_free(map1
);
10034 isl_map_free(map2
);
10038 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10040 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
10041 __isl_take isl_map
*map2
)
10043 return map_product(map1
, map2
, &isl_space_product
,
10044 &isl_basic_map_product
, 0);
10047 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
10048 __isl_take isl_map
*map2
)
10050 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
10053 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10055 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
10056 __isl_take isl_map
*map2
)
10060 prod
= isl_map_product(map1
, map2
);
10061 prod
= isl_map_flatten(prod
);
10065 /* Given two set A and B, construct its Cartesian product A x B.
10067 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
10069 return isl_map_range_product(set1
, set2
);
10072 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
10073 __isl_take isl_set
*set2
)
10075 return isl_map_flat_range_product(set1
, set2
);
10078 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10080 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
10081 __isl_take isl_map
*map2
)
10083 return map_product(map1
, map2
, &isl_space_domain_product
,
10084 &isl_basic_map_domain_product
, 1);
10087 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10089 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
10090 __isl_take isl_map
*map2
)
10092 return map_product(map1
, map2
, &isl_space_range_product
,
10093 &isl_basic_map_range_product
, 1);
10096 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
10097 __isl_take isl_map
*map2
)
10099 return isl_map_align_params_map_map_and(map1
, map2
,
10100 &map_domain_product_aligned
);
10103 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
10104 __isl_take isl_map
*map2
)
10106 return isl_map_align_params_map_map_and(map1
, map2
,
10107 &map_range_product_aligned
);
10110 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10112 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
10115 int total1
, keep1
, total2
, keep2
;
10119 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10120 !isl_space_range_is_wrapping(map
->dim
))
10121 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10122 "not a product", return isl_map_free(map
));
10124 space
= isl_map_get_space(map
);
10125 total1
= isl_space_dim(space
, isl_dim_in
);
10126 total2
= isl_space_dim(space
, isl_dim_out
);
10127 space
= isl_space_factor_domain(space
);
10128 keep1
= isl_space_dim(space
, isl_dim_in
);
10129 keep2
= isl_space_dim(space
, isl_dim_out
);
10130 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
10131 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
10132 map
= isl_map_reset_space(map
, space
);
10137 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10139 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
10142 int total1
, keep1
, total2
, keep2
;
10146 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10147 !isl_space_range_is_wrapping(map
->dim
))
10148 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10149 "not a product", return isl_map_free(map
));
10151 space
= isl_map_get_space(map
);
10152 total1
= isl_space_dim(space
, isl_dim_in
);
10153 total2
= isl_space_dim(space
, isl_dim_out
);
10154 space
= isl_space_factor_range(space
);
10155 keep1
= isl_space_dim(space
, isl_dim_in
);
10156 keep2
= isl_space_dim(space
, isl_dim_out
);
10157 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
10158 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
10159 map
= isl_map_reset_space(map
, space
);
10164 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10166 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
10173 if (!isl_space_domain_is_wrapping(map
->dim
))
10174 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10175 "domain is not a product", return isl_map_free(map
));
10177 space
= isl_map_get_space(map
);
10178 total
= isl_space_dim(space
, isl_dim_in
);
10179 space
= isl_space_domain_factor_domain(space
);
10180 keep
= isl_space_dim(space
, isl_dim_in
);
10181 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
10182 map
= isl_map_reset_space(map
, space
);
10187 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10189 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
10196 if (!isl_space_domain_is_wrapping(map
->dim
))
10197 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10198 "domain is not a product", return isl_map_free(map
));
10200 space
= isl_map_get_space(map
);
10201 total
= isl_space_dim(space
, isl_dim_in
);
10202 space
= isl_space_domain_factor_range(space
);
10203 keep
= isl_space_dim(space
, isl_dim_in
);
10204 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
10205 map
= isl_map_reset_space(map
, space
);
10210 /* Given a map A -> [B -> C], extract the map A -> B.
10212 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
10219 if (!isl_space_range_is_wrapping(map
->dim
))
10220 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10221 "range is not a product", return isl_map_free(map
));
10223 space
= isl_map_get_space(map
);
10224 total
= isl_space_dim(space
, isl_dim_out
);
10225 space
= isl_space_range_factor_domain(space
);
10226 keep
= isl_space_dim(space
, isl_dim_out
);
10227 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
10228 map
= isl_map_reset_space(map
, space
);
10233 /* Given a map A -> [B -> C], extract the map A -> C.
10235 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
10242 if (!isl_space_range_is_wrapping(map
->dim
))
10243 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10244 "range is not a product", return isl_map_free(map
));
10246 space
= isl_map_get_space(map
);
10247 total
= isl_space_dim(space
, isl_dim_out
);
10248 space
= isl_space_range_factor_range(space
);
10249 keep
= isl_space_dim(space
, isl_dim_out
);
10250 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
10251 map
= isl_map_reset_space(map
, space
);
10256 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10258 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
10259 __isl_take isl_map
*map2
)
10263 prod
= isl_map_domain_product(map1
, map2
);
10264 prod
= isl_map_flatten_domain(prod
);
10268 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10270 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
10271 __isl_take isl_map
*map2
)
10275 prod
= isl_map_range_product(map1
, map2
);
10276 prod
= isl_map_flatten_range(prod
);
10280 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
10283 uint32_t hash
= isl_hash_init();
10288 bmap
= isl_basic_map_copy(bmap
);
10289 bmap
= isl_basic_map_normalize(bmap
);
10292 total
= isl_basic_map_total_dim(bmap
);
10293 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
10294 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
10296 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
10297 isl_hash_hash(hash
, c_hash
);
10299 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
10300 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10302 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
10303 isl_hash_hash(hash
, c_hash
);
10305 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
10306 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10308 if (isl_int_is_zero(bmap
->div
[i
][0]))
10310 isl_hash_byte(hash
, i
& 0xFF);
10311 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
10312 isl_hash_hash(hash
, c_hash
);
10314 isl_basic_map_free(bmap
);
10318 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
10320 return isl_basic_map_get_hash(bset_to_bmap(bset
));
10323 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
10330 map
= isl_map_copy(map
);
10331 map
= isl_map_normalize(map
);
10335 hash
= isl_hash_init();
10336 for (i
= 0; i
< map
->n
; ++i
) {
10337 uint32_t bmap_hash
;
10338 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
10339 isl_hash_hash(hash
, bmap_hash
);
10347 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
10349 return isl_map_get_hash(set_to_map(set
));
10352 /* Check if the value for dimension dim is completely determined
10353 * by the values of the other parameters and variables.
10354 * That is, check if dimension dim is involved in an equality.
10356 int isl_basic_set_dim_is_unique(struct isl_basic_set
*bset
, unsigned dim
)
10363 nparam
= isl_basic_set_n_param(bset
);
10364 for (i
= 0; i
< bset
->n_eq
; ++i
)
10365 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ dim
]))
10370 /* Check if the value for dimension dim is completely determined
10371 * by the values of the other parameters and variables.
10372 * That is, check if dimension dim is involved in an equality
10373 * for each of the subsets.
10375 int isl_set_dim_is_unique(struct isl_set
*set
, unsigned dim
)
10381 for (i
= 0; i
< set
->n
; ++i
) {
10383 unique
= isl_basic_set_dim_is_unique(set
->p
[i
], dim
);
10390 /* Return the number of basic maps in the (current) representation of "map".
10392 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
10394 return map
? map
->n
: 0;
10397 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
10399 return set
? set
->n
: 0;
10402 isl_stat
isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
10403 isl_stat (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
10408 return isl_stat_error
;
10410 for (i
= 0; i
< map
->n
; ++i
)
10411 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
10412 return isl_stat_error
;
10414 return isl_stat_ok
;
10417 isl_stat
isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
10418 isl_stat (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
10423 return isl_stat_error
;
10425 for (i
= 0; i
< set
->n
; ++i
)
10426 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
10427 return isl_stat_error
;
10429 return isl_stat_ok
;
10432 /* Return a list of basic sets, the union of which is equal to "set".
10434 __isl_give isl_basic_set_list
*isl_set_get_basic_set_list(
10435 __isl_keep isl_set
*set
)
10438 isl_basic_set_list
*list
;
10443 list
= isl_basic_set_list_alloc(isl_set_get_ctx(set
), set
->n
);
10444 for (i
= 0; i
< set
->n
; ++i
) {
10445 isl_basic_set
*bset
;
10447 bset
= isl_basic_set_copy(set
->p
[i
]);
10448 list
= isl_basic_set_list_add(list
, bset
);
10454 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
10461 bset
= isl_basic_set_cow(bset
);
10465 dim
= isl_basic_set_get_space(bset
);
10466 dim
= isl_space_lift(dim
, bset
->n_div
);
10469 isl_space_free(bset
->dim
);
10471 bset
->extra
-= bset
->n_div
;
10474 bset
= isl_basic_set_finalize(bset
);
10478 isl_basic_set_free(bset
);
10482 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
10488 set
= isl_set_align_divs(set
);
10493 set
= isl_set_cow(set
);
10497 n_div
= set
->p
[0]->n_div
;
10498 dim
= isl_set_get_space(set
);
10499 dim
= isl_space_lift(dim
, n_div
);
10502 isl_space_free(set
->dim
);
10505 for (i
= 0; i
< set
->n
; ++i
) {
10506 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
10517 __isl_give isl_map
*isl_set_lifting(__isl_take isl_set
*set
)
10520 struct isl_basic_map
*bmap
;
10527 set
= isl_set_align_divs(set
);
10532 dim
= isl_set_get_space(set
);
10533 if (set
->n
== 0 || set
->p
[0]->n_div
== 0) {
10535 return isl_map_identity(isl_space_map_from_set(dim
));
10538 n_div
= set
->p
[0]->n_div
;
10539 dim
= isl_space_map_from_set(dim
);
10540 n_param
= isl_space_dim(dim
, isl_dim_param
);
10541 n_set
= isl_space_dim(dim
, isl_dim_in
);
10542 dim
= isl_space_extend(dim
, n_param
, n_set
, n_set
+ n_div
);
10543 bmap
= isl_basic_map_alloc_space(dim
, 0, n_set
, 2 * n_div
);
10544 for (i
= 0; i
< n_set
; ++i
)
10545 bmap
= var_equal(bmap
, i
);
10547 total
= n_param
+ n_set
+ n_set
+ n_div
;
10548 for (i
= 0; i
< n_div
; ++i
) {
10549 k
= isl_basic_map_alloc_inequality(bmap
);
10552 isl_seq_cpy(bmap
->ineq
[k
], set
->p
[0]->div
[i
]+1, 1+n_param
);
10553 isl_seq_clr(bmap
->ineq
[k
]+1+n_param
, n_set
);
10554 isl_seq_cpy(bmap
->ineq
[k
]+1+n_param
+n_set
,
10555 set
->p
[0]->div
[i
]+1+1+n_param
, n_set
+ n_div
);
10556 isl_int_neg(bmap
->ineq
[k
][1+n_param
+n_set
+n_set
+i
],
10557 set
->p
[0]->div
[i
][0]);
10559 l
= isl_basic_map_alloc_inequality(bmap
);
10562 isl_seq_neg(bmap
->ineq
[l
], bmap
->ineq
[k
], 1 + total
);
10563 isl_int_add(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0],
10564 set
->p
[0]->div
[i
][0]);
10565 isl_int_sub_ui(bmap
->ineq
[l
][0], bmap
->ineq
[l
][0], 1);
10569 bmap
= isl_basic_map_simplify(bmap
);
10570 bmap
= isl_basic_map_finalize(bmap
);
10571 return isl_map_from_basic_map(bmap
);
10574 isl_basic_map_free(bmap
);
10578 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10586 dim
= isl_basic_set_total_dim(bset
);
10587 size
+= bset
->n_eq
* (1 + dim
);
10588 size
+= bset
->n_ineq
* (1 + dim
);
10589 size
+= bset
->n_div
* (2 + dim
);
10594 int isl_set_size(__isl_keep isl_set
*set
)
10602 for (i
= 0; i
< set
->n
; ++i
)
10603 size
+= isl_basic_set_size(set
->p
[i
]);
10608 /* Check if there is any lower bound (if lower == 0) and/or upper
10609 * bound (if upper == 0) on the specified dim.
10611 static isl_bool
basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10612 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10616 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
10617 return isl_bool_error
;
10619 pos
+= isl_basic_map_offset(bmap
, type
);
10621 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10622 if (isl_int_is_zero(bmap
->div
[i
][0]))
10624 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10625 return isl_bool_true
;
10628 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10629 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10630 return isl_bool_true
;
10632 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10633 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10640 return lower
&& upper
;
10643 isl_bool
isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10644 enum isl_dim_type type
, unsigned pos
)
10646 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10649 isl_bool
isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10650 enum isl_dim_type type
, unsigned pos
)
10652 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10655 isl_bool
isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10656 enum isl_dim_type type
, unsigned pos
)
10658 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10661 isl_bool
isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10662 enum isl_dim_type type
, unsigned pos
)
10667 return isl_bool_error
;
10669 for (i
= 0; i
< map
->n
; ++i
) {
10671 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10672 if (bounded
< 0 || !bounded
)
10676 return isl_bool_true
;
10679 /* Return true if the specified dim is involved in both an upper bound
10680 * and a lower bound.
10682 isl_bool
isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10683 enum isl_dim_type type
, unsigned pos
)
10685 return isl_map_dim_is_bounded(set_to_map(set
), type
, pos
);
10688 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10690 static isl_bool
has_any_bound(__isl_keep isl_map
*map
,
10691 enum isl_dim_type type
, unsigned pos
,
10692 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10693 enum isl_dim_type type
, unsigned pos
))
10698 return isl_bool_error
;
10700 for (i
= 0; i
< map
->n
; ++i
) {
10702 bounded
= fn(map
->p
[i
], type
, pos
);
10703 if (bounded
< 0 || bounded
)
10707 return isl_bool_false
;
10710 /* Return 1 if the specified dim is involved in any lower bound.
10712 isl_bool
isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10713 enum isl_dim_type type
, unsigned pos
)
10715 return has_any_bound(set
, type
, pos
,
10716 &isl_basic_map_dim_has_lower_bound
);
10719 /* Return 1 if the specified dim is involved in any upper bound.
10721 isl_bool
isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10722 enum isl_dim_type type
, unsigned pos
)
10724 return has_any_bound(set
, type
, pos
,
10725 &isl_basic_map_dim_has_upper_bound
);
10728 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10730 static isl_bool
has_bound(__isl_keep isl_map
*map
,
10731 enum isl_dim_type type
, unsigned pos
,
10732 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10733 enum isl_dim_type type
, unsigned pos
))
10738 return isl_bool_error
;
10740 for (i
= 0; i
< map
->n
; ++i
) {
10742 bounded
= fn(map
->p
[i
], type
, pos
);
10743 if (bounded
< 0 || !bounded
)
10747 return isl_bool_true
;
10750 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10752 isl_bool
isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10753 enum isl_dim_type type
, unsigned pos
)
10755 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10758 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10760 isl_bool
isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10761 enum isl_dim_type type
, unsigned pos
)
10763 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10766 /* For each of the "n" variables starting at "first", determine
10767 * the sign of the variable and put the results in the first "n"
10768 * elements of the array "signs".
10770 * 1 means that the variable is non-negative
10771 * -1 means that the variable is non-positive
10772 * 0 means the variable attains both positive and negative values.
10774 isl_stat
isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10775 unsigned first
, unsigned n
, int *signs
)
10777 isl_vec
*bound
= NULL
;
10778 struct isl_tab
*tab
= NULL
;
10779 struct isl_tab_undo
*snap
;
10782 if (!bset
|| !signs
)
10783 return isl_stat_error
;
10785 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10786 tab
= isl_tab_from_basic_set(bset
, 0);
10787 if (!bound
|| !tab
)
10790 isl_seq_clr(bound
->el
, bound
->size
);
10791 isl_int_set_si(bound
->el
[0], -1);
10793 snap
= isl_tab_snap(tab
);
10794 for (i
= 0; i
< n
; ++i
) {
10797 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10798 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10800 empty
= tab
->empty
;
10801 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10802 if (isl_tab_rollback(tab
, snap
) < 0)
10810 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10811 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10813 empty
= tab
->empty
;
10814 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10815 if (isl_tab_rollback(tab
, snap
) < 0)
10818 signs
[i
] = empty
? -1 : 0;
10822 isl_vec_free(bound
);
10823 return isl_stat_ok
;
10826 isl_vec_free(bound
);
10827 return isl_stat_error
;
10830 isl_stat
isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10831 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10833 if (!bset
|| !signs
)
10834 return isl_stat_error
;
10835 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10836 return isl_stat_error
);
10838 first
+= pos(bset
->dim
, type
) - 1;
10839 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10842 /* Is it possible for the integer division "div" to depend (possibly
10843 * indirectly) on any output dimensions?
10845 * If the div is undefined, then we conservatively assume that it
10846 * may depend on them.
10847 * Otherwise, we check if it actually depends on them or on any integer
10848 * divisions that may depend on them.
10850 static isl_bool
div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10853 unsigned n_out
, o_out
;
10854 unsigned n_div
, o_div
;
10856 if (isl_int_is_zero(bmap
->div
[div
][0]))
10857 return isl_bool_true
;
10859 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10860 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10862 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10863 return isl_bool_true
;
10865 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10866 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10868 for (i
= 0; i
< n_div
; ++i
) {
10869 isl_bool may_involve
;
10871 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10873 may_involve
= div_may_involve_output(bmap
, i
);
10874 if (may_involve
< 0 || may_involve
)
10875 return may_involve
;
10878 return isl_bool_false
;
10881 /* Return the first integer division of "bmap" in the range
10882 * [first, first + n[ that may depend on any output dimensions and
10883 * that has a non-zero coefficient in "c" (where the first coefficient
10884 * in "c" corresponds to integer division "first").
10886 static int first_div_may_involve_output(__isl_keep isl_basic_map
*bmap
,
10887 isl_int
*c
, int first
, int n
)
10894 for (k
= first
; k
< first
+ n
; ++k
) {
10895 isl_bool may_involve
;
10897 if (isl_int_is_zero(c
[k
]))
10899 may_involve
= div_may_involve_output(bmap
, k
);
10900 if (may_involve
< 0)
10909 /* Look for a pair of inequality constraints in "bmap" of the form
10911 * -l + i >= 0 or i >= l
10913 * n + l - i >= 0 or i <= l + n
10915 * with n < "m" and i the output dimension at position "pos".
10916 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10917 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10918 * and earlier output dimensions, as well as integer divisions that do
10919 * not involve any of the output dimensions.
10921 * Return the index of the first inequality constraint or bmap->n_ineq
10922 * if no such pair can be found.
10924 static int find_modulo_constraint_pair(__isl_keep isl_basic_map
*bmap
,
10925 int pos
, isl_int m
)
10930 unsigned n_div
, o_div
;
10931 unsigned n_out
, o_out
;
10937 ctx
= isl_basic_map_get_ctx(bmap
);
10938 total
= isl_basic_map_total_dim(bmap
);
10939 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10940 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10941 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10942 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10943 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10944 if (!isl_int_abs_eq(bmap
->ineq
[i
][o_out
+ pos
], ctx
->one
))
10946 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + o_out
+ pos
+ 1,
10947 n_out
- (pos
+ 1)) != -1)
10949 if (first_div_may_involve_output(bmap
, bmap
->ineq
[i
] + o_div
,
10952 for (j
= i
+ 1; j
< bmap
->n_ineq
; ++j
) {
10953 if (!isl_int_abs_eq(bmap
->ineq
[j
][o_out
+ pos
],
10956 if (!isl_seq_is_neg(bmap
->ineq
[i
] + 1,
10957 bmap
->ineq
[j
] + 1, total
))
10961 if (j
>= bmap
->n_ineq
)
10963 isl_int_add(bmap
->ineq
[i
][0],
10964 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10965 less
= isl_int_abs_lt(bmap
->ineq
[i
][0], m
);
10966 isl_int_sub(bmap
->ineq
[i
][0],
10967 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10970 if (isl_int_is_one(bmap
->ineq
[i
][o_out
+ pos
]))
10976 return bmap
->n_ineq
;
10979 /* Return the index of the equality of "bmap" that defines
10980 * the output dimension "pos" in terms of earlier dimensions.
10981 * The equality may also involve integer divisions, as long
10982 * as those integer divisions are defined in terms of
10983 * parameters or input dimensions.
10984 * In this case, *div is set to the number of integer divisions and
10985 * *ineq is set to the number of inequality constraints (provided
10986 * div and ineq are not NULL).
10988 * The equality may also involve a single integer division involving
10989 * the output dimensions (typically only output dimension "pos") as
10990 * long as the coefficient of output dimension "pos" is 1 or -1 and
10991 * there is a pair of constraints i >= l and i <= l + n, with i referring
10992 * to output dimension "pos", l an expression involving only earlier
10993 * dimensions and n smaller than the coefficient of the integer division
10994 * in the equality. In this case, the output dimension can be defined
10995 * in terms of a modulo expression that does not involve the integer division.
10996 * *div is then set to this single integer division and
10997 * *ineq is set to the index of constraint i >= l.
10999 * Return bmap->n_eq if there is no such equality.
11000 * Return -1 on error.
11002 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
11003 int pos
, int *div
, int *ineq
)
11006 unsigned n_out
, o_out
;
11007 unsigned n_div
, o_div
;
11012 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11013 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
11014 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
11015 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
11018 *ineq
= bmap
->n_ineq
;
11021 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
11022 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
11024 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
11025 n_out
- (pos
+ 1)) != -1)
11027 k
= first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11031 if (!isl_int_is_one(bmap
->eq
[j
][o_out
+ pos
]) &&
11032 !isl_int_is_negone(bmap
->eq
[j
][o_out
+ pos
]))
11034 if (first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11035 k
+ 1, n_div
- (k
+1)) < n_div
)
11037 l
= find_modulo_constraint_pair(bmap
, pos
,
11038 bmap
->eq
[j
][o_div
+ k
]);
11041 if (l
>= bmap
->n_ineq
)
11053 /* Check if the given basic map is obviously single-valued.
11054 * In particular, for each output dimension, check that there is
11055 * an equality that defines the output dimension in terms of
11056 * earlier dimensions.
11058 isl_bool
isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11064 return isl_bool_error
;
11066 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11068 for (i
= 0; i
< n_out
; ++i
) {
11071 eq
= isl_basic_map_output_defining_equality(bmap
, i
,
11074 return isl_bool_error
;
11075 if (eq
>= bmap
->n_eq
)
11076 return isl_bool_false
;
11079 return isl_bool_true
;
11082 /* Check if the given basic map is single-valued.
11083 * We simply compute
11087 * and check if the result is a subset of the identity mapping.
11089 isl_bool
isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11092 isl_basic_map
*test
;
11096 sv
= isl_basic_map_plain_is_single_valued(bmap
);
11100 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
11101 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
11103 space
= isl_basic_map_get_space(bmap
);
11104 space
= isl_space_map_from_set(isl_space_range(space
));
11105 id
= isl_basic_map_identity(space
);
11107 sv
= isl_basic_map_is_subset(test
, id
);
11109 isl_basic_map_free(test
);
11110 isl_basic_map_free(id
);
11115 /* Check if the given map is obviously single-valued.
11117 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
11120 return isl_bool_error
;
11122 return isl_bool_true
;
11124 return isl_bool_false
;
11126 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
11129 /* Check if the given map is single-valued.
11130 * We simply compute
11134 * and check if the result is a subset of the identity mapping.
11136 isl_bool
isl_map_is_single_valued(__isl_keep isl_map
*map
)
11143 sv
= isl_map_plain_is_single_valued(map
);
11147 test
= isl_map_reverse(isl_map_copy(map
));
11148 test
= isl_map_apply_range(test
, isl_map_copy(map
));
11150 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
11151 id
= isl_map_identity(dim
);
11153 sv
= isl_map_is_subset(test
, id
);
11155 isl_map_free(test
);
11161 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
11165 map
= isl_map_copy(map
);
11166 map
= isl_map_reverse(map
);
11167 in
= isl_map_is_single_valued(map
);
11173 /* Check if the given map is obviously injective.
11175 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
11179 map
= isl_map_copy(map
);
11180 map
= isl_map_reverse(map
);
11181 in
= isl_map_plain_is_single_valued(map
);
11187 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
11191 sv
= isl_map_is_single_valued(map
);
11195 return isl_map_is_injective(map
);
11198 isl_bool
isl_set_is_singleton(__isl_keep isl_set
*set
)
11200 return isl_map_is_single_valued(set_to_map(set
));
11203 /* Does "map" only map elements to themselves?
11205 * If the domain and range spaces are different, then "map"
11206 * is considered not to be an identity relation, even if it is empty.
11207 * Otherwise, construct the maximal identity relation and
11208 * check whether "map" is a subset of this relation.
11210 isl_bool
isl_map_is_identity(__isl_keep isl_map
*map
)
11214 isl_bool equal
, is_identity
;
11216 space
= isl_map_get_space(map
);
11217 equal
= isl_space_tuple_is_equal(space
, isl_dim_in
, space
, isl_dim_out
);
11218 isl_space_free(space
);
11219 if (equal
< 0 || !equal
)
11222 id
= isl_map_identity(isl_map_get_space(map
));
11223 is_identity
= isl_map_is_subset(map
, id
);
11226 return is_identity
;
11229 int isl_map_is_translation(__isl_keep isl_map
*map
)
11234 delta
= isl_map_deltas(isl_map_copy(map
));
11235 ok
= isl_set_is_singleton(delta
);
11236 isl_set_free(delta
);
11241 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
11243 if (isl_seq_first_non_zero(p
, pos
) != -1)
11245 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
11250 isl_bool
isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
11257 return isl_bool_error
;
11259 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
11260 return isl_bool_false
;
11262 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
11263 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
11264 for (j
= 0; j
< nvar
; ++j
) {
11265 int lower
= 0, upper
= 0;
11266 for (i
= 0; i
< bset
->n_eq
; ++i
) {
11267 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
11269 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
11270 return isl_bool_false
;
11273 if (i
< bset
->n_eq
)
11275 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
11276 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
11278 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
11279 return isl_bool_false
;
11280 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
11285 if (!lower
|| !upper
)
11286 return isl_bool_false
;
11289 return isl_bool_true
;
11292 isl_bool
isl_set_is_box(__isl_keep isl_set
*set
)
11295 return isl_bool_error
;
11297 return isl_bool_false
;
11299 return isl_basic_set_is_box(set
->p
[0]);
11302 isl_bool
isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
11305 return isl_bool_error
;
11307 return isl_space_is_wrapping(bset
->dim
);
11310 isl_bool
isl_set_is_wrapping(__isl_keep isl_set
*set
)
11313 return isl_bool_error
;
11315 return isl_space_is_wrapping(set
->dim
);
11318 /* Modify the space of "map" through a call to "change".
11319 * If "can_change" is set (not NULL), then first call it to check
11320 * if the modification is allowed, printing the error message "cannot_change"
11323 static __isl_give isl_map
*isl_map_change_space(__isl_take isl_map
*map
,
11324 isl_bool (*can_change
)(__isl_keep isl_map
*map
),
11325 const char *cannot_change
,
11326 __isl_give isl_space
*(*change
)(__isl_take isl_space
*space
))
11334 ok
= can_change
? can_change(map
) : isl_bool_true
;
11336 return isl_map_free(map
);
11338 isl_die(isl_map_get_ctx(map
), isl_error_invalid
, cannot_change
,
11339 return isl_map_free(map
));
11341 space
= change(isl_map_get_space(map
));
11342 map
= isl_map_reset_space(map
, space
);
11347 /* Is the domain of "map" a wrapped relation?
11349 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
11352 return isl_bool_error
;
11354 return isl_space_domain_is_wrapping(map
->dim
);
11357 /* Is the range of "map" a wrapped relation?
11359 isl_bool
isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
11362 return isl_bool_error
;
11364 return isl_space_range_is_wrapping(map
->dim
);
11367 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
11369 bmap
= isl_basic_map_cow(bmap
);
11373 bmap
->dim
= isl_space_wrap(bmap
->dim
);
11377 bmap
= isl_basic_map_finalize(bmap
);
11379 return bset_from_bmap(bmap
);
11381 isl_basic_map_free(bmap
);
11385 /* Given a map A -> B, return the set (A -> B).
11387 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
11389 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_wrap
);
11392 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
11394 bset
= isl_basic_set_cow(bset
);
11398 bset
->dim
= isl_space_unwrap(bset
->dim
);
11402 bset
= isl_basic_set_finalize(bset
);
11404 return bset_to_bmap(bset
);
11406 isl_basic_set_free(bset
);
11410 /* Given a set (A -> B), return the map A -> B.
11411 * Error out if "set" is not of the form (A -> B).
11413 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
11415 return isl_map_change_space(set
, &isl_set_is_wrapping
,
11416 "not a wrapping set", &isl_space_unwrap
);
11419 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
11420 enum isl_dim_type type
)
11425 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
11428 bmap
= isl_basic_map_cow(bmap
);
11432 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
11436 bmap
= isl_basic_map_finalize(bmap
);
11440 isl_basic_map_free(bmap
);
11444 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
11445 enum isl_dim_type type
)
11452 if (!isl_space_is_named_or_nested(map
->dim
, type
))
11455 map
= isl_map_cow(map
);
11459 for (i
= 0; i
< map
->n
; ++i
) {
11460 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
11464 map
->dim
= isl_space_reset(map
->dim
, type
);
11474 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
11479 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
11482 bmap
= isl_basic_map_cow(bmap
);
11486 bmap
->dim
= isl_space_flatten(bmap
->dim
);
11490 bmap
= isl_basic_map_finalize(bmap
);
11494 isl_basic_map_free(bmap
);
11498 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
11500 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset
)));
11503 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
11504 __isl_take isl_basic_map
*bmap
)
11509 if (!bmap
->dim
->nested
[0])
11512 bmap
= isl_basic_map_cow(bmap
);
11516 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
11520 bmap
= isl_basic_map_finalize(bmap
);
11524 isl_basic_map_free(bmap
);
11528 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
11529 __isl_take isl_basic_map
*bmap
)
11534 if (!bmap
->dim
->nested
[1])
11537 bmap
= isl_basic_map_cow(bmap
);
11541 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
11545 bmap
= isl_basic_map_finalize(bmap
);
11549 isl_basic_map_free(bmap
);
11553 /* Remove any internal structure from the spaces of domain and range of "map".
11555 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
11560 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
11563 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten
);
11566 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
11568 return set_from_map(isl_map_flatten(set_to_map(set
)));
11571 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
11573 isl_space
*dim
, *flat_dim
;
11576 dim
= isl_set_get_space(set
);
11577 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
11578 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
11579 map
= isl_map_intersect_domain(map
, set
);
11584 /* Remove any internal structure from the space of the domain of "map".
11586 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
11591 if (!map
->dim
->nested
[0])
11594 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_domain
);
11597 /* Remove any internal structure from the space of the range of "map".
11599 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
11604 if (!map
->dim
->nested
[1])
11607 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_range
);
11610 /* Reorder the dimensions of "bmap" according to the given dim_map
11611 * and set the dimension specification to "dim" and
11612 * perform Gaussian elimination on the result.
11614 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
11615 __isl_take isl_space
*dim
, __isl_take
struct isl_dim_map
*dim_map
)
11617 isl_basic_map
*res
;
11620 bmap
= isl_basic_map_cow(bmap
);
11621 if (!bmap
|| !dim
|| !dim_map
)
11624 flags
= bmap
->flags
;
11625 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
11626 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED
);
11627 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
11628 res
= isl_basic_map_alloc_space(dim
,
11629 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
11630 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
11632 res
->flags
= flags
;
11633 res
= isl_basic_map_gauss(res
, NULL
);
11634 res
= isl_basic_map_finalize(res
);
11638 isl_basic_map_free(bmap
);
11639 isl_space_free(dim
);
11643 /* Reorder the dimensions of "map" according to given reordering.
11645 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
11646 __isl_take isl_reordering
*r
)
11649 struct isl_dim_map
*dim_map
;
11651 map
= isl_map_cow(map
);
11652 dim_map
= isl_dim_map_from_reordering(r
);
11653 if (!map
|| !r
|| !dim_map
)
11656 for (i
= 0; i
< map
->n
; ++i
) {
11657 struct isl_dim_map
*dim_map_i
;
11659 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
11661 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
],
11662 isl_space_copy(r
->dim
), dim_map_i
);
11668 map
= isl_map_reset_space(map
, isl_space_copy(r
->dim
));
11670 isl_reordering_free(r
);
11676 isl_reordering_free(r
);
11680 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
11681 __isl_take isl_reordering
*r
)
11683 return set_from_map(isl_map_realign(set_to_map(set
), r
));
11686 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
11687 __isl_take isl_space
*model
)
11691 if (!map
|| !model
)
11694 ctx
= isl_space_get_ctx(model
);
11695 if (!isl_space_has_named_params(model
))
11696 isl_die(ctx
, isl_error_invalid
,
11697 "model has unnamed parameters", goto error
);
11698 if (!isl_space_has_named_params(map
->dim
))
11699 isl_die(ctx
, isl_error_invalid
,
11700 "relation has unnamed parameters", goto error
);
11701 if (!isl_space_match(map
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11702 isl_reordering
*exp
;
11704 model
= isl_space_drop_dims(model
, isl_dim_in
,
11705 0, isl_space_dim(model
, isl_dim_in
));
11706 model
= isl_space_drop_dims(model
, isl_dim_out
,
11707 0, isl_space_dim(model
, isl_dim_out
));
11708 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11709 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11710 map
= isl_map_realign(map
, exp
);
11713 isl_space_free(model
);
11716 isl_space_free(model
);
11721 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11722 __isl_take isl_space
*model
)
11724 return isl_map_align_params(set
, model
);
11727 /* Align the parameters of "bmap" to those of "model", introducing
11728 * additional parameters if needed.
11730 __isl_give isl_basic_map
*isl_basic_map_align_params(
11731 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11735 if (!bmap
|| !model
)
11738 ctx
= isl_space_get_ctx(model
);
11739 if (!isl_space_has_named_params(model
))
11740 isl_die(ctx
, isl_error_invalid
,
11741 "model has unnamed parameters", goto error
);
11742 if (!isl_space_has_named_params(bmap
->dim
))
11743 isl_die(ctx
, isl_error_invalid
,
11744 "relation has unnamed parameters", goto error
);
11745 if (!isl_space_match(bmap
->dim
, isl_dim_param
, model
, isl_dim_param
)) {
11746 isl_reordering
*exp
;
11747 struct isl_dim_map
*dim_map
;
11749 model
= isl_space_drop_dims(model
, isl_dim_in
,
11750 0, isl_space_dim(model
, isl_dim_in
));
11751 model
= isl_space_drop_dims(model
, isl_dim_out
,
11752 0, isl_space_dim(model
, isl_dim_out
));
11753 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11754 exp
= isl_reordering_extend_space(exp
,
11755 isl_basic_map_get_space(bmap
));
11756 dim_map
= isl_dim_map_from_reordering(exp
);
11757 bmap
= isl_basic_map_realign(bmap
,
11758 exp
? isl_space_copy(exp
->dim
) : NULL
,
11759 isl_dim_map_extend(dim_map
, bmap
));
11760 isl_reordering_free(exp
);
11764 isl_space_free(model
);
11767 isl_space_free(model
);
11768 isl_basic_map_free(bmap
);
11772 /* Align the parameters of "bset" to those of "model", introducing
11773 * additional parameters if needed.
11775 __isl_give isl_basic_set
*isl_basic_set_align_params(
11776 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11778 return isl_basic_map_align_params(bset
, model
);
11781 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11782 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11783 enum isl_dim_type c2
, enum isl_dim_type c3
,
11784 enum isl_dim_type c4
, enum isl_dim_type c5
)
11786 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11787 struct isl_mat
*mat
;
11793 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11794 isl_basic_map_total_dim(bmap
) + 1);
11797 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11798 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11799 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11800 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11801 isl_int_set(mat
->row
[i
][pos
],
11802 bmap
->eq
[i
][off
+ k
]);
11810 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11811 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11812 enum isl_dim_type c2
, enum isl_dim_type c3
,
11813 enum isl_dim_type c4
, enum isl_dim_type c5
)
11815 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11816 struct isl_mat
*mat
;
11822 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11823 isl_basic_map_total_dim(bmap
) + 1);
11826 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11827 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11828 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11829 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11830 isl_int_set(mat
->row
[i
][pos
],
11831 bmap
->ineq
[i
][off
+ k
]);
11839 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
11840 __isl_take isl_space
*dim
,
11841 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11842 enum isl_dim_type c2
, enum isl_dim_type c3
,
11843 enum isl_dim_type c4
, enum isl_dim_type c5
)
11845 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11846 isl_basic_map
*bmap
;
11852 if (!dim
|| !eq
|| !ineq
)
11855 if (eq
->n_col
!= ineq
->n_col
)
11856 isl_die(dim
->ctx
, isl_error_invalid
,
11857 "equalities and inequalities matrices should have "
11858 "same number of columns", goto error
);
11860 total
= 1 + isl_space_dim(dim
, isl_dim_all
);
11862 if (eq
->n_col
< total
)
11863 isl_die(dim
->ctx
, isl_error_invalid
,
11864 "number of columns too small", goto error
);
11866 extra
= eq
->n_col
- total
;
11868 bmap
= isl_basic_map_alloc_space(isl_space_copy(dim
), extra
,
11869 eq
->n_row
, ineq
->n_row
);
11872 for (i
= 0; i
< extra
; ++i
) {
11873 k
= isl_basic_map_alloc_div(bmap
);
11876 isl_int_set_si(bmap
->div
[k
][0], 0);
11878 for (i
= 0; i
< eq
->n_row
; ++i
) {
11879 l
= isl_basic_map_alloc_equality(bmap
);
11882 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11883 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11884 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11885 isl_int_set(bmap
->eq
[l
][off
+ k
],
11891 for (i
= 0; i
< ineq
->n_row
; ++i
) {
11892 l
= isl_basic_map_alloc_inequality(bmap
);
11895 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11896 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11897 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11898 isl_int_set(bmap
->ineq
[l
][off
+ k
],
11899 ineq
->row
[i
][pos
]);
11905 isl_space_free(dim
);
11907 isl_mat_free(ineq
);
11909 bmap
= isl_basic_map_simplify(bmap
);
11910 return isl_basic_map_finalize(bmap
);
11912 isl_space_free(dim
);
11914 isl_mat_free(ineq
);
11918 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
11919 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11920 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11922 return isl_basic_map_equalities_matrix(bset_to_bmap(bset
),
11923 c1
, c2
, c3
, c4
, isl_dim_in
);
11926 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
11927 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11928 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11930 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset
),
11931 c1
, c2
, c3
, c4
, isl_dim_in
);
11934 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
11935 __isl_take isl_space
*dim
,
11936 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11937 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11939 isl_basic_map
*bmap
;
11940 bmap
= isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
11941 c1
, c2
, c3
, c4
, isl_dim_in
);
11942 return bset_from_bmap(bmap
);
11945 isl_bool
isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
11948 return isl_bool_error
;
11950 return isl_space_can_zip(bmap
->dim
);
11953 isl_bool
isl_map_can_zip(__isl_keep isl_map
*map
)
11956 return isl_bool_error
;
11958 return isl_space_can_zip(map
->dim
);
11961 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11962 * (A -> C) -> (B -> D).
11964 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
11973 if (!isl_basic_map_can_zip(bmap
))
11974 isl_die(bmap
->ctx
, isl_error_invalid
,
11975 "basic map cannot be zipped", goto error
);
11976 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
11977 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
11978 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
11979 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
11980 bmap
= isl_basic_map_cow(bmap
);
11981 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
11984 bmap
->dim
= isl_space_zip(bmap
->dim
);
11987 bmap
= isl_basic_map_mark_final(bmap
);
11990 isl_basic_map_free(bmap
);
11994 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11995 * (A -> C) -> (B -> D).
11997 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
12004 if (!isl_map_can_zip(map
))
12005 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
12008 map
= isl_map_cow(map
);
12012 for (i
= 0; i
< map
->n
; ++i
) {
12013 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
12018 map
->dim
= isl_space_zip(map
->dim
);
12028 /* Can we apply isl_basic_map_curry to "bmap"?
12029 * That is, does it have a nested relation in its domain?
12031 isl_bool
isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
12034 return isl_bool_error
;
12036 return isl_space_can_curry(bmap
->dim
);
12039 /* Can we apply isl_map_curry to "map"?
12040 * That is, does it have a nested relation in its domain?
12042 isl_bool
isl_map_can_curry(__isl_keep isl_map
*map
)
12045 return isl_bool_error
;
12047 return isl_space_can_curry(map
->dim
);
12050 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12053 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
12059 if (!isl_basic_map_can_curry(bmap
))
12060 isl_die(bmap
->ctx
, isl_error_invalid
,
12061 "basic map cannot be curried", goto error
);
12062 bmap
= isl_basic_map_cow(bmap
);
12065 bmap
->dim
= isl_space_curry(bmap
->dim
);
12068 bmap
= isl_basic_map_mark_final(bmap
);
12071 isl_basic_map_free(bmap
);
12075 /* Given a map (A -> B) -> C, return the corresponding map
12078 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
12080 return isl_map_change_space(map
, &isl_map_can_curry
,
12081 "map cannot be curried", &isl_space_curry
);
12084 /* Can isl_map_range_curry be applied to "map"?
12085 * That is, does it have a nested relation in its range,
12086 * the domain of which is itself a nested relation?
12088 isl_bool
isl_map_can_range_curry(__isl_keep isl_map
*map
)
12091 return isl_bool_error
;
12093 return isl_space_can_range_curry(map
->dim
);
12096 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12097 * A -> (B -> (C -> D)).
12099 __isl_give isl_map
*isl_map_range_curry(__isl_take isl_map
*map
)
12101 return isl_map_change_space(map
, &isl_map_can_range_curry
,
12102 "map range cannot be curried",
12103 &isl_space_range_curry
);
12106 /* Can we apply isl_basic_map_uncurry to "bmap"?
12107 * That is, does it have a nested relation in its domain?
12109 isl_bool
isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
12112 return isl_bool_error
;
12114 return isl_space_can_uncurry(bmap
->dim
);
12117 /* Can we apply isl_map_uncurry to "map"?
12118 * That is, does it have a nested relation in its domain?
12120 isl_bool
isl_map_can_uncurry(__isl_keep isl_map
*map
)
12123 return isl_bool_error
;
12125 return isl_space_can_uncurry(map
->dim
);
12128 /* Given a basic map A -> (B -> C), return the corresponding basic map
12131 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
12137 if (!isl_basic_map_can_uncurry(bmap
))
12138 isl_die(bmap
->ctx
, isl_error_invalid
,
12139 "basic map cannot be uncurried",
12140 return isl_basic_map_free(bmap
));
12141 bmap
= isl_basic_map_cow(bmap
);
12144 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
12146 return isl_basic_map_free(bmap
);
12147 bmap
= isl_basic_map_mark_final(bmap
);
12151 /* Given a map A -> (B -> C), return the corresponding map
12154 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
12156 return isl_map_change_space(map
, &isl_map_can_uncurry
,
12157 "map cannot be uncurried", &isl_space_uncurry
);
12160 /* Construct a basic map mapping the domain of the affine expression
12161 * to a one-dimensional range prescribed by the affine expression.
12162 * If "rational" is set, then construct a rational basic map.
12164 * A NaN affine expression cannot be converted to a basic map.
12166 static __isl_give isl_basic_map
*isl_basic_map_from_aff2(
12167 __isl_take isl_aff
*aff
, int rational
)
12172 isl_local_space
*ls
;
12173 isl_basic_map
*bmap
= NULL
;
12177 is_nan
= isl_aff_is_nan(aff
);
12181 isl_die(isl_aff_get_ctx(aff
), isl_error_invalid
,
12182 "cannot convert NaN", goto error
);
12184 ls
= isl_aff_get_local_space(aff
);
12185 bmap
= isl_basic_map_from_local_space(ls
);
12186 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
12187 k
= isl_basic_map_alloc_equality(bmap
);
12191 pos
= isl_basic_map_offset(bmap
, isl_dim_out
);
12192 isl_seq_cpy(bmap
->eq
[k
], aff
->v
->el
+ 1, pos
);
12193 isl_int_neg(bmap
->eq
[k
][pos
], aff
->v
->el
[0]);
12194 isl_seq_cpy(bmap
->eq
[k
] + pos
+ 1, aff
->v
->el
+ 1 + pos
,
12195 aff
->v
->size
- (pos
+ 1));
12199 bmap
= isl_basic_map_set_rational(bmap
);
12200 bmap
= isl_basic_map_finalize(bmap
);
12204 isl_basic_map_free(bmap
);
12208 /* Construct a basic map mapping the domain of the affine expression
12209 * to a one-dimensional range prescribed by the affine expression.
12211 __isl_give isl_basic_map
*isl_basic_map_from_aff(__isl_take isl_aff
*aff
)
12213 return isl_basic_map_from_aff2(aff
, 0);
12216 /* Construct a map mapping the domain of the affine expression
12217 * to a one-dimensional range prescribed by the affine expression.
12219 __isl_give isl_map
*isl_map_from_aff(__isl_take isl_aff
*aff
)
12221 isl_basic_map
*bmap
;
12223 bmap
= isl_basic_map_from_aff(aff
);
12224 return isl_map_from_basic_map(bmap
);
12227 /* Construct a basic map mapping the domain the multi-affine expression
12228 * to its range, with each dimension in the range equated to the
12229 * corresponding affine expression.
12230 * If "rational" is set, then construct a rational basic map.
12232 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff2(
12233 __isl_take isl_multi_aff
*maff
, int rational
)
12237 isl_basic_map
*bmap
;
12242 if (isl_space_dim(maff
->space
, isl_dim_out
) != maff
->n
)
12243 isl_die(isl_multi_aff_get_ctx(maff
), isl_error_internal
,
12244 "invalid space", goto error
);
12246 space
= isl_space_domain(isl_multi_aff_get_space(maff
));
12247 bmap
= isl_basic_map_universe(isl_space_from_domain(space
));
12249 bmap
= isl_basic_map_set_rational(bmap
);
12251 for (i
= 0; i
< maff
->n
; ++i
) {
12253 isl_basic_map
*bmap_i
;
12255 aff
= isl_aff_copy(maff
->p
[i
]);
12256 bmap_i
= isl_basic_map_from_aff2(aff
, rational
);
12258 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12261 bmap
= isl_basic_map_reset_space(bmap
, isl_multi_aff_get_space(maff
));
12263 isl_multi_aff_free(maff
);
12266 isl_multi_aff_free(maff
);
12270 /* Construct a basic map mapping the domain the multi-affine expression
12271 * to its range, with each dimension in the range equated to the
12272 * corresponding affine expression.
12274 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff(
12275 __isl_take isl_multi_aff
*ma
)
12277 return isl_basic_map_from_multi_aff2(ma
, 0);
12280 /* Construct a map mapping the domain the multi-affine expression
12281 * to its range, with each dimension in the range equated to the
12282 * corresponding affine expression.
12284 __isl_give isl_map
*isl_map_from_multi_aff(__isl_take isl_multi_aff
*maff
)
12286 isl_basic_map
*bmap
;
12288 bmap
= isl_basic_map_from_multi_aff(maff
);
12289 return isl_map_from_basic_map(bmap
);
12292 /* Construct a basic map mapping a domain in the given space to
12293 * to an n-dimensional range, with n the number of elements in the list,
12294 * where each coordinate in the range is prescribed by the
12295 * corresponding affine expression.
12296 * The domains of all affine expressions in the list are assumed to match
12299 __isl_give isl_basic_map
*isl_basic_map_from_aff_list(
12300 __isl_take isl_space
*domain_dim
, __isl_take isl_aff_list
*list
)
12304 isl_basic_map
*bmap
;
12309 dim
= isl_space_from_domain(domain_dim
);
12310 bmap
= isl_basic_map_universe(dim
);
12312 for (i
= 0; i
< list
->n
; ++i
) {
12314 isl_basic_map
*bmap_i
;
12316 aff
= isl_aff_copy(list
->p
[i
]);
12317 bmap_i
= isl_basic_map_from_aff(aff
);
12319 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12322 isl_aff_list_free(list
);
12326 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
12327 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12329 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
12332 /* Construct a basic map where the given dimensions are equal to each other.
12334 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
12335 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12337 isl_basic_map
*bmap
= NULL
;
12343 if (pos1
>= isl_space_dim(space
, type1
))
12344 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12345 "index out of bounds", goto error
);
12346 if (pos2
>= isl_space_dim(space
, type2
))
12347 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12348 "index out of bounds", goto error
);
12350 if (type1
== type2
&& pos1
== pos2
)
12351 return isl_basic_map_universe(space
);
12353 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
12354 i
= isl_basic_map_alloc_equality(bmap
);
12357 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12358 pos1
+= isl_basic_map_offset(bmap
, type1
);
12359 pos2
+= isl_basic_map_offset(bmap
, type2
);
12360 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
12361 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12362 bmap
= isl_basic_map_finalize(bmap
);
12363 isl_space_free(space
);
12366 isl_space_free(space
);
12367 isl_basic_map_free(bmap
);
12371 /* Add a constraint imposing that the given two dimensions are equal.
12373 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
12374 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12378 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12380 bmap
= isl_basic_map_intersect(bmap
, eq
);
12385 /* Add a constraint imposing that the given two dimensions are equal.
12387 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
12388 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12390 isl_basic_map
*bmap
;
12392 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12394 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12399 /* Add a constraint imposing that the given two dimensions have opposite values.
12401 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
12402 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12404 isl_basic_map
*bmap
= NULL
;
12410 if (pos1
>= isl_map_dim(map
, type1
))
12411 isl_die(map
->ctx
, isl_error_invalid
,
12412 "index out of bounds", goto error
);
12413 if (pos2
>= isl_map_dim(map
, type2
))
12414 isl_die(map
->ctx
, isl_error_invalid
,
12415 "index out of bounds", goto error
);
12417 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
12418 i
= isl_basic_map_alloc_equality(bmap
);
12421 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12422 pos1
+= isl_basic_map_offset(bmap
, type1
);
12423 pos2
+= isl_basic_map_offset(bmap
, type2
);
12424 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
12425 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12426 bmap
= isl_basic_map_finalize(bmap
);
12428 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12432 isl_basic_map_free(bmap
);
12437 /* Construct a constraint imposing that the value of the first dimension is
12438 * greater than or equal to that of the second.
12440 static __isl_give isl_constraint
*constraint_order_ge(
12441 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
12442 enum isl_dim_type type2
, int pos2
)
12449 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
12451 if (pos1
>= isl_constraint_dim(c
, type1
))
12452 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12453 "index out of bounds", return isl_constraint_free(c
));
12454 if (pos2
>= isl_constraint_dim(c
, type2
))
12455 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12456 "index out of bounds", return isl_constraint_free(c
));
12458 if (type1
== type2
&& pos1
== pos2
)
12461 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
12462 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
12467 /* Add a constraint imposing that the value of the first dimension is
12468 * greater than or equal to that of the second.
12470 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
12471 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12476 if (type1
== type2
&& pos1
== pos2
)
12478 space
= isl_basic_map_get_space(bmap
);
12479 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12480 bmap
= isl_basic_map_add_constraint(bmap
, c
);
12485 /* Add a constraint imposing that the value of the first dimension is
12486 * greater than or equal to that of the second.
12488 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
12489 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12494 if (type1
== type2
&& pos1
== pos2
)
12496 space
= isl_map_get_space(map
);
12497 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12498 map
= isl_map_add_constraint(map
, c
);
12503 /* Add a constraint imposing that the value of the first dimension is
12504 * less than or equal to that of the second.
12506 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
12507 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12509 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
12512 /* Construct a basic map where the value of the first dimension is
12513 * greater than that of the second.
12515 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
12516 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12518 isl_basic_map
*bmap
= NULL
;
12524 if (pos1
>= isl_space_dim(space
, type1
))
12525 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12526 "index out of bounds", goto error
);
12527 if (pos2
>= isl_space_dim(space
, type2
))
12528 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12529 "index out of bounds", goto error
);
12531 if (type1
== type2
&& pos1
== pos2
)
12532 return isl_basic_map_empty(space
);
12534 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
12535 i
= isl_basic_map_alloc_inequality(bmap
);
12537 return isl_basic_map_free(bmap
);
12538 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12539 pos1
+= isl_basic_map_offset(bmap
, type1
);
12540 pos2
+= isl_basic_map_offset(bmap
, type2
);
12541 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
12542 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
12543 isl_int_set_si(bmap
->ineq
[i
][0], -1);
12544 bmap
= isl_basic_map_finalize(bmap
);
12548 isl_space_free(space
);
12549 isl_basic_map_free(bmap
);
12553 /* Add a constraint imposing that the value of the first dimension is
12554 * greater than that of the second.
12556 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
12557 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12561 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12563 bmap
= isl_basic_map_intersect(bmap
, gt
);
12568 /* Add a constraint imposing that the value of the first dimension is
12569 * greater than that of the second.
12571 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
12572 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12574 isl_basic_map
*bmap
;
12576 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12578 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12583 /* Add a constraint imposing that the value of the first dimension is
12584 * smaller than that of the second.
12586 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
12587 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12589 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
12592 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
12596 isl_local_space
*ls
;
12601 if (!isl_basic_map_divs_known(bmap
))
12602 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12603 "some divs are unknown", return NULL
);
12605 ls
= isl_basic_map_get_local_space(bmap
);
12606 div
= isl_local_space_get_div(ls
, pos
);
12607 isl_local_space_free(ls
);
12612 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
12615 return isl_basic_map_get_div(bset
, pos
);
12618 /* Plug in "subs" for dimension "type", "pos" of "bset".
12620 * Let i be the dimension to replace and let "subs" be of the form
12624 * Any integer division with a non-zero coefficient for i,
12626 * floor((a i + g)/m)
12630 * floor((a f + d g)/(m d))
12632 * Constraints of the form
12640 * We currently require that "subs" is an integral expression.
12641 * Handling rational expressions may require us to add stride constraints
12642 * as we do in isl_basic_set_preimage_multi_aff.
12644 __isl_give isl_basic_set
*isl_basic_set_substitute(
12645 __isl_take isl_basic_set
*bset
,
12646 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12652 if (bset
&& isl_basic_set_plain_is_empty(bset
))
12655 bset
= isl_basic_set_cow(bset
);
12656 if (!bset
|| !subs
)
12659 ctx
= isl_basic_set_get_ctx(bset
);
12660 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
12661 isl_die(ctx
, isl_error_invalid
,
12662 "spaces don't match", goto error
);
12663 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
12664 isl_die(ctx
, isl_error_unsupported
,
12665 "cannot handle divs yet", goto error
);
12666 if (!isl_int_is_one(subs
->v
->el
[0]))
12667 isl_die(ctx
, isl_error_invalid
,
12668 "can only substitute integer expressions", goto error
);
12670 pos
+= isl_basic_set_offset(bset
, type
);
12674 for (i
= 0; i
< bset
->n_eq
; ++i
) {
12675 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
12677 isl_int_set(v
, bset
->eq
[i
][pos
]);
12678 isl_int_set_si(bset
->eq
[i
][pos
], 0);
12679 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
12680 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12683 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12684 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
12686 isl_int_set(v
, bset
->ineq
[i
][pos
]);
12687 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
12688 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
12689 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12692 for (i
= 0; i
< bset
->n_div
; ++i
) {
12693 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
12695 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
12696 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
12697 isl_seq_combine(bset
->div
[i
] + 1,
12698 subs
->v
->el
[0], bset
->div
[i
] + 1,
12699 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12700 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12705 bset
= isl_basic_set_simplify(bset
);
12706 return isl_basic_set_finalize(bset
);
12708 isl_basic_set_free(bset
);
12712 /* Plug in "subs" for dimension "type", "pos" of "set".
12714 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12715 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12719 if (set
&& isl_set_plain_is_empty(set
))
12722 set
= isl_set_cow(set
);
12726 for (i
= set
->n
- 1; i
>= 0; --i
) {
12727 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12728 if (remove_if_empty(set
, i
) < 0)
12738 /* Check if the range of "ma" is compatible with the domain or range
12739 * (depending on "type") of "bmap".
12741 static isl_stat
check_basic_map_compatible_range_multi_aff(
12742 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12743 __isl_keep isl_multi_aff
*ma
)
12746 isl_space
*ma_space
;
12748 ma_space
= isl_multi_aff_get_space(ma
);
12750 m
= isl_space_match(bmap
->dim
, isl_dim_param
, ma_space
, isl_dim_param
);
12754 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12755 "parameters don't match", goto error
);
12756 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12760 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12761 "spaces don't match", goto error
);
12763 isl_space_free(ma_space
);
12764 return isl_stat_ok
;
12766 isl_space_free(ma_space
);
12767 return isl_stat_error
;
12770 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12771 * coefficients before the transformed range of dimensions,
12772 * the "n_after" coefficients after the transformed range of dimensions
12773 * and the coefficients of the other divs in "bmap".
12775 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12776 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12781 isl_local_space
*ls
;
12786 ls
= isl_aff_get_domain_local_space(ma
->p
[0]);
12790 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12791 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12792 for (i
= 0; i
< n_div
; ++i
) {
12793 int o_bmap
= 0, o_ls
= 0;
12795 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12796 o_bmap
+= 1 + 1 + n_param
;
12797 o_ls
+= 1 + 1 + n_param
;
12798 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12799 o_bmap
+= n_before
;
12800 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12801 ls
->div
->row
[i
] + o_ls
, n_set
);
12804 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12806 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12807 ls
->div
->row
[i
] + o_ls
, n_div
);
12810 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12811 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
12815 isl_local_space_free(ls
);
12818 isl_local_space_free(ls
);
12822 /* How many stride constraints does "ma" enforce?
12823 * That is, how many of the affine expressions have a denominator
12824 * different from one?
12826 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12831 for (i
= 0; i
< ma
->n
; ++i
)
12832 if (!isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12838 /* For each affine expression in ma of the form
12840 * x_i = (f_i y + h_i)/m_i
12842 * with m_i different from one, add a constraint to "bmap"
12845 * f_i y + h_i = m_i alpha_i
12847 * with alpha_i an additional existentially quantified variable.
12849 * The input variables of "ma" correspond to a subset of the variables
12850 * of "bmap". There are "n_before" variables in "bmap" before this
12851 * subset and "n_after" variables after this subset.
12852 * The integer divisions of the affine expressions in "ma" are assumed
12853 * to have been aligned. There are "n_div_ma" of them and
12854 * they appear first in "bmap", straight after the "n_after" variables.
12856 static __isl_give isl_basic_map
*add_ma_strides(
12857 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12858 int n_before
, int n_after
, int n_div_ma
)
12866 total
= isl_basic_map_total_dim(bmap
);
12867 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12868 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12869 for (i
= 0; i
< ma
->n
; ++i
) {
12870 int o_bmap
= 0, o_ma
= 1;
12872 if (isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12874 div
= isl_basic_map_alloc_div(bmap
);
12875 k
= isl_basic_map_alloc_equality(bmap
);
12876 if (div
< 0 || k
< 0)
12878 isl_int_set_si(bmap
->div
[div
][0], 0);
12879 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12880 ma
->p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12881 o_bmap
+= 1 + n_param
;
12882 o_ma
+= 1 + n_param
;
12883 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12884 o_bmap
+= n_before
;
12885 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12886 ma
->p
[i
]->v
->el
+ o_ma
, n_in
);
12889 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12891 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12892 ma
->p
[i
]->v
->el
+ o_ma
, n_div_ma
);
12893 o_bmap
+= n_div_ma
;
12895 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12896 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->p
[i
]->v
->el
[0]);
12902 isl_basic_map_free(bmap
);
12906 /* Replace the domain or range space (depending on "type) of "space" by "set".
12908 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12909 enum isl_dim_type type
, __isl_take isl_space
*set
)
12911 if (type
== isl_dim_in
) {
12912 space
= isl_space_range(space
);
12913 space
= isl_space_map_from_domain_and_range(set
, space
);
12915 space
= isl_space_domain(space
);
12916 space
= isl_space_map_from_domain_and_range(space
, set
);
12922 /* Compute the preimage of the domain or range (depending on "type")
12923 * of "bmap" under the function represented by "ma".
12924 * In other words, plug in "ma" in the domain or range of "bmap".
12925 * The result is a basic map that lives in the same space as "bmap"
12926 * except that the domain or range has been replaced by
12927 * the domain space of "ma".
12929 * If bmap is represented by
12931 * A(p) + S u + B x + T v + C(divs) >= 0,
12933 * where u and x are input and output dimensions if type == isl_dim_out
12934 * while x and v are input and output dimensions if type == isl_dim_in,
12935 * and ma is represented by
12937 * x = D(p) + F(y) + G(divs')
12939 * then the result is
12941 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12943 * The divs in the input set are similarly adjusted.
12946 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12950 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12951 * B_i G(divs') + c_i(divs))/n_i)
12953 * If bmap is not a rational map and if F(y) involves any denominators
12955 * x_i = (f_i y + h_i)/m_i
12957 * then additional constraints are added to ensure that we only
12958 * map back integer points. That is we enforce
12960 * f_i y + h_i = m_i alpha_i
12962 * with alpha_i an additional existentially quantified variable.
12964 * We first copy over the divs from "ma".
12965 * Then we add the modified constraints and divs from "bmap".
12966 * Finally, we add the stride constraints, if needed.
12968 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12969 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12970 __isl_take isl_multi_aff
*ma
)
12974 isl_basic_map
*res
= NULL
;
12975 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12976 isl_int f
, c1
, c2
, g
;
12985 ma
= isl_multi_aff_align_divs(ma
);
12988 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12991 if (type
== isl_dim_in
) {
12993 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12995 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
12998 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
12999 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
13001 space
= isl_multi_aff_get_domain_space(ma
);
13002 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
13003 rational
= isl_basic_map_is_rational(bmap
);
13004 strides
= rational
? 0 : multi_aff_strides(ma
);
13005 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
13006 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
13008 res
= isl_basic_map_set_rational(res
);
13010 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
13011 if (isl_basic_map_alloc_div(res
) < 0)
13014 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
13017 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
13018 k
= isl_basic_map_alloc_equality(res
);
13021 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
13022 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13025 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
13026 k
= isl_basic_map_alloc_inequality(res
);
13029 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
13030 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13033 for (i
= 0; i
< bmap
->n_div
; ++i
) {
13034 if (isl_int_is_zero(bmap
->div
[i
][0])) {
13035 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
13038 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
13039 n_before
, n_after
, n_div_ma
, n_div_bmap
,
13044 res
= add_ma_strides(res
, ma
, n_before
, n_after
, n_div_ma
);
13050 isl_basic_map_free(bmap
);
13051 isl_multi_aff_free(ma
);
13052 res
= isl_basic_map_simplify(res
);
13053 return isl_basic_map_finalize(res
);
13059 isl_basic_map_free(bmap
);
13060 isl_multi_aff_free(ma
);
13061 isl_basic_map_free(res
);
13065 /* Compute the preimage of "bset" under the function represented by "ma".
13066 * In other words, plug in "ma" in "bset". The result is a basic set
13067 * that lives in the domain space of "ma".
13069 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
13070 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
13072 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
13075 /* Compute the preimage of the domain of "bmap" under the function
13076 * represented by "ma".
13077 * In other words, plug in "ma" in the domain of "bmap".
13078 * The result is a basic map that lives in the same space as "bmap"
13079 * except that the domain has been replaced by the domain space of "ma".
13081 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
13082 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13084 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
13087 /* Compute the preimage of the range of "bmap" under the function
13088 * represented by "ma".
13089 * In other words, plug in "ma" in the range of "bmap".
13090 * The result is a basic map that lives in the same space as "bmap"
13091 * except that the range has been replaced by the domain space of "ma".
13093 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
13094 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13096 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
13099 /* Check if the range of "ma" is compatible with the domain or range
13100 * (depending on "type") of "map".
13101 * Return isl_stat_error if anything is wrong.
13103 static isl_stat
check_map_compatible_range_multi_aff(
13104 __isl_keep isl_map
*map
, enum isl_dim_type type
,
13105 __isl_keep isl_multi_aff
*ma
)
13108 isl_space
*ma_space
;
13110 ma_space
= isl_multi_aff_get_space(ma
);
13111 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
13112 isl_space_free(ma_space
);
13114 return isl_stat_error
;
13116 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
13117 "spaces don't match", return isl_stat_error
);
13118 return isl_stat_ok
;
13121 /* Compute the preimage of the domain or range (depending on "type")
13122 * of "map" under the function represented by "ma".
13123 * In other words, plug in "ma" in the domain or range of "map".
13124 * The result is a map that lives in the same space as "map"
13125 * except that the domain or range has been replaced by
13126 * the domain space of "ma".
13128 * The parameters are assumed to have been aligned.
13130 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
13131 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13136 map
= isl_map_cow(map
);
13137 ma
= isl_multi_aff_align_divs(ma
);
13140 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
13143 for (i
= 0; i
< map
->n
; ++i
) {
13144 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
13145 isl_multi_aff_copy(ma
));
13150 space
= isl_multi_aff_get_domain_space(ma
);
13151 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
13153 isl_space_free(map
->dim
);
13158 isl_multi_aff_free(ma
);
13160 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
13161 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
13164 isl_multi_aff_free(ma
);
13169 /* Compute the preimage of the domain or range (depending on "type")
13170 * of "map" under the function represented by "ma".
13171 * In other words, plug in "ma" in the domain or range of "map".
13172 * The result is a map that lives in the same space as "map"
13173 * except that the domain or range has been replaced by
13174 * the domain space of "ma".
13176 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
13177 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13182 if (isl_space_match(map
->dim
, isl_dim_param
, ma
->space
, isl_dim_param
))
13183 return map_preimage_multi_aff(map
, type
, ma
);
13185 if (!isl_space_has_named_params(map
->dim
) ||
13186 !isl_space_has_named_params(ma
->space
))
13187 isl_die(map
->ctx
, isl_error_invalid
,
13188 "unaligned unnamed parameters", goto error
);
13189 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
13190 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
13192 return map_preimage_multi_aff(map
, type
, ma
);
13194 isl_multi_aff_free(ma
);
13195 return isl_map_free(map
);
13198 /* Compute the preimage of "set" under the function represented by "ma".
13199 * In other words, plug in "ma" in "set". The result is a set
13200 * that lives in the domain space of "ma".
13202 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
13203 __isl_take isl_multi_aff
*ma
)
13205 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
13208 /* Compute the preimage of the domain of "map" under the function
13209 * represented by "ma".
13210 * In other words, plug in "ma" in the domain of "map".
13211 * The result is a map that lives in the same space as "map"
13212 * except that the domain has been replaced by the domain space of "ma".
13214 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
13215 __isl_take isl_multi_aff
*ma
)
13217 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
13220 /* Compute the preimage of the range of "map" under the function
13221 * represented by "ma".
13222 * In other words, plug in "ma" in the range of "map".
13223 * The result is a map that lives in the same space as "map"
13224 * except that the range has been replaced by the domain space of "ma".
13226 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
13227 __isl_take isl_multi_aff
*ma
)
13229 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
13232 /* Compute the preimage of "map" under the function represented by "pma".
13233 * In other words, plug in "pma" in the domain or range of "map".
13234 * The result is a map that lives in the same space as "map",
13235 * except that the space of type "type" has been replaced by
13236 * the domain space of "pma".
13238 * The parameters of "map" and "pma" are assumed to have been aligned.
13240 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
13241 __isl_take isl_map
*map
, enum isl_dim_type type
,
13242 __isl_take isl_pw_multi_aff
*pma
)
13251 isl_pw_multi_aff_free(pma
);
13252 res
= isl_map_empty(isl_map_get_space(map
));
13257 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13258 isl_multi_aff_copy(pma
->p
[0].maff
));
13259 if (type
== isl_dim_in
)
13260 res
= isl_map_intersect_domain(res
,
13261 isl_map_copy(pma
->p
[0].set
));
13263 res
= isl_map_intersect_range(res
,
13264 isl_map_copy(pma
->p
[0].set
));
13266 for (i
= 1; i
< pma
->n
; ++i
) {
13269 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13270 isl_multi_aff_copy(pma
->p
[i
].maff
));
13271 if (type
== isl_dim_in
)
13272 res_i
= isl_map_intersect_domain(res_i
,
13273 isl_map_copy(pma
->p
[i
].set
));
13275 res_i
= isl_map_intersect_range(res_i
,
13276 isl_map_copy(pma
->p
[i
].set
));
13277 res
= isl_map_union(res
, res_i
);
13280 isl_pw_multi_aff_free(pma
);
13284 isl_pw_multi_aff_free(pma
);
13289 /* Compute the preimage of "map" under the function represented by "pma".
13290 * In other words, plug in "pma" in the domain or range of "map".
13291 * The result is a map that lives in the same space as "map",
13292 * except that the space of type "type" has been replaced by
13293 * the domain space of "pma".
13295 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
13296 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
13301 if (isl_space_match(map
->dim
, isl_dim_param
, pma
->dim
, isl_dim_param
))
13302 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13304 if (!isl_space_has_named_params(map
->dim
) ||
13305 !isl_space_has_named_params(pma
->dim
))
13306 isl_die(map
->ctx
, isl_error_invalid
,
13307 "unaligned unnamed parameters", goto error
);
13308 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
13309 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
13311 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13313 isl_pw_multi_aff_free(pma
);
13314 return isl_map_free(map
);
13317 /* Compute the preimage of "set" under the function represented by "pma".
13318 * In other words, plug in "pma" in "set". The result is a set
13319 * that lives in the domain space of "pma".
13321 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
13322 __isl_take isl_pw_multi_aff
*pma
)
13324 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
13327 /* Compute the preimage of the domain of "map" under the function
13328 * represented by "pma".
13329 * In other words, plug in "pma" in the domain of "map".
13330 * The result is a map that lives in the same space as "map",
13331 * except that domain space has been replaced by the domain space of "pma".
13333 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
13334 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13336 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
13339 /* Compute the preimage of the range of "map" under the function
13340 * represented by "pma".
13341 * In other words, plug in "pma" in the range of "map".
13342 * The result is a map that lives in the same space as "map",
13343 * except that range space has been replaced by the domain space of "pma".
13345 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
13346 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13348 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
13351 /* Compute the preimage of "map" under the function represented by "mpa".
13352 * In other words, plug in "mpa" in the domain or range of "map".
13353 * The result is a map that lives in the same space as "map",
13354 * except that the space of type "type" has been replaced by
13355 * the domain space of "mpa".
13357 * If the map does not involve any constraints that refer to the
13358 * dimensions of the substituted space, then the only possible
13359 * effect of "mpa" on the map is to map the space to a different space.
13360 * We create a separate isl_multi_aff to effectuate this change
13361 * in order to avoid spurious splitting of the map along the pieces
13364 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
13365 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
13368 isl_pw_multi_aff
*pma
;
13373 n
= isl_map_dim(map
, type
);
13374 if (!isl_map_involves_dims(map
, type
, 0, n
)) {
13378 space
= isl_multi_pw_aff_get_space(mpa
);
13379 isl_multi_pw_aff_free(mpa
);
13380 ma
= isl_multi_aff_zero(space
);
13381 return isl_map_preimage_multi_aff(map
, type
, ma
);
13384 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
13385 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
13388 isl_multi_pw_aff_free(mpa
);
13392 /* Compute the preimage of "map" under the function represented by "mpa".
13393 * In other words, plug in "mpa" in the domain "map".
13394 * The result is a map that lives in the same space as "map",
13395 * except that domain space has been replaced by the domain space of "mpa".
13397 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
13398 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
13400 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
13403 /* Compute the preimage of "set" by the function represented by "mpa".
13404 * In other words, plug in "mpa" in "set".
13406 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
13407 __isl_take isl_multi_pw_aff
*mpa
)
13409 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);
13412 /* Are the "n" "coefficients" starting at "first" of the integer division
13413 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13415 * The "coefficient" at position 0 is the denominator.
13416 * The "coefficient" at position 1 is the constant term.
13418 isl_bool
isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map
*bmap1
,
13419 int pos1
, __isl_keep isl_basic_map
*bmap2
, int pos2
,
13420 unsigned first
, unsigned n
)
13422 if (isl_basic_map_check_range(bmap1
, isl_dim_div
, pos1
, 1) < 0)
13423 return isl_bool_error
;
13424 if (isl_basic_map_check_range(bmap2
, isl_dim_div
, pos2
, 1) < 0)
13425 return isl_bool_error
;
13426 return isl_seq_eq(bmap1
->div
[pos1
] + first
,
13427 bmap2
->div
[pos2
] + first
, n
);
13430 /* Are the integer division expressions at position "pos1" in "bmap1" and
13431 * "pos2" in "bmap2" equal to each other, except that the constant terms
13434 isl_bool
isl_basic_map_equal_div_expr_except_constant(
13435 __isl_keep isl_basic_map
*bmap1
, int pos1
,
13436 __isl_keep isl_basic_map
*bmap2
, int pos2
)
13441 if (!bmap1
|| !bmap2
)
13442 return isl_bool_error
;
13443 total
= isl_basic_map_total_dim(bmap1
);
13444 if (total
!= isl_basic_map_total_dim(bmap2
))
13445 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
13446 "incomparable div expressions", return isl_bool_error
);
13447 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13449 if (equal
< 0 || !equal
)
13451 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13453 if (equal
< 0 || equal
)
13454 return isl_bool_not(equal
);
13455 return isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13459 /* Replace the numerator of the constant term of the integer division
13460 * expression at position "div" in "bmap" by "value".
13461 * The caller guarantees that this does not change the meaning
13464 __isl_give isl_basic_map
*isl_basic_map_set_div_expr_constant_num_si_inplace(
13465 __isl_take isl_basic_map
*bmap
, int div
, int value
)
13467 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
13468 return isl_basic_map_free(bmap
);
13470 isl_int_set_si(bmap
->div
[div
][1], value
);
13475 /* Is the point "inner" internal to inequality constraint "ineq"
13477 * The point is considered to be internal to the inequality constraint,
13478 * if it strictly lies on the positive side of the inequality constraint,
13479 * or if it lies on the constraint and the constraint is lexico-positive.
13481 static isl_bool
is_internal(__isl_keep isl_vec
*inner
,
13482 __isl_keep isl_basic_set
*bset
, int ineq
)
13488 if (!inner
|| !bset
)
13489 return isl_bool_error
;
13491 ctx
= isl_basic_set_get_ctx(bset
);
13492 isl_seq_inner_product(inner
->el
, bset
->ineq
[ineq
], inner
->size
,
13493 &ctx
->normalize_gcd
);
13494 if (!isl_int_is_zero(ctx
->normalize_gcd
))
13495 return isl_int_is_nonneg(ctx
->normalize_gcd
);
13497 total
= isl_basic_set_dim(bset
, isl_dim_all
);
13498 pos
= isl_seq_first_non_zero(bset
->ineq
[ineq
] + 1, total
);
13499 return isl_int_is_pos(bset
->ineq
[ineq
][1 + pos
]);
13502 /* Tighten the inequality constraints of "bset" that are outward with respect
13503 * to the point "vec".
13504 * That is, tighten the constraints that are not satisfied by "vec".
13506 * "vec" is a point internal to some superset S of "bset" that is used
13507 * to make the subsets of S disjoint, by tightening one half of the constraints
13508 * that separate two subsets. In particular, the constraints of S
13509 * are all satisfied by "vec" and should not be tightened.
13510 * Of the internal constraints, those that have "vec" on the outside
13511 * are tightened. The shared facet is included in the adjacent subset
13512 * with the opposite constraint.
13513 * For constraints that saturate "vec", this criterion cannot be used
13514 * to determine which of the two sides should be tightened.
13515 * Instead, the sign of the first non-zero coefficient is used
13516 * to make this choice. Note that this second criterion is never used
13517 * on the constraints of S since "vec" is interior to "S".
13519 __isl_give isl_basic_set
*isl_basic_set_tighten_outward(
13520 __isl_take isl_basic_set
*bset
, __isl_keep isl_vec
*vec
)
13524 bset
= isl_basic_set_cow(bset
);
13527 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
13530 internal
= is_internal(vec
, bset
, j
);
13532 return isl_basic_set_free(bset
);
13535 isl_int_sub_ui(bset
->ineq
[j
][0], bset
->ineq
[j
][0], 1);