1 #include "isl_equalities.h"
3 #include "isl_map_private.h"
5 static void swap_equality(struct isl_basic_map
*bmap
, int a
, int b
)
7 isl_int
*t
= bmap
->eq
[a
];
8 bmap
->eq
[a
] = bmap
->eq
[b
];
12 static void swap_inequality(struct isl_basic_map
*bmap
, int a
, int b
)
15 isl_int
*t
= bmap
->ineq
[a
];
16 bmap
->ineq
[a
] = bmap
->ineq
[b
];
21 static void set_swap_inequality(struct isl_basic_set
*bset
, int a
, int b
)
23 swap_inequality((struct isl_basic_map
*)bset
, a
, b
);
26 static void constraint_drop_vars(isl_int
*c
, unsigned n
, unsigned rem
)
28 isl_seq_cpy(c
, c
+ n
, rem
);
29 isl_seq_clr(c
+ rem
, n
);
32 /* Drop n dimensions starting at first.
34 * In principle, this frees up some extra variables as the number
35 * of columns remains constant, but we would have to extend
36 * the div array too as the number of rows in this array is assumed
37 * to be equal to extra.
39 struct isl_basic_set
*isl_basic_set_drop_dims(
40 struct isl_basic_set
*bset
, unsigned first
, unsigned n
)
47 isl_assert(bset
->ctx
, first
+ n
<= bset
->dim
->n_out
, goto error
);
52 bset
= isl_basic_set_cow(bset
);
56 for (i
= 0; i
< bset
->n_eq
; ++i
)
57 constraint_drop_vars(bset
->eq
[i
]+1+bset
->dim
->nparam
+first
, n
,
58 (bset
->dim
->n_out
-first
-n
)+bset
->extra
);
60 for (i
= 0; i
< bset
->n_ineq
; ++i
)
61 constraint_drop_vars(bset
->ineq
[i
]+1+bset
->dim
->nparam
+first
, n
,
62 (bset
->dim
->n_out
-first
-n
)+bset
->extra
);
64 for (i
= 0; i
< bset
->n_div
; ++i
)
65 constraint_drop_vars(bset
->div
[i
]+1+1+bset
->dim
->nparam
+first
, n
,
66 (bset
->dim
->n_out
-first
-n
)+bset
->extra
);
68 bset
->dim
= isl_dim_drop_outputs(bset
->dim
, first
, n
);
72 ISL_F_CLR(bset
, ISL_BASIC_SET_NORMALIZED
);
73 bset
= isl_basic_set_simplify(bset
);
74 return isl_basic_set_finalize(bset
);
76 isl_basic_set_free(bset
);
80 struct isl_set
*isl_set_drop_dims(
81 struct isl_set
*set
, unsigned first
, unsigned n
)
88 isl_assert(set
->ctx
, first
+ n
<= set
->dim
->n_out
, goto error
);
92 set
= isl_set_cow(set
);
95 set
->dim
= isl_dim_drop_outputs(set
->dim
, first
, n
);
99 for (i
= 0; i
< set
->n
; ++i
) {
100 set
->p
[i
] = isl_basic_set_drop_dims(set
->p
[i
], first
, n
);
105 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
112 /* Drop n input dimensions starting at first.
114 * In principle, this frees up some extra variables as the number
115 * of columns remains constant, but we would have to extend
116 * the div array too as the number of rows in this array is assumed
117 * to be equal to extra.
119 struct isl_basic_map
*isl_basic_map_drop(struct isl_basic_map
*bmap
,
120 enum isl_dim_type type
, unsigned first
, unsigned n
)
130 dim
= isl_basic_map_dim(bmap
, type
);
131 isl_assert(bmap
->ctx
, first
+ n
<= dim
, goto error
);
136 bmap
= isl_basic_map_cow(bmap
);
140 offset
= isl_basic_map_offset(bmap
, type
) + first
;
141 left
= isl_basic_map_total_dim(bmap
) - (offset
- 1) - n
;
142 for (i
= 0; i
< bmap
->n_eq
; ++i
)
143 constraint_drop_vars(bmap
->eq
[i
]+offset
, n
, left
);
145 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
146 constraint_drop_vars(bmap
->ineq
[i
]+offset
, n
, left
);
148 for (i
= 0; i
< bmap
->n_div
; ++i
)
149 constraint_drop_vars(bmap
->div
[i
]+1+offset
, n
, left
);
151 bmap
->dim
= isl_dim_drop(bmap
->dim
, type
, first
, n
);
155 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
156 bmap
= isl_basic_map_simplify(bmap
);
157 return isl_basic_map_finalize(bmap
);
159 isl_basic_map_free(bmap
);
163 struct isl_basic_map
*isl_basic_map_drop_inputs(
164 struct isl_basic_map
*bmap
, unsigned first
, unsigned n
)
166 return isl_basic_map_drop(bmap
, isl_dim_in
, first
, n
);
169 struct isl_map
*isl_map_drop(struct isl_map
*map
,
170 enum isl_dim_type type
, unsigned first
, unsigned n
)
177 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
181 map
= isl_map_cow(map
);
184 map
->dim
= isl_dim_drop(map
->dim
, type
, first
, n
);
188 for (i
= 0; i
< map
->n
; ++i
) {
189 map
->p
[i
] = isl_basic_map_drop(map
->p
[i
], type
, first
, n
);
193 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
201 struct isl_map
*isl_map_drop_inputs(
202 struct isl_map
*map
, unsigned first
, unsigned n
)
204 return isl_map_drop(map
, isl_dim_in
, first
, n
);
208 * We don't cow, as the div is assumed to be redundant.
210 static struct isl_basic_map
*isl_basic_map_drop_div(
211 struct isl_basic_map
*bmap
, unsigned div
)
219 pos
= 1 + isl_dim_total(bmap
->dim
) + div
;
221 isl_assert(bmap
->ctx
, div
< bmap
->n_div
, goto error
);
223 for (i
= 0; i
< bmap
->n_eq
; ++i
)
224 constraint_drop_vars(bmap
->eq
[i
]+pos
, 1, bmap
->extra
-div
-1);
226 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
227 if (!isl_int_is_zero(bmap
->ineq
[i
][pos
])) {
228 isl_basic_map_drop_inequality(bmap
, i
);
232 constraint_drop_vars(bmap
->ineq
[i
]+pos
, 1, bmap
->extra
-div
-1);
235 for (i
= 0; i
< bmap
->n_div
; ++i
)
236 constraint_drop_vars(bmap
->div
[i
]+1+pos
, 1, bmap
->extra
-div
-1);
238 if (div
!= bmap
->n_div
- 1) {
240 isl_int
*t
= bmap
->div
[div
];
242 for (j
= div
; j
< bmap
->n_div
- 1; ++j
)
243 bmap
->div
[j
] = bmap
->div
[j
+1];
245 bmap
->div
[bmap
->n_div
- 1] = t
;
247 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
248 isl_basic_map_free_div(bmap
, 1);
252 isl_basic_map_free(bmap
);
256 struct isl_basic_map
*isl_basic_map_normalize_constraints(
257 struct isl_basic_map
*bmap
)
261 unsigned total
= isl_basic_map_total_dim(bmap
);
264 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
265 isl_seq_gcd(bmap
->eq
[i
]+1, total
, &gcd
);
266 if (isl_int_is_zero(gcd
)) {
267 if (!isl_int_is_zero(bmap
->eq
[i
][0])) {
268 bmap
= isl_basic_map_set_to_empty(bmap
);
271 isl_basic_map_drop_equality(bmap
, i
);
274 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
275 isl_int_gcd(gcd
, gcd
, bmap
->eq
[i
][0]);
276 if (isl_int_is_one(gcd
))
278 if (!isl_int_is_divisible_by(bmap
->eq
[i
][0], gcd
)) {
279 bmap
= isl_basic_map_set_to_empty(bmap
);
282 isl_seq_scale_down(bmap
->eq
[i
], bmap
->eq
[i
], gcd
, 1+total
);
285 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
286 isl_seq_gcd(bmap
->ineq
[i
]+1, total
, &gcd
);
287 if (isl_int_is_zero(gcd
)) {
288 if (isl_int_is_neg(bmap
->ineq
[i
][0])) {
289 bmap
= isl_basic_map_set_to_empty(bmap
);
292 isl_basic_map_drop_inequality(bmap
, i
);
295 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
296 isl_int_gcd(gcd
, gcd
, bmap
->ineq
[i
][0]);
297 if (isl_int_is_one(gcd
))
299 isl_int_fdiv_q(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], gcd
);
300 isl_seq_scale_down(bmap
->ineq
[i
]+1, bmap
->ineq
[i
]+1, gcd
, total
);
307 struct isl_basic_set
*isl_basic_set_normalize_constraints(
308 struct isl_basic_set
*bset
)
310 (struct isl_basic_set
*)isl_basic_map_normalize_constraints(
311 (struct isl_basic_map
*)bset
);
314 static void eliminate_div(struct isl_basic_map
*bmap
, isl_int
*eq
, unsigned div
)
317 unsigned pos
= 1 + isl_dim_total(bmap
->dim
) + div
;
319 len
= 1 + isl_basic_map_total_dim(bmap
);
321 for (i
= 0; i
< bmap
->n_eq
; ++i
)
322 if (bmap
->eq
[i
] != eq
)
323 isl_seq_elim(bmap
->eq
[i
], eq
, pos
, len
, NULL
);
325 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
326 isl_seq_elim(bmap
->ineq
[i
], eq
, pos
, len
, NULL
);
328 /* We need to be careful about circular definitions,
329 * so for now we just remove the definitions of other divs that
330 * depend on this div and (possibly) recompute them later.
332 for (i
= 0; i
< bmap
->n_div
; ++i
)
333 if (!isl_int_is_zero(bmap
->div
[i
][0]) &&
334 !isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
335 isl_seq_clr(bmap
->div
[i
], 1 + len
);
337 isl_basic_map_drop_div(bmap
, div
);
340 /* Elimininate divs based on equalities
342 static struct isl_basic_map
*eliminate_divs_eq(
343 struct isl_basic_map
*bmap
, int *progress
)
353 off
= 1 + isl_dim_total(bmap
->dim
);
355 for (d
= bmap
->n_div
- 1; d
>= 0 ; --d
) {
356 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
357 if (!isl_int_is_one(bmap
->eq
[i
][off
+ d
]) &&
358 !isl_int_is_negone(bmap
->eq
[i
][off
+ d
]))
362 eliminate_div(bmap
, bmap
->eq
[i
], d
);
363 isl_basic_map_drop_equality(bmap
, i
);
368 return eliminate_divs_eq(bmap
, progress
);
372 /* Elimininate divs based on inequalities
374 static struct isl_basic_map
*eliminate_divs_ineq(
375 struct isl_basic_map
*bmap
, int *progress
)
386 off
= 1 + isl_dim_total(bmap
->dim
);
388 for (d
= bmap
->n_div
- 1; d
>= 0 ; --d
) {
389 for (i
= 0; i
< bmap
->n_eq
; ++i
)
390 if (!isl_int_is_zero(bmap
->eq
[i
][off
+ d
]))
394 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
395 if (isl_int_abs_gt(bmap
->ineq
[i
][off
+ d
], ctx
->one
))
397 if (i
< bmap
->n_ineq
)
400 bmap
= isl_basic_map_eliminate_vars(bmap
, (off
-1)+d
, 1);
401 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
403 bmap
= isl_basic_map_drop_div(bmap
, d
);
410 static void eliminate_var_using_equality(struct isl_basic_map
*bmap
,
411 unsigned pos
, isl_int
*eq
, int *progress
)
417 total
= isl_basic_map_total_dim(bmap
);
419 isl_seq_first_non_zero(eq
+ 1 + isl_dim_total(bmap
->dim
),
421 for (k
= 0; k
< bmap
->n_eq
; ++k
) {
422 if (bmap
->eq
[k
] == eq
)
424 if (isl_int_is_zero(bmap
->eq
[k
][1+pos
]))
428 isl_seq_elim(bmap
->eq
[k
], eq
, 1+pos
, 1+total
, NULL
);
431 for (k
= 0; k
< bmap
->n_ineq
; ++k
) {
432 if (isl_int_is_zero(bmap
->ineq
[k
][1+pos
]))
436 isl_seq_elim(bmap
->ineq
[k
], eq
, 1+pos
, 1+total
, NULL
);
437 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
440 for (k
= 0; k
< bmap
->n_div
; ++k
) {
441 if (isl_int_is_zero(bmap
->div
[k
][0]))
443 if (isl_int_is_zero(bmap
->div
[k
][1+1+pos
]))
447 /* We need to be careful about circular definitions,
448 * so for now we just remove the definition of div k
449 * if the equality contains any divs.
452 isl_seq_clr(bmap
->div
[k
], 1 + total
);
454 isl_seq_elim(bmap
->div
[k
]+1, eq
,
455 1+pos
, 1+total
, &bmap
->div
[k
][0]);
456 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
460 struct isl_basic_map
*isl_basic_map_gauss(
461 struct isl_basic_map
*bmap
, int *progress
)
472 total
= isl_basic_map_total_dim(bmap
);
473 total_var
= total
- bmap
->n_div
;
475 last_var
= total
- 1;
476 for (done
= 0; done
< bmap
->n_eq
; ++done
) {
477 for (; last_var
>= 0; --last_var
) {
478 for (k
= done
; k
< bmap
->n_eq
; ++k
)
479 if (!isl_int_is_zero(bmap
->eq
[k
][1+last_var
]))
487 swap_equality(bmap
, k
, done
);
488 if (isl_int_is_neg(bmap
->eq
[done
][1+last_var
]))
489 isl_seq_neg(bmap
->eq
[done
], bmap
->eq
[done
], 1+total
);
491 eliminate_var_using_equality(bmap
, last_var
, bmap
->eq
[done
],
494 if (last_var
>= total_var
&&
495 isl_int_is_zero(bmap
->div
[last_var
- total_var
][0])) {
496 unsigned div
= last_var
- total_var
;
497 isl_seq_neg(bmap
->div
[div
]+1, bmap
->eq
[done
], 1+total
);
498 isl_int_set_si(bmap
->div
[div
][1+1+last_var
], 0);
499 isl_int_set(bmap
->div
[div
][0],
500 bmap
->eq
[done
][1+last_var
]);
501 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
504 if (done
== bmap
->n_eq
)
506 for (k
= done
; k
< bmap
->n_eq
; ++k
) {
507 if (isl_int_is_zero(bmap
->eq
[k
][0]))
509 return isl_basic_map_set_to_empty(bmap
);
511 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-done
);
515 struct isl_basic_set
*isl_basic_set_gauss(
516 struct isl_basic_set
*bset
, int *progress
)
518 return (struct isl_basic_set
*)isl_basic_map_gauss(
519 (struct isl_basic_map
*)bset
, progress
);
523 static unsigned int round_up(unsigned int v
)
534 static int hash_index(isl_int
***index
, unsigned int size
, int bits
,
535 struct isl_basic_map
*bmap
, int k
)
538 unsigned total
= isl_basic_map_total_dim(bmap
);
539 uint32_t hash
= isl_seq_get_hash_bits(bmap
->ineq
[k
]+1, total
, bits
);
540 for (h
= hash
; index
[h
]; h
= (h
+1) % size
)
541 if (&bmap
->ineq
[k
] != index
[h
] &&
542 isl_seq_eq(bmap
->ineq
[k
]+1, index
[h
][0]+1, total
))
547 static int set_hash_index(isl_int
***index
, unsigned int size
, int bits
,
548 struct isl_basic_set
*bset
, int k
)
550 return hash_index(index
, size
, bits
, (struct isl_basic_map
*)bset
, k
);
553 /* If we can eliminate more than one div, then we need to make
554 * sure we do it from last div to first div, in order not to
555 * change the position of the other divs that still need to
558 static struct isl_basic_map
*remove_duplicate_divs(
559 struct isl_basic_map
*bmap
, int *progress
)
567 unsigned total_var
= isl_dim_total(bmap
->dim
);
568 unsigned total
= total_var
+ bmap
->n_div
;
571 if (bmap
->n_div
<= 1)
575 for (k
= bmap
->n_div
- 1; k
>= 0; --k
)
576 if (!isl_int_is_zero(bmap
->div
[k
][0]))
581 elim_for
= isl_calloc_array(ctx
, int, bmap
->n_div
);
582 size
= round_up(4 * bmap
->n_div
/ 3 - 1);
583 bits
= ffs(size
) - 1;
584 index
= isl_calloc_array(ctx
, int, size
);
587 eq
= isl_blk_alloc(ctx
, 1+total
);
588 if (isl_blk_is_error(eq
))
591 isl_seq_clr(eq
.data
, 1+total
);
592 index
[isl_seq_get_hash_bits(bmap
->div
[k
], 2+total
, bits
)] = k
+ 1;
593 for (--k
; k
>= 0; --k
) {
596 if (isl_int_is_zero(bmap
->div
[k
][0]))
599 hash
= isl_seq_get_hash_bits(bmap
->div
[k
], 2+total
, bits
);
600 for (h
= hash
; index
[h
]; h
= (h
+1) % size
)
601 if (isl_seq_eq(bmap
->div
[k
],
602 bmap
->div
[index
[h
]-1], 2+total
))
611 for (l
= bmap
->n_div
- 1; l
>= 0; --l
) {
615 isl_int_set_si(eq
.data
[1+total_var
+k
], -1);
616 isl_int_set_si(eq
.data
[1+total_var
+l
], 1);
617 eliminate_div(bmap
, eq
.data
, l
);
618 isl_int_set_si(eq
.data
[1+total_var
+k
], 0);
619 isl_int_set_si(eq
.data
[1+total_var
+l
], 0);
622 isl_blk_free(ctx
, eq
);
629 /* Normalize divs that appear in equalities.
631 * In particular, we assume that bmap contains some equalities
636 * and we want to replace the set of e_i by a minimal set and
637 * such that the new e_i have a canonical representation in terms
639 * If any of the equalities involves more than one divs, then
640 * we currently simply bail out.
642 * Let us first additionally assume that all equalities involve
643 * a div. The equalities then express modulo constraints on the
644 * remaining variables and we can use "parameter compression"
645 * to find a minimal set of constraints. The result is a transformation
647 * x = T(x') = x_0 + G x'
649 * with G a lower-triangular matrix with all elements below the diagonal
650 * non-negative and smaller than the diagonal element on the same row.
651 * We first normalize x_0 by making the same property hold in the affine
653 * The rows i of G with a 1 on the diagonal do not impose any modulo
654 * constraint and simply express x_i = x'_i.
655 * For each of the remaining rows i, we introduce a div and a corresponding
656 * equality. In particular
658 * g_ii e_j = x_i - g_i(x')
660 * where each x'_k is replaced either by x_k (if g_kk = 1) or the
661 * corresponding div (if g_kk != 1).
663 * If there are any equalities not involving any div, then we
664 * first apply a variable compression on the variables x:
666 * x = C x'' x'' = C_2 x
668 * and perform the above parameter compression on A C instead of on A.
669 * The resulting compression is then of the form
671 * x'' = T(x') = x_0 + G x'
673 * and in constructing the new divs and the corresponding equalities,
674 * we have to replace each x'', i.e., the x'_k with (g_kk = 1),
675 * by the corresponding row from C_2.
677 static struct isl_basic_map
*normalize_divs(
678 struct isl_basic_map
*bmap
, int *progress
)
685 struct isl_mat
*T
= NULL
;
686 struct isl_mat
*C
= NULL
;
687 struct isl_mat
*C2
= NULL
;
695 if (bmap
->n_div
== 0)
701 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
))
704 total
= isl_dim_total(bmap
->dim
);
705 for (i
= 0, j
= bmap
->n_div
-1; i
< bmap
->n_eq
; ++i
) {
706 while (j
>= 0 && isl_int_is_zero(bmap
->eq
[i
][1 + total
+ j
]))
710 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + total
, j
) != -1)
717 if (div_eq
< bmap
->n_eq
) {
718 B
= isl_mat_sub_alloc(bmap
->ctx
, bmap
->eq
, div_eq
,
719 bmap
->n_eq
- div_eq
, 0, 1 + total
);
720 C
= isl_mat_variable_compression(bmap
->ctx
, B
, &C2
);
724 bmap
= isl_basic_map_set_to_empty(bmap
);
725 isl_mat_free(bmap
->ctx
, C
);
726 isl_mat_free(bmap
->ctx
, C2
);
731 d
= isl_vec_alloc(bmap
->ctx
, div_eq
);
734 for (i
= 0, j
= bmap
->n_div
-1; i
< div_eq
; ++i
) {
735 while (j
>= 0 && isl_int_is_zero(bmap
->eq
[i
][1 + total
+ j
]))
737 isl_int_set(d
->block
.data
[i
], bmap
->eq
[i
][1 + total
+ j
]);
739 B
= isl_mat_sub_alloc(bmap
->ctx
, bmap
->eq
, 0, div_eq
, 0, 1 + total
);
742 B
= isl_mat_product(bmap
->ctx
, B
, C
);
746 T
= isl_mat_parameter_compression(bmap
->ctx
, B
, d
);
750 bmap
= isl_basic_map_set_to_empty(bmap
);
751 isl_mat_free(bmap
->ctx
, C2
);
752 isl_mat_free(bmap
->ctx
, T
);
756 for (i
= 0; i
< T
->n_row
- 1; ++i
) {
757 isl_int_fdiv_q(v
, T
->row
[1 + i
][0], T
->row
[1 + i
][1 + i
]);
758 if (isl_int_is_zero(v
))
760 isl_mat_col_submul(T
, 0, v
, 1 + i
);
763 pos
= isl_alloc_array(bmap
->ctx
, int, T
->n_row
);
764 /* We have to be careful because dropping equalities may reorder them */
766 for (j
= bmap
->n_div
- 1; j
>= 0; --j
) {
767 for (i
= 0; i
< bmap
->n_eq
; ++i
)
768 if (!isl_int_is_zero(bmap
->eq
[i
][1 + total
+ j
]))
770 if (i
< bmap
->n_eq
) {
771 bmap
= isl_basic_map_drop_div(bmap
, j
);
772 isl_basic_map_drop_equality(bmap
, i
);
778 for (i
= 1; i
< T
->n_row
; ++i
) {
779 if (isl_int_is_one(T
->row
[i
][i
]))
784 if (needed
> dropped
) {
785 bmap
= isl_basic_map_extend_dim(bmap
, isl_dim_copy(bmap
->dim
),
790 for (i
= 1; i
< T
->n_row
; ++i
) {
791 if (isl_int_is_one(T
->row
[i
][i
]))
793 k
= isl_basic_map_alloc_div(bmap
);
794 pos
[i
] = 1 + total
+ k
;
795 isl_seq_clr(bmap
->div
[k
] + 1, 1 + total
+ bmap
->n_div
);
796 isl_int_set(bmap
->div
[k
][0], T
->row
[i
][i
]);
798 isl_seq_cpy(bmap
->div
[k
] + 1, C2
->row
[i
], 1 + total
);
800 isl_int_set_si(bmap
->div
[k
][1 + i
], 1);
801 for (j
= 0; j
< i
; ++j
) {
802 if (isl_int_is_zero(T
->row
[i
][j
]))
804 if (pos
[j
] < T
->n_row
&& C2
)
805 isl_seq_submul(bmap
->div
[k
] + 1, T
->row
[i
][j
],
806 C2
->row
[pos
[j
]], 1 + total
);
808 isl_int_neg(bmap
->div
[k
][1 + pos
[j
]],
811 j
= isl_basic_map_alloc_equality(bmap
);
812 isl_seq_neg(bmap
->eq
[j
], bmap
->div
[k
]+1, 1+total
+bmap
->n_div
);
813 isl_int_set(bmap
->eq
[j
][pos
[i
]], bmap
->div
[k
][0]);
816 isl_mat_free(bmap
->ctx
, C2
);
817 isl_mat_free(bmap
->ctx
, T
);
821 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
825 isl_mat_free(bmap
->ctx
, C
);
826 isl_mat_free(bmap
->ctx
, C2
);
827 isl_mat_free(bmap
->ctx
, T
);
831 static struct isl_basic_map
*remove_duplicate_constraints(
832 struct isl_basic_map
*bmap
, int *progress
)
838 unsigned total
= isl_basic_map_total_dim(bmap
);
841 if (bmap
->n_ineq
<= 1)
844 size
= round_up(4 * (bmap
->n_ineq
+1) / 3 - 1);
845 bits
= ffs(size
) - 1;
846 index
= isl_calloc_array(ctx
, isl_int
**, size
);
850 index
[isl_seq_get_hash_bits(bmap
->ineq
[0]+1, total
, bits
)] = &bmap
->ineq
[0];
851 for (k
= 1; k
< bmap
->n_ineq
; ++k
) {
852 h
= hash_index(index
, size
, bits
, bmap
, k
);
854 index
[h
] = &bmap
->ineq
[k
];
859 l
= index
[h
] - &bmap
->ineq
[0];
860 if (isl_int_lt(bmap
->ineq
[k
][0], bmap
->ineq
[l
][0]))
861 swap_inequality(bmap
, k
, l
);
862 isl_basic_map_drop_inequality(bmap
, k
);
866 for (k
= 0; k
< bmap
->n_ineq
-1; ++k
) {
867 isl_seq_neg(bmap
->ineq
[k
]+1, bmap
->ineq
[k
]+1, total
);
868 h
= hash_index(index
, size
, bits
, bmap
, k
);
869 isl_seq_neg(bmap
->ineq
[k
]+1, bmap
->ineq
[k
]+1, total
);
872 l
= index
[h
] - &bmap
->ineq
[0];
873 isl_int_add(sum
, bmap
->ineq
[k
][0], bmap
->ineq
[l
][0]);
874 if (isl_int_is_pos(sum
))
876 if (isl_int_is_zero(sum
)) {
877 /* We need to break out of the loop after these
878 * changes since the contents of the hash
879 * will no longer be valid.
880 * Plus, we probably we want to regauss first.
882 isl_basic_map_drop_inequality(bmap
, l
);
883 isl_basic_map_inequality_to_equality(bmap
, k
);
885 bmap
= isl_basic_map_set_to_empty(bmap
);
895 struct isl_basic_map
*isl_basic_map_simplify(struct isl_basic_map
*bmap
)
902 bmap
= isl_basic_map_normalize_constraints(bmap
);
903 bmap
= eliminate_divs_eq(bmap
, &progress
);
904 bmap
= eliminate_divs_ineq(bmap
, &progress
);
905 bmap
= isl_basic_map_gauss(bmap
, &progress
);
906 /* requires equalities in normal form */
907 bmap
= normalize_divs(bmap
, &progress
);
908 bmap
= remove_duplicate_divs(bmap
, &progress
);
909 bmap
= remove_duplicate_constraints(bmap
, &progress
);
914 struct isl_basic_set
*isl_basic_set_simplify(struct isl_basic_set
*bset
)
916 return (struct isl_basic_set
*)
917 isl_basic_map_simplify((struct isl_basic_map
*)bset
);
921 /* If the only constraints a div d=floor(f/m)
922 * appears in are its two defining constraints
925 * -(f - (m - 1)) + m d >= 0
927 * then it can safely be removed.
929 static int div_is_redundant(struct isl_basic_map
*bmap
, int div
)
932 unsigned pos
= 1 + isl_dim_total(bmap
->dim
) + div
;
934 for (i
= 0; i
< bmap
->n_eq
; ++i
)
935 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
938 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
939 if (isl_int_is_zero(bmap
->ineq
[i
][pos
]))
941 if (isl_int_eq(bmap
->ineq
[i
][pos
], bmap
->div
[div
][0])) {
943 isl_int_sub(bmap
->div
[div
][1],
944 bmap
->div
[div
][1], bmap
->div
[div
][0]);
945 isl_int_add_ui(bmap
->div
[div
][1], bmap
->div
[div
][1], 1);
946 neg
= isl_seq_is_neg(bmap
->ineq
[i
], bmap
->div
[div
]+1, pos
);
947 isl_int_sub_ui(bmap
->div
[div
][1], bmap
->div
[div
][1], 1);
948 isl_int_add(bmap
->div
[div
][1],
949 bmap
->div
[div
][1], bmap
->div
[div
][0]);
952 if (isl_seq_first_non_zero(bmap
->ineq
[i
]+pos
+1,
953 bmap
->n_div
-div
-1) != -1)
955 } else if (isl_int_abs_eq(bmap
->ineq
[i
][pos
], bmap
->div
[div
][0])) {
956 if (!isl_seq_eq(bmap
->ineq
[i
], bmap
->div
[div
]+1, pos
))
958 if (isl_seq_first_non_zero(bmap
->ineq
[i
]+pos
+1,
959 bmap
->n_div
-div
-1) != -1)
965 for (i
= 0; i
< bmap
->n_div
; ++i
)
966 if (!isl_int_is_zero(bmap
->div
[i
][1+pos
]))
973 * Remove divs that don't occur in any of the constraints or other divs.
974 * These can arise when dropping some of the variables in a quast
975 * returned by piplib.
977 static struct isl_basic_map
*remove_redundant_divs(struct isl_basic_map
*bmap
)
984 for (i
= bmap
->n_div
-1; i
>= 0; --i
) {
985 if (!div_is_redundant(bmap
, i
))
987 bmap
= isl_basic_map_drop_div(bmap
, i
);
992 struct isl_basic_map
*isl_basic_map_finalize(struct isl_basic_map
*bmap
)
994 bmap
= remove_redundant_divs(bmap
);
997 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1001 struct isl_basic_set
*isl_basic_set_finalize(struct isl_basic_set
*bset
)
1003 return (struct isl_basic_set
*)
1004 isl_basic_map_finalize((struct isl_basic_map
*)bset
);
1007 struct isl_set
*isl_set_finalize(struct isl_set
*set
)
1013 for (i
= 0; i
< set
->n
; ++i
) {
1014 set
->p
[i
] = isl_basic_set_finalize(set
->p
[i
]);
1024 struct isl_map
*isl_map_finalize(struct isl_map
*map
)
1030 for (i
= 0; i
< map
->n
; ++i
) {
1031 map
->p
[i
] = isl_basic_map_finalize(map
->p
[i
]);
1035 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
1043 /* Remove any div that is defined in terms of the given variable.
1045 static struct isl_basic_map
*remove_dependent_vars(struct isl_basic_map
*bmap
,
1049 unsigned dim
= isl_dim_total(bmap
->dim
);
1051 for (i
= 0; i
< bmap
->n_div
; ++i
) {
1052 if (isl_int_is_zero(bmap
->div
[i
][0]))
1054 if (isl_int_is_zero(bmap
->div
[i
][1+1+pos
]))
1056 bmap
= isl_basic_map_eliminate_vars(bmap
, dim
+ i
, 1);
1063 /* Eliminate the specified variables from the constraints using
1064 * Fourier-Motzkin. The variables themselves are not removed.
1066 struct isl_basic_map
*isl_basic_map_eliminate_vars(
1067 struct isl_basic_map
*bmap
, unsigned pos
, unsigned n
)
1077 total
= isl_basic_map_total_dim(bmap
);
1079 bmap
= isl_basic_map_cow(bmap
);
1080 for (d
= pos
+ n
- 1; d
>= 0 && d
>= pos
; --d
)
1081 bmap
= remove_dependent_vars(bmap
, d
);
1083 for (d
= pos
+ n
- 1;
1084 d
>= 0 && d
>= total
- bmap
->n_div
&& d
>= pos
; --d
)
1085 isl_seq_clr(bmap
->div
[d
-(total
-bmap
->n_div
)], 2+total
);
1086 for (d
= pos
+ n
- 1; d
>= 0 && d
>= pos
; --d
) {
1087 int n_lower
, n_upper
;
1090 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
1091 if (isl_int_is_zero(bmap
->eq
[i
][1+d
]))
1093 eliminate_var_using_equality(bmap
, d
, bmap
->eq
[i
], NULL
);
1094 isl_basic_map_drop_equality(bmap
, i
);
1101 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
1102 if (isl_int_is_pos(bmap
->ineq
[i
][1+d
]))
1104 else if (isl_int_is_neg(bmap
->ineq
[i
][1+d
]))
1107 bmap
= isl_basic_map_extend_constraints(bmap
,
1108 0, n_lower
* n_upper
);
1109 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
1111 if (isl_int_is_zero(bmap
->ineq
[i
][1+d
]))
1114 for (j
= 0; j
< i
; ++j
) {
1115 if (isl_int_is_zero(bmap
->ineq
[j
][1+d
]))
1118 if (isl_int_sgn(bmap
->ineq
[i
][1+d
]) ==
1119 isl_int_sgn(bmap
->ineq
[j
][1+d
]))
1121 k
= isl_basic_map_alloc_inequality(bmap
);
1124 isl_seq_cpy(bmap
->ineq
[k
], bmap
->ineq
[i
],
1126 isl_seq_elim(bmap
->ineq
[k
], bmap
->ineq
[j
],
1127 1+d
, 1+total
, NULL
);
1129 isl_basic_map_drop_inequality(bmap
, i
);
1132 if (n_lower
> 0 && n_upper
> 0) {
1133 bmap
= isl_basic_map_normalize_constraints(bmap
);
1134 bmap
= remove_duplicate_constraints(bmap
, NULL
);
1135 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1136 bmap
= isl_basic_map_convex_hull(bmap
);
1139 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
1143 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1146 isl_basic_map_free(bmap
);
1150 struct isl_basic_set
*isl_basic_set_eliminate_vars(
1151 struct isl_basic_set
*bset
, unsigned pos
, unsigned n
)
1153 return (struct isl_basic_set
*)isl_basic_map_eliminate_vars(
1154 (struct isl_basic_map
*)bset
, pos
, n
);
1157 static void compute_elimination_index(struct isl_basic_map
*bmap
, int *elim
)
1162 total
= isl_dim_total(bmap
->dim
);
1163 for (d
= 0; d
< total
; ++d
)
1165 for (d
= total
- 1, i
= 0; d
>= 0 && i
< bmap
->n_eq
; ++i
) {
1166 for (; d
>= 0; --d
) {
1167 if (isl_int_is_zero(bmap
->eq
[i
][1+d
]))
1175 static void set_compute_elimination_index(struct isl_basic_set
*bset
, int *elim
)
1177 return compute_elimination_index((struct isl_basic_map
*)bset
, elim
);
1180 static int reduced_using_equalities(isl_int
*dst
, isl_int
*src
,
1181 struct isl_basic_map
*bmap
, int *elim
)
1187 total
= isl_dim_total(bmap
->dim
);
1188 for (d
= total
- 1; d
>= 0; --d
) {
1189 if (isl_int_is_zero(src
[1+d
]))
1194 isl_seq_cpy(dst
, src
, 1 + total
);
1197 isl_seq_elim(dst
, bmap
->eq
[elim
[d
]], 1 + d
, 1 + total
, NULL
);
1202 static int set_reduced_using_equalities(isl_int
*dst
, isl_int
*src
,
1203 struct isl_basic_set
*bset
, int *elim
)
1205 return reduced_using_equalities(dst
, src
,
1206 (struct isl_basic_map
*)bset
, elim
);
1209 static struct isl_basic_set
*isl_basic_set_reduce_using_equalities(
1210 struct isl_basic_set
*bset
, struct isl_basic_set
*context
)
1215 if (!bset
|| !context
)
1218 bset
= isl_basic_set_cow(bset
);
1222 elim
= isl_alloc_array(ctx
, int, isl_basic_set_n_dim(bset
));
1225 set_compute_elimination_index(context
, elim
);
1226 for (i
= 0; i
< bset
->n_eq
; ++i
)
1227 set_reduced_using_equalities(bset
->eq
[i
], bset
->eq
[i
],
1229 for (i
= 0; i
< bset
->n_ineq
; ++i
)
1230 set_reduced_using_equalities(bset
->ineq
[i
], bset
->ineq
[i
],
1232 isl_basic_set_free(context
);
1234 bset
= isl_basic_set_simplify(bset
);
1235 bset
= isl_basic_set_finalize(bset
);
1238 isl_basic_set_free(bset
);
1239 isl_basic_set_free(context
);
1243 static struct isl_basic_set
*remove_shifted_constraints(
1244 struct isl_basic_set
*bset
, struct isl_basic_set
*context
)
1254 size
= round_up(4 * (context
->n_ineq
+1) / 3 - 1);
1255 bits
= ffs(size
) - 1;
1256 index
= isl_calloc_array(ctx
, isl_int
**, size
);
1260 for (k
= 0; k
< context
->n_ineq
; ++k
) {
1261 h
= set_hash_index(index
, size
, bits
, context
, k
);
1262 index
[h
] = &context
->ineq
[k
];
1264 for (k
= 0; k
< bset
->n_ineq
; ++k
) {
1265 h
= set_hash_index(index
, size
, bits
, bset
, k
);
1268 l
= index
[h
] - &context
->ineq
[0];
1269 if (isl_int_lt(bset
->ineq
[k
][0], context
->ineq
[l
][0]))
1271 bset
= isl_basic_set_cow(bset
);
1274 isl_basic_set_drop_inequality(bset
, k
);
1284 static struct isl_basic_set
*uset_gist(struct isl_basic_set
*bset
,
1285 struct isl_basic_set
*context
);
1287 static struct isl_basic_set
*uset_gist_context_eq(struct isl_basic_set
*bset
,
1288 struct isl_basic_set
*context
)
1292 struct isl_ctx
*ctx
= context
->ctx
;
1293 struct isl_basic_set
*reduced_context
;
1294 reduced_context
= isl_basic_set_remove_equalities(
1295 isl_basic_set_copy(context
), &T
, &T2
);
1296 if (!reduced_context
)
1298 bset
= isl_basic_set_preimage(bset
, T
);
1299 bset
= uset_gist(bset
, reduced_context
);
1300 bset
= isl_basic_set_preimage(bset
, T2
);
1301 bset
= isl_basic_set_reduce_using_equalities(bset
, context
);
1304 isl_basic_set_free(context
);
1305 isl_basic_set_free(bset
);
1309 static struct isl_basic_set
*uset_gist_set_eq(struct isl_basic_set
*bset
,
1310 struct isl_basic_set
*context
)
1314 struct isl_ctx
*ctx
= context
->ctx
;
1315 struct isl_basic_set
*affine_hull
= NULL
;
1317 affine_hull
= isl_basic_set_copy(bset
);
1318 affine_hull
= isl_basic_set_cow(affine_hull
);
1321 isl_basic_set_free_inequality(affine_hull
, affine_hull
->n_ineq
);
1323 bset
= isl_basic_set_remove_equalities(bset
, &T
, &T2
);
1326 context
= isl_basic_set_preimage(context
, T
);
1327 bset
= uset_gist(bset
, context
);
1328 bset
= isl_basic_set_preimage(bset
, T2
);
1329 bset
= isl_basic_set_intersect(bset
, affine_hull
);
1332 isl_basic_set_free(affine_hull
);
1333 isl_basic_set_free(context
);
1334 isl_basic_set_free(bset
);
1338 /* Remove all information from bset that is redundant in the context
1339 * of context. In particular, equalities that are linear combinations
1340 * of those in context are removed. Then the inequalities that are
1341 * redundant in the context of the equalities and inequalities of
1342 * context are removed.
1344 static struct isl_basic_set
*uset_gist(struct isl_basic_set
*bset
,
1345 struct isl_basic_set
*context
)
1349 struct isl_basic_set
*combined
;
1350 struct isl_ctx
*ctx
;
1352 if (!bset
|| !context
)
1355 if (context
->n_eq
> 0)
1356 return uset_gist_context_eq(bset
, context
);
1357 if (!context
->n_ineq
)
1360 return uset_gist_set_eq(bset
, context
);
1361 bset
= remove_shifted_constraints(bset
, context
);
1362 combined
= isl_basic_set_cow(isl_basic_set_copy(bset
));
1363 combined
= isl_basic_set_extend_constraints(combined
,
1364 context
->n_eq
, context
->n_ineq
);
1365 context
= isl_basic_set_add_constraints(combined
, context
, 0);
1370 for (i
= bset
->n_ineq
-1; i
>= 0; --i
) {
1372 set_swap_inequality(context
, i
, context
->n_ineq
-1);
1374 redundant
= isl_basic_set_constraint_is_redundant(&context
,
1375 context
->ineq
[context
->n_ineq
], &opt
, NULL
);
1376 if (redundant
== -1) {
1380 if (ISL_F_ISSET(context
, ISL_BASIC_MAP_EMPTY
)) {
1381 bset
= isl_basic_set_set_to_empty(bset
);
1385 set_swap_inequality(context
, i
, context
->n_ineq
-1);
1387 isl_basic_set_drop_inequality(context
, i
);
1388 isl_basic_set_drop_inequality(bset
, i
);
1393 isl_basic_set_free(context
);
1396 isl_basic_set_free(context
);
1397 isl_basic_set_free(bset
);
1401 struct isl_basic_map
*isl_basic_map_gist(struct isl_basic_map
*bmap
,
1402 struct isl_basic_map
*context
)
1404 struct isl_basic_set
*bset
;
1406 if (!bmap
|| !context
)
1409 context
= isl_basic_map_align_divs(context
, bmap
);
1410 bmap
= isl_basic_map_align_divs(bmap
, context
);
1412 bset
= uset_gist(isl_basic_map_underlying_set(isl_basic_map_copy(bmap
)),
1413 isl_basic_map_underlying_set(context
));
1415 return isl_basic_map_overlying_set(bset
, bmap
);
1417 isl_basic_map_free(bmap
);
1418 isl_basic_map_free(context
);
1423 * Assumes context has no implicit divs.
1425 struct isl_map
*isl_map_gist(struct isl_map
*map
, struct isl_basic_map
*context
)
1429 map
= isl_map_cow(map
);
1430 if (!map
|| !context
)
1432 isl_assert(map
->ctx
, isl_dim_equal(map
->dim
, context
->dim
), goto error
);
1433 map
= isl_map_compute_divs(map
);
1434 for (i
= 0; i
< map
->n
; ++i
)
1435 context
= isl_basic_map_align_divs(context
, map
->p
[i
]);
1436 for (i
= 0; i
< map
->n
; ++i
) {
1437 map
->p
[i
] = isl_basic_map_gist(map
->p
[i
],
1438 isl_basic_map_copy(context
));
1442 isl_basic_map_free(context
);
1443 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
1447 isl_basic_map_free(context
);
1451 struct isl_basic_set
*isl_basic_set_gist(struct isl_basic_set
*bset
,
1452 struct isl_basic_set
*context
)
1454 return (struct isl_basic_set
*)isl_basic_map_gist(
1455 (struct isl_basic_map
*)bset
, (struct isl_basic_map
*)context
);
1458 struct isl_set
*isl_set_gist(struct isl_set
*set
, struct isl_basic_set
*context
)
1460 return (struct isl_set
*)isl_map_gist((struct isl_map
*)set
,
1461 (struct isl_basic_map
*)context
);
1464 /* Quick check to see if two basic maps are disjoint.
1465 * In particular, we reduce the equalities and inequalities of
1466 * one basic map in the context of the equalities of the other
1467 * basic map and check if we get a contradiction.
1469 int isl_basic_map_fast_is_disjoint(struct isl_basic_map
*bmap1
,
1470 struct isl_basic_map
*bmap2
)
1472 struct isl_vec
*v
= NULL
;
1477 if (!bmap1
|| !bmap2
)
1479 isl_assert(bmap1
->ctx
, isl_dim_equal(bmap1
->dim
, bmap2
->dim
),
1481 if (bmap1
->n_div
|| bmap2
->n_div
)
1483 if (!bmap1
->n_eq
&& !bmap2
->n_eq
)
1486 total
= isl_dim_total(bmap1
->dim
);
1489 v
= isl_vec_alloc(bmap1
->ctx
, 1 + total
);
1492 elim
= isl_alloc_array(bmap1
->ctx
, int, total
);
1495 compute_elimination_index(bmap1
, elim
);
1496 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1498 reduced
= reduced_using_equalities(v
->block
.data
, bmap2
->eq
[i
],
1500 if (reduced
&& !isl_int_is_zero(v
->block
.data
[0]) &&
1501 isl_seq_first_non_zero(v
->block
.data
+ 1, total
) == -1)
1504 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1506 reduced
= reduced_using_equalities(v
->block
.data
,
1507 bmap2
->ineq
[i
], bmap1
, elim
);
1508 if (reduced
&& isl_int_is_neg(v
->block
.data
[0]) &&
1509 isl_seq_first_non_zero(v
->block
.data
+ 1, total
) == -1)
1512 compute_elimination_index(bmap2
, elim
);
1513 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
1515 reduced
= reduced_using_equalities(v
->block
.data
,
1516 bmap1
->ineq
[i
], bmap2
, elim
);
1517 if (reduced
&& isl_int_is_neg(v
->block
.data
[0]) &&
1518 isl_seq_first_non_zero(v
->block
.data
+ 1, total
) == -1)
1521 isl_vec_free(bmap1
->ctx
, v
);
1525 isl_vec_free(bmap1
->ctx
, v
);
1529 isl_vec_free(bmap1
->ctx
, v
);
1534 int isl_basic_set_fast_is_disjoint(struct isl_basic_set
*bset1
,
1535 struct isl_basic_set
*bset2
)
1537 return isl_basic_map_fast_is_disjoint((struct isl_basic_map
*)bset1
,
1538 (struct isl_basic_map
*)bset2
);
1541 int isl_map_fast_is_disjoint(struct isl_map
*map1
, struct isl_map
*map2
)
1548 if (isl_map_fast_is_equal(map1
, map2
))
1551 for (i
= 0; i
< map1
->n
; ++i
) {
1552 for (j
= 0; j
< map2
->n
; ++j
) {
1553 int d
= isl_basic_map_fast_is_disjoint(map1
->p
[i
],
1562 int isl_set_fast_is_disjoint(struct isl_set
*set1
, struct isl_set
*set2
)
1564 return isl_map_fast_is_disjoint((struct isl_map
*)set1
,
1565 (struct isl_map
*)set2
);