5 #include <isl_stream.h>
6 #include <isl_vertices.h>
7 #include <isl_obj_list.h>
8 #include <isl_obj_str.h>
9 #include <barvinok/barvinok.h>
14 #include <cloog/isl/cloog.h>
17 static int isl_bool_false
= 0;
18 static int isl_bool_true
= 1;
19 static int isl_bool_error
= -1;
21 enum iscc_op
{ ISCC_READ
, ISCC_SOURCE
, ISCC_VERTICES
,
22 ISCC_LAST
, ISCC_ANY
, ISCC_BEFORE
, ISCC_UNDER
, ISCC_N_OP
};
23 static const char *op_name
[ISCC_N_OP
] = {
24 "read", "source", "vertices", "last", "any", "before", "under" };
25 static enum isl_token_type iscc_op
[ISCC_N_OP
];
27 struct isl_arg_choice iscc_format
[] = {
28 {"isl", ISL_FORMAT_ISL
},
29 {"omega", ISL_FORMAT_OMEGA
},
30 {"polylib", ISL_FORMAT_POLYLIB
},
31 {"ext-polylib", ISL_FORMAT_EXT_POLYLIB
},
32 {"latex", ISL_FORMAT_LATEX
},
38 struct barvinok_options
*barvinok
;
42 struct isl_arg iscc_options_arg
[] = {
43 ISL_ARG_CHILD(struct iscc_options
, barvinok
, "barvinok", barvinok_options_arg
,
45 ISL_ARG_CHOICE(struct iscc_options
, format
, 0, "format", \
46 iscc_format
, ISL_FORMAT_ISL
, "output format")
50 ISL_ARG_DEF(iscc_options
, struct iscc_options
, iscc_options_arg
)
52 static void *isl_obj_bool_copy(void *v
)
57 static void isl_obj_bool_free(void *v
)
61 static __isl_give isl_printer
*isl_obj_bool_print(__isl_take isl_printer
*p
,
64 if (v
== &isl_bool_true
)
65 return isl_printer_print_str(p
, "True");
66 else if (v
== &isl_bool_false
)
67 return isl_printer_print_str(p
, "False");
69 return isl_printer_print_str(p
, "Error");
72 static void *isl_obj_bool_add(void *v1
, void *v2
)
77 struct isl_obj_vtable isl_obj_bool_vtable
= {
83 #define isl_obj_bool (&isl_obj_bool_vtable)
85 int *isl_bool_from_int(int res
)
87 return res
< 0 ? &isl_bool_error
: res
? &isl_bool_true
: &isl_bool_false
;
90 int *union_map_is_equal(__isl_take isl_union_map
*map1
,
91 __isl_take isl_union_map
*map2
)
93 int res
= isl_union_map_is_equal(map1
, map2
);
94 isl_union_map_free(map1
);
95 isl_union_map_free(map2
);
96 return isl_bool_from_int(res
);
98 int *union_set_is_equal(__isl_take isl_union_set
*set1
,
99 __isl_take isl_union_set
*set2
)
101 return union_map_is_equal((isl_union_map
*)set1
, (isl_union_map
*)set2
);
104 int *union_map_is_subset(__isl_take isl_union_map
*map1
,
105 __isl_take isl_union_map
*map2
)
107 int res
= isl_union_map_is_subset(map1
, map2
);
108 isl_union_map_free(map1
);
109 isl_union_map_free(map2
);
110 return isl_bool_from_int(res
);
112 int *union_set_is_subset(__isl_take isl_union_set
*set1
,
113 __isl_take isl_union_set
*set2
)
115 return union_map_is_subset((isl_union_map
*)set1
, (isl_union_map
*)set2
);
118 int *union_map_is_strict_subset(__isl_take isl_union_map
*map1
,
119 __isl_take isl_union_map
*map2
)
121 int res
= isl_union_map_is_strict_subset(map1
, map2
);
122 isl_union_map_free(map1
);
123 isl_union_map_free(map2
);
124 return isl_bool_from_int(res
);
126 int *union_set_is_strict_subset(__isl_take isl_union_set
*set1
,
127 __isl_take isl_union_set
*set2
)
129 return union_map_is_strict_subset((isl_union_map
*)set1
,
130 (isl_union_map
*)set2
);
133 int *union_map_is_superset(__isl_take isl_union_map
*map1
,
134 __isl_take isl_union_map
*map2
)
136 return union_map_is_subset(map2
, map1
);
138 int *union_set_is_superset(__isl_take isl_union_set
*set1
,
139 __isl_take isl_union_set
*set2
)
141 return union_set_is_subset(set2
, set1
);
144 int *union_map_is_strict_superset(__isl_take isl_union_map
*map1
,
145 __isl_take isl_union_map
*map2
)
147 return union_map_is_strict_subset(map2
, map1
);
149 int *union_set_is_strict_superset(__isl_take isl_union_set
*set1
,
150 __isl_take isl_union_set
*set2
)
152 return union_set_is_strict_subset(set2
, set1
);
155 extern struct isl_obj_vtable isl_obj_list_vtable
;
156 #define isl_obj_list (&isl_obj_list_vtable)
158 typedef void *(*isc_bin_op_fn
)(void *lhs
, void *rhs
);
160 enum isl_token_type op
;
166 struct isc_named_bin_op
{
168 struct isc_bin_op op
;
172 isl_union_pw_qpolynomial
*upwqp
;
173 isl_union_pw_qpolynomial
*res
;
176 static int eval_at(__isl_take isl_point
*pnt
, void *user
)
178 struct iscc_at
*at
= (struct iscc_at
*) user
;
182 set
= isl_set_from_point(isl_point_copy(pnt
));
183 qp
= isl_union_pw_qpolynomial_eval(
184 isl_union_pw_qpolynomial_copy(at
->upwqp
), pnt
);
186 at
->res
= isl_union_pw_qpolynomial_add(at
->res
,
187 isl_union_pw_qpolynomial_from_pw_qpolynomial(
188 isl_pw_qpolynomial_alloc(set
, qp
)));
193 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_at(
194 __isl_take isl_union_pw_qpolynomial
*upwqp
,
195 __isl_take isl_union_set
*uset
)
200 at
.res
= isl_union_pw_qpolynomial_zero(isl_union_set_get_dim(uset
));
202 isl_union_set_foreach_point(uset
, eval_at
, &at
);
204 isl_union_pw_qpolynomial_free(upwqp
);
205 isl_union_set_free(uset
);
210 struct iscc_fold_at
{
211 isl_union_pw_qpolynomial_fold
*upwf
;
212 isl_union_pw_qpolynomial
*res
;
215 static int eval_fold_at(__isl_take isl_point
*pnt
, void *user
)
217 struct iscc_fold_at
*at
= (struct iscc_fold_at
*) user
;
221 set
= isl_set_from_point(isl_point_copy(pnt
));
222 qp
= isl_union_pw_qpolynomial_fold_eval(
223 isl_union_pw_qpolynomial_fold_copy(at
->upwf
), pnt
);
225 at
->res
= isl_union_pw_qpolynomial_add(at
->res
,
226 isl_union_pw_qpolynomial_from_pw_qpolynomial(
227 isl_pw_qpolynomial_alloc(set
, qp
)));
232 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_fold_at(
233 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
234 __isl_take isl_union_set
*uset
)
236 struct iscc_fold_at at
;
239 at
.res
= isl_union_pw_qpolynomial_zero(isl_union_set_get_dim(uset
));
241 isl_union_set_foreach_point(uset
, eval_fold_at
, &at
);
243 isl_union_pw_qpolynomial_fold_free(upwf
);
244 isl_union_set_free(uset
);
249 static __isl_give isl_union_pw_qpolynomial_fold
*union_pw_qpolynomial_add_union_pw_qpolynomial_fold(
250 __isl_take isl_union_pw_qpolynomial
*upwqp
,
251 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
253 return isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial(upwf
,
257 static __isl_give
struct isl_list
*union_map_apply_union_pw_qpolynomial_fold(
258 __isl_take isl_union_map
*umap
,
259 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
262 struct isl_list
*list
;
265 ctx
= isl_union_map_get_ctx(umap
);
266 list
= isl_list_alloc(ctx
, 2);
270 list
->obj
[0].type
= isl_obj_union_pw_qpolynomial_fold
;
271 list
->obj
[0].v
= isl_union_map_apply_union_pw_qpolynomial_fold(umap
,
273 list
->obj
[1].type
= isl_obj_bool
;
274 list
->obj
[1].v
= tight
? &isl_bool_true
: &isl_bool_false
;
275 if (tight
< 0 || !list
->obj
[0].v
)
280 isl_union_map_free(umap
);
281 isl_union_pw_qpolynomial_fold_free(upwf
);
287 struct isc_bin_op bin_ops
[] = {
288 { '+', isl_obj_union_set
, isl_obj_union_set
,
290 (isc_bin_op_fn
) &isl_union_set_union
},
291 { '+', isl_obj_union_map
, isl_obj_union_map
,
293 (isc_bin_op_fn
) &isl_union_map_union
},
294 { '-', isl_obj_union_set
, isl_obj_union_set
,
296 (isc_bin_op_fn
) &isl_union_set_subtract
},
297 { '-', isl_obj_union_map
, isl_obj_union_map
,
299 (isc_bin_op_fn
) &isl_union_map_subtract
},
300 { '*', isl_obj_union_set
, isl_obj_union_set
,
302 (isc_bin_op_fn
) &isl_union_set_intersect
},
303 { '*', isl_obj_union_map
, isl_obj_union_map
,
305 (isc_bin_op_fn
) &isl_union_map_intersect
},
306 { '*', isl_obj_union_map
, isl_obj_union_set
,
308 (isc_bin_op_fn
) &isl_union_map_intersect_domain
},
309 { '.', isl_obj_union_map
, isl_obj_union_map
,
311 (isc_bin_op_fn
) &isl_union_map_apply_range
},
312 { '.', isl_obj_union_map
, isl_obj_union_pw_qpolynomial
,
313 isl_obj_union_pw_qpolynomial
,
314 (isc_bin_op_fn
) &isl_union_map_apply_union_pw_qpolynomial
},
315 { '.', isl_obj_union_map
, isl_obj_union_pw_qpolynomial_fold
,
317 (isc_bin_op_fn
) &union_map_apply_union_pw_qpolynomial_fold
},
318 { ISL_TOKEN_TO
, isl_obj_union_set
, isl_obj_union_set
,
320 (isc_bin_op_fn
) &isl_union_map_from_domain_and_range
},
321 { '=', isl_obj_union_set
, isl_obj_union_set
, isl_obj_bool
,
322 (isc_bin_op_fn
) &union_set_is_equal
},
323 { '=', isl_obj_union_map
, isl_obj_union_map
, isl_obj_bool
,
324 (isc_bin_op_fn
) &union_map_is_equal
},
325 { ISL_TOKEN_LE
, isl_obj_union_set
, isl_obj_union_set
,
326 isl_obj_bool
, (isc_bin_op_fn
) &union_set_is_subset
},
327 { ISL_TOKEN_LE
, isl_obj_union_map
, isl_obj_union_map
,
328 isl_obj_bool
, (isc_bin_op_fn
) &union_map_is_subset
},
329 { ISL_TOKEN_LT
, isl_obj_union_set
, isl_obj_union_set
,
330 isl_obj_bool
, (isc_bin_op_fn
) &union_set_is_strict_subset
},
331 { ISL_TOKEN_LT
, isl_obj_union_map
, isl_obj_union_map
,
332 isl_obj_bool
, (isc_bin_op_fn
) &union_map_is_strict_subset
},
333 { ISL_TOKEN_GE
, isl_obj_union_set
, isl_obj_union_set
,
334 isl_obj_bool
, (isc_bin_op_fn
) &union_set_is_superset
},
335 { ISL_TOKEN_GE
, isl_obj_union_map
, isl_obj_union_map
,
336 isl_obj_bool
, (isc_bin_op_fn
) &union_map_is_superset
},
337 { ISL_TOKEN_GT
, isl_obj_union_set
, isl_obj_union_set
,
338 isl_obj_bool
, (isc_bin_op_fn
) &union_set_is_strict_superset
},
339 { ISL_TOKEN_GT
, isl_obj_union_map
, isl_obj_union_map
,
340 isl_obj_bool
, (isc_bin_op_fn
) &union_map_is_strict_superset
},
341 { ISL_TOKEN_LEX_LE
, isl_obj_union_set
, isl_obj_union_set
,
343 (isc_bin_op_fn
) &isl_union_set_lex_le_union_set
},
344 { ISL_TOKEN_LEX_LT
, isl_obj_union_set
, isl_obj_union_set
,
346 (isc_bin_op_fn
) &isl_union_set_lex_lt_union_set
},
347 { ISL_TOKEN_LEX_GE
, isl_obj_union_set
, isl_obj_union_set
,
349 (isc_bin_op_fn
) &isl_union_set_lex_ge_union_set
},
350 { ISL_TOKEN_LEX_GT
, isl_obj_union_set
, isl_obj_union_set
,
352 (isc_bin_op_fn
) &isl_union_set_lex_gt_union_set
},
353 { ISL_TOKEN_LEX_LE
, isl_obj_union_map
, isl_obj_union_map
,
355 (isc_bin_op_fn
) &isl_union_map_lex_le_union_map
},
356 { ISL_TOKEN_LEX_LT
, isl_obj_union_map
, isl_obj_union_map
,
358 (isc_bin_op_fn
) &isl_union_map_lex_lt_union_map
},
359 { ISL_TOKEN_LEX_GE
, isl_obj_union_map
, isl_obj_union_map
,
361 (isc_bin_op_fn
) &isl_union_map_lex_ge_union_map
},
362 { ISL_TOKEN_LEX_GT
, isl_obj_union_map
, isl_obj_union_map
,
364 (isc_bin_op_fn
) &isl_union_map_lex_gt_union_map
},
365 { '.', isl_obj_union_pw_qpolynomial_fold
,
366 isl_obj_union_pw_qpolynomial_fold
,
367 isl_obj_union_pw_qpolynomial_fold
,
368 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_fold
},
369 { '+', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
370 isl_obj_union_pw_qpolynomial
,
371 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_add
},
372 { '+', isl_obj_union_pw_qpolynomial
,
373 isl_obj_union_pw_qpolynomial_fold
,
374 isl_obj_union_pw_qpolynomial_fold
,
375 (isc_bin_op_fn
) &union_pw_qpolynomial_add_union_pw_qpolynomial_fold
},
376 { '+', isl_obj_union_pw_qpolynomial_fold
,
377 isl_obj_union_pw_qpolynomial
,
378 isl_obj_union_pw_qpolynomial_fold
,
379 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial
},
380 { '-', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
381 isl_obj_union_pw_qpolynomial
,
382 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_sub
},
383 { '*', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
384 isl_obj_union_pw_qpolynomial
,
385 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_mul
},
386 { '*', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
387 isl_obj_union_pw_qpolynomial
,
388 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_intersect_domain
},
389 { '*', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
390 isl_obj_union_pw_qpolynomial_fold
,
391 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_intersect_domain
},
392 { '@', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
393 isl_obj_union_pw_qpolynomial
,
394 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_at
},
395 { '@', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
396 isl_obj_union_pw_qpolynomial
,
397 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_at
},
398 { '%', isl_obj_union_set
, isl_obj_union_set
,
400 (isc_bin_op_fn
) &isl_union_set_gist
},
401 { '%', isl_obj_union_map
, isl_obj_union_map
,
403 (isc_bin_op_fn
) &isl_union_map_gist
},
404 { '%', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
405 isl_obj_union_pw_qpolynomial
,
406 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_gist
},
407 { '%', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
408 isl_obj_union_pw_qpolynomial_fold
,
409 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_gist
},
410 { '+', isl_obj_str
, isl_obj_str
, isl_obj_str
,
411 (isc_bin_op_fn
) &isl_str_concat
},
415 static __isl_give isl_union_map
*map_after_map(__isl_take isl_union_map
*umap1
,
416 __isl_take isl_union_map
*umap2
)
418 return isl_union_map_apply_range(umap2
, umap1
);
421 static __isl_give isl_union_pw_qpolynomial
*qpolynomial_after_map(
422 __isl_take isl_union_pw_qpolynomial
*upwqp
,
423 __isl_take isl_union_map
*umap
)
425 return isl_union_map_apply_union_pw_qpolynomial(umap
, upwqp
);
428 static __isl_give
struct isl_list
*qpolynomial_fold_after_map(
429 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
430 __isl_take isl_union_map
*umap
)
432 return union_map_apply_union_pw_qpolynomial_fold(umap
, upwf
);
435 struct isc_named_bin_op named_bin_ops
[] = {
436 { "after", { -1, isl_obj_union_map
, isl_obj_union_map
,
438 (isc_bin_op_fn
) &map_after_map
} },
439 { "after", { -1, isl_obj_union_pw_qpolynomial
,
440 isl_obj_union_map
, isl_obj_union_pw_qpolynomial
,
441 (isc_bin_op_fn
) &qpolynomial_after_map
} },
442 { "after", { -1, isl_obj_union_pw_qpolynomial_fold
,
443 isl_obj_union_map
, isl_obj_list
,
444 (isc_bin_op_fn
) &qpolynomial_fold_after_map
} },
445 { "before", { -1, isl_obj_union_map
, isl_obj_union_map
,
447 (isc_bin_op_fn
) &isl_union_map_apply_range
} },
448 { "before", { -1, isl_obj_union_map
,
449 isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
450 (isc_bin_op_fn
) &isl_union_map_apply_union_pw_qpolynomial
} },
451 { "before", { -1, isl_obj_union_map
,
452 isl_obj_union_pw_qpolynomial_fold
, isl_obj_list
,
453 (isc_bin_op_fn
) &union_map_apply_union_pw_qpolynomial_fold
} },
454 { "cross", { -1, isl_obj_union_set
, isl_obj_union_set
,
456 (isc_bin_op_fn
) &isl_union_set_product
} },
457 { "cross", { -1, isl_obj_union_map
, isl_obj_union_map
,
459 (isc_bin_op_fn
) &isl_union_map_product
} },
463 __isl_give isl_set
*union_set_sample(__isl_take isl_union_set
*uset
)
465 return isl_set_from_basic_set(isl_union_set_sample(uset
));
468 __isl_give isl_map
*union_map_sample(__isl_take isl_union_map
*umap
)
470 return isl_map_from_basic_map(isl_union_map_sample(umap
));
473 static __isl_give
struct isl_list
*union_pw_qpolynomial_upper_bound(
474 __isl_take isl_union_pw_qpolynomial
*upwqp
)
477 struct isl_list
*list
;
480 ctx
= isl_union_pw_qpolynomial_get_ctx(upwqp
);
481 list
= isl_list_alloc(ctx
, 2);
485 list
->obj
[0].type
= isl_obj_union_pw_qpolynomial_fold
;
486 list
->obj
[0].v
= isl_union_pw_qpolynomial_bound(upwqp
,
487 isl_fold_max
, &tight
);
488 list
->obj
[1].type
= isl_obj_bool
;
489 list
->obj
[1].v
= tight
? &isl_bool_true
: &isl_bool_false
;
490 if (tight
< 0 || !list
->obj
[0].v
)
495 isl_union_pw_qpolynomial_free(upwqp
);
502 void *map_codegen(void *arg
)
505 isl_union_map
*umap
= (isl_union_map
*)arg
;
506 isl_ctx
*ctx
= isl_union_map_get_ctx(umap
);
508 CloogOptions
*options
;
509 CloogDomain
*context
;
510 CloogUnionDomain
*ud
;
512 struct clast_stmt
*stmt
;
514 state
= cloog_isl_state_malloc(ctx
);
515 options
= cloog_options_malloc(state
);
516 options
->language
= LANGUAGE_C
;
517 options
->strides
= 1;
519 ud
= cloog_union_domain_from_isl_union_map(isl_union_map_copy(umap
));
521 dim
= isl_union_map_get_dim(umap
);
522 context
= cloog_domain_from_isl_set(isl_set_universe(dim
));
524 input
= cloog_input_alloc(context
, ud
);
526 stmt
= cloog_clast_create_from_input(input
, options
);
527 clast_pprint(stdout
, stmt
, 0, options
);
528 cloog_clast_free(stmt
);
531 cloog_options_free(options
);
532 cloog_state_free(state
);
533 isl_union_map_free(umap
);
537 void *set_codegen(void *arg
)
540 isl_union_set
*uset
= (isl_union_set
*)arg
;
541 isl_ctx
*ctx
= isl_union_set_get_ctx(uset
);
543 CloogOptions
*options
;
544 CloogDomain
*context
;
545 CloogUnionDomain
*ud
;
547 struct clast_stmt
*stmt
;
549 state
= cloog_isl_state_malloc(ctx
);
550 options
= cloog_options_malloc(state
);
551 options
->language
= LANGUAGE_C
;
552 options
->strides
= 1;
554 ud
= cloog_union_domain_from_isl_union_set(isl_union_set_copy(uset
));
556 dim
= isl_union_set_get_dim(uset
);
557 context
= cloog_domain_from_isl_set(isl_set_universe(dim
));
559 input
= cloog_input_alloc(context
, ud
);
561 stmt
= cloog_clast_create_from_input(input
, options
);
562 clast_pprint(stdout
, stmt
, 0, options
);
563 cloog_clast_free(stmt
);
566 cloog_options_free(options
);
567 cloog_state_free(state
);
568 isl_union_set_free(uset
);
573 static int add_point(__isl_take isl_point
*pnt
, void *user
)
575 isl_union_set
**scan
= (isl_union_set
**) user
;
577 *scan
= isl_union_set_add_set(*scan
, isl_set_from_point(pnt
));
582 static __isl_give isl_union_set
*union_set_scan(__isl_take isl_union_set
*uset
)
586 scan
= isl_union_set_empty(isl_union_set_get_dim(uset
));
588 if (isl_union_set_foreach_point(uset
, add_point
, &scan
) < 0) {
589 isl_union_set_free(scan
);
593 isl_union_set_free(uset
);
597 static __isl_give isl_union_map
*union_map_scan(__isl_take isl_union_map
*umap
)
599 return isl_union_set_unwrap(union_set_scan(isl_union_map_wrap(umap
)));
602 typedef void *(*isc_un_op_fn
)(void *arg
);
604 enum isl_token_type op
;
609 struct isc_named_un_op
{
613 struct isc_named_un_op named_un_ops
[] = {
614 {"aff", { -1, isl_obj_union_map
, isl_obj_union_map
,
615 (isc_un_op_fn
) &isl_union_map_affine_hull
} },
616 {"aff", { -1, isl_obj_union_set
, isl_obj_union_set
,
617 (isc_un_op_fn
) &isl_union_set_affine_hull
} },
618 {"card", { -1, isl_obj_union_set
,
619 isl_obj_union_pw_qpolynomial
,
620 (isc_un_op_fn
) &isl_union_set_card
} },
621 {"card", { -1, isl_obj_union_map
,
622 isl_obj_union_pw_qpolynomial
,
623 (isc_un_op_fn
) &isl_union_map_card
} },
624 {"coalesce", { -1, isl_obj_union_set
, isl_obj_union_set
,
625 (isc_un_op_fn
) &isl_union_set_coalesce
} },
626 {"coalesce", { -1, isl_obj_union_map
, isl_obj_union_map
,
627 (isc_un_op_fn
) &isl_union_map_coalesce
} },
628 {"coalesce", { -1, isl_obj_union_pw_qpolynomial
,
629 isl_obj_union_pw_qpolynomial
,
630 (isc_un_op_fn
) &isl_union_pw_qpolynomial_coalesce
} },
631 {"coalesce", { -1, isl_obj_union_pw_qpolynomial_fold
,
632 isl_obj_union_pw_qpolynomial_fold
,
633 (isc_un_op_fn
) &isl_union_pw_qpolynomial_fold_coalesce
} },
635 {"codegen", { -1, isl_obj_union_set
, isl_obj_none
,
637 {"codegen", { -1, isl_obj_union_map
, isl_obj_none
,
640 {"deltas", { -1, isl_obj_union_map
, isl_obj_union_set
,
641 (isc_un_op_fn
) &isl_union_map_deltas
} },
642 {"dom", { -1, isl_obj_union_map
, isl_obj_union_set
,
643 (isc_un_op_fn
) &isl_union_map_domain
} },
644 {"dom", { -1, isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
645 (isc_un_op_fn
) &isl_union_pw_qpolynomial_domain
} },
646 {"dom", { -1, isl_obj_union_pw_qpolynomial_fold
,
648 (isc_un_op_fn
) &isl_union_pw_qpolynomial_fold_domain
} },
649 {"ran", { -1, isl_obj_union_map
, isl_obj_union_set
,
650 (isc_un_op_fn
) &isl_union_map_range
} },
651 {"identity", { -1, isl_obj_union_set
, isl_obj_union_map
,
652 (isc_un_op_fn
) &isl_union_set_identity
} },
653 {"lexmin", { -1, isl_obj_union_map
, isl_obj_union_map
,
654 (isc_un_op_fn
) &isl_union_map_lexmin
} },
655 {"lexmax", { -1, isl_obj_union_map
, isl_obj_union_map
,
656 (isc_un_op_fn
) &isl_union_map_lexmax
} },
657 {"lexmin", { -1, isl_obj_union_set
, isl_obj_union_set
,
658 (isc_un_op_fn
) &isl_union_set_lexmin
} },
659 {"lexmax", { -1, isl_obj_union_set
, isl_obj_union_set
,
660 (isc_un_op_fn
) &isl_union_set_lexmax
} },
661 {"poly", { -1, isl_obj_union_map
, isl_obj_union_map
,
662 (isc_un_op_fn
) &isl_union_map_polyhedral_hull
} },
663 {"poly", { -1, isl_obj_union_set
, isl_obj_union_set
,
664 (isc_un_op_fn
) &isl_union_set_polyhedral_hull
} },
665 {"sample", { -1, isl_obj_union_set
, isl_obj_set
,
666 (isc_un_op_fn
) &union_set_sample
} },
667 {"sample", { -1, isl_obj_union_map
, isl_obj_map
,
668 (isc_un_op_fn
) &union_map_sample
} },
669 {"scan", { -1, isl_obj_union_set
, isl_obj_union_set
,
670 (isc_un_op_fn
) &union_set_scan
} },
671 {"scan", { -1, isl_obj_union_map
, isl_obj_union_map
,
672 (isc_un_op_fn
) &union_map_scan
} },
673 {"sum", { -1, isl_obj_union_pw_qpolynomial
,
674 isl_obj_union_pw_qpolynomial
,
675 (isc_un_op_fn
) &isl_union_pw_qpolynomial_sum
} },
676 {"ub", { -1, isl_obj_union_pw_qpolynomial
, isl_obj_list
,
677 (isc_un_op_fn
) &union_pw_qpolynomial_upper_bound
} },
678 {"unwrap", { -1, isl_obj_union_set
, isl_obj_union_map
,
679 (isc_un_op_fn
) &isl_union_set_unwrap
} },
680 {"wrap", { -1, isl_obj_union_map
, isl_obj_union_set
,
681 (isc_un_op_fn
) &isl_union_map_wrap
} },
685 struct isl_named_obj
{
690 static void free_obj(struct isl_obj obj
)
692 obj
.type
->free(obj
.v
);
695 static int same_name(const void *entry
, const void *val
)
697 const struct isl_named_obj
*named
= (const struct isl_named_obj
*)entry
;
699 return !strcmp(named
->name
, val
);
702 static int do_assign(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
703 char *name
, struct isl_obj obj
)
705 struct isl_hash_table_entry
*entry
;
707 struct isl_named_obj
*named
;
709 name_hash
= isl_hash_string(isl_hash_init(), name
);
710 entry
= isl_hash_table_find(ctx
, table
, name_hash
, same_name
, name
, 1);
715 free_obj(named
->obj
);
718 named
= isl_alloc_type(ctx
, struct isl_named_obj
);
733 static struct isl_obj
stored_obj(struct isl_ctx
*ctx
,
734 struct isl_hash_table
*table
, char *name
)
736 struct isl_obj obj
= { isl_obj_none
, NULL
};
737 struct isl_hash_table_entry
*entry
;
740 name_hash
= isl_hash_string(isl_hash_init(), name
);
741 entry
= isl_hash_table_find(ctx
, table
, name_hash
, same_name
, name
, 0);
743 struct isl_named_obj
*named
;
747 fprintf(stderr
, "unknown identifier '%s'\n", name
);
750 obj
.v
= obj
.type
->copy(obj
.v
);
754 static int is_subtype(struct isl_obj obj
, isl_obj_type super
)
756 if (obj
.type
== super
)
758 if (obj
.type
== isl_obj_map
&& super
== isl_obj_union_map
)
760 if (obj
.type
== isl_obj_set
&& super
== isl_obj_union_set
)
762 if (obj
.type
== isl_obj_pw_qpolynomial
&&
763 super
== isl_obj_union_pw_qpolynomial
)
765 if (obj
.type
== isl_obj_pw_qpolynomial_fold
&&
766 super
== isl_obj_union_pw_qpolynomial_fold
)
768 if (obj
.type
== isl_obj_union_set
&& isl_union_set_is_empty(obj
.v
))
770 if (obj
.type
== isl_obj_list
) {
771 struct isl_list
*list
= obj
.v
;
772 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
773 return is_subtype(list
->obj
[0], super
);
775 if (super
== isl_obj_str
)
780 static struct isl_obj
obj_at(struct isl_obj obj
, int i
)
782 struct isl_list
*list
= obj
.v
;
785 obj
.v
= obj
.type
->copy(obj
.v
);
792 static struct isl_obj
convert(isl_ctx
*ctx
, struct isl_obj obj
,
795 if (obj
.type
== type
)
797 if (obj
.type
== isl_obj_map
&& type
== isl_obj_union_map
) {
798 obj
.type
= isl_obj_union_map
;
799 obj
.v
= isl_union_map_from_map(obj
.v
);
802 if (obj
.type
== isl_obj_set
&& type
== isl_obj_union_set
) {
803 obj
.type
= isl_obj_union_set
;
804 obj
.v
= isl_union_set_from_set(obj
.v
);
807 if (obj
.type
== isl_obj_pw_qpolynomial
&&
808 type
== isl_obj_union_pw_qpolynomial
) {
809 obj
.type
= isl_obj_union_pw_qpolynomial
;
810 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
813 if (obj
.type
== isl_obj_pw_qpolynomial_fold
&&
814 type
== isl_obj_union_pw_qpolynomial_fold
) {
815 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
816 obj
.v
= isl_union_pw_qpolynomial_fold_from_pw_qpolynomial_fold(obj
.v
);
819 if (obj
.type
== isl_obj_union_set
&& isl_union_set_is_empty(obj
.v
)) {
820 if (type
== isl_obj_union_map
) {
821 obj
.type
= isl_obj_union_map
;
824 if (type
== isl_obj_union_pw_qpolynomial
) {
825 isl_dim
*dim
= isl_union_set_get_dim(obj
.v
);
826 isl_union_set_free(obj
.v
);
827 obj
.v
= isl_union_pw_qpolynomial_zero(dim
);
828 obj
.type
= isl_obj_union_pw_qpolynomial
;
831 if (type
== isl_obj_union_pw_qpolynomial_fold
) {
832 isl_dim
*dim
= isl_union_set_get_dim(obj
.v
);
833 isl_union_set_free(obj
.v
);
834 obj
.v
= isl_union_pw_qpolynomial_fold_zero(dim
,
836 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
840 if (obj
.type
== isl_obj_list
) {
841 struct isl_list
*list
= obj
.v
;
842 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
843 return convert(ctx
, obj_at(obj
, 0), type
);
845 if (type
== isl_obj_str
) {
850 p
= isl_printer_to_str(ctx
);
853 p
= obj
.type
->print(p
, obj
.v
);
854 s
= isl_printer_get_str(p
);
857 str
= isl_str_alloc(ctx
);
865 obj
.type
= isl_obj_str
;
871 obj
.type
= isl_obj_none
;
876 static struct isc_bin_op
*read_bin_op_if_available(struct isl_stream
*s
,
880 struct isl_token
*tok
;
882 tok
= isl_stream_next_token(s
);
889 if (bin_ops
[i
].op
!= tok
->type
)
891 if (!is_subtype(lhs
, bin_ops
[i
].lhs
))
899 if (!named_bin_ops
[i
].name
)
901 if (named_bin_ops
[i
].op
.op
!= tok
->type
)
903 if (!is_subtype(lhs
, named_bin_ops
[i
].op
.lhs
))
907 return &named_bin_ops
[i
].op
;
910 isl_stream_push_token(s
, tok
);
915 static struct isc_un_op
*read_prefix_un_op_if_available(struct isl_stream
*s
)
918 struct isl_token
*tok
;
920 tok
= isl_stream_next_token(s
);
925 if (!named_un_ops
[i
].name
)
927 if (named_un_ops
[i
].op
.op
!= tok
->type
)
931 return &named_un_ops
[i
].op
;
934 isl_stream_push_token(s
, tok
);
939 static struct isc_un_op
*find_matching_un_op(struct isc_un_op
*like
,
945 if (!named_un_ops
[i
].name
)
947 if (named_un_ops
[i
].op
.op
!= like
->op
)
949 if (!is_subtype(arg
, named_un_ops
[i
].op
.arg
))
952 return &named_un_ops
[i
].op
;
958 static int is_assign(struct isl_stream
*s
)
960 struct isl_token
*tok
;
961 struct isl_token
*tok2
;
964 tok
= isl_stream_next_token(s
);
967 if (tok
->type
!= ISL_TOKEN_IDENT
) {
968 isl_stream_push_token(s
, tok
);
972 tok2
= isl_stream_next_token(s
);
974 isl_stream_push_token(s
, tok
);
977 assign
= tok2
->type
== ISL_TOKEN_DEF
;
978 isl_stream_push_token(s
, tok2
);
979 isl_stream_push_token(s
, tok
);
984 static struct isl_obj
read_obj(struct isl_stream
*s
,
985 struct isl_hash_table
*table
);
986 static struct isl_obj
read_expr(struct isl_stream
*s
,
987 struct isl_hash_table
*table
);
989 static struct isl_obj
read_un_op_expr(struct isl_stream
*s
,
990 struct isl_hash_table
*table
, struct isc_un_op
*op
)
992 struct isl_obj obj
= { isl_obj_none
, NULL
};
994 obj
= read_obj(s
, table
);
998 op
= find_matching_un_op(op
, obj
);
1000 isl_assert(s
->ctx
, op
, goto error
);
1001 obj
= convert(s
->ctx
, obj
, op
->arg
);
1002 obj
.v
= op
->fn(obj
.v
);
1008 obj
.type
= isl_obj_none
;
1013 static struct isl_obj
transitive_closure(struct isl_ctx
*ctx
, struct isl_obj obj
)
1015 struct isl_list
*list
;
1018 if (obj
.type
!= isl_obj_union_map
)
1019 obj
= convert(ctx
, obj
, isl_obj_union_map
);
1020 isl_assert(ctx
, obj
.type
== isl_obj_union_map
, goto error
);
1021 list
= isl_list_alloc(ctx
, 2);
1025 list
->obj
[0].type
= isl_obj_union_map
;
1026 list
->obj
[0].v
= isl_union_map_transitive_closure(obj
.v
, &exact
);
1027 list
->obj
[1].type
= isl_obj_bool
;
1028 list
->obj
[1].v
= exact
? &isl_bool_true
: &isl_bool_false
;
1030 obj
.type
= isl_obj_list
;
1031 if (exact
< 0 || !list
->obj
[0].v
)
1037 obj
.type
= isl_obj_none
;
1042 static struct isl_obj
obj_at_index(struct isl_stream
*s
, struct isl_obj obj
)
1044 struct isl_list
*list
= obj
.v
;
1045 struct isl_token
*tok
;
1048 tok
= isl_stream_next_token(s
);
1049 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
) {
1050 isl_stream_error(s
, tok
, "expecting index");
1052 isl_stream_push_token(s
, tok
);
1055 i
= isl_int_get_si(tok
->u
.v
);
1056 isl_token_free(tok
);
1057 isl_assert(s
->ctx
, i
< list
->n
, goto error
);
1058 if (isl_stream_eat(s
, ']'))
1061 return obj_at(obj
, i
);
1064 obj
.type
= isl_obj_none
;
1069 static struct isl_obj
apply(struct isl_stream
*s
, __isl_take isl_union_map
*umap
,
1070 struct isl_hash_table
*table
)
1074 obj
= read_expr(s
, table
);
1075 isl_assert(s
->ctx
, is_subtype(obj
, isl_obj_union_set
) ||
1076 is_subtype(obj
, isl_obj_union_map
), goto error
);
1078 if (obj
.type
== isl_obj_list
) {
1079 struct isl_list
*list
= obj
.v
;
1080 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1081 obj
= obj_at(obj
, 0);
1083 if (obj
.type
== isl_obj_set
)
1084 obj
= convert(s
->ctx
, obj
, isl_obj_union_set
);
1085 else if (obj
.type
== isl_obj_map
)
1086 obj
= convert(s
->ctx
, obj
, isl_obj_union_map
);
1087 if (obj
.type
== isl_obj_union_set
) {
1088 obj
.v
= isl_union_set_apply(obj
.v
, umap
);
1090 obj
.v
= isl_union_map_apply_range(obj
.v
, umap
);
1094 if (isl_stream_eat(s
, ')'))
1099 isl_union_map_free(umap
);
1102 obj
.type
= isl_obj_none
;
1107 static struct isl_obj
apply_fun(struct isl_stream
*s
,
1108 struct isl_obj obj
, struct isl_hash_table
*table
)
1112 arg
= read_expr(s
, table
);
1113 isl_assert(s
->ctx
, is_subtype(arg
, isl_obj_union_map
), goto error
);
1115 if (arg
.type
== isl_obj_list
) {
1116 struct isl_list
*list
= arg
.v
;
1117 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1118 arg
= obj_at(arg
, 0);
1120 if (arg
.type
== isl_obj_map
)
1121 arg
= convert(s
->ctx
, arg
, isl_obj_union_map
);
1122 if (obj
.type
== isl_obj_union_pw_qpolynomial
) {
1123 obj
.v
= isl_union_map_apply_union_pw_qpolynomial(arg
.v
, obj
.v
);
1125 obj
.type
= isl_obj_list
;
1126 obj
.v
= union_map_apply_union_pw_qpolynomial_fold(arg
.v
, obj
.v
);
1131 if (isl_stream_eat(s
, ')'))
1139 obj
.type
= isl_obj_none
;
1144 struct add_vertex_data
{
1145 struct isl_list
*list
;
1149 static int add_vertex(__isl_take isl_vertex
*vertex
, void *user
)
1151 struct add_vertex_data
*data
= (struct add_vertex_data
*)user
;
1152 isl_basic_set
*expr
;
1154 expr
= isl_vertex_get_expr(vertex
);
1156 data
->list
->obj
[data
->i
].type
= isl_obj_set
;
1157 data
->list
->obj
[data
->i
].v
= isl_set_from_basic_set(expr
);
1160 isl_vertex_free(vertex
);
1165 static int set_vertices(__isl_take isl_set
*set
, void *user
)
1168 isl_basic_set
*hull
;
1169 isl_vertices
*vertices
= NULL
;
1170 struct isl_list
*list
= NULL
;
1172 struct add_vertex_data
*data
= (struct add_vertex_data
*)user
;
1174 set
= isl_set_remove_divs(set
);
1175 hull
= isl_set_convex_hull(set
);
1176 vertices
= isl_basic_set_compute_vertices(hull
);
1177 isl_basic_set_free(hull
);
1181 ctx
= isl_vertices_get_ctx(vertices
);
1182 data
->list
= isl_list_alloc(ctx
, isl_vertices_get_n_vertices(vertices
));
1187 r
= isl_vertices_foreach_vertex(vertices
, &add_vertex
, user
);
1189 data
->list
= isl_list_concat(list
, data
->list
);
1191 isl_vertices_free(vertices
);
1196 isl_vertices_free(vertices
);
1200 static struct isl_obj
vertices(struct isl_stream
*s
,
1201 struct isl_hash_table
*table
)
1205 struct isl_list
*list
= NULL
;
1206 isl_union_set
*uset
;
1207 struct add_vertex_data data
= { NULL
};
1209 obj
= read_expr(s
, table
);
1210 obj
= convert(s
->ctx
, obj
, isl_obj_union_set
);
1211 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_set
, goto error
);
1215 ctx
= isl_union_set_get_ctx(uset
);
1216 list
= isl_list_alloc(ctx
, 0);
1222 if (isl_union_set_foreach_set(uset
, &set_vertices
, &data
) < 0)
1225 isl_union_set_free(uset
);
1227 obj
.type
= isl_obj_list
;
1232 isl_union_set_free(uset
);
1233 isl_list_free(data
.list
);
1235 obj
.type
= isl_obj_none
;
1240 static __isl_give isl_union_map
*read_map(struct isl_stream
*s
,
1241 struct isl_hash_table
*table
)
1245 obj
= read_obj(s
, table
);
1246 obj
= convert(s
->ctx
, obj
, isl_obj_union_map
);
1247 isl_assert(s
->ctx
, obj
.type
== isl_obj_union_map
, goto error
);
1254 static struct isl_obj
last_any(struct isl_stream
*s
,
1255 struct isl_hash_table
*table
, __isl_take isl_union_map
*must_source
,
1256 __isl_take isl_union_map
*may_source
)
1258 struct isl_obj obj
= { isl_obj_none
, NULL
};
1259 isl_union_map
*sink
= NULL
;
1260 isl_union_map
*schedule
= NULL
;
1261 isl_union_map
*may_dep
;
1262 isl_union_map
*must_dep
;
1264 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1267 sink
= read_map(s
, table
);
1271 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1274 schedule
= read_map(s
, table
);
1278 if (isl_union_map_compute_flow(sink
, must_source
, may_source
,
1279 schedule
, &must_dep
, &may_dep
,
1283 obj
.type
= isl_obj_union_map
;
1284 obj
.v
= isl_union_map_union(must_dep
, may_dep
);
1288 isl_union_map_free(may_source
);
1289 isl_union_map_free(must_source
);
1290 isl_union_map_free(sink
);
1291 isl_union_map_free(schedule
);
1293 obj
.type
= isl_obj_none
;
1298 static struct isl_obj
any(struct isl_stream
*s
, struct isl_hash_table
*table
)
1300 struct isl_obj obj
= { isl_obj_none
, NULL
};
1301 isl_union_map
*must_source
= NULL
;
1302 isl_union_map
*may_source
= NULL
;
1303 isl_union_map
*sink
= NULL
;
1304 isl_union_map
*schedule
= NULL
;
1305 isl_union_map
*may_dep
;
1307 may_source
= read_map(s
, table
);
1311 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_LAST
])) {
1312 must_source
= read_map(s
, table
);
1315 return last_any(s
, table
, must_source
, may_source
);
1318 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1321 sink
= read_map(s
, table
);
1325 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1328 schedule
= read_map(s
, table
);
1332 must_source
= isl_union_map_empty(isl_union_map_get_dim(sink
));
1333 if (isl_union_map_compute_flow(sink
, must_source
, may_source
,
1334 schedule
, NULL
, &may_dep
,
1338 obj
.type
= isl_obj_union_map
;
1343 isl_union_map_free(may_source
);
1344 isl_union_map_free(must_source
);
1345 isl_union_map_free(sink
);
1346 isl_union_map_free(schedule
);
1348 obj
.type
= isl_obj_none
;
1353 static struct isl_obj
last(struct isl_stream
*s
, struct isl_hash_table
*table
)
1355 struct isl_obj obj
= { isl_obj_none
, NULL
};
1356 struct isl_list
*list
= NULL
;
1357 isl_union_map
*must_source
= NULL
;
1358 isl_union_map
*may_source
= NULL
;
1359 isl_union_map
*sink
= NULL
;
1360 isl_union_map
*schedule
= NULL
;
1361 isl_union_map
*must_dep
;
1362 isl_union_set
*must_no_source
;
1364 must_source
= read_map(s
, table
);
1368 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_ANY
])) {
1369 may_source
= read_map(s
, table
);
1372 return last_any(s
, table
, must_source
, may_source
);
1375 list
= isl_list_alloc(s
->ctx
, 2);
1379 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1382 sink
= read_map(s
, table
);
1386 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1389 schedule
= read_map(s
, table
);
1393 may_source
= isl_union_map_empty(isl_union_map_get_dim(sink
));
1394 if (isl_union_map_compute_flow(sink
, must_source
, may_source
,
1395 schedule
, &must_dep
, NULL
,
1396 &must_no_source
, NULL
) < 0)
1399 list
->obj
[0].type
= isl_obj_union_map
;
1400 list
->obj
[0].v
= must_dep
;
1401 list
->obj
[1].type
= isl_obj_union_set
;
1402 list
->obj
[1].v
= must_no_source
;
1405 obj
.type
= isl_obj_list
;
1409 isl_list_free(list
);
1410 isl_union_map_free(may_source
);
1411 isl_union_map_free(must_source
);
1412 isl_union_map_free(sink
);
1413 isl_union_map_free(schedule
);
1415 obj
.type
= isl_obj_none
;
1420 static struct isl_obj
power(struct isl_stream
*s
, struct isl_obj obj
)
1422 struct isl_token
*tok
;
1424 if (isl_stream_eat_if_available(s
, '+'))
1425 return transitive_closure(s
->ctx
, obj
);
1427 tok
= isl_stream_next_token(s
);
1428 if (!tok
|| tok
->type
!= ISL_TOKEN_VALUE
|| isl_int_cmp_si(tok
->u
.v
, -1)) {
1429 isl_stream_error(s
, tok
, "expecting -1");
1431 isl_stream_push_token(s
, tok
);
1434 isl_token_free(tok
);
1435 isl_assert(s
->ctx
, is_subtype(obj
, isl_obj_union_map
), goto error
);
1436 if (obj
.type
!= isl_obj_union_map
)
1437 obj
= convert(s
->ctx
, obj
, isl_obj_union_map
);
1439 obj
.v
= isl_union_map_reverse(obj
.v
);
1446 obj
.type
= isl_obj_none
;
1451 static struct isl_obj
read_from_file(struct isl_stream
*s
)
1454 struct isl_token
*tok
;
1455 struct isl_stream
*s_file
;
1458 tok
= isl_stream_next_token(s
);
1459 if (!tok
|| tok
->type
!= ISL_TOKEN_STRING
) {
1460 isl_stream_error(s
, tok
, "expecting filename");
1461 isl_token_free(tok
);
1465 file
= fopen(tok
->u
.s
, "r");
1466 isl_token_free(tok
);
1467 isl_assert(s
->ctx
, file
, goto error
);
1469 s_file
= isl_stream_new_file(s
->ctx
, file
);
1475 obj
= isl_stream_read_obj(s_file
);
1477 isl_stream_free(s_file
);
1482 obj
.type
= isl_obj_none
;
1487 static struct isl_obj
read_string_if_available(struct isl_stream
*s
)
1489 struct isl_token
*tok
;
1490 struct isl_obj obj
= { isl_obj_none
, NULL
};
1492 tok
= isl_stream_next_token(s
);
1495 if (tok
->type
== ISL_TOKEN_STRING
) {
1497 str
= isl_str_alloc(s
->ctx
);
1500 str
->s
= strdup(tok
->u
.s
);
1501 isl_token_free(tok
);
1503 obj
.type
= isl_obj_str
;
1505 isl_stream_push_token(s
, tok
);
1508 isl_token_free(tok
);
1512 static struct isl_obj
read_obj(struct isl_stream
*s
,
1513 struct isl_hash_table
*table
)
1515 struct isl_obj obj
= { isl_obj_none
, NULL
};
1517 struct isc_un_op
*op
= NULL
;
1519 obj
= read_string_if_available(s
);
1522 if (isl_stream_eat_if_available(s
, '(')) {
1523 obj
= read_expr(s
, table
);
1524 if (!obj
.v
|| isl_stream_eat(s
, ')'))
1527 op
= read_prefix_un_op_if_available(s
);
1529 return read_un_op_expr(s
, table
, op
);
1531 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_READ
]))
1532 return read_from_file(s
);
1533 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_VERTICES
]))
1534 return vertices(s
, table
);
1535 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_ANY
]))
1536 return any(s
, table
);
1537 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_LAST
]))
1538 return last(s
, table
);
1540 name
= isl_stream_read_ident_if_available(s
);
1542 obj
= stored_obj(s
->ctx
, table
, name
);
1544 obj
= isl_stream_read_obj(s
);
1549 if (isl_stream_eat_if_available(s
, '^'))
1550 obj
= power(s
, obj
);
1551 else if (obj
.type
== isl_obj_list
&& isl_stream_eat_if_available(s
, '['))
1552 obj
= obj_at_index(s
, obj
);
1553 else if (is_subtype(obj
, isl_obj_union_map
) &&
1554 isl_stream_eat_if_available(s
, '(')) {
1555 obj
= convert(s
->ctx
, obj
, isl_obj_union_map
);
1556 obj
= apply(s
, obj
.v
, table
);
1557 } else if (is_subtype(obj
, isl_obj_union_pw_qpolynomial
) &&
1558 isl_stream_eat_if_available(s
, '(')) {
1559 obj
= convert(s
->ctx
, obj
, isl_obj_union_pw_qpolynomial
);
1560 obj
= apply_fun(s
, obj
, table
);
1561 } else if (is_subtype(obj
, isl_obj_union_pw_qpolynomial_fold
) &&
1562 isl_stream_eat_if_available(s
, '(')) {
1563 obj
= convert(s
->ctx
, obj
, isl_obj_union_pw_qpolynomial_fold
);
1564 obj
= apply_fun(s
, obj
, table
);
1570 obj
.type
= isl_obj_none
;
1575 static struct isc_bin_op
*find_matching_bin_op(struct isc_bin_op
*like
,
1576 struct isl_obj lhs
, struct isl_obj rhs
)
1580 for (i
= 0; ; ++i
) {
1583 if (bin_ops
[i
].op
!= like
->op
)
1585 if (!is_subtype(lhs
, bin_ops
[i
].lhs
))
1587 if (!is_subtype(rhs
, bin_ops
[i
].rhs
))
1593 for (i
= 0; ; ++i
) {
1594 if (!named_bin_ops
[i
].name
)
1596 if (named_bin_ops
[i
].op
.op
!= like
->op
)
1598 if (!is_subtype(lhs
, named_bin_ops
[i
].op
.lhs
))
1600 if (!is_subtype(rhs
, named_bin_ops
[i
].op
.rhs
))
1603 return &named_bin_ops
[i
].op
;
1609 static struct isl_obj
read_expr(struct isl_stream
*s
,
1610 struct isl_hash_table
*table
)
1612 struct isl_obj obj
= { isl_obj_none
, NULL
};
1613 struct isl_obj right_obj
= { isl_obj_none
, NULL
};
1615 obj
= read_obj(s
, table
);
1617 struct isc_bin_op
*op
= NULL
;
1619 op
= read_bin_op_if_available(s
, obj
);
1623 right_obj
= read_obj(s
, table
);
1625 op
= find_matching_bin_op(op
, obj
, right_obj
);
1627 isl_assert(s
->ctx
, op
, goto error
);
1628 obj
= convert(s
->ctx
, obj
, op
->lhs
);
1629 right_obj
= convert(s
->ctx
, right_obj
, op
->rhs
);
1630 obj
.v
= op
->fn(obj
.v
, right_obj
.v
);
1636 free_obj(right_obj
);
1638 obj
.type
= isl_obj_none
;
1643 static __isl_give isl_printer
*source_file(struct isl_stream
*s
,
1644 struct isl_hash_table
*table
, __isl_take isl_printer
*p
);
1646 static __isl_give isl_printer
*read_line(struct isl_stream
*s
,
1647 struct isl_hash_table
*table
, __isl_take isl_printer
*p
)
1649 struct isl_obj obj
= { isl_obj_none
, NULL
};
1652 struct isc_bin_op
*op
= NULL
;
1656 if (isl_stream_is_empty(s
))
1659 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_SOURCE
]))
1660 return source_file(s
, table
, p
);
1662 assign
= is_assign(s
);
1664 lhs
= isl_stream_read_ident_if_available(s
);
1665 if (isl_stream_eat(s
, ISL_TOKEN_DEF
))
1669 obj
= read_expr(s
, table
);
1670 if (obj
.type
== isl_obj_none
|| obj
.v
== NULL
)
1672 if (isl_stream_eat(s
, ';'))
1676 if (do_assign(s
->ctx
, table
, lhs
, obj
))
1679 p
= obj
.type
->print(p
, obj
.v
);
1680 p
= isl_printer_end_line(p
);
1686 isl_stream_flush_tokens(s
);
1687 isl_stream_skip_line(s
);
1693 int free_cb(void **entry
, void *user
)
1695 struct isl_named_obj
*named
= *entry
;
1697 free_obj(named
->obj
);
1704 static void register_named_ops(struct isl_stream
*s
)
1708 for (i
= 0; i
< ISCC_N_OP
; ++i
) {
1709 iscc_op
[i
] = isl_stream_register_keyword(s
, op_name
[i
]);
1710 assert(iscc_op
[i
] != ISL_TOKEN_ERROR
);
1713 for (i
= 0; ; ++i
) {
1714 if (!named_un_ops
[i
].name
)
1716 named_un_ops
[i
].op
.op
= isl_stream_register_keyword(s
,
1717 named_un_ops
[i
].name
);
1718 assert(named_un_ops
[i
].op
.op
!= ISL_TOKEN_ERROR
);
1721 for (i
= 0; ; ++i
) {
1722 if (!named_bin_ops
[i
].name
)
1724 named_bin_ops
[i
].op
.op
= isl_stream_register_keyword(s
,
1725 named_bin_ops
[i
].name
);
1726 assert(named_bin_ops
[i
].op
.op
!= ISL_TOKEN_ERROR
);
1730 static __isl_give isl_printer
*source_file(struct isl_stream
*s
,
1731 struct isl_hash_table
*table
, __isl_take isl_printer
*p
)
1733 struct isl_token
*tok
;
1734 struct isl_stream
*s_file
;
1737 tok
= isl_stream_next_token(s
);
1738 if (!tok
|| tok
->type
!= ISL_TOKEN_STRING
) {
1739 isl_stream_error(s
, tok
, "expecting filename");
1740 isl_token_free(tok
);
1744 file
= fopen(tok
->u
.s
, "r");
1745 isl_token_free(tok
);
1746 isl_assert(s
->ctx
, file
, return p
);
1748 s_file
= isl_stream_new_file(s
->ctx
, file
);
1754 register_named_ops(s_file
);
1756 while (!s_file
->eof
)
1757 p
= read_line(s_file
, table
, p
);
1759 isl_stream_free(s_file
);
1762 isl_stream_eat(s
, ';');
1767 int main(int argc
, char **argv
)
1769 struct isl_ctx
*ctx
;
1770 struct isl_stream
*s
;
1771 struct isl_hash_table
*table
;
1772 struct iscc_options
*options
;
1775 options
= iscc_options_new_with_defaults();
1777 argc
= iscc_options_parse(options
, argc
, argv
, ISL_ARG_ALL
);
1779 ctx
= isl_ctx_alloc_with_options(iscc_options_arg
, options
);
1780 s
= isl_stream_new_file(ctx
, stdin
);
1782 table
= isl_hash_table_alloc(ctx
, 10);
1784 p
= isl_printer_to_file(ctx
, stdout
);
1785 p
= isl_printer_set_output_format(p
, options
->format
);
1788 register_named_ops(s
);
1790 while (p
&& !s
->eof
) {
1791 p
= read_line(s
, table
, p
);
1794 isl_printer_free(p
);
1795 isl_hash_table_foreach(ctx
, table
, free_cb
, NULL
);
1796 isl_hash_table_free(ctx
, table
);