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
, '}')) {
1809 isl_space
*dim
= isl_map_get_space(map
);
1811 return isl_map_universe(dim
);
1814 res
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1815 while (isl_stream_eat_if_available(s
, ISL_TOKEN_OR
)) {
1818 res_i
= read_conjuncts(s
, v
, isl_map_copy(map
), rational
);
1819 res
= isl_map_union(res
, res_i
);
1826 /* Read a first order formula from "s", add the corresponding
1827 * constraints to "map" and return the result.
1829 * In particular, read a formula of the form
1837 * where a and b are disjunctions.
1839 * In the first case, map is replaced by
1841 * map \cap { [..] : a }
1843 * In the second case, it is replaced by
1845 * (map \setminus { [..] : a}) \cup (map \cap { [..] : b })
1847 static __isl_give isl_map
*read_formula(__isl_keep isl_stream
*s
,
1848 struct vars
*v
, __isl_take isl_map
*map
, int rational
)
1852 res
= read_disjuncts(s
, v
, isl_map_copy(map
), rational
);
1854 if (isl_stream_eat_if_available(s
, ISL_TOKEN_IMPLIES
)) {
1857 res
= isl_map_subtract(isl_map_copy(map
), res
);
1858 res2
= read_disjuncts(s
, v
, map
, rational
);
1859 res
= isl_map_union(res
, res2
);
1866 static int polylib_pos_to_isl_pos(__isl_keep isl_basic_map
*bmap
, int pos
)
1868 if (pos
< isl_basic_map_dim(bmap
, isl_dim_out
))
1869 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1870 isl_basic_map_dim(bmap
, isl_dim_in
) + pos
;
1871 pos
-= isl_basic_map_dim(bmap
, isl_dim_out
);
1873 if (pos
< isl_basic_map_dim(bmap
, isl_dim_in
))
1874 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) + pos
;
1875 pos
-= isl_basic_map_dim(bmap
, isl_dim_in
);
1877 if (pos
< isl_basic_map_dim(bmap
, isl_dim_div
))
1878 return 1 + isl_basic_map_dim(bmap
, isl_dim_param
) +
1879 isl_basic_map_dim(bmap
, isl_dim_in
) +
1880 isl_basic_map_dim(bmap
, isl_dim_out
) + pos
;
1881 pos
-= isl_basic_map_dim(bmap
, isl_dim_div
);
1883 if (pos
< isl_basic_map_dim(bmap
, isl_dim_param
))
1889 static __isl_give isl_basic_map
*basic_map_read_polylib_constraint(
1890 __isl_keep isl_stream
*s
, __isl_take isl_basic_map
*bmap
)
1893 struct isl_token
*tok
;
1901 tok
= isl_stream_next_token(s
);
1902 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1903 isl_stream_error(s
, tok
, "expecting coefficient");
1905 isl_stream_push_token(s
, tok
);
1908 if (!tok
->on_new_line
) {
1909 isl_stream_error(s
, tok
, "coefficient should appear on new line");
1910 isl_stream_push_token(s
, tok
);
1914 type
= isl_int_get_si(tok
->u
.v
);
1915 isl_token_free(tok
);
1917 isl_assert(s
->ctx
, type
== 0 || type
== 1, goto error
);
1919 k
= isl_basic_map_alloc_equality(bmap
);
1922 k
= isl_basic_map_alloc_inequality(bmap
);
1928 for (j
= 0; j
< 1 + isl_basic_map_total_dim(bmap
); ++j
) {
1930 tok
= isl_stream_next_token(s
);
1931 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1932 isl_stream_error(s
, tok
, "expecting coefficient");
1934 isl_stream_push_token(s
, tok
);
1937 if (tok
->on_new_line
) {
1938 isl_stream_error(s
, tok
,
1939 "coefficient should not appear on new line");
1940 isl_stream_push_token(s
, tok
);
1943 pos
= polylib_pos_to_isl_pos(bmap
, j
);
1944 isl_int_set(c
[pos
], tok
->u
.v
);
1945 isl_token_free(tok
);
1950 isl_basic_map_free(bmap
);
1954 static __isl_give isl_basic_map
*basic_map_read_polylib(
1955 __isl_keep isl_stream
*s
)
1958 struct isl_token
*tok
;
1959 struct isl_token
*tok2
;
1962 unsigned in
= 0, out
, local
= 0;
1963 struct isl_basic_map
*bmap
= NULL
;
1966 tok
= isl_stream_next_token(s
);
1968 isl_stream_error(s
, NULL
, "unexpected EOF");
1971 tok2
= isl_stream_next_token(s
);
1973 isl_token_free(tok
);
1974 isl_stream_error(s
, NULL
, "unexpected EOF");
1977 if (tok
->type
!= ISL_TOKEN_VALUE
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
1978 isl_stream_push_token(s
, tok2
);
1979 isl_stream_push_token(s
, tok
);
1980 isl_stream_error(s
, NULL
,
1981 "expecting constraint matrix dimensions");
1984 n_row
= isl_int_get_si(tok
->u
.v
);
1985 n_col
= isl_int_get_si(tok2
->u
.v
);
1986 on_new_line
= tok2
->on_new_line
;
1987 isl_token_free(tok2
);
1988 isl_token_free(tok
);
1989 isl_assert(s
->ctx
, !on_new_line
, return NULL
);
1990 isl_assert(s
->ctx
, n_row
>= 0, return NULL
);
1991 isl_assert(s
->ctx
, n_col
>= 2 + nparam
, return NULL
);
1992 tok
= isl_stream_next_token_on_same_line(s
);
1994 if (tok
->type
!= ISL_TOKEN_VALUE
) {
1995 isl_stream_error(s
, tok
,
1996 "expecting number of output dimensions");
1997 isl_stream_push_token(s
, tok
);
2000 out
= isl_int_get_si(tok
->u
.v
);
2001 isl_token_free(tok
);
2003 tok
= isl_stream_next_token_on_same_line(s
);
2004 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2005 isl_stream_error(s
, tok
,
2006 "expecting number of input dimensions");
2008 isl_stream_push_token(s
, tok
);
2011 in
= isl_int_get_si(tok
->u
.v
);
2012 isl_token_free(tok
);
2014 tok
= isl_stream_next_token_on_same_line(s
);
2015 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2016 isl_stream_error(s
, tok
,
2017 "expecting number of existentials");
2019 isl_stream_push_token(s
, tok
);
2022 local
= isl_int_get_si(tok
->u
.v
);
2023 isl_token_free(tok
);
2025 tok
= isl_stream_next_token_on_same_line(s
);
2026 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2027 isl_stream_error(s
, tok
,
2028 "expecting number of parameters");
2030 isl_stream_push_token(s
, tok
);
2033 nparam
= isl_int_get_si(tok
->u
.v
);
2034 isl_token_free(tok
);
2035 if (n_col
!= 1 + out
+ in
+ local
+ nparam
+ 1) {
2036 isl_stream_error(s
, NULL
,
2037 "dimensions don't match");
2041 out
= n_col
- 2 - nparam
;
2042 bmap
= isl_basic_map_alloc(s
->ctx
, nparam
, in
, out
, local
, n_row
, n_row
);
2046 for (i
= 0; i
< local
; ++i
) {
2047 int k
= isl_basic_map_alloc_div(bmap
);
2050 isl_seq_clr(bmap
->div
[k
], 1 + 1 + nparam
+ in
+ out
+ local
);
2053 for (i
= 0; i
< n_row
; ++i
)
2054 bmap
= basic_map_read_polylib_constraint(s
, bmap
);
2056 tok
= isl_stream_next_token_on_same_line(s
);
2058 isl_stream_error(s
, tok
, "unexpected extra token on line");
2059 isl_stream_push_token(s
, tok
);
2063 bmap
= isl_basic_map_simplify(bmap
);
2064 bmap
= isl_basic_map_finalize(bmap
);
2067 isl_basic_map_free(bmap
);
2071 static struct isl_map
*map_read_polylib(__isl_keep isl_stream
*s
)
2073 struct isl_token
*tok
;
2074 struct isl_token
*tok2
;
2076 struct isl_map
*map
;
2078 tok
= isl_stream_next_token(s
);
2080 isl_stream_error(s
, NULL
, "unexpected EOF");
2083 tok2
= isl_stream_next_token_on_same_line(s
);
2084 if (tok2
&& tok2
->type
== ISL_TOKEN_VALUE
) {
2085 isl_stream_push_token(s
, tok2
);
2086 isl_stream_push_token(s
, tok
);
2087 return isl_map_from_basic_map(basic_map_read_polylib(s
));
2090 isl_stream_error(s
, tok2
, "unexpected token");
2091 isl_stream_push_token(s
, tok2
);
2092 isl_stream_push_token(s
, tok
);
2095 n
= isl_int_get_si(tok
->u
.v
);
2096 isl_token_free(tok
);
2098 isl_assert(s
->ctx
, n
>= 1, return NULL
);
2100 map
= isl_map_from_basic_map(basic_map_read_polylib(s
));
2102 for (i
= 1; map
&& i
< n
; ++i
)
2103 map
= isl_map_union(map
,
2104 isl_map_from_basic_map(basic_map_read_polylib(s
)));
2109 static int optional_power(__isl_keep isl_stream
*s
)
2112 struct isl_token
*tok
;
2114 tok
= isl_stream_next_token(s
);
2117 if (tok
->type
!= '^') {
2118 isl_stream_push_token(s
, tok
);
2121 isl_token_free(tok
);
2122 tok
= isl_stream_next_token(s
);
2123 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
2124 isl_stream_error(s
, tok
, "expecting exponent");
2126 isl_stream_push_token(s
, tok
);
2129 pow
= isl_int_get_si(tok
->u
.v
);
2130 isl_token_free(tok
);
2134 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2135 __isl_keep isl_map
*map
, struct vars
*v
);
2137 static __isl_give isl_pw_qpolynomial
*read_factor(__isl_keep isl_stream
*s
,
2138 __isl_keep isl_map
*map
, struct vars
*v
)
2140 isl_pw_qpolynomial
*pwqp
;
2141 struct isl_token
*tok
;
2143 tok
= next_token(s
);
2145 isl_stream_error(s
, NULL
, "unexpected EOF");
2148 if (tok
->type
== '(') {
2151 isl_token_free(tok
);
2152 pwqp
= read_term(s
, map
, v
);
2155 if (isl_stream_eat(s
, ')'))
2157 pow
= optional_power(s
);
2158 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2159 } else if (tok
->type
== ISL_TOKEN_VALUE
) {
2160 struct isl_token
*tok2
;
2161 isl_qpolynomial
*qp
;
2163 tok2
= isl_stream_next_token(s
);
2164 if (tok2
&& tok2
->type
== '/') {
2165 isl_token_free(tok2
);
2166 tok2
= next_token(s
);
2167 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
) {
2168 isl_stream_error(s
, tok2
, "expected denominator");
2169 isl_token_free(tok
);
2170 isl_token_free(tok2
);
2173 qp
= isl_qpolynomial_rat_cst_on_domain(isl_map_get_space(map
),
2174 tok
->u
.v
, tok2
->u
.v
);
2175 isl_token_free(tok2
);
2177 isl_stream_push_token(s
, tok2
);
2178 qp
= isl_qpolynomial_cst_on_domain(isl_map_get_space(map
),
2181 isl_token_free(tok
);
2182 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2183 } else if (tok
->type
== ISL_TOKEN_INFTY
) {
2184 isl_qpolynomial
*qp
;
2185 isl_token_free(tok
);
2186 qp
= isl_qpolynomial_infty_on_domain(isl_map_get_space(map
));
2187 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2188 } else if (tok
->type
== ISL_TOKEN_NAN
) {
2189 isl_qpolynomial
*qp
;
2190 isl_token_free(tok
);
2191 qp
= isl_qpolynomial_nan_on_domain(isl_map_get_space(map
));
2192 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2193 } else if (tok
->type
== ISL_TOKEN_IDENT
) {
2195 int pos
= vars_pos(v
, tok
->u
.s
, -1);
2197 isl_qpolynomial
*qp
;
2199 isl_token_free(tok
);
2203 vars_drop(v
, v
->n
- n
);
2204 isl_stream_error(s
, tok
, "unknown identifier");
2205 isl_token_free(tok
);
2208 isl_token_free(tok
);
2209 pow
= optional_power(s
);
2210 qp
= isl_qpolynomial_var_pow_on_domain(isl_map_get_space(map
), pos
, pow
);
2211 pwqp
= isl_pw_qpolynomial_from_qpolynomial(qp
);
2212 } else if (is_start_of_div(tok
)) {
2216 isl_stream_push_token(s
, tok
);
2217 pwaff
= accept_div(s
, isl_map_get_space(map
), v
);
2218 pow
= optional_power(s
);
2219 pwqp
= isl_pw_qpolynomial_from_pw_aff(pwaff
);
2220 pwqp
= isl_pw_qpolynomial_pow(pwqp
, pow
);
2221 } else if (tok
->type
== '-') {
2222 isl_token_free(tok
);
2223 pwqp
= read_factor(s
, map
, v
);
2224 pwqp
= isl_pw_qpolynomial_neg(pwqp
);
2226 isl_stream_error(s
, tok
, "unexpected isl_token");
2227 isl_stream_push_token(s
, tok
);
2231 if (isl_stream_eat_if_available(s
, '*') ||
2232 isl_stream_next_token_is(s
, ISL_TOKEN_IDENT
)) {
2233 isl_pw_qpolynomial
*pwqp2
;
2235 pwqp2
= read_factor(s
, map
, v
);
2236 pwqp
= isl_pw_qpolynomial_mul(pwqp
, pwqp2
);
2241 isl_pw_qpolynomial_free(pwqp
);
2245 static __isl_give isl_pw_qpolynomial
*read_term(__isl_keep isl_stream
*s
,
2246 __isl_keep isl_map
*map
, struct vars
*v
)
2248 struct isl_token
*tok
;
2249 isl_pw_qpolynomial
*pwqp
;
2251 pwqp
= read_factor(s
, map
, v
);
2254 tok
= next_token(s
);
2258 if (tok
->type
== '+') {
2259 isl_pw_qpolynomial
*pwqp2
;
2261 isl_token_free(tok
);
2262 pwqp2
= read_factor(s
, map
, v
);
2263 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2264 } else if (tok
->type
== '-') {
2265 isl_pw_qpolynomial
*pwqp2
;
2267 isl_token_free(tok
);
2268 pwqp2
= read_factor(s
, map
, v
);
2269 pwqp
= isl_pw_qpolynomial_sub(pwqp
, pwqp2
);
2270 } else if (tok
->type
== ISL_TOKEN_VALUE
&&
2271 isl_int_is_neg(tok
->u
.v
)) {
2272 isl_pw_qpolynomial
*pwqp2
;
2274 isl_stream_push_token(s
, tok
);
2275 pwqp2
= read_factor(s
, map
, v
);
2276 pwqp
= isl_pw_qpolynomial_add(pwqp
, pwqp2
);
2278 isl_stream_push_token(s
, tok
);
2286 static __isl_give isl_map
*read_optional_formula(__isl_keep isl_stream
*s
,
2287 __isl_take isl_map
*map
, struct vars
*v
, int rational
)
2289 struct isl_token
*tok
;
2291 tok
= isl_stream_next_token(s
);
2293 isl_stream_error(s
, NULL
, "unexpected EOF");
2296 if (tok
->type
== ':' ||
2297 (tok
->type
== ISL_TOKEN_OR
&& !strcmp(tok
->u
.s
, "|"))) {
2298 isl_token_free(tok
);
2299 map
= read_formula(s
, v
, map
, rational
);
2301 isl_stream_push_token(s
, tok
);
2309 static struct isl_obj
obj_read_poly(__isl_keep isl_stream
*s
,
2310 __isl_take isl_map
*map
, struct vars
*v
, int n
)
2312 struct isl_obj obj
= { isl_obj_pw_qpolynomial
, NULL
};
2313 isl_pw_qpolynomial
*pwqp
;
2314 struct isl_set
*set
;
2316 pwqp
= read_term(s
, map
, v
);
2317 map
= read_optional_formula(s
, map
, v
, 0);
2318 set
= isl_map_range(map
);
2320 pwqp
= isl_pw_qpolynomial_intersect_domain(pwqp
, set
);
2322 vars_drop(v
, v
->n
- n
);
2328 static struct isl_obj
obj_read_poly_or_fold(__isl_keep isl_stream
*s
,
2329 __isl_take isl_set
*set
, struct vars
*v
, int n
)
2331 struct isl_obj obj
= { isl_obj_pw_qpolynomial_fold
, NULL
};
2332 isl_pw_qpolynomial
*pwqp
;
2333 isl_pw_qpolynomial_fold
*pwf
= NULL
;
2335 if (!isl_stream_eat_if_available(s
, ISL_TOKEN_MAX
))
2336 return obj_read_poly(s
, set
, v
, n
);
2338 if (isl_stream_eat(s
, '('))
2341 pwqp
= read_term(s
, set
, v
);
2342 pwf
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
, pwqp
);
2344 while (isl_stream_eat_if_available(s
, ',')) {
2345 isl_pw_qpolynomial_fold
*pwf_i
;
2346 pwqp
= read_term(s
, set
, v
);
2347 pwf_i
= isl_pw_qpolynomial_fold_from_pw_qpolynomial(isl_fold_max
,
2349 pwf
= isl_pw_qpolynomial_fold_fold(pwf
, pwf_i
);
2352 if (isl_stream_eat(s
, ')'))
2355 set
= read_optional_formula(s
, set
, v
, 0);
2356 pwf
= isl_pw_qpolynomial_fold_intersect_domain(pwf
, set
);
2358 vars_drop(v
, v
->n
- n
);
2364 isl_pw_qpolynomial_fold_free(pwf
);
2365 obj
.type
= isl_obj_none
;
2369 static int is_rational(__isl_keep isl_stream
*s
)
2371 struct isl_token
*tok
;
2373 tok
= isl_stream_next_token(s
);
2376 if (tok
->type
== ISL_TOKEN_RAT
&& isl_stream_next_token_is(s
, ':')) {
2377 isl_token_free(tok
);
2378 isl_stream_eat(s
, ':');
2382 isl_stream_push_token(s
, tok
);
2387 static struct isl_obj
obj_read_body(__isl_keep isl_stream
*s
,
2388 __isl_take isl_map
*map
, struct vars
*v
)
2390 struct isl_token
*tok
;
2391 struct isl_obj obj
= { isl_obj_set
, NULL
};
2395 rational
= is_rational(s
);
2397 map
= isl_map_set_rational(map
);
2399 if (isl_stream_next_token_is(s
, ':')) {
2400 obj
.type
= isl_obj_set
;
2401 obj
.v
= read_optional_formula(s
, map
, v
, rational
);
2405 if (!next_is_tuple(s
))
2406 return obj_read_poly_or_fold(s
, map
, v
, n
);
2408 map
= read_map_tuple(s
, map
, isl_dim_in
, v
, rational
, 0);
2411 tok
= isl_stream_next_token(s
);
2414 if (tok
->type
== ISL_TOKEN_TO
) {
2415 obj
.type
= isl_obj_map
;
2416 isl_token_free(tok
);
2417 if (!next_is_tuple(s
)) {
2418 isl_set
*set
= isl_map_domain(map
);
2419 return obj_read_poly_or_fold(s
, set
, v
, n
);
2421 map
= read_map_tuple(s
, map
, isl_dim_out
, v
, rational
, 0);
2425 map
= isl_map_domain(map
);
2426 isl_stream_push_token(s
, tok
);
2429 map
= read_optional_formula(s
, map
, v
, rational
);
2431 vars_drop(v
, v
->n
- n
);
2437 obj
.type
= isl_obj_none
;
2441 static struct isl_obj
to_union(isl_ctx
*ctx
, struct isl_obj obj
)
2443 if (obj
.type
== isl_obj_map
) {
2444 obj
.v
= isl_union_map_from_map(obj
.v
);
2445 obj
.type
= isl_obj_union_map
;
2446 } else if (obj
.type
== isl_obj_set
) {
2447 obj
.v
= isl_union_set_from_set(obj
.v
);
2448 obj
.type
= isl_obj_union_set
;
2449 } else if (obj
.type
== isl_obj_pw_qpolynomial
) {
2450 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
2451 obj
.type
= isl_obj_union_pw_qpolynomial
;
2452 } else if (obj
.type
== isl_obj_pw_qpolynomial_fold
) {
2453 obj
.v
= isl_union_pw_qpolynomial_fold_from_pw_qpolynomial_fold(obj
.v
);
2454 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
2456 isl_assert(ctx
, 0, goto error
);
2459 obj
.type
->free(obj
.v
);
2460 obj
.type
= isl_obj_none
;
2464 static struct isl_obj
obj_add(__isl_keep isl_stream
*s
,
2465 struct isl_obj obj1
, struct isl_obj obj2
)
2467 if (obj1
.type
== isl_obj_set
&& obj2
.type
== isl_obj_union_set
)
2468 obj1
= to_union(s
->ctx
, obj1
);
2469 if (obj1
.type
== isl_obj_union_set
&& obj2
.type
== isl_obj_set
)
2470 obj2
= to_union(s
->ctx
, obj2
);
2471 if (obj1
.type
== isl_obj_map
&& obj2
.type
== isl_obj_union_map
)
2472 obj1
= to_union(s
->ctx
, obj1
);
2473 if (obj1
.type
== isl_obj_union_map
&& obj2
.type
== isl_obj_map
)
2474 obj2
= to_union(s
->ctx
, obj2
);
2475 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2476 obj2
.type
== isl_obj_union_pw_qpolynomial
)
2477 obj1
= to_union(s
->ctx
, obj1
);
2478 if (obj1
.type
== isl_obj_union_pw_qpolynomial
&&
2479 obj2
.type
== isl_obj_pw_qpolynomial
)
2480 obj2
= to_union(s
->ctx
, obj2
);
2481 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2482 obj2
.type
== isl_obj_union_pw_qpolynomial_fold
)
2483 obj1
= to_union(s
->ctx
, obj1
);
2484 if (obj1
.type
== isl_obj_union_pw_qpolynomial_fold
&&
2485 obj2
.type
== isl_obj_pw_qpolynomial_fold
)
2486 obj2
= to_union(s
->ctx
, obj2
);
2487 if (obj1
.type
!= obj2
.type
) {
2488 isl_stream_error(s
, NULL
,
2489 "attempt to combine incompatible objects");
2492 if (!obj1
.type
->add
)
2493 isl_die(s
->ctx
, isl_error_internal
,
2494 "combination not supported on object type", goto error
);
2495 if (obj1
.type
== isl_obj_map
&& !isl_map_has_equal_space(obj1
.v
, obj2
.v
)) {
2496 obj1
= to_union(s
->ctx
, obj1
);
2497 obj2
= to_union(s
->ctx
, obj2
);
2499 if (obj1
.type
== isl_obj_set
&& !isl_set_has_equal_space(obj1
.v
, obj2
.v
)) {
2500 obj1
= to_union(s
->ctx
, obj1
);
2501 obj2
= to_union(s
->ctx
, obj2
);
2503 if (obj1
.type
== isl_obj_pw_qpolynomial
&&
2504 !isl_pw_qpolynomial_has_equal_space(obj1
.v
, obj2
.v
)) {
2505 obj1
= to_union(s
->ctx
, obj1
);
2506 obj2
= to_union(s
->ctx
, obj2
);
2508 if (obj1
.type
== isl_obj_pw_qpolynomial_fold
&&
2509 !isl_pw_qpolynomial_fold_has_equal_space(obj1
.v
, obj2
.v
)) {
2510 obj1
= to_union(s
->ctx
, obj1
);
2511 obj2
= to_union(s
->ctx
, obj2
);
2513 obj1
.v
= obj1
.type
->add(obj1
.v
, obj2
.v
);
2516 obj1
.type
->free(obj1
.v
);
2517 obj2
.type
->free(obj2
.v
);
2518 obj1
.type
= isl_obj_none
;
2523 /* Are the first two tokens on "s", "domain" (either as a string
2524 * or as an identifier) followed by ":"?
2526 static int next_is_domain_colon(__isl_keep isl_stream
*s
)
2528 struct isl_token
*tok
;
2532 tok
= isl_stream_next_token(s
);
2535 if (tok
->type
!= ISL_TOKEN_IDENT
&& tok
->type
!= ISL_TOKEN_STRING
) {
2536 isl_stream_push_token(s
, tok
);
2540 name
= isl_token_get_str(s
->ctx
, tok
);
2541 res
= !strcmp(name
, "domain") && isl_stream_next_token_is(s
, ':');
2544 isl_stream_push_token(s
, tok
);
2549 /* Do the first tokens on "s" look like a schedule?
2551 * The root of a schedule is always a domain node, so the first thing
2552 * we expect in the stream is a domain key, i.e., "domain" followed
2553 * by ":". If the schedule was printed in YAML flow style, then
2554 * we additionally expect a "{" to open the outer mapping.
2556 static int next_is_schedule(__isl_keep isl_stream
*s
)
2558 struct isl_token
*tok
;
2561 tok
= isl_stream_next_token(s
);
2564 if (tok
->type
!= '{') {
2565 isl_stream_push_token(s
, tok
);
2566 return next_is_domain_colon(s
);
2569 is_schedule
= next_is_domain_colon(s
);
2570 isl_stream_push_token(s
, tok
);
2575 /* Read an isl_schedule from "s" and store it in an isl_obj.
2577 static struct isl_obj
schedule_read(__isl_keep isl_stream
*s
)
2581 obj
.type
= isl_obj_schedule
;
2582 obj
.v
= isl_stream_read_schedule(s
);
2587 static struct isl_obj
obj_read(__isl_keep isl_stream
*s
)
2589 isl_map
*map
= NULL
;
2590 struct isl_token
*tok
;
2591 struct vars
*v
= NULL
;
2592 struct isl_obj obj
= { isl_obj_set
, NULL
};
2594 if (next_is_schedule(s
))
2595 return schedule_read(s
);
2597 tok
= next_token(s
);
2599 isl_stream_error(s
, NULL
, "unexpected EOF");
2602 if (tok
->type
== ISL_TOKEN_VALUE
) {
2603 struct isl_token
*tok2
;
2604 struct isl_map
*map
;
2606 tok2
= isl_stream_next_token(s
);
2607 if (!tok2
|| tok2
->type
!= ISL_TOKEN_VALUE
||
2608 isl_int_is_neg(tok2
->u
.v
)) {
2610 isl_stream_push_token(s
, tok2
);
2611 obj
.type
= isl_obj_val
;
2612 obj
.v
= isl_val_int_from_isl_int(s
->ctx
, tok
->u
.v
);
2613 isl_token_free(tok
);
2616 isl_stream_push_token(s
, tok2
);
2617 isl_stream_push_token(s
, tok
);
2618 map
= map_read_polylib(s
);
2621 if (isl_map_may_be_set(map
))
2622 obj
.v
= isl_map_range(map
);
2624 obj
.type
= isl_obj_map
;
2629 v
= vars_new(s
->ctx
);
2631 isl_stream_push_token(s
, tok
);
2634 map
= isl_map_universe(isl_space_params_alloc(s
->ctx
, 0));
2635 if (tok
->type
== '[') {
2636 isl_stream_push_token(s
, tok
);
2637 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 0);
2640 tok
= isl_stream_next_token(s
);
2641 if (!tok
|| tok
->type
!= ISL_TOKEN_TO
) {
2642 isl_stream_error(s
, tok
, "expecting '->'");
2644 isl_stream_push_token(s
, tok
);
2647 isl_token_free(tok
);
2648 tok
= isl_stream_next_token(s
);
2650 if (!tok
|| tok
->type
!= '{') {
2651 isl_stream_error(s
, tok
, "expecting '{'");
2653 isl_stream_push_token(s
, tok
);
2656 isl_token_free(tok
);
2658 tok
= isl_stream_next_token(s
);
2661 else if (tok
->type
== ISL_TOKEN_IDENT
&& !strcmp(tok
->u
.s
, "Sym")) {
2662 isl_token_free(tok
);
2663 if (isl_stream_eat(s
, '='))
2665 map
= read_map_tuple(s
, map
, isl_dim_param
, v
, 0, 1);
2668 } else if (tok
->type
== '}') {
2669 obj
.type
= isl_obj_union_set
;
2670 obj
.v
= isl_union_set_empty(isl_map_get_space(map
));
2671 isl_token_free(tok
);
2674 isl_stream_push_token(s
, tok
);
2679 o
= obj_read_body(s
, isl_map_copy(map
), v
);
2680 if (o
.type
== isl_obj_none
|| !o
.v
)
2685 obj
= obj_add(s
, obj
, o
);
2686 if (obj
.type
== isl_obj_none
|| !obj
.v
)
2689 tok
= isl_stream_next_token(s
);
2690 if (!tok
|| tok
->type
!= ';')
2692 isl_token_free(tok
);
2693 if (isl_stream_next_token_is(s
, '}')) {
2694 tok
= isl_stream_next_token(s
);
2699 if (tok
&& tok
->type
== '}') {
2700 isl_token_free(tok
);
2702 isl_stream_error(s
, tok
, "unexpected isl_token");
2704 isl_token_free(tok
);
2714 obj
.type
->free(obj
.v
);
2721 struct isl_obj
isl_stream_read_obj(__isl_keep isl_stream
*s
)
2726 __isl_give isl_map
*isl_stream_read_map(__isl_keep isl_stream
*s
)
2732 isl_assert(s
->ctx
, obj
.type
== isl_obj_map
||
2733 obj
.type
== isl_obj_set
, goto error
);
2735 if (obj
.type
== isl_obj_set
)
2736 obj
.v
= isl_map_from_range(obj
.v
);
2740 obj
.type
->free(obj
.v
);
2744 __isl_give isl_set
*isl_stream_read_set(__isl_keep isl_stream
*s
)
2750 if (obj
.type
== isl_obj_map
&& isl_map_may_be_set(obj
.v
)) {
2751 obj
.v
= isl_map_range(obj
.v
);
2752 obj
.type
= isl_obj_set
;
2754 isl_assert(s
->ctx
, obj
.type
== isl_obj_set
, goto error
);
2759 obj
.type
->free(obj
.v
);
2763 __isl_give isl_union_map
*isl_stream_read_union_map(__isl_keep isl_stream
*s
)
2768 if (obj
.type
== isl_obj_map
) {
2769 obj
.type
= isl_obj_union_map
;
2770 obj
.v
= isl_union_map_from_map(obj
.v
);
2772 if (obj
.type
== isl_obj_set
) {
2773 obj
.type
= isl_obj_union_set
;
2774 obj
.v
= isl_union_set_from_set(obj
.v
);
2776 if (obj
.v
&& obj
.type
== isl_obj_union_set
&&
2777 isl_union_set_is_empty(obj
.v
))
2778 obj
.type
= isl_obj_union_map
;
2779 if (obj
.v
&& obj
.type
!= isl_obj_union_map
)
2780 isl_die(s
->ctx
, isl_error_invalid
, "invalid input", goto error
);
2784 obj
.type
->free(obj
.v
);
2788 __isl_give isl_union_set
*isl_stream_read_union_set(__isl_keep isl_stream
*s
)
2793 if (obj
.type
== isl_obj_set
) {
2794 obj
.type
= isl_obj_union_set
;
2795 obj
.v
= isl_union_set_from_set(obj
.v
);
2798 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_set
, goto error
);
2802 obj
.type
->free(obj
.v
);
2806 static __isl_give isl_basic_map
*basic_map_read(__isl_keep isl_stream
*s
)
2809 struct isl_map
*map
;
2810 struct isl_basic_map
*bmap
;
2813 if (obj
.v
&& (obj
.type
!= isl_obj_map
&& obj
.type
!= isl_obj_set
))
2814 isl_die(s
->ctx
, isl_error_invalid
, "not a (basic) set or map",
2821 isl_die(s
->ctx
, isl_error_invalid
,
2822 "set or map description involves "
2823 "more than one disjunct", goto error
);
2826 bmap
= isl_basic_map_empty(isl_map_get_space(map
));
2828 bmap
= isl_basic_map_copy(map
->p
[0]);
2834 obj
.type
->free(obj
.v
);
2838 static __isl_give isl_basic_set
*basic_set_read(__isl_keep isl_stream
*s
)
2840 isl_basic_map
*bmap
;
2841 bmap
= basic_map_read(s
);
2844 if (!isl_basic_map_may_be_set(bmap
))
2845 isl_die(s
->ctx
, isl_error_invalid
,
2846 "input is not a set", goto error
);
2847 return isl_basic_map_range(bmap
);
2849 isl_basic_map_free(bmap
);
2853 __isl_give isl_basic_map
*isl_basic_map_read_from_file(isl_ctx
*ctx
,
2856 struct isl_basic_map
*bmap
;
2857 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2860 bmap
= basic_map_read(s
);
2865 __isl_give isl_basic_set
*isl_basic_set_read_from_file(isl_ctx
*ctx
,
2868 isl_basic_set
*bset
;
2869 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2872 bset
= basic_set_read(s
);
2877 struct isl_basic_map
*isl_basic_map_read_from_str(struct isl_ctx
*ctx
,
2880 struct isl_basic_map
*bmap
;
2881 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2884 bmap
= basic_map_read(s
);
2889 struct isl_basic_set
*isl_basic_set_read_from_str(struct isl_ctx
*ctx
,
2892 isl_basic_set
*bset
;
2893 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2896 bset
= basic_set_read(s
);
2901 __isl_give isl_map
*isl_map_read_from_file(struct isl_ctx
*ctx
,
2904 struct isl_map
*map
;
2905 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2908 map
= isl_stream_read_map(s
);
2913 __isl_give isl_map
*isl_map_read_from_str(struct isl_ctx
*ctx
,
2916 struct isl_map
*map
;
2917 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2920 map
= isl_stream_read_map(s
);
2925 __isl_give isl_set
*isl_set_read_from_file(struct isl_ctx
*ctx
,
2929 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2932 set
= isl_stream_read_set(s
);
2937 struct isl_set
*isl_set_read_from_str(struct isl_ctx
*ctx
,
2941 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2944 set
= isl_stream_read_set(s
);
2949 __isl_give isl_union_map
*isl_union_map_read_from_file(isl_ctx
*ctx
,
2952 isl_union_map
*umap
;
2953 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2956 umap
= isl_stream_read_union_map(s
);
2961 __isl_give isl_union_map
*isl_union_map_read_from_str(struct isl_ctx
*ctx
,
2964 isl_union_map
*umap
;
2965 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2968 umap
= isl_stream_read_union_map(s
);
2973 __isl_give isl_union_set
*isl_union_set_read_from_file(isl_ctx
*ctx
,
2976 isl_union_set
*uset
;
2977 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
2980 uset
= isl_stream_read_union_set(s
);
2985 __isl_give isl_union_set
*isl_union_set_read_from_str(struct isl_ctx
*ctx
,
2988 isl_union_set
*uset
;
2989 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
2992 uset
= isl_stream_read_union_set(s
);
2997 static __isl_give isl_vec
*isl_vec_read_polylib(__isl_keep isl_stream
*s
)
2999 struct isl_vec
*vec
= NULL
;
3000 struct isl_token
*tok
;
3004 tok
= isl_stream_next_token(s
);
3005 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
3006 isl_stream_error(s
, tok
, "expecting vector length");
3010 size
= isl_int_get_si(tok
->u
.v
);
3011 isl_token_free(tok
);
3013 vec
= isl_vec_alloc(s
->ctx
, size
);
3015 for (j
= 0; j
< size
; ++j
) {
3016 tok
= isl_stream_next_token(s
);
3017 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
3018 isl_stream_error(s
, tok
, "expecting constant value");
3021 isl_int_set(vec
->el
[j
], tok
->u
.v
);
3022 isl_token_free(tok
);
3027 isl_token_free(tok
);
3032 static __isl_give isl_vec
*vec_read(__isl_keep isl_stream
*s
)
3034 return isl_vec_read_polylib(s
);
3037 __isl_give isl_vec
*isl_vec_read_from_file(isl_ctx
*ctx
, FILE *input
)
3040 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
3048 __isl_give isl_pw_qpolynomial
*isl_stream_read_pw_qpolynomial(
3049 __isl_keep isl_stream
*s
)
3055 isl_assert(s
->ctx
, obj
.type
== isl_obj_pw_qpolynomial
,
3060 obj
.type
->free(obj
.v
);
3064 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_str(isl_ctx
*ctx
,
3067 isl_pw_qpolynomial
*pwqp
;
3068 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3071 pwqp
= isl_stream_read_pw_qpolynomial(s
);
3076 __isl_give isl_pw_qpolynomial
*isl_pw_qpolynomial_read_from_file(isl_ctx
*ctx
,
3079 isl_pw_qpolynomial
*pwqp
;
3080 isl_stream
*s
= isl_stream_new_file(ctx
, input
);
3083 pwqp
= isl_stream_read_pw_qpolynomial(s
);
3088 /* Is the next token an identifer not in "v"?
3090 static int next_is_fresh_ident(__isl_keep isl_stream
*s
, struct vars
*v
)
3094 struct isl_token
*tok
;
3096 tok
= isl_stream_next_token(s
);
3099 fresh
= tok
->type
== ISL_TOKEN_IDENT
&& vars_pos(v
, tok
->u
.s
, -1) >= n
;
3100 isl_stream_push_token(s
, tok
);
3102 vars_drop(v
, v
->n
- n
);
3107 /* First read the domain of the affine expression, which may be
3108 * a parameter space or a set.
3109 * The tricky part is that we don't know if the domain is a set or not,
3110 * so when we are trying to read the domain, we may actually be reading
3111 * the affine expression itself (defined on a parameter domains)
3112 * If the tuple we are reading is named, we assume it's the domain.
3113 * Also, if inside the tuple, the first thing we find is a nested tuple
3114 * or a new identifier, we again assume it's the domain.
3115 * Finally, if the tuple is empty, then it must be the domain
3116 * since it does not contain an affine expression.
3117 * Otherwise, we assume we are reading an affine expression.
3119 static __isl_give isl_set
*read_aff_domain(__isl_keep isl_stream
*s
,
3120 __isl_take isl_set
*dom
, struct vars
*v
)
3122 struct isl_token
*tok
, *tok2
;
3125 tok
= isl_stream_next_token(s
);
3126 if (tok
&& (tok
->type
== ISL_TOKEN_IDENT
|| tok
->is_keyword
)) {
3127 isl_stream_push_token(s
, tok
);
3128 return read_map_tuple(s
, dom
, isl_dim_set
, v
, 1, 0);
3130 if (!tok
|| tok
->type
!= '[') {
3131 isl_stream_error(s
, tok
, "expecting '['");
3134 tok2
= isl_stream_next_token(s
);
3135 is_empty
= tok2
&& tok2
->type
== ']';
3137 isl_stream_push_token(s
, tok2
);
3138 if (is_empty
|| next_is_tuple(s
) || next_is_fresh_ident(s
, v
)) {
3139 isl_stream_push_token(s
, tok
);
3140 dom
= read_map_tuple(s
, dom
, isl_dim_set
, v
, 1, 0);
3142 isl_stream_push_token(s
, tok
);
3147 isl_stream_push_token(s
, tok
);
3152 /* Read an affine expression from "s".
3154 __isl_give isl_aff
*isl_stream_read_aff(__isl_keep isl_stream
*s
)
3159 ma
= isl_stream_read_multi_aff(s
);
3162 if (isl_multi_aff_dim(ma
, isl_dim_out
) != 1)
3163 isl_die(s
->ctx
, isl_error_invalid
,
3164 "expecting single affine expression",
3167 aff
= isl_multi_aff_get_aff(ma
, 0);
3168 isl_multi_aff_free(ma
);
3171 isl_multi_aff_free(ma
);
3175 /* Read a piecewise affine expression from "s" with domain (space) "dom".
3177 static __isl_give isl_pw_aff
*read_pw_aff_with_dom(__isl_keep isl_stream
*s
,
3178 __isl_take isl_set
*dom
, struct vars
*v
)
3180 isl_pw_aff
*pwaff
= NULL
;
3182 if (!isl_set_is_params(dom
) && isl_stream_eat(s
, ISL_TOKEN_TO
))
3185 if (isl_stream_eat(s
, '['))
3188 pwaff
= accept_affine(s
, isl_set_get_space(dom
), v
);
3190 if (isl_stream_eat(s
, ']'))
3193 dom
= read_optional_formula(s
, dom
, v
, 0);
3194 pwaff
= isl_pw_aff_intersect_domain(pwaff
, dom
);
3199 isl_pw_aff_free(pwaff
);
3203 __isl_give isl_pw_aff
*isl_stream_read_pw_aff(__isl_keep isl_stream
*s
)
3206 isl_set
*dom
= NULL
;
3208 isl_pw_aff
*pa
= 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_stream_eat(s
, '{'))
3225 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3226 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3227 vars_drop(v
, v
->n
- n
);
3229 while (isl_stream_eat_if_available(s
, ';')) {
3233 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3234 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3235 vars_drop(v
, v
->n
- n
);
3237 pa
= isl_pw_aff_union_add(pa
, pa_i
);
3240 if (isl_stream_eat(s
, '}'))
3249 isl_pw_aff_free(pa
);
3253 __isl_give isl_aff
*isl_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3256 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3259 aff
= isl_stream_read_aff(s
);
3264 __isl_give isl_pw_aff
*isl_pw_aff_read_from_str(isl_ctx
*ctx
, const char *str
)
3267 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3270 pa
= isl_stream_read_pw_aff(s
);
3275 /* Extract an isl_multi_pw_aff with domain space "dom_space"
3276 * from a tuple "tuple" read by read_tuple.
3278 * Note that the function read_tuple accepts tuples where some output or
3279 * set dimensions are defined in terms of other output or set dimensions
3280 * since this function is also used to read maps. As a special case,
3281 * read_tuple also accept dimensions that are defined in terms of themselves
3282 * (i.e., that are not defined).
3283 * These cases are not allowed when extracting an isl_multi_pw_aff so check
3284 * that the definitions of the output/set dimensions do not involve any
3285 * output/set dimensions.
3286 * Finally, drop the output dimensions from the domain of the result
3287 * of read_tuple (which is of the form [input, output] -> [output],
3288 * with anonymous domain) and reset the space.
3290 static __isl_give isl_multi_pw_aff
*extract_mpa_from_tuple(
3291 __isl_take isl_space
*dom_space
, __isl_keep isl_multi_pw_aff
*tuple
)
3295 isl_multi_pw_aff
*mpa
;
3297 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3298 dim
= isl_space_dim(dom_space
, isl_dim_all
);
3299 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3300 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3301 if (!isl_space_is_params(dom_space
))
3302 space
= isl_space_map_from_domain_and_range(
3303 isl_space_copy(dom_space
), space
);
3304 isl_space_free(dom_space
);
3305 mpa
= isl_multi_pw_aff_alloc(space
);
3307 for (i
= 0; i
< n
; ++i
) {
3309 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3311 return isl_multi_pw_aff_free(mpa
);
3312 if (isl_pw_aff_involves_dims(pa
, isl_dim_in
, dim
, i
+ 1)) {
3313 isl_ctx
*ctx
= isl_pw_aff_get_ctx(pa
);
3314 isl_pw_aff_free(pa
);
3315 isl_die(ctx
, isl_error_invalid
,
3316 "not an affine expression",
3317 return isl_multi_pw_aff_free(mpa
));
3319 pa
= isl_pw_aff_drop_dims(pa
, isl_dim_in
, dim
, n
);
3320 space
= isl_multi_pw_aff_get_domain_space(mpa
);
3321 pa
= isl_pw_aff_reset_domain_space(pa
, space
);
3322 mpa
= isl_multi_pw_aff_set_pw_aff(mpa
, i
, pa
);
3328 /* Read a tuple of affine expressions, together with optional constraints
3329 * on the domain from "s". "dom" represents the initial constraints
3332 * The isl_multi_aff may live in either a set or a map space.
3333 * First read the first tuple and check if it is followed by a "->".
3334 * If so, convert the tuple into the domain of the isl_multi_pw_aff and
3335 * read in the next tuple. This tuple (or the first tuple if it was
3336 * not followed by a "->") is then converted into an isl_multi_pw_aff
3337 * through a call to extract_mpa_from_tuple.
3338 * The result is converted to an isl_pw_multi_aff and
3339 * its domain is intersected with the domain.
3341 static __isl_give isl_pw_multi_aff
*read_conditional_multi_aff(
3342 __isl_keep isl_stream
*s
, __isl_take isl_set
*dom
, struct vars
*v
)
3344 isl_multi_pw_aff
*tuple
;
3345 isl_multi_pw_aff
*mpa
;
3346 isl_pw_multi_aff
*pma
;
3349 tuple
= read_tuple(s
, v
, 0, 0);
3352 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3353 isl_map
*map
= map_from_tuple(tuple
, dom
, isl_dim_in
, v
, 0);
3354 dom
= isl_map_domain(map
);
3355 tuple
= read_tuple(s
, v
, 0, 0);
3360 dom
= read_optional_formula(s
, dom
, v
, 0);
3362 vars_drop(v
, v
->n
- n
);
3364 mpa
= extract_mpa_from_tuple(isl_set_get_space(dom
), tuple
);
3365 isl_multi_pw_aff_free(tuple
);
3366 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
3367 pma
= isl_pw_multi_aff_intersect_domain(pma
, dom
);
3375 /* Read an isl_pw_multi_aff from "s".
3377 * In particular, first read the parameters and then read a sequence
3378 * of one or more tuples of affine expressions with optional conditions and
3381 __isl_give isl_pw_multi_aff
*isl_stream_read_pw_multi_aff(
3382 __isl_keep isl_stream
*s
)
3386 isl_pw_multi_aff
*pma
= NULL
;
3388 v
= vars_new(s
->ctx
);
3392 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3393 if (next_is_tuple(s
)) {
3394 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3395 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3398 if (isl_stream_eat(s
, '{'))
3401 pma
= read_conditional_multi_aff(s
, isl_set_copy(dom
), v
);
3403 while (isl_stream_eat_if_available(s
, ';')) {
3404 isl_pw_multi_aff
*pma2
;
3406 pma2
= read_conditional_multi_aff(s
, isl_set_copy(dom
), v
);
3407 pma
= isl_pw_multi_aff_union_add(pma
, pma2
);
3412 if (isl_stream_eat(s
, '}'))
3419 isl_pw_multi_aff_free(pma
);
3425 __isl_give isl_pw_multi_aff
*isl_pw_multi_aff_read_from_str(isl_ctx
*ctx
,
3428 isl_pw_multi_aff
*pma
;
3429 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3432 pma
= isl_stream_read_pw_multi_aff(s
);
3437 /* Read an isl_union_pw_multi_aff from "s".
3438 * We currently read a generic object and if it turns out to be a set or
3439 * a map, we convert that to an isl_union_pw_multi_aff.
3440 * It would be more efficient if we were to construct
3441 * the isl_union_pw_multi_aff directly.
3443 __isl_give isl_union_pw_multi_aff
*isl_stream_read_union_pw_multi_aff(
3444 __isl_keep isl_stream
*s
)
3452 if (obj
.type
== isl_obj_map
|| obj
.type
== isl_obj_set
)
3453 obj
= to_union(s
->ctx
, obj
);
3454 if (obj
.type
== isl_obj_union_map
)
3455 return isl_union_pw_multi_aff_from_union_map(obj
.v
);
3456 if (obj
.type
== isl_obj_union_set
)
3457 return isl_union_pw_multi_aff_from_union_set(obj
.v
);
3459 obj
.type
->free(obj
.v
);
3460 isl_die(s
->ctx
, isl_error_invalid
, "unexpected object type",
3464 /* Read an isl_union_pw_multi_aff from "str".
3466 __isl_give isl_union_pw_multi_aff
*isl_union_pw_multi_aff_read_from_str(
3467 isl_ctx
*ctx
, const char *str
)
3469 isl_union_pw_multi_aff
*upma
;
3470 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3473 upma
= isl_stream_read_union_pw_multi_aff(s
);
3478 /* Assuming "pa" represents a single affine expression defined on a universe
3479 * domain, extract this affine expression.
3481 static __isl_give isl_aff
*aff_from_pw_aff(__isl_take isl_pw_aff
*pa
)
3488 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3489 "expecting single affine expression",
3491 if (!isl_set_plain_is_universe(pa
->p
[0].set
))
3492 isl_die(isl_pw_aff_get_ctx(pa
), isl_error_invalid
,
3493 "expecting universe domain",
3496 aff
= isl_aff_copy(pa
->p
[0].aff
);
3497 isl_pw_aff_free(pa
);
3500 isl_pw_aff_free(pa
);
3504 /* This function is called for each element in a tuple inside
3505 * isl_stream_read_multi_val.
3506 * Read an isl_val from "s" and add it to *list.
3508 static __isl_give isl_space
*read_val_el(__isl_keep isl_stream
*s
,
3509 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3511 isl_val_list
**list
= (isl_val_list
**) user
;
3514 val
= isl_stream_read_val(s
);
3515 *list
= isl_val_list_add(*list
, val
);
3517 return isl_space_free(space
);
3522 /* Read an isl_multi_val from "s".
3524 * We first read a tuple space, collecting the element values in a list.
3525 * Then we create an isl_multi_val from the space and the isl_val_list.
3527 __isl_give isl_multi_val
*isl_stream_read_multi_val(__isl_keep isl_stream
*s
)
3530 isl_set
*dom
= NULL
;
3532 isl_multi_val
*mv
= NULL
;
3535 v
= vars_new(s
->ctx
);
3539 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3540 if (next_is_tuple(s
)) {
3541 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3542 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3545 if (!isl_set_plain_is_universe(dom
))
3546 isl_die(s
->ctx
, isl_error_invalid
,
3547 "expecting universe parameter domain", goto error
);
3548 if (isl_stream_eat(s
, '{'))
3551 space
= isl_set_get_space(dom
);
3553 list
= isl_val_list_alloc(s
->ctx
, 0);
3554 space
= read_tuple_space(s
, v
, space
, 1, 0, &read_val_el
, &list
);
3555 mv
= isl_multi_val_from_val_list(space
, list
);
3557 if (isl_stream_eat(s
, '}'))
3566 isl_multi_val_free(mv
);
3570 /* Read an isl_multi_val from "str".
3572 __isl_give isl_multi_val
*isl_multi_val_read_from_str(isl_ctx
*ctx
,
3576 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3579 mv
= isl_stream_read_multi_val(s
);
3584 /* Read a multi-affine expression from "s".
3585 * If the multi-affine expression has a domain, then the tuple
3586 * representing this domain cannot involve any affine expressions.
3587 * The tuple representing the actual expressions needs to consist
3588 * of only affine expressions. Moreover, these expressions can
3589 * only depend on parameters and input dimensions and not on other
3590 * output dimensions.
3592 __isl_give isl_multi_aff
*isl_stream_read_multi_aff(__isl_keep isl_stream
*s
)
3595 isl_set
*dom
= NULL
;
3596 isl_multi_pw_aff
*tuple
= NULL
;
3598 isl_space
*space
, *dom_space
;
3599 isl_multi_aff
*ma
= NULL
;
3601 v
= vars_new(s
->ctx
);
3605 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3606 if (next_is_tuple(s
)) {
3607 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3608 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3611 if (!isl_set_plain_is_universe(dom
))
3612 isl_die(s
->ctx
, isl_error_invalid
,
3613 "expecting universe parameter domain", goto error
);
3614 if (isl_stream_eat(s
, '{'))
3617 tuple
= read_tuple(s
, v
, 0, 0);
3620 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3625 has_expr
= tuple_has_expr(tuple
);
3629 isl_die(s
->ctx
, isl_error_invalid
,
3630 "expecting universe domain", goto error
);
3631 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3632 set
= isl_set_universe(space
);
3633 dom
= isl_set_intersect_params(set
, dom
);
3634 isl_multi_pw_aff_free(tuple
);
3635 tuple
= read_tuple(s
, v
, 0, 0);
3640 if (isl_stream_eat(s
, '}'))
3643 n
= isl_multi_pw_aff_dim(tuple
, isl_dim_out
);
3644 dim
= isl_set_dim(dom
, isl_dim_all
);
3645 dom_space
= isl_set_get_space(dom
);
3646 space
= isl_space_range(isl_multi_pw_aff_get_space(tuple
));
3647 space
= isl_space_align_params(space
, isl_space_copy(dom_space
));
3648 if (!isl_space_is_params(dom_space
))
3649 space
= isl_space_map_from_domain_and_range(
3650 isl_space_copy(dom_space
), space
);
3651 isl_space_free(dom_space
);
3652 ma
= isl_multi_aff_alloc(space
);
3654 for (i
= 0; i
< n
; ++i
) {
3657 pa
= isl_multi_pw_aff_get_pw_aff(tuple
, i
);
3658 aff
= aff_from_pw_aff(pa
);
3661 if (isl_aff_involves_dims(aff
, isl_dim_in
, dim
, i
+ 1)) {
3663 isl_die(s
->ctx
, isl_error_invalid
,
3664 "not an affine expression", goto error
);
3666 aff
= isl_aff_drop_dims(aff
, isl_dim_in
, dim
, n
);
3667 space
= isl_multi_aff_get_domain_space(ma
);
3668 aff
= isl_aff_reset_domain_space(aff
, space
);
3669 ma
= isl_multi_aff_set_aff(ma
, i
, aff
);
3672 isl_multi_pw_aff_free(tuple
);
3677 isl_multi_pw_aff_free(tuple
);
3680 isl_multi_aff_free(ma
);
3684 __isl_give isl_multi_aff
*isl_multi_aff_read_from_str(isl_ctx
*ctx
,
3687 isl_multi_aff
*maff
;
3688 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3691 maff
= isl_stream_read_multi_aff(s
);
3696 /* Read an isl_multi_pw_aff from "s".
3698 * The input format is similar to that of map, except that any conditions
3699 * on the domains should be specified inside the tuple since each
3700 * piecewise affine expression may have a different domain.
3702 * Since we do not know in advance if the isl_multi_pw_aff lives
3703 * in a set or a map space, we first read the first tuple and check
3704 * if it is followed by a "->". If so, we convert the tuple into
3705 * the domain of the isl_multi_pw_aff and read in the next tuple.
3706 * This tuple (or the first tuple if it was not followed by a "->")
3707 * is then converted into the isl_multi_pw_aff through a call
3708 * to extract_mpa_from_tuple and the domain of the result
3709 * is intersected with the domain.
3711 __isl_give isl_multi_pw_aff
*isl_stream_read_multi_pw_aff(
3712 __isl_keep isl_stream
*s
)
3715 isl_set
*dom
= NULL
;
3716 isl_multi_pw_aff
*tuple
= NULL
;
3717 isl_multi_pw_aff
*mpa
= NULL
;
3719 v
= vars_new(s
->ctx
);
3723 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3724 if (next_is_tuple(s
)) {
3725 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3726 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3729 if (isl_stream_eat(s
, '{'))
3732 tuple
= read_tuple(s
, v
, 0, 0);
3735 if (isl_stream_eat_if_available(s
, ISL_TOKEN_TO
)) {
3736 isl_map
*map
= map_from_tuple(tuple
, dom
, isl_dim_in
, v
, 0);
3737 dom
= isl_map_domain(map
);
3738 tuple
= read_tuple(s
, v
, 0, 0);
3743 if (isl_stream_eat(s
, '}'))
3746 mpa
= extract_mpa_from_tuple(isl_set_get_space(dom
), tuple
);
3748 isl_multi_pw_aff_free(tuple
);
3750 mpa
= isl_multi_pw_aff_intersect_domain(mpa
, dom
);
3753 isl_multi_pw_aff_free(tuple
);
3756 isl_multi_pw_aff_free(mpa
);
3760 /* Read an isl_multi_pw_aff from "str".
3762 __isl_give isl_multi_pw_aff
*isl_multi_pw_aff_read_from_str(isl_ctx
*ctx
,
3765 isl_multi_pw_aff
*mpa
;
3766 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3769 mpa
= isl_stream_read_multi_pw_aff(s
);
3774 /* Read the body of an isl_union_pw_aff from "s" with parameter domain "dom".
3776 static __isl_give isl_union_pw_aff
*read_union_pw_aff_with_dom(
3777 __isl_keep isl_stream
*s
, __isl_take isl_set
*dom
, struct vars
*v
)
3780 isl_union_pw_aff
*upa
= NULL
;
3785 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3786 pa
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3787 vars_drop(v
, v
->n
- n
);
3789 upa
= isl_union_pw_aff_from_pw_aff(pa
);
3791 while (isl_stream_eat_if_available(s
, ';')) {
3793 isl_union_pw_aff
*upa_i
;
3796 aff_dom
= read_aff_domain(s
, isl_set_copy(dom
), v
);
3797 pa_i
= read_pw_aff_with_dom(s
, aff_dom
, v
);
3798 vars_drop(v
, v
->n
- n
);
3800 upa_i
= isl_union_pw_aff_from_pw_aff(pa_i
);
3801 upa
= isl_union_pw_aff_union_add(upa
, upa_i
);
3808 /* Read an isl_union_pw_aff from "s".
3810 * First check if there are any paramters, then read in the opening brace
3811 * and use read_union_pw_aff_with_dom to read in the body of
3812 * the isl_union_pw_aff. Finally, read the closing brace.
3814 __isl_give isl_union_pw_aff
*isl_stream_read_union_pw_aff(
3815 __isl_keep isl_stream
*s
)
3819 isl_union_pw_aff
*upa
= NULL
;
3821 v
= vars_new(s
->ctx
);
3825 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3826 if (next_is_tuple(s
)) {
3827 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3828 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3831 if (isl_stream_eat(s
, '{'))
3834 upa
= read_union_pw_aff_with_dom(s
, isl_set_copy(dom
), v
);
3836 if (isl_stream_eat(s
, '}'))
3845 isl_union_pw_aff_free(upa
);
3849 /* Read an isl_union_pw_aff from "str".
3851 __isl_give isl_union_pw_aff
*isl_union_pw_aff_read_from_str(isl_ctx
*ctx
,
3854 isl_union_pw_aff
*upa
;
3855 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
3858 upa
= isl_stream_read_union_pw_aff(s
);
3863 /* This function is called for each element in a tuple inside
3864 * isl_stream_read_multi_union_pw_aff.
3866 * Read a '{', the union piecewise affine expression body and a '}' and
3867 * add the isl_union_pw_aff to *list.
3869 static __isl_give isl_space
*read_union_pw_aff_el(__isl_keep isl_stream
*s
,
3870 struct vars
*v
, __isl_take isl_space
*space
, int rational
, void *user
)
3873 isl_union_pw_aff
*upa
;
3874 isl_union_pw_aff_list
**list
= (isl_union_pw_aff_list
**) user
;
3876 dom
= isl_set_universe(isl_space_params(isl_space_copy(space
)));
3877 if (isl_stream_eat(s
, '{'))
3879 upa
= read_union_pw_aff_with_dom(s
, dom
, v
);
3880 *list
= isl_union_pw_aff_list_add(*list
, upa
);
3881 if (isl_stream_eat(s
, '}'))
3882 return isl_space_free(space
);
3884 return isl_space_free(space
);
3888 return isl_space_free(space
);
3891 /* Do the next tokens in "s" correspond to an empty tuple?
3892 * In particular, does the stream start with a '[', followed by a ']',
3893 * not followed by a "->"?
3895 static int next_is_empty_tuple(__isl_keep isl_stream
*s
)
3897 struct isl_token
*tok
, *tok2
, *tok3
;
3898 int is_empty_tuple
= 0;
3900 tok
= isl_stream_next_token(s
);
3903 if (tok
->type
!= '[') {
3904 isl_stream_push_token(s
, tok
);
3908 tok2
= isl_stream_next_token(s
);
3909 if (tok2
&& tok2
->type
== ']') {
3910 tok3
= isl_stream_next_token(s
);
3911 is_empty_tuple
= !tok
|| tok
->type
!= ISL_TOKEN_TO
;
3913 isl_stream_push_token(s
, tok3
);
3916 isl_stream_push_token(s
, tok2
);
3917 isl_stream_push_token(s
, tok
);
3919 return is_empty_tuple
;
3922 /* Do the next tokens in "s" correspond to a tuple of parameters?
3923 * In particular, does the stream start with a '[' that is not
3924 * followed by a '{' or a nested tuple?
3926 static int next_is_param_tuple(__isl_keep isl_stream
*s
)
3928 struct isl_token
*tok
, *tok2
;
3931 tok
= isl_stream_next_token(s
);
3934 if (tok
->type
!= '[' || next_is_tuple(s
)) {
3935 isl_stream_push_token(s
, tok
);
3939 tok2
= isl_stream_next_token(s
);
3940 is_tuple
= tok2
&& tok2
->type
!= '{';
3942 isl_stream_push_token(s
, tok2
);
3943 isl_stream_push_token(s
, tok
);
3948 /* Read an isl_multi_union_pw_aff from "s".
3950 * The input has the form
3952 * [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3956 * [..] -> [{ [..] : ... ; [..] : ... }, { [..] : ... ; [..] : ... }]
3958 * We first check for the special case of an empty tuple "[]".
3959 * Then we check if there are any parameters.
3960 * Finally, we read the tuple, collecting the individual isl_union_pw_aff
3961 * elements in a list and construct the result from the tuple space and
3964 __isl_give isl_multi_union_pw_aff
*isl_stream_read_multi_union_pw_aff(
3965 __isl_keep isl_stream
*s
)
3968 isl_set
*dom
= NULL
;
3970 isl_multi_union_pw_aff
*mupa
= NULL
;
3971 isl_union_pw_aff_list
*list
;
3973 if (next_is_empty_tuple(s
)) {
3974 if (isl_stream_eat(s
, '['))
3976 if (isl_stream_eat(s
, ']'))
3978 space
= isl_space_set_alloc(s
->ctx
, 0, 0);
3979 return isl_multi_union_pw_aff_zero(space
);
3982 v
= vars_new(s
->ctx
);
3986 dom
= isl_set_universe(isl_space_params_alloc(s
->ctx
, 0));
3987 if (next_is_param_tuple(s
)) {
3988 dom
= read_map_tuple(s
, dom
, isl_dim_param
, v
, 1, 0);
3989 if (isl_stream_eat(s
, ISL_TOKEN_TO
))
3992 space
= isl_set_get_space(dom
);
3994 list
= isl_union_pw_aff_list_alloc(s
->ctx
, 0);
3995 space
= read_tuple_space(s
, v
, space
, 1, 0,
3996 &read_union_pw_aff_el
, &list
);
3997 mupa
= isl_multi_union_pw_aff_from_union_pw_aff_list(space
, list
);
4005 isl_multi_union_pw_aff_free(mupa
);
4009 /* Read an isl_multi_union_pw_aff from "str".
4011 __isl_give isl_multi_union_pw_aff
*isl_multi_union_pw_aff_read_from_str(
4012 isl_ctx
*ctx
, const char *str
)
4014 isl_multi_union_pw_aff
*mupa
;
4015 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
4018 mupa
= isl_stream_read_multi_union_pw_aff(s
);
4023 __isl_give isl_union_pw_qpolynomial
*isl_stream_read_union_pw_qpolynomial(
4024 __isl_keep isl_stream
*s
)
4029 if (obj
.type
== isl_obj_pw_qpolynomial
) {
4030 obj
.type
= isl_obj_union_pw_qpolynomial
;
4031 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
4034 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_pw_qpolynomial
,
4039 obj
.type
->free(obj
.v
);
4043 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_read_from_str(
4044 isl_ctx
*ctx
, const char *str
)
4046 isl_union_pw_qpolynomial
*upwqp
;
4047 isl_stream
*s
= isl_stream_new_str(ctx
, str
);
4050 upwqp
= isl_stream_read_union_pw_qpolynomial(s
);