2 * Copyright 2011 INRIA Saclay
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
11 #include <isl_ctx_private.h>
12 #include <isl_map_private.h>
13 #include <isl_local_space_private.h>
14 #include <isl_dim_private.h>
15 #include <isl_mat_private.h>
18 isl_ctx
*isl_local_space_get_ctx(__isl_keep isl_local_space
*ls
)
20 return ls
? ls
->dim
->ctx
: NULL
;
23 __isl_give isl_local_space
*isl_local_space_alloc_div(__isl_take isl_dim
*dim
,
24 __isl_take isl_mat
*div
)
27 isl_local_space
*ls
= NULL
;
32 ctx
= isl_dim_get_ctx(dim
);
33 ls
= isl_calloc_type(ctx
, struct isl_local_space
);
44 isl_local_space_free(ls
);
48 __isl_give isl_local_space
*isl_local_space_alloc(__isl_take isl_dim
*dim
,
58 total
= isl_dim_total(dim
);
60 ctx
= isl_dim_get_ctx(dim
);
61 div
= isl_mat_alloc(ctx
, n_div
, 1 + 1 + total
+ n_div
);
62 return isl_local_space_alloc_div(dim
, div
);
65 __isl_give isl_local_space
*isl_local_space_from_dim(__isl_take isl_dim
*dim
)
67 return isl_local_space_alloc(dim
, 0);
70 __isl_give isl_local_space
*isl_local_space_copy(__isl_keep isl_local_space
*ls
)
79 __isl_give isl_local_space
*isl_local_space_dup(__isl_keep isl_local_space
*ls
)
84 return isl_local_space_alloc_div(isl_dim_copy(ls
->dim
),
85 isl_mat_copy(ls
->div
));
89 __isl_give isl_local_space
*isl_local_space_cow(__isl_take isl_local_space
*ls
)
97 return isl_local_space_dup(ls
);
100 void *isl_local_space_free(__isl_take isl_local_space
*ls
)
108 isl_dim_free(ls
->dim
);
109 isl_mat_free(ls
->div
);
116 /* Return true if the two local spaces are identical, with identical
117 * expressions for the integer divisions.
119 int isl_local_space_is_equal(__isl_keep isl_local_space
*ls1
,
120 __isl_keep isl_local_space
*ls2
)
127 equal
= isl_dim_equal(ls1
->dim
, ls2
->dim
);
128 if (equal
< 0 || !equal
)
131 return isl_mat_is_equal(ls1
->div
, ls2
->div
);
134 int isl_local_space_dim(__isl_keep isl_local_space
*ls
,
135 enum isl_dim_type type
)
139 if (type
== isl_dim_div
)
140 return ls
->div
->n_row
;
141 if (type
== isl_dim_all
)
142 return isl_dim_size(ls
->dim
, isl_dim_all
) + ls
->div
->n_row
;
143 return isl_dim_size(ls
->dim
, type
);
146 unsigned isl_local_space_offset(__isl_keep isl_local_space
*ls
,
147 enum isl_dim_type type
)
156 case isl_dim_cst
: return 0;
157 case isl_dim_param
: return 1;
158 case isl_dim_in
: return 1 + dim
->nparam
;
159 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
160 case isl_dim_div
: return 1 + dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
165 const char *isl_local_space_get_dim_name(__isl_keep isl_local_space
*ls
,
166 enum isl_dim_type type
, unsigned pos
)
168 return ls
? isl_dim_get_name(ls
->dim
, type
, pos
) : NULL
;
171 __isl_give isl_div
*isl_local_space_get_div(__isl_keep isl_local_space
*ls
,
179 if (pos
< 0 || pos
>= ls
->div
->n_row
)
180 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
181 "index out of bounds", return NULL
);
183 bmap
= isl_basic_map_from_local_space(isl_local_space_copy(ls
));
184 return isl_basic_map_div(bmap
, pos
);
187 __isl_give isl_dim
*isl_local_space_get_dim(__isl_keep isl_local_space
*ls
)
192 return isl_dim_copy(ls
->dim
);
195 __isl_give isl_local_space
*isl_local_space_set_dim_name(
196 __isl_take isl_local_space
*ls
,
197 enum isl_dim_type type
, unsigned pos
, const char *s
)
199 ls
= isl_local_space_cow(ls
);
202 ls
->dim
= isl_dim_set_name(ls
->dim
, type
, pos
, s
);
204 return isl_local_space_free(ls
);
209 __isl_give isl_local_space
*isl_local_space_add_div(
210 __isl_take isl_local_space
*ls
, __isl_take isl_vec
*div
)
212 ls
= isl_local_space_cow(ls
);
216 if (ls
->div
->n_col
!= div
->size
)
217 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
218 "incompatible dimensions", goto error
);
220 ls
->div
= isl_mat_add_zero_cols(ls
->div
, 1);
221 ls
->div
= isl_mat_add_rows(ls
->div
, 1);
225 isl_seq_cpy(ls
->div
->row
[ls
->div
->n_row
- 1], div
->el
, div
->size
);
226 isl_int_set_si(ls
->div
->row
[ls
->div
->n_row
- 1][div
->size
], 0);
231 isl_local_space_free(ls
);
236 __isl_give isl_local_space
*isl_local_space_replace_divs(
237 __isl_take isl_local_space
*ls
, __isl_take isl_mat
*div
)
239 ls
= isl_local_space_cow(ls
);
244 isl_mat_free(ls
->div
);
249 isl_local_space_free(ls
);
253 /* Copy row "s" of "src" to row "d" of "dst", applying the expansion
256 static void expand_row(__isl_keep isl_mat
*dst
, int d
,
257 __isl_keep isl_mat
*src
, int s
, int *exp
)
260 unsigned c
= src
->n_col
- src
->n_row
;
262 isl_seq_cpy(dst
->row
[d
], src
->row
[s
], c
);
263 isl_seq_clr(dst
->row
[d
] + c
, dst
->n_col
- c
);
265 for (i
= 0; i
< s
; ++i
)
266 isl_int_set(dst
->row
[d
][c
+ exp
[i
]], src
->row
[s
][c
+ i
]);
269 /* Compare (known) divs.
270 * Return non-zero if at least one of the two divs is unknown.
272 static int cmp_row(__isl_keep isl_mat
*div
, int i
, int j
)
276 if (isl_int_is_zero(div
->row
[j
][0]))
278 if (isl_int_is_zero(div
->row
[i
][0]))
281 li
= isl_seq_last_non_zero(div
->row
[i
], div
->n_col
);
282 lj
= isl_seq_last_non_zero(div
->row
[j
], div
->n_col
);
287 return isl_seq_cmp(div
->row
[i
], div
->row
[j
], div
->n_col
);
290 /* Combine the two lists of divs into a single list.
291 * For each row i in div1, exp1[i] is set to the position of the corresponding
292 * row in the result. Similarly for div2 and exp2.
293 * This function guarantees
295 * exp1[i+1] > exp1[i]
296 * For optimal merging, the two input list should have been sorted.
298 __isl_give isl_mat
*isl_merge_divs(__isl_keep isl_mat
*div1
,
299 __isl_keep isl_mat
*div2
, int *exp1
, int *exp2
)
303 unsigned d
= div1
->n_col
- div1
->n_row
;
305 div
= isl_mat_alloc(div1
->ctx
, 1 + div1
->n_row
+ div2
->n_row
,
306 d
+ div1
->n_row
+ div2
->n_row
);
310 for (i
= 0, j
= 0, k
= 0; i
< div1
->n_row
&& j
< div2
->n_row
; ++k
) {
313 expand_row(div
, k
, div1
, i
, exp1
);
314 expand_row(div
, k
+ 1, div2
, j
, exp2
);
316 cmp
= cmp_row(div
, k
, k
+ 1);
320 } else if (cmp
< 0) {
324 isl_seq_cpy(div
->row
[k
], div
->row
[k
+ 1], div
->n_col
);
327 for (; i
< div1
->n_row
; ++i
, ++k
) {
328 expand_row(div
, k
, div1
, i
, exp1
);
331 for (; j
< div2
->n_row
; ++j
, ++k
) {
332 expand_row(div
, k
, div2
, j
, exp2
);
342 int isl_local_space_divs_known(__isl_keep isl_local_space
*ls
)
349 for (i
= 0; i
< ls
->div
->n_row
; ++i
)
350 if (isl_int_is_zero(ls
->div
->row
[i
][0]))
356 /* Construct a local space for a map that has the given local
357 * space as domain and that has a zero-dimensional range.
359 __isl_give isl_local_space
*isl_local_space_from_domain(
360 __isl_take isl_local_space
*ls
)
362 ls
= isl_local_space_cow(ls
);
365 ls
->dim
= isl_dim_from_domain(ls
->dim
);
367 return isl_local_space_free(ls
);
371 __isl_give isl_local_space
*isl_local_space_add_dims(
372 __isl_take isl_local_space
*ls
, enum isl_dim_type type
, unsigned n
)
378 pos
= isl_local_space_dim(ls
, type
);
379 return isl_local_space_insert_dims(ls
, type
, pos
, n
);
382 /* Remove common factor of non-constant terms and denominator.
384 static void normalize_div(__isl_keep isl_local_space
*ls
, int div
)
386 isl_ctx
*ctx
= ls
->div
->ctx
;
387 unsigned total
= ls
->div
->n_col
- 2;
389 isl_seq_gcd(ls
->div
->row
[div
] + 2, total
, &ctx
->normalize_gcd
);
390 isl_int_gcd(ctx
->normalize_gcd
,
391 ctx
->normalize_gcd
, ls
->div
->row
[div
][0]);
392 if (isl_int_is_one(ctx
->normalize_gcd
))
395 isl_seq_scale_down(ls
->div
->row
[div
] + 2, ls
->div
->row
[div
] + 2,
396 ctx
->normalize_gcd
, total
);
397 isl_int_divexact(ls
->div
->row
[div
][0], ls
->div
->row
[div
][0],
399 isl_int_fdiv_q(ls
->div
->row
[div
][1], ls
->div
->row
[div
][1],
403 /* Exploit the equalities in "eq" to simplify the expressions of
404 * the integer divisions in "ls".
405 * The integer divisions in "ls" are assumed to appear as regular
406 * dimensions in "eq".
408 __isl_give isl_local_space
*isl_local_space_substitute_equalities(
409 __isl_take isl_local_space
*ls
, __isl_take isl_basic_set
*eq
)
415 ls
= isl_local_space_cow(ls
);
419 total
= isl_dim_total(eq
->dim
);
420 if (isl_local_space_dim(ls
, isl_dim_all
) != total
)
421 isl_die(isl_local_space_get_ctx(ls
), isl_error_invalid
,
422 "dimensions don't match", goto error
);
425 for (i
= 0; i
< eq
->n_eq
; ++i
) {
426 j
= isl_seq_last_non_zero(eq
->eq
[i
], total
+ n_div
);
427 if (j
< 0 || j
== 0 || j
>= total
)
430 for (k
= 0; k
< ls
->div
->n_row
; ++k
) {
431 if (isl_int_is_zero(ls
->div
->row
[k
][1 + j
]))
433 isl_seq_elim(ls
->div
->row
[k
] + 1, eq
->eq
[i
], j
, total
,
434 &ls
->div
->row
[k
][0]);
435 normalize_div(ls
, k
);
439 isl_basic_set_free(eq
);
442 isl_basic_set_free(eq
);
443 isl_local_space_free(ls
);
447 int isl_local_space_is_named_or_nested(__isl_keep isl_local_space
*ls
,
448 enum isl_dim_type type
)
452 return isl_dim_is_named_or_nested(ls
->dim
, type
);
455 __isl_give isl_local_space
*isl_local_space_drop_dims(
456 __isl_take isl_local_space
*ls
,
457 enum isl_dim_type type
, unsigned first
, unsigned n
)
463 if (n
== 0 && !isl_local_space_is_named_or_nested(ls
, type
))
466 ctx
= isl_local_space_get_ctx(ls
);
467 if (first
+ n
> isl_local_space_dim(ls
, type
))
468 isl_die(ctx
, isl_error_invalid
, "range out of bounds",
469 return isl_local_space_free(ls
));
471 ls
= isl_local_space_cow(ls
);
475 if (type
== isl_dim_div
) {
476 ls
->div
= isl_mat_drop_rows(ls
->div
, first
, n
);
478 ls
->dim
= isl_dim_drop(ls
->dim
, type
, first
, n
);
480 return isl_local_space_free(ls
);
483 first
+= 1 + isl_local_space_offset(ls
, type
);
484 ls
->div
= isl_mat_drop_cols(ls
->div
, first
, n
);
486 return isl_local_space_free(ls
);
491 __isl_give isl_local_space
*isl_local_space_insert_dims(
492 __isl_take isl_local_space
*ls
,
493 enum isl_dim_type type
, unsigned first
, unsigned n
)
499 if (n
== 0 && !isl_local_space_is_named_or_nested(ls
, type
))
502 ctx
= isl_local_space_get_ctx(ls
);
503 if (first
> isl_local_space_dim(ls
, type
))
504 isl_die(ctx
, isl_error_invalid
, "position out of bounds",
505 return isl_local_space_free(ls
));
507 ls
= isl_local_space_cow(ls
);
511 if (type
== isl_dim_div
) {
512 ls
->div
= isl_mat_insert_zero_rows(ls
->div
, first
, n
);
514 ls
->dim
= isl_dim_insert(ls
->dim
, type
, first
, n
);
516 return isl_local_space_free(ls
);
519 first
+= 1 + isl_local_space_offset(ls
, type
);
520 ls
->div
= isl_mat_insert_zero_cols(ls
->div
, first
, n
);
522 return isl_local_space_free(ls
);