2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2013 Ecole Normale Superieure
6 * Use of this software is governed by the MIT license
8 * Written by Sven Verdoolaege, K.U.Leuven, Departement
9 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
11 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
12 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
18 #include <isl_ctx_private.h>
19 #include <isl_map_private.h>
22 #include <isl_stream_private.h>
24 #include "isl_polynomial_private.h"
25 #include <isl/union_map.h>
26 #include <isl_mat_private.h>
27 #include <isl_aff_private.h>
28 #include <isl_vec_private.h>
30 #include <isl_val_private.h>
35 struct variable
*next
;
44 static struct vars
*vars_new(struct isl_ctx
*ctx
)
47 v
= isl_alloc_type(ctx
, struct vars
);
56 static void variable_free(struct variable
*var
)
59 struct variable
*next
= var
->next
;
66 static void vars_free(struct vars
*v
)
74 static void vars_drop(struct vars
*v
, int n
)
85 struct variable
*next
= var
->next
;
93 static struct variable
*variable_new(struct vars
*v
, const char *name
, int len
,
97 var
= isl_calloc_type(v
->ctx
, struct variable
);
100 var
->name
= strdup(name
);
101 var
->name
[len
] = '\0';
110 static int vars_pos(struct vars
*v
, const char *s
, int len
)
117 for (q
= v
->v
; q
; q
= q
->next
) {
118 if (strncmp(q
->name
, s
, len
) == 0 && q
->name
[len
] == '\0')
125 v
->v
= variable_new(v
, s
, len
, v
->n
);
133 static int vars_add_anon(struct vars
*v
)
135 v
->v
= variable_new(v
, "", 0, v
->n
);
144 /* Obtain next token, with some preprocessing.
145 * In particular, evaluate expressions of the form x^y,
146 * with x and y values.
148 static struct isl_token
*next_token(__isl_keep isl_stream
*s
)
150 struct isl_token
*tok
, *tok2
;
152 tok
= isl_stream_next_token(s
);
153 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
)
155 if (!isl_stream_eat_if_available(s
, '^'))
157 tok2
= isl_stream_next_token(s
);
158 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
159 isl_stream_error(s
, tok2
, "expecting constant value");
163 isl_int_pow_ui(tok
->u
.v
, tok
->u
.v
, isl_int_get_ui(tok2
->u
.v
));
165 isl_token_free(tok2
);
169 isl_token_free(tok2
);
173 /* Read an isl_val from "s".
175 * The following token sequences are recognized
178 * "-" "infty" -> -infty
183 * where n, d and v are integer constants.
185 __isl_give isl_val
*isl_stream_read_val(__isl_keep isl_stream
*s
)
187 struct isl_token
*tok
= NULL
;
188 struct isl_token
*tok2
= NULL
;
193 isl_stream_error(s
, NULL
, "unexpected EOF");
196 if (tok
->type
== ISL_TOKEN_INFTY
) {
198 return isl_val_infty(s
->ctx
);
200 if (tok
->type
== '-' &&
201 isl_stream_eat_if_available(s
, ISL_TOKEN_INFTY
)) {
203 return isl_val_neginfty(s
->ctx
);
205 if (tok
->type
== ISL_TOKEN_NAN
) {
207 return isl_val_nan(s
->ctx
);
209 if (tok
->type
!= ISL_TOKEN_VALUE
) {
210 isl_stream_error(s
, tok
, "expecting value");
214 if (isl_stream_eat_if_available(s
, '/')) {
215 tok2
= next_token(s
);
217 isl_stream_error(s
, NULL
, "unexpected EOF");
220 if (tok2
->type
!= ISL_TOKEN_VALUE
) {
221 isl_stream_error(s
, tok2
, "expecting value");
224 val
= isl_val_rat_from_isl_int(s
->ctx
, tok
->u
.v
, tok2
->u
.v
);
225 val
= isl_val_normalize(val
);
227 val
= isl_val_int_from_isl_int(s
->ctx
, tok
->u
.v
);
231 isl_token_free(tok2
);
235 isl_token_free(tok2
);
239 /* Read an isl_val from "str".
241 struct isl_val
*isl_val_read_from_str(struct isl_ctx
*ctx
,
245 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
248 val
= isl_stream_read_val(s
);
253 static int accept_cst_factor(__isl_keep isl_stream
*s
, isl_int
*f
)
255 struct isl_token
*tok
;
258 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
259 isl_stream_error(s
, tok
, "expecting constant value");
263 isl_int_mul(*f
, *f
, tok
->u
.v
);
267 if (isl_stream_eat_if_available(s
, '*'))
268 return accept_cst_factor(s
, f
);
276 /* Given an affine expression aff, return an affine expression
277 * for aff % d, with d the next token on the stream, which is
278 * assumed to be a constant.
280 * We introduce an integer division q = [aff/d] and the result
281 * is set to aff - d q.
283 static __isl_give isl_pw_aff
*affine_mod(__isl_keep isl_stream
*s
,
284 struct vars
*v
, __isl_take isl_pw_aff
*aff
)
286 struct isl_token
*tok
;
290 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
291 isl_stream_error(s
, tok
, "expecting constant value");
295 q
= isl_pw_aff_copy(aff
);
296 q
= isl_pw_aff_scale_down(q
, tok
->u
.v
);
297 q
= isl_pw_aff_floor(q
);
298 q
= isl_pw_aff_scale(q
, tok
->u
.v
);
300 aff
= isl_pw_aff_sub(aff
, q
);
305 isl_pw_aff_free(aff
);
310 static __isl_give isl_pw_aff
*accept_affine(__isl_keep isl_stream
*s
,
311 __isl_take isl_space
*space
, struct vars
*v
);
312 static __isl_give isl_pw_aff_list
*accept_affine_list(__isl_keep isl_stream
*s
,
313 __isl_take isl_space
*dim
, struct vars
*v
);
315 static __isl_give isl_pw_aff
*accept_minmax(__isl_keep isl_stream
*s
,
316 __isl_take isl_space
*dim
, struct vars
*v
)
318 struct isl_token
*tok
;
319 isl_pw_aff_list
*list
= NULL
;
322 tok
= isl_stream_next_token(s
);
325 min
= tok
->type
== ISL_TOKEN_MIN
;
328 if (isl_stream_eat(s
, '('))
331 list
= accept_affine_list(s
, isl_space_copy(dim
), v
);
335 if (isl_stream_eat(s
, ')'))
339 return min
? isl_pw_aff_list_min(list
) : isl_pw_aff_list_max(list
);
342 isl_pw_aff_list_free(list
);
346 /* Is "tok" the start of an integer division?
348 static int is_start_of_div(struct isl_token
*tok
)
352 if (tok
->type
== '[')
354 if (tok
->type
== ISL_TOKEN_FLOOR
)
356 if (tok
->type
== ISL_TOKEN_CEIL
)
358 if (tok
->type
== ISL_TOKEN_FLOORD
)
360 if (tok
->type
== ISL_TOKEN_CEILD
)
365 /* Read an integer division from "s" and return it as an isl_pw_aff.
367 * The integer division can be of the form
369 * [<affine expression>]
370 * floor(<affine expression>)
371 * ceil(<affine expression>)
372 * floord(<affine expression>,<denominator>)
373 * ceild(<affine expression>,<denominator>)
375 static __isl_give isl_pw_aff
*accept_div(__isl_keep isl_stream
*s
,
376 __isl_take isl_space
*dim
, struct vars
*v
)
378 struct isl_token
*tok
;
382 isl_pw_aff
*pwaff
= NULL
;
384 if (isl_stream_eat_if_available(s
, ISL_TOKEN_FLOORD
))
386 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_CEILD
))
388 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_FLOOR
))
390 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_CEIL
))
393 if (isl_stream_eat(s
, '('))
396 if (isl_stream_eat(s
, '['))
400 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
403 if (isl_stream_eat(s
, ','))
409 if (tok
->type
!= ISL_TOKEN_VALUE
) {
410 isl_stream_error(s
, tok
, "expected denominator");
411 isl_stream_push_token(s
, tok
);
414 isl_pw_aff_scale_down(pwaff
, tok
->u
.v
);
419 pwaff
= isl_pw_aff_ceil(pwaff
);
421 pwaff
= isl_pw_aff_floor(pwaff
);
424 if (isl_stream_eat(s
, ')'))
427 if (isl_stream_eat(s
, ']'))
435 isl_pw_aff_free(pwaff
);
439 static __isl_give isl_pw_aff
*accept_affine_factor(__isl_keep isl_stream
*s
,
440 __isl_take isl_space
*dim
, struct vars
*v
)
442 struct isl_token
*tok
= NULL
;
443 isl_pw_aff
*res
= NULL
;
447 isl_stream_error(s
, NULL
, "unexpected EOF");
451 if (tok
->type
== ISL_TOKEN_AFF
) {
452 res
= isl_pw_aff_copy(tok
->u
.pwaff
);
454 } else if (tok
->type
== ISL_TOKEN_IDENT
) {
456 int pos
= vars_pos(v
, tok
->u
.s
, -1);
462 vars_drop(v
, v
->n
- n
);
463 isl_stream_error(s
, tok
, "unknown identifier");
467 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(isl_space_copy(dim
)));
470 isl_int_set_si(aff
->v
->el
[2 + pos
], 1);
471 res
= isl_pw_aff_from_aff(aff
);
473 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
474 if (isl_stream_eat_if_available(s
, '*')) {
475 res
= accept_affine_factor(s
, isl_space_copy(dim
), v
);
476 res
= isl_pw_aff_scale(res
, tok
->u
.v
);
480 ls
= isl_local_space_from_space(isl_space_copy(dim
));
481 aff
= isl_aff_zero_on_domain(ls
);
482 aff
= isl_aff_add_constant(aff
, tok
->u
.v
);
483 res
= isl_pw_aff_from_aff(aff
);
486 } else if (tok
->type
== '(') {
489 res
= accept_affine(s
, isl_space_copy(dim
), v
);
492 if (isl_stream_eat(s
, ')'))
494 } else if (is_start_of_div(tok
)) {
495 isl_stream_push_token(s
, tok
);
497 res
= accept_div(s
, isl_space_copy(dim
), v
);
498 } else if (tok
->type
== ISL_TOKEN_MIN
|| tok
->type
== ISL_TOKEN_MAX
) {
499 isl_stream_push_token(s
, tok
);
501 res
= accept_minmax(s
, isl_space_copy(dim
), v
);
503 isl_stream_error(s
, tok
, "expecting factor");
506 if (isl_stream_eat_if_available(s
, '%') ||
507 isl_stream_eat_if_available(s
, ISL_TOKEN_MOD
)) {
509 return affine_mod(s
, v
, res
);
511 if (isl_stream_eat_if_available(s
, '*')) {
514 isl_int_set_si(f
, 1);
515 if (accept_cst_factor(s
, &f
) < 0) {
519 res
= isl_pw_aff_scale(res
, f
);
522 if (isl_stream_eat_if_available(s
, '/')) {
525 isl_int_set_si(f
, 1);
526 if (accept_cst_factor(s
, &f
) < 0) {
530 res
= isl_pw_aff_scale_down(res
, f
);
539 isl_pw_aff_free(res
);
544 static __isl_give isl_pw_aff
*add_cst(__isl_take isl_pw_aff
*pwaff
, isl_int v
)
549 space
= isl_pw_aff_get_domain_space(pwaff
);
550 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
551 aff
= isl_aff_add_constant(aff
, v
);
553 return isl_pw_aff_add(pwaff
, isl_pw_aff_from_aff(aff
));
556 /* Return a piecewise affine expression defined on the specified domain
557 * that represents NaN.
559 static __isl_give isl_pw_aff
*nan_on_domain(__isl_keep isl_space
*space
)
563 ls
= isl_local_space_from_space(isl_space_copy(space
));
564 return isl_pw_aff_nan_on_domain(ls
);
567 static __isl_give isl_pw_aff
*accept_affine(__isl_keep isl_stream
*s
,
568 __isl_take isl_space
*space
, struct vars
*v
)
570 struct isl_token
*tok
= NULL
;
575 ls
= isl_local_space_from_space(isl_space_copy(space
));
576 res
= isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls
));
583 isl_stream_error(s
, NULL
, "unexpected EOF");
586 if (tok
->type
== '-') {
591 if (tok
->type
== '(' || is_start_of_div(tok
) ||
592 tok
->type
== ISL_TOKEN_MIN
|| tok
->type
== ISL_TOKEN_MAX
||
593 tok
->type
== ISL_TOKEN_IDENT
||
594 tok
->type
== ISL_TOKEN_AFF
) {
596 isl_stream_push_token(s
, tok
);
598 term
= accept_affine_factor(s
,
599 isl_space_copy(space
), v
);
601 res
= isl_pw_aff_sub(res
, term
);
603 res
= isl_pw_aff_add(res
, term
);
607 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
609 isl_int_neg(tok
->u
.v
, tok
->u
.v
);
610 if (isl_stream_eat_if_available(s
, '*') ||
611 isl_stream_next_token_is(s
, ISL_TOKEN_IDENT
)) {
613 term
= accept_affine_factor(s
,
614 isl_space_copy(space
), v
);
615 term
= isl_pw_aff_scale(term
, tok
->u
.v
);
616 res
= isl_pw_aff_add(res
, term
);
620 res
= add_cst(res
, tok
->u
.v
);
623 } else if (tok
->type
== ISL_TOKEN_NAN
) {
624 res
= isl_pw_aff_add(res
, nan_on_domain(space
));
626 isl_stream_error(s
, tok
, "unexpected isl_token");
627 isl_stream_push_token(s
, tok
);
628 isl_pw_aff_free(res
);
629 isl_space_free(space
);
635 if (tok
&& tok
->type
== '-') {
638 } else if (tok
&& tok
->type
== '+') {
641 } else if (tok
&& tok
->type
== ISL_TOKEN_VALUE
&&
642 isl_int_is_neg(tok
->u
.v
)) {
643 isl_stream_push_token(s
, tok
);
646 isl_stream_push_token(s
, tok
);
651 isl_space_free(space
);
654 isl_space_free(space
);
656 isl_pw_aff_free(res
);
660 static int is_comparator(struct isl_token
*tok
)
678 static __isl_give isl_map
*read_formula(__isl_keep isl_stream
*s
,
679 struct vars
*v
, __isl_take isl_map
*map
, int rational
);
680 static __isl_give isl_pw_aff
*accept_extended_affine(__isl_keep isl_stream
*s
,
681 __isl_take isl_space
*dim
, struct vars
*v
, int rational
);
683 /* Accept a ternary operator, given the first argument.
685 static __isl_give isl_pw_aff
*accept_ternary(__isl_keep isl_stream
*s
,
686 __isl_take isl_map
*cond
, struct vars
*v
, int rational
)
689 isl_pw_aff
*pwaff1
= NULL
, *pwaff2
= NULL
, *pa_cond
;
694 if (isl_stream_eat(s
, '?'))
697 dim
= isl_space_wrap(isl_map_get_space(cond
));
698 pwaff1
= accept_extended_affine(s
, dim
, v
, rational
);
702 if (isl_stream_eat(s
, ':'))
705 dim
= isl_pw_aff_get_domain_space(pwaff1
);
706 pwaff2
= accept_extended_affine(s
, dim
, v
, rational
);
710 pa_cond
= isl_set_indicator_function(isl_map_wrap(cond
));
711 return isl_pw_aff_cond(pa_cond
, pwaff1
, pwaff2
);
714 isl_pw_aff_free(pwaff1
);
715 isl_pw_aff_free(pwaff2
);
719 /* Set *line and *col to those of the next token, if any.
721 static void set_current_line_col(__isl_keep isl_stream
*s
, int *line
, int *col
)
723 struct isl_token
*tok
;
725 tok
= isl_stream_next_token(s
);
731 isl_stream_push_token(s
, tok
);
734 /* Push a token encapsulating "pa" onto "s", with the given
737 static int push_aff(__isl_keep isl_stream
*s
, int line
, int col
,
738 __isl_take isl_pw_aff
*pa
)
740 struct isl_token
*tok
;
742 tok
= isl_token_new(s
->ctx
, line
, col
, 0);
745 tok
->type
= ISL_TOKEN_AFF
;
747 isl_stream_push_token(s
, tok
);
755 /* Accept an affine expression that may involve ternary operators.
756 * We first read an affine expression.
757 * If it is not followed by a comparison operator, we simply return it.
758 * Otherwise, we assume the affine expression is part of the first
759 * argument of a ternary operator and try to parse that.
761 static __isl_give isl_pw_aff
*accept_extended_affine(__isl_keep isl_stream
*s
,
762 __isl_take isl_space
*dim
, struct vars
*v
, int rational
)
767 struct isl_token
*tok
;
768 int line
= -1, col
= -1;
771 set_current_line_col(s
, &line
, &col
);
773 pwaff
= accept_affine(s
, dim
, v
);
775 pwaff
= isl_pw_aff_set_rational(pwaff
);
779 tok
= isl_stream_next_token(s
);
781 return isl_pw_aff_free(pwaff
);
783 is_comp
= is_comparator(tok
);
784 isl_stream_push_token(s
, tok
);
788 space
= isl_pw_aff_get_domain_space(pwaff
);
789 cond
= isl_map_universe(isl_space_unwrap(space
));
791 if (push_aff(s
, line
, col
, pwaff
) < 0)
792 cond
= isl_map_free(cond
);
796 cond
= read_formula(s
, v
, cond
, rational
);
798 return accept_ternary(s
, cond
, v
, rational
);
801 static __isl_give isl_map
*read_var_def(__isl_keep isl_stream
*s
,
802 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
809 if (type
== isl_dim_param
)
810 pos
= isl_map_dim(map
, isl_dim_param
);
812 pos
= isl_map_dim(map
, isl_dim_in
);
813 if (type
== isl_dim_out
)
814 pos
+= isl_map_dim(map
, isl_dim_out
);
819 def
= accept_extended_affine(s
, isl_space_wrap(isl_map_get_space(map
)),
821 def_map
= isl_map_from_pw_aff(def
);
822 def_map
= isl_map_equate(def_map
, type
, pos
, isl_dim_out
, 0);
823 def_map
= isl_set_unwrap(isl_map_domain(def_map
));
825 map
= isl_map_intersect(map
, def_map
);
830 static __isl_give isl_pw_aff_list
*accept_affine_list(__isl_keep isl_stream
*s
,
831 __isl_take isl_space
*dim
, struct vars
*v
)
834 isl_pw_aff_list
*list
;
835 struct isl_token
*tok
= NULL
;
837 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
838 list
= isl_pw_aff_list_from_pw_aff(pwaff
);
843 tok
= isl_stream_next_token(s
);
845 isl_stream_error(s
, NULL
, "unexpected EOF");
848 if (tok
->type
!= ',') {
849 isl_stream_push_token(s
, tok
);
854 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
855 list
= isl_pw_aff_list_concat(list
,
856 isl_pw_aff_list_from_pw_aff(pwaff
));
865 isl_pw_aff_list_free(list
);
869 static __isl_give isl_map
*read_defined_var_list(__isl_keep isl_stream
*s
,
870 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
872 struct isl_token
*tok
;
874 while ((tok
= isl_stream_next_token(s
)) != NULL
) {
878 if (tok
->type
!= ISL_TOKEN_IDENT
)
881 p
= vars_pos(v
, tok
->u
.s
, -1);
885 isl_stream_error(s
, tok
, "expecting unique identifier");
889 map
= isl_map_add_dims(map
, isl_dim_out
, 1);
892 tok
= isl_stream_next_token(s
);
893 if (tok
&& tok
->type
== '=') {
895 map
= read_var_def(s
, map
, isl_dim_out
, v
, rational
);
896 tok
= isl_stream_next_token(s
);
899 if (!tok
|| tok
->type
!= ',')
905 isl_stream_push_token(s
, tok
);
914 static int next_is_tuple(__isl_keep isl_stream
*s
)
916 struct isl_token
*tok
;
919 tok
= isl_stream_next_token(s
);
922 if (tok
->type
== '[') {
923 isl_stream_push_token(s
, tok
);
926 if (tok
->type
!= ISL_TOKEN_IDENT
&& !tok
->is_keyword
) {
927 isl_stream_push_token(s
, tok
);
931 is_tuple
= isl_stream_next_token_is(s
, '[');
933 isl_stream_push_token(s
, tok
);
938 /* Is "pa" an expression in term of earlier dimensions?
939 * The alternative is that the dimension is defined to be equal to itself,
940 * meaning that it has a universe domain and an expression that depends
941 * on itself. "i" is the position of the expression in a sequence
942 * of "n" expressions. The final dimensions of "pa" correspond to
943 * these "n" expressions.
945 static int pw_aff_is_expr(__isl_keep isl_pw_aff
*pa
, int i
, int n
)
953 if (!isl_set_plain_is_universe(pa
->p
[0].set
))
957 if (isl_int_is_zero(aff
->v
->el
[aff
->v
->size
- n
+ i
]))
962 /* Does the tuple contain any dimensions that are defined
963 * in terms of earlier dimensions?
965 static int tuple_has_expr(__isl_keep isl_multi_pw_aff
*tuple
)
973 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
974 for (i
= 0; i
< n
; ++i
) {
975 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
976 has_expr
= pw_aff_is_expr(pa
, i
, n
);
978 if (has_expr
< 0 || has_expr
)
985 /* Set the name of dimension "pos" in "space" to "name".
986 * During printing, we add primes if the same name appears more than once
987 * to distinguish the occurrences. Here, we remove those primes from "name"
988 * before setting the name of the dimension.
990 static __isl_give isl_space
*space_set_dim_name(__isl_take isl_space
*space
,
998 prime
= strchr(name
, '\'');
1001 space
= isl_space_set_dim_name(space
, isl_dim_out
, pos
, name
);
1008 /* Accept a piecewise affine expression.
1010 * At the outer level, the piecewise affine expression may be of the form
1012 * aff1 : condition1; aff2 : conditions2; ...
1018 * each of the affine expressions may in turn include ternary operators.
1020 * There may be parentheses around some subexpression of "aff1"
1021 * around "aff1" itself, around "aff1 : condition1" and/or
1022 * around the entire piecewise affine expression.
1023 * We therefore remove the opening parenthesis (if any) from the stream
1024 * in case the closing parenthesis follows the colon, but if the closing
1025 * parenthesis is the first thing in the stream after the parsed affine
1026 * expression, we push the parsed expression onto the stream and parse
1027 * again in case the parentheses enclose some subexpression of "aff1".
1029 static __isl_give isl_pw_aff
*accept_piecewise_affine(__isl_keep isl_stream
*s
,
1030 __isl_take isl_space
*space
, struct vars
*v
, int rational
)
1033 isl_space
*res_space
;
1035 res_space
= isl_space_from_domain(isl_space_copy(space
));
1036 res_space
= isl_space_add_dims(res_space
, isl_dim_out
, 1);
1037 res
= isl_pw_aff_empty(res_space
);
1041 int line
= -1, col
= -1;
1043 set_current_line_col(s
, &line
, &col
);
1044 seen_paren
= isl_stream_eat_if_available(s
, '(');
1046 pa
= accept_piecewise_affine(s
, isl_space_copy(space
),
1049 pa
= accept_extended_affine(s
, isl_space_copy(space
),
1051 if (seen_paren
&& isl_stream_eat_if_available(s
, ')')) {
1053 if (push_aff(s
, line
, col
, pa
) < 0)
1055 pa
= accept_extended_affine(s
, isl_space_copy(space
),
1058 if (isl_stream_eat_if_available(s
, ':')) {
1059 isl_space
*dom_space
;
1062 dom_space
= isl_pw_aff_get_domain_space(pa
);
1063 dom
= isl_set_universe(dom_space
);
1064 dom
= read_formula(s
, v
, dom
, rational
);
1065 pa
= isl_pw_aff_intersect_domain(pa
, dom
);
1068 res
= isl_pw_aff_union_add(res
, pa
);
1070 if (seen_paren
&& isl_stream_eat(s
, ')'))
1072 } while (isl_stream_eat_if_available(s
, ';'));
1074 isl_space_free(space
);
1078 isl_space_free(space
);
1079 return isl_pw_aff_free(res
);
1082 /* Read an affine expression from "s" for use in read_tuple.
1084 * accept_extended_affine requires a wrapped space as input.
1085 * read_tuple on the other hand expects each isl_pw_aff
1086 * to have an anonymous space. We therefore adjust the space
1087 * of the isl_pw_aff before returning it.
1089 static __isl_give isl_pw_aff
*read_tuple_var_def(__isl_keep isl_stream
*s
,
1090 struct vars
*v
, int rational
)
1095 space
= isl_space_wrap(isl_space_alloc(s
->ctx
, 0, v
->n
, 0));
1097 def
= accept_piecewise_affine(s
, space
, v
, rational
);
1099 space
= isl_space_set_alloc(s
->ctx
, 0, v
->n
);
1100 def
= isl_pw_aff_reset_domain_space(def
, space
);
1105 /* Read a list of tuple elements by calling "read_el" on each of them and
1106 * return a space with the same number of set dimensions derived from
1107 * the parameter space "space" and possibly updated by "read_el".
1108 * The elements in the list are separated by either "," or "][".
1109 * If "comma" is set then only "," is allowed.
1111 static __isl_give isl_space
*read_tuple_list(__isl_keep isl_stream
*s
,
1112 struct vars
*v
, __isl_take isl_space
*space
, int rational
, int comma
,
1113 __isl_give isl_space
*(*read_el
)(__isl_keep isl_stream
*s
,
1114 struct vars
*v
, __isl_take isl_space
*space
, int rational
,
1121 space
= isl_space_set_from_params(space
);
1123 if (isl_stream_next_token_is(s
, ']'))
1127 struct isl_token
*tok
;
1129 space
= isl_space_add_dims(space
, isl_dim_set
, 1);
1131 space
= read_el(s
, v
, space
, rational
, user
);
1135 tok
= isl_stream_next_token(s
);
1136 if (!comma
&& tok
&& tok
->type
== ']' &&
1137 isl_stream_next_token_is(s
, '[')) {
1138 isl_token_free(tok
);
1139 tok
= isl_stream_next_token(s
);
1140 } else if (!tok
|| tok
->type
!= ',') {
1142 isl_stream_push_token(s
, tok
);
1146 isl_token_free(tok
);
1152 /* Read a tuple space from "s" derived from the parameter space "space".
1153 * Call "read_el" on each element in the tuples.
1155 static __isl_give isl_space
*read_tuple_space(__isl_keep isl_stream
*s
,
1156 struct vars
*v
, __isl_take isl_space
*space
, int rational
, int comma
,
1157 __isl_give isl_space
*(*read_el
)(__isl_keep isl_stream
*s
,
1158 struct vars
*v
, __isl_take isl_space
*space
, int rational
,
1162 struct isl_token
*tok
;
1164 isl_space
*res
= NULL
;
1166 tok
= isl_stream_next_token(s
);
1169 if (tok
->type
== ISL_TOKEN_IDENT
|| tok
->is_keyword
) {
1170 name
= strdup(tok
->u
.s
);
1171 isl_token_free(tok
);
1175 isl_stream_push_token(s
, tok
);
1176 if (isl_stream_eat(s
, '['))
1178 if (next_is_tuple(s
)) {
1180 res
= read_tuple_space(s
, v
, isl_space_copy(space
),
1181 rational
, comma
, read_el
, user
);
1182 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
1184 out
= read_tuple_space(s
, v
, isl_space_copy(space
),
1185 rational
, comma
, read_el
, user
);
1186 res
= isl_space_range_product(res
, out
);
1188 res
= read_tuple_list(s
, v
, isl_space_copy(space
),
1189 rational
, comma
, read_el
, user
);
1190 if (isl_stream_eat(s
, ']'))
1194 res
= isl_space_set_tuple_name(res
, isl_dim_set
, name
);
1198 isl_space_free(space
);
1202 isl_space_free(res
);
1203 isl_space_free(space
);
1207 /* Construct an isl_pw_aff defined on a space with v->n variables
1208 * that is equal to the last of those variables.
1210 static __isl_give isl_pw_aff
*identity_tuple_el(struct vars
*v
)
1215 space
= isl_space_set_alloc(v
->ctx
, 0, v
->n
);
1216 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
1217 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, v
->n
- 1, 1);
1218 return isl_pw_aff_from_aff(aff
);
1221 /* This function is called for each element in a tuple inside read_tuple.
1222 * Add a new variable to "v" and construct a corresponding isl_pw_aff defined
1223 * over a space containing all variables in "v" defined so far.
1224 * The isl_pw_aff expresses the new variable in terms of earlier variables
1225 * if a definition is provided. Otherwise, it is represented as being
1227 * Add the isl_pw_aff to *list.
1228 * If the new variable was named, then adjust "space" accordingly and
1229 * return the updated space.
1231 static __isl_give isl_space
*read_tuple_pw_aff_el(__isl_keep isl_stream
*s
,
1232 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
1234 isl_pw_aff_list
**list
= (isl_pw_aff_list
**) user
;
1236 struct isl_token
*tok
;
1239 tok
= next_token(s
);
1241 isl_stream_error(s
, NULL
, "unexpected EOF");
1242 return isl_space_free(space
);
1245 if (tok
->type
== ISL_TOKEN_IDENT
) {
1247 int p
= vars_pos(v
, tok
->u
.s
, -1);
1253 if (tok
->type
== '*') {
1254 if (vars_add_anon(v
) < 0)
1256 isl_token_free(tok
);
1257 pa
= identity_tuple_el(v
);
1258 } else if (new_name
) {
1259 int pos
= isl_space_dim(space
, isl_dim_out
) - 1;
1260 space
= space_set_dim_name(space
, pos
, v
->v
->name
);
1261 isl_token_free(tok
);
1262 if (isl_stream_eat_if_available(s
, '='))
1263 pa
= read_tuple_var_def(s
, v
, rational
);
1265 pa
= identity_tuple_el(v
);
1267 isl_stream_push_token(s
, tok
);
1269 if (vars_add_anon(v
) < 0)
1271 pa
= read_tuple_var_def(s
, v
, rational
);
1274 *list
= isl_pw_aff_list_add(*list
, pa
);
1276 return isl_space_free(space
);
1280 isl_token_free(tok
);
1281 return isl_space_free(space
);
1284 /* Read a tuple and represent it as an isl_multi_pw_aff.
1285 * The range space of the isl_multi_pw_aff is the space of the tuple.
1286 * The domain space is an anonymous space
1287 * with a dimension for each variable in the set of variables in "v",
1288 * including the variables in the range.
1289 * If a given dimension is not defined in terms of earlier dimensions in
1290 * the input, then the corresponding isl_pw_aff is set equal to one time
1291 * the variable corresponding to the dimension being defined.
1293 * The elements in the tuple are collected in a list by read_tuple_pw_aff_el.
1294 * Each element in this list is defined over a space representing
1295 * the variables defined so far. We need to adjust the earlier
1296 * elements to have as many variables in the domain as the final
1297 * element in the list.
1299 static __isl_give isl_multi_pw_aff
*read_tuple(__isl_keep isl_stream
*s
,
1300 struct vars
*v
, int rational
, int comma
)
1304 isl_pw_aff_list
*list
;
1306 space
= isl_space_params_alloc(v
->ctx
, 0);
1307 list
= isl_pw_aff_list_alloc(s
->ctx
, 0);
1308 space
= read_tuple_space(s
, v
, space
, rational
, comma
,
1309 &read_tuple_pw_aff_el
, &list
);
1310 n
= isl_space_dim(space
, isl_dim_set
);
1311 for (i
= 0; i
+ 1 < n
; ++i
) {
1314 pa
= isl_pw_aff_list_get_pw_aff(list
, i
);
1315 pa
= isl_pw_aff_add_dims(pa
, isl_dim_in
, n
- (i
+ 1));
1316 list
= isl_pw_aff_list_set_pw_aff(list
, i
, pa
);
1319 space
= isl_space_from_range(space
);
1320 space
= isl_space_add_dims(space
, isl_dim_in
, v
->n
);
1321 return isl_multi_pw_aff_from_pw_aff_list(space
, list
);
1324 /* Add the tuple represented by the isl_multi_pw_aff "tuple" to "map".
1325 * We first create the appropriate space in "map" based on the range
1326 * space of this isl_multi_pw_aff. Then, we add equalities based
1327 * on the affine expressions. These live in an anonymous space,
1328 * however, so we first need to reset the space to that of "map".
1330 static __isl_give isl_map
*map_from_tuple(__isl_take isl_multi_pw_aff
*tuple
,
1331 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
1336 isl_space
*space
= NULL
;
1340 ctx
= isl_multi_pw_aff_get_ctx(tuple
);
1341 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
1342 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
1346 if (type
== isl_dim_param
) {
1347 if (isl_space_has_tuple_name(space
, isl_dim_set
) ||
1348 isl_space_is_wrapping(space
)) {
1349 isl_die(ctx
, isl_error_invalid
,
1350 "parameter tuples cannot be named or nested",
1353 map
= isl_map_add_dims(map
, type
, n
);
1354 for (i
= 0; i
< n
; ++i
) {
1356 if (!isl_space_has_dim_name(space
, isl_dim_set
, i
))
1357 isl_die(ctx
, isl_error_invalid
,
1358 "parameters must be named",
1360 id
= isl_space_get_dim_id(space
, isl_dim_set
, i
);
1361 map
= isl_map_set_dim_id(map
, isl_dim_param
, i
, id
);
1363 } else if (type
== isl_dim_in
) {
1366 set
= isl_set_universe(isl_space_copy(space
));
1368 set
= isl_set_set_rational(set
);
1369 set
= isl_set_intersect_params(set
, isl_map_params(map
));
1370 map
= isl_map_from_domain(set
);
1374 set
= isl_set_universe(isl_space_copy(space
));
1376 set
= isl_set_set_rational(set
);
1377 map
= isl_map_from_domain_and_range(isl_map_domain(map
), set
);
1380 for (i
= 0; i
< n
; ++i
) {
1387 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
1388 space
= isl_pw_aff_get_domain_space(pa
);
1389 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
1390 aff
= isl_aff_add_coefficient_si(aff
,
1391 isl_dim_in
, v
->n
- n
+ i
, -1);
1392 pa
= isl_pw_aff_add(pa
, isl_pw_aff_from_aff(aff
));
1394 pa
= isl_pw_aff_set_rational(pa
);
1395 set
= isl_pw_aff_zero_set(pa
);
1396 map_i
= isl_map_from_range(set
);
1397 map_i
= isl_map_reset_space(map_i
, isl_map_get_space(map
));
1398 map
= isl_map_intersect(map
, map_i
);
1401 isl_space_free(space
);
1402 isl_multi_pw_aff_free(tuple
);
1405 isl_space_free(space
);
1406 isl_multi_pw_aff_free(tuple
);
1411 /* Read a tuple from "s" and add it to "map".
1412 * The tuple is initially represented as an isl_multi_pw_aff and
1413 * then added to "map".
1415 static __isl_give isl_map
*read_map_tuple(__isl_keep isl_stream
*s
,
1416 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
1417 int rational
, int comma
)
1419 isl_multi_pw_aff
*tuple
;
1421 tuple
= read_tuple(s
, v
, rational
, comma
);
1423 return isl_map_free(map
);
1425 return map_from_tuple(tuple
, map
, type
, v
, rational
);
1428 static __isl_give isl_set
*construct_constraints(
1429 __isl_take isl_set
*set
, int type
,
1430 __isl_keep isl_pw_aff_list
*left
, __isl_keep isl_pw_aff_list
*right
,
1435 left
= isl_pw_aff_list_copy(left
);
1436 right
= isl_pw_aff_list_copy(right
);
1438 left
= isl_pw_aff_list_set_rational(left
);
1439 right
= isl_pw_aff_list_set_rational(right
);
1441 if (type
== ISL_TOKEN_LE
)
1442 cond
= isl_pw_aff_list_le_set(left
, right
);
1443 else if (type
== ISL_TOKEN_GE
)
1444 cond
= isl_pw_aff_list_ge_set(left
, right
);
1445 else if (type
== ISL_TOKEN_LT
)
1446 cond
= isl_pw_aff_list_lt_set(left
, right
);
1447 else if (type
== ISL_TOKEN_GT
)
1448 cond
= isl_pw_aff_list_gt_set(left
, right
);
1449 else if (type
== ISL_TOKEN_NE
)
1450 cond
= isl_pw_aff_list_ne_set(left
, right
);
1452 cond
= isl_pw_aff_list_eq_set(left
, right
);
1454 return isl_set_intersect(set
, cond
);
1457 static __isl_give isl_map
*add_constraint(__isl_keep isl_stream
*s
,
1458 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1460 struct isl_token
*tok
= NULL
;
1461 isl_pw_aff_list
*list1
= NULL
, *list2
= NULL
;
1464 set
= isl_map_wrap(map
);
1465 list1
= accept_affine_list(s
, isl_set_get_space(set
), v
);
1468 tok
= isl_stream_next_token(s
);
1469 if (!is_comparator(tok
)) {
1470 isl_stream_error(s
, tok
, "missing operator");
1472 isl_stream_push_token(s
, tok
);
1477 list2
= accept_affine_list(s
, isl_set_get_space(set
), v
);
1481 set
= construct_constraints(set
, tok
->type
, list1
, list2
,
1483 isl_token_free(tok
);
1484 isl_pw_aff_list_free(list1
);
1487 tok
= isl_stream_next_token(s
);
1488 if (!is_comparator(tok
)) {
1490 isl_stream_push_token(s
, tok
);
1494 isl_pw_aff_list_free(list1
);
1496 return isl_set_unwrap(set
);
1499 isl_token_free(tok
);
1500 isl_pw_aff_list_free(list1
);
1501 isl_pw_aff_list_free(list2
);
1506 static __isl_give isl_map
*read_exists(__isl_keep isl_stream
*s
,
1507 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1510 int seen_paren
= isl_stream_eat_if_available(s
, '(');
1512 map
= isl_map_from_domain(isl_map_wrap(map
));
1513 map
= read_defined_var_list(s
, v
, map
, rational
);
1515 if (isl_stream_eat(s
, ':'))
1518 map
= read_formula(s
, v
, map
, rational
);
1519 map
= isl_set_unwrap(isl_map_domain(map
));
1521 vars_drop(v
, v
->n
- n
);
1522 if (seen_paren
&& isl_stream_eat(s
, ')'))
1531 /* Parse an expression between parentheses and push the result
1532 * back on the stream.
1534 * The parsed expression may be either an affine expression
1535 * or a condition. The first type is pushed onto the stream
1536 * as an isl_pw_aff, while the second is pushed as an isl_map.
1538 * If the initial token indicates the start of a condition,
1539 * we parse it as such.
1540 * Otherwise, we first parse an affine expression and push
1541 * that onto the stream. If the affine expression covers the
1542 * entire expression between parentheses, we return.
1543 * Otherwise, we assume that the affine expression is the
1544 * start of a condition and continue parsing.
1546 static int resolve_paren_expr(__isl_keep isl_stream
*s
,
1547 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1549 struct isl_token
*tok
, *tok2
;
1553 tok
= isl_stream_next_token(s
);
1554 if (!tok
|| tok
->type
!= '(')
1557 if (isl_stream_next_token_is(s
, '('))
1558 if (resolve_paren_expr(s
, v
, isl_map_copy(map
), rational
))
1561 if (isl_stream_next_token_is(s
, ISL_TOKEN_EXISTS
) ||
1562 isl_stream_next_token_is(s
, ISL_TOKEN_NOT
) ||
1563 isl_stream_next_token_is(s
, ISL_TOKEN_TRUE
) ||
1564 isl_stream_next_token_is(s
, ISL_TOKEN_FALSE
) ||
1565 isl_stream_next_token_is(s
, ISL_TOKEN_MAP
)) {
1566 map
= read_formula(s
, v
, map
, rational
);
1567 if (isl_stream_eat(s
, ')'))
1569 tok
->type
= ISL_TOKEN_MAP
;
1571 isl_stream_push_token(s
, tok
);
1575 tok2
= isl_stream_next_token(s
);
1580 isl_stream_push_token(s
, tok2
);
1582 pwaff
= accept_affine(s
, isl_space_wrap(isl_map_get_space(map
)), v
);
1586 tok2
= isl_token_new(s
->ctx
, line
, col
, 0);
1589 tok2
->type
= ISL_TOKEN_AFF
;
1590 tok2
->u
.pwaff
= pwaff
;
1592 if (isl_stream_eat_if_available(s
, ')')) {
1593 isl_stream_push_token(s
, tok2
);
1594 isl_token_free(tok
);
1599 isl_stream_push_token(s
, tok2
);
1601 map
= read_formula(s
, v
, map
, rational
);
1602 if (isl_stream_eat(s
, ')'))
1605 tok
->type
= ISL_TOKEN_MAP
;
1607 isl_stream_push_token(s
, tok
);
1611 isl_pw_aff_free(pwaff
);
1613 isl_token_free(tok
);
1618 static __isl_give isl_map
*read_conjunct(__isl_keep isl_stream
*s
,
1619 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1621 if (isl_stream_next_token_is(s
, '('))
1622 if (resolve_paren_expr(s
, v
, isl_map_copy(map
), rational
))
1625 if (isl_stream_next_token_is(s
, ISL_TOKEN_MAP
)) {
1626 struct isl_token
*tok
;
1627 tok
= isl_stream_next_token(s
);
1631 map
= isl_map_copy(tok
->u
.map
);
1632 isl_token_free(tok
);
1636 if (isl_stream_eat_if_available(s
, ISL_TOKEN_EXISTS
))
1637 return read_exists(s
, v
, map
, rational
);
1639 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TRUE
))
1642 if (isl_stream_eat_if_available(s
, ISL_TOKEN_FALSE
)) {
1643 isl_space
*dim
= isl_map_get_space(map
);
1645 return isl_map_empty(dim
);
1648 return add_constraint(s
, v
, map
, rational
);
1654 static __isl_give isl_map
*read_conjuncts(__isl_keep isl_stream
*s
,
1655 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1660 negate
= isl_stream_eat_if_available(s
, ISL_TOKEN_NOT
);
1661 res
= read_conjunct(s
, v
, isl_map_copy(map
), rational
);
1663 res
= isl_map_subtract(isl_map_copy(map
), res
);
1665 while (res
&& isl_stream_eat_if_available(s
, ISL_TOKEN_AND
)) {
1668 negate
= isl_stream_eat_if_available(s
, ISL_TOKEN_NOT
);
1669 res_i
= read_conjunct(s
, v
, isl_map_copy(map
), rational
);
1671 res
= isl_map_subtract(res
, res_i
);
1673 res
= isl_map_intersect(res
, res_i
);
1680 static struct isl_map
*read_disjuncts(__isl_keep isl_stream
*s
,
1681 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1685 if (isl_stream_next_token_is(s
, '}')) {
1686 isl_space
*dim
= isl_map_get_space(map
);
1688 return isl_map_universe(dim
);
1691 res
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1692 while (isl_stream_eat_if_available(s
, ISL_TOKEN_OR
)) {
1695 res_i
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1696 res
= isl_map_union(res
, res_i
);
1703 /* Read a first order formula from "s", add the corresponding
1704 * constraints to "map" and return the result.
1706 * In particular, read a formula of the form
1714 * where a and b are disjunctions.
1716 * In the first case, map is replaced by
1718 * map \cap { [..] : a }
1720 * In the second case, it is replaced by
1722 * (map \setminus { [..] : a}) \cup (map \cap { [..] : b })
1724 static __isl_give isl_map
*read_formula(__isl_keep isl_stream
*s
,
1725 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1729 res
= read_disjuncts(s
, v
, isl_map_copy(map
), rational
);
1731 if (isl_stream_eat_if_available(s
, ISL_TOKEN_IMPLIES
)) {
1734 res
= isl_map_subtract(isl_map_copy(map
), res
);
1735 res2
= read_disjuncts(s
, v
, map
, rational
);
1736 res
= isl_map_union(res
, res2
);
1743 static int polylib_pos_to_isl_pos(__isl_keep isl_basic_map
*bmap
, int pos
)
1745 if (pos
< isl_basic_map_dim(bmap
, isl_dim_out
))
1746 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1747 isl_basic_map_dim(bmap
, isl_dim_in
) + pos
;
1748 pos
-= isl_basic_map_dim(bmap
, isl_dim_out
);
1750 if (pos
< isl_basic_map_dim(bmap
, isl_dim_in
))
1751 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) + pos
;
1752 pos
-= isl_basic_map_dim(bmap
, isl_dim_in
);
1754 if (pos
< isl_basic_map_dim(bmap
, isl_dim_div
))
1755 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1756 isl_basic_map_dim(bmap
, isl_dim_in
) +
1757 isl_basic_map_dim(bmap
, isl_dim_out
) + pos
;
1758 pos
-= isl_basic_map_dim(bmap
, isl_dim_div
);
1760 if (pos
< isl_basic_map_dim(bmap
, isl_dim_param
))
1766 static __isl_give isl_basic_map
*basic_map_read_polylib_constraint(
1767 __isl_keep isl_stream
*s
, __isl_take isl_basic_map
*bmap
)
1770 struct isl_token
*tok
;
1780 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
1781 dim
= isl_basic_map_dim(bmap
, isl_dim_out
);
1783 tok
= isl_stream_next_token(s
);
1784 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1785 isl_stream_error(s
, tok
, "expecting coefficient");
1787 isl_stream_push_token(s
, tok
);
1790 if (!tok
->on_new_line
) {
1791 isl_stream_error(s
, tok
, "coefficient should appear on new line");
1792 isl_stream_push_token(s
, tok
);
1796 type
= isl_int_get_si(tok
->u
.v
);
1797 isl_token_free(tok
);
1799 isl_assert(s
->ctx
, type
== 0 || type
== 1, goto error
);
1801 k
= isl_basic_map_alloc_equality(bmap
);
1804 k
= isl_basic_map_alloc_inequality(bmap
);
1810 for (j
= 0; j
< 1 + isl_basic_map_total_dim(bmap
); ++j
) {
1812 tok
= isl_stream_next_token(s
);
1813 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1814 isl_stream_error(s
, tok
, "expecting coefficient");
1816 isl_stream_push_token(s
, tok
);
1819 if (tok
->on_new_line
) {
1820 isl_stream_error(s
, tok
,
1821 "coefficient should not appear on new line");
1822 isl_stream_push_token(s
, tok
);
1825 pos
= polylib_pos_to_isl_pos(bmap
, j
);
1826 isl_int_set(c
[pos
], tok
->u
.v
);
1827 isl_token_free(tok
);
1832 isl_basic_map_free(bmap
);
1836 static __isl_give isl_basic_map
*basic_map_read_polylib(
1837 __isl_keep isl_stream
*s
)
1840 struct isl_token
*tok
;
1841 struct isl_token
*tok2
;
1844 unsigned in
= 0, out
, local
= 0;
1845 struct isl_basic_map
*bmap
= NULL
;
1848 tok
= isl_stream_next_token(s
);
1850 isl_stream_error(s
, NULL
, "unexpected EOF");
1853 tok2
= isl_stream_next_token(s
);
1855 isl_token_free(tok
);
1856 isl_stream_error(s
, NULL
, "unexpected EOF");
1859 if (tok
->type
!= ISL_TOKEN_VALUE
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
1860 isl_stream_push_token(s
, tok2
);
1861 isl_stream_push_token(s
, tok
);
1862 isl_stream_error(s
, NULL
,
1863 "expecting constraint matrix dimensions");
1866 n_row
= isl_int_get_si(tok
->u
.v
);
1867 n_col
= isl_int_get_si(tok2
->u
.v
);
1868 on_new_line
= tok2
->on_new_line
;
1869 isl_token_free(tok2
);
1870 isl_token_free(tok
);
1871 isl_assert(s
->ctx
, !on_new_line
, return NULL
);
1872 isl_assert(s
->ctx
, n_row
>= 0, return NULL
);
1873 isl_assert(s
->ctx
, n_col
>= 2 + nparam
, return NULL
);
1874 tok
= isl_stream_next_token_on_same_line(s
);
1876 if (tok
->type
!= ISL_TOKEN_VALUE
) {
1877 isl_stream_error(s
, tok
,
1878 "expecting number of output dimensions");
1879 isl_stream_push_token(s
, tok
);
1882 out
= isl_int_get_si(tok
->u
.v
);
1883 isl_token_free(tok
);
1885 tok
= isl_stream_next_token_on_same_line(s
);
1886 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1887 isl_stream_error(s
, tok
,
1888 "expecting number of input dimensions");
1890 isl_stream_push_token(s
, tok
);
1893 in
= isl_int_get_si(tok
->u
.v
);
1894 isl_token_free(tok
);
1896 tok
= isl_stream_next_token_on_same_line(s
);
1897 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1898 isl_stream_error(s
, tok
,
1899 "expecting number of existentials");
1901 isl_stream_push_token(s
, tok
);
1904 local
= isl_int_get_si(tok
->u
.v
);
1905 isl_token_free(tok
);
1907 tok
= isl_stream_next_token_on_same_line(s
);
1908 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1909 isl_stream_error(s
, tok
,
1910 "expecting number of parameters");
1912 isl_stream_push_token(s
, tok
);
1915 nparam
= isl_int_get_si(tok
->u
.v
);
1916 isl_token_free(tok
);
1917 if (n_col
!= 1 + out
+ in
+ local
+ nparam
+ 1) {
1918 isl_stream_error(s
, NULL
,
1919 "dimensions don't match");
1923 out
= n_col
- 2 - nparam
;
1924 bmap
= isl_basic_map_alloc(s
->ctx
, nparam
, in
, out
, local
, n_row
, n_row
);
1928 for (i
= 0; i
< local
; ++i
) {
1929 int k
= isl_basic_map_alloc_div(bmap
);
1932 isl_seq_clr(bmap
->div
[k
], 1 + 1 + nparam
+ in
+ out
+ local
);
1935 for (i
= 0; i
< n_row
; ++i
)
1936 bmap
= basic_map_read_polylib_constraint(s
, bmap
);
1938 tok
= isl_stream_next_token_on_same_line(s
);
1940 isl_stream_error(s
, tok
, "unexpected extra token on line");
1941 isl_stream_push_token(s
, tok
);
1945 bmap
= isl_basic_map_simplify(bmap
);
1946 bmap
= isl_basic_map_finalize(bmap
);
1949 isl_basic_map_free(bmap
);
1953 static struct isl_map
*map_read_polylib(__isl_keep isl_stream
*s
)
1955 struct isl_token
*tok
;
1956 struct isl_token
*tok2
;
1958 struct isl_map
*map
;
1960 tok
= isl_stream_next_token(s
);
1962 isl_stream_error(s
, NULL
, "unexpected EOF");
1965 tok2
= isl_stream_next_token_on_same_line(s
);
1966 if (tok2
&& tok2
->type
== ISL_TOKEN_VALUE
) {
1967 isl_stream_push_token(s
, tok2
);
1968 isl_stream_push_token(s
, tok
);
1969 return isl_map_from_basic_map(basic_map_read_polylib(s
));
1972 isl_stream_error(s
, tok2
, "unexpected token");
1973 isl_stream_push_token(s
, tok2
);
1974 isl_stream_push_token(s
, tok
);
1977 n
= isl_int_get_si(tok
->u
.v
);
1978 isl_token_free(tok
);
1980 isl_assert(s
->ctx
, n
>= 1, return NULL
);
1982 map
= isl_map_from_basic_map(basic_map_read_polylib(s
));
1984 for (i
= 1; map
&& i
< n
; ++i
)
1985 map
= isl_map_union(map
,
1986 isl_map_from_basic_map(basic_map_read_polylib(s
)));
1991 static int optional_power(__isl_keep isl_stream
*s
)
1994 struct isl_token
*tok
;
1996 tok
= isl_stream_next_token(s
);
1999 if (tok
->type
!= '^') {
2000 isl_stream_push_token(s
, tok
);
2003 isl_token_free(tok
);
2004 tok
= isl_stream_next_token(s
);
2005 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2006 isl_stream_error(s
, tok
, "expecting exponent");
2008 isl_stream_push_token(s
, tok
);
2011 pow
= isl_int_get_si(tok
->u
.v
);
2012 isl_token_free(tok
);
2016 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2017 __isl_keep isl_map
*map
, struct vars
*v
);
2019 static __isl_give isl_pw_qpolynomial
*read_factor(__isl_keep isl_stream
*s
,
2020 __isl_keep isl_map
*map
, struct vars
*v
)
2022 isl_pw_qpolynomial
*pwqp
;
2023 struct isl_token
*tok
;
2025 tok
= next_token(s
);
2027 isl_stream_error(s
, NULL
, "unexpected EOF");
2030 if (tok
->type
== '(') {
2033 isl_token_free(tok
);
2034 pwqp
= read_term(s
, map
, v
);
2037 if (isl_stream_eat(s
, ')'))
2039 pow
= optional_power(s
);
2040 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2041 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
2042 struct isl_token
*tok2
;
2043 isl_qpolynomial
*qp
;
2045 tok2
= isl_stream_next_token(s
);
2046 if (tok2
&& tok2
->type
== '/') {
2047 isl_token_free(tok2
);
2048 tok2
= next_token(s
);
2049 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
2050 isl_stream_error(s
, tok2
, "expected denominator");
2051 isl_token_free(tok
);
2052 isl_token_free(tok2
);
2055 qp
= isl_qpolynomial_rat_cst_on_domain(isl_map_get_space(map
),
2056 tok
->u
.v
, tok2
->u
.v
);
2057 isl_token_free(tok2
);
2059 isl_stream_push_token(s
, tok2
);
2060 qp
= isl_qpolynomial_cst_on_domain(isl_map_get_space(map
),
2063 isl_token_free(tok
);
2064 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2065 } else if (tok
->type
== ISL_TOKEN_INFTY
) {
2066 isl_qpolynomial
*qp
;
2067 isl_token_free(tok
);
2068 qp
= isl_qpolynomial_infty_on_domain(isl_map_get_space(map
));
2069 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2070 } else if (tok
->type
== ISL_TOKEN_NAN
) {
2071 isl_qpolynomial
*qp
;
2072 isl_token_free(tok
);
2073 qp
= isl_qpolynomial_nan_on_domain(isl_map_get_space(map
));
2074 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2075 } else if (tok
->type
== ISL_TOKEN_IDENT
) {
2077 int pos
= vars_pos(v
, tok
->u
.s
, -1);
2079 isl_qpolynomial
*qp
;
2081 isl_token_free(tok
);
2085 vars_drop(v
, v
->n
- n
);
2086 isl_stream_error(s
, tok
, "unknown identifier");
2087 isl_token_free(tok
);
2090 isl_token_free(tok
);
2091 pow
= optional_power(s
);
2092 qp
= isl_qpolynomial_var_pow_on_domain(isl_map_get_space(map
), pos
, pow
);
2093 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2094 } else if (is_start_of_div(tok
)) {
2098 isl_stream_push_token(s
, tok
);
2099 pwaff
= accept_div(s
, isl_map_get_space(map
), v
);
2100 pow
= optional_power(s
);
2101 pwqp
= isl_pw_qpolynomial_from_pw_aff(pwaff
);
2102 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2103 } else if (tok
->type
== '-') {
2104 isl_token_free(tok
);
2105 pwqp
= read_factor(s
, map
, v
);
2106 pwqp
= isl_pw_qpolynomial_neg(pwqp
);
2108 isl_stream_error(s
, tok
, "unexpected isl_token");
2109 isl_stream_push_token(s
, tok
);
2113 if (isl_stream_eat_if_available(s
, '*') ||
2114 isl_stream_next_token_is(s
, ISL_TOKEN_IDENT
)) {
2115 isl_pw_qpolynomial
*pwqp2
;
2117 pwqp2
= read_factor(s
, map
, v
);
2118 pwqp
= isl_pw_qpolynomial_mul(pwqp
, pwqp2
);
2123 isl_pw_qpolynomial_free(pwqp
);
2127 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2128 __isl_keep isl_map
*map
, struct vars
*v
)
2130 struct isl_token
*tok
;
2131 isl_pw_qpolynomial
*pwqp
;
2133 pwqp
= read_factor(s
, map
, v
);
2136 tok
= next_token(s
);
2140 if (tok
->type
== '+') {
2141 isl_pw_qpolynomial
*pwqp2
;
2143 isl_token_free(tok
);
2144 pwqp2
= read_factor(s
, map
, v
);
2145 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2146 } else if (tok
->type
== '-') {
2147 isl_pw_qpolynomial
*pwqp2
;
2149 isl_token_free(tok
);
2150 pwqp2
= read_factor(s
, map
, v
);
2151 pwqp
= isl_pw_qpolynomial_sub(pwqp
, pwqp2
);
2152 } else if (tok
->type
== ISL_TOKEN_VALUE
&&
2153 isl_int_is_neg(tok
->u
.v
)) {
2154 isl_pw_qpolynomial
*pwqp2
;
2156 isl_stream_push_token(s
, tok
);
2157 pwqp2
= read_factor(s
, map
, v
);
2158 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2160 isl_stream_push_token(s
, tok
);
2168 static __isl_give isl_map
*read_optional_formula(__isl_keep isl_stream
*s
,
2169 __isl_take isl_map
*map
, struct vars
*v
, int rational
)
2171 struct isl_token
*tok
;
2173 tok
= isl_stream_next_token(s
);
2175 isl_stream_error(s
, NULL
, "unexpected EOF");
2178 if (tok
->type
== ':' ||
2179 (tok
->type
== ISL_TOKEN_OR
&& !strcmp(tok
->u
.s
, "|"))) {
2180 isl_token_free(tok
);
2181 map
= read_formula(s
, v
, map
, rational
);
2183 isl_stream_push_token(s
, tok
);
2191 static struct isl_obj
obj_read_poly(__isl_keep isl_stream
*s
,
2192 __isl_take isl_map
*map
, struct vars
*v
, int n
)
2194 struct isl_obj obj
= { isl_obj_pw_qpolynomial
, NULL
};
2195 isl_pw_qpolynomial
*pwqp
;
2196 struct isl_set
*set
;
2198 pwqp
= read_term(s
, map
, v
);
2199 map
= read_optional_formula(s
, map
, v
, 0);
2200 set
= isl_map_range(map
);
2202 pwqp
= isl_pw_qpolynomial_intersect_domain(pwqp
, set
);
2204 vars_drop(v
, v
->n
- n
);
2210 static struct isl_obj
obj_read_poly_or_fold(__isl_keep isl_stream
*s
,
2211 __isl_take isl_set
*set
, struct vars
*v
, int n
)
2213 struct isl_obj obj
= { isl_obj_pw_qpolynomial_fold
, NULL
};
2214 isl_pw_qpolynomial
*pwqp
;
2215 isl_pw_qpolynomial_fold
*pwf
= NULL
;
2217 if (!isl_stream_eat_if_available(s
, ISL_TOKEN_MAX
))
2218 return obj_read_poly(s
, set
, v
, n
);
2220 if (isl_stream_eat(s
, '('))
2223 pwqp
= read_term(s
, set
, v
);
2224 pwf
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
, pwqp
);
2226 while (isl_stream_eat_if_available(s
, ',')) {
2227 isl_pw_qpolynomial_fold
*pwf_i
;
2228 pwqp
= read_term(s
, set
, v
);
2229 pwf_i
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
,
2231 pwf
= isl_pw_qpolynomial_fold_fold(pwf
, pwf_i
);
2234 if (isl_stream_eat(s
, ')'))
2237 set
= read_optional_formula(s
, set
, v
, 0);
2238 pwf
= isl_pw_qpolynomial_fold_intersect_domain(pwf
, set
);
2240 vars_drop(v
, v
->n
- n
);
2246 isl_pw_qpolynomial_fold_free(pwf
);
2247 obj
.type
= isl_obj_none
;
2251 static int is_rational(__isl_keep isl_stream
*s
)
2253 struct isl_token
*tok
;
2255 tok
= isl_stream_next_token(s
);
2258 if (tok
->type
== ISL_TOKEN_RAT
&& isl_stream_next_token_is(s
, ':')) {
2259 isl_token_free(tok
);
2260 isl_stream_eat(s
, ':');
2264 isl_stream_push_token(s
, tok
);
2269 static struct isl_obj
obj_read_body(__isl_keep isl_stream
*s
,
2270 __isl_take isl_map
*map
, struct vars
*v
)
2272 struct isl_token
*tok
;
2273 struct isl_obj obj
= { isl_obj_set
, NULL
};
2277 rational
= is_rational(s
);
2279 map
= isl_map_set_rational(map
);
2281 if (isl_stream_next_token_is(s
, ':')) {
2282 obj
.type
= isl_obj_set
;
2283 obj
.v
= read_optional_formula(s
, map
, v
, rational
);
2287 if (!next_is_tuple(s
))
2288 return obj_read_poly_or_fold(s
, map
, v
, n
);
2290 map
= read_map_tuple(s
, map
, isl_dim_in
, v
, rational
, 0);
2293 tok
= isl_stream_next_token(s
);
2296 if (tok
->type
== ISL_TOKEN_TO
) {
2297 obj
.type
= isl_obj_map
;
2298 isl_token_free(tok
);
2299 if (!next_is_tuple(s
)) {
2300 isl_set
*set
= isl_map_domain(map
);
2301 return obj_read_poly_or_fold(s
, set
, v
, n
);
2303 map
= read_map_tuple(s
, map
, isl_dim_out
, v
, rational
, 0);
2307 map
= isl_map_domain(map
);
2308 isl_stream_push_token(s
, tok
);
2311 map
= read_optional_formula(s
, map
, v
, rational
);
2313 vars_drop(v
, v
->n
- n
);
2319 obj
.type
= isl_obj_none
;
2323 static struct isl_obj
to_union(isl_ctx
*ctx
, struct isl_obj obj
)
2325 if (obj
.type
== isl_obj_map
) {
2326 obj
.v
= isl_union_map_from_map(obj
.v
);
2327 obj
.type
= isl_obj_union_map
;
2328 } else if (obj
.type
== isl_obj_set
) {
2329 obj
.v
= isl_union_set_from_set(obj
.v
);
2330 obj
.type
= isl_obj_union_set
;
2331 } else if (obj
.type
== isl_obj_pw_qpolynomial
) {
2332 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
2333 obj
.type
= isl_obj_union_pw_qpolynomial
;
2334 } else if (obj
.type
== isl_obj_pw_qpolynomial_fold
) {
2335 obj
.v
= isl_union_pw_qpolynomial_fold_from_pw_qpolynomial_fold(obj
.v
);
2336 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
2338 isl_assert(ctx
, 0, goto error
);
2341 obj
.type
->free(obj
.v
);
2342 obj
.type
= isl_obj_none
;
2346 static struct isl_obj
obj_add(struct isl_ctx
*ctx
,
2347 struct isl_obj obj1
, struct isl_obj obj2
)
2349 if (obj1
.type
== isl_obj_set
&& obj2
.type
== isl_obj_union_set
)
2350 obj1
= to_union(ctx
, obj1
);
2351 if (obj1
.type
== isl_obj_union_set
&& obj2
.type
== isl_obj_set
)
2352 obj2
= to_union(ctx
, obj2
);
2353 if (obj1
.type
== isl_obj_map
&& obj2
.type
== isl_obj_union_map
)
2354 obj1
= to_union(ctx
, obj1
);
2355 if (obj1
.type
== isl_obj_union_map
&& obj2
.type
== isl_obj_map
)
2356 obj2
= to_union(ctx
, obj2
);
2357 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2358 obj2
.type
== isl_obj_union_pw_qpolynomial
)
2359 obj1
= to_union(ctx
, obj1
);
2360 if (obj1
.type
== isl_obj_union_pw_qpolynomial
&&
2361 obj2
.type
== isl_obj_pw_qpolynomial
)
2362 obj2
= to_union(ctx
, obj2
);
2363 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2364 obj2
.type
== isl_obj_union_pw_qpolynomial_fold
)
2365 obj1
= to_union(ctx
, obj1
);
2366 if (obj1
.type
== isl_obj_union_pw_qpolynomial_fold
&&
2367 obj2
.type
== isl_obj_pw_qpolynomial_fold
)
2368 obj2
= to_union(ctx
, obj2
);
2369 isl_assert(ctx
, obj1
.type
== obj2
.type
, goto error
);
2370 if (obj1
.type
== isl_obj_map
&& !isl_map_has_equal_space(obj1
.v
, obj2
.v
)) {
2371 obj1
= to_union(ctx
, obj1
);
2372 obj2
= to_union(ctx
, obj2
);
2374 if (obj1
.type
== isl_obj_set
&& !isl_set_has_equal_space(obj1
.v
, obj2
.v
)) {
2375 obj1
= to_union(ctx
, obj1
);
2376 obj2
= to_union(ctx
, obj2
);
2378 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2379 !isl_pw_qpolynomial_has_equal_space(obj1
.v
, obj2
.v
)) {
2380 obj1
= to_union(ctx
, obj1
);
2381 obj2
= to_union(ctx
, obj2
);
2383 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2384 !isl_pw_qpolynomial_fold_has_equal_space(obj1
.v
, obj2
.v
)) {
2385 obj1
= to_union(ctx
, obj1
);
2386 obj2
= to_union(ctx
, obj2
);
2388 obj1
.v
= obj1
.type
->add(obj1
.v
, obj2
.v
);
2391 obj1
.type
->free(obj1
.v
);
2392 obj2
.type
->free(obj2
.v
);
2393 obj1
.type
= isl_obj_none
;
2398 static struct isl_obj
obj_read(__isl_keep isl_stream
*s
)
2400 isl_map
*map
= NULL
;
2401 struct isl_token
*tok
;
2402 struct vars
*v
= NULL
;
2403 struct isl_obj obj
= { isl_obj_set
, NULL
};
2405 tok
= next_token(s
);
2407 isl_stream_error(s
, NULL
, "unexpected EOF");
2410 if (tok
->type
== ISL_TOKEN_VALUE
) {
2411 struct isl_token
*tok2
;
2412 struct isl_map
*map
;
2414 tok2
= isl_stream_next_token(s
);
2415 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
||
2416 isl_int_is_neg(tok2
->u
.v
)) {
2418 isl_stream_push_token(s
, tok2
);
2419 obj
.type
= isl_obj_val
;
2420 obj
.v
= isl_val_int_from_isl_int(s
->ctx
, tok
->u
.v
);
2421 isl_token_free(tok
);
2424 isl_stream_push_token(s
, tok2
);
2425 isl_stream_push_token(s
, tok
);
2426 map
= map_read_polylib(s
);
2429 if (isl_map_may_be_set(map
))
2430 obj
.v
= isl_map_range(map
);
2432 obj
.type
= isl_obj_map
;
2437 v
= vars_new(s
->ctx
);
2439 isl_stream_push_token(s
, tok
);
2442 map
= isl_map_universe(isl_space_params_alloc(s
->ctx
, 0));
2443 if (tok
->type
== '[') {
2444 isl_stream_push_token(s
, tok
);
2445 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 0);
2448 tok
= isl_stream_next_token(s
);
2449 if (!tok
|| tok
->type
!= ISL_TOKEN_TO
) {
2450 isl_stream_error(s
, tok
, "expecting '->'");
2452 isl_stream_push_token(s
, tok
);
2455 isl_token_free(tok
);
2456 tok
= isl_stream_next_token(s
);
2458 if (!tok
|| tok
->type
!= '{') {
2459 isl_stream_error(s
, tok
, "expecting '{'");
2461 isl_stream_push_token(s
, tok
);
2464 isl_token_free(tok
);
2466 tok
= isl_stream_next_token(s
);
2469 else if (tok
->type
== ISL_TOKEN_IDENT
&& !strcmp(tok
->u
.s
, "Sym")) {
2470 isl_token_free(tok
);
2471 if (isl_stream_eat(s
, '='))
2473 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 1);
2476 } else if (tok
->type
== '}') {
2477 obj
.type
= isl_obj_union_set
;
2478 obj
.v
= isl_union_set_empty(isl_map_get_space(map
));
2479 isl_token_free(tok
);
2482 isl_stream_push_token(s
, tok
);
2487 o
= obj_read_body(s
, isl_map_copy(map
), v
);
2488 if (o
.type
== isl_obj_none
|| !o
.v
)
2493 obj
= obj_add(s
->ctx
, obj
, o
);
2494 if (obj
.type
== isl_obj_none
|| !obj
.v
)
2497 tok
= isl_stream_next_token(s
);
2498 if (!tok
|| tok
->type
!= ';')
2500 isl_token_free(tok
);
2501 if (isl_stream_next_token_is(s
, '}')) {
2502 tok
= isl_stream_next_token(s
);
2507 if (tok
&& tok
->type
== '}') {
2508 isl_token_free(tok
);
2510 isl_stream_error(s
, tok
, "unexpected isl_token");
2512 isl_token_free(tok
);
2522 obj
.type
->free(obj
.v
);
2529 struct isl_obj
isl_stream_read_obj(__isl_keep isl_stream
*s
)
2534 __isl_give isl_map
*isl_stream_read_map(__isl_keep isl_stream
*s
)
2540 isl_assert(s
->ctx
, obj
.type
== isl_obj_map
||
2541 obj
.type
== isl_obj_set
, goto error
);
2543 if (obj
.type
== isl_obj_set
)
2544 obj
.v
= isl_map_from_range(obj
.v
);
2548 obj
.type
->free(obj
.v
);
2552 __isl_give isl_set
*isl_stream_read_set(__isl_keep isl_stream
*s
)
2558 if (obj
.type
== isl_obj_map
&& isl_map_may_be_set(obj
.v
)) {
2559 obj
.v
= isl_map_range(obj
.v
);
2560 obj
.type
= isl_obj_set
;
2562 isl_assert(s
->ctx
, obj
.type
== isl_obj_set
, goto error
);
2567 obj
.type
->free(obj
.v
);
2571 __isl_give isl_union_map
*isl_stream_read_union_map(__isl_keep isl_stream
*s
)
2576 if (obj
.type
== isl_obj_map
) {
2577 obj
.type
= isl_obj_union_map
;
2578 obj
.v
= isl_union_map_from_map(obj
.v
);
2580 if (obj
.type
== isl_obj_set
) {
2581 obj
.type
= isl_obj_union_set
;
2582 obj
.v
= isl_union_set_from_set(obj
.v
);
2584 if (obj
.v
&& obj
.type
== isl_obj_union_set
&&
2585 isl_union_set_is_empty(obj
.v
))
2586 obj
.type
= isl_obj_union_map
;
2587 if (obj
.v
&& obj
.type
!= isl_obj_union_map
)
2588 isl_die(s
->ctx
, isl_error_invalid
, "invalid input", goto error
);
2592 obj
.type
->free(obj
.v
);
2596 __isl_give isl_union_set
*isl_stream_read_union_set(__isl_keep isl_stream
*s
)
2601 if (obj
.type
== isl_obj_set
) {
2602 obj
.type
= isl_obj_union_set
;
2603 obj
.v
= isl_union_set_from_set(obj
.v
);
2606 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_set
, goto error
);
2610 obj
.type
->free(obj
.v
);
2614 static __isl_give isl_basic_map
*basic_map_read(__isl_keep isl_stream
*s
)
2617 struct isl_map
*map
;
2618 struct isl_basic_map
*bmap
;
2621 if (obj
.v
&& (obj
.type
!= isl_obj_map
&& obj
.type
!= isl_obj_set
))
2622 isl_die(s
->ctx
, isl_error_invalid
, "not a (basic) set or map",
2629 isl_die(s
->ctx
, isl_error_invalid
,
2630 "set or map description involves "
2631 "more than one disjunct", goto error
);
2634 bmap
= isl_basic_map_empty_like_map(map
);
2636 bmap
= isl_basic_map_copy(map
->p
[0]);
2642 obj
.type
->free(obj
.v
);
2646 static __isl_give isl_basic_set
*basic_set_read(__isl_keep isl_stream
*s
)
2648 isl_basic_map
*bmap
;
2649 bmap
= basic_map_read(s
);
2652 if (!isl_basic_map_may_be_set(bmap
))
2653 isl_die(s
->ctx
, isl_error_invalid
,
2654 "input is not a set", goto error
);
2655 return isl_basic_map_range(bmap
);
2657 isl_basic_map_free(bmap
);
2661 __isl_give isl_basic_map
*isl_basic_map_read_from_file(isl_ctx
*ctx
,
2664 struct isl_basic_map
*bmap
;
2665 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2668 bmap
= basic_map_read(s
);
2673 __isl_give isl_basic_set
*isl_basic_set_read_from_file(isl_ctx
*ctx
,
2676 isl_basic_set
*bset
;
2677 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2680 bset
= basic_set_read(s
);
2685 struct isl_basic_map
*isl_basic_map_read_from_str(struct isl_ctx
*ctx
,
2688 struct isl_basic_map
*bmap
;
2689 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2692 bmap
= basic_map_read(s
);
2697 struct isl_basic_set
*isl_basic_set_read_from_str(struct isl_ctx
*ctx
,
2700 isl_basic_set
*bset
;
2701 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2704 bset
= basic_set_read(s
);
2709 __isl_give isl_map
*isl_map_read_from_file(struct isl_ctx
*ctx
,
2712 struct isl_map
*map
;
2713 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2716 map
= isl_stream_read_map(s
);
2721 __isl_give isl_map
*isl_map_read_from_str(struct isl_ctx
*ctx
,
2724 struct isl_map
*map
;
2725 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2728 map
= isl_stream_read_map(s
);
2733 __isl_give isl_set
*isl_set_read_from_file(struct isl_ctx
*ctx
,
2737 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2740 set
= isl_stream_read_set(s
);
2745 struct isl_set
*isl_set_read_from_str(struct isl_ctx
*ctx
,
2749 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2752 set
= isl_stream_read_set(s
);
2757 __isl_give isl_union_map
*isl_union_map_read_from_file(isl_ctx
*ctx
,
2760 isl_union_map
*umap
;
2761 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2764 umap
= isl_stream_read_union_map(s
);
2769 __isl_give isl_union_map
*isl_union_map_read_from_str(struct isl_ctx
*ctx
,
2772 isl_union_map
*umap
;
2773 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2776 umap
= isl_stream_read_union_map(s
);
2781 __isl_give isl_union_set
*isl_union_set_read_from_file(isl_ctx
*ctx
,
2784 isl_union_set
*uset
;
2785 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2788 uset
= isl_stream_read_union_set(s
);
2793 __isl_give isl_union_set
*isl_union_set_read_from_str(struct isl_ctx
*ctx
,
2796 isl_union_set
*uset
;
2797 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2800 uset
= isl_stream_read_union_set(s
);
2805 static __isl_give isl_vec
*isl_vec_read_polylib(__isl_keep isl_stream
*s
)
2807 struct isl_vec
*vec
= NULL
;
2808 struct isl_token
*tok
;
2812 tok
= isl_stream_next_token(s
);
2813 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2814 isl_stream_error(s
, tok
, "expecting vector length");
2818 size
= isl_int_get_si(tok
->u
.v
);
2819 isl_token_free(tok
);
2821 vec
= isl_vec_alloc(s
->ctx
, size
);
2823 for (j
= 0; j
< size
; ++j
) {
2824 tok
= isl_stream_next_token(s
);
2825 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2826 isl_stream_error(s
, tok
, "expecting constant value");
2829 isl_int_set(vec
->el
[j
], tok
->u
.v
);
2830 isl_token_free(tok
);
2835 isl_token_free(tok
);
2840 static __isl_give isl_vec
*vec_read(__isl_keep isl_stream
*s
)
2842 return isl_vec_read_polylib(s
);
2845 __isl_give isl_vec
*isl_vec_read_from_file(isl_ctx
*ctx
, FILE *input
)
2848 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2856 __isl_give isl_pw_qpolynomial
*isl_stream_read_pw_qpolynomial(
2857 __isl_keep isl_stream
*s
)
2863 isl_assert(s
->ctx
, obj
.type
== isl_obj_pw_qpolynomial
,
2868 obj
.type
->free(obj
.v
);
2872 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_str(isl_ctx
*ctx
,
2875 isl_pw_qpolynomial
*pwqp
;
2876 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2879 pwqp
= isl_stream_read_pw_qpolynomial(s
);
2884 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_file(isl_ctx
*ctx
,
2887 isl_pw_qpolynomial
*pwqp
;
2888 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2891 pwqp
= isl_stream_read_pw_qpolynomial(s
);
2896 /* Is the next token an identifer not in "v"?
2898 static int next_is_fresh_ident(__isl_keep isl_stream
*s
, struct vars
*v
)
2902 struct isl_token
*tok
;
2904 tok
= isl_stream_next_token(s
);
2907 fresh
= tok
->type
== ISL_TOKEN_IDENT
&& vars_pos(v
, tok
->u
.s
, -1) >= n
;
2908 isl_stream_push_token(s
, tok
);
2910 vars_drop(v
, v
->n
- n
);
2915 /* First read the domain of the affine expression, which may be
2916 * a parameter space or a set.
2917 * The tricky part is that we don't know if the domain is a set or not,
2918 * so when we are trying to read the domain, we may actually be reading
2919 * the affine expression itself (defined on a parameter domains)
2920 * If the tuple we are reading is named, we assume it's the domain.
2921 * Also, if inside the tuple, the first thing we find is a nested tuple
2922 * or a new identifier, we again assume it's the domain.
2923 * Otherwise, we assume we are reading an affine expression.
2925 static __isl_give isl_set
*read_aff_domain(__isl_keep isl_stream
*s
,
2926 __isl_take isl_set
*dom
, struct vars
*v
)
2928 struct isl_token
*tok
;
2930 tok
= isl_stream_next_token(s
);
2931 if (tok
&& (tok
->type
== ISL_TOKEN_IDENT
|| tok
->is_keyword
)) {
2932 isl_stream_push_token(s
, tok
);
2933 return read_map_tuple(s
, dom
, isl_dim_set
, v
, 1, 0);
2935 if (!tok
|| tok
->type
!= '[') {
2936 isl_stream_error(s
, tok
, "expecting '['");
2939 if (next_is_tuple(s
) || next_is_fresh_ident(s
, v
)) {
2940 isl_stream_push_token(s
, tok
);
2941 dom
= read_map_tuple(s
, dom
, isl_dim_set
, v
, 1, 0);
2943 isl_stream_push_token(s
, tok
);
2948 isl_stream_push_token(s
, tok
);
2953 /* Read an affine expression from "s".
2955 __isl_give isl_aff
*isl_stream_read_aff(__isl_keep isl_stream
*s
)
2960 ma
= isl_stream_read_multi_aff(s
);
2963 if (isl_multi_aff_dim(ma
, isl_dim_out
) != 1)
2964 isl_die(s
->ctx
, isl_error_invalid
,
2965 "expecting single affine expression",
2968 aff
= isl_multi_aff_get_aff(ma
, 0);
2969 isl_multi_aff_free(ma
);
2972 isl_multi_aff_free(ma
);
2976 /* Read a piecewise affine expression from "s" with domain (space) "dom".
2978 static __isl_give isl_pw_aff
*read_pw_aff_with_dom(__isl_keep isl_stream
*s
,
2979 __isl_take isl_set
*dom
, struct vars
*v
)
2981 isl_pw_aff
*pwaff
= NULL
;
2983 if (!isl_set_is_params(dom
) && isl_stream_eat(s
, ISL_TOKEN_TO
))
2986 if (isl_stream_eat(s
, '['))
2989 pwaff
= accept_affine(s
, isl_set_get_space(dom
), v
);
2991 if (isl_stream_eat(s
, ']'))
2994 dom
= read_optional_formula(s
, dom
, v
, 0);
2995 pwaff
= isl_pw_aff_intersect_domain(pwaff
, dom
);
3000 isl_pw_aff_free(pwaff
);
3004 __isl_give isl_pw_aff
*isl_stream_read_pw_aff(__isl_keep isl_stream
*s
)
3007 isl_set
*dom
= NULL
;
3009 isl_pw_aff
*pa
= NULL
;
3012 v
= vars_new(s
->ctx
);
3016 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3017 if (next_is_tuple(s
)) {
3018 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3019 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3022 if (isl_stream_eat(s
, '{'))
3026 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3027 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3028 vars_drop(v
, v
->n
- n
);
3030 while (isl_stream_eat_if_available(s
, ';')) {
3034 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3035 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3036 vars_drop(v
, v
->n
- n
);
3038 pa
= isl_pw_aff_union_add(pa
, pa_i
);
3041 if (isl_stream_eat(s
, '}'))
3050 isl_pw_aff_free(pa
);
3054 __isl_give isl_aff
*isl_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3057 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3060 aff
= isl_stream_read_aff(s
);
3065 __isl_give isl_pw_aff
*isl_pw_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3068 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3071 pa
= isl_stream_read_pw_aff(s
);
3076 /* Read an isl_pw_multi_aff from "s".
3077 * We currently read a generic object and if it turns out to be a set or
3078 * a map, we convert that to an isl_pw_multi_aff.
3079 * It would be more efficient if we were to construct the isl_pw_multi_aff
3082 __isl_give isl_pw_multi_aff
*isl_stream_read_pw_multi_aff(
3083 __isl_keep isl_stream
*s
)
3091 if (obj
.type
== isl_obj_map
)
3092 return isl_pw_multi_aff_from_map(obj
.v
);
3093 if (obj
.type
== isl_obj_set
)
3094 return isl_pw_multi_aff_from_set(obj
.v
);
3096 obj
.type
->free(obj
.v
);
3097 isl_die(s
->ctx
, isl_error_invalid
, "unexpected object type",
3101 __isl_give isl_pw_multi_aff
*isl_pw_multi_aff_read_from_str(isl_ctx
*ctx
,
3104 isl_pw_multi_aff
*pma
;
3105 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3108 pma
= isl_stream_read_pw_multi_aff(s
);
3113 /* Read an isl_union_pw_multi_aff from "s".
3114 * We currently read a generic object and if it turns out to be a set or
3115 * a map, we convert that to an isl_union_pw_multi_aff.
3116 * It would be more efficient if we were to construct
3117 * the isl_union_pw_multi_aff directly.
3119 __isl_give isl_union_pw_multi_aff
*isl_stream_read_union_pw_multi_aff(
3120 __isl_keep isl_stream
*s
)
3128 if (obj
.type
== isl_obj_map
|| obj
.type
== isl_obj_set
)
3129 obj
= to_union(s
->ctx
, obj
);
3130 if (obj
.type
== isl_obj_union_map
)
3131 return isl_union_pw_multi_aff_from_union_map(obj
.v
);
3132 if (obj
.type
== isl_obj_union_set
)
3133 return isl_union_pw_multi_aff_from_union_set(obj
.v
);
3135 obj
.type
->free(obj
.v
);
3136 isl_die(s
->ctx
, isl_error_invalid
, "unexpected object type",
3140 /* Read an isl_union_pw_multi_aff from "str".
3142 __isl_give isl_union_pw_multi_aff
*isl_union_pw_multi_aff_read_from_str(
3143 isl_ctx
*ctx
, const char *str
)
3145 isl_union_pw_multi_aff
*upma
;
3146 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3149 upma
= isl_stream_read_union_pw_multi_aff(s
);
3154 /* Assuming "pa" represents a single affine expression defined on a universe
3155 * domain, extract this affine expression.
3157 static __isl_give isl_aff
*aff_from_pw_aff(__isl_take isl_pw_aff
*pa
)
3164 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3165 "expecting single affine expression",
3167 if (!isl_set_plain_is_universe(pa
->p
[0].set
))
3168 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3169 "expecting universe domain",
3172 aff
= isl_aff_copy(pa
->p
[0].aff
);
3173 isl_pw_aff_free(pa
);
3176 isl_pw_aff_free(pa
);
3180 /* This function is called for each element in a tuple inside
3181 * isl_stream_read_multi_val.
3182 * Read an isl_val from "s" and add it to *list.
3184 static __isl_give isl_space
*read_val_el(__isl_keep isl_stream
*s
,
3185 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3187 isl_val_list
**list
= (isl_val_list
**) user
;
3190 val
= isl_stream_read_val(s
);
3191 *list
= isl_val_list_add(*list
, val
);
3193 return isl_space_free(space
);
3198 /* Read an isl_multi_val from "s".
3200 * We first read a tuple space, collecting the element values in a list.
3201 * Then we create an isl_multi_val from the space and the isl_val_list.
3203 __isl_give isl_multi_val
*isl_stream_read_multi_val(__isl_keep isl_stream
*s
)
3206 isl_set
*dom
= NULL
;
3208 isl_multi_val
*mv
= NULL
;
3211 v
= vars_new(s
->ctx
);
3215 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3216 if (next_is_tuple(s
)) {
3217 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3218 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3221 if (!isl_set_plain_is_universe(dom
))
3222 isl_die(s
->ctx
, isl_error_invalid
,
3223 "expecting universe parameter domain", goto error
);
3224 if (isl_stream_eat(s
, '{'))
3227 space
= isl_set_get_space(dom
);
3229 list
= isl_val_list_alloc(s
->ctx
, 0);
3230 space
= read_tuple_space(s
, v
, space
, 1, 0, &read_val_el
, &list
);
3231 mv
= isl_multi_val_from_val_list(space
, list
);
3233 if (isl_stream_eat(s
, '}'))
3242 isl_multi_val_free(mv
);
3246 /* Read an isl_multi_val from "str".
3248 __isl_give isl_multi_val
*isl_multi_val_read_from_str(isl_ctx
*ctx
,
3252 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3255 mv
= isl_stream_read_multi_val(s
);
3260 /* Read a multi-affine expression from "s".
3261 * If the multi-affine expression has a domain, then the tuple
3262 * representing this domain cannot involve any affine expressions.
3263 * The tuple representing the actual expressions needs to consist
3264 * of only affine expressions. Moreover, these expressions can
3265 * only depend on parameters and input dimensions and not on other
3266 * output dimensions.
3268 __isl_give isl_multi_aff
*isl_stream_read_multi_aff(__isl_keep isl_stream
*s
)
3271 isl_set
*dom
= NULL
;
3272 isl_multi_pw_aff
*tuple
= NULL
;
3274 isl_space
*space
, *dom_space
;
3275 isl_multi_aff
*ma
= NULL
;
3277 v
= vars_new(s
->ctx
);
3281 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3282 if (next_is_tuple(s
)) {
3283 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3284 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3287 if (!isl_set_plain_is_universe(dom
))
3288 isl_die(s
->ctx
, isl_error_invalid
,
3289 "expecting universe parameter domain", goto error
);
3290 if (isl_stream_eat(s
, '{'))
3293 tuple
= read_tuple(s
, v
, 0, 0);
3296 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3301 has_expr
= tuple_has_expr(tuple
);
3305 isl_die(s
->ctx
, isl_error_invalid
,
3306 "expecting universe domain", goto error
);
3307 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3308 set
= isl_set_universe(space
);
3309 dom
= isl_set_intersect_params(set
, dom
);
3310 isl_multi_pw_aff_free(tuple
);
3311 tuple
= read_tuple(s
, v
, 0, 0);
3316 if (isl_stream_eat(s
, '}'))
3319 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3320 dim
= isl_set_dim(dom
, isl_dim_all
);
3321 dom_space
= isl_set_get_space(dom
);
3322 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3323 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3324 if (!isl_space_is_params(dom_space
))
3325 space
= isl_space_map_from_domain_and_range(
3326 isl_space_copy(dom_space
), space
);
3327 isl_space_free(dom_space
);
3328 ma
= isl_multi_aff_alloc(space
);
3330 for (i
= 0; i
< n
; ++i
) {
3333 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3334 aff
= aff_from_pw_aff(pa
);
3337 if (isl_aff_involves_dims(aff
, isl_dim_in
, dim
, i
+ 1)) {
3339 isl_die(s
->ctx
, isl_error_invalid
,
3340 "not an affine expression", goto error
);
3342 aff
= isl_aff_drop_dims(aff
, isl_dim_in
, dim
, n
);
3343 space
= isl_multi_aff_get_domain_space(ma
);
3344 aff
= isl_aff_reset_domain_space(aff
, space
);
3345 ma
= isl_multi_aff_set_aff(ma
, i
, aff
);
3348 isl_multi_pw_aff_free(tuple
);
3353 isl_multi_pw_aff_free(tuple
);
3356 isl_multi_aff_free(ma
);
3360 __isl_give isl_multi_aff
*isl_multi_aff_read_from_str(isl_ctx
*ctx
,
3363 isl_multi_aff
*maff
;
3364 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3367 maff
= isl_stream_read_multi_aff(s
);
3372 /* Read an isl_multi_pw_aff from "s".
3374 * The input format is similar to that of map, except that any conditions
3375 * on the domains should be specified inside the tuple since each
3376 * piecewise affine expression may have a different domain.
3378 * Since we do not know in advance if the isl_multi_pw_aff lives
3379 * in a set or a map space, we first read the first tuple and check
3380 * if it is followed by a "->". If so, we convert the tuple into
3381 * the domain of the isl_multi_pw_aff and read in the next tuple.
3382 * This tuple (or the first tuple if it was not followed by a "->")
3383 * is then converted into the isl_multi_pw_aff.
3385 * Note that the function read_tuple accepts tuples where some output or
3386 * set dimensions are defined in terms of other output or set dimensions
3387 * since this function is also used to read maps. As a special case,
3388 * read_tuple also accept dimensions that are defined in terms of themselves
3389 * (i.e., that are not defined).
3390 * These cases are not allowed when reading am isl_multi_pw_aff so we check
3391 * that the definition of the output/set dimensions does not involve any
3392 * output/set dimensions.
3393 * We then drop the output dimensions from the domain of the result
3394 * of read_tuple (which is of the form [input, output] -> [output],
3395 * with anonymous domain) and reset the space.
3397 __isl_give isl_multi_pw_aff
*isl_stream_read_multi_pw_aff(
3398 __isl_keep isl_stream
*s
)
3401 isl_set
*dom
= NULL
;
3402 isl_multi_pw_aff
*tuple
= NULL
;
3404 isl_space
*space
, *dom_space
;
3405 isl_multi_pw_aff
*mpa
= NULL
;
3407 v
= vars_new(s
->ctx
);
3411 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3412 if (next_is_tuple(s
)) {
3413 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3414 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3417 if (isl_stream_eat(s
, '{'))
3420 tuple
= read_tuple(s
, v
, 0, 0);
3423 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3424 isl_map
*map
= map_from_tuple(tuple
, dom
, isl_dim_in
, v
, 0);
3425 dom
= isl_map_domain(map
);
3426 tuple
= read_tuple(s
, v
, 0, 0);
3431 if (isl_stream_eat(s
, '}'))
3434 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3435 dim
= isl_set_dim(dom
, isl_dim_all
);
3436 dom_space
= isl_set_get_space(dom
);
3437 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3438 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3439 if (!isl_space_is_params(dom_space
))
3440 space
= isl_space_map_from_domain_and_range(
3441 isl_space_copy(dom_space
), space
);
3442 isl_space_free(dom_space
);
3443 mpa
= isl_multi_pw_aff_alloc(space
);
3445 for (i
= 0; i
< n
; ++i
) {
3447 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3450 if (isl_pw_aff_involves_dims(pa
, isl_dim_in
, dim
, i
+ 1)) {
3451 isl_pw_aff_free(pa
);
3452 isl_die(s
->ctx
, isl_error_invalid
,
3453 "not an affine expression", goto error
);
3455 pa
= isl_pw_aff_drop_dims(pa
, isl_dim_in
, dim
, n
);
3456 space
= isl_multi_pw_aff_get_domain_space(mpa
);
3457 pa
= isl_pw_aff_reset_domain_space(pa
, space
);
3458 mpa
= isl_multi_pw_aff_set_pw_aff(mpa
, i
, pa
);
3461 isl_multi_pw_aff_free(tuple
);
3463 mpa
= isl_multi_pw_aff_intersect_domain(mpa
, dom
);
3466 isl_multi_pw_aff_free(tuple
);
3469 isl_multi_pw_aff_free(mpa
);
3473 /* Read an isl_multi_pw_aff from "str".
3475 __isl_give isl_multi_pw_aff
*isl_multi_pw_aff_read_from_str(isl_ctx
*ctx
,
3478 isl_multi_pw_aff
*mpa
;
3479 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3482 mpa
= isl_stream_read_multi_pw_aff(s
);
3487 /* Read the body of an isl_union_pw_aff from "s" with parameter domain "dom".
3489 static __isl_give isl_union_pw_aff
*read_union_pw_aff_with_dom(
3490 __isl_keep isl_stream
*s
, __isl_take isl_set
*dom
, struct vars
*v
)
3493 isl_union_pw_aff
*upa
= NULL
;
3498 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3499 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3500 vars_drop(v
, v
->n
- n
);
3502 upa
= isl_union_pw_aff_from_pw_aff(pa
);
3504 while (isl_stream_eat_if_available(s
, ';')) {
3506 isl_union_pw_aff
*upa_i
;
3509 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3510 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3511 vars_drop(v
, v
->n
- n
);
3513 upa_i
= isl_union_pw_aff_from_pw_aff(pa_i
);
3514 upa
= isl_union_pw_aff_union_add(upa
, upa_i
);
3521 /* This function is called for each element in a tuple inside
3522 * isl_stream_read_multi_union_pw_aff.
3524 * Read a '{', the union piecewise affine expression body and a '}' and
3525 * add the isl_union_pw_aff to *list.
3527 static __isl_give isl_space
*read_union_pw_aff_el(__isl_keep isl_stream
*s
,
3528 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3531 isl_union_pw_aff
*upa
;
3532 isl_union_pw_aff_list
**list
= (isl_union_pw_aff_list
**) user
;
3534 dom
= isl_set_universe(isl_space_params(isl_space_copy(space
)));
3535 if (isl_stream_eat(s
, '{'))
3537 upa
= read_union_pw_aff_with_dom(s
, dom
, v
);
3538 *list
= isl_union_pw_aff_list_add(*list
, upa
);
3539 if (isl_stream_eat(s
, '}'))
3540 return isl_space_free(space
);
3542 return isl_space_free(space
);
3546 return isl_space_free(space
);
3549 /* Do the next tokens in "s" correspond to an empty tuple?
3550 * In particular, does the stream start with a '[', followed by a ']',
3551 * not followed by a "->"?
3553 static int next_is_empty_tuple(__isl_keep isl_stream
*s
)
3555 struct isl_token
*tok
, *tok2
, *tok3
;
3556 int is_empty_tuple
= 0;
3558 tok
= isl_stream_next_token(s
);
3561 if (tok
->type
!= '[') {
3562 isl_stream_push_token(s
, tok
);
3566 tok2
= isl_stream_next_token(s
);
3567 if (tok2
&& tok2
->type
== ']') {
3568 tok3
= isl_stream_next_token(s
);
3569 is_empty_tuple
= !tok
|| tok
->type
!= ISL_TOKEN_TO
;
3571 isl_stream_push_token(s
, tok3
);
3574 isl_stream_push_token(s
, tok2
);
3575 isl_stream_push_token(s
, tok
);
3577 return is_empty_tuple
;
3580 /* Do the next tokens in "s" correspond to a tuple of parameters?
3581 * In particular, does the stream start with a '[' that is not
3582 * followed by a '{' or a nested tuple?
3584 static int next_is_param_tuple(__isl_keep isl_stream
*s
)
3586 struct isl_token
*tok
, *tok2
;
3589 tok
= isl_stream_next_token(s
);
3592 if (tok
->type
!= '[' || next_is_tuple(s
)) {
3593 isl_stream_push_token(s
, tok
);
3597 tok2
= isl_stream_next_token(s
);
3598 is_tuple
= tok2
&& tok2
->type
!= '{';
3600 isl_stream_push_token(s
, tok2
);
3601 isl_stream_push_token(s
, tok
);
3606 /* Read an isl_multi_union_pw_aff from "s".
3608 * The input has the form
3610 * [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3614 * [..] -> [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3616 * We first check for the special case of an empty tuple "[]".
3617 * Then we check if there are any parameters.
3618 * Finally, we read the tuple, collecting the individual isl_union_pw_aff
3619 * elements in a list and construct the result from the tuple space and
3622 __isl_give isl_multi_union_pw_aff
*isl_stream_read_multi_union_pw_aff(
3623 __isl_keep isl_stream
*s
)
3626 isl_set
*dom
= NULL
;
3628 isl_multi_union_pw_aff
*mupa
= NULL
;
3629 isl_union_pw_aff_list
*list
;
3631 if (next_is_empty_tuple(s
)) {
3632 if (isl_stream_eat(s
, '['))
3634 if (isl_stream_eat(s
, ']'))
3636 space
= isl_space_set_alloc(s
->ctx
, 0, 0);
3637 return isl_multi_union_pw_aff_zero(space
);
3640 v
= vars_new(s
->ctx
);
3644 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3645 if (next_is_param_tuple(s
)) {
3646 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3647 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3650 space
= isl_set_get_space(dom
);
3652 list
= isl_union_pw_aff_list_alloc(s
->ctx
, 0);
3653 space
= read_tuple_space(s
, v
, space
, 1, 0,
3654 &read_union_pw_aff_el
, &list
);
3655 mupa
= isl_multi_union_pw_aff_from_union_pw_aff_list(space
, list
);
3663 isl_multi_union_pw_aff_free(mupa
);
3667 /* Read an isl_multi_union_pw_aff from "str".
3669 __isl_give isl_multi_union_pw_aff
*isl_multi_union_pw_aff_read_from_str(
3670 isl_ctx
*ctx
, const char *str
)
3672 isl_multi_union_pw_aff
*mupa
;
3673 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3676 mupa
= isl_stream_read_multi_union_pw_aff(s
);
3681 __isl_give isl_union_pw_qpolynomial
*isl_stream_read_union_pw_qpolynomial(
3682 __isl_keep isl_stream
*s
)
3687 if (obj
.type
== isl_obj_pw_qpolynomial
) {
3688 obj
.type
= isl_obj_union_pw_qpolynomial
;
3689 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
3692 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_pw_qpolynomial
,
3697 obj
.type
->free(obj
.v
);
3701 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_read_from_str(
3702 isl_ctx
*ctx
, const char *str
)
3704 isl_union_pw_qpolynomial
*upwqp
;
3705 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3708 upwqp
= isl_stream_read_union_pw_qpolynomial(s
);