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_set.h>
26 #include <isl/union_map.h>
27 #include <isl_mat_private.h>
28 #include <isl_aff_private.h>
29 #include <isl_vec_private.h>
31 #include <isl_val_private.h>
36 struct variable
*next
;
45 static struct vars
*vars_new(struct isl_ctx
*ctx
)
48 v
= isl_alloc_type(ctx
, struct vars
);
57 static void variable_free(struct variable
*var
)
60 struct variable
*next
= var
->next
;
67 static void vars_free(struct vars
*v
)
75 static void vars_drop(struct vars
*v
, int n
)
86 struct variable
*next
= var
->next
;
94 static struct variable
*variable_new(struct vars
*v
, const char *name
, int len
,
98 var
= isl_calloc_type(v
->ctx
, struct variable
);
101 var
->name
= strdup(name
);
102 var
->name
[len
] = '\0';
111 static int vars_pos(struct vars
*v
, const char *s
, int len
)
118 for (q
= v
->v
; q
; q
= q
->next
) {
119 if (strncmp(q
->name
, s
, len
) == 0 && q
->name
[len
] == '\0')
126 v
->v
= variable_new(v
, s
, len
, v
->n
);
134 static int vars_add_anon(struct vars
*v
)
136 v
->v
= variable_new(v
, "", 0, v
->n
);
145 /* Obtain next token, with some preprocessing.
146 * In particular, evaluate expressions of the form x^y,
147 * with x and y values.
149 static struct isl_token
*next_token(__isl_keep isl_stream
*s
)
151 struct isl_token
*tok
, *tok2
;
153 tok
= isl_stream_next_token(s
);
154 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
)
156 if (!isl_stream_eat_if_available(s
, '^'))
158 tok2
= isl_stream_next_token(s
);
159 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
160 isl_stream_error(s
, tok2
, "expecting constant value");
164 isl_int_pow_ui(tok
->u
.v
, tok
->u
.v
, isl_int_get_ui(tok2
->u
.v
));
166 isl_token_free(tok2
);
170 isl_token_free(tok2
);
174 /* Read an isl_val from "s".
176 * The following token sequences are recognized
179 * "-" "infty" -> -infty
184 * where n, d and v are integer constants.
186 __isl_give isl_val
*isl_stream_read_val(__isl_keep isl_stream
*s
)
188 struct isl_token
*tok
= NULL
;
189 struct isl_token
*tok2
= NULL
;
194 isl_stream_error(s
, NULL
, "unexpected EOF");
197 if (tok
->type
== ISL_TOKEN_INFTY
) {
199 return isl_val_infty(s
->ctx
);
201 if (tok
->type
== '-' &&
202 isl_stream_eat_if_available(s
, ISL_TOKEN_INFTY
)) {
204 return isl_val_neginfty(s
->ctx
);
206 if (tok
->type
== ISL_TOKEN_NAN
) {
208 return isl_val_nan(s
->ctx
);
210 if (tok
->type
!= ISL_TOKEN_VALUE
) {
211 isl_stream_error(s
, tok
, "expecting value");
215 if (isl_stream_eat_if_available(s
, '/')) {
216 tok2
= next_token(s
);
218 isl_stream_error(s
, NULL
, "unexpected EOF");
221 if (tok2
->type
!= ISL_TOKEN_VALUE
) {
222 isl_stream_error(s
, tok2
, "expecting value");
225 val
= isl_val_rat_from_isl_int(s
->ctx
, tok
->u
.v
, tok2
->u
.v
);
226 val
= isl_val_normalize(val
);
228 val
= isl_val_int_from_isl_int(s
->ctx
, tok
->u
.v
);
232 isl_token_free(tok2
);
236 isl_token_free(tok2
);
240 /* Read an isl_val from "str".
242 struct isl_val
*isl_val_read_from_str(struct isl_ctx
*ctx
,
246 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
249 val
= isl_stream_read_val(s
);
254 static int accept_cst_factor(__isl_keep isl_stream
*s
, isl_int
*f
)
256 struct isl_token
*tok
;
259 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
260 isl_stream_error(s
, tok
, "expecting constant value");
264 isl_int_mul(*f
, *f
, tok
->u
.v
);
268 if (isl_stream_eat_if_available(s
, '*'))
269 return accept_cst_factor(s
, f
);
277 /* Given an affine expression aff, return an affine expression
278 * for aff % d, with d the next token on the stream, which is
279 * assumed to be a constant.
281 * We introduce an integer division q = [aff/d] and the result
282 * is set to aff - d q.
284 static __isl_give isl_pw_aff
*affine_mod(__isl_keep isl_stream
*s
,
285 struct vars
*v
, __isl_take isl_pw_aff
*aff
)
287 struct isl_token
*tok
;
291 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
292 isl_stream_error(s
, tok
, "expecting constant value");
296 q
= isl_pw_aff_copy(aff
);
297 q
= isl_pw_aff_scale_down(q
, tok
->u
.v
);
298 q
= isl_pw_aff_floor(q
);
299 q
= isl_pw_aff_scale(q
, tok
->u
.v
);
301 aff
= isl_pw_aff_sub(aff
, q
);
306 isl_pw_aff_free(aff
);
311 static __isl_give isl_pw_aff
*accept_affine(__isl_keep isl_stream
*s
,
312 __isl_take isl_space
*space
, struct vars
*v
);
313 static __isl_give isl_pw_aff_list
*accept_affine_list(__isl_keep isl_stream
*s
,
314 __isl_take isl_space
*dim
, struct vars
*v
);
316 static __isl_give isl_pw_aff
*accept_minmax(__isl_keep isl_stream
*s
,
317 __isl_take isl_space
*dim
, struct vars
*v
)
319 struct isl_token
*tok
;
320 isl_pw_aff_list
*list
= NULL
;
323 tok
= isl_stream_next_token(s
);
326 min
= tok
->type
== ISL_TOKEN_MIN
;
329 if (isl_stream_eat(s
, '('))
332 list
= accept_affine_list(s
, isl_space_copy(dim
), v
);
336 if (isl_stream_eat(s
, ')'))
340 return min
? isl_pw_aff_list_min(list
) : isl_pw_aff_list_max(list
);
343 isl_pw_aff_list_free(list
);
347 /* Is "tok" the start of an integer division?
349 static int is_start_of_div(struct isl_token
*tok
)
353 if (tok
->type
== '[')
355 if (tok
->type
== ISL_TOKEN_FLOOR
)
357 if (tok
->type
== ISL_TOKEN_CEIL
)
359 if (tok
->type
== ISL_TOKEN_FLOORD
)
361 if (tok
->type
== ISL_TOKEN_CEILD
)
366 /* Read an integer division from "s" and return it as an isl_pw_aff.
368 * The integer division can be of the form
370 * [<affine expression>]
371 * floor(<affine expression>)
372 * ceil(<affine expression>)
373 * floord(<affine expression>,<denominator>)
374 * ceild(<affine expression>,<denominator>)
376 static __isl_give isl_pw_aff
*accept_div(__isl_keep isl_stream
*s
,
377 __isl_take isl_space
*dim
, struct vars
*v
)
379 struct isl_token
*tok
;
383 isl_pw_aff
*pwaff
= NULL
;
385 if (isl_stream_eat_if_available(s
, ISL_TOKEN_FLOORD
))
387 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_CEILD
))
389 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_FLOOR
))
391 else if (isl_stream_eat_if_available(s
, ISL_TOKEN_CEIL
))
394 if (isl_stream_eat(s
, '('))
397 if (isl_stream_eat(s
, '['))
401 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
404 if (isl_stream_eat(s
, ','))
410 if (tok
->type
!= ISL_TOKEN_VALUE
) {
411 isl_stream_error(s
, tok
, "expected denominator");
412 isl_stream_push_token(s
, tok
);
415 pwaff
= isl_pw_aff_scale_down(pwaff
, tok
->u
.v
);
420 pwaff
= isl_pw_aff_ceil(pwaff
);
422 pwaff
= isl_pw_aff_floor(pwaff
);
425 if (isl_stream_eat(s
, ')'))
428 if (isl_stream_eat(s
, ']'))
436 isl_pw_aff_free(pwaff
);
440 static __isl_give isl_pw_aff
*accept_affine_factor(__isl_keep isl_stream
*s
,
441 __isl_take isl_space
*dim
, struct vars
*v
)
443 struct isl_token
*tok
= NULL
;
444 isl_pw_aff
*res
= NULL
;
448 isl_stream_error(s
, NULL
, "unexpected EOF");
452 if (tok
->type
== ISL_TOKEN_AFF
) {
453 res
= isl_pw_aff_copy(tok
->u
.pwaff
);
455 } else if (tok
->type
== ISL_TOKEN_IDENT
) {
457 int pos
= vars_pos(v
, tok
->u
.s
, -1);
463 vars_drop(v
, v
->n
- n
);
464 isl_stream_error(s
, tok
, "unknown identifier");
468 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(isl_space_copy(dim
)));
471 isl_int_set_si(aff
->v
->el
[2 + pos
], 1);
472 res
= isl_pw_aff_from_aff(aff
);
474 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
475 if (isl_stream_eat_if_available(s
, '*')) {
476 res
= accept_affine_factor(s
, isl_space_copy(dim
), v
);
477 res
= isl_pw_aff_scale(res
, tok
->u
.v
);
481 ls
= isl_local_space_from_space(isl_space_copy(dim
));
482 aff
= isl_aff_zero_on_domain(ls
);
483 aff
= isl_aff_add_constant(aff
, tok
->u
.v
);
484 res
= isl_pw_aff_from_aff(aff
);
487 } else if (tok
->type
== '(') {
490 res
= accept_affine(s
, isl_space_copy(dim
), v
);
493 if (isl_stream_eat(s
, ')'))
495 } else if (is_start_of_div(tok
)) {
496 isl_stream_push_token(s
, tok
);
498 res
= accept_div(s
, isl_space_copy(dim
), v
);
499 } else if (tok
->type
== ISL_TOKEN_MIN
|| tok
->type
== ISL_TOKEN_MAX
) {
500 isl_stream_push_token(s
, tok
);
502 res
= accept_minmax(s
, isl_space_copy(dim
), v
);
504 isl_stream_error(s
, tok
, "expecting factor");
507 if (isl_stream_eat_if_available(s
, '%') ||
508 isl_stream_eat_if_available(s
, ISL_TOKEN_MOD
)) {
510 return affine_mod(s
, v
, res
);
512 if (isl_stream_eat_if_available(s
, '*')) {
515 isl_int_set_si(f
, 1);
516 if (accept_cst_factor(s
, &f
) < 0) {
520 res
= isl_pw_aff_scale(res
, f
);
523 if (isl_stream_eat_if_available(s
, '/')) {
526 isl_int_set_si(f
, 1);
527 if (accept_cst_factor(s
, &f
) < 0) {
531 res
= isl_pw_aff_scale_down(res
, f
);
540 isl_pw_aff_free(res
);
545 static __isl_give isl_pw_aff
*add_cst(__isl_take isl_pw_aff
*pwaff
, isl_int v
)
550 space
= isl_pw_aff_get_domain_space(pwaff
);
551 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
552 aff
= isl_aff_add_constant(aff
, v
);
554 return isl_pw_aff_add(pwaff
, isl_pw_aff_from_aff(aff
));
557 /* Return a piecewise affine expression defined on the specified domain
558 * that represents NaN.
560 static __isl_give isl_pw_aff
*nan_on_domain(__isl_keep isl_space
*space
)
564 ls
= isl_local_space_from_space(isl_space_copy(space
));
565 return isl_pw_aff_nan_on_domain(ls
);
568 static __isl_give isl_pw_aff
*accept_affine(__isl_keep isl_stream
*s
,
569 __isl_take isl_space
*space
, struct vars
*v
)
571 struct isl_token
*tok
= NULL
;
576 ls
= isl_local_space_from_space(isl_space_copy(space
));
577 res
= isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls
));
584 isl_stream_error(s
, NULL
, "unexpected EOF");
587 if (tok
->type
== '-') {
592 if (tok
->type
== '(' || is_start_of_div(tok
) ||
593 tok
->type
== ISL_TOKEN_MIN
|| tok
->type
== ISL_TOKEN_MAX
||
594 tok
->type
== ISL_TOKEN_IDENT
||
595 tok
->type
== ISL_TOKEN_AFF
) {
597 isl_stream_push_token(s
, tok
);
599 term
= accept_affine_factor(s
,
600 isl_space_copy(space
), v
);
602 res
= isl_pw_aff_sub(res
, term
);
604 res
= isl_pw_aff_add(res
, term
);
608 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
610 isl_int_neg(tok
->u
.v
, tok
->u
.v
);
611 if (isl_stream_eat_if_available(s
, '*') ||
612 isl_stream_next_token_is(s
, ISL_TOKEN_IDENT
)) {
614 term
= accept_affine_factor(s
,
615 isl_space_copy(space
), v
);
616 term
= isl_pw_aff_scale(term
, tok
->u
.v
);
617 res
= isl_pw_aff_add(res
, term
);
621 res
= add_cst(res
, tok
->u
.v
);
624 } else if (tok
->type
== ISL_TOKEN_NAN
) {
625 res
= isl_pw_aff_add(res
, nan_on_domain(space
));
627 isl_stream_error(s
, tok
, "unexpected isl_token");
628 isl_stream_push_token(s
, tok
);
629 isl_pw_aff_free(res
);
630 isl_space_free(space
);
636 if (tok
&& tok
->type
== '-') {
639 } else if (tok
&& tok
->type
== '+') {
642 } else if (tok
&& tok
->type
== ISL_TOKEN_VALUE
&&
643 isl_int_is_neg(tok
->u
.v
)) {
644 isl_stream_push_token(s
, tok
);
647 isl_stream_push_token(s
, tok
);
652 isl_space_free(space
);
655 isl_space_free(space
);
657 isl_pw_aff_free(res
);
661 /* Is "type" the type of a comparison operator between lists
662 * of affine expressions?
664 static int is_list_comparator_type(int type
)
667 case ISL_TOKEN_LEX_LT
:
668 case ISL_TOKEN_LEX_GT
:
669 case ISL_TOKEN_LEX_LE
:
670 case ISL_TOKEN_LEX_GE
:
677 static int is_comparator(struct isl_token
*tok
)
681 if (is_list_comparator_type(tok
->type
))
697 static __isl_give isl_map
*read_formula(__isl_keep isl_stream
*s
,
698 struct vars
*v
, __isl_take isl_map
*map
, int rational
);
699 static __isl_give isl_pw_aff
*accept_extended_affine(__isl_keep isl_stream
*s
,
700 __isl_take isl_space
*dim
, struct vars
*v
, int rational
);
702 /* Accept a ternary operator, given the first argument.
704 static __isl_give isl_pw_aff
*accept_ternary(__isl_keep isl_stream
*s
,
705 __isl_take isl_map
*cond
, struct vars
*v
, int rational
)
708 isl_pw_aff
*pwaff1
= NULL
, *pwaff2
= NULL
, *pa_cond
;
713 if (isl_stream_eat(s
, '?'))
716 dim
= isl_space_wrap(isl_map_get_space(cond
));
717 pwaff1
= accept_extended_affine(s
, dim
, v
, rational
);
721 if (isl_stream_eat(s
, ':'))
724 dim
= isl_pw_aff_get_domain_space(pwaff1
);
725 pwaff2
= accept_extended_affine(s
, dim
, v
, rational
);
729 pa_cond
= isl_set_indicator_function(isl_map_wrap(cond
));
730 return isl_pw_aff_cond(pa_cond
, pwaff1
, pwaff2
);
733 isl_pw_aff_free(pwaff1
);
734 isl_pw_aff_free(pwaff2
);
738 /* Set *line and *col to those of the next token, if any.
740 static void set_current_line_col(__isl_keep isl_stream
*s
, int *line
, int *col
)
742 struct isl_token
*tok
;
744 tok
= isl_stream_next_token(s
);
750 isl_stream_push_token(s
, tok
);
753 /* Push a token encapsulating "pa" onto "s", with the given
756 static int push_aff(__isl_keep isl_stream
*s
, int line
, int col
,
757 __isl_take isl_pw_aff
*pa
)
759 struct isl_token
*tok
;
761 tok
= isl_token_new(s
->ctx
, line
, col
, 0);
764 tok
->type
= ISL_TOKEN_AFF
;
766 isl_stream_push_token(s
, tok
);
774 /* Accept an affine expression that may involve ternary operators.
775 * We first read an affine expression.
776 * If it is not followed by a comparison operator, we simply return it.
777 * Otherwise, we assume the affine expression is part of the first
778 * argument of a ternary operator and try to parse that.
780 static __isl_give isl_pw_aff
*accept_extended_affine(__isl_keep isl_stream
*s
,
781 __isl_take isl_space
*dim
, struct vars
*v
, int rational
)
786 struct isl_token
*tok
;
787 int line
= -1, col
= -1;
790 set_current_line_col(s
, &line
, &col
);
792 pwaff
= accept_affine(s
, dim
, v
);
794 pwaff
= isl_pw_aff_set_rational(pwaff
);
798 tok
= isl_stream_next_token(s
);
800 return isl_pw_aff_free(pwaff
);
802 is_comp
= is_comparator(tok
);
803 isl_stream_push_token(s
, tok
);
807 space
= isl_pw_aff_get_domain_space(pwaff
);
808 cond
= isl_map_universe(isl_space_unwrap(space
));
810 if (push_aff(s
, line
, col
, pwaff
) < 0)
811 cond
= isl_map_free(cond
);
815 cond
= read_formula(s
, v
, cond
, rational
);
817 return accept_ternary(s
, cond
, v
, rational
);
820 static __isl_give isl_map
*read_var_def(__isl_keep isl_stream
*s
,
821 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
828 if (type
== isl_dim_param
)
829 pos
= isl_map_dim(map
, isl_dim_param
);
831 pos
= isl_map_dim(map
, isl_dim_in
);
832 if (type
== isl_dim_out
)
833 pos
+= isl_map_dim(map
, isl_dim_out
);
838 def
= accept_extended_affine(s
, isl_space_wrap(isl_map_get_space(map
)),
840 def_map
= isl_map_from_pw_aff(def
);
841 def_map
= isl_map_equate(def_map
, type
, pos
, isl_dim_out
, 0);
842 def_map
= isl_set_unwrap(isl_map_domain(def_map
));
844 map
= isl_map_intersect(map
, def_map
);
849 static __isl_give isl_pw_aff_list
*accept_affine_list(__isl_keep isl_stream
*s
,
850 __isl_take isl_space
*dim
, struct vars
*v
)
853 isl_pw_aff_list
*list
;
854 struct isl_token
*tok
= NULL
;
856 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
857 list
= isl_pw_aff_list_from_pw_aff(pwaff
);
862 tok
= isl_stream_next_token(s
);
864 isl_stream_error(s
, NULL
, "unexpected EOF");
867 if (tok
->type
!= ',') {
868 isl_stream_push_token(s
, tok
);
873 pwaff
= accept_affine(s
, isl_space_copy(dim
), v
);
874 list
= isl_pw_aff_list_concat(list
,
875 isl_pw_aff_list_from_pw_aff(pwaff
));
884 isl_pw_aff_list_free(list
);
888 static __isl_give isl_map
*read_defined_var_list(__isl_keep isl_stream
*s
,
889 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
891 struct isl_token
*tok
;
893 while ((tok
= isl_stream_next_token(s
)) != NULL
) {
897 if (tok
->type
!= ISL_TOKEN_IDENT
)
900 p
= vars_pos(v
, tok
->u
.s
, -1);
904 isl_stream_error(s
, tok
, "expecting unique identifier");
908 map
= isl_map_add_dims(map
, isl_dim_out
, 1);
911 tok
= isl_stream_next_token(s
);
912 if (tok
&& tok
->type
== '=') {
914 map
= read_var_def(s
, map
, isl_dim_out
, v
, rational
);
915 tok
= isl_stream_next_token(s
);
918 if (!tok
|| tok
->type
!= ',')
924 isl_stream_push_token(s
, tok
);
933 static int next_is_tuple(__isl_keep isl_stream
*s
)
935 struct isl_token
*tok
;
938 tok
= isl_stream_next_token(s
);
941 if (tok
->type
== '[') {
942 isl_stream_push_token(s
, tok
);
945 if (tok
->type
!= ISL_TOKEN_IDENT
&& !tok
->is_keyword
) {
946 isl_stream_push_token(s
, tok
);
950 is_tuple
= isl_stream_next_token_is(s
, '[');
952 isl_stream_push_token(s
, tok
);
957 /* Is "pa" an expression in term of earlier dimensions?
958 * The alternative is that the dimension is defined to be equal to itself,
959 * meaning that it has a universe domain and an expression that depends
960 * on itself. "i" is the position of the expression in a sequence
961 * of "n" expressions. The final dimensions of "pa" correspond to
962 * these "n" expressions.
964 static int pw_aff_is_expr(__isl_keep isl_pw_aff
*pa
, int i
, int n
)
972 if (!isl_set_plain_is_universe(pa
->p
[0].set
))
976 if (isl_int_is_zero(aff
->v
->el
[aff
->v
->size
- n
+ i
]))
981 /* Does the tuple contain any dimensions that are defined
982 * in terms of earlier dimensions?
984 static int tuple_has_expr(__isl_keep isl_multi_pw_aff
*tuple
)
992 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
993 for (i
= 0; i
< n
; ++i
) {
994 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
995 has_expr
= pw_aff_is_expr(pa
, i
, n
);
997 if (has_expr
< 0 || has_expr
)
1004 /* Set the name of dimension "pos" in "space" to "name".
1005 * During printing, we add primes if the same name appears more than once
1006 * to distinguish the occurrences. Here, we remove those primes from "name"
1007 * before setting the name of the dimension.
1009 static __isl_give isl_space
*space_set_dim_name(__isl_take isl_space
*space
,
1010 int pos
, char *name
)
1017 prime
= strchr(name
, '\'');
1020 space
= isl_space_set_dim_name(space
, isl_dim_out
, pos
, name
);
1027 /* Accept a piecewise affine expression.
1029 * At the outer level, the piecewise affine expression may be of the form
1031 * aff1 : condition1; aff2 : conditions2; ...
1037 * each of the affine expressions may in turn include ternary operators.
1039 * There may be parentheses around some subexpression of "aff1"
1040 * around "aff1" itself, around "aff1 : condition1" and/or
1041 * around the entire piecewise affine expression.
1042 * We therefore remove the opening parenthesis (if any) from the stream
1043 * in case the closing parenthesis follows the colon, but if the closing
1044 * parenthesis is the first thing in the stream after the parsed affine
1045 * expression, we push the parsed expression onto the stream and parse
1046 * again in case the parentheses enclose some subexpression of "aff1".
1048 static __isl_give isl_pw_aff
*accept_piecewise_affine(__isl_keep isl_stream
*s
,
1049 __isl_take isl_space
*space
, struct vars
*v
, int rational
)
1052 isl_space
*res_space
;
1054 res_space
= isl_space_from_domain(isl_space_copy(space
));
1055 res_space
= isl_space_add_dims(res_space
, isl_dim_out
, 1);
1056 res
= isl_pw_aff_empty(res_space
);
1060 int line
= -1, col
= -1;
1062 set_current_line_col(s
, &line
, &col
);
1063 seen_paren
= isl_stream_eat_if_available(s
, '(');
1065 pa
= accept_piecewise_affine(s
, isl_space_copy(space
),
1068 pa
= accept_extended_affine(s
, isl_space_copy(space
),
1070 if (seen_paren
&& isl_stream_eat_if_available(s
, ')')) {
1072 if (push_aff(s
, line
, col
, pa
) < 0)
1074 pa
= accept_extended_affine(s
, isl_space_copy(space
),
1077 if (isl_stream_eat_if_available(s
, ':')) {
1078 isl_space
*dom_space
;
1081 dom_space
= isl_pw_aff_get_domain_space(pa
);
1082 dom
= isl_set_universe(dom_space
);
1083 dom
= read_formula(s
, v
, dom
, rational
);
1084 pa
= isl_pw_aff_intersect_domain(pa
, dom
);
1087 res
= isl_pw_aff_union_add(res
, pa
);
1089 if (seen_paren
&& isl_stream_eat(s
, ')'))
1091 } while (isl_stream_eat_if_available(s
, ';'));
1093 isl_space_free(space
);
1097 isl_space_free(space
);
1098 return isl_pw_aff_free(res
);
1101 /* Read an affine expression from "s" for use in read_tuple.
1103 * accept_extended_affine requires a wrapped space as input.
1104 * read_tuple on the other hand expects each isl_pw_aff
1105 * to have an anonymous space. We therefore adjust the space
1106 * of the isl_pw_aff before returning it.
1108 static __isl_give isl_pw_aff
*read_tuple_var_def(__isl_keep isl_stream
*s
,
1109 struct vars
*v
, int rational
)
1114 space
= isl_space_wrap(isl_space_alloc(s
->ctx
, 0, v
->n
, 0));
1116 def
= accept_piecewise_affine(s
, space
, v
, rational
);
1118 space
= isl_space_set_alloc(s
->ctx
, 0, v
->n
);
1119 def
= isl_pw_aff_reset_domain_space(def
, space
);
1124 /* Read a list of tuple elements by calling "read_el" on each of them and
1125 * return a space with the same number of set dimensions derived from
1126 * the parameter space "space" and possibly updated by "read_el".
1127 * The elements in the list are separated by either "," or "][".
1128 * If "comma" is set then only "," is allowed.
1130 static __isl_give isl_space
*read_tuple_list(__isl_keep isl_stream
*s
,
1131 struct vars
*v
, __isl_take isl_space
*space
, int rational
, int comma
,
1132 __isl_give isl_space
*(*read_el
)(__isl_keep isl_stream
*s
,
1133 struct vars
*v
, __isl_take isl_space
*space
, int rational
,
1140 space
= isl_space_set_from_params(space
);
1142 if (isl_stream_next_token_is(s
, ']'))
1146 struct isl_token
*tok
;
1148 space
= isl_space_add_dims(space
, isl_dim_set
, 1);
1150 space
= read_el(s
, v
, space
, rational
, user
);
1154 tok
= isl_stream_next_token(s
);
1155 if (!comma
&& tok
&& tok
->type
== ']' &&
1156 isl_stream_next_token_is(s
, '[')) {
1157 isl_token_free(tok
);
1158 tok
= isl_stream_next_token(s
);
1159 } else if (!tok
|| tok
->type
!= ',') {
1161 isl_stream_push_token(s
, tok
);
1165 isl_token_free(tok
);
1171 /* Read a tuple space from "s" derived from the parameter space "space".
1172 * Call "read_el" on each element in the tuples.
1174 static __isl_give isl_space
*read_tuple_space(__isl_keep isl_stream
*s
,
1175 struct vars
*v
, __isl_take isl_space
*space
, int rational
, int comma
,
1176 __isl_give isl_space
*(*read_el
)(__isl_keep isl_stream
*s
,
1177 struct vars
*v
, __isl_take isl_space
*space
, int rational
,
1181 struct isl_token
*tok
;
1183 isl_space
*res
= NULL
;
1185 tok
= isl_stream_next_token(s
);
1188 if (tok
->type
== ISL_TOKEN_IDENT
|| tok
->is_keyword
) {
1189 name
= strdup(tok
->u
.s
);
1190 isl_token_free(tok
);
1194 isl_stream_push_token(s
, tok
);
1195 if (isl_stream_eat(s
, '['))
1197 if (next_is_tuple(s
)) {
1199 res
= read_tuple_space(s
, v
, isl_space_copy(space
),
1200 rational
, comma
, read_el
, user
);
1201 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
1203 out
= read_tuple_space(s
, v
, isl_space_copy(space
),
1204 rational
, comma
, read_el
, user
);
1205 res
= isl_space_product(res
, out
);
1207 res
= read_tuple_list(s
, v
, isl_space_copy(space
),
1208 rational
, comma
, read_el
, user
);
1209 if (isl_stream_eat(s
, ']'))
1213 res
= isl_space_set_tuple_name(res
, isl_dim_set
, name
);
1217 isl_space_free(space
);
1221 isl_space_free(res
);
1222 isl_space_free(space
);
1226 /* Construct an isl_pw_aff defined on a space with v->n variables
1227 * that is equal to the last of those variables.
1229 static __isl_give isl_pw_aff
*identity_tuple_el(struct vars
*v
)
1234 space
= isl_space_set_alloc(v
->ctx
, 0, v
->n
);
1235 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
1236 aff
= isl_aff_add_coefficient_si(aff
, isl_dim_in
, v
->n
- 1, 1);
1237 return isl_pw_aff_from_aff(aff
);
1240 /* This function is called for each element in a tuple inside read_tuple.
1241 * Add a new variable to "v" and construct a corresponding isl_pw_aff defined
1242 * over a space containing all variables in "v" defined so far.
1243 * The isl_pw_aff expresses the new variable in terms of earlier variables
1244 * if a definition is provided. Otherwise, it is represented as being
1246 * Add the isl_pw_aff to *list.
1247 * If the new variable was named, then adjust "space" accordingly and
1248 * return the updated space.
1250 static __isl_give isl_space
*read_tuple_pw_aff_el(__isl_keep isl_stream
*s
,
1251 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
1253 isl_pw_aff_list
**list
= (isl_pw_aff_list
**) user
;
1255 struct isl_token
*tok
;
1258 tok
= next_token(s
);
1260 isl_stream_error(s
, NULL
, "unexpected EOF");
1261 return isl_space_free(space
);
1264 if (tok
->type
== ISL_TOKEN_IDENT
) {
1266 int p
= vars_pos(v
, tok
->u
.s
, -1);
1272 if (tok
->type
== '*') {
1273 if (vars_add_anon(v
) < 0)
1275 isl_token_free(tok
);
1276 pa
= identity_tuple_el(v
);
1277 } else if (new_name
) {
1278 int pos
= isl_space_dim(space
, isl_dim_out
) - 1;
1279 space
= space_set_dim_name(space
, pos
, v
->v
->name
);
1280 isl_token_free(tok
);
1281 if (isl_stream_eat_if_available(s
, '='))
1282 pa
= read_tuple_var_def(s
, v
, rational
);
1284 pa
= identity_tuple_el(v
);
1286 isl_stream_push_token(s
, tok
);
1288 if (vars_add_anon(v
) < 0)
1290 pa
= read_tuple_var_def(s
, v
, rational
);
1293 *list
= isl_pw_aff_list_add(*list
, pa
);
1295 return isl_space_free(space
);
1299 isl_token_free(tok
);
1300 return isl_space_free(space
);
1303 /* Read a tuple and represent it as an isl_multi_pw_aff.
1304 * The range space of the isl_multi_pw_aff is the space of the tuple.
1305 * The domain space is an anonymous space
1306 * with a dimension for each variable in the set of variables in "v",
1307 * including the variables in the range.
1308 * If a given dimension is not defined in terms of earlier dimensions in
1309 * the input, then the corresponding isl_pw_aff is set equal to one time
1310 * the variable corresponding to the dimension being defined.
1312 * The elements in the tuple are collected in a list by read_tuple_pw_aff_el.
1313 * Each element in this list is defined over a space representing
1314 * the variables defined so far. We need to adjust the earlier
1315 * elements to have as many variables in the domain as the final
1316 * element in the list.
1318 static __isl_give isl_multi_pw_aff
*read_tuple(__isl_keep isl_stream
*s
,
1319 struct vars
*v
, int rational
, int comma
)
1323 isl_pw_aff_list
*list
;
1325 space
= isl_space_params_alloc(v
->ctx
, 0);
1326 list
= isl_pw_aff_list_alloc(s
->ctx
, 0);
1327 space
= read_tuple_space(s
, v
, space
, rational
, comma
,
1328 &read_tuple_pw_aff_el
, &list
);
1329 n
= isl_space_dim(space
, isl_dim_set
);
1330 for (i
= 0; i
+ 1 < n
; ++i
) {
1333 pa
= isl_pw_aff_list_get_pw_aff(list
, i
);
1334 pa
= isl_pw_aff_add_dims(pa
, isl_dim_in
, n
- (i
+ 1));
1335 list
= isl_pw_aff_list_set_pw_aff(list
, i
, pa
);
1338 space
= isl_space_from_range(space
);
1339 space
= isl_space_add_dims(space
, isl_dim_in
, v
->n
);
1340 return isl_multi_pw_aff_from_pw_aff_list(space
, list
);
1343 /* Add the tuple represented by the isl_multi_pw_aff "tuple" to "map".
1344 * We first create the appropriate space in "map" based on the range
1345 * space of this isl_multi_pw_aff. Then, we add equalities based
1346 * on the affine expressions. These live in an anonymous space,
1347 * however, so we first need to reset the space to that of "map".
1349 static __isl_give isl_map
*map_from_tuple(__isl_take isl_multi_pw_aff
*tuple
,
1350 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
1355 isl_space
*space
= NULL
;
1359 ctx
= isl_multi_pw_aff_get_ctx(tuple
);
1360 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
1361 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
1365 if (type
== isl_dim_param
) {
1366 if (isl_space_has_tuple_name(space
, isl_dim_set
) ||
1367 isl_space_is_wrapping(space
)) {
1368 isl_die(ctx
, isl_error_invalid
,
1369 "parameter tuples cannot be named or nested",
1372 map
= isl_map_add_dims(map
, type
, n
);
1373 for (i
= 0; i
< n
; ++i
) {
1375 if (!isl_space_has_dim_name(space
, isl_dim_set
, i
))
1376 isl_die(ctx
, isl_error_invalid
,
1377 "parameters must be named",
1379 id
= isl_space_get_dim_id(space
, isl_dim_set
, i
);
1380 map
= isl_map_set_dim_id(map
, isl_dim_param
, i
, id
);
1382 } else if (type
== isl_dim_in
) {
1385 set
= isl_set_universe(isl_space_copy(space
));
1387 set
= isl_set_set_rational(set
);
1388 set
= isl_set_intersect_params(set
, isl_map_params(map
));
1389 map
= isl_map_from_domain(set
);
1393 set
= isl_set_universe(isl_space_copy(space
));
1395 set
= isl_set_set_rational(set
);
1396 map
= isl_map_from_domain_and_range(isl_map_domain(map
), set
);
1399 for (i
= 0; i
< n
; ++i
) {
1406 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
1407 space
= isl_pw_aff_get_domain_space(pa
);
1408 aff
= isl_aff_zero_on_domain(isl_local_space_from_space(space
));
1409 aff
= isl_aff_add_coefficient_si(aff
,
1410 isl_dim_in
, v
->n
- n
+ i
, -1);
1411 pa
= isl_pw_aff_add(pa
, isl_pw_aff_from_aff(aff
));
1413 pa
= isl_pw_aff_set_rational(pa
);
1414 set
= isl_pw_aff_zero_set(pa
);
1415 map_i
= isl_map_from_range(set
);
1416 map_i
= isl_map_reset_space(map_i
, isl_map_get_space(map
));
1417 map
= isl_map_intersect(map
, map_i
);
1420 isl_space_free(space
);
1421 isl_multi_pw_aff_free(tuple
);
1424 isl_space_free(space
);
1425 isl_multi_pw_aff_free(tuple
);
1430 /* Read a tuple from "s" and add it to "map".
1431 * The tuple is initially represented as an isl_multi_pw_aff and
1432 * then added to "map".
1434 static __isl_give isl_map
*read_map_tuple(__isl_keep isl_stream
*s
,
1435 __isl_take isl_map
*map
, enum isl_dim_type type
, struct vars
*v
,
1436 int rational
, int comma
)
1438 isl_multi_pw_aff
*tuple
;
1440 tuple
= read_tuple(s
, v
, rational
, comma
);
1442 return isl_map_free(map
);
1444 return map_from_tuple(tuple
, map
, type
, v
, rational
);
1447 /* Given two equal-length lists of piecewise affine expression with the space
1448 * of "set" as domain, construct a set in the same space that expresses
1449 * that "left" and "right" satisfy the comparison "type".
1451 * A space is constructed of the same dimension as the number of elements
1452 * in the two lists. The comparison is then expressed in a map from
1453 * this space to itself and wrapped into a set. Finally the two lists
1454 * of piecewise affine expressions are plugged into this set.
1456 * Let S be the space of "set" and T the constructed space.
1457 * The lists are first changed into two isl_multi_pw_affs in S -> T and
1458 * then combined into an isl_multi_pw_aff in S -> [T -> T],
1459 * while the comparison is first expressed in T -> T, then [T -> T]
1462 static __isl_give isl_set
*list_cmp(__isl_keep isl_set
*set
, int type
,
1463 __isl_take isl_pw_aff_list
*left
, __isl_take isl_pw_aff_list
*right
)
1467 isl_multi_pw_aff
*mpa1
, *mpa2
;
1469 if (!set
|| !left
|| !right
)
1472 space
= isl_set_get_space(set
);
1473 n
= isl_pw_aff_list_n_pw_aff(left
);
1474 space
= isl_space_from_domain(space
);
1475 space
= isl_space_add_dims(space
, isl_dim_out
, n
);
1476 mpa1
= isl_multi_pw_aff_from_pw_aff_list(isl_space_copy(space
), left
);
1477 mpa2
= isl_multi_pw_aff_from_pw_aff_list(isl_space_copy(space
), right
);
1478 mpa1
= isl_multi_pw_aff_range_product(mpa1
, mpa2
);
1480 space
= isl_space_range(space
);
1482 case ISL_TOKEN_LEX_LT
:
1483 set
= isl_map_wrap(isl_map_lex_lt(space
));
1485 case ISL_TOKEN_LEX_GT
:
1486 set
= isl_map_wrap(isl_map_lex_gt(space
));
1488 case ISL_TOKEN_LEX_LE
:
1489 set
= isl_map_wrap(isl_map_lex_le(space
));
1491 case ISL_TOKEN_LEX_GE
:
1492 set
= isl_map_wrap(isl_map_lex_ge(space
));
1495 isl_multi_pw_aff_free(mpa1
);
1496 isl_space_free(space
);
1497 isl_die(isl_set_get_ctx(set
), isl_error_internal
,
1498 "unhandled list comparison type", return NULL
);
1500 set
= isl_set_preimage_multi_pw_aff(set
, mpa1
);
1503 isl_pw_aff_list_free(left
);
1504 isl_pw_aff_list_free(right
);
1508 /* Construct constraints of the form
1512 * where a is an element in "left", op is an operator of type "type" and
1513 * b is an element in "right", add the constraints to "set" and return
1515 * "rational" is set if the constraints should be treated as
1516 * a rational constraints.
1518 * If "type" is the type of a comparison operator between lists
1519 * of affine expressions, then a single (compound) constraint
1520 * is constructed by list_cmp instead.
1522 static __isl_give isl_set
*construct_constraints(
1523 __isl_take isl_set
*set
, int type
,
1524 __isl_keep isl_pw_aff_list
*left
, __isl_keep isl_pw_aff_list
*right
,
1529 left
= isl_pw_aff_list_copy(left
);
1530 right
= isl_pw_aff_list_copy(right
);
1532 left
= isl_pw_aff_list_set_rational(left
);
1533 right
= isl_pw_aff_list_set_rational(right
);
1535 if (is_list_comparator_type(type
))
1536 cond
= list_cmp(set
, type
, left
, right
);
1537 else if (type
== ISL_TOKEN_LE
)
1538 cond
= isl_pw_aff_list_le_set(left
, right
);
1539 else if (type
== ISL_TOKEN_GE
)
1540 cond
= isl_pw_aff_list_ge_set(left
, right
);
1541 else if (type
== ISL_TOKEN_LT
)
1542 cond
= isl_pw_aff_list_lt_set(left
, right
);
1543 else if (type
== ISL_TOKEN_GT
)
1544 cond
= isl_pw_aff_list_gt_set(left
, right
);
1545 else if (type
== ISL_TOKEN_NE
)
1546 cond
= isl_pw_aff_list_ne_set(left
, right
);
1548 cond
= isl_pw_aff_list_eq_set(left
, right
);
1550 return isl_set_intersect(set
, cond
);
1553 /* Read a constraint from "s", add it to "map" and return the result.
1554 * "v" contains a description of the identifiers parsed so far.
1555 * "rational" is set if the constraint should be treated as
1556 * a rational constraint.
1557 * The constraint read from "s" may be applied to multiple pairs
1558 * of affine expressions and may be chained.
1559 * In particular, a list of affine expressions is read, followed
1560 * by a comparison operator and another list of affine expressions.
1561 * The comparison operator is then applied to each pair of elements
1562 * in the two lists and the results are added to "map".
1563 * However, if the operator expects two lists of affine expressions,
1564 * then it is applied directly to those lists and the two lists
1565 * are required to have the same length.
1566 * If the next token is another comparison operator, then another
1567 * list of affine expressions is read and the process repeats.
1569 * The processing is performed on a wrapped copy of "map" because
1570 * an affine expression cannot have a binary relation as domain.
1572 static __isl_give isl_map
*add_constraint(__isl_keep isl_stream
*s
,
1573 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1575 struct isl_token
*tok
;
1577 isl_pw_aff_list
*list1
= NULL
, *list2
= NULL
;
1581 set
= isl_map_wrap(map
);
1582 list1
= accept_affine_list(s
, isl_set_get_space(set
), v
);
1585 tok
= isl_stream_next_token(s
);
1586 if (!is_comparator(tok
)) {
1587 isl_stream_error(s
, tok
, "missing operator");
1589 isl_stream_push_token(s
, tok
);
1593 isl_token_free(tok
);
1595 list2
= accept_affine_list(s
, isl_set_get_space(set
), v
);
1598 n1
= isl_pw_aff_list_n_pw_aff(list1
);
1599 n2
= isl_pw_aff_list_n_pw_aff(list2
);
1600 if (is_list_comparator_type(type
) && n1
!= n2
) {
1601 isl_stream_error(s
, NULL
,
1602 "list arguments not of same size");
1606 set
= construct_constraints(set
, type
, list1
, list2
, rational
);
1607 isl_pw_aff_list_free(list1
);
1610 tok
= isl_stream_next_token(s
);
1611 if (!is_comparator(tok
)) {
1613 isl_stream_push_token(s
, tok
);
1617 isl_token_free(tok
);
1619 isl_pw_aff_list_free(list1
);
1621 return isl_set_unwrap(set
);
1623 isl_pw_aff_list_free(list1
);
1624 isl_pw_aff_list_free(list2
);
1629 static __isl_give isl_map
*read_exists(__isl_keep isl_stream
*s
,
1630 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1633 int seen_paren
= isl_stream_eat_if_available(s
, '(');
1635 map
= isl_map_from_domain(isl_map_wrap(map
));
1636 map
= read_defined_var_list(s
, v
, map
, rational
);
1638 if (isl_stream_eat(s
, ':'))
1641 map
= read_formula(s
, v
, map
, rational
);
1642 map
= isl_set_unwrap(isl_map_domain(map
));
1644 vars_drop(v
, v
->n
- n
);
1645 if (seen_paren
&& isl_stream_eat(s
, ')'))
1654 /* Parse an expression between parentheses and push the result
1655 * back on the stream.
1657 * The parsed expression may be either an affine expression
1658 * or a condition. The first type is pushed onto the stream
1659 * as an isl_pw_aff, while the second is pushed as an isl_map.
1661 * If the initial token indicates the start of a condition,
1662 * we parse it as such.
1663 * Otherwise, we first parse an affine expression and push
1664 * that onto the stream. If the affine expression covers the
1665 * entire expression between parentheses, we return.
1666 * Otherwise, we assume that the affine expression is the
1667 * start of a condition and continue parsing.
1669 static int resolve_paren_expr(__isl_keep isl_stream
*s
,
1670 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1672 struct isl_token
*tok
, *tok2
;
1676 tok
= isl_stream_next_token(s
);
1677 if (!tok
|| tok
->type
!= '(')
1680 if (isl_stream_next_token_is(s
, '('))
1681 if (resolve_paren_expr(s
, v
, isl_map_copy(map
), rational
))
1684 if (isl_stream_next_token_is(s
, ISL_TOKEN_EXISTS
) ||
1685 isl_stream_next_token_is(s
, ISL_TOKEN_NOT
) ||
1686 isl_stream_next_token_is(s
, ISL_TOKEN_TRUE
) ||
1687 isl_stream_next_token_is(s
, ISL_TOKEN_FALSE
) ||
1688 isl_stream_next_token_is(s
, ISL_TOKEN_MAP
)) {
1689 map
= read_formula(s
, v
, map
, rational
);
1690 if (isl_stream_eat(s
, ')'))
1692 tok
->type
= ISL_TOKEN_MAP
;
1694 isl_stream_push_token(s
, tok
);
1698 tok2
= isl_stream_next_token(s
);
1703 isl_stream_push_token(s
, tok2
);
1705 pwaff
= accept_affine(s
, isl_space_wrap(isl_map_get_space(map
)), v
);
1709 tok2
= isl_token_new(s
->ctx
, line
, col
, 0);
1712 tok2
->type
= ISL_TOKEN_AFF
;
1713 tok2
->u
.pwaff
= pwaff
;
1715 if (isl_stream_eat_if_available(s
, ')')) {
1716 isl_stream_push_token(s
, tok2
);
1717 isl_token_free(tok
);
1722 isl_stream_push_token(s
, tok2
);
1724 map
= read_formula(s
, v
, map
, rational
);
1725 if (isl_stream_eat(s
, ')'))
1728 tok
->type
= ISL_TOKEN_MAP
;
1730 isl_stream_push_token(s
, tok
);
1734 isl_pw_aff_free(pwaff
);
1736 isl_token_free(tok
);
1741 static __isl_give isl_map
*read_conjunct(__isl_keep isl_stream
*s
,
1742 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1744 if (isl_stream_next_token_is(s
, '('))
1745 if (resolve_paren_expr(s
, v
, isl_map_copy(map
), rational
))
1748 if (isl_stream_next_token_is(s
, ISL_TOKEN_MAP
)) {
1749 struct isl_token
*tok
;
1750 tok
= isl_stream_next_token(s
);
1754 map
= isl_map_copy(tok
->u
.map
);
1755 isl_token_free(tok
);
1759 if (isl_stream_eat_if_available(s
, ISL_TOKEN_EXISTS
))
1760 return read_exists(s
, v
, map
, rational
);
1762 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TRUE
))
1765 if (isl_stream_eat_if_available(s
, ISL_TOKEN_FALSE
)) {
1766 isl_space
*dim
= isl_map_get_space(map
);
1768 return isl_map_empty(dim
);
1771 return add_constraint(s
, v
, map
, rational
);
1777 static __isl_give isl_map
*read_conjuncts(__isl_keep isl_stream
*s
,
1778 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1783 negate
= isl_stream_eat_if_available(s
, ISL_TOKEN_NOT
);
1784 res
= read_conjunct(s
, v
, isl_map_copy(map
), rational
);
1786 res
= isl_map_subtract(isl_map_copy(map
), res
);
1788 while (res
&& isl_stream_eat_if_available(s
, ISL_TOKEN_AND
)) {
1791 negate
= isl_stream_eat_if_available(s
, ISL_TOKEN_NOT
);
1792 res_i
= read_conjunct(s
, v
, isl_map_copy(map
), rational
);
1794 res
= isl_map_subtract(res
, res_i
);
1796 res
= isl_map_intersect(res
, res_i
);
1803 static struct isl_map
*read_disjuncts(__isl_keep isl_stream
*s
,
1804 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1808 if (isl_stream_next_token_is(s
, '}'))
1811 res
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1812 while (isl_stream_eat_if_available(s
, ISL_TOKEN_OR
)) {
1815 res_i
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1816 res
= isl_map_union(res
, res_i
);
1823 /* Read a first order formula from "s", add the corresponding
1824 * constraints to "map" and return the result.
1826 * In particular, read a formula of the form
1834 * where a and b are disjunctions.
1836 * In the first case, map is replaced by
1838 * map \cap { [..] : a }
1840 * In the second case, it is replaced by
1842 * (map \setminus { [..] : a}) \cup (map \cap { [..] : b })
1844 static __isl_give isl_map
*read_formula(__isl_keep isl_stream
*s
,
1845 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1849 res
= read_disjuncts(s
, v
, isl_map_copy(map
), rational
);
1851 if (isl_stream_eat_if_available(s
, ISL_TOKEN_IMPLIES
)) {
1854 res
= isl_map_subtract(isl_map_copy(map
), res
);
1855 res2
= read_disjuncts(s
, v
, map
, rational
);
1856 res
= isl_map_union(res
, res2
);
1863 static int polylib_pos_to_isl_pos(__isl_keep isl_basic_map
*bmap
, int pos
)
1865 if (pos
< isl_basic_map_dim(bmap
, isl_dim_out
))
1866 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1867 isl_basic_map_dim(bmap
, isl_dim_in
) + pos
;
1868 pos
-= isl_basic_map_dim(bmap
, isl_dim_out
);
1870 if (pos
< isl_basic_map_dim(bmap
, isl_dim_in
))
1871 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) + pos
;
1872 pos
-= isl_basic_map_dim(bmap
, isl_dim_in
);
1874 if (pos
< isl_basic_map_dim(bmap
, isl_dim_div
))
1875 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1876 isl_basic_map_dim(bmap
, isl_dim_in
) +
1877 isl_basic_map_dim(bmap
, isl_dim_out
) + pos
;
1878 pos
-= isl_basic_map_dim(bmap
, isl_dim_div
);
1880 if (pos
< isl_basic_map_dim(bmap
, isl_dim_param
))
1886 static __isl_give isl_basic_map
*basic_map_read_polylib_constraint(
1887 __isl_keep isl_stream
*s
, __isl_take isl_basic_map
*bmap
)
1890 struct isl_token
*tok
;
1898 tok
= isl_stream_next_token(s
);
1899 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1900 isl_stream_error(s
, tok
, "expecting coefficient");
1902 isl_stream_push_token(s
, tok
);
1905 if (!tok
->on_new_line
) {
1906 isl_stream_error(s
, tok
, "coefficient should appear on new line");
1907 isl_stream_push_token(s
, tok
);
1911 type
= isl_int_get_si(tok
->u
.v
);
1912 isl_token_free(tok
);
1914 isl_assert(s
->ctx
, type
== 0 || type
== 1, goto error
);
1916 k
= isl_basic_map_alloc_equality(bmap
);
1919 k
= isl_basic_map_alloc_inequality(bmap
);
1925 for (j
= 0; j
< 1 + isl_basic_map_total_dim(bmap
); ++j
) {
1927 tok
= isl_stream_next_token(s
);
1928 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1929 isl_stream_error(s
, tok
, "expecting coefficient");
1931 isl_stream_push_token(s
, tok
);
1934 if (tok
->on_new_line
) {
1935 isl_stream_error(s
, tok
,
1936 "coefficient should not appear on new line");
1937 isl_stream_push_token(s
, tok
);
1940 pos
= polylib_pos_to_isl_pos(bmap
, j
);
1941 isl_int_set(c
[pos
], tok
->u
.v
);
1942 isl_token_free(tok
);
1947 isl_basic_map_free(bmap
);
1951 static __isl_give isl_basic_map
*basic_map_read_polylib(
1952 __isl_keep isl_stream
*s
)
1955 struct isl_token
*tok
;
1956 struct isl_token
*tok2
;
1959 unsigned in
= 0, out
, local
= 0;
1960 struct isl_basic_map
*bmap
= NULL
;
1963 tok
= isl_stream_next_token(s
);
1965 isl_stream_error(s
, NULL
, "unexpected EOF");
1968 tok2
= isl_stream_next_token(s
);
1970 isl_token_free(tok
);
1971 isl_stream_error(s
, NULL
, "unexpected EOF");
1974 if (tok
->type
!= ISL_TOKEN_VALUE
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
1975 isl_stream_push_token(s
, tok2
);
1976 isl_stream_push_token(s
, tok
);
1977 isl_stream_error(s
, NULL
,
1978 "expecting constraint matrix dimensions");
1981 n_row
= isl_int_get_si(tok
->u
.v
);
1982 n_col
= isl_int_get_si(tok2
->u
.v
);
1983 on_new_line
= tok2
->on_new_line
;
1984 isl_token_free(tok2
);
1985 isl_token_free(tok
);
1986 isl_assert(s
->ctx
, !on_new_line
, return NULL
);
1987 isl_assert(s
->ctx
, n_row
>= 0, return NULL
);
1988 isl_assert(s
->ctx
, n_col
>= 2 + nparam
, return NULL
);
1989 tok
= isl_stream_next_token_on_same_line(s
);
1991 if (tok
->type
!= ISL_TOKEN_VALUE
) {
1992 isl_stream_error(s
, tok
,
1993 "expecting number of output dimensions");
1994 isl_stream_push_token(s
, tok
);
1997 out
= isl_int_get_si(tok
->u
.v
);
1998 isl_token_free(tok
);
2000 tok
= isl_stream_next_token_on_same_line(s
);
2001 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2002 isl_stream_error(s
, tok
,
2003 "expecting number of input dimensions");
2005 isl_stream_push_token(s
, tok
);
2008 in
= isl_int_get_si(tok
->u
.v
);
2009 isl_token_free(tok
);
2011 tok
= isl_stream_next_token_on_same_line(s
);
2012 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2013 isl_stream_error(s
, tok
,
2014 "expecting number of existentials");
2016 isl_stream_push_token(s
, tok
);
2019 local
= isl_int_get_si(tok
->u
.v
);
2020 isl_token_free(tok
);
2022 tok
= isl_stream_next_token_on_same_line(s
);
2023 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2024 isl_stream_error(s
, tok
,
2025 "expecting number of parameters");
2027 isl_stream_push_token(s
, tok
);
2030 nparam
= isl_int_get_si(tok
->u
.v
);
2031 isl_token_free(tok
);
2032 if (n_col
!= 1 + out
+ in
+ local
+ nparam
+ 1) {
2033 isl_stream_error(s
, NULL
,
2034 "dimensions don't match");
2038 out
= n_col
- 2 - nparam
;
2039 bmap
= isl_basic_map_alloc(s
->ctx
, nparam
, in
, out
, local
, n_row
, n_row
);
2043 for (i
= 0; i
< local
; ++i
) {
2044 int k
= isl_basic_map_alloc_div(bmap
);
2047 isl_seq_clr(bmap
->div
[k
], 1 + 1 + nparam
+ in
+ out
+ local
);
2050 for (i
= 0; i
< n_row
; ++i
)
2051 bmap
= basic_map_read_polylib_constraint(s
, bmap
);
2053 tok
= isl_stream_next_token_on_same_line(s
);
2055 isl_stream_error(s
, tok
, "unexpected extra token on line");
2056 isl_stream_push_token(s
, tok
);
2060 bmap
= isl_basic_map_simplify(bmap
);
2061 bmap
= isl_basic_map_finalize(bmap
);
2064 isl_basic_map_free(bmap
);
2068 static struct isl_map
*map_read_polylib(__isl_keep isl_stream
*s
)
2070 struct isl_token
*tok
;
2071 struct isl_token
*tok2
;
2073 struct isl_map
*map
;
2075 tok
= isl_stream_next_token(s
);
2077 isl_stream_error(s
, NULL
, "unexpected EOF");
2080 tok2
= isl_stream_next_token_on_same_line(s
);
2081 if (tok2
&& tok2
->type
== ISL_TOKEN_VALUE
) {
2082 isl_stream_push_token(s
, tok2
);
2083 isl_stream_push_token(s
, tok
);
2084 return isl_map_from_basic_map(basic_map_read_polylib(s
));
2087 isl_stream_error(s
, tok2
, "unexpected token");
2088 isl_stream_push_token(s
, tok2
);
2089 isl_stream_push_token(s
, tok
);
2092 n
= isl_int_get_si(tok
->u
.v
);
2093 isl_token_free(tok
);
2095 isl_assert(s
->ctx
, n
>= 1, return NULL
);
2097 map
= isl_map_from_basic_map(basic_map_read_polylib(s
));
2099 for (i
= 1; map
&& i
< n
; ++i
)
2100 map
= isl_map_union(map
,
2101 isl_map_from_basic_map(basic_map_read_polylib(s
)));
2106 static int optional_power(__isl_keep isl_stream
*s
)
2109 struct isl_token
*tok
;
2111 tok
= isl_stream_next_token(s
);
2114 if (tok
->type
!= '^') {
2115 isl_stream_push_token(s
, tok
);
2118 isl_token_free(tok
);
2119 tok
= isl_stream_next_token(s
);
2120 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2121 isl_stream_error(s
, tok
, "expecting exponent");
2123 isl_stream_push_token(s
, tok
);
2126 pow
= isl_int_get_si(tok
->u
.v
);
2127 isl_token_free(tok
);
2131 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2132 __isl_keep isl_map
*map
, struct vars
*v
);
2134 static __isl_give isl_pw_qpolynomial
*read_factor(__isl_keep isl_stream
*s
,
2135 __isl_keep isl_map
*map
, struct vars
*v
)
2137 isl_pw_qpolynomial
*pwqp
;
2138 struct isl_token
*tok
;
2140 tok
= next_token(s
);
2142 isl_stream_error(s
, NULL
, "unexpected EOF");
2145 if (tok
->type
== '(') {
2148 isl_token_free(tok
);
2149 pwqp
= read_term(s
, map
, v
);
2152 if (isl_stream_eat(s
, ')'))
2154 pow
= optional_power(s
);
2155 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2156 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
2157 struct isl_token
*tok2
;
2158 isl_qpolynomial
*qp
;
2160 tok2
= isl_stream_next_token(s
);
2161 if (tok2
&& tok2
->type
== '/') {
2162 isl_token_free(tok2
);
2163 tok2
= next_token(s
);
2164 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
2165 isl_stream_error(s
, tok2
, "expected denominator");
2166 isl_token_free(tok
);
2167 isl_token_free(tok2
);
2170 qp
= isl_qpolynomial_rat_cst_on_domain(isl_map_get_space(map
),
2171 tok
->u
.v
, tok2
->u
.v
);
2172 isl_token_free(tok2
);
2174 isl_stream_push_token(s
, tok2
);
2175 qp
= isl_qpolynomial_cst_on_domain(isl_map_get_space(map
),
2178 isl_token_free(tok
);
2179 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2180 } else if (tok
->type
== ISL_TOKEN_INFTY
) {
2181 isl_qpolynomial
*qp
;
2182 isl_token_free(tok
);
2183 qp
= isl_qpolynomial_infty_on_domain(isl_map_get_space(map
));
2184 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2185 } else if (tok
->type
== ISL_TOKEN_NAN
) {
2186 isl_qpolynomial
*qp
;
2187 isl_token_free(tok
);
2188 qp
= isl_qpolynomial_nan_on_domain(isl_map_get_space(map
));
2189 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2190 } else if (tok
->type
== ISL_TOKEN_IDENT
) {
2192 int pos
= vars_pos(v
, tok
->u
.s
, -1);
2194 isl_qpolynomial
*qp
;
2196 isl_token_free(tok
);
2200 vars_drop(v
, v
->n
- n
);
2201 isl_stream_error(s
, tok
, "unknown identifier");
2202 isl_token_free(tok
);
2205 isl_token_free(tok
);
2206 pow
= optional_power(s
);
2207 qp
= isl_qpolynomial_var_pow_on_domain(isl_map_get_space(map
), pos
, pow
);
2208 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2209 } else if (is_start_of_div(tok
)) {
2213 isl_stream_push_token(s
, tok
);
2214 pwaff
= accept_div(s
, isl_map_get_space(map
), v
);
2215 pow
= optional_power(s
);
2216 pwqp
= isl_pw_qpolynomial_from_pw_aff(pwaff
);
2217 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2218 } else if (tok
->type
== '-') {
2219 isl_token_free(tok
);
2220 pwqp
= read_factor(s
, map
, v
);
2221 pwqp
= isl_pw_qpolynomial_neg(pwqp
);
2223 isl_stream_error(s
, tok
, "unexpected isl_token");
2224 isl_stream_push_token(s
, tok
);
2228 if (isl_stream_eat_if_available(s
, '*') ||
2229 isl_stream_next_token_is(s
, ISL_TOKEN_IDENT
)) {
2230 isl_pw_qpolynomial
*pwqp2
;
2232 pwqp2
= read_factor(s
, map
, v
);
2233 pwqp
= isl_pw_qpolynomial_mul(pwqp
, pwqp2
);
2238 isl_pw_qpolynomial_free(pwqp
);
2242 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2243 __isl_keep isl_map
*map
, struct vars
*v
)
2245 struct isl_token
*tok
;
2246 isl_pw_qpolynomial
*pwqp
;
2248 pwqp
= read_factor(s
, map
, v
);
2251 tok
= next_token(s
);
2255 if (tok
->type
== '+') {
2256 isl_pw_qpolynomial
*pwqp2
;
2258 isl_token_free(tok
);
2259 pwqp2
= read_factor(s
, map
, v
);
2260 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2261 } else if (tok
->type
== '-') {
2262 isl_pw_qpolynomial
*pwqp2
;
2264 isl_token_free(tok
);
2265 pwqp2
= read_factor(s
, map
, v
);
2266 pwqp
= isl_pw_qpolynomial_sub(pwqp
, pwqp2
);
2267 } else if (tok
->type
== ISL_TOKEN_VALUE
&&
2268 isl_int_is_neg(tok
->u
.v
)) {
2269 isl_pw_qpolynomial
*pwqp2
;
2271 isl_stream_push_token(s
, tok
);
2272 pwqp2
= read_factor(s
, map
, v
);
2273 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2275 isl_stream_push_token(s
, tok
);
2283 static __isl_give isl_map
*read_optional_formula(__isl_keep isl_stream
*s
,
2284 __isl_take isl_map
*map
, struct vars
*v
, int rational
)
2286 struct isl_token
*tok
;
2288 tok
= isl_stream_next_token(s
);
2290 isl_stream_error(s
, NULL
, "unexpected EOF");
2293 if (tok
->type
== ':' ||
2294 (tok
->type
== ISL_TOKEN_OR
&& !strcmp(tok
->u
.s
, "|"))) {
2295 isl_token_free(tok
);
2296 map
= read_formula(s
, v
, map
, rational
);
2298 isl_stream_push_token(s
, tok
);
2306 static struct isl_obj
obj_read_poly(__isl_keep isl_stream
*s
,
2307 __isl_take isl_map
*map
, struct vars
*v
, int n
)
2309 struct isl_obj obj
= { isl_obj_pw_qpolynomial
, NULL
};
2310 isl_pw_qpolynomial
*pwqp
;
2311 struct isl_set
*set
;
2313 pwqp
= read_term(s
, map
, v
);
2314 map
= read_optional_formula(s
, map
, v
, 0);
2315 set
= isl_map_range(map
);
2317 pwqp
= isl_pw_qpolynomial_intersect_domain(pwqp
, set
);
2319 vars_drop(v
, v
->n
- n
);
2325 static struct isl_obj
obj_read_poly_or_fold(__isl_keep isl_stream
*s
,
2326 __isl_take isl_set
*set
, struct vars
*v
, int n
)
2328 struct isl_obj obj
= { isl_obj_pw_qpolynomial_fold
, NULL
};
2329 isl_pw_qpolynomial
*pwqp
;
2330 isl_pw_qpolynomial_fold
*pwf
= NULL
;
2332 if (!isl_stream_eat_if_available(s
, ISL_TOKEN_MAX
))
2333 return obj_read_poly(s
, set
, v
, n
);
2335 if (isl_stream_eat(s
, '('))
2338 pwqp
= read_term(s
, set
, v
);
2339 pwf
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
, pwqp
);
2341 while (isl_stream_eat_if_available(s
, ',')) {
2342 isl_pw_qpolynomial_fold
*pwf_i
;
2343 pwqp
= read_term(s
, set
, v
);
2344 pwf_i
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
,
2346 pwf
= isl_pw_qpolynomial_fold_fold(pwf
, pwf_i
);
2349 if (isl_stream_eat(s
, ')'))
2352 set
= read_optional_formula(s
, set
, v
, 0);
2353 pwf
= isl_pw_qpolynomial_fold_intersect_domain(pwf
, set
);
2355 vars_drop(v
, v
->n
- n
);
2361 isl_pw_qpolynomial_fold_free(pwf
);
2362 obj
.type
= isl_obj_none
;
2366 static int is_rational(__isl_keep isl_stream
*s
)
2368 struct isl_token
*tok
;
2370 tok
= isl_stream_next_token(s
);
2373 if (tok
->type
== ISL_TOKEN_RAT
&& isl_stream_next_token_is(s
, ':')) {
2374 isl_token_free(tok
);
2375 isl_stream_eat(s
, ':');
2379 isl_stream_push_token(s
, tok
);
2384 static struct isl_obj
obj_read_body(__isl_keep isl_stream
*s
,
2385 __isl_take isl_map
*map
, struct vars
*v
)
2387 struct isl_token
*tok
;
2388 struct isl_obj obj
= { isl_obj_set
, NULL
};
2392 rational
= is_rational(s
);
2394 map
= isl_map_set_rational(map
);
2396 if (isl_stream_next_token_is(s
, ':')) {
2397 obj
.type
= isl_obj_set
;
2398 obj
.v
= read_optional_formula(s
, map
, v
, rational
);
2402 if (!next_is_tuple(s
))
2403 return obj_read_poly_or_fold(s
, map
, v
, n
);
2405 map
= read_map_tuple(s
, map
, isl_dim_in
, v
, rational
, 0);
2408 tok
= isl_stream_next_token(s
);
2411 if (tok
->type
== ISL_TOKEN_TO
) {
2412 obj
.type
= isl_obj_map
;
2413 isl_token_free(tok
);
2414 if (!next_is_tuple(s
)) {
2415 isl_set
*set
= isl_map_domain(map
);
2416 return obj_read_poly_or_fold(s
, set
, v
, n
);
2418 map
= read_map_tuple(s
, map
, isl_dim_out
, v
, rational
, 0);
2422 map
= isl_map_domain(map
);
2423 isl_stream_push_token(s
, tok
);
2426 map
= read_optional_formula(s
, map
, v
, rational
);
2428 vars_drop(v
, v
->n
- n
);
2434 obj
.type
= isl_obj_none
;
2438 static struct isl_obj
to_union(isl_ctx
*ctx
, struct isl_obj obj
)
2440 if (obj
.type
== isl_obj_map
) {
2441 obj
.v
= isl_union_map_from_map(obj
.v
);
2442 obj
.type
= isl_obj_union_map
;
2443 } else if (obj
.type
== isl_obj_set
) {
2444 obj
.v
= isl_union_set_from_set(obj
.v
);
2445 obj
.type
= isl_obj_union_set
;
2446 } else if (obj
.type
== isl_obj_pw_qpolynomial
) {
2447 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
2448 obj
.type
= isl_obj_union_pw_qpolynomial
;
2449 } else if (obj
.type
== isl_obj_pw_qpolynomial_fold
) {
2450 obj
.v
= isl_union_pw_qpolynomial_fold_from_pw_qpolynomial_fold(obj
.v
);
2451 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
2453 isl_assert(ctx
, 0, goto error
);
2456 obj
.type
->free(obj
.v
);
2457 obj
.type
= isl_obj_none
;
2461 static struct isl_obj
obj_add(__isl_keep isl_stream
*s
,
2462 struct isl_obj obj1
, struct isl_obj obj2
)
2464 if (obj1
.type
== isl_obj_set
&& obj2
.type
== isl_obj_union_set
)
2465 obj1
= to_union(s
->ctx
, obj1
);
2466 if (obj1
.type
== isl_obj_union_set
&& obj2
.type
== isl_obj_set
)
2467 obj2
= to_union(s
->ctx
, obj2
);
2468 if (obj1
.type
== isl_obj_map
&& obj2
.type
== isl_obj_union_map
)
2469 obj1
= to_union(s
->ctx
, obj1
);
2470 if (obj1
.type
== isl_obj_union_map
&& obj2
.type
== isl_obj_map
)
2471 obj2
= to_union(s
->ctx
, obj2
);
2472 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2473 obj2
.type
== isl_obj_union_pw_qpolynomial
)
2474 obj1
= to_union(s
->ctx
, obj1
);
2475 if (obj1
.type
== isl_obj_union_pw_qpolynomial
&&
2476 obj2
.type
== isl_obj_pw_qpolynomial
)
2477 obj2
= to_union(s
->ctx
, obj2
);
2478 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2479 obj2
.type
== isl_obj_union_pw_qpolynomial_fold
)
2480 obj1
= to_union(s
->ctx
, obj1
);
2481 if (obj1
.type
== isl_obj_union_pw_qpolynomial_fold
&&
2482 obj2
.type
== isl_obj_pw_qpolynomial_fold
)
2483 obj2
= to_union(s
->ctx
, obj2
);
2484 if (obj1
.type
!= obj2
.type
) {
2485 isl_stream_error(s
, NULL
,
2486 "attempt to combine incompatible objects");
2489 if (!obj1
.type
->add
)
2490 isl_die(s
->ctx
, isl_error_internal
,
2491 "combination not supported on object type", goto error
);
2492 if (obj1
.type
== isl_obj_map
&& !isl_map_has_equal_space(obj1
.v
, obj2
.v
)) {
2493 obj1
= to_union(s
->ctx
, obj1
);
2494 obj2
= to_union(s
->ctx
, obj2
);
2496 if (obj1
.type
== isl_obj_set
&& !isl_set_has_equal_space(obj1
.v
, obj2
.v
)) {
2497 obj1
= to_union(s
->ctx
, obj1
);
2498 obj2
= to_union(s
->ctx
, obj2
);
2500 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2501 !isl_pw_qpolynomial_has_equal_space(obj1
.v
, obj2
.v
)) {
2502 obj1
= to_union(s
->ctx
, obj1
);
2503 obj2
= to_union(s
->ctx
, obj2
);
2505 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2506 !isl_pw_qpolynomial_fold_has_equal_space(obj1
.v
, obj2
.v
)) {
2507 obj1
= to_union(s
->ctx
, obj1
);
2508 obj2
= to_union(s
->ctx
, obj2
);
2510 obj1
.v
= obj1
.type
->add(obj1
.v
, obj2
.v
);
2513 obj1
.type
->free(obj1
.v
);
2514 obj2
.type
->free(obj2
.v
);
2515 obj1
.type
= isl_obj_none
;
2520 /* Are the first two tokens on "s", "domain" (either as a string
2521 * or as an identifier) followed by ":"?
2523 static int next_is_domain_colon(__isl_keep isl_stream
*s
)
2525 struct isl_token
*tok
;
2529 tok
= isl_stream_next_token(s
);
2532 if (tok
->type
!= ISL_TOKEN_IDENT
&& tok
->type
!= ISL_TOKEN_STRING
) {
2533 isl_stream_push_token(s
, tok
);
2537 name
= isl_token_get_str(s
->ctx
, tok
);
2538 res
= !strcmp(name
, "domain") && isl_stream_next_token_is(s
, ':');
2541 isl_stream_push_token(s
, tok
);
2546 /* Do the first tokens on "s" look like a schedule?
2548 * The root of a schedule is always a domain node, so the first thing
2549 * we expect in the stream is a domain key, i.e., "domain" followed
2550 * by ":". If the schedule was printed in YAML flow style, then
2551 * we additionally expect a "{" to open the outer mapping.
2553 static int next_is_schedule(__isl_keep isl_stream
*s
)
2555 struct isl_token
*tok
;
2558 tok
= isl_stream_next_token(s
);
2561 if (tok
->type
!= '{') {
2562 isl_stream_push_token(s
, tok
);
2563 return next_is_domain_colon(s
);
2566 is_schedule
= next_is_domain_colon(s
);
2567 isl_stream_push_token(s
, tok
);
2572 /* Read an isl_schedule from "s" and store it in an isl_obj.
2574 static struct isl_obj
schedule_read(__isl_keep isl_stream
*s
)
2578 obj
.type
= isl_obj_schedule
;
2579 obj
.v
= isl_stream_read_schedule(s
);
2584 static struct isl_obj
obj_read(__isl_keep isl_stream
*s
)
2586 isl_map
*map
= NULL
;
2587 struct isl_token
*tok
;
2588 struct vars
*v
= NULL
;
2589 struct isl_obj obj
= { isl_obj_set
, NULL
};
2591 if (next_is_schedule(s
))
2592 return schedule_read(s
);
2594 tok
= next_token(s
);
2596 isl_stream_error(s
, NULL
, "unexpected EOF");
2599 if (tok
->type
== ISL_TOKEN_VALUE
) {
2600 struct isl_token
*tok2
;
2601 struct isl_map
*map
;
2603 tok2
= isl_stream_next_token(s
);
2604 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
||
2605 isl_int_is_neg(tok2
->u
.v
)) {
2607 isl_stream_push_token(s
, tok2
);
2608 obj
.type
= isl_obj_val
;
2609 obj
.v
= isl_val_int_from_isl_int(s
->ctx
, tok
->u
.v
);
2610 isl_token_free(tok
);
2613 isl_stream_push_token(s
, tok2
);
2614 isl_stream_push_token(s
, tok
);
2615 map
= map_read_polylib(s
);
2618 if (isl_map_may_be_set(map
))
2619 obj
.v
= isl_map_range(map
);
2621 obj
.type
= isl_obj_map
;
2626 v
= vars_new(s
->ctx
);
2628 isl_stream_push_token(s
, tok
);
2631 map
= isl_map_universe(isl_space_params_alloc(s
->ctx
, 0));
2632 if (tok
->type
== '[') {
2633 isl_stream_push_token(s
, tok
);
2634 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 0);
2637 tok
= isl_stream_next_token(s
);
2638 if (!tok
|| tok
->type
!= ISL_TOKEN_TO
) {
2639 isl_stream_error(s
, tok
, "expecting '->'");
2641 isl_stream_push_token(s
, tok
);
2644 isl_token_free(tok
);
2645 tok
= isl_stream_next_token(s
);
2647 if (!tok
|| tok
->type
!= '{') {
2648 isl_stream_error(s
, tok
, "expecting '{'");
2650 isl_stream_push_token(s
, tok
);
2653 isl_token_free(tok
);
2655 tok
= isl_stream_next_token(s
);
2658 else if (tok
->type
== ISL_TOKEN_IDENT
&& !strcmp(tok
->u
.s
, "Sym")) {
2659 isl_token_free(tok
);
2660 if (isl_stream_eat(s
, '='))
2662 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 1);
2665 } else if (tok
->type
== '}') {
2666 obj
.type
= isl_obj_union_set
;
2667 obj
.v
= isl_union_set_empty(isl_map_get_space(map
));
2668 isl_token_free(tok
);
2671 isl_stream_push_token(s
, tok
);
2676 o
= obj_read_body(s
, isl_map_copy(map
), v
);
2677 if (o
.type
== isl_obj_none
|| !o
.v
)
2682 obj
= obj_add(s
, obj
, o
);
2683 if (obj
.type
== isl_obj_none
|| !obj
.v
)
2686 tok
= isl_stream_next_token(s
);
2687 if (!tok
|| tok
->type
!= ';')
2689 isl_token_free(tok
);
2690 if (isl_stream_next_token_is(s
, '}')) {
2691 tok
= isl_stream_next_token(s
);
2696 if (tok
&& tok
->type
== '}') {
2697 isl_token_free(tok
);
2699 isl_stream_error(s
, tok
, "unexpected isl_token");
2701 isl_token_free(tok
);
2711 obj
.type
->free(obj
.v
);
2718 struct isl_obj
isl_stream_read_obj(__isl_keep isl_stream
*s
)
2723 __isl_give isl_map
*isl_stream_read_map(__isl_keep isl_stream
*s
)
2729 isl_assert(s
->ctx
, obj
.type
== isl_obj_map
||
2730 obj
.type
== isl_obj_set
, goto error
);
2732 if (obj
.type
== isl_obj_set
)
2733 obj
.v
= isl_map_from_range(obj
.v
);
2737 obj
.type
->free(obj
.v
);
2741 __isl_give isl_set
*isl_stream_read_set(__isl_keep isl_stream
*s
)
2747 if (obj
.type
== isl_obj_map
&& isl_map_may_be_set(obj
.v
)) {
2748 obj
.v
= isl_map_range(obj
.v
);
2749 obj
.type
= isl_obj_set
;
2751 isl_assert(s
->ctx
, obj
.type
== isl_obj_set
, goto error
);
2756 obj
.type
->free(obj
.v
);
2760 __isl_give isl_union_map
*isl_stream_read_union_map(__isl_keep isl_stream
*s
)
2765 if (obj
.type
== isl_obj_map
) {
2766 obj
.type
= isl_obj_union_map
;
2767 obj
.v
= isl_union_map_from_map(obj
.v
);
2769 if (obj
.type
== isl_obj_set
) {
2770 obj
.type
= isl_obj_union_set
;
2771 obj
.v
= isl_union_set_from_set(obj
.v
);
2773 if (obj
.v
&& obj
.type
== isl_obj_union_set
&&
2774 isl_union_set_is_empty(obj
.v
))
2775 obj
.type
= isl_obj_union_map
;
2776 if (obj
.v
&& obj
.type
!= isl_obj_union_map
)
2777 isl_die(s
->ctx
, isl_error_invalid
, "invalid input", goto error
);
2781 obj
.type
->free(obj
.v
);
2785 __isl_give isl_union_set
*isl_stream_read_union_set(__isl_keep isl_stream
*s
)
2790 if (obj
.type
== isl_obj_set
) {
2791 obj
.type
= isl_obj_union_set
;
2792 obj
.v
= isl_union_set_from_set(obj
.v
);
2795 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_set
, goto error
);
2799 obj
.type
->free(obj
.v
);
2803 static __isl_give isl_basic_map
*basic_map_read(__isl_keep isl_stream
*s
)
2806 struct isl_map
*map
;
2807 struct isl_basic_map
*bmap
;
2810 if (obj
.v
&& (obj
.type
!= isl_obj_map
&& obj
.type
!= isl_obj_set
))
2811 isl_die(s
->ctx
, isl_error_invalid
, "not a (basic) set or map",
2818 isl_die(s
->ctx
, isl_error_invalid
,
2819 "set or map description involves "
2820 "more than one disjunct", goto error
);
2823 bmap
= isl_basic_map_empty(isl_map_get_space(map
));
2825 bmap
= isl_basic_map_copy(map
->p
[0]);
2831 obj
.type
->free(obj
.v
);
2835 static __isl_give isl_basic_set
*basic_set_read(__isl_keep isl_stream
*s
)
2837 isl_basic_map
*bmap
;
2838 bmap
= basic_map_read(s
);
2841 if (!isl_basic_map_may_be_set(bmap
))
2842 isl_die(s
->ctx
, isl_error_invalid
,
2843 "input is not a set", goto error
);
2844 return isl_basic_map_range(bmap
);
2846 isl_basic_map_free(bmap
);
2850 __isl_give isl_basic_map
*isl_basic_map_read_from_file(isl_ctx
*ctx
,
2853 struct isl_basic_map
*bmap
;
2854 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2857 bmap
= basic_map_read(s
);
2862 __isl_give isl_basic_set
*isl_basic_set_read_from_file(isl_ctx
*ctx
,
2865 isl_basic_set
*bset
;
2866 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2869 bset
= basic_set_read(s
);
2874 struct isl_basic_map
*isl_basic_map_read_from_str(struct isl_ctx
*ctx
,
2877 struct isl_basic_map
*bmap
;
2878 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2881 bmap
= basic_map_read(s
);
2886 struct isl_basic_set
*isl_basic_set_read_from_str(struct isl_ctx
*ctx
,
2889 isl_basic_set
*bset
;
2890 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2893 bset
= basic_set_read(s
);
2898 __isl_give isl_map
*isl_map_read_from_file(struct isl_ctx
*ctx
,
2901 struct isl_map
*map
;
2902 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2905 map
= isl_stream_read_map(s
);
2910 __isl_give isl_map
*isl_map_read_from_str(struct isl_ctx
*ctx
,
2913 struct isl_map
*map
;
2914 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2917 map
= isl_stream_read_map(s
);
2922 __isl_give isl_set
*isl_set_read_from_file(struct isl_ctx
*ctx
,
2926 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2929 set
= isl_stream_read_set(s
);
2934 struct isl_set
*isl_set_read_from_str(struct isl_ctx
*ctx
,
2938 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2941 set
= isl_stream_read_set(s
);
2946 __isl_give isl_union_map
*isl_union_map_read_from_file(isl_ctx
*ctx
,
2949 isl_union_map
*umap
;
2950 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2953 umap
= isl_stream_read_union_map(s
);
2958 __isl_give isl_union_map
*isl_union_map_read_from_str(struct isl_ctx
*ctx
,
2961 isl_union_map
*umap
;
2962 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2965 umap
= isl_stream_read_union_map(s
);
2970 __isl_give isl_union_set
*isl_union_set_read_from_file(isl_ctx
*ctx
,
2973 isl_union_set
*uset
;
2974 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2977 uset
= isl_stream_read_union_set(s
);
2982 __isl_give isl_union_set
*isl_union_set_read_from_str(struct isl_ctx
*ctx
,
2985 isl_union_set
*uset
;
2986 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2989 uset
= isl_stream_read_union_set(s
);
2994 static __isl_give isl_vec
*isl_vec_read_polylib(__isl_keep isl_stream
*s
)
2996 struct isl_vec
*vec
= NULL
;
2997 struct isl_token
*tok
;
3001 tok
= isl_stream_next_token(s
);
3002 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
3003 isl_stream_error(s
, tok
, "expecting vector length");
3007 size
= isl_int_get_si(tok
->u
.v
);
3008 isl_token_free(tok
);
3010 vec
= isl_vec_alloc(s
->ctx
, size
);
3012 for (j
= 0; j
< size
; ++j
) {
3013 tok
= isl_stream_next_token(s
);
3014 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
3015 isl_stream_error(s
, tok
, "expecting constant value");
3018 isl_int_set(vec
->el
[j
], tok
->u
.v
);
3019 isl_token_free(tok
);
3024 isl_token_free(tok
);
3029 static __isl_give isl_vec
*vec_read(__isl_keep isl_stream
*s
)
3031 return isl_vec_read_polylib(s
);
3034 __isl_give isl_vec
*isl_vec_read_from_file(isl_ctx
*ctx
, FILE *input
)
3037 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
3045 __isl_give isl_pw_qpolynomial
*isl_stream_read_pw_qpolynomial(
3046 __isl_keep isl_stream
*s
)
3052 isl_assert(s
->ctx
, obj
.type
== isl_obj_pw_qpolynomial
,
3057 obj
.type
->free(obj
.v
);
3061 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_str(isl_ctx
*ctx
,
3064 isl_pw_qpolynomial
*pwqp
;
3065 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3068 pwqp
= isl_stream_read_pw_qpolynomial(s
);
3073 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_file(isl_ctx
*ctx
,
3076 isl_pw_qpolynomial
*pwqp
;
3077 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
3080 pwqp
= isl_stream_read_pw_qpolynomial(s
);
3085 /* Is the next token an identifer not in "v"?
3087 static int next_is_fresh_ident(__isl_keep isl_stream
*s
, struct vars
*v
)
3091 struct isl_token
*tok
;
3093 tok
= isl_stream_next_token(s
);
3096 fresh
= tok
->type
== ISL_TOKEN_IDENT
&& vars_pos(v
, tok
->u
.s
, -1) >= n
;
3097 isl_stream_push_token(s
, tok
);
3099 vars_drop(v
, v
->n
- n
);
3104 /* First read the domain of the affine expression, which may be
3105 * a parameter space or a set.
3106 * The tricky part is that we don't know if the domain is a set or not,
3107 * so when we are trying to read the domain, we may actually be reading
3108 * the affine expression itself (defined on a parameter domains)
3109 * If the tuple we are reading is named, we assume it's the domain.
3110 * Also, if inside the tuple, the first thing we find is a nested tuple
3111 * or a new identifier, we again assume it's the domain.
3112 * Finally, if the tuple is empty, then it must be the domain
3113 * since it does not contain an affine expression.
3114 * Otherwise, we assume we are reading an affine expression.
3116 static __isl_give isl_set
*read_aff_domain(__isl_keep isl_stream
*s
,
3117 __isl_take isl_set
*dom
, struct vars
*v
)
3119 struct isl_token
*tok
, *tok2
;
3122 tok
= isl_stream_next_token(s
);
3123 if (tok
&& (tok
->type
== ISL_TOKEN_IDENT
|| tok
->is_keyword
)) {
3124 isl_stream_push_token(s
, tok
);
3125 return read_map_tuple(s
, dom
, isl_dim_set
, v
, 0, 0);
3127 if (!tok
|| tok
->type
!= '[') {
3128 isl_stream_error(s
, tok
, "expecting '['");
3131 tok2
= isl_stream_next_token(s
);
3132 is_empty
= tok2
&& tok2
->type
== ']';
3134 isl_stream_push_token(s
, tok2
);
3135 if (is_empty
|| next_is_tuple(s
) || next_is_fresh_ident(s
, v
)) {
3136 isl_stream_push_token(s
, tok
);
3137 dom
= read_map_tuple(s
, dom
, isl_dim_set
, v
, 0, 0);
3139 isl_stream_push_token(s
, tok
);
3144 isl_stream_push_token(s
, tok
);
3149 /* Read an affine expression from "s".
3151 __isl_give isl_aff
*isl_stream_read_aff(__isl_keep isl_stream
*s
)
3156 ma
= isl_stream_read_multi_aff(s
);
3159 if (isl_multi_aff_dim(ma
, isl_dim_out
) != 1)
3160 isl_die(s
->ctx
, isl_error_invalid
,
3161 "expecting single affine expression",
3164 aff
= isl_multi_aff_get_aff(ma
, 0);
3165 isl_multi_aff_free(ma
);
3168 isl_multi_aff_free(ma
);
3172 /* Read a piecewise affine expression from "s" with domain (space) "dom".
3174 static __isl_give isl_pw_aff
*read_pw_aff_with_dom(__isl_keep isl_stream
*s
,
3175 __isl_take isl_set
*dom
, struct vars
*v
)
3177 isl_pw_aff
*pwaff
= NULL
;
3179 if (!isl_set_is_params(dom
) && isl_stream_eat(s
, ISL_TOKEN_TO
))
3182 if (isl_stream_eat(s
, '['))
3185 pwaff
= accept_affine(s
, isl_set_get_space(dom
), v
);
3187 if (isl_stream_eat(s
, ']'))
3190 dom
= read_optional_formula(s
, dom
, v
, 0);
3191 pwaff
= isl_pw_aff_intersect_domain(pwaff
, dom
);
3196 isl_pw_aff_free(pwaff
);
3200 __isl_give isl_pw_aff
*isl_stream_read_pw_aff(__isl_keep isl_stream
*s
)
3203 isl_set
*dom
= NULL
;
3205 isl_pw_aff
*pa
= NULL
;
3208 v
= vars_new(s
->ctx
);
3212 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3213 if (next_is_tuple(s
)) {
3214 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3215 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3218 if (isl_stream_eat(s
, '{'))
3222 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3223 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3224 vars_drop(v
, v
->n
- n
);
3226 while (isl_stream_eat_if_available(s
, ';')) {
3230 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3231 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3232 vars_drop(v
, v
->n
- n
);
3234 pa
= isl_pw_aff_union_add(pa
, pa_i
);
3237 if (isl_stream_eat(s
, '}'))
3246 isl_pw_aff_free(pa
);
3250 __isl_give isl_aff
*isl_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3253 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3256 aff
= isl_stream_read_aff(s
);
3261 __isl_give isl_pw_aff
*isl_pw_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3264 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3267 pa
= isl_stream_read_pw_aff(s
);
3272 /* Extract an isl_multi_pw_aff with domain space "dom_space"
3273 * from a tuple "tuple" read by read_tuple.
3275 * Note that the function read_tuple accepts tuples where some output or
3276 * set dimensions are defined in terms of other output or set dimensions
3277 * since this function is also used to read maps. As a special case,
3278 * read_tuple also accept dimensions that are defined in terms of themselves
3279 * (i.e., that are not defined).
3280 * These cases are not allowed when extracting an isl_multi_pw_aff so check
3281 * that the definitions of the output/set dimensions do not involve any
3282 * output/set dimensions.
3283 * Finally, drop the output dimensions from the domain of the result
3284 * of read_tuple (which is of the form [input, output] -> [output],
3285 * with anonymous domain) and reset the space.
3287 static __isl_give isl_multi_pw_aff
*extract_mpa_from_tuple(
3288 __isl_take isl_space
*dom_space
, __isl_keep isl_multi_pw_aff
*tuple
)
3292 isl_multi_pw_aff
*mpa
;
3294 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3295 dim
= isl_space_dim(dom_space
, isl_dim_all
);
3296 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3297 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3298 if (!isl_space_is_params(dom_space
))
3299 space
= isl_space_map_from_domain_and_range(
3300 isl_space_copy(dom_space
), space
);
3301 isl_space_free(dom_space
);
3302 mpa
= isl_multi_pw_aff_alloc(space
);
3304 for (i
= 0; i
< n
; ++i
) {
3306 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3308 return isl_multi_pw_aff_free(mpa
);
3309 if (isl_pw_aff_involves_dims(pa
, isl_dim_in
, dim
, i
+ 1)) {
3310 isl_ctx
*ctx
= isl_pw_aff_get_ctx(pa
);
3311 isl_pw_aff_free(pa
);
3312 isl_die(ctx
, isl_error_invalid
,
3313 "not an affine expression",
3314 return isl_multi_pw_aff_free(mpa
));
3316 pa
= isl_pw_aff_drop_dims(pa
, isl_dim_in
, dim
, n
);
3317 space
= isl_multi_pw_aff_get_domain_space(mpa
);
3318 pa
= isl_pw_aff_reset_domain_space(pa
, space
);
3319 mpa
= isl_multi_pw_aff_set_pw_aff(mpa
, i
, pa
);
3325 /* Read a tuple of affine expressions, together with optional constraints
3326 * on the domain from "s". "dom" represents the initial constraints
3329 * The isl_multi_aff may live in either a set or a map space.
3330 * First read the first tuple and check if it is followed by a "->".
3331 * If so, convert the tuple into the domain of the isl_multi_pw_aff and
3332 * read in the next tuple. This tuple (or the first tuple if it was
3333 * not followed by a "->") is then converted into an isl_multi_pw_aff
3334 * through a call to extract_mpa_from_tuple.
3335 * The result is converted to an isl_pw_multi_aff and
3336 * its domain is intersected with the domain.
3338 static __isl_give isl_pw_multi_aff
*read_conditional_multi_aff(
3339 __isl_keep isl_stream
*s
, __isl_take isl_set
*dom
, struct vars
*v
)
3341 isl_multi_pw_aff
*tuple
;
3342 isl_multi_pw_aff
*mpa
;
3343 isl_pw_multi_aff
*pma
;
3346 tuple
= read_tuple(s
, v
, 0, 0);
3349 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3350 isl_map
*map
= map_from_tuple(tuple
, dom
, isl_dim_in
, v
, 0);
3351 dom
= isl_map_domain(map
);
3352 tuple
= read_tuple(s
, v
, 0, 0);
3357 dom
= read_optional_formula(s
, dom
, v
, 0);
3359 vars_drop(v
, v
->n
- n
);
3361 mpa
= extract_mpa_from_tuple(isl_set_get_space(dom
), tuple
);
3362 isl_multi_pw_aff_free(tuple
);
3363 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
3364 pma
= isl_pw_multi_aff_intersect_domain(pma
, dom
);
3372 /* Read an isl_pw_multi_aff from "s".
3374 * In particular, first read the parameters and then read a sequence
3375 * of one or more tuples of affine expressions with optional conditions and
3378 __isl_give isl_pw_multi_aff
*isl_stream_read_pw_multi_aff(
3379 __isl_keep isl_stream
*s
)
3383 isl_pw_multi_aff
*pma
= NULL
;
3385 v
= vars_new(s
->ctx
);
3389 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3390 if (next_is_tuple(s
)) {
3391 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3392 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3395 if (isl_stream_eat(s
, '{'))
3398 pma
= read_conditional_multi_aff(s
, isl_set_copy(dom
), v
);
3400 while (isl_stream_eat_if_available(s
, ';')) {
3401 isl_pw_multi_aff
*pma2
;
3403 pma2
= read_conditional_multi_aff(s
, isl_set_copy(dom
), v
);
3404 pma
= isl_pw_multi_aff_union_add(pma
, pma2
);
3409 if (isl_stream_eat(s
, '}'))
3416 isl_pw_multi_aff_free(pma
);
3422 __isl_give isl_pw_multi_aff
*isl_pw_multi_aff_read_from_str(isl_ctx
*ctx
,
3425 isl_pw_multi_aff
*pma
;
3426 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3429 pma
= isl_stream_read_pw_multi_aff(s
);
3434 /* Read an isl_union_pw_multi_aff from "s".
3435 * We currently read a generic object and if it turns out to be a set or
3436 * a map, we convert that to an isl_union_pw_multi_aff.
3437 * It would be more efficient if we were to construct
3438 * the isl_union_pw_multi_aff directly.
3440 __isl_give isl_union_pw_multi_aff
*isl_stream_read_union_pw_multi_aff(
3441 __isl_keep isl_stream
*s
)
3449 if (obj
.type
== isl_obj_map
|| obj
.type
== isl_obj_set
)
3450 obj
= to_union(s
->ctx
, obj
);
3451 if (obj
.type
== isl_obj_union_map
)
3452 return isl_union_pw_multi_aff_from_union_map(obj
.v
);
3453 if (obj
.type
== isl_obj_union_set
)
3454 return isl_union_pw_multi_aff_from_union_set(obj
.v
);
3456 obj
.type
->free(obj
.v
);
3457 isl_die(s
->ctx
, isl_error_invalid
, "unexpected object type",
3461 /* Read an isl_union_pw_multi_aff from "str".
3463 __isl_give isl_union_pw_multi_aff
*isl_union_pw_multi_aff_read_from_str(
3464 isl_ctx
*ctx
, const char *str
)
3466 isl_union_pw_multi_aff
*upma
;
3467 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3470 upma
= isl_stream_read_union_pw_multi_aff(s
);
3475 /* Assuming "pa" represents a single affine expression defined on a universe
3476 * domain, extract this affine expression.
3478 static __isl_give isl_aff
*aff_from_pw_aff(__isl_take isl_pw_aff
*pa
)
3485 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3486 "expecting single affine expression",
3488 if (!isl_set_plain_is_universe(pa
->p
[0].set
))
3489 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3490 "expecting universe domain",
3493 aff
= isl_aff_copy(pa
->p
[0].aff
);
3494 isl_pw_aff_free(pa
);
3497 isl_pw_aff_free(pa
);
3501 /* This function is called for each element in a tuple inside
3502 * isl_stream_read_multi_val.
3503 * Read an isl_val from "s" and add it to *list.
3505 static __isl_give isl_space
*read_val_el(__isl_keep isl_stream
*s
,
3506 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3508 isl_val_list
**list
= (isl_val_list
**) user
;
3511 val
= isl_stream_read_val(s
);
3512 *list
= isl_val_list_add(*list
, val
);
3514 return isl_space_free(space
);
3519 /* Read an isl_multi_val from "s".
3521 * We first read a tuple space, collecting the element values in a list.
3522 * Then we create an isl_multi_val from the space and the isl_val_list.
3524 __isl_give isl_multi_val
*isl_stream_read_multi_val(__isl_keep isl_stream
*s
)
3527 isl_set
*dom
= NULL
;
3529 isl_multi_val
*mv
= NULL
;
3532 v
= vars_new(s
->ctx
);
3536 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3537 if (next_is_tuple(s
)) {
3538 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3539 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3542 if (!isl_set_plain_is_universe(dom
))
3543 isl_die(s
->ctx
, isl_error_invalid
,
3544 "expecting universe parameter domain", goto error
);
3545 if (isl_stream_eat(s
, '{'))
3548 space
= isl_set_get_space(dom
);
3550 list
= isl_val_list_alloc(s
->ctx
, 0);
3551 space
= read_tuple_space(s
, v
, space
, 1, 0, &read_val_el
, &list
);
3552 mv
= isl_multi_val_from_val_list(space
, list
);
3554 if (isl_stream_eat(s
, '}'))
3563 isl_multi_val_free(mv
);
3567 /* Read an isl_multi_val from "str".
3569 __isl_give isl_multi_val
*isl_multi_val_read_from_str(isl_ctx
*ctx
,
3573 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3576 mv
= isl_stream_read_multi_val(s
);
3581 /* Read a multi-affine expression from "s".
3582 * If the multi-affine expression has a domain, then the tuple
3583 * representing this domain cannot involve any affine expressions.
3584 * The tuple representing the actual expressions needs to consist
3585 * of only affine expressions. Moreover, these expressions can
3586 * only depend on parameters and input dimensions and not on other
3587 * output dimensions.
3589 __isl_give isl_multi_aff
*isl_stream_read_multi_aff(__isl_keep isl_stream
*s
)
3592 isl_set
*dom
= NULL
;
3593 isl_multi_pw_aff
*tuple
= NULL
;
3595 isl_space
*space
, *dom_space
;
3596 isl_multi_aff
*ma
= NULL
;
3598 v
= vars_new(s
->ctx
);
3602 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3603 if (next_is_tuple(s
)) {
3604 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3605 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3608 if (!isl_set_plain_is_universe(dom
))
3609 isl_die(s
->ctx
, isl_error_invalid
,
3610 "expecting universe parameter domain", goto error
);
3611 if (isl_stream_eat(s
, '{'))
3614 tuple
= read_tuple(s
, v
, 0, 0);
3617 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3622 has_expr
= tuple_has_expr(tuple
);
3626 isl_die(s
->ctx
, isl_error_invalid
,
3627 "expecting universe domain", goto error
);
3628 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3629 set
= isl_set_universe(space
);
3630 dom
= isl_set_intersect_params(set
, dom
);
3631 isl_multi_pw_aff_free(tuple
);
3632 tuple
= read_tuple(s
, v
, 0, 0);
3637 if (isl_stream_eat(s
, '}'))
3640 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3641 dim
= isl_set_dim(dom
, isl_dim_all
);
3642 dom_space
= isl_set_get_space(dom
);
3643 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3644 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3645 if (!isl_space_is_params(dom_space
))
3646 space
= isl_space_map_from_domain_and_range(
3647 isl_space_copy(dom_space
), space
);
3648 isl_space_free(dom_space
);
3649 ma
= isl_multi_aff_alloc(space
);
3651 for (i
= 0; i
< n
; ++i
) {
3654 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3655 aff
= aff_from_pw_aff(pa
);
3658 if (isl_aff_involves_dims(aff
, isl_dim_in
, dim
, i
+ 1)) {
3660 isl_die(s
->ctx
, isl_error_invalid
,
3661 "not an affine expression", goto error
);
3663 aff
= isl_aff_drop_dims(aff
, isl_dim_in
, dim
, n
);
3664 space
= isl_multi_aff_get_domain_space(ma
);
3665 aff
= isl_aff_reset_domain_space(aff
, space
);
3666 ma
= isl_multi_aff_set_aff(ma
, i
, aff
);
3669 isl_multi_pw_aff_free(tuple
);
3674 isl_multi_pw_aff_free(tuple
);
3677 isl_multi_aff_free(ma
);
3681 __isl_give isl_multi_aff
*isl_multi_aff_read_from_str(isl_ctx
*ctx
,
3684 isl_multi_aff
*maff
;
3685 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3688 maff
= isl_stream_read_multi_aff(s
);
3693 /* Read an isl_multi_pw_aff from "s".
3695 * The input format is similar to that of map, except that any conditions
3696 * on the domains should be specified inside the tuple since each
3697 * piecewise affine expression may have a different domain.
3699 * Since we do not know in advance if the isl_multi_pw_aff lives
3700 * in a set or a map space, we first read the first tuple and check
3701 * if it is followed by a "->". If so, we convert the tuple into
3702 * the domain of the isl_multi_pw_aff and read in the next tuple.
3703 * This tuple (or the first tuple if it was not followed by a "->")
3704 * is then converted into the isl_multi_pw_aff through a call
3705 * to extract_mpa_from_tuple and the domain of the result
3706 * is intersected with the domain.
3708 __isl_give isl_multi_pw_aff
*isl_stream_read_multi_pw_aff(
3709 __isl_keep isl_stream
*s
)
3712 isl_set
*dom
= NULL
;
3713 isl_multi_pw_aff
*tuple
= NULL
;
3714 isl_multi_pw_aff
*mpa
= NULL
;
3716 v
= vars_new(s
->ctx
);
3720 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3721 if (next_is_tuple(s
)) {
3722 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3723 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3726 if (isl_stream_eat(s
, '{'))
3729 tuple
= read_tuple(s
, v
, 0, 0);
3732 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3733 isl_map
*map
= map_from_tuple(tuple
, dom
, isl_dim_in
, v
, 0);
3734 dom
= isl_map_domain(map
);
3735 tuple
= read_tuple(s
, v
, 0, 0);
3740 if (isl_stream_eat(s
, '}'))
3743 mpa
= extract_mpa_from_tuple(isl_set_get_space(dom
), tuple
);
3745 isl_multi_pw_aff_free(tuple
);
3747 mpa
= isl_multi_pw_aff_intersect_domain(mpa
, dom
);
3750 isl_multi_pw_aff_free(tuple
);
3753 isl_multi_pw_aff_free(mpa
);
3757 /* Read an isl_multi_pw_aff from "str".
3759 __isl_give isl_multi_pw_aff
*isl_multi_pw_aff_read_from_str(isl_ctx
*ctx
,
3762 isl_multi_pw_aff
*mpa
;
3763 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3766 mpa
= isl_stream_read_multi_pw_aff(s
);
3771 /* Read the body of an isl_union_pw_aff from "s" with parameter domain "dom".
3773 static __isl_give isl_union_pw_aff
*read_union_pw_aff_with_dom(
3774 __isl_keep isl_stream
*s
, __isl_take isl_set
*dom
, struct vars
*v
)
3777 isl_union_pw_aff
*upa
= NULL
;
3782 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3783 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3784 vars_drop(v
, v
->n
- n
);
3786 upa
= isl_union_pw_aff_from_pw_aff(pa
);
3788 while (isl_stream_eat_if_available(s
, ';')) {
3790 isl_union_pw_aff
*upa_i
;
3793 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3794 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3795 vars_drop(v
, v
->n
- n
);
3797 upa_i
= isl_union_pw_aff_from_pw_aff(pa_i
);
3798 upa
= isl_union_pw_aff_union_add(upa
, upa_i
);
3805 /* Read an isl_union_pw_aff from "s".
3807 * First check if there are any paramters, then read in the opening brace
3808 * and use read_union_pw_aff_with_dom to read in the body of
3809 * the isl_union_pw_aff. Finally, read the closing brace.
3811 __isl_give isl_union_pw_aff
*isl_stream_read_union_pw_aff(
3812 __isl_keep isl_stream
*s
)
3816 isl_union_pw_aff
*upa
= NULL
;
3818 v
= vars_new(s
->ctx
);
3822 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3823 if (next_is_tuple(s
)) {
3824 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3825 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3828 if (isl_stream_eat(s
, '{'))
3831 upa
= read_union_pw_aff_with_dom(s
, isl_set_copy(dom
), v
);
3833 if (isl_stream_eat(s
, '}'))
3842 isl_union_pw_aff_free(upa
);
3846 /* Read an isl_union_pw_aff from "str".
3848 __isl_give isl_union_pw_aff
*isl_union_pw_aff_read_from_str(isl_ctx
*ctx
,
3851 isl_union_pw_aff
*upa
;
3852 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3855 upa
= isl_stream_read_union_pw_aff(s
);
3860 /* This function is called for each element in a tuple inside
3861 * isl_stream_read_multi_union_pw_aff.
3863 * Read a '{', the union piecewise affine expression body and a '}' and
3864 * add the isl_union_pw_aff to *list.
3866 static __isl_give isl_space
*read_union_pw_aff_el(__isl_keep isl_stream
*s
,
3867 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3870 isl_union_pw_aff
*upa
;
3871 isl_union_pw_aff_list
**list
= (isl_union_pw_aff_list
**) user
;
3873 dom
= isl_set_universe(isl_space_params(isl_space_copy(space
)));
3874 if (isl_stream_eat(s
, '{'))
3876 upa
= read_union_pw_aff_with_dom(s
, dom
, v
);
3877 *list
= isl_union_pw_aff_list_add(*list
, upa
);
3878 if (isl_stream_eat(s
, '}'))
3879 return isl_space_free(space
);
3881 return isl_space_free(space
);
3885 return isl_space_free(space
);
3888 /* Do the next tokens in "s" correspond to an empty tuple?
3889 * In particular, does the stream start with a '[', followed by a ']',
3890 * not followed by a "->"?
3892 static int next_is_empty_tuple(__isl_keep isl_stream
*s
)
3894 struct isl_token
*tok
, *tok2
, *tok3
;
3895 int is_empty_tuple
= 0;
3897 tok
= isl_stream_next_token(s
);
3900 if (tok
->type
!= '[') {
3901 isl_stream_push_token(s
, tok
);
3905 tok2
= isl_stream_next_token(s
);
3906 if (tok2
&& tok2
->type
== ']') {
3907 tok3
= isl_stream_next_token(s
);
3908 is_empty_tuple
= !tok
|| tok
->type
!= ISL_TOKEN_TO
;
3910 isl_stream_push_token(s
, tok3
);
3913 isl_stream_push_token(s
, tok2
);
3914 isl_stream_push_token(s
, tok
);
3916 return is_empty_tuple
;
3919 /* Do the next tokens in "s" correspond to a tuple of parameters?
3920 * In particular, does the stream start with a '[' that is not
3921 * followed by a '{' or a nested tuple?
3923 static int next_is_param_tuple(__isl_keep isl_stream
*s
)
3925 struct isl_token
*tok
, *tok2
;
3928 tok
= isl_stream_next_token(s
);
3931 if (tok
->type
!= '[' || next_is_tuple(s
)) {
3932 isl_stream_push_token(s
, tok
);
3936 tok2
= isl_stream_next_token(s
);
3937 is_tuple
= tok2
&& tok2
->type
!= '{';
3939 isl_stream_push_token(s
, tok2
);
3940 isl_stream_push_token(s
, tok
);
3945 /* Read an isl_multi_union_pw_aff from "s".
3947 * The input has the form
3949 * [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3953 * [..] -> [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3955 * We first check for the special case of an empty tuple "[]".
3956 * Then we check if there are any parameters.
3957 * Finally, we read the tuple, collecting the individual isl_union_pw_aff
3958 * elements in a list and construct the result from the tuple space and
3961 __isl_give isl_multi_union_pw_aff
*isl_stream_read_multi_union_pw_aff(
3962 __isl_keep isl_stream
*s
)
3965 isl_set
*dom
= NULL
;
3967 isl_multi_union_pw_aff
*mupa
= NULL
;
3968 isl_union_pw_aff_list
*list
;
3970 if (next_is_empty_tuple(s
)) {
3971 if (isl_stream_eat(s
, '['))
3973 if (isl_stream_eat(s
, ']'))
3975 space
= isl_space_set_alloc(s
->ctx
, 0, 0);
3976 return isl_multi_union_pw_aff_zero(space
);
3979 v
= vars_new(s
->ctx
);
3983 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3984 if (next_is_param_tuple(s
)) {
3985 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3986 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3989 space
= isl_set_get_space(dom
);
3991 list
= isl_union_pw_aff_list_alloc(s
->ctx
, 0);
3992 space
= read_tuple_space(s
, v
, space
, 1, 0,
3993 &read_union_pw_aff_el
, &list
);
3994 mupa
= isl_multi_union_pw_aff_from_union_pw_aff_list(space
, list
);
4002 isl_multi_union_pw_aff_free(mupa
);
4006 /* Read an isl_multi_union_pw_aff from "str".
4008 __isl_give isl_multi_union_pw_aff
*isl_multi_union_pw_aff_read_from_str(
4009 isl_ctx
*ctx
, const char *str
)
4011 isl_multi_union_pw_aff
*mupa
;
4012 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
4015 mupa
= isl_stream_read_multi_union_pw_aff(s
);
4020 __isl_give isl_union_pw_qpolynomial
*isl_stream_read_union_pw_qpolynomial(
4021 __isl_keep isl_stream
*s
)
4026 if (obj
.type
== isl_obj_pw_qpolynomial
) {
4027 obj
.type
= isl_obj_union_pw_qpolynomial
;
4028 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
4031 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_pw_qpolynomial
,
4036 obj
.type
->free(obj
.v
);
4040 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_read_from_str(
4041 isl_ctx
*ctx
, const char *str
)
4043 isl_union_pw_qpolynomial
*upwqp
;
4044 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
4047 upwqp
= isl_stream_read_union_pw_qpolynomial(s
);