8 #include <isl/stream.h>
11 #include <isl/vertices.h>
13 #include <isl/schedule.h>
14 #include <isl/ast_build.h>
15 #include <isl_obj_list.h>
16 #include <isl_obj_str.h>
17 #include <barvinok/isl.h>
18 #include <barvinok/options.h>
19 #include "lattice_width.h"
26 static isl_ctx
*main_ctx
;
28 static void handler(int signum
)
30 if (isl_ctx_aborted(main_ctx
))
32 isl_ctx_abort(main_ctx
);
35 static struct sigaction sa_old
;
37 static void install_signal_handler(isl_ctx
*ctx
)
43 memset(&sa
, 0, sizeof(struct sigaction
));
44 sa
.sa_handler
= &handler
;
45 sa
.sa_flags
= SA_RESTART
;
46 sigaction(SIGINT
, &sa
, &sa_old
);
49 static void remove_signal_handler(isl_ctx
*ctx
)
51 sigaction(SIGINT
, &sa_old
, NULL
);
56 static void install_signal_handler(isl_ctx
*ctx
)
60 static void remove_signal_handler(isl_ctx
*ctx
)
70 int pet_options_set_autodetect(isl_ctx
*ctx
, int val
)
74 int pet_options_set_encapsulate_dynamic_control(isl_ctx
*ctx
, int val
)
80 static int iscc_bool_false
= 0;
81 static int iscc_bool_true
= 1;
82 static int iscc_bool_error
= -1;
84 enum iscc_op
{ ISCC_READ
, ISCC_WRITE
, ISCC_SOURCE
, ISCC_VERTICES
,
85 ISCC_LAST
, ISCC_ANY
, ISCC_BEFORE
, ISCC_UNDER
,
87 ISCC_MINIMIZING
, ISCC_RESPECTING
,
88 ISCC_CODEGEN
, ISCC_USING
,
89 ISCC_TYPEOF
, ISCC_PRINT
, ISCC_ASSERT
,
91 static const char *op_name
[ISCC_N_OP
] = {
92 [ISCC_ASSERT
] = "assert",
94 [ISCC_WRITE
] = "write",
95 [ISCC_PRINT
] = "print",
96 [ISCC_SOURCE
] = "source",
97 [ISCC_VERTICES
] = "vertices",
100 [ISCC_BEFORE
] = "before",
101 [ISCC_UNDER
] = "under",
102 [ISCC_SCHEDULE
] = "schedule",
103 [ISCC_MINIMIZING
] = "minimizing",
104 [ISCC_RESPECTING
] = "respecting",
105 [ISCC_CODEGEN
] = "codegen",
106 [ISCC_USING
] = "using",
107 [ISCC_TYPEOF
] = "typeof"
109 static enum isl_token_type iscc_op
[ISCC_N_OP
];
111 struct isl_arg_choice iscc_format
[] = {
112 {"isl", ISL_FORMAT_ISL
},
113 {"omega", ISL_FORMAT_OMEGA
},
114 {"polylib", ISL_FORMAT_POLYLIB
},
115 {"ext-polylib", ISL_FORMAT_EXT_POLYLIB
},
116 {"latex", ISL_FORMAT_LATEX
},
121 struct iscc_options
{
122 struct barvinok_options
*barvinok
;
123 struct pet_options
*pet
;
128 ISL_ARGS_START(struct iscc_options
, iscc_options_args
)
129 ISL_ARG_CHILD(struct iscc_options
, barvinok
, "barvinok", &barvinok_options_args
,
132 ISL_ARG_CHILD(struct iscc_options
, pet
, "pet", &pet_options_args
, "pet options")
134 ISL_ARG_CHOICE(struct iscc_options
, format
, 0, "format", \
135 iscc_format
, ISL_FORMAT_ISL
, "output format")
136 ISL_ARG_BOOL(struct iscc_options
, io
, 0, "io", 1,
137 "allow read and write operations")
140 ISL_ARG_DEF(iscc_options
, struct iscc_options
, iscc_options_args
)
141 ISL_ARG_CTX_DEF(iscc_options
, struct iscc_options
, iscc_options_args
)
143 static void *isl_obj_bool_copy(void *v
)
148 static void isl_obj_bool_free(void *v
)
152 static __isl_give isl_printer
*isl_obj_bool_print(__isl_take isl_printer
*p
,
155 if (v
== &iscc_bool_true
)
156 return isl_printer_print_str(p
, "True");
157 else if (v
== &iscc_bool_false
)
158 return isl_printer_print_str(p
, "False");
160 return isl_printer_print_str(p
, "Error");
163 static void *isl_obj_bool_add(void *v1
, void *v2
)
168 struct isl_obj_vtable isl_obj_bool_vtable
= {
174 #define isl_obj_bool (&isl_obj_bool_vtable)
176 int *iscc_bool_from_int(int res
)
178 return res
< 0 ? &iscc_bool_error
:
179 res
? &iscc_bool_true
: &iscc_bool_false
;
182 /* Conjunction of "b1" and "b2".
183 * The result is returned as an integer because it is post-processed by
184 * iscc_bool_from_int.
186 static int isl_bool_and(isl_bool
*b1
, __isl_take isl_bool
*b2
)
188 if (b1
== &iscc_bool_error
|| b2
== &iscc_bool_error
)
190 return b1
== &iscc_bool_true
&& b2
== &iscc_bool_true
;
193 /* Disjunction of "b1" and "b2".
194 * The result is returned as an integer because it is post-processed by
195 * iscc_bool_from_int.
197 static int isl_bool_or(isl_bool
*b1
, __isl_take isl_bool
*b2
)
199 if (b1
== &iscc_bool_error
|| b2
== &iscc_bool_error
)
201 return b1
== &iscc_bool_true
|| b2
== &iscc_bool_true
;
204 static int isl_union_map_is_superset(__isl_take isl_union_map
*map1
,
205 __isl_take isl_union_map
*map2
)
207 return isl_union_map_is_subset(map2
, map1
);
209 static int isl_union_set_is_superset(__isl_take isl_union_set
*set1
,
210 __isl_take isl_union_set
*set2
)
212 return isl_union_set_is_subset(set2
, set1
);
215 static int isl_union_map_is_strict_superset(__isl_take isl_union_map
*map1
,
216 __isl_take isl_union_map
*map2
)
218 return isl_union_map_is_strict_subset(map2
, map1
);
220 static int isl_union_set_is_strict_superset(__isl_take isl_union_set
*set1
,
221 __isl_take isl_union_set
*set2
)
223 return isl_union_set_is_strict_subset(set2
, set1
);
226 extern struct isl_obj_vtable isl_obj_list_vtable
;
227 #define isl_obj_list (&isl_obj_list_vtable)
229 typedef void *(*isc_bin_op_fn
)(void *lhs
, void *rhs
);
230 typedef int (*isc_bin_test_fn
)(void *lhs
, void *rhs
);
232 enum isl_token_type op
;
238 isc_bin_test_fn test
;
241 struct isc_named_bin_op
{
243 struct isc_bin_op op
;
245 /* Compound binary operator.
246 * "full" is only used to generate a unique token number for op.op
247 * in register_named_ops.
248 * "op1" is the first part of the compound operator.
249 * "op2" is the second part of the compound operator.
251 struct iscc_compound_bin_op
{
253 enum isl_token_type op1
;
254 enum isl_token_type op2
;
255 struct isc_bin_op op
;
259 isl_union_pw_qpolynomial
*upwqp
;
260 isl_union_pw_qpolynomial
*res
;
263 static isl_stat
eval_at(__isl_take isl_point
*pnt
, void *user
)
265 struct iscc_at
*at
= (struct iscc_at
*) user
;
270 set
= isl_set_from_point(isl_point_copy(pnt
));
271 v
= isl_union_pw_qpolynomial_eval(
272 isl_union_pw_qpolynomial_copy(at
->upwqp
), pnt
);
273 qp
= isl_qpolynomial_val_on_domain(isl_set_get_space(set
), v
);
275 at
->res
= isl_union_pw_qpolynomial_add(at
->res
,
276 isl_union_pw_qpolynomial_from_pw_qpolynomial(
277 isl_pw_qpolynomial_alloc(set
, qp
)));
282 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_at(
283 __isl_take isl_union_pw_qpolynomial
*upwqp
,
284 __isl_take isl_union_set
*uset
)
289 at
.res
= isl_union_pw_qpolynomial_zero(isl_union_set_get_space(uset
));
291 isl_union_set_foreach_point(uset
, eval_at
, &at
);
293 isl_union_pw_qpolynomial_free(upwqp
);
294 isl_union_set_free(uset
);
299 struct iscc_fold_at
{
300 isl_union_pw_qpolynomial_fold
*upwf
;
301 isl_union_pw_qpolynomial
*res
;
304 static isl_stat
eval_fold_at(__isl_take isl_point
*pnt
, void *user
)
306 struct iscc_fold_at
*at
= (struct iscc_fold_at
*) user
;
311 set
= isl_set_from_point(isl_point_copy(pnt
));
312 v
= isl_union_pw_qpolynomial_fold_eval(
313 isl_union_pw_qpolynomial_fold_copy(at
->upwf
), pnt
);
314 qp
= isl_qpolynomial_val_on_domain(isl_set_get_space(set
), v
);
316 at
->res
= isl_union_pw_qpolynomial_add(at
->res
,
317 isl_union_pw_qpolynomial_from_pw_qpolynomial(
318 isl_pw_qpolynomial_alloc(set
, qp
)));
323 __isl_give isl_union_pw_qpolynomial
*isl_union_pw_qpolynomial_fold_at(
324 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
325 __isl_take isl_union_set
*uset
)
327 struct iscc_fold_at at
;
330 at
.res
= isl_union_pw_qpolynomial_zero(isl_union_set_get_space(uset
));
332 isl_union_set_foreach_point(uset
, eval_fold_at
, &at
);
334 isl_union_pw_qpolynomial_fold_free(upwf
);
335 isl_union_set_free(uset
);
340 static __isl_give isl_union_pw_qpolynomial_fold
*union_pw_qpolynomial_add_union_pw_qpolynomial_fold(
341 __isl_take isl_union_pw_qpolynomial
*upwqp
,
342 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
344 return isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial(upwf
,
348 static __isl_give
struct isl_list
*union_map_apply_union_pw_qpolynomial_fold(
349 __isl_take isl_union_map
*umap
,
350 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
353 struct isl_list
*list
;
356 ctx
= isl_union_map_get_ctx(umap
);
357 list
= isl_list_alloc(ctx
, 2);
361 list
->obj
[0].type
= isl_obj_union_pw_qpolynomial_fold
;
362 list
->obj
[0].v
= isl_union_map_apply_union_pw_qpolynomial_fold(umap
,
364 list
->obj
[1].type
= isl_obj_bool
;
365 list
->obj
[1].v
= tight
? &iscc_bool_true
: &iscc_bool_false
;
366 if (tight
< 0 || !list
->obj
[0].v
)
371 isl_union_map_free(umap
);
372 isl_union_pw_qpolynomial_fold_free(upwf
);
378 static __isl_give
struct isl_list
*union_set_apply_union_pw_qpolynomial_fold(
379 __isl_take isl_union_set
*uset
,
380 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
383 struct isl_list
*list
;
386 ctx
= isl_union_set_get_ctx(uset
);
387 list
= isl_list_alloc(ctx
, 2);
391 list
->obj
[0].type
= isl_obj_union_pw_qpolynomial_fold
;
392 list
->obj
[0].v
= isl_union_set_apply_union_pw_qpolynomial_fold(uset
,
394 list
->obj
[1].type
= isl_obj_bool
;
395 list
->obj
[1].v
= tight
? &iscc_bool_true
: &iscc_bool_false
;
396 if (tight
< 0 || !list
->obj
[0].v
)
401 isl_union_set_free(uset
);
402 isl_union_pw_qpolynomial_fold_free(upwf
);
408 static __isl_give isl_union_pw_qpolynomial
*isl_val_mul_union_pw_qpolynomial(
409 __isl_take isl_val
*v
, __isl_take isl_union_pw_qpolynomial
*upwqp
)
411 return isl_union_pw_qpolynomial_scale_val(upwqp
, v
);
414 static __isl_give isl_union_pw_qpolynomial_fold
*
415 int_val_mul_union_pw_qpolynomial_fold(__isl_take isl_val
*v
,
416 __isl_take isl_union_pw_qpolynomial_fold
*upwf
)
418 return isl_union_pw_qpolynomial_fold_scale_val(upwf
, v
);
421 /* Are the two strings "str1" and "str2" equal to each other?
423 static int str_eq(__isl_keep isl_str
*str1
, __isl_keep isl_str
*str2
)
428 return !strcmp(str1
->s
, str2
->s
);
431 struct isc_bin_op bin_ops
[] = {
432 { '+', isl_obj_bool
, isl_obj_bool
, isl_obj_bool
,
433 (isc_bin_op_fn
) &isl_bool_or
},
434 { '*', isl_obj_bool
, isl_obj_bool
, isl_obj_bool
,
435 (isc_bin_op_fn
) &isl_bool_and
},
436 { '+', isl_obj_val
, isl_obj_val
, isl_obj_val
,
437 (isc_bin_op_fn
) &isl_val_add
},
438 { '-', isl_obj_val
, isl_obj_val
, isl_obj_val
,
439 (isc_bin_op_fn
) &isl_val_sub
},
440 { '*', isl_obj_val
, isl_obj_val
, isl_obj_val
,
441 (isc_bin_op_fn
) &isl_val_mul
},
442 { '+', isl_obj_pw_multi_aff
, isl_obj_pw_multi_aff
,
443 isl_obj_pw_multi_aff
,
444 (isc_bin_op_fn
) &isl_pw_multi_aff_add
},
445 { '+', isl_obj_union_set
, isl_obj_union_set
,
447 (isc_bin_op_fn
) &isl_union_set_union
},
448 { '+', isl_obj_union_map
, isl_obj_union_map
,
450 (isc_bin_op_fn
) &isl_union_map_union
},
451 { '-', isl_obj_union_set
, isl_obj_union_set
,
453 (isc_bin_op_fn
) &isl_union_set_subtract
},
454 { '-', isl_obj_union_map
, isl_obj_union_map
,
456 (isc_bin_op_fn
) &isl_union_map_subtract
},
457 { '-', isl_obj_union_map
, isl_obj_union_set
,
459 (isc_bin_op_fn
) &isl_union_map_subtract_domain
},
460 { '*', isl_obj_union_set
, isl_obj_union_set
,
462 (isc_bin_op_fn
) &isl_union_set_intersect
},
463 { '*', isl_obj_union_map
, isl_obj_union_map
,
465 (isc_bin_op_fn
) &isl_union_map_intersect
},
466 { '*', isl_obj_union_map
, isl_obj_union_set
,
468 (isc_bin_op_fn
) &isl_union_map_intersect_domain
},
469 { '.', isl_obj_union_map
, isl_obj_union_map
,
471 (isc_bin_op_fn
) &isl_union_map_apply_range
},
472 { '.', isl_obj_union_map
, isl_obj_union_pw_qpolynomial
,
473 isl_obj_union_pw_qpolynomial
,
474 (isc_bin_op_fn
) &isl_union_map_apply_union_pw_qpolynomial
},
475 { '.', isl_obj_union_map
, isl_obj_union_pw_qpolynomial_fold
,
477 (isc_bin_op_fn
) &union_map_apply_union_pw_qpolynomial_fold
},
478 { ISL_TOKEN_TO
, isl_obj_union_set
, isl_obj_union_set
,
480 (isc_bin_op_fn
) &isl_union_map_from_domain_and_range
},
481 { '=', isl_obj_union_set
, isl_obj_union_set
, isl_obj_bool
,
482 { .test
= (isc_bin_test_fn
) &isl_union_set_is_equal
} },
483 { '=', isl_obj_union_map
, isl_obj_union_map
, isl_obj_bool
,
484 { .test
= (isc_bin_test_fn
) &isl_union_map_is_equal
} },
485 { ISL_TOKEN_LE
, isl_obj_union_set
, isl_obj_union_set
,
487 { .test
= (isc_bin_test_fn
) &isl_union_set_is_subset
} },
488 { ISL_TOKEN_LE
, isl_obj_union_map
, isl_obj_union_map
,
490 { .test
= (isc_bin_test_fn
) &isl_union_map_is_subset
} },
491 { ISL_TOKEN_LT
, isl_obj_union_set
, isl_obj_union_set
,
493 { .test
= (isc_bin_test_fn
) &isl_union_set_is_strict_subset
} },
494 { ISL_TOKEN_LT
, isl_obj_union_map
, isl_obj_union_map
,
496 { .test
= (isc_bin_test_fn
) &isl_union_map_is_strict_subset
} },
497 { ISL_TOKEN_GE
, isl_obj_union_set
, isl_obj_union_set
,
499 { .test
= (isc_bin_test_fn
) &isl_union_set_is_superset
} },
500 { ISL_TOKEN_GE
, isl_obj_union_map
, isl_obj_union_map
,
502 { .test
= (isc_bin_test_fn
) &isl_union_map_is_superset
} },
503 { ISL_TOKEN_GT
, isl_obj_union_set
, isl_obj_union_set
,
506 (isc_bin_test_fn
) &isl_union_set_is_strict_superset
} },
507 { ISL_TOKEN_GT
, isl_obj_union_map
, isl_obj_union_map
,
510 (isc_bin_test_fn
) &isl_union_map_is_strict_superset
} },
511 { ISL_TOKEN_LEX_LE
, isl_obj_union_set
, isl_obj_union_set
,
513 (isc_bin_op_fn
) &isl_union_set_lex_le_union_set
},
514 { ISL_TOKEN_LEX_LT
, isl_obj_union_set
, isl_obj_union_set
,
516 (isc_bin_op_fn
) &isl_union_set_lex_lt_union_set
},
517 { ISL_TOKEN_LEX_GE
, isl_obj_union_set
, isl_obj_union_set
,
519 (isc_bin_op_fn
) &isl_union_set_lex_ge_union_set
},
520 { ISL_TOKEN_LEX_GT
, isl_obj_union_set
, isl_obj_union_set
,
522 (isc_bin_op_fn
) &isl_union_set_lex_gt_union_set
},
523 { ISL_TOKEN_LEX_LE
, isl_obj_union_map
, isl_obj_union_map
,
525 (isc_bin_op_fn
) &isl_union_map_lex_le_union_map
},
526 { ISL_TOKEN_LEX_LT
, isl_obj_union_map
, isl_obj_union_map
,
528 (isc_bin_op_fn
) &isl_union_map_lex_lt_union_map
},
529 { ISL_TOKEN_LEX_GE
, isl_obj_union_map
, isl_obj_union_map
,
531 (isc_bin_op_fn
) &isl_union_map_lex_ge_union_map
},
532 { ISL_TOKEN_LEX_GT
, isl_obj_union_map
, isl_obj_union_map
,
534 (isc_bin_op_fn
) &isl_union_map_lex_gt_union_map
},
535 { '.', isl_obj_union_pw_qpolynomial_fold
,
536 isl_obj_union_pw_qpolynomial_fold
,
537 isl_obj_union_pw_qpolynomial_fold
,
538 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_fold
},
539 { '+', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
540 isl_obj_union_pw_qpolynomial
,
541 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_add
},
542 { '+', isl_obj_union_pw_qpolynomial
,
543 isl_obj_union_pw_qpolynomial_fold
,
544 isl_obj_union_pw_qpolynomial_fold
,
545 (isc_bin_op_fn
) &union_pw_qpolynomial_add_union_pw_qpolynomial_fold
},
546 { '+', isl_obj_union_pw_qpolynomial_fold
,
547 isl_obj_union_pw_qpolynomial
,
548 isl_obj_union_pw_qpolynomial_fold
,
549 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial
},
550 { '-', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
551 isl_obj_union_pw_qpolynomial
,
552 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_sub
},
553 { '*', isl_obj_val
, isl_obj_union_pw_qpolynomial
,
554 isl_obj_union_pw_qpolynomial
,
555 (isc_bin_op_fn
) &isl_val_mul_union_pw_qpolynomial
},
556 { '*', isl_obj_union_pw_qpolynomial
, isl_obj_val
,
557 isl_obj_union_pw_qpolynomial
,
558 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_scale_val
},
559 { '*', isl_obj_val
, isl_obj_union_pw_qpolynomial_fold
,
560 isl_obj_union_pw_qpolynomial_fold
,
561 (isc_bin_op_fn
) &int_val_mul_union_pw_qpolynomial_fold
},
562 { '*', isl_obj_union_pw_qpolynomial_fold
, isl_obj_val
,
563 isl_obj_union_pw_qpolynomial_fold
,
564 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_scale_val
},
565 { '*', isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
566 isl_obj_union_pw_qpolynomial
,
567 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_mul
},
568 { '*', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
569 isl_obj_union_pw_qpolynomial
,
570 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_intersect_domain
},
571 { '*', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
572 isl_obj_union_pw_qpolynomial_fold
,
573 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_intersect_domain
},
574 { '@', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
575 isl_obj_union_pw_qpolynomial
,
576 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_at
},
577 { '@', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
578 isl_obj_union_pw_qpolynomial
,
579 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_at
},
580 { '%', isl_obj_union_set
, isl_obj_union_set
,
582 (isc_bin_op_fn
) &isl_union_set_gist
},
583 { '%', isl_obj_union_map
, isl_obj_union_map
,
585 (isc_bin_op_fn
) &isl_union_map_gist
},
586 { '%', isl_obj_union_map
, isl_obj_union_set
,
588 (isc_bin_op_fn
) &isl_union_map_gist_domain
},
589 { '%', isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
590 isl_obj_union_pw_qpolynomial
,
591 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_gist
},
592 { '%', isl_obj_union_pw_qpolynomial_fold
, isl_obj_union_set
,
593 isl_obj_union_pw_qpolynomial_fold
,
594 (isc_bin_op_fn
) &isl_union_pw_qpolynomial_fold_gist
},
595 { ISL_TOKEN_EQ_EQ
, isl_obj_union_pw_qpolynomial
,
596 isl_obj_union_pw_qpolynomial
, isl_obj_bool
,
597 { .test
= (isc_bin_test_fn
)
598 &isl_union_pw_qpolynomial_plain_is_equal
} },
599 { ISL_TOKEN_EQ_EQ
, isl_obj_union_pw_qpolynomial_fold
,
600 isl_obj_union_pw_qpolynomial_fold
, isl_obj_bool
,
601 { .test
= (isc_bin_test_fn
)
602 &isl_union_pw_qpolynomial_fold_plain_is_equal
} },
603 { '+', isl_obj_str
, isl_obj_str
, isl_obj_str
,
604 (isc_bin_op_fn
) &isl_str_concat
},
605 { '=', isl_obj_str
, isl_obj_str
, isl_obj_bool
,
606 { .test
= (isc_bin_test_fn
) &str_eq
} },
610 struct iscc_compound_bin_op compound_bin_ops
[] = {
611 { "->*", ISL_TOKEN_TO
, '*',
612 { -1, isl_obj_union_map
, isl_obj_union_set
,
614 (isc_bin_op_fn
) &isl_union_map_intersect_range
} },
615 { "->-", ISL_TOKEN_TO
, '-',
616 { -1, isl_obj_union_map
, isl_obj_union_set
,
618 (isc_bin_op_fn
) &isl_union_map_subtract_range
} },
622 static __isl_give isl_union_map
*map_after_map(__isl_take isl_union_map
*umap1
,
623 __isl_take isl_union_map
*umap2
)
625 return isl_union_map_apply_range(umap2
, umap1
);
628 static __isl_give isl_union_pw_qpolynomial
*qpolynomial_after_map(
629 __isl_take isl_union_pw_qpolynomial
*upwqp
,
630 __isl_take isl_union_map
*umap
)
632 return isl_union_map_apply_union_pw_qpolynomial(umap
, upwqp
);
635 static __isl_give
struct isl_list
*qpolynomial_fold_after_map(
636 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
637 __isl_take isl_union_map
*umap
)
639 return union_map_apply_union_pw_qpolynomial_fold(umap
, upwf
);
642 struct isc_named_bin_op named_bin_ops
[] = {
643 { "after", { -1, isl_obj_union_map
, isl_obj_union_map
,
645 (isc_bin_op_fn
) &map_after_map
} },
646 { "after", { -1, isl_obj_union_pw_qpolynomial
,
647 isl_obj_union_map
, isl_obj_union_pw_qpolynomial
,
648 (isc_bin_op_fn
) &qpolynomial_after_map
} },
649 { "after", { -1, isl_obj_union_pw_qpolynomial_fold
,
650 isl_obj_union_map
, isl_obj_list
,
651 (isc_bin_op_fn
) &qpolynomial_fold_after_map
} },
652 { "before", { -1, isl_obj_union_map
, isl_obj_union_map
,
654 (isc_bin_op_fn
) &isl_union_map_apply_range
} },
655 { "before", { -1, isl_obj_union_map
,
656 isl_obj_union_pw_qpolynomial
, isl_obj_union_pw_qpolynomial
,
657 (isc_bin_op_fn
) &isl_union_map_apply_union_pw_qpolynomial
} },
658 { "before", { -1, isl_obj_union_map
,
659 isl_obj_union_pw_qpolynomial_fold
, isl_obj_list
,
660 (isc_bin_op_fn
) &union_map_apply_union_pw_qpolynomial_fold
} },
661 { "cross", { -1, isl_obj_union_set
, isl_obj_union_set
,
663 (isc_bin_op_fn
) &isl_union_set_product
} },
664 { "cross", { -1, isl_obj_union_map
, isl_obj_union_map
,
666 (isc_bin_op_fn
) &isl_union_map_product
} },
670 __isl_give isl_set
*union_set_sample(__isl_take isl_union_set
*uset
)
672 return isl_set_from_basic_set(isl_union_set_sample(uset
));
675 __isl_give isl_map
*union_map_sample(__isl_take isl_union_map
*umap
)
677 return isl_map_from_basic_map(isl_union_map_sample(umap
));
680 static __isl_give
struct isl_list
*union_map_power(
681 __isl_take isl_union_map
*umap
)
684 struct isl_list
*list
;
687 ctx
= isl_union_map_get_ctx(umap
);
688 list
= isl_list_alloc(ctx
, 2);
692 list
->obj
[0].type
= isl_obj_union_map
;
693 list
->obj
[0].v
= isl_union_map_power(umap
, &exact
);
694 list
->obj
[1].type
= isl_obj_bool
;
695 list
->obj
[1].v
= exact
? &iscc_bool_true
: &iscc_bool_false
;
696 if (exact
< 0 || !list
->obj
[0].v
)
701 isl_union_map_free(umap
);
707 /* Compute a lower or upper bound on "upwqp" depending on "type" and
708 * return a list containing two elements, the bound and a boolean
709 * indicating whether the result is tight.
711 static __isl_give
struct isl_list
*union_pw_qpolynomial_bound(
712 __isl_take isl_union_pw_qpolynomial
*upwqp
, enum isl_fold type
)
715 struct isl_list
*list
;
718 ctx
= isl_union_pw_qpolynomial_get_ctx(upwqp
);
719 list
= isl_list_alloc(ctx
, 2);
723 list
->obj
[0].type
= isl_obj_union_pw_qpolynomial_fold
;
724 list
->obj
[0].v
= isl_union_pw_qpolynomial_bound(upwqp
, type
, &tight
);
725 list
->obj
[1].type
= isl_obj_bool
;
726 list
->obj
[1].v
= tight
? &iscc_bool_true
: &iscc_bool_false
;
727 if (tight
< 0 || !list
->obj
[0].v
)
732 isl_union_pw_qpolynomial_free(upwqp
);
738 /* Compute a lower bound on "upwqp" and return a list containing
739 * two elements, the bound and a booleanindicating whether
740 * the result is tight.
742 static __isl_give
struct isl_list
*union_pw_qpolynomial_lower_bound(
743 __isl_take isl_union_pw_qpolynomial
*upwqp
)
745 return union_pw_qpolynomial_bound(upwqp
, isl_fold_min
);
748 /* Compute a upper bound on "upwqp" and return a list containing
749 * two elements, the bound and a booleanindicating whether
750 * the result is tight.
752 static __isl_give
struct isl_list
*union_pw_qpolynomial_upper_bound(
753 __isl_take isl_union_pw_qpolynomial
*upwqp
)
755 return union_pw_qpolynomial_bound(upwqp
, isl_fold_max
);
759 /* Collect all statement instances, except those of kill statements.
761 static __isl_give isl_union_set
*collect_non_kill_instances(
762 struct pet_scop
*scop
)
766 isl_union_set
*domain
;
771 domain
= isl_union_set_empty(isl_set_get_space(scop
->context
));
773 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
774 struct pet_stmt
*stmt
= scop
->stmts
[i
];
776 if (pet_stmt_is_kill(stmt
))
778 domain_i
= isl_set_copy(stmt
->domain
);
779 if (scop
->stmts
[i
]->n_arg
> 0)
780 domain_i
= isl_map_domain(isl_set_unwrap(domain_i
));
781 domain
= isl_union_set_add_set(domain
, domain_i
);
787 static __isl_give isl_list
*parse(__isl_take isl_str
*str
)
790 struct isl_list
*list
;
791 struct pet_scop
*scop
;
793 isl_union_map
*may_reads
, *must_writes
, *may_writes
;
794 isl_union_set
*domain
;
795 struct iscc_options
*options
;
801 options
= isl_ctx_peek_iscc_options(ctx
);
802 if (!options
|| !options
->io
) {
804 isl_die(ctx
, isl_error_invalid
,
805 "parse_file operation not allowed", return NULL
);
808 list
= isl_list_alloc(ctx
, 5);
812 scop
= pet_scop_extract_from_C_source(ctx
, str
->s
, NULL
);
813 domain
= collect_non_kill_instances(scop
);
814 sched
= pet_scop_get_schedule(scop
);
815 sched
= isl_schedule_intersect_domain(sched
,
816 isl_union_set_copy(domain
));
817 may_reads
= pet_scop_get_may_reads(scop
);
818 may_writes
= pet_scop_get_may_writes(scop
);
819 must_writes
= pet_scop_get_must_writes(scop
);
822 list
->obj
[0].type
= isl_obj_union_set
;
823 list
->obj
[0].v
= domain
;
824 list
->obj
[1].type
= isl_obj_union_map
;
825 list
->obj
[1].v
= must_writes
;
826 list
->obj
[2].type
= isl_obj_union_map
;
827 list
->obj
[2].v
= may_writes
;
828 list
->obj
[3].type
= isl_obj_union_map
;
829 list
->obj
[3].v
= may_reads
;
830 list
->obj
[4].type
= isl_obj_schedule
;
831 list
->obj
[4].v
= sched
;
833 if (!list
->obj
[0].v
|| !list
->obj
[1].v
||
834 !list
->obj
[2].v
|| !list
->obj
[3].v
|| !list
->obj
[4].v
)
846 static isl_stat
add_point(__isl_take isl_point
*pnt
, void *user
)
848 isl_union_set
**scan
= (isl_union_set
**) user
;
850 *scan
= isl_union_set_add_set(*scan
, isl_set_from_point(pnt
));
855 static __isl_give isl_union_set
*union_set_scan(__isl_take isl_union_set
*uset
)
859 scan
= isl_union_set_empty(isl_union_set_get_space(uset
));
861 if (isl_union_set_foreach_point(uset
, add_point
, &scan
) < 0) {
862 isl_union_set_free(scan
);
866 isl_union_set_free(uset
);
870 static __isl_give isl_union_map
*union_map_scan(__isl_take isl_union_map
*umap
)
872 return isl_union_set_unwrap(union_set_scan(isl_union_map_wrap(umap
)));
875 static __isl_give isl_union_pw_qpolynomial
*union_pw_qpolynomial_poly(
876 __isl_take isl_union_pw_qpolynomial
*upwqp
)
878 return isl_union_pw_qpolynomial_to_polynomial(upwqp
, 0);
881 static __isl_give isl_union_pw_qpolynomial
*union_pw_qpolynomial_lpoly(
882 __isl_take isl_union_pw_qpolynomial
*upwqp
)
884 return isl_union_pw_qpolynomial_to_polynomial(upwqp
, -1);
887 static __isl_give isl_union_pw_qpolynomial
*union_pw_qpolynomial_upoly(
888 __isl_take isl_union_pw_qpolynomial
*upwqp
)
890 return isl_union_pw_qpolynomial_to_polynomial(upwqp
, 1);
893 /* Return the domain of "schedule".
895 static __isl_give isl_union_set
*schedule_domain(
896 __isl_take isl_schedule
*schedule
)
898 isl_union_set
*domain
;
900 domain
= isl_schedule_get_domain(schedule
);
901 isl_schedule_free(schedule
);
906 /* Convert "schedule" to a union map representation.
908 static __isl_give isl_union_map
*schedule_map(__isl_take isl_schedule
*schedule
)
912 map
= isl_schedule_get_map(schedule
);
913 isl_schedule_free(schedule
);
918 typedef void *(*isc_un_op_fn
)(void *arg
);
920 enum isl_token_type op
;
925 struct isc_named_un_op
{
929 struct isc_named_un_op named_un_ops
[] = {
930 {"aff", { -1, isl_obj_union_map
, isl_obj_union_map
,
931 (isc_un_op_fn
) &isl_union_map_affine_hull
} },
932 {"aff", { -1, isl_obj_union_set
, isl_obj_union_set
,
933 (isc_un_op_fn
) &isl_union_set_affine_hull
} },
934 {"card", { -1, isl_obj_union_set
,
935 isl_obj_union_pw_qpolynomial
,
936 (isc_un_op_fn
) &isl_union_set_card
} },
937 {"card", { -1, isl_obj_union_map
,
938 isl_obj_union_pw_qpolynomial
,
939 (isc_un_op_fn
) &isl_union_map_card
} },
940 {"coalesce", { -1, isl_obj_union_set
, isl_obj_union_set
,
941 (isc_un_op_fn
) &isl_union_set_coalesce
} },
942 {"coalesce", { -1, isl_obj_union_map
, isl_obj_union_map
,
943 (isc_un_op_fn
) &isl_union_map_coalesce
} },
944 {"coalesce", { -1, isl_obj_union_pw_qpolynomial
,
945 isl_obj_union_pw_qpolynomial
,
946 (isc_un_op_fn
) &isl_union_pw_qpolynomial_coalesce
} },
947 {"coalesce", { -1, isl_obj_union_pw_qpolynomial_fold
,
948 isl_obj_union_pw_qpolynomial_fold
,
949 (isc_un_op_fn
) &isl_union_pw_qpolynomial_fold_coalesce
} },
950 {"coefficients", { -1, isl_obj_union_set
,
952 (isc_un_op_fn
) &isl_union_set_coefficients
} },
953 {"solutions", { -1, isl_obj_union_set
, isl_obj_union_set
,
954 (isc_un_op_fn
) &isl_union_set_solutions
} },
955 {"deltas", { -1, isl_obj_union_map
, isl_obj_union_set
,
956 (isc_un_op_fn
) &isl_union_map_deltas
} },
957 {"deltas_map", { -1, isl_obj_union_map
, isl_obj_union_map
,
958 (isc_un_op_fn
) &isl_union_map_deltas_map
} },
959 {"dom", { -1, isl_obj_schedule
, isl_obj_union_set
,
960 (isc_un_op_fn
) &schedule_domain
} },
961 {"dom", { -1, isl_obj_union_map
, isl_obj_union_set
,
962 (isc_un_op_fn
) &isl_union_map_domain
} },
963 {"dom", { -1, isl_obj_union_pw_qpolynomial
, isl_obj_union_set
,
964 (isc_un_op_fn
) &isl_union_pw_qpolynomial_domain
} },
965 {"dom", { -1, isl_obj_union_pw_qpolynomial_fold
,
967 (isc_un_op_fn
) &isl_union_pw_qpolynomial_fold_domain
} },
968 {"domain", { -1, isl_obj_schedule
, isl_obj_union_set
,
969 (isc_un_op_fn
) &schedule_domain
} },
970 {"domain", { -1, isl_obj_union_map
, isl_obj_union_set
,
971 (isc_un_op_fn
) &isl_union_map_domain
} },
972 {"domain", { -1, isl_obj_union_pw_qpolynomial
,
974 (isc_un_op_fn
) &isl_union_pw_qpolynomial_domain
} },
975 {"domain", { -1, isl_obj_union_pw_qpolynomial_fold
,
977 (isc_un_op_fn
) &isl_union_pw_qpolynomial_fold_domain
} },
978 {"domain_map", { -1, isl_obj_union_map
, isl_obj_union_map
,
979 (isc_un_op_fn
) &isl_union_map_domain_map
} },
980 {"ran", { -1, isl_obj_union_map
, isl_obj_union_set
,
981 (isc_un_op_fn
) &isl_union_map_range
} },
982 {"range", { -1, isl_obj_union_map
, isl_obj_union_set
,
983 (isc_un_op_fn
) &isl_union_map_range
} },
984 {"range_map", { -1, isl_obj_union_map
, isl_obj_union_map
,
985 (isc_un_op_fn
) &isl_union_map_range_map
} },
986 {"identity", { -1, isl_obj_union_set
, isl_obj_union_map
,
987 (isc_un_op_fn
) &isl_union_set_identity
} },
988 {"lattice_width", { -1, isl_obj_union_set
,
989 isl_obj_union_pw_qpolynomial
,
990 (isc_un_op_fn
) &isl_union_set_lattice_width
} },
991 {"lb", { -1, isl_obj_union_pw_qpolynomial
, isl_obj_list
,
992 (isc_un_op_fn
) &union_pw_qpolynomial_lower_bound
} },
993 {"lexmin", { -1, isl_obj_union_map
, isl_obj_union_map
,
994 (isc_un_op_fn
) &isl_union_map_lexmin
} },
995 {"lexmax", { -1, isl_obj_union_map
, isl_obj_union_map
,
996 (isc_un_op_fn
) &isl_union_map_lexmax
} },
997 {"lexmin", { -1, isl_obj_union_set
, isl_obj_union_set
,
998 (isc_un_op_fn
) &isl_union_set_lexmin
} },
999 {"lexmax", { -1, isl_obj_union_set
, isl_obj_union_set
,
1000 (isc_un_op_fn
) &isl_union_set_lexmax
} },
1001 {"lift", { -1, isl_obj_union_set
, isl_obj_union_set
,
1002 (isc_un_op_fn
) &isl_union_set_lift
} },
1003 {"map", { -1, isl_obj_schedule
, isl_obj_union_map
,
1004 (isc_un_op_fn
) &schedule_map
} },
1005 {"params", { -1, isl_obj_union_map
, isl_obj_set
,
1006 (isc_un_op_fn
) &isl_union_map_params
} },
1007 {"params", { -1, isl_obj_union_set
, isl_obj_set
,
1008 (isc_un_op_fn
) &isl_union_set_params
} },
1009 {"poly", { -1, isl_obj_union_map
, isl_obj_union_map
,
1010 (isc_un_op_fn
) &isl_union_map_polyhedral_hull
} },
1011 {"poly", { -1, isl_obj_union_set
, isl_obj_union_set
,
1012 (isc_un_op_fn
) &isl_union_set_polyhedral_hull
} },
1013 {"poly", { -1, isl_obj_union_pw_qpolynomial
,
1014 isl_obj_union_pw_qpolynomial
,
1015 (isc_un_op_fn
) &union_pw_qpolynomial_poly
} },
1016 {"lpoly", { -1, isl_obj_union_pw_qpolynomial
,
1017 isl_obj_union_pw_qpolynomial
,
1018 (isc_un_op_fn
) &union_pw_qpolynomial_lpoly
} },
1019 {"upoly", { -1, isl_obj_union_pw_qpolynomial
,
1020 isl_obj_union_pw_qpolynomial
,
1021 (isc_un_op_fn
) &union_pw_qpolynomial_upoly
} },
1023 {"parse_file", { -1, isl_obj_str
, isl_obj_list
,
1024 (isc_un_op_fn
) &parse
} },
1026 {"pow", { -1, isl_obj_union_map
, isl_obj_list
,
1027 (isc_un_op_fn
) &union_map_power
} },
1028 {"sample", { -1, isl_obj_union_set
, isl_obj_set
,
1029 (isc_un_op_fn
) &union_set_sample
} },
1030 {"sample", { -1, isl_obj_union_map
, isl_obj_map
,
1031 (isc_un_op_fn
) &union_map_sample
} },
1032 {"scan", { -1, isl_obj_union_set
, isl_obj_union_set
,
1033 (isc_un_op_fn
) &union_set_scan
} },
1034 {"scan", { -1, isl_obj_union_map
, isl_obj_union_map
,
1035 (isc_un_op_fn
) &union_map_scan
} },
1036 {"sum", { -1, isl_obj_union_pw_qpolynomial
,
1037 isl_obj_union_pw_qpolynomial
,
1038 (isc_un_op_fn
) &isl_union_pw_qpolynomial_sum
} },
1039 {"ub", { -1, isl_obj_union_pw_qpolynomial
, isl_obj_list
,
1040 (isc_un_op_fn
) &union_pw_qpolynomial_upper_bound
} },
1041 {"unwrap", { -1, isl_obj_union_set
, isl_obj_union_map
,
1042 (isc_un_op_fn
) &isl_union_set_unwrap
} },
1043 {"wrap", { -1, isl_obj_union_map
, isl_obj_union_set
,
1044 (isc_un_op_fn
) &isl_union_map_wrap
} },
1045 {"zip", { -1, isl_obj_union_map
, isl_obj_union_map
,
1046 (isc_un_op_fn
) &isl_union_map_zip
} },
1050 struct isl_named_obj
{
1055 static void free_obj(struct isl_obj obj
)
1057 obj
.type
->free(obj
.v
);
1060 static int same_name(const void *entry
, const void *val
)
1062 const struct isl_named_obj
*named
= (const struct isl_named_obj
*)entry
;
1064 return !strcmp(named
->name
, val
);
1067 static int do_assign(struct isl_ctx
*ctx
, struct isl_hash_table
*table
,
1068 char *name
, struct isl_obj obj
)
1070 struct isl_hash_table_entry
*entry
;
1072 struct isl_named_obj
*named
;
1074 name_hash
= isl_hash_string(isl_hash_init(), name
);
1075 entry
= isl_hash_table_find(ctx
, table
, name_hash
, same_name
, name
, 1);
1079 named
= entry
->data
;
1080 free_obj(named
->obj
);
1083 named
= isl_alloc_type(ctx
, struct isl_named_obj
);
1087 entry
->data
= named
;
1098 static struct isl_obj
stored_obj(struct isl_ctx
*ctx
,
1099 struct isl_hash_table
*table
, char *name
)
1101 struct isl_obj obj
= { isl_obj_none
, NULL
};
1102 struct isl_hash_table_entry
*entry
;
1105 name_hash
= isl_hash_string(isl_hash_init(), name
);
1106 entry
= isl_hash_table_find(ctx
, table
, name_hash
, same_name
, name
, 0);
1108 struct isl_named_obj
*named
;
1109 named
= entry
->data
;
1111 } else if (isdigit(name
[0]))
1112 fprintf(stderr
, "unknown identifier '$%s'\n", name
);
1114 fprintf(stderr
, "unknown identifier '%s'\n", name
);
1117 obj
.v
= obj
.type
->copy(obj
.v
);
1121 static int is_subtype(struct isl_obj obj
, isl_obj_type super
)
1123 if (obj
.type
== super
)
1125 if (obj
.type
== isl_obj_map
&& super
== isl_obj_union_map
)
1127 if (obj
.type
== isl_obj_set
&& super
== isl_obj_union_set
)
1129 if (obj
.type
== isl_obj_schedule
&& super
== isl_obj_union_map
)
1131 if (obj
.type
== isl_obj_pw_multi_aff
&& super
== isl_obj_union_set
) {
1132 isl_space
*space
= isl_pw_multi_aff_get_space(obj
.v
);
1133 int is_set
= isl_space_is_set(space
);
1134 isl_space_free(space
);
1137 if (obj
.type
== isl_obj_pw_qpolynomial
&&
1138 super
== isl_obj_union_pw_qpolynomial
)
1140 if (obj
.type
== isl_obj_pw_qpolynomial_fold
&&
1141 super
== isl_obj_union_pw_qpolynomial_fold
)
1143 if (obj
.type
== isl_obj_union_set
&& isl_union_set_is_empty(obj
.v
))
1145 if (obj
.type
== isl_obj_list
) {
1146 struct isl_list
*list
= obj
.v
;
1147 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1148 return is_subtype(list
->obj
[0], super
);
1150 if (super
== isl_obj_str
)
1155 static struct isl_obj
obj_at(struct isl_obj obj
, int i
)
1157 struct isl_list
*list
= obj
.v
;
1160 obj
.v
= obj
.type
->copy(obj
.v
);
1162 isl_list_free(list
);
1167 static struct isl_obj
convert(isl_ctx
*ctx
, struct isl_obj obj
,
1170 if (obj
.type
== type
)
1172 if (obj
.type
== isl_obj_pw_multi_aff
&& type
== isl_obj_union_set
) {
1173 isl_set
*set
= isl_set_from_pw_multi_aff(obj
.v
);
1174 obj
.type
= isl_obj_union_set
;
1175 obj
.v
= isl_union_set_from_set(set
);
1178 if (obj
.type
== isl_obj_map
&& type
== isl_obj_union_map
) {
1179 obj
.type
= isl_obj_union_map
;
1180 obj
.v
= isl_union_map_from_map(obj
.v
);
1183 if (obj
.type
== isl_obj_schedule
&& type
== isl_obj_union_map
) {
1184 obj
.type
= isl_obj_union_map
;
1185 obj
.v
= schedule_map(obj
.v
);
1188 if (obj
.type
== isl_obj_set
&& type
== isl_obj_union_set
) {
1189 obj
.type
= isl_obj_union_set
;
1190 obj
.v
= isl_union_set_from_set(obj
.v
);
1193 if (obj
.type
== isl_obj_pw_qpolynomial
&&
1194 type
== isl_obj_union_pw_qpolynomial
) {
1195 obj
.type
= isl_obj_union_pw_qpolynomial
;
1196 obj
.v
= isl_union_pw_qpolynomial_from_pw_qpolynomial(obj
.v
);
1199 if (obj
.type
== isl_obj_pw_qpolynomial_fold
&&
1200 type
== isl_obj_union_pw_qpolynomial_fold
) {
1201 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
1202 obj
.v
= isl_union_pw_qpolynomial_fold_from_pw_qpolynomial_fold(obj
.v
);
1205 if (obj
.type
== isl_obj_union_set
&& isl_union_set_is_empty(obj
.v
)) {
1206 if (type
== isl_obj_union_map
) {
1207 obj
.type
= isl_obj_union_map
;
1210 if (type
== isl_obj_union_pw_qpolynomial
) {
1211 isl_space
*dim
= isl_union_set_get_space(obj
.v
);
1212 isl_union_set_free(obj
.v
);
1213 obj
.v
= isl_union_pw_qpolynomial_zero(dim
);
1214 obj
.type
= isl_obj_union_pw_qpolynomial
;
1217 if (type
== isl_obj_union_pw_qpolynomial_fold
) {
1218 isl_space
*dim
= isl_union_set_get_space(obj
.v
);
1219 isl_union_set_free(obj
.v
);
1220 obj
.v
= isl_union_pw_qpolynomial_fold_zero(dim
,
1222 obj
.type
= isl_obj_union_pw_qpolynomial_fold
;
1226 if (obj
.type
== isl_obj_list
) {
1227 struct isl_list
*list
= obj
.v
;
1228 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1229 return convert(ctx
, obj_at(obj
, 0), type
);
1231 if (type
== isl_obj_str
) {
1236 p
= isl_printer_to_str(ctx
);
1239 p
= obj
.type
->print(p
, obj
.v
);
1240 s
= isl_printer_get_str(p
);
1241 isl_printer_free(p
);
1243 str
= isl_str_from_string(ctx
, s
);
1248 obj
.type
= isl_obj_str
;
1254 obj
.type
= isl_obj_none
;
1259 static struct isc_bin_op
*read_bin_op_if_available(struct isl_stream
*s
,
1264 struct isl_token
*tok
, *tok2
;
1266 tok
= isl_stream_next_token(s
);
1270 for (i
= 0; ; ++i
) {
1273 if (bin_ops
[i
].op
!= isl_token_get_type(tok
))
1275 if (!is_subtype(lhs
, bin_ops
[i
].lhs
))
1278 isl_token_free(tok
);
1282 for (i
= 0; ; ++i
) {
1283 if (!named_bin_ops
[i
].name
)
1285 if (named_bin_ops
[i
].op
.op
!= isl_token_get_type(tok
))
1287 if (!is_subtype(lhs
, named_bin_ops
[i
].op
.lhs
))
1290 isl_token_free(tok
);
1291 return &named_bin_ops
[i
].op
;
1294 for (i
= 0; ; ++i
) {
1295 if (!compound_bin_ops
[i
].full
)
1297 if (compound_bin_ops
[i
].op1
!= isl_token_get_type(tok
))
1300 tok2
= isl_stream_next_token(s
);
1302 if (compound_bin_ops
[i
].op2
!= isl_token_get_type(tok2
))
1304 if (!is_subtype(lhs
, compound_bin_ops
[i
].op
.lhs
))
1307 isl_token_free(tok2
);
1308 isl_token_free(tok
);
1309 return &compound_bin_ops
[i
].op
;
1313 isl_stream_push_token(s
, tok2
);
1314 isl_stream_push_token(s
, tok
);
1319 static struct isc_un_op
*read_prefix_un_op_if_available(struct isl_stream
*s
)
1322 struct isl_token
*tok
;
1324 tok
= isl_stream_next_token(s
);
1328 for (i
= 0; ; ++i
) {
1329 if (!named_un_ops
[i
].name
)
1331 if (named_un_ops
[i
].op
.op
!= isl_token_get_type(tok
))
1334 isl_token_free(tok
);
1335 return &named_un_ops
[i
].op
;
1338 isl_stream_push_token(s
, tok
);
1343 static struct isc_un_op
*find_matching_un_op(struct isc_un_op
*like
,
1348 for (i
= 0; ; ++i
) {
1349 if (!named_un_ops
[i
].name
)
1351 if (named_un_ops
[i
].op
.op
!= like
->op
)
1353 if (!is_subtype(arg
, named_un_ops
[i
].op
.arg
))
1356 return &named_un_ops
[i
].op
;
1362 static int is_assign(struct isl_stream
*s
)
1364 struct isl_token
*tok
;
1365 struct isl_token
*tok2
;
1368 tok
= isl_stream_next_token(s
);
1371 if (isl_token_get_type(tok
) != ISL_TOKEN_IDENT
) {
1372 isl_stream_push_token(s
, tok
);
1376 tok2
= isl_stream_next_token(s
);
1378 isl_stream_push_token(s
, tok
);
1381 assign
= isl_token_get_type(tok2
) == ISL_TOKEN_DEF
;
1382 isl_stream_push_token(s
, tok2
);
1383 isl_stream_push_token(s
, tok
);
1388 static struct isl_obj
read_obj(struct isl_stream
*s
,
1389 struct isl_hash_table
*table
);
1390 static struct isl_obj
read_expr(struct isl_stream
*s
,
1391 struct isl_hash_table
*table
);
1393 static struct isl_obj
read_un_op_expr(struct isl_stream
*s
,
1394 struct isl_hash_table
*table
, struct isc_un_op
*op
)
1397 struct isl_obj obj
= { isl_obj_none
, NULL
};
1399 obj
= read_obj(s
, table
);
1403 op
= find_matching_un_op(op
, obj
);
1405 ctx
= isl_stream_get_ctx(s
);
1407 isl_die(ctx
, isl_error_invalid
,
1408 "no such unary operator defined on given operand",
1411 obj
= convert(ctx
, obj
, op
->arg
);
1412 obj
.v
= op
->fn(obj
.v
);
1418 obj
.type
= isl_obj_none
;
1423 static struct isl_obj
transitive_closure(struct isl_ctx
*ctx
, struct isl_obj obj
)
1425 struct isl_list
*list
;
1428 if (obj
.type
!= isl_obj_union_map
)
1429 obj
= convert(ctx
, obj
, isl_obj_union_map
);
1430 isl_assert(ctx
, obj
.type
== isl_obj_union_map
, goto error
);
1431 list
= isl_list_alloc(ctx
, 2);
1435 list
->obj
[0].type
= isl_obj_union_map
;
1436 list
->obj
[0].v
= isl_union_map_transitive_closure(obj
.v
, &exact
);
1437 list
->obj
[1].type
= isl_obj_bool
;
1438 list
->obj
[1].v
= exact
? &iscc_bool_true
: &iscc_bool_false
;
1440 obj
.type
= isl_obj_list
;
1441 if (exact
< 0 || !list
->obj
[0].v
)
1447 obj
.type
= isl_obj_none
;
1452 static struct isl_obj
obj_at_index(struct isl_stream
*s
, struct isl_obj obj
)
1454 struct isl_list
*list
= obj
.v
;
1455 struct isl_token
*tok
;
1460 tok
= isl_stream_next_token(s
);
1461 if (!tok
|| isl_token_get_type(tok
) != ISL_TOKEN_VALUE
) {
1462 isl_stream_error(s
, tok
, "expecting index");
1464 isl_stream_push_token(s
, tok
);
1467 ctx
= isl_stream_get_ctx(s
);
1468 v
= isl_token_get_val(ctx
, tok
);
1469 i
= isl_val_get_num_si(v
);
1471 isl_token_free(tok
);
1472 isl_assert(ctx
, i
< list
->n
, goto error
);
1473 if (isl_stream_eat(s
, ']'))
1476 return obj_at(obj
, i
);
1479 obj
.type
= isl_obj_none
;
1484 static struct isl_obj
apply(struct isl_stream
*s
, __isl_take isl_union_map
*umap
,
1485 struct isl_hash_table
*table
)
1490 obj
= read_expr(s
, table
);
1491 ctx
= isl_stream_get_ctx(s
);
1492 isl_assert(ctx
, is_subtype(obj
, isl_obj_union_set
) ||
1493 is_subtype(obj
, isl_obj_union_map
), goto error
);
1495 if (obj
.type
== isl_obj_list
) {
1496 struct isl_list
*list
= obj
.v
;
1497 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1498 obj
= obj_at(obj
, 0);
1500 if (obj
.type
== isl_obj_set
)
1501 obj
= convert(ctx
, obj
, isl_obj_union_set
);
1502 else if (obj
.type
== isl_obj_map
)
1503 obj
= convert(ctx
, obj
, isl_obj_union_map
);
1504 if (obj
.type
== isl_obj_union_set
) {
1505 obj
.v
= isl_union_set_apply(obj
.v
, umap
);
1507 obj
.v
= isl_union_map_apply_range(obj
.v
, umap
);
1511 if (isl_stream_eat(s
, ')'))
1516 isl_union_map_free(umap
);
1519 obj
.type
= isl_obj_none
;
1524 static struct isl_obj
apply_fun_set(struct isl_obj obj
,
1525 __isl_take isl_union_set
*uset
)
1527 if (obj
.type
== isl_obj_union_pw_qpolynomial
) {
1528 obj
.v
= isl_union_set_apply_union_pw_qpolynomial(uset
, obj
.v
);
1530 obj
.type
= isl_obj_list
;
1531 obj
.v
= union_set_apply_union_pw_qpolynomial_fold(uset
, obj
.v
);
1536 static struct isl_obj
apply_fun_map(struct isl_obj obj
,
1537 __isl_take isl_union_map
*umap
)
1539 if (obj
.type
== isl_obj_union_pw_qpolynomial
) {
1540 obj
.v
= isl_union_map_apply_union_pw_qpolynomial(umap
, obj
.v
);
1542 obj
.type
= isl_obj_list
;
1543 obj
.v
= union_map_apply_union_pw_qpolynomial_fold(umap
, obj
.v
);
1548 static struct isl_obj
apply_fun(struct isl_stream
*s
,
1549 struct isl_obj obj
, struct isl_hash_table
*table
)
1554 arg
= read_expr(s
, table
);
1555 ctx
= isl_stream_get_ctx(s
);
1556 if (!is_subtype(arg
, isl_obj_union_map
) &&
1557 !is_subtype(arg
, isl_obj_union_set
))
1558 isl_die(ctx
, isl_error_invalid
,
1559 "expecting set of map argument", goto error
);
1561 if (arg
.type
== isl_obj_list
) {
1562 struct isl_list
*list
= arg
.v
;
1563 if (list
->n
== 2 && list
->obj
[1].type
== isl_obj_bool
)
1564 arg
= obj_at(arg
, 0);
1566 if (arg
.type
== isl_obj_set
)
1567 arg
= convert(ctx
, arg
, isl_obj_union_set
);
1568 else if (arg
.type
== isl_obj_map
)
1569 arg
= convert(ctx
, arg
, isl_obj_union_map
);
1570 if (arg
.type
== isl_obj_union_set
)
1571 obj
= apply_fun_set(obj
, arg
.v
);
1573 obj
= apply_fun_map(obj
, arg
.v
);
1577 if (isl_stream_eat(s
, ')'))
1585 obj
.type
= isl_obj_none
;
1590 struct add_vertex_data
{
1591 struct isl_list
*list
;
1595 static isl_stat
add_vertex(__isl_take isl_vertex
*vertex
, void *user
)
1597 struct add_vertex_data
*data
= (struct add_vertex_data
*)user
;
1601 ma
= isl_vertex_get_expr(vertex
);
1602 dom
= isl_set_from_basic_set(isl_vertex_get_domain(vertex
));
1604 data
->list
->obj
[data
->i
].type
= isl_obj_pw_multi_aff
;
1605 data
->list
->obj
[data
->i
].v
= isl_pw_multi_aff_alloc(dom
, ma
);
1608 isl_vertex_free(vertex
);
1613 static isl_stat
set_vertices(__isl_take isl_set
*set
, void *user
)
1616 isl_basic_set
*hull
;
1617 isl_vertices
*vertices
= NULL
;
1618 struct isl_list
*list
= NULL
;
1620 struct add_vertex_data
*data
= (struct add_vertex_data
*)user
;
1622 set
= isl_set_remove_divs(set
);
1623 hull
= isl_set_convex_hull(set
);
1624 vertices
= isl_basic_set_compute_vertices(hull
);
1625 isl_basic_set_free(hull
);
1629 ctx
= isl_vertices_get_ctx(vertices
);
1630 data
->list
= isl_list_alloc(ctx
, isl_vertices_get_n_vertices(vertices
));
1635 r
= isl_vertices_foreach_vertex(vertices
, &add_vertex
, user
);
1637 data
->list
= isl_list_concat(list
, data
->list
);
1639 isl_vertices_free(vertices
);
1644 isl_vertices_free(vertices
);
1645 return isl_stat_error
;
1648 static struct isl_obj
vertices(struct isl_stream
*s
,
1649 struct isl_hash_table
*table
)
1653 struct isl_list
*list
= NULL
;
1654 isl_union_set
*uset
= NULL
;
1655 struct add_vertex_data data
= { NULL
};
1657 obj
= read_expr(s
, table
);
1658 ctx
= isl_stream_get_ctx(s
);
1659 obj
= convert(ctx
, obj
, isl_obj_union_set
);
1660 isl_assert(ctx
, obj
.type
== isl_obj_union_set
, goto error
);
1664 list
= isl_list_alloc(ctx
, 0);
1670 if (isl_union_set_foreach_set(uset
, &set_vertices
, &data
) < 0)
1673 isl_union_set_free(uset
);
1675 obj
.type
= isl_obj_list
;
1680 isl_union_set_free(uset
);
1681 isl_list_free(data
.list
);
1683 obj
.type
= isl_obj_none
;
1688 static struct isl_obj
type_of(struct isl_stream
*s
,
1689 struct isl_hash_table
*table
)
1692 const char *type
= "unknown";
1694 obj
= read_expr(s
, table
);
1696 if (obj
.type
== isl_obj_map
||
1697 obj
.type
== isl_obj_union_map
)
1699 if (obj
.type
== isl_obj_set
||
1700 obj
.type
== isl_obj_union_set
)
1702 if (obj
.type
== isl_obj_pw_multi_aff
)
1703 type
= "piecewise multi-quasiaffine expression";
1704 if (obj
.type
== isl_obj_pw_qpolynomial
||
1705 obj
.type
== isl_obj_union_pw_qpolynomial
)
1706 type
= "piecewise quasipolynomial";
1707 if (obj
.type
== isl_obj_pw_qpolynomial_fold
||
1708 obj
.type
== isl_obj_union_pw_qpolynomial_fold
)
1709 type
= "piecewise quasipolynomial fold";
1710 if (obj
.type
== isl_obj_list
)
1712 if (obj
.type
== isl_obj_bool
)
1714 if (obj
.type
== isl_obj_str
)
1716 if (obj
.type
== isl_obj_val
)
1718 if (obj
.type
== isl_obj_schedule
)
1722 obj
.type
= isl_obj_str
;
1723 obj
.v
= isl_str_from_string(isl_stream_get_ctx(s
), strdup(type
));
1728 static __isl_give isl_union_set
*read_set(struct isl_stream
*s
,
1729 struct isl_hash_table
*table
)
1734 obj
= read_obj(s
, table
);
1735 ctx
= isl_stream_get_ctx(s
);
1736 obj
= convert(ctx
, obj
, isl_obj_union_set
);
1737 isl_assert(ctx
, obj
.type
== isl_obj_union_set
, goto error
);
1744 static __isl_give isl_union_map
*read_map(struct isl_stream
*s
,
1745 struct isl_hash_table
*table
)
1750 obj
= read_obj(s
, table
);
1751 ctx
= isl_stream_get_ctx(s
);
1752 obj
= convert(ctx
, obj
, isl_obj_union_map
);
1753 isl_assert(ctx
, obj
.type
== isl_obj_union_map
, goto error
);
1760 /* Read a schedule in the form of either a schedule (tree) or a union map
1761 * from "s" and store the schedule in "access".
1763 static __isl_give isl_union_access_info
*access_info_set_schedule(
1764 __isl_take isl_union_access_info
*access
, struct isl_stream
*s
,
1765 struct isl_hash_table
*table
)
1770 obj
= read_obj(s
, table
);
1771 if (obj
.type
== isl_obj_schedule
)
1772 return isl_union_access_info_set_schedule(access
, obj
.v
);
1773 ctx
= isl_stream_get_ctx(s
);
1774 obj
= convert(ctx
, obj
, isl_obj_union_map
);
1776 return isl_union_access_info_set_schedule_map(access
, obj
.v
);
1779 static struct isl_obj
last_any(struct isl_stream
*s
,
1780 struct isl_hash_table
*table
, __isl_take isl_union_map
*must_source
,
1781 __isl_take isl_union_map
*may_source
)
1783 struct isl_obj obj
= { isl_obj_none
, NULL
};
1784 isl_union_access_info
*access
;
1785 isl_union_flow
*flow
;
1786 isl_union_map
*sink
= NULL
;
1787 isl_union_map
*may_dep
;
1789 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1792 sink
= read_map(s
, table
);
1796 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1799 access
= isl_union_access_info_from_sink(sink
);
1800 access
= isl_union_access_info_set_must_source(access
, must_source
);
1801 access
= isl_union_access_info_set_may_source(access
, may_source
);
1802 access
= access_info_set_schedule(access
, s
, table
);
1803 flow
= isl_union_access_info_compute_flow(access
);
1804 may_dep
= isl_union_flow_get_may_dependence(flow
);
1805 isl_union_flow_free(flow
);
1810 obj
.type
= isl_obj_union_map
;
1815 isl_union_map_free(may_source
);
1816 isl_union_map_free(must_source
);
1817 isl_union_map_free(sink
);
1819 obj
.type
= isl_obj_none
;
1824 static struct isl_obj
any(struct isl_stream
*s
, struct isl_hash_table
*table
)
1826 struct isl_obj obj
= { isl_obj_none
, NULL
};
1827 isl_union_access_info
*access
;
1828 isl_union_flow
*flow
;
1829 isl_union_map
*may_source
= NULL
;
1830 isl_union_map
*sink
= NULL
;
1831 isl_union_map
*may_dep
;
1833 may_source
= read_map(s
, table
);
1837 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_LAST
])) {
1838 isl_union_map
*must_source
;
1839 must_source
= read_map(s
, table
);
1842 return last_any(s
, table
, must_source
, may_source
);
1845 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1848 sink
= read_map(s
, table
);
1852 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1855 access
= isl_union_access_info_from_sink(sink
);
1856 access
= isl_union_access_info_set_may_source(access
, may_source
);
1857 access
= access_info_set_schedule(access
, s
, table
);
1858 flow
= isl_union_access_info_compute_flow(access
);
1859 may_dep
= isl_union_flow_get_may_dependence(flow
);
1860 isl_union_flow_free(flow
);
1865 obj
.type
= isl_obj_union_map
;
1870 isl_union_map_free(may_source
);
1871 isl_union_map_free(sink
);
1873 obj
.type
= isl_obj_none
;
1878 static struct isl_obj
last(struct isl_stream
*s
, struct isl_hash_table
*table
)
1880 struct isl_obj obj
= { isl_obj_none
, NULL
};
1881 struct isl_list
*list
= NULL
;
1882 isl_union_access_info
*access
;
1883 isl_union_flow
*flow
;
1884 isl_union_map
*must_source
= NULL
;
1885 isl_union_map
*sink
= NULL
;
1886 isl_union_map
*must_dep
;
1887 isl_union_map
*must_no_source
;
1889 must_source
= read_map(s
, table
);
1893 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_ANY
])) {
1894 isl_union_map
*may_source
;
1895 may_source
= read_map(s
, table
);
1898 return last_any(s
, table
, must_source
, may_source
);
1901 list
= isl_list_alloc(isl_stream_get_ctx(s
), 2);
1905 if (isl_stream_eat(s
, iscc_op
[ISCC_BEFORE
]))
1908 sink
= read_map(s
, table
);
1912 if (isl_stream_eat(s
, iscc_op
[ISCC_UNDER
]))
1915 access
= isl_union_access_info_from_sink(sink
);
1916 access
= isl_union_access_info_set_must_source(access
, must_source
);
1917 access
= access_info_set_schedule(access
, s
, table
);
1918 flow
= isl_union_access_info_compute_flow(access
);
1919 must_dep
= isl_union_flow_get_must_dependence(flow
);
1920 must_no_source
= isl_union_flow_get_must_no_source(flow
);
1921 isl_union_flow_free(flow
);
1923 list
->obj
[0].type
= isl_obj_union_map
;
1924 list
->obj
[0].v
= must_dep
;
1925 list
->obj
[1].type
= isl_obj_union_map
;
1926 list
->obj
[1].v
= must_no_source
;
1928 if (!must_dep
|| !must_no_source
) {
1929 isl_list_free(list
);
1934 obj
.type
= isl_obj_list
;
1938 isl_list_free(list
);
1939 isl_union_map_free(must_source
);
1940 isl_union_map_free(sink
);
1942 obj
.type
= isl_obj_none
;
1947 static __isl_give isl_schedule
*get_schedule(struct isl_stream
*s
,
1948 struct isl_hash_table
*table
)
1950 isl_union_set
*domain
;
1951 isl_union_map
*validity
;
1952 isl_union_map
*proximity
;
1954 domain
= read_set(s
, table
);
1958 validity
= isl_union_map_empty(isl_union_set_get_space(domain
));
1959 proximity
= isl_union_map_empty(isl_union_set_get_space(domain
));
1962 isl_union_map
*umap
;
1963 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_RESPECTING
])) {
1964 umap
= read_map(s
, table
);
1965 validity
= isl_union_map_union(validity
, umap
);
1966 } else if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_MINIMIZING
])) {
1967 umap
= read_map(s
, table
);
1968 proximity
= isl_union_map_union(proximity
, umap
);
1973 return isl_union_set_compute_schedule(domain
, validity
, proximity
);
1976 static struct isl_obj
schedule(struct isl_stream
*s
,
1977 struct isl_hash_table
*table
)
1979 struct isl_obj obj
= { isl_obj_none
, NULL
};
1980 isl_schedule
*schedule
;
1982 schedule
= get_schedule(s
, table
);
1985 obj
.type
= isl_obj_schedule
;
1990 /* Read a schedule for code generation in the form of either
1991 * a schedule tree or a union map.
1992 * If the input is a set rather than a map, then we construct
1993 * an identity union map schedule on the given set.
1995 static struct isl_obj
get_codegen_schedule(struct isl_stream
*s
,
1996 struct isl_hash_table
*table
)
2001 obj
= read_obj(s
, table
);
2002 ctx
= isl_stream_get_ctx(s
);
2004 if (obj
.type
== isl_obj_schedule
)
2006 if (is_subtype(obj
, isl_obj_union_set
)) {
2007 obj
= convert(ctx
, obj
, isl_obj_union_set
);
2008 obj
.v
= isl_union_set_identity(obj
.v
);
2009 obj
.type
= isl_obj_union_map
;
2011 if (is_subtype(obj
, isl_obj_union_map
))
2012 return convert(ctx
, obj
, isl_obj_union_map
);
2016 obj
.type
= isl_obj_none
;
2017 isl_die(ctx
, isl_error_invalid
, "expecting schedule, set or map",
2021 /* Generate an AST for the given schedule and options and return the AST.
2023 static __isl_give isl_ast_node
*get_ast_from_union_map(
2024 __isl_take isl_union_map
*schedule
, __isl_take isl_union_map
*options
)
2028 isl_ast_build
*build
;
2031 space
= isl_union_map_get_space(schedule
);
2032 context
= isl_set_universe(isl_space_params(space
));
2034 build
= isl_ast_build_from_context(context
);
2035 build
= isl_ast_build_set_options(build
, options
);
2036 tree
= isl_ast_build_ast_from_schedule(build
, schedule
);
2037 isl_ast_build_free(build
);
2042 /* Generate an AST for the given schedule and return the AST.
2044 static __isl_give isl_ast_node
*get_ast_from_schedule(
2045 __isl_take isl_schedule
*schedule
)
2047 isl_ast_build
*build
;
2050 build
= isl_ast_build_alloc(isl_schedule_get_ctx(schedule
));
2051 tree
= isl_ast_build_node_from_schedule(build
, schedule
);
2052 isl_ast_build_free(build
);
2057 /* Print the AST "tree" on the printer "p".
2059 static __isl_give isl_printer
*print_ast(__isl_take isl_printer
*p
,
2060 __isl_take isl_ast_node
*tree
)
2064 format
= isl_printer_get_output_format(p
);
2065 p
= isl_printer_set_output_format(p
, ISL_FORMAT_C
);
2066 p
= isl_printer_print_ast_node(p
, tree
);
2067 p
= isl_printer_set_output_format(p
, format
);
2069 isl_ast_node_free(tree
);
2074 /* Perform the codegen operation.
2075 * In particular, read a schedule, check if the user has specified any options
2076 * and then generate an AST from the schedule (and options) and print it.
2077 * In case the schedule is specified as a schedule tree, the AST generation
2078 * options are embedded in the schedule, so they are not read in separately.
2080 static __isl_give isl_printer
*codegen(struct isl_stream
*s
,
2081 struct isl_hash_table
*table
, __isl_take isl_printer
*p
)
2086 obj
= get_codegen_schedule(s
, table
);
2090 if (obj
.type
== isl_obj_schedule
) {
2091 isl_schedule
*schedule
= obj
.v
;
2093 tree
= get_ast_from_schedule(schedule
);
2095 isl_union_map
*schedule
= obj
.v
;
2096 isl_union_map
*options
;
2098 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_USING
]))
2099 options
= read_map(s
, table
);
2101 options
= isl_union_map_empty(
2102 isl_union_map_get_space(schedule
));
2104 tree
= get_ast_from_union_map(schedule
, options
);
2108 p
= print_ast(p
, tree
);
2110 isl_stream_eat(s
, ';');
2115 static struct isl_obj
power(struct isl_stream
*s
, struct isl_obj obj
)
2117 struct isl_token
*tok
;
2121 ctx
= isl_stream_get_ctx(s
);
2122 if (isl_stream_eat_if_available(s
, '+'))
2123 return transitive_closure(ctx
, obj
);
2125 isl_assert(ctx
, is_subtype(obj
, isl_obj_union_map
), goto error
);
2126 if (obj
.type
!= isl_obj_union_map
)
2127 obj
= convert(ctx
, obj
, isl_obj_union_map
);
2129 tok
= isl_stream_next_token(s
);
2130 if (!tok
|| isl_token_get_type(tok
) != ISL_TOKEN_VALUE
) {
2131 isl_stream_error(s
, tok
, "expecting integer exponent");
2133 isl_stream_push_token(s
, tok
);
2137 v
= isl_token_get_val(ctx
, tok
);
2138 if (isl_val_is_zero(v
)) {
2139 isl_stream_error(s
, tok
, "expecting non-zero exponent");
2142 isl_stream_push_token(s
, tok
);
2146 obj
.v
= isl_union_map_fixed_power_val(obj
.v
, v
);
2147 isl_token_free(tok
);
2154 obj
.type
= isl_obj_none
;
2159 static struct isl_obj
check_assert(struct isl_stream
*s
,
2160 struct isl_hash_table
*table
)
2165 obj
= read_expr(s
, table
);
2166 ctx
= isl_stream_get_ctx(s
);
2167 if (obj
.type
!= isl_obj_bool
)
2168 isl_die(ctx
, isl_error_invalid
,
2169 "expecting boolean expression", goto error
);
2170 if (obj
.v
!= &iscc_bool_true
)
2171 isl_die(ctx
, isl_error_unknown
,
2172 "assertion failed", abort());
2175 obj
.type
= isl_obj_none
;
2180 static struct isl_obj
read_from_file(struct isl_stream
*s
)
2184 struct isl_token
*tok
;
2185 struct isl_stream
*s_file
;
2186 struct iscc_options
*options
;
2190 tok
= isl_stream_next_token(s
);
2191 if (!tok
|| isl_token_get_type(tok
) != ISL_TOKEN_STRING
) {
2192 isl_stream_error(s
, tok
, "expecting filename");
2193 isl_token_free(tok
);
2197 ctx
= isl_stream_get_ctx(s
);
2198 options
= isl_ctx_peek_iscc_options(ctx
);
2199 if (!options
|| !options
->io
) {
2200 isl_token_free(tok
);
2201 isl_die(ctx
, isl_error_invalid
,
2202 "read operation not allowed", goto error
);
2205 name
= isl_token_get_str(ctx
, tok
);
2206 isl_token_free(tok
);
2207 file
= fopen(name
, "r");
2209 isl_assert(ctx
, file
, goto error
);
2211 s_file
= isl_stream_new_file(ctx
, file
);
2217 obj
= isl_stream_read_obj(s_file
);
2219 isl_stream_free(s_file
);
2224 obj
.type
= isl_obj_none
;
2229 static struct isl_obj
write_to_file(struct isl_stream
*s
,
2230 struct isl_hash_table
*table
)
2232 struct isl_obj obj
= { isl_obj_none
, NULL
};
2233 struct isl_token
*tok
;
2234 struct iscc_options
*options
;
2240 tok
= isl_stream_next_token(s
);
2241 if (!tok
|| isl_token_get_type(tok
) != ISL_TOKEN_STRING
) {
2242 isl_stream_error(s
, tok
, "expecting filename");
2243 isl_token_free(tok
);
2247 obj
= read_expr(s
, table
);
2249 ctx
= isl_stream_get_ctx(s
);
2250 options
= isl_ctx_peek_iscc_options(ctx
);
2251 if (!options
|| !options
->io
) {
2252 isl_token_free(tok
);
2253 isl_die(ctx
, isl_error_invalid
,
2254 "write operation not allowed", goto error
);
2257 name
= isl_token_get_str(ctx
, tok
);
2258 isl_token_free(tok
);
2259 file
= fopen(name
, "w");
2262 isl_die(ctx
, isl_error_unknown
,
2263 "could not open file for writing", goto error
);
2265 p
= isl_printer_to_file(ctx
, file
);
2266 p
= isl_printer_set_output_format(p
, options
->format
);
2267 p
= obj
.type
->print(p
, obj
.v
);
2268 p
= isl_printer_end_line(p
);
2269 isl_printer_free(p
);
2274 obj
.type
= isl_obj_none
;
2279 static struct isl_obj
read_string_if_available(struct isl_stream
*s
)
2281 struct isl_token
*tok
;
2282 struct isl_obj obj
= { isl_obj_none
, NULL
};
2284 tok
= isl_stream_next_token(s
);
2287 if (isl_token_get_type(tok
) == ISL_TOKEN_STRING
) {
2289 str
= isl_str_alloc(isl_stream_get_ctx(s
));
2292 str
->s
= isl_token_get_str(isl_stream_get_ctx(s
), tok
);
2293 isl_token_free(tok
);
2295 obj
.type
= isl_obj_str
;
2297 isl_stream_push_token(s
, tok
);
2300 isl_token_free(tok
);
2304 static struct isl_obj
read_bool_if_available(struct isl_stream
*s
)
2306 struct isl_token
*tok
;
2307 struct isl_obj obj
= { isl_obj_none
, NULL
};
2310 tok
= isl_stream_next_token(s
);
2313 type
= isl_token_get_type(tok
);
2314 if (type
== ISL_TOKEN_FALSE
|| type
== ISL_TOKEN_TRUE
) {
2315 int is_true
= type
== ISL_TOKEN_TRUE
;
2316 isl_token_free(tok
);
2317 obj
.v
= is_true
? &iscc_bool_true
: &iscc_bool_false
;
2318 obj
.type
= isl_obj_bool
;
2320 isl_stream_push_token(s
, tok
);
2324 static __isl_give
char *read_ident(struct isl_stream
*s
)
2328 struct isl_token
*tok
, *tok2
;
2330 name
= isl_stream_read_ident_if_available(s
);
2334 tok
= isl_stream_next_token(s
);
2337 if (isl_token_get_type(tok
) != '$') {
2338 isl_stream_push_token(s
, tok
);
2341 tok2
= isl_stream_next_token(s
);
2342 if (!tok2
|| isl_token_get_type(tok2
) != ISL_TOKEN_VALUE
) {
2344 isl_stream_push_token(s
, tok2
);
2345 isl_stream_push_token(s
, tok
);
2349 v
= isl_token_get_val(isl_stream_get_ctx(s
), tok2
);
2350 name
= isl_val_to_str(v
);
2352 isl_token_free(tok
);
2353 isl_token_free(tok2
);
2358 static struct isl_obj
read_list(struct isl_stream
*s
,
2359 struct isl_hash_table
*table
, struct isl_obj obj
)
2361 struct isl_list
*list
;
2363 list
= isl_list_alloc(isl_stream_get_ctx(s
), 2);
2367 list
->obj
[1] = read_obj(s
, table
);
2369 obj
.type
= isl_obj_list
;
2371 if (!list
->obj
[1].v
)
2374 while (isl_stream_eat_if_available(s
, ',')) {
2375 obj
.v
= list
= isl_list_add_obj(list
, read_obj(s
, table
));
2383 obj
.type
= isl_obj_none
;
2388 static struct isl_obj
read_obj(struct isl_stream
*s
,
2389 struct isl_hash_table
*table
)
2392 struct isl_obj obj
= { isl_obj_none
, NULL
};
2394 struct isc_un_op
*op
= NULL
;
2396 obj
= read_string_if_available(s
);
2399 obj
= read_bool_if_available(s
);
2402 ctx
= isl_stream_get_ctx(s
);
2403 if (isl_stream_eat_if_available(s
, '(')) {
2404 if (isl_stream_next_token_is(s
, ')')) {
2405 obj
.type
= isl_obj_list
;
2406 obj
.v
= isl_list_alloc(ctx
, 0);
2408 obj
= read_expr(s
, table
);
2409 if (obj
.v
&& isl_stream_eat_if_available(s
, ','))
2410 obj
= read_list(s
, table
, obj
);
2412 if (!obj
.v
|| isl_stream_eat(s
, ')'))
2415 op
= read_prefix_un_op_if_available(s
);
2417 return read_un_op_expr(s
, table
, op
);
2419 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_ASSERT
]))
2420 return check_assert(s
, table
);
2421 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_READ
]))
2422 return read_from_file(s
);
2423 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_WRITE
]))
2424 return write_to_file(s
, table
);
2425 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_VERTICES
]))
2426 return vertices(s
, table
);
2427 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_ANY
]))
2428 return any(s
, table
);
2429 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_LAST
]))
2430 return last(s
, table
);
2431 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_SCHEDULE
]))
2432 return schedule(s
, table
);
2433 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_TYPEOF
]))
2434 return type_of(s
, table
);
2436 name
= read_ident(s
);
2438 obj
= stored_obj(ctx
, table
, name
);
2440 obj
= isl_stream_read_obj(s
);
2445 if (isl_stream_eat_if_available(s
, '^'))
2446 obj
= power(s
, obj
);
2447 else if (obj
.type
== isl_obj_list
&& isl_stream_eat_if_available(s
, '['))
2448 obj
= obj_at_index(s
, obj
);
2449 else if (is_subtype(obj
, isl_obj_union_map
) &&
2450 isl_stream_eat_if_available(s
, '(')) {
2451 obj
= convert(ctx
, obj
, isl_obj_union_map
);
2452 obj
= apply(s
, obj
.v
, table
);
2453 } else if (is_subtype(obj
, isl_obj_union_pw_qpolynomial
) &&
2454 isl_stream_eat_if_available(s
, '(')) {
2455 obj
= convert(ctx
, obj
, isl_obj_union_pw_qpolynomial
);
2456 obj
= apply_fun(s
, obj
, table
);
2457 } else if (is_subtype(obj
, isl_obj_union_pw_qpolynomial_fold
) &&
2458 isl_stream_eat_if_available(s
, '(')) {
2459 obj
= convert(ctx
, obj
, isl_obj_union_pw_qpolynomial_fold
);
2460 obj
= apply_fun(s
, obj
, table
);
2466 obj
.type
= isl_obj_none
;
2471 static struct isc_bin_op
*find_matching_bin_op(struct isc_bin_op
*like
,
2472 struct isl_obj lhs
, struct isl_obj rhs
)
2476 for (i
= 0; ; ++i
) {
2479 if (bin_ops
[i
].op
!= like
->op
)
2481 if (!is_subtype(lhs
, bin_ops
[i
].lhs
))
2483 if (!is_subtype(rhs
, bin_ops
[i
].rhs
))
2489 for (i
= 0; ; ++i
) {
2490 if (!named_bin_ops
[i
].name
)
2492 if (named_bin_ops
[i
].op
.op
!= like
->op
)
2494 if (!is_subtype(lhs
, named_bin_ops
[i
].op
.lhs
))
2496 if (!is_subtype(rhs
, named_bin_ops
[i
].op
.rhs
))
2499 return &named_bin_ops
[i
].op
;
2502 for (i
= 0; ; ++i
) {
2503 if (!compound_bin_ops
[i
].full
)
2505 if (compound_bin_ops
[i
].op
.op
!= like
->op
)
2507 if (!is_subtype(lhs
, compound_bin_ops
[i
].op
.lhs
))
2509 if (!is_subtype(rhs
, compound_bin_ops
[i
].op
.rhs
))
2512 return &compound_bin_ops
[i
].op
;
2518 static int next_is_neg_int(struct isl_stream
*s
)
2520 struct isl_token
*tok
;
2523 tok
= isl_stream_next_token(s
);
2524 if (tok
&& isl_token_get_type(tok
) == ISL_TOKEN_VALUE
) {
2526 v
= isl_token_get_val(isl_stream_get_ctx(s
), tok
);
2527 ret
= isl_val_is_neg(v
);
2531 isl_stream_push_token(s
, tok
);
2536 static struct isl_obj
call_bin_op(isl_ctx
*ctx
, struct isc_bin_op
*op
,
2537 struct isl_obj lhs
, struct isl_obj rhs
)
2541 lhs
= convert(ctx
, lhs
, op
->lhs
);
2542 rhs
= convert(ctx
, rhs
, op
->rhs
);
2543 if (op
->res
!= isl_obj_bool
)
2544 obj
.v
= op
->o
.fn(lhs
.v
, rhs
.v
);
2546 int res
= op
->o
.test(lhs
.v
, rhs
.v
);
2549 obj
.v
= iscc_bool_from_int(res
);
2556 static struct isl_obj
read_expr(struct isl_stream
*s
,
2557 struct isl_hash_table
*table
)
2560 struct isl_obj obj
= { isl_obj_none
, NULL
};
2561 struct isl_obj right_obj
= { isl_obj_none
, NULL
};
2563 obj
= read_obj(s
, table
);
2564 ctx
= isl_stream_get_ctx(s
);
2566 struct isc_bin_op
*op
= NULL
;
2568 op
= read_bin_op_if_available(s
, obj
);
2572 right_obj
= read_obj(s
, table
);
2574 op
= find_matching_bin_op(op
, obj
, right_obj
);
2577 isl_die(ctx
, isl_error_invalid
,
2578 "no such binary operator defined on given operands",
2581 obj
= call_bin_op(ctx
, op
, obj
, right_obj
);
2584 if (obj
.type
== isl_obj_val
&& next_is_neg_int(s
)) {
2585 right_obj
= read_obj(s
, table
);
2586 obj
.v
= isl_val_add(obj
.v
, right_obj
.v
);
2591 free_obj(right_obj
);
2593 obj
.type
= isl_obj_none
;
2598 static __isl_give isl_printer
*source_file(struct isl_stream
*s
,
2599 struct isl_hash_table
*table
, __isl_take isl_printer
*p
);
2601 /* Print "obj" to the printer "p".
2602 * If the object is a schedule, then print it in block format.
2604 static __isl_give isl_printer
*print_obj(__isl_take isl_printer
*p
,
2607 if (obj
.type
!= isl_obj_schedule
)
2608 return obj
.type
->print(p
, obj
.v
);
2610 p
= isl_printer_set_yaml_style(p
, ISL_YAML_STYLE_BLOCK
);
2611 p
= obj
.type
->print(p
, obj
.v
);
2612 p
= isl_printer_set_yaml_style(p
, ISL_YAML_STYLE_FLOW
);
2617 static __isl_give isl_printer
*read_line(struct isl_stream
*s
,
2618 struct isl_hash_table
*table
, __isl_take isl_printer
*p
, int tty
)
2621 struct isl_obj obj
= { isl_obj_none
, NULL
};
2629 if (isl_stream_is_empty(s
))
2632 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_SOURCE
]))
2633 return source_file(s
, table
, p
);
2634 if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_CODEGEN
]))
2635 return codegen(s
, table
, p
);
2637 assign
= is_assign(s
);
2639 lhs
= isl_stream_read_ident_if_available(s
);
2640 if (isl_stream_eat(s
, ISL_TOKEN_DEF
))
2642 } else if (isl_stream_eat_if_available(s
, iscc_op
[ISCC_PRINT
]))
2647 obj
= read_expr(s
, table
);
2648 ctx
= isl_stream_get_ctx(s
);
2649 if (isl_stream_eat(s
, ';'))
2653 if (obj
.type
!= isl_obj_none
&& obj
.v
!= NULL
) {
2654 p
= print_obj(p
, obj
);
2655 p
= isl_printer_end_line(p
);
2660 if (!assign
&& obj
.type
!= isl_obj_none
&& obj
.v
!= NULL
) {
2661 static int count
= 0;
2662 snprintf(buf
, sizeof(buf
), "$%d", count
++);
2663 lhs
= strdup(buf
+ 1);
2665 p
= isl_printer_print_str(p
, buf
);
2666 p
= isl_printer_print_str(p
, " := ");
2667 p
= obj
.type
->print(p
, obj
.v
);
2668 p
= isl_printer_end_line(p
);
2670 if (lhs
&& do_assign(ctx
, table
, lhs
, obj
))
2675 isl_stream_flush_tokens(s
);
2676 isl_stream_skip_line(s
);
2682 static isl_stat
free_cb(void **entry
, void *user
)
2684 struct isl_named_obj
*named
= *entry
;
2686 free_obj(named
->obj
);
2693 static void register_named_ops(struct isl_stream
*s
)
2697 for (i
= 0; i
< ISCC_N_OP
; ++i
) {
2698 iscc_op
[i
] = isl_stream_register_keyword(s
, op_name
[i
]);
2699 assert(iscc_op
[i
] != ISL_TOKEN_ERROR
);
2702 for (i
= 0; ; ++i
) {
2703 if (!named_un_ops
[i
].name
)
2705 named_un_ops
[i
].op
.op
= isl_stream_register_keyword(s
,
2706 named_un_ops
[i
].name
);
2707 assert(named_un_ops
[i
].op
.op
!= ISL_TOKEN_ERROR
);
2710 for (i
= 0; ; ++i
) {
2711 if (!named_bin_ops
[i
].name
)
2713 named_bin_ops
[i
].op
.op
= isl_stream_register_keyword(s
,
2714 named_bin_ops
[i
].name
);
2715 assert(named_bin_ops
[i
].op
.op
!= ISL_TOKEN_ERROR
);
2718 for (i
= 0; ; ++i
) {
2719 if (!compound_bin_ops
[i
].full
)
2721 compound_bin_ops
[i
].op
.op
= isl_stream_register_keyword(s
,
2722 compound_bin_ops
[i
].full
);
2723 assert(compound_bin_ops
[i
].op
.op
!= ISL_TOKEN_ERROR
);
2727 static __isl_give isl_printer
*source_file(struct isl_stream
*s
,
2728 struct isl_hash_table
*table
, __isl_take isl_printer
*p
)
2731 struct isl_token
*tok
;
2732 struct isl_stream
*s_file
;
2733 struct iscc_options
*options
;
2737 tok
= isl_stream_next_token(s
);
2738 if (!tok
|| isl_token_get_type(tok
) != ISL_TOKEN_STRING
) {
2739 isl_stream_error(s
, tok
, "expecting filename");
2740 isl_token_free(tok
);
2744 isl_stream_eat(s
, ';');
2746 ctx
= isl_stream_get_ctx(s
);
2747 options
= isl_ctx_peek_iscc_options(ctx
);
2748 if (!options
|| !options
->io
) {
2749 isl_token_free(tok
);
2750 isl_die(ctx
, isl_error_invalid
,
2751 "source operation not allowed", return p
);
2754 name
= isl_token_get_str(ctx
, tok
);
2755 isl_token_free(tok
);
2756 file
= fopen(name
, "r");
2758 isl_assert(ctx
, file
, return p
);
2760 s_file
= isl_stream_new_file(ctx
, file
);
2766 register_named_ops(s_file
);
2768 while (!isl_stream_is_empty(s_file
))
2769 p
= read_line(s_file
, table
, p
, 0);
2771 isl_stream_free(s_file
);
2777 int main(int argc
, char **argv
)
2779 struct isl_ctx
*ctx
;
2780 struct isl_stream
*s
;
2781 struct isl_hash_table
*table
;
2782 struct iscc_options
*options
;
2784 int tty
= isatty(0);
2786 options
= iscc_options_new_with_defaults();
2789 ctx
= isl_ctx_alloc_with_options(&iscc_options_args
, options
);
2790 pet_options_set_autodetect(ctx
, 1);
2791 pet_options_set_encapsulate_dynamic_control(ctx
, 1);
2792 argc
= isl_ctx_parse_options(ctx
, argc
, argv
, ISL_ARG_ALL
);
2793 s
= isl_stream_new_file(ctx
, stdin
);
2795 table
= isl_hash_table_alloc(ctx
, 10);
2797 p
= isl_printer_to_file(ctx
, stdout
);
2798 p
= isl_printer_set_output_format(p
, options
->format
);
2801 register_named_ops(s
);
2803 install_signal_handler(ctx
);
2808 empty
= isl_stream_is_empty(s
);
2809 if (empty
&& isl_ctx_last_error(ctx
) != isl_error_abort
)
2812 p
= read_line(s
, table
, p
, tty
);
2813 if (isl_ctx_last_error(ctx
) == isl_error_abort
) {
2814 fprintf(stderr
, "Interrupted\n");
2815 isl_ctx_resume(ctx
);
2816 isl_ctx_reset_error(ctx
);
2820 remove_signal_handler(ctx
);
2822 isl_printer_free(p
);
2823 isl_hash_table_foreach(ctx
, table
, free_cb
, NULL
);
2824 isl_hash_table_free(ctx
, table
);