2 * Copyright 2011 INRIA Saclay
3 * Copyright 2012-2014 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
8 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
10 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
13 #include <isl_ctx_private.h>
14 #include <isl_map_private.h>
15 #include <isl_local_space_private.h>
16 #include <isl_space_private.h>
17 #include <isl_mat_private.h>
18 #include <isl_aff_private.h>
19 #include <isl_vec_private.h>
22 isl_ctx
*isl_local_space_get_ctx(__isl_keep isl_local_space
*ls
)
24 return ls
? ls
->dim
->ctx
: NULL
;
27 __isl_give isl_local_space
*isl_local_space_alloc_div(__isl_take isl_space
*dim
,
28 __isl_take isl_mat
*div
)
31 isl_local_space
*ls
= NULL
;
36 ctx
= isl_space_get_ctx(dim
);
37 ls
= isl_calloc_type(ctx
, struct isl_local_space
);
49 isl_local_space_free(ls
);
53 __isl_give isl_local_space
*isl_local_space_alloc(__isl_take isl_space
*dim
,
63 total
= isl_space_dim(dim
, isl_dim_all
);
65 ctx
= isl_space_get_ctx(dim
);
66 div
= isl_mat_alloc(ctx
, n_div
, 1 + 1 + total
+ n_div
);
67 return isl_local_space_alloc_div(dim
, div
);
70 __isl_give isl_local_space
*isl_local_space_from_space(__isl_take isl_space
*dim
)
72 return isl_local_space_alloc(dim
, 0);
75 __isl_give isl_local_space
*isl_local_space_copy(__isl_keep isl_local_space
*ls
)
84 __isl_give isl_local_space
*isl_local_space_dup(__isl_keep isl_local_space
*ls
)
89 return isl_local_space_alloc_div(isl_space_copy(ls
->dim
),
90 isl_mat_copy(ls
->div
));
94 __isl_give isl_local_space
*isl_local_space_cow(__isl_take isl_local_space
*ls
)
102 return isl_local_space_dup(ls
);
105 __isl_null isl_local_space
*isl_local_space_free(
106 __isl_take isl_local_space
*ls
)
114 isl_space_free(ls
->dim
);
115 isl_mat_free(ls
->div
);
122 /* Is the local space that of a parameter domain?
124 isl_bool
isl_local_space_is_params(__isl_keep isl_local_space
*ls
)
127 return isl_bool_error
;
128 return isl_space_is_params(ls
->dim
);
131 /* Is the local space that of a set?
133 isl_bool
isl_local_space_is_set(__isl_keep isl_local_space
*ls
)
135 return ls
? isl_space_is_set(ls
->dim
) : isl_bool_error
;
138 /* Return true if the two local spaces are identical, with identical
139 * expressions for the integer divisions.
141 isl_bool
isl_local_space_is_equal(__isl_keep isl_local_space
*ls1
,
142 __isl_keep isl_local_space
*ls2
)
147 return isl_bool_error
;
149 equal
= isl_space_is_equal(ls1
->dim
, ls2
->dim
);
150 if (equal
< 0 || !equal
)
153 if (!isl_local_space_divs_known(ls1
))
154 return isl_bool_false
;
155 if (!isl_local_space_divs_known(ls2
))
156 return isl_bool_false
;
158 return isl_mat_is_equal(ls1
->div
, ls2
->div
);
161 /* Compare two isl_local_spaces.
163 * Return -1 if "ls1" is "smaller" than "ls2", 1 if "ls1" is "greater"
164 * than "ls2" and 0 if they are equal.
166 * The order is fairly arbitrary. We do "prefer" divs that only involve
167 * earlier dimensions in the sense that we consider local spaces where
168 * the first differing div involves earlier dimensions to be smaller.
170 int isl_local_space_cmp(__isl_keep isl_local_space
*ls1
,
171 __isl_keep isl_local_space
*ls2
)
186 cmp
= isl_space_cmp(ls1
->dim
, ls2
->dim
);
190 if (ls1
->div
->n_row
!= ls2
->div
->n_row
)
191 return ls1
->div
->n_row
- ls2
->div
->n_row
;
193 n_col
= isl_mat_cols(ls1
->div
);
194 for (i
= 0; i
< ls1
->div
->n_row
; ++i
) {
195 known1
= isl_local_space_div_is_known(ls1
, i
);
196 known2
= isl_local_space_div_is_known(ls2
, i
);
197 if (!known1
&& !known2
)
203 last1
= isl_seq_last_non_zero(ls1
->div
->row
[i
] + 1, n_col
- 1);
204 last2
= isl_seq_last_non_zero(ls2
->div
->row
[i
] + 1, n_col
- 1);
206 return last1
- last2
;
207 cmp
= isl_seq_cmp(ls1
->div
->row
[i
], ls2
->div
->row
[i
], n_col
);
215 int isl_local_space_dim(__isl_keep isl_local_space
*ls
,
216 enum isl_dim_type type
)
220 if (type
== isl_dim_div
)
221 return ls
->div
->n_row
;
222 if (type
== isl_dim_all
)
223 return isl_space_dim(ls
->dim
, isl_dim_all
) + ls
->div
->n_row
;
224 return isl_space_dim(ls
->dim
, type
);
227 unsigned isl_local_space_offset(__isl_keep isl_local_space
*ls
,
228 enum isl_dim_type type
)
237 case isl_dim_cst
: return 0;
238 case isl_dim_param
: return 1;
239 case isl_dim_in
: return 1 + dim
->nparam
;
240 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
241 case isl_dim_div
: return 1 + dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
246 /* Return the position of the dimension of the given type and name
248 * Return -1 if no such dimension can be found.
250 int isl_local_space_find_dim_by_name(__isl_keep isl_local_space
*ls
,
251 enum isl_dim_type type
, const char *name
)
255 if (type
== isl_dim_div
)
257 return isl_space_find_dim_by_name(ls
->dim
, type
, name
);
260 /* Does the given dimension have a name?
262 isl_bool
isl_local_space_has_dim_name(__isl_keep isl_local_space
*ls
,
263 enum isl_dim_type type
, unsigned pos
)
265 return ls
? isl_space_has_dim_name(ls
->dim
, type
, pos
) : isl_bool_error
;
268 const char *isl_local_space_get_dim_name(__isl_keep isl_local_space
*ls
,
269 enum isl_dim_type type
, unsigned pos
)
271 return ls
? isl_space_get_dim_name(ls
->dim
, type
, pos
) : NULL
;
274 isl_bool
isl_local_space_has_dim_id(__isl_keep isl_local_space
*ls
,
275 enum isl_dim_type type
, unsigned pos
)
277 return ls
? isl_space_has_dim_id(ls
->dim
, type
, pos
) : isl_bool_error
;
280 __isl_give isl_id
*isl_local_space_get_dim_id(__isl_keep isl_local_space
*ls
,
281 enum isl_dim_type type
, unsigned pos
)
283 return ls
? isl_space_get_dim_id(ls
->dim
, type
, pos
) : NULL
;
286 __isl_give isl_aff
*isl_local_space_get_div(__isl_keep isl_local_space
*ls
,
294 if (pos
< 0 || pos
>= ls
->div
->n_row
)
295 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
296 "index out of bounds", return NULL
);
298 if (isl_int_is_zero(ls
->div
->row
[pos
][0]))
299 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
300 "expression of div unknown", return NULL
);
301 if (!isl_local_space_is_set(ls
))
302 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
303 "cannot represent divs of map spaces", return NULL
);
305 aff
= isl_aff_alloc(isl_local_space_copy(ls
));
308 isl_seq_cpy(aff
->v
->el
, ls
->div
->row
[pos
], aff
->v
->size
);
312 __isl_give isl_space
*isl_local_space_get_space(__isl_keep isl_local_space
*ls
)
317 return isl_space_copy(ls
->dim
);
320 /* Replace the identifier of the tuple of type "type" by "id".
322 __isl_give isl_local_space
*isl_local_space_set_tuple_id(
323 __isl_take isl_local_space
*ls
,
324 enum isl_dim_type type
, __isl_take isl_id
*id
)
326 ls
= isl_local_space_cow(ls
);
329 ls
->dim
= isl_space_set_tuple_id(ls
->dim
, type
, id
);
331 return isl_local_space_free(ls
);
338 __isl_give isl_local_space
*isl_local_space_set_dim_name(
339 __isl_take isl_local_space
*ls
,
340 enum isl_dim_type type
, unsigned pos
, const char *s
)
342 ls
= isl_local_space_cow(ls
);
345 ls
->dim
= isl_space_set_dim_name(ls
->dim
, type
, pos
, s
);
347 return isl_local_space_free(ls
);
352 __isl_give isl_local_space
*isl_local_space_set_dim_id(
353 __isl_take isl_local_space
*ls
,
354 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
356 ls
= isl_local_space_cow(ls
);
359 ls
->dim
= isl_space_set_dim_id(ls
->dim
, type
, pos
, id
);
361 return isl_local_space_free(ls
);
369 __isl_give isl_local_space
*isl_local_space_reset_space(
370 __isl_take isl_local_space
*ls
, __isl_take isl_space
*dim
)
372 ls
= isl_local_space_cow(ls
);
376 isl_space_free(ls
->dim
);
381 isl_local_space_free(ls
);
386 /* Reorder the columns of the given div definitions according to the
388 * The order of the divs themselves is assumed not to change.
390 static __isl_give isl_mat
*reorder_divs(__isl_take isl_mat
*div
,
391 __isl_take isl_reordering
*r
)
400 extra
= isl_space_dim(r
->dim
, isl_dim_all
) + div
->n_row
- r
->len
;
401 mat
= isl_mat_alloc(div
->ctx
, div
->n_row
, div
->n_col
+ extra
);
405 for (i
= 0; i
< div
->n_row
; ++i
) {
406 isl_seq_cpy(mat
->row
[i
], div
->row
[i
], 2);
407 isl_seq_clr(mat
->row
[i
] + 2, mat
->n_col
- 2);
408 for (j
= 0; j
< r
->len
; ++j
)
409 isl_int_set(mat
->row
[i
][2 + r
->pos
[j
]],
413 isl_reordering_free(r
);
417 isl_reordering_free(r
);
422 /* Reorder the dimensions of "ls" according to the given reordering.
423 * The reordering r is assumed to have been extended with the local
424 * variables, leaving them in the same order.
426 __isl_give isl_local_space
*isl_local_space_realign(
427 __isl_take isl_local_space
*ls
, __isl_take isl_reordering
*r
)
429 ls
= isl_local_space_cow(ls
);
433 ls
->div
= reorder_divs(ls
->div
, isl_reordering_copy(r
));
437 ls
= isl_local_space_reset_space(ls
, isl_space_copy(r
->dim
));
439 isl_reordering_free(r
);
442 isl_local_space_free(ls
);
443 isl_reordering_free(r
);
447 __isl_give isl_local_space
*isl_local_space_add_div(
448 __isl_take isl_local_space
*ls
, __isl_take isl_vec
*div
)
450 ls
= isl_local_space_cow(ls
);
454 if (ls
->div
->n_col
!= div
->size
)
455 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
456 "incompatible dimensions", goto error
);
458 ls
->div
= isl_mat_add_zero_cols(ls
->div
, 1);
459 ls
->div
= isl_mat_add_rows(ls
->div
, 1);
463 isl_seq_cpy(ls
->div
->row
[ls
->div
->n_row
- 1], div
->el
, div
->size
);
464 isl_int_set_si(ls
->div
->row
[ls
->div
->n_row
- 1][div
->size
], 0);
469 isl_local_space_free(ls
);
474 __isl_give isl_local_space
*isl_local_space_replace_divs(
475 __isl_take isl_local_space
*ls
, __isl_take isl_mat
*div
)
477 ls
= isl_local_space_cow(ls
);
482 isl_mat_free(ls
->div
);
487 isl_local_space_free(ls
);
491 /* Copy row "s" of "src" to row "d" of "dst", applying the expansion
494 static void expand_row(__isl_keep isl_mat
*dst
, int d
,
495 __isl_keep isl_mat
*src
, int s
, int *exp
)
498 unsigned c
= src
->n_col
- src
->n_row
;
500 isl_seq_cpy(dst
->row
[d
], src
->row
[s
], c
);
501 isl_seq_clr(dst
->row
[d
] + c
, dst
->n_col
- c
);
503 for (i
= 0; i
< s
; ++i
)
504 isl_int_set(dst
->row
[d
][c
+ exp
[i
]], src
->row
[s
][c
+ i
]);
507 /* Compare (known) divs.
508 * Return non-zero if at least one of the two divs is unknown.
509 * In particular, if both divs are unknown, we respect their
510 * current order. Otherwise, we sort the known div after the unknown
511 * div only if the known div depends on the unknown div.
513 static int cmp_row(isl_int
*row_i
, isl_int
*row_j
, int i
, int j
,
514 unsigned n_row
, unsigned n_col
)
517 int unknown_i
, unknown_j
;
519 unknown_i
= isl_int_is_zero(row_i
[0]);
520 unknown_j
= isl_int_is_zero(row_j
[0]);
522 if (unknown_i
&& unknown_j
)
526 li
= n_col
- n_row
+ i
;
528 li
= isl_seq_last_non_zero(row_i
, n_col
);
530 lj
= n_col
- n_row
+ j
;
532 lj
= isl_seq_last_non_zero(row_j
, n_col
);
537 return isl_seq_cmp(row_i
, row_j
, n_col
);
540 /* Call cmp_row for divs in a matrix.
542 int isl_mat_cmp_div(__isl_keep isl_mat
*div
, int i
, int j
)
544 return cmp_row(div
->row
[i
], div
->row
[j
], i
, j
, div
->n_row
, div
->n_col
);
547 /* Call cmp_row for divs in a basic map.
549 static int bmap_cmp_row(__isl_keep isl_basic_map
*bmap
, int i
, int j
,
552 return cmp_row(bmap
->div
[i
], bmap
->div
[j
], i
, j
, bmap
->n_div
, total
);
555 /* Sort the divs in "bmap".
557 * We first make sure divs are placed after divs on which they depend.
558 * Then we perform a simple insertion sort based on the same ordering
559 * that is used in isl_merge_divs.
561 __isl_give isl_basic_map
*isl_basic_map_sort_divs(
562 __isl_take isl_basic_map
*bmap
)
567 bmap
= isl_basic_map_order_divs(bmap
);
570 if (bmap
->n_div
<= 1)
573 total
= 2 + isl_basic_map_total_dim(bmap
);
574 for (i
= 1; i
< bmap
->n_div
; ++i
) {
575 for (j
= i
- 1; j
>= 0; --j
) {
576 if (bmap_cmp_row(bmap
, j
, j
+ 1, total
) <= 0)
578 isl_basic_map_swap_div(bmap
, j
, j
+ 1);
585 /* Sort the divs in the basic maps of "map".
587 __isl_give isl_map
*isl_map_sort_divs(__isl_take isl_map
*map
)
589 return isl_map_inline_foreach_basic_map(map
, &isl_basic_map_sort_divs
);
592 /* Combine the two lists of divs into a single list.
593 * For each row i in div1, exp1[i] is set to the position of the corresponding
594 * row in the result. Similarly for div2 and exp2.
595 * This function guarantees
597 * exp1[i+1] > exp1[i]
598 * For optimal merging, the two input list should have been sorted.
600 __isl_give isl_mat
*isl_merge_divs(__isl_keep isl_mat
*div1
,
601 __isl_keep isl_mat
*div2
, int *exp1
, int *exp2
)
610 d
= div1
->n_col
- div1
->n_row
;
611 div
= isl_mat_alloc(div1
->ctx
, 1 + div1
->n_row
+ div2
->n_row
,
612 d
+ div1
->n_row
+ div2
->n_row
);
616 for (i
= 0, j
= 0, k
= 0; i
< div1
->n_row
&& j
< div2
->n_row
; ++k
) {
619 expand_row(div
, k
, div1
, i
, exp1
);
620 expand_row(div
, k
+ 1, div2
, j
, exp2
);
622 cmp
= isl_mat_cmp_div(div
, k
, k
+ 1);
626 } else if (cmp
< 0) {
630 isl_seq_cpy(div
->row
[k
], div
->row
[k
+ 1], div
->n_col
);
633 for (; i
< div1
->n_row
; ++i
, ++k
) {
634 expand_row(div
, k
, div1
, i
, exp1
);
637 for (; j
< div2
->n_row
; ++j
, ++k
) {
638 expand_row(div
, k
, div2
, j
, exp2
);
648 /* Swap divs "a" and "b" in "ls".
650 __isl_give isl_local_space
*isl_local_space_swap_div(
651 __isl_take isl_local_space
*ls
, int a
, int b
)
655 ls
= isl_local_space_cow(ls
);
658 if (a
< 0 || a
>= ls
->div
->n_row
|| b
< 0 || b
>= ls
->div
->n_row
)
659 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
660 "index out of bounds", return isl_local_space_free(ls
));
661 offset
= ls
->div
->n_col
- ls
->div
->n_row
;
662 ls
->div
= isl_mat_swap_cols(ls
->div
, offset
+ a
, offset
+ b
);
663 ls
->div
= isl_mat_swap_rows(ls
->div
, a
, b
);
665 return isl_local_space_free(ls
);
669 /* Construct a local space that contains all the divs in either
672 __isl_give isl_local_space
*isl_local_space_intersect(
673 __isl_take isl_local_space
*ls1
, __isl_take isl_local_space
*ls2
)
684 ctx
= isl_local_space_get_ctx(ls1
);
685 if (!isl_space_is_equal(ls1
->dim
, ls2
->dim
))
686 isl_die(ctx
, isl_error_invalid
,
687 "spaces should be identical", goto error
);
689 if (ls2
->div
->n_row
== 0) {
690 isl_local_space_free(ls2
);
694 if (ls1
->div
->n_row
== 0) {
695 isl_local_space_free(ls1
);
699 exp1
= isl_alloc_array(ctx
, int, ls1
->div
->n_row
);
700 exp2
= isl_alloc_array(ctx
, int, ls2
->div
->n_row
);
704 div
= isl_merge_divs(ls1
->div
, ls2
->div
, exp1
, exp2
);
708 equal
= isl_mat_is_equal(ls1
->div
, div
);
712 ls1
= isl_local_space_cow(ls1
);
718 isl_local_space_free(ls2
);
719 isl_mat_free(ls1
->div
);
726 isl_local_space_free(ls1
);
727 isl_local_space_free(ls2
);
731 /* Does "ls" have an explicit representation for div "div"?
733 int isl_local_space_div_is_known(__isl_keep isl_local_space
*ls
, int div
)
737 if (div
< 0 || div
>= ls
->div
->n_row
)
738 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
739 "position out of bounds", return -1);
740 return !isl_int_is_zero(ls
->div
->row
[div
][0]);
743 int isl_local_space_divs_known(__isl_keep isl_local_space
*ls
)
750 for (i
= 0; i
< ls
->div
->n_row
; ++i
)
751 if (isl_int_is_zero(ls
->div
->row
[i
][0]))
757 __isl_give isl_local_space
*isl_local_space_domain(
758 __isl_take isl_local_space
*ls
)
760 ls
= isl_local_space_drop_dims(ls
, isl_dim_out
,
761 0, isl_local_space_dim(ls
, isl_dim_out
));
762 ls
= isl_local_space_cow(ls
);
765 ls
->dim
= isl_space_domain(ls
->dim
);
767 return isl_local_space_free(ls
);
771 __isl_give isl_local_space
*isl_local_space_range(
772 __isl_take isl_local_space
*ls
)
774 ls
= isl_local_space_drop_dims(ls
, isl_dim_in
,
775 0, isl_local_space_dim(ls
, isl_dim_in
));
776 ls
= isl_local_space_cow(ls
);
780 ls
->dim
= isl_space_range(ls
->dim
);
782 return isl_local_space_free(ls
);
786 /* Construct a local space for a map that has the given local
787 * space as domain and that has a zero-dimensional range.
789 __isl_give isl_local_space
*isl_local_space_from_domain(
790 __isl_take isl_local_space
*ls
)
792 ls
= isl_local_space_cow(ls
);
795 ls
->dim
= isl_space_from_domain(ls
->dim
);
797 return isl_local_space_free(ls
);
801 __isl_give isl_local_space
*isl_local_space_add_dims(
802 __isl_take isl_local_space
*ls
, enum isl_dim_type type
, unsigned n
)
808 pos
= isl_local_space_dim(ls
, type
);
809 return isl_local_space_insert_dims(ls
, type
, pos
, n
);
812 /* Remove common factor of non-constant terms and denominator.
814 static void normalize_div(__isl_keep isl_local_space
*ls
, int div
)
816 isl_ctx
*ctx
= ls
->div
->ctx
;
817 unsigned total
= ls
->div
->n_col
- 2;
819 isl_seq_gcd(ls
->div
->row
[div
] + 2, total
, &ctx
->normalize_gcd
);
820 isl_int_gcd(ctx
->normalize_gcd
,
821 ctx
->normalize_gcd
, ls
->div
->row
[div
][0]);
822 if (isl_int_is_one(ctx
->normalize_gcd
))
825 isl_seq_scale_down(ls
->div
->row
[div
] + 2, ls
->div
->row
[div
] + 2,
826 ctx
->normalize_gcd
, total
);
827 isl_int_divexact(ls
->div
->row
[div
][0], ls
->div
->row
[div
][0],
829 isl_int_fdiv_q(ls
->div
->row
[div
][1], ls
->div
->row
[div
][1],
833 /* Exploit the equalities in "eq" to simplify the expressions of
834 * the integer divisions in "ls".
835 * The integer divisions in "ls" are assumed to appear as regular
836 * dimensions in "eq".
838 __isl_give isl_local_space
*isl_local_space_substitute_equalities(
839 __isl_take isl_local_space
*ls
, __isl_take isl_basic_set
*eq
)
848 total
= isl_space_dim(eq
->dim
, isl_dim_all
);
849 if (isl_local_space_dim(ls
, isl_dim_all
) != total
)
850 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
851 "spaces don't match", goto error
);
854 for (i
= 0; i
< eq
->n_eq
; ++i
) {
855 j
= isl_seq_last_non_zero(eq
->eq
[i
], total
+ n_div
);
856 if (j
< 0 || j
== 0 || j
>= total
)
859 for (k
= 0; k
< ls
->div
->n_row
; ++k
) {
860 if (isl_int_is_zero(ls
->div
->row
[k
][1 + j
]))
862 ls
= isl_local_space_cow(ls
);
865 ls
->div
= isl_mat_cow(ls
->div
);
868 isl_seq_elim(ls
->div
->row
[k
] + 1, eq
->eq
[i
], j
, total
,
869 &ls
->div
->row
[k
][0]);
870 normalize_div(ls
, k
);
874 isl_basic_set_free(eq
);
877 isl_basic_set_free(eq
);
878 isl_local_space_free(ls
);
882 /* Plug in the affine expressions "subs" of length "subs_len" (including
883 * the denominator and the constant term) into the variable at position "pos"
884 * of the "n" div expressions starting at "first".
886 * Let i be the dimension to replace and let "subs" be of the form
890 * Any integer division starting at "first" with a non-zero coefficient for i,
896 * floor((a f + d g)/(m d))
898 __isl_give isl_local_space
*isl_local_space_substitute_seq(
899 __isl_take isl_local_space
*ls
,
900 enum isl_dim_type type
, unsigned pos
, isl_int
*subs
, int subs_len
,
908 ls
= isl_local_space_cow(ls
);
911 ls
->div
= isl_mat_cow(ls
->div
);
913 return isl_local_space_free(ls
);
915 if (first
+ n
> ls
->div
->n_row
)
916 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
917 "index out of bounds", return isl_local_space_free(ls
));
919 pos
+= isl_local_space_offset(ls
, type
);
922 for (i
= first
; i
< first
+ n
; ++i
) {
923 if (isl_int_is_zero(ls
->div
->row
[i
][1 + pos
]))
925 isl_seq_substitute(ls
->div
->row
[i
], pos
, subs
,
926 ls
->div
->n_col
, subs_len
, v
);
927 normalize_div(ls
, i
);
934 /* Plug in "subs" for dimension "type", "pos" in the integer divisions
937 * Let i be the dimension to replace and let "subs" be of the form
941 * Any integer division with a non-zero coefficient for i,
947 * floor((a f + d g)/(m d))
949 __isl_give isl_local_space
*isl_local_space_substitute(
950 __isl_take isl_local_space
*ls
,
951 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
953 ls
= isl_local_space_cow(ls
);
955 return isl_local_space_free(ls
);
957 if (!isl_space_is_equal(ls
->dim
, subs
->ls
->dim
))
958 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
959 "spaces don't match", return isl_local_space_free(ls
));
960 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
961 isl_die(isl_local_space_get_ctx(ls
), isl_error_unsupported
,
962 "cannot handle divs yet",
963 return isl_local_space_free(ls
));
965 return isl_local_space_substitute_seq(ls
, type
, pos
, subs
->v
->el
,
966 subs
->v
->size
, 0, ls
->div
->n_row
);
969 int isl_local_space_is_named_or_nested(__isl_keep isl_local_space
*ls
,
970 enum isl_dim_type type
)
974 return isl_space_is_named_or_nested(ls
->dim
, type
);
977 __isl_give isl_local_space
*isl_local_space_drop_dims(
978 __isl_take isl_local_space
*ls
,
979 enum isl_dim_type type
, unsigned first
, unsigned n
)
985 if (n
== 0 && !isl_local_space_is_named_or_nested(ls
, type
))
988 ctx
= isl_local_space_get_ctx(ls
);
989 if (first
+ n
> isl_local_space_dim(ls
, type
))
990 isl_die(ctx
, isl_error_invalid
, "range out of bounds",
991 return isl_local_space_free(ls
));
993 ls
= isl_local_space_cow(ls
);
997 if (type
== isl_dim_div
) {
998 ls
->div
= isl_mat_drop_rows(ls
->div
, first
, n
);
1000 ls
->dim
= isl_space_drop_dims(ls
->dim
, type
, first
, n
);
1002 return isl_local_space_free(ls
);
1005 first
+= 1 + isl_local_space_offset(ls
, type
);
1006 ls
->div
= isl_mat_drop_cols(ls
->div
, first
, n
);
1008 return isl_local_space_free(ls
);
1013 __isl_give isl_local_space
*isl_local_space_insert_dims(
1014 __isl_take isl_local_space
*ls
,
1015 enum isl_dim_type type
, unsigned first
, unsigned n
)
1021 if (n
== 0 && !isl_local_space_is_named_or_nested(ls
, type
))
1024 ctx
= isl_local_space_get_ctx(ls
);
1025 if (first
> isl_local_space_dim(ls
, type
))
1026 isl_die(ctx
, isl_error_invalid
, "position out of bounds",
1027 return isl_local_space_free(ls
));
1029 ls
= isl_local_space_cow(ls
);
1033 if (type
== isl_dim_div
) {
1034 ls
->div
= isl_mat_insert_zero_rows(ls
->div
, first
, n
);
1036 ls
->dim
= isl_space_insert_dims(ls
->dim
, type
, first
, n
);
1038 return isl_local_space_free(ls
);
1041 first
+= 1 + isl_local_space_offset(ls
, type
);
1042 ls
->div
= isl_mat_insert_zero_cols(ls
->div
, first
, n
);
1044 return isl_local_space_free(ls
);
1049 /* Check if the constraints pointed to by "constraint" is a div
1050 * constraint corresponding to div "div" in "ls".
1052 * That is, if div = floor(f/m), then check if the constraint is
1056 * -(f-(m-1)) + m d >= 0
1058 int isl_local_space_is_div_constraint(__isl_keep isl_local_space
*ls
,
1059 isl_int
*constraint
, unsigned div
)
1066 if (isl_int_is_zero(ls
->div
->row
[div
][0]))
1069 pos
= isl_local_space_offset(ls
, isl_dim_div
) + div
;
1071 if (isl_int_eq(constraint
[pos
], ls
->div
->row
[div
][0])) {
1073 isl_int_sub(ls
->div
->row
[div
][1],
1074 ls
->div
->row
[div
][1], ls
->div
->row
[div
][0]);
1075 isl_int_add_ui(ls
->div
->row
[div
][1], ls
->div
->row
[div
][1], 1);
1076 neg
= isl_seq_is_neg(constraint
, ls
->div
->row
[div
]+1, pos
);
1077 isl_int_sub_ui(ls
->div
->row
[div
][1], ls
->div
->row
[div
][1], 1);
1078 isl_int_add(ls
->div
->row
[div
][1],
1079 ls
->div
->row
[div
][1], ls
->div
->row
[div
][0]);
1082 if (isl_seq_first_non_zero(constraint
+pos
+1,
1083 ls
->div
->n_row
-div
-1) != -1)
1085 } else if (isl_int_abs_eq(constraint
[pos
], ls
->div
->row
[div
][0])) {
1086 if (!isl_seq_eq(constraint
, ls
->div
->row
[div
]+1, pos
))
1088 if (isl_seq_first_non_zero(constraint
+pos
+1,
1089 ls
->div
->n_row
-div
-1) != -1)
1098 * Set active[i] to 1 if the dimension at position i is involved
1099 * in the linear expression l.
1101 int *isl_local_space_get_active(__isl_keep isl_local_space
*ls
, isl_int
*l
)
1109 ctx
= isl_local_space_get_ctx(ls
);
1110 total
= isl_local_space_dim(ls
, isl_dim_all
);
1111 active
= isl_calloc_array(ctx
, int, total
);
1112 if (total
&& !active
)
1115 for (i
= 0; i
< total
; ++i
)
1116 active
[i
] = !isl_int_is_zero(l
[i
]);
1118 offset
= isl_local_space_offset(ls
, isl_dim_div
) - 1;
1119 for (i
= ls
->div
->n_row
- 1; i
>= 0; --i
) {
1120 if (!active
[offset
+ i
])
1122 for (j
= 0; j
< total
; ++j
)
1123 active
[j
] |= !isl_int_is_zero(ls
->div
->row
[i
][2 + j
]);
1129 /* Given a local space "ls" of a set, create a local space
1130 * for the lift of the set. In particular, the result
1131 * is of the form [dim -> local[..]], with ls->div->n_row variables in the
1132 * range of the wrapped map.
1134 __isl_give isl_local_space
*isl_local_space_lift(
1135 __isl_take isl_local_space
*ls
)
1137 ls
= isl_local_space_cow(ls
);
1141 ls
->dim
= isl_space_lift(ls
->dim
, ls
->div
->n_row
);
1142 ls
->div
= isl_mat_drop_rows(ls
->div
, 0, ls
->div
->n_row
);
1143 if (!ls
->dim
|| !ls
->div
)
1144 return isl_local_space_free(ls
);
1149 /* Construct a basic map that maps a set living in local space "ls"
1150 * to the corresponding lifted local space.
1152 __isl_give isl_basic_map
*isl_local_space_lifting(
1153 __isl_take isl_local_space
*ls
)
1155 isl_basic_map
*lifting
;
1156 isl_basic_set
*bset
;
1160 if (!isl_local_space_is_set(ls
))
1161 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1162 "lifting only defined on set spaces", goto error
);
1164 bset
= isl_basic_set_from_local_space(ls
);
1165 lifting
= isl_basic_set_unwrap(isl_basic_set_lift(bset
));
1166 lifting
= isl_basic_map_domain_map(lifting
);
1167 lifting
= isl_basic_map_reverse(lifting
);
1171 isl_local_space_free(ls
);
1175 /* Compute the preimage of "ls" under the function represented by "ma".
1176 * In other words, plug in "ma" in "ls". The result is a local space
1177 * that is part of the domain space of "ma".
1179 * If the divs in "ls" are represented as
1181 * floor((a_i(p) + b_i x + c_i(divs))/n_i)
1183 * and ma is represented by
1185 * x = D(p) + F(y) + G(divs')
1187 * then the resulting divs are
1189 * floor((a_i(p) + b_i D(p) + b_i F(y) + B_i G(divs') + c_i(divs))/n_i)
1191 * We first copy over the divs from "ma" and then
1192 * we add the modified divs from "ls".
1194 __isl_give isl_local_space
*isl_local_space_preimage_multi_aff(
1195 __isl_take isl_local_space
*ls
, __isl_take isl_multi_aff
*ma
)
1199 isl_local_space
*res
= NULL
;
1200 int n_div_ls
, n_div_ma
;
1201 isl_int f
, c1
, c2
, g
;
1203 ma
= isl_multi_aff_align_divs(ma
);
1206 if (!isl_space_is_range_internal(ls
->dim
, ma
->space
))
1207 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1208 "spaces don't match", goto error
);
1210 n_div_ls
= isl_local_space_dim(ls
, isl_dim_div
);
1211 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
1213 space
= isl_space_domain(isl_multi_aff_get_space(ma
));
1214 res
= isl_local_space_alloc(space
, n_div_ma
+ n_div_ls
);
1219 isl_mat_free(res
->div
);
1220 res
->div
= isl_mat_copy(ma
->p
[0]->ls
->div
);
1221 res
->div
= isl_mat_add_zero_cols(res
->div
, n_div_ls
);
1222 res
->div
= isl_mat_add_rows(res
->div
, n_div_ls
);
1232 for (i
= 0; i
< ls
->div
->n_row
; ++i
) {
1233 if (isl_int_is_zero(ls
->div
->row
[i
][0])) {
1234 isl_int_set_si(res
->div
->row
[n_div_ma
+ i
][0], 0);
1237 isl_seq_preimage(res
->div
->row
[n_div_ma
+ i
], ls
->div
->row
[i
],
1238 ma
, 0, 0, n_div_ma
, n_div_ls
, f
, c1
, c2
, g
, 1);
1239 normalize_div(res
, n_div_ma
+ i
);
1247 isl_local_space_free(ls
);
1248 isl_multi_aff_free(ma
);
1251 isl_local_space_free(ls
);
1252 isl_multi_aff_free(ma
);
1253 isl_local_space_free(res
);
1257 /* Move the "n" dimensions of "src_type" starting at "src_pos" of "ls"
1258 * to dimensions of "dst_type" at "dst_pos".
1260 * Moving to/from local dimensions is not allowed.
1261 * We currently assume that the dimension type changes.
1263 __isl_give isl_local_space
*isl_local_space_move_dims(
1264 __isl_take isl_local_space
*ls
,
1265 enum isl_dim_type dst_type
, unsigned dst_pos
,
1266 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
1274 !isl_local_space_is_named_or_nested(ls
, src_type
) &&
1275 !isl_local_space_is_named_or_nested(ls
, dst_type
))
1278 if (src_pos
+ n
> isl_local_space_dim(ls
, src_type
))
1279 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1280 "range out of bounds", return isl_local_space_free(ls
));
1281 if (dst_pos
> isl_local_space_dim(ls
, dst_type
))
1282 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1283 "position out of bounds",
1284 return isl_local_space_free(ls
));
1285 if (src_type
== isl_dim_div
)
1286 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1287 "cannot move divs", return isl_local_space_free(ls
));
1288 if (dst_type
== isl_dim_div
)
1289 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
1290 "cannot move to divs", return isl_local_space_free(ls
));
1291 if (dst_type
== src_type
&& dst_pos
== src_pos
)
1293 if (dst_type
== src_type
)
1294 isl_die(isl_local_space_get_ctx(ls
), isl_error_unsupported
,
1295 "moving dims within the same type not supported",
1296 return isl_local_space_free(ls
));
1298 ls
= isl_local_space_cow(ls
);
1302 g_src_pos
= 1 + isl_local_space_offset(ls
, src_type
) + src_pos
;
1303 g_dst_pos
= 1 + isl_local_space_offset(ls
, dst_type
) + dst_pos
;
1304 if (dst_type
> src_type
)
1306 ls
->div
= isl_mat_move_cols(ls
->div
, g_dst_pos
, g_src_pos
, n
);
1308 return isl_local_space_free(ls
);
1309 ls
->dim
= isl_space_move_dims(ls
->dim
, dst_type
, dst_pos
,
1310 src_type
, src_pos
, n
);
1312 return isl_local_space_free(ls
);
1317 /* Remove any internal structure of the domain of "ls".
1318 * If there is any such internal structure in the input,
1319 * then the name of the corresponding space is also removed.
1321 __isl_give isl_local_space
*isl_local_space_flatten_domain(
1322 __isl_take isl_local_space
*ls
)
1327 if (!ls
->dim
->nested
[0])
1330 ls
= isl_local_space_cow(ls
);
1334 ls
->dim
= isl_space_flatten_domain(ls
->dim
);
1336 return isl_local_space_free(ls
);
1341 /* Remove any internal structure of the range of "ls".
1342 * If there is any such internal structure in the input,
1343 * then the name of the corresponding space is also removed.
1345 __isl_give isl_local_space
*isl_local_space_flatten_range(
1346 __isl_take isl_local_space
*ls
)
1351 if (!ls
->dim
->nested
[1])
1354 ls
= isl_local_space_cow(ls
);
1358 ls
->dim
= isl_space_flatten_range(ls
->dim
);
1360 return isl_local_space_free(ls
);
1365 /* Given the local space "ls" of a map, return the local space of a set
1366 * that lives in a space that wraps the space of "ls" and that has
1369 __isl_give isl_local_space
*isl_local_space_wrap(__isl_take isl_local_space
*ls
)
1371 ls
= isl_local_space_cow(ls
);
1375 ls
->dim
= isl_space_wrap(ls
->dim
);
1377 return isl_local_space_free(ls
);