2 * Copyright 2012-2013 Ecole Normale Superieure
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege,
7 * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
12 #include <isl_ast_private.h>
17 #include <isl_list_templ.c>
22 #include <isl_list_templ.c>
24 isl_ctx
*isl_ast_print_options_get_ctx(
25 __isl_keep isl_ast_print_options
*options
)
27 return options
? options
->ctx
: NULL
;
30 __isl_give isl_ast_print_options
*isl_ast_print_options_alloc(isl_ctx
*ctx
)
32 isl_ast_print_options
*options
;
34 options
= isl_calloc_type(ctx
, isl_ast_print_options
);
45 __isl_give isl_ast_print_options
*isl_ast_print_options_dup(
46 __isl_keep isl_ast_print_options
*options
)
49 isl_ast_print_options
*dup
;
54 ctx
= isl_ast_print_options_get_ctx(options
);
55 dup
= isl_ast_print_options_alloc(ctx
);
59 dup
->print_for
= options
->print_for
;
60 dup
->print_for_user
= options
->print_for_user
;
61 dup
->print_user
= options
->print_user
;
62 dup
->print_user_user
= options
->print_user_user
;
67 __isl_give isl_ast_print_options
*isl_ast_print_options_cow(
68 __isl_take isl_ast_print_options
*options
)
73 if (options
->ref
== 1)
76 return isl_ast_print_options_dup(options
);
79 __isl_give isl_ast_print_options
*isl_ast_print_options_copy(
80 __isl_keep isl_ast_print_options
*options
)
89 __isl_null isl_ast_print_options
*isl_ast_print_options_free(
90 __isl_take isl_ast_print_options
*options
)
95 if (--options
->ref
> 0)
98 isl_ctx_deref(options
->ctx
);
104 /* Set the print_user callback of "options" to "print_user".
106 * If this callback is set, then it used to print user nodes in the AST.
107 * Otherwise, the expression associated to the user node is printed.
109 __isl_give isl_ast_print_options
*isl_ast_print_options_set_print_user(
110 __isl_take isl_ast_print_options
*options
,
111 __isl_give isl_printer
*(*print_user
)(__isl_take isl_printer
*p
,
112 __isl_take isl_ast_print_options
*options
,
113 __isl_keep isl_ast_node
*node
, void *user
),
116 options
= isl_ast_print_options_cow(options
);
120 options
->print_user
= print_user
;
121 options
->print_user_user
= user
;
126 /* Set the print_for callback of "options" to "print_for".
128 * If this callback is set, then it used to print for nodes in the AST.
130 __isl_give isl_ast_print_options
*isl_ast_print_options_set_print_for(
131 __isl_take isl_ast_print_options
*options
,
132 __isl_give isl_printer
*(*print_for
)(__isl_take isl_printer
*p
,
133 __isl_take isl_ast_print_options
*options
,
134 __isl_keep isl_ast_node
*node
, void *user
),
137 options
= isl_ast_print_options_cow(options
);
141 options
->print_for
= print_for
;
142 options
->print_for_user
= user
;
147 __isl_give isl_ast_expr
*isl_ast_expr_copy(__isl_keep isl_ast_expr
*expr
)
156 __isl_give isl_ast_expr
*isl_ast_expr_dup(__isl_keep isl_ast_expr
*expr
)
165 ctx
= isl_ast_expr_get_ctx(expr
);
166 switch (expr
->type
) {
167 case isl_ast_expr_int
:
168 dup
= isl_ast_expr_from_val(isl_val_copy(expr
->u
.v
));
170 case isl_ast_expr_id
:
171 dup
= isl_ast_expr_from_id(isl_id_copy(expr
->u
.id
));
173 case isl_ast_expr_op
:
174 dup
= isl_ast_expr_alloc_op(ctx
,
175 expr
->u
.op
.op
, expr
->u
.op
.n_arg
);
178 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
180 isl_ast_expr_copy(expr
->u
.op
.args
[i
]);
182 case isl_ast_expr_error
:
192 __isl_give isl_ast_expr
*isl_ast_expr_cow(__isl_take isl_ast_expr
*expr
)
200 return isl_ast_expr_dup(expr
);
203 __isl_null isl_ast_expr
*isl_ast_expr_free(__isl_take isl_ast_expr
*expr
)
213 isl_ctx_deref(expr
->ctx
);
215 switch (expr
->type
) {
216 case isl_ast_expr_int
:
217 isl_val_free(expr
->u
.v
);
219 case isl_ast_expr_id
:
220 isl_id_free(expr
->u
.id
);
222 case isl_ast_expr_op
:
224 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
225 isl_ast_expr_free(expr
->u
.op
.args
[i
]);
226 free(expr
->u
.op
.args
);
228 case isl_ast_expr_error
:
236 isl_ctx
*isl_ast_expr_get_ctx(__isl_keep isl_ast_expr
*expr
)
238 return expr
? expr
->ctx
: NULL
;
241 enum isl_ast_expr_type
isl_ast_expr_get_type(__isl_keep isl_ast_expr
*expr
)
243 return expr
? expr
->type
: isl_ast_expr_error
;
246 /* Return the integer value represented by "expr".
248 __isl_give isl_val
*isl_ast_expr_get_val(__isl_keep isl_ast_expr
*expr
)
252 if (expr
->type
!= isl_ast_expr_int
)
253 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
254 "expression not an int", return NULL
);
255 return isl_val_copy(expr
->u
.v
);
258 __isl_give isl_id
*isl_ast_expr_get_id(__isl_keep isl_ast_expr
*expr
)
262 if (expr
->type
!= isl_ast_expr_id
)
263 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
264 "expression not an identifier", return NULL
);
266 return isl_id_copy(expr
->u
.id
);
269 enum isl_ast_op_type
isl_ast_expr_get_op_type(__isl_keep isl_ast_expr
*expr
)
272 return isl_ast_op_error
;
273 if (expr
->type
!= isl_ast_expr_op
)
274 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
275 "expression not an operation", return isl_ast_op_error
);
276 return expr
->u
.op
.op
;
279 int isl_ast_expr_get_op_n_arg(__isl_keep isl_ast_expr
*expr
)
283 if (expr
->type
!= isl_ast_expr_op
)
284 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
285 "expression not an operation", return -1);
286 return expr
->u
.op
.n_arg
;
289 __isl_give isl_ast_expr
*isl_ast_expr_get_op_arg(__isl_keep isl_ast_expr
*expr
,
294 if (expr
->type
!= isl_ast_expr_op
)
295 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
296 "expression not an operation", return NULL
);
297 if (pos
< 0 || pos
>= expr
->u
.op
.n_arg
)
298 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
299 "index out of bounds", return NULL
);
301 return isl_ast_expr_copy(expr
->u
.op
.args
[pos
]);
304 /* Replace the argument at position "pos" of "expr" by "arg".
306 __isl_give isl_ast_expr
*isl_ast_expr_set_op_arg(__isl_take isl_ast_expr
*expr
,
307 int pos
, __isl_take isl_ast_expr
*arg
)
309 expr
= isl_ast_expr_cow(expr
);
312 if (expr
->type
!= isl_ast_expr_op
)
313 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
314 "expression not an operation", goto error
);
315 if (pos
< 0 || pos
>= expr
->u
.op
.n_arg
)
316 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
317 "index out of bounds", goto error
);
319 isl_ast_expr_free(expr
->u
.op
.args
[pos
]);
320 expr
->u
.op
.args
[pos
] = arg
;
324 isl_ast_expr_free(arg
);
325 return isl_ast_expr_free(expr
);
328 /* Is "expr1" equal to "expr2"?
330 isl_bool
isl_ast_expr_is_equal(__isl_keep isl_ast_expr
*expr1
,
331 __isl_keep isl_ast_expr
*expr2
)
335 if (!expr1
|| !expr2
)
336 return isl_bool_error
;
339 return isl_bool_true
;
340 if (expr1
->type
!= expr2
->type
)
341 return isl_bool_false
;
342 switch (expr1
->type
) {
343 case isl_ast_expr_int
:
344 return isl_val_eq(expr1
->u
.v
, expr2
->u
.v
);
345 case isl_ast_expr_id
:
346 return expr1
->u
.id
== expr2
->u
.id
;
347 case isl_ast_expr_op
:
348 if (expr1
->u
.op
.op
!= expr2
->u
.op
.op
)
349 return isl_bool_false
;
350 if (expr1
->u
.op
.n_arg
!= expr2
->u
.op
.n_arg
)
351 return isl_bool_false
;
352 for (i
= 0; i
< expr1
->u
.op
.n_arg
; ++i
) {
354 equal
= isl_ast_expr_is_equal(expr1
->u
.op
.args
[i
],
355 expr2
->u
.op
.args
[i
]);
356 if (equal
< 0 || !equal
)
360 case isl_ast_expr_error
:
361 return isl_bool_error
;
364 isl_die(isl_ast_expr_get_ctx(expr1
), isl_error_internal
,
365 "unhandled case", return isl_bool_error
);
368 /* Create a new operation expression of operation type "op",
369 * with "n_arg" as yet unspecified arguments.
371 __isl_give isl_ast_expr
*isl_ast_expr_alloc_op(isl_ctx
*ctx
,
372 enum isl_ast_op_type op
, int n_arg
)
376 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
383 expr
->type
= isl_ast_expr_op
;
385 expr
->u
.op
.n_arg
= n_arg
;
386 expr
->u
.op
.args
= isl_calloc_array(ctx
, isl_ast_expr
*, n_arg
);
388 if (n_arg
&& !expr
->u
.op
.args
)
389 return isl_ast_expr_free(expr
);
394 /* Create a new id expression representing "id".
396 __isl_give isl_ast_expr
*isl_ast_expr_from_id(__isl_take isl_id
*id
)
404 ctx
= isl_id_get_ctx(id
);
405 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
412 expr
->type
= isl_ast_expr_id
;
421 /* Create a new integer expression representing "i".
423 __isl_give isl_ast_expr
*isl_ast_expr_alloc_int_si(isl_ctx
*ctx
, int i
)
427 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
434 expr
->type
= isl_ast_expr_int
;
435 expr
->u
.v
= isl_val_int_from_si(ctx
, i
);
437 return isl_ast_expr_free(expr
);
442 /* Create a new integer expression representing "v".
444 __isl_give isl_ast_expr
*isl_ast_expr_from_val(__isl_take isl_val
*v
)
451 if (!isl_val_is_int(v
))
452 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
453 "expecting integer value", goto error
);
455 ctx
= isl_val_get_ctx(v
);
456 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
463 expr
->type
= isl_ast_expr_int
;
472 /* Create an expression representing the unary operation "type" applied to
475 __isl_give isl_ast_expr
*isl_ast_expr_alloc_unary(enum isl_ast_op_type type
,
476 __isl_take isl_ast_expr
*arg
)
479 isl_ast_expr
*expr
= NULL
;
484 ctx
= isl_ast_expr_get_ctx(arg
);
485 expr
= isl_ast_expr_alloc_op(ctx
, type
, 1);
489 expr
->u
.op
.args
[0] = arg
;
493 isl_ast_expr_free(arg
);
497 /* Create an expression representing the negation of "arg".
499 __isl_give isl_ast_expr
*isl_ast_expr_neg(__isl_take isl_ast_expr
*arg
)
501 return isl_ast_expr_alloc_unary(isl_ast_op_minus
, arg
);
504 /* Create an expression representing the address of "expr".
506 __isl_give isl_ast_expr
*isl_ast_expr_address_of(__isl_take isl_ast_expr
*expr
)
511 if (isl_ast_expr_get_type(expr
) != isl_ast_expr_op
||
512 isl_ast_expr_get_op_type(expr
) != isl_ast_op_access
)
513 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
514 "can only take address of access expressions",
515 return isl_ast_expr_free(expr
));
517 return isl_ast_expr_alloc_unary(isl_ast_op_address_of
, expr
);
520 /* Create an expression representing the binary operation "type"
521 * applied to "expr1" and "expr2".
523 __isl_give isl_ast_expr
*isl_ast_expr_alloc_binary(enum isl_ast_op_type type
,
524 __isl_take isl_ast_expr
*expr1
, __isl_take isl_ast_expr
*expr2
)
527 isl_ast_expr
*expr
= NULL
;
529 if (!expr1
|| !expr2
)
532 ctx
= isl_ast_expr_get_ctx(expr1
);
533 expr
= isl_ast_expr_alloc_op(ctx
, type
, 2);
537 expr
->u
.op
.args
[0] = expr1
;
538 expr
->u
.op
.args
[1] = expr2
;
542 isl_ast_expr_free(expr1
);
543 isl_ast_expr_free(expr2
);
547 /* Create an expression representing the sum of "expr1" and "expr2".
549 __isl_give isl_ast_expr
*isl_ast_expr_add(__isl_take isl_ast_expr
*expr1
,
550 __isl_take isl_ast_expr
*expr2
)
552 return isl_ast_expr_alloc_binary(isl_ast_op_add
, expr1
, expr2
);
555 /* Create an expression representing the difference of "expr1" and "expr2".
557 __isl_give isl_ast_expr
*isl_ast_expr_sub(__isl_take isl_ast_expr
*expr1
,
558 __isl_take isl_ast_expr
*expr2
)
560 return isl_ast_expr_alloc_binary(isl_ast_op_sub
, expr1
, expr2
);
563 /* Create an expression representing the product of "expr1" and "expr2".
565 __isl_give isl_ast_expr
*isl_ast_expr_mul(__isl_take isl_ast_expr
*expr1
,
566 __isl_take isl_ast_expr
*expr2
)
568 return isl_ast_expr_alloc_binary(isl_ast_op_mul
, expr1
, expr2
);
571 /* Create an expression representing the quotient of "expr1" and "expr2".
573 __isl_give isl_ast_expr
*isl_ast_expr_div(__isl_take isl_ast_expr
*expr1
,
574 __isl_take isl_ast_expr
*expr2
)
576 return isl_ast_expr_alloc_binary(isl_ast_op_div
, expr1
, expr2
);
579 /* Create an expression representing the quotient of the integer
580 * division of "expr1" by "expr2", where "expr1" is known to be
583 __isl_give isl_ast_expr
*isl_ast_expr_pdiv_q(__isl_take isl_ast_expr
*expr1
,
584 __isl_take isl_ast_expr
*expr2
)
586 return isl_ast_expr_alloc_binary(isl_ast_op_pdiv_q
, expr1
, expr2
);
589 /* Create an expression representing the remainder of the integer
590 * division of "expr1" by "expr2", where "expr1" is known to be
593 __isl_give isl_ast_expr
*isl_ast_expr_pdiv_r(__isl_take isl_ast_expr
*expr1
,
594 __isl_take isl_ast_expr
*expr2
)
596 return isl_ast_expr_alloc_binary(isl_ast_op_pdiv_r
, expr1
, expr2
);
599 /* Create an expression representing the conjunction of "expr1" and "expr2".
601 __isl_give isl_ast_expr
*isl_ast_expr_and(__isl_take isl_ast_expr
*expr1
,
602 __isl_take isl_ast_expr
*expr2
)
604 return isl_ast_expr_alloc_binary(isl_ast_op_and
, expr1
, expr2
);
607 /* Create an expression representing the conjunction of "expr1" and "expr2",
608 * where "expr2" is evaluated only if "expr1" is evaluated to true.
610 __isl_give isl_ast_expr
*isl_ast_expr_and_then(__isl_take isl_ast_expr
*expr1
,
611 __isl_take isl_ast_expr
*expr2
)
613 return isl_ast_expr_alloc_binary(isl_ast_op_and_then
, expr1
, expr2
);
616 /* Create an expression representing the disjunction of "expr1" and "expr2".
618 __isl_give isl_ast_expr
*isl_ast_expr_or(__isl_take isl_ast_expr
*expr1
,
619 __isl_take isl_ast_expr
*expr2
)
621 return isl_ast_expr_alloc_binary(isl_ast_op_or
, expr1
, expr2
);
624 /* Create an expression representing the disjunction of "expr1" and "expr2",
625 * where "expr2" is evaluated only if "expr1" is evaluated to false.
627 __isl_give isl_ast_expr
*isl_ast_expr_or_else(__isl_take isl_ast_expr
*expr1
,
628 __isl_take isl_ast_expr
*expr2
)
630 return isl_ast_expr_alloc_binary(isl_ast_op_or_else
, expr1
, expr2
);
633 /* Create an expression representing "expr1" less than or equal to "expr2".
635 __isl_give isl_ast_expr
*isl_ast_expr_le(__isl_take isl_ast_expr
*expr1
,
636 __isl_take isl_ast_expr
*expr2
)
638 return isl_ast_expr_alloc_binary(isl_ast_op_le
, expr1
, expr2
);
641 /* Create an expression representing "expr1" less than "expr2".
643 __isl_give isl_ast_expr
*isl_ast_expr_lt(__isl_take isl_ast_expr
*expr1
,
644 __isl_take isl_ast_expr
*expr2
)
646 return isl_ast_expr_alloc_binary(isl_ast_op_lt
, expr1
, expr2
);
649 /* Create an expression representing "expr1" greater than or equal to "expr2".
651 __isl_give isl_ast_expr
*isl_ast_expr_ge(__isl_take isl_ast_expr
*expr1
,
652 __isl_take isl_ast_expr
*expr2
)
654 return isl_ast_expr_alloc_binary(isl_ast_op_ge
, expr1
, expr2
);
657 /* Create an expression representing "expr1" greater than "expr2".
659 __isl_give isl_ast_expr
*isl_ast_expr_gt(__isl_take isl_ast_expr
*expr1
,
660 __isl_take isl_ast_expr
*expr2
)
662 return isl_ast_expr_alloc_binary(isl_ast_op_gt
, expr1
, expr2
);
665 /* Create an expression representing "expr1" equal to "expr2".
667 __isl_give isl_ast_expr
*isl_ast_expr_eq(__isl_take isl_ast_expr
*expr1
,
668 __isl_take isl_ast_expr
*expr2
)
670 return isl_ast_expr_alloc_binary(isl_ast_op_eq
, expr1
, expr2
);
673 /* Create an expression of type "type" with as arguments "arg0" followed
676 static __isl_give isl_ast_expr
*ast_expr_with_arguments(
677 enum isl_ast_op_type type
, __isl_take isl_ast_expr
*arg0
,
678 __isl_take isl_ast_expr_list
*arguments
)
682 isl_ast_expr
*res
= NULL
;
684 if (!arg0
|| !arguments
)
687 ctx
= isl_ast_expr_get_ctx(arg0
);
688 n
= isl_ast_expr_list_n_ast_expr(arguments
);
689 res
= isl_ast_expr_alloc_op(ctx
, type
, 1 + n
);
692 for (i
= 0; i
< n
; ++i
) {
694 arg
= isl_ast_expr_list_get_ast_expr(arguments
, i
);
695 res
->u
.op
.args
[1 + i
] = arg
;
699 res
->u
.op
.args
[0] = arg0
;
701 isl_ast_expr_list_free(arguments
);
704 isl_ast_expr_free(arg0
);
705 isl_ast_expr_list_free(arguments
);
706 isl_ast_expr_free(res
);
710 /* Create an expression representing an access to "array" with index
711 * expressions "indices".
713 __isl_give isl_ast_expr
*isl_ast_expr_access(__isl_take isl_ast_expr
*array
,
714 __isl_take isl_ast_expr_list
*indices
)
716 return ast_expr_with_arguments(isl_ast_op_access
, array
, indices
);
719 /* Create an expression representing a call to "function" with argument
720 * expressions "arguments".
722 __isl_give isl_ast_expr
*isl_ast_expr_call(__isl_take isl_ast_expr
*function
,
723 __isl_take isl_ast_expr_list
*arguments
)
725 return ast_expr_with_arguments(isl_ast_op_call
, function
, arguments
);
728 /* For each subexpression of "expr" of type isl_ast_expr_id,
729 * if it appears in "id2expr", then replace it by the corresponding
732 __isl_give isl_ast_expr
*isl_ast_expr_substitute_ids(
733 __isl_take isl_ast_expr
*expr
, __isl_take isl_id_to_ast_expr
*id2expr
)
736 isl_maybe_isl_ast_expr m
;
738 if (!expr
|| !id2expr
)
741 switch (expr
->type
) {
742 case isl_ast_expr_int
:
744 case isl_ast_expr_id
:
745 m
= isl_id_to_ast_expr_try_get(id2expr
, expr
->u
.id
);
750 isl_ast_expr_free(expr
);
753 case isl_ast_expr_op
:
754 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
) {
756 arg
= isl_ast_expr_copy(expr
->u
.op
.args
[i
]);
757 arg
= isl_ast_expr_substitute_ids(arg
,
758 isl_id_to_ast_expr_copy(id2expr
));
759 if (arg
== expr
->u
.op
.args
[i
]) {
760 isl_ast_expr_free(arg
);
764 expr
= isl_ast_expr_free(expr
);
765 expr
= isl_ast_expr_cow(expr
);
767 isl_ast_expr_free(arg
);
770 isl_ast_expr_free(expr
->u
.op
.args
[i
]);
771 expr
->u
.op
.args
[i
] = arg
;
774 case isl_ast_expr_error
:
775 expr
= isl_ast_expr_free(expr
);
779 isl_id_to_ast_expr_free(id2expr
);
782 isl_ast_expr_free(expr
);
783 isl_id_to_ast_expr_free(id2expr
);
787 isl_ctx
*isl_ast_node_get_ctx(__isl_keep isl_ast_node
*node
)
789 return node
? node
->ctx
: NULL
;
792 enum isl_ast_node_type
isl_ast_node_get_type(__isl_keep isl_ast_node
*node
)
794 return node
? node
->type
: isl_ast_node_error
;
797 __isl_give isl_ast_node
*isl_ast_node_alloc(isl_ctx
*ctx
,
798 enum isl_ast_node_type type
)
802 node
= isl_calloc_type(ctx
, isl_ast_node
);
814 /* Create an if node with the given guard.
816 * The then body needs to be filled in later.
818 __isl_give isl_ast_node
*isl_ast_node_alloc_if(__isl_take isl_ast_expr
*guard
)
825 node
= isl_ast_node_alloc(isl_ast_expr_get_ctx(guard
), isl_ast_node_if
);
828 node
->u
.i
.guard
= guard
;
832 isl_ast_expr_free(guard
);
836 /* Create a for node with the given iterator.
838 * The remaining fields need to be filled in later.
840 __isl_give isl_ast_node
*isl_ast_node_alloc_for(__isl_take isl_id
*id
)
848 ctx
= isl_id_get_ctx(id
);
849 node
= isl_ast_node_alloc(ctx
, isl_ast_node_for
);
853 node
->u
.f
.iterator
= isl_ast_expr_from_id(id
);
854 if (!node
->u
.f
.iterator
)
855 return isl_ast_node_free(node
);
863 /* Create a mark node, marking "node" with "id".
865 __isl_give isl_ast_node
*isl_ast_node_alloc_mark(__isl_take isl_id
*id
,
866 __isl_take isl_ast_node
*node
)
874 ctx
= isl_id_get_ctx(id
);
875 mark
= isl_ast_node_alloc(ctx
, isl_ast_node_mark
);
880 mark
->u
.m
.node
= node
;
885 isl_ast_node_free(node
);
889 /* Create a user node evaluating "expr".
891 __isl_give isl_ast_node
*isl_ast_node_alloc_user(__isl_take isl_ast_expr
*expr
)
899 ctx
= isl_ast_expr_get_ctx(expr
);
900 node
= isl_ast_node_alloc(ctx
, isl_ast_node_user
);
904 node
->u
.e
.expr
= expr
;
908 isl_ast_expr_free(expr
);
912 /* Create a block node with the given children.
914 __isl_give isl_ast_node
*isl_ast_node_alloc_block(
915 __isl_take isl_ast_node_list
*list
)
923 ctx
= isl_ast_node_list_get_ctx(list
);
924 node
= isl_ast_node_alloc(ctx
, isl_ast_node_block
);
928 node
->u
.b
.children
= list
;
932 isl_ast_node_list_free(list
);
936 /* Represent the given list of nodes as a single node, either by
937 * extract the node from a single element list or by creating
938 * a block node with the list of nodes as children.
940 __isl_give isl_ast_node
*isl_ast_node_from_ast_node_list(
941 __isl_take isl_ast_node_list
*list
)
945 if (isl_ast_node_list_n_ast_node(list
) != 1)
946 return isl_ast_node_alloc_block(list
);
948 node
= isl_ast_node_list_get_ast_node(list
, 0);
949 isl_ast_node_list_free(list
);
954 __isl_give isl_ast_node
*isl_ast_node_copy(__isl_keep isl_ast_node
*node
)
963 __isl_give isl_ast_node
*isl_ast_node_dup(__isl_keep isl_ast_node
*node
)
970 dup
= isl_ast_node_alloc(isl_ast_node_get_ctx(node
), node
->type
);
974 switch (node
->type
) {
975 case isl_ast_node_if
:
976 dup
->u
.i
.guard
= isl_ast_expr_copy(node
->u
.i
.guard
);
977 dup
->u
.i
.then
= isl_ast_node_copy(node
->u
.i
.then
);
978 dup
->u
.i
.else_node
= isl_ast_node_copy(node
->u
.i
.else_node
);
979 if (!dup
->u
.i
.guard
|| !dup
->u
.i
.then
||
980 (node
->u
.i
.else_node
&& !dup
->u
.i
.else_node
))
981 return isl_ast_node_free(dup
);
983 case isl_ast_node_for
:
984 dup
->u
.f
.iterator
= isl_ast_expr_copy(node
->u
.f
.iterator
);
985 dup
->u
.f
.init
= isl_ast_expr_copy(node
->u
.f
.init
);
986 dup
->u
.f
.cond
= isl_ast_expr_copy(node
->u
.f
.cond
);
987 dup
->u
.f
.inc
= isl_ast_expr_copy(node
->u
.f
.inc
);
988 dup
->u
.f
.body
= isl_ast_node_copy(node
->u
.f
.body
);
989 if (!dup
->u
.f
.iterator
|| !dup
->u
.f
.init
|| !dup
->u
.f
.cond
||
990 !dup
->u
.f
.inc
|| !dup
->u
.f
.body
)
991 return isl_ast_node_free(dup
);
993 case isl_ast_node_block
:
994 dup
->u
.b
.children
= isl_ast_node_list_copy(node
->u
.b
.children
);
995 if (!dup
->u
.b
.children
)
996 return isl_ast_node_free(dup
);
998 case isl_ast_node_mark
:
999 dup
->u
.m
.mark
= isl_id_copy(node
->u
.m
.mark
);
1000 dup
->u
.m
.node
= isl_ast_node_copy(node
->u
.m
.node
);
1001 if (!dup
->u
.m
.mark
|| !dup
->u
.m
.node
)
1002 return isl_ast_node_free(dup
);
1004 case isl_ast_node_user
:
1005 dup
->u
.e
.expr
= isl_ast_expr_copy(node
->u
.e
.expr
);
1007 return isl_ast_node_free(dup
);
1009 case isl_ast_node_error
:
1016 __isl_give isl_ast_node
*isl_ast_node_cow(__isl_take isl_ast_node
*node
)
1024 return isl_ast_node_dup(node
);
1027 __isl_null isl_ast_node
*isl_ast_node_free(__isl_take isl_ast_node
*node
)
1032 if (--node
->ref
> 0)
1035 switch (node
->type
) {
1036 case isl_ast_node_if
:
1037 isl_ast_expr_free(node
->u
.i
.guard
);
1038 isl_ast_node_free(node
->u
.i
.then
);
1039 isl_ast_node_free(node
->u
.i
.else_node
);
1041 case isl_ast_node_for
:
1042 isl_ast_expr_free(node
->u
.f
.iterator
);
1043 isl_ast_expr_free(node
->u
.f
.init
);
1044 isl_ast_expr_free(node
->u
.f
.cond
);
1045 isl_ast_expr_free(node
->u
.f
.inc
);
1046 isl_ast_node_free(node
->u
.f
.body
);
1048 case isl_ast_node_block
:
1049 isl_ast_node_list_free(node
->u
.b
.children
);
1051 case isl_ast_node_mark
:
1052 isl_id_free(node
->u
.m
.mark
);
1053 isl_ast_node_free(node
->u
.m
.node
);
1055 case isl_ast_node_user
:
1056 isl_ast_expr_free(node
->u
.e
.expr
);
1058 case isl_ast_node_error
:
1062 isl_id_free(node
->annotation
);
1063 isl_ctx_deref(node
->ctx
);
1069 /* Replace the body of the for node "node" by "body".
1071 __isl_give isl_ast_node
*isl_ast_node_for_set_body(
1072 __isl_take isl_ast_node
*node
, __isl_take isl_ast_node
*body
)
1074 node
= isl_ast_node_cow(node
);
1077 if (node
->type
!= isl_ast_node_for
)
1078 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1079 "not a for node", goto error
);
1081 isl_ast_node_free(node
->u
.f
.body
);
1082 node
->u
.f
.body
= body
;
1086 isl_ast_node_free(node
);
1087 isl_ast_node_free(body
);
1091 __isl_give isl_ast_node
*isl_ast_node_for_get_body(
1092 __isl_keep isl_ast_node
*node
)
1096 if (node
->type
!= isl_ast_node_for
)
1097 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1098 "not a for node", return NULL
);
1099 return isl_ast_node_copy(node
->u
.f
.body
);
1102 /* Mark the given for node as being degenerate.
1104 __isl_give isl_ast_node
*isl_ast_node_for_mark_degenerate(
1105 __isl_take isl_ast_node
*node
)
1107 node
= isl_ast_node_cow(node
);
1110 node
->u
.f
.degenerate
= 1;
1114 isl_bool
isl_ast_node_for_is_degenerate(__isl_keep isl_ast_node
*node
)
1117 return isl_bool_error
;
1118 if (node
->type
!= isl_ast_node_for
)
1119 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1120 "not a for node", return isl_bool_error
);
1121 return node
->u
.f
.degenerate
;
1124 __isl_give isl_ast_expr
*isl_ast_node_for_get_iterator(
1125 __isl_keep isl_ast_node
*node
)
1129 if (node
->type
!= isl_ast_node_for
)
1130 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1131 "not a for node", return NULL
);
1132 return isl_ast_expr_copy(node
->u
.f
.iterator
);
1135 __isl_give isl_ast_expr
*isl_ast_node_for_get_init(
1136 __isl_keep isl_ast_node
*node
)
1140 if (node
->type
!= isl_ast_node_for
)
1141 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1142 "not a for node", return NULL
);
1143 return isl_ast_expr_copy(node
->u
.f
.init
);
1146 /* Return the condition expression of the given for node.
1148 * If the for node is degenerate, then the condition is not explicitly
1149 * stored in the node. Instead, it is constructed as
1153 __isl_give isl_ast_expr
*isl_ast_node_for_get_cond(
1154 __isl_keep isl_ast_node
*node
)
1158 if (node
->type
!= isl_ast_node_for
)
1159 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1160 "not a for node", return NULL
);
1161 if (!node
->u
.f
.degenerate
)
1162 return isl_ast_expr_copy(node
->u
.f
.cond
);
1164 return isl_ast_expr_alloc_binary(isl_ast_op_le
,
1165 isl_ast_expr_copy(node
->u
.f
.iterator
),
1166 isl_ast_expr_copy(node
->u
.f
.init
));
1169 /* Return the increment of the given for node.
1171 * If the for node is degenerate, then the increment is not explicitly
1172 * stored in the node. We simply return "1".
1174 __isl_give isl_ast_expr
*isl_ast_node_for_get_inc(
1175 __isl_keep isl_ast_node
*node
)
1179 if (node
->type
!= isl_ast_node_for
)
1180 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1181 "not a for node", return NULL
);
1182 if (!node
->u
.f
.degenerate
)
1183 return isl_ast_expr_copy(node
->u
.f
.inc
);
1184 return isl_ast_expr_alloc_int_si(isl_ast_node_get_ctx(node
), 1);
1187 /* Replace the then branch of the if node "node" by "child".
1189 __isl_give isl_ast_node
*isl_ast_node_if_set_then(
1190 __isl_take isl_ast_node
*node
, __isl_take isl_ast_node
*child
)
1192 node
= isl_ast_node_cow(node
);
1193 if (!node
|| !child
)
1195 if (node
->type
!= isl_ast_node_if
)
1196 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1197 "not an if node", goto error
);
1199 isl_ast_node_free(node
->u
.i
.then
);
1200 node
->u
.i
.then
= child
;
1204 isl_ast_node_free(node
);
1205 isl_ast_node_free(child
);
1209 __isl_give isl_ast_node
*isl_ast_node_if_get_then(
1210 __isl_keep isl_ast_node
*node
)
1214 if (node
->type
!= isl_ast_node_if
)
1215 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1216 "not an if node", return NULL
);
1217 return isl_ast_node_copy(node
->u
.i
.then
);
1220 isl_bool
isl_ast_node_if_has_else(
1221 __isl_keep isl_ast_node
*node
)
1224 return isl_bool_error
;
1225 if (node
->type
!= isl_ast_node_if
)
1226 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1227 "not an if node", return isl_bool_error
);
1228 return node
->u
.i
.else_node
!= NULL
;
1231 __isl_give isl_ast_node
*isl_ast_node_if_get_else(
1232 __isl_keep isl_ast_node
*node
)
1236 if (node
->type
!= isl_ast_node_if
)
1237 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1238 "not an if node", return NULL
);
1239 return isl_ast_node_copy(node
->u
.i
.else_node
);
1242 __isl_give isl_ast_expr
*isl_ast_node_if_get_cond(
1243 __isl_keep isl_ast_node
*node
)
1247 if (node
->type
!= isl_ast_node_if
)
1248 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1249 "not a guard node", return NULL
);
1250 return isl_ast_expr_copy(node
->u
.i
.guard
);
1253 __isl_give isl_ast_node_list
*isl_ast_node_block_get_children(
1254 __isl_keep isl_ast_node
*node
)
1258 if (node
->type
!= isl_ast_node_block
)
1259 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1260 "not a block node", return NULL
);
1261 return isl_ast_node_list_copy(node
->u
.b
.children
);
1264 __isl_give isl_ast_expr
*isl_ast_node_user_get_expr(
1265 __isl_keep isl_ast_node
*node
)
1269 if (node
->type
!= isl_ast_node_user
)
1270 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1271 "not a user node", return NULL
);
1273 return isl_ast_expr_copy(node
->u
.e
.expr
);
1276 /* Return the mark identifier of the mark node "node".
1278 __isl_give isl_id
*isl_ast_node_mark_get_id(__isl_keep isl_ast_node
*node
)
1282 if (node
->type
!= isl_ast_node_mark
)
1283 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1284 "not a mark node", return NULL
);
1286 return isl_id_copy(node
->u
.m
.mark
);
1289 /* Return the node marked by mark node "node".
1291 __isl_give isl_ast_node
*isl_ast_node_mark_get_node(
1292 __isl_keep isl_ast_node
*node
)
1296 if (node
->type
!= isl_ast_node_mark
)
1297 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1298 "not a mark node", return NULL
);
1300 return isl_ast_node_copy(node
->u
.m
.node
);
1303 __isl_give isl_id
*isl_ast_node_get_annotation(__isl_keep isl_ast_node
*node
)
1305 return node
? isl_id_copy(node
->annotation
) : NULL
;
1308 /* Replace node->annotation by "annotation".
1310 __isl_give isl_ast_node
*isl_ast_node_set_annotation(
1311 __isl_take isl_ast_node
*node
, __isl_take isl_id
*annotation
)
1313 node
= isl_ast_node_cow(node
);
1314 if (!node
|| !annotation
)
1317 isl_id_free(node
->annotation
);
1318 node
->annotation
= annotation
;
1322 isl_id_free(annotation
);
1323 return isl_ast_node_free(node
);
1326 /* Traverse the elements of "list" and all their descendants
1327 * in depth first preorder.
1329 * Return isl_stat_ok on success and isl_stat_error on failure.
1331 static isl_stat
nodelist_foreach(__isl_keep isl_ast_node_list
*list
,
1332 isl_bool (*fn
)(__isl_keep isl_ast_node
*node
, void *user
), void *user
)
1337 return isl_stat_error
;
1339 for (i
= 0; i
< list
->n
; ++i
) {
1341 isl_ast_node
*node
= list
->p
[i
];
1343 ok
= isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1345 return isl_stat_error
;
1351 /* Traverse the descendants of "node" (including the node itself)
1352 * in depth first preorder.
1354 * If "fn" returns isl_bool_error on any of the nodes, then the traversal
1356 * If "fn" returns isl_bool_false on any of the nodes, then the subtree rooted
1357 * at that node is skipped.
1359 * Return isl_stat_ok on success and isl_stat_error on failure.
1361 isl_stat
isl_ast_node_foreach_descendant_top_down(
1362 __isl_keep isl_ast_node
*node
,
1363 isl_bool (*fn
)(__isl_keep isl_ast_node
*node
, void *user
), void *user
)
1369 return isl_stat_error
;
1371 more
= fn(node
, user
);
1373 return isl_stat_error
;
1377 switch (node
->type
) {
1378 case isl_ast_node_for
:
1379 node
= node
->u
.f
.body
;
1380 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1381 case isl_ast_node_if
:
1382 ok
= isl_ast_node_foreach_descendant_top_down(node
->u
.i
.then
,
1385 return isl_stat_error
;
1386 if (!node
->u
.i
.else_node
)
1388 node
= node
->u
.i
.else_node
;
1389 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1390 case isl_ast_node_block
:
1391 return nodelist_foreach(node
->u
.b
.children
, fn
, user
);
1392 case isl_ast_node_mark
:
1393 node
= node
->u
.m
.node
;
1394 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1395 case isl_ast_node_user
:
1397 case isl_ast_node_error
:
1398 return isl_stat_error
;
1404 /* Textual C representation of the various operators.
1406 static char *op_str
[] = {
1407 [isl_ast_op_and
] = "&&",
1408 [isl_ast_op_and_then
] = "&&",
1409 [isl_ast_op_or
] = "||",
1410 [isl_ast_op_or_else
] = "||",
1411 [isl_ast_op_max
] = "max",
1412 [isl_ast_op_min
] = "min",
1413 [isl_ast_op_minus
] = "-",
1414 [isl_ast_op_add
] = "+",
1415 [isl_ast_op_sub
] = "-",
1416 [isl_ast_op_mul
] = "*",
1417 [isl_ast_op_fdiv_q
] = "floord",
1418 [isl_ast_op_pdiv_q
] = "/",
1419 [isl_ast_op_pdiv_r
] = "%",
1420 [isl_ast_op_zdiv_r
] = "%",
1421 [isl_ast_op_div
] = "/",
1422 [isl_ast_op_eq
] = "==",
1423 [isl_ast_op_le
] = "<=",
1424 [isl_ast_op_ge
] = ">=",
1425 [isl_ast_op_lt
] = "<",
1426 [isl_ast_op_gt
] = ">",
1427 [isl_ast_op_member
] = ".",
1428 [isl_ast_op_address_of
] = "&"
1431 /* Precedence in C of the various operators.
1432 * Based on http://en.wikipedia.org/wiki/Operators_in_C_and_C++
1433 * Lowest value means highest precedence.
1435 static int op_prec
[] = {
1436 [isl_ast_op_and
] = 13,
1437 [isl_ast_op_and_then
] = 13,
1438 [isl_ast_op_or
] = 14,
1439 [isl_ast_op_or_else
] = 14,
1440 [isl_ast_op_max
] = 2,
1441 [isl_ast_op_min
] = 2,
1442 [isl_ast_op_minus
] = 3,
1443 [isl_ast_op_add
] = 6,
1444 [isl_ast_op_sub
] = 6,
1445 [isl_ast_op_mul
] = 5,
1446 [isl_ast_op_div
] = 5,
1447 [isl_ast_op_fdiv_q
] = 2,
1448 [isl_ast_op_pdiv_q
] = 5,
1449 [isl_ast_op_pdiv_r
] = 5,
1450 [isl_ast_op_zdiv_r
] = 5,
1451 [isl_ast_op_cond
] = 15,
1452 [isl_ast_op_select
] = 15,
1453 [isl_ast_op_eq
] = 9,
1454 [isl_ast_op_le
] = 8,
1455 [isl_ast_op_ge
] = 8,
1456 [isl_ast_op_lt
] = 8,
1457 [isl_ast_op_gt
] = 8,
1458 [isl_ast_op_call
] = 2,
1459 [isl_ast_op_access
] = 2,
1460 [isl_ast_op_member
] = 2,
1461 [isl_ast_op_address_of
] = 3
1464 /* Is the operator left-to-right associative?
1466 static int op_left
[] = {
1467 [isl_ast_op_and
] = 1,
1468 [isl_ast_op_and_then
] = 1,
1469 [isl_ast_op_or
] = 1,
1470 [isl_ast_op_or_else
] = 1,
1471 [isl_ast_op_max
] = 1,
1472 [isl_ast_op_min
] = 1,
1473 [isl_ast_op_minus
] = 0,
1474 [isl_ast_op_add
] = 1,
1475 [isl_ast_op_sub
] = 1,
1476 [isl_ast_op_mul
] = 1,
1477 [isl_ast_op_div
] = 1,
1478 [isl_ast_op_fdiv_q
] = 1,
1479 [isl_ast_op_pdiv_q
] = 1,
1480 [isl_ast_op_pdiv_r
] = 1,
1481 [isl_ast_op_zdiv_r
] = 1,
1482 [isl_ast_op_cond
] = 0,
1483 [isl_ast_op_select
] = 0,
1484 [isl_ast_op_eq
] = 1,
1485 [isl_ast_op_le
] = 1,
1486 [isl_ast_op_ge
] = 1,
1487 [isl_ast_op_lt
] = 1,
1488 [isl_ast_op_gt
] = 1,
1489 [isl_ast_op_call
] = 1,
1490 [isl_ast_op_access
] = 1,
1491 [isl_ast_op_member
] = 1,
1492 [isl_ast_op_address_of
] = 0
1495 static int is_and(enum isl_ast_op_type op
)
1497 return op
== isl_ast_op_and
|| op
== isl_ast_op_and_then
;
1500 static int is_or(enum isl_ast_op_type op
)
1502 return op
== isl_ast_op_or
|| op
== isl_ast_op_or_else
;
1505 static int is_add_sub(enum isl_ast_op_type op
)
1507 return op
== isl_ast_op_add
|| op
== isl_ast_op_sub
;
1510 static int is_div_mod(enum isl_ast_op_type op
)
1512 return op
== isl_ast_op_div
||
1513 op
== isl_ast_op_pdiv_r
||
1514 op
== isl_ast_op_zdiv_r
;
1517 /* Do we need/want parentheses around "expr" as a subexpression of
1518 * an "op" operation? If "left" is set, then "expr" is the left-most
1521 * We only need parentheses if "expr" represents an operation.
1523 * If op has a higher precedence than expr->u.op.op, then we need
1525 * If op and expr->u.op.op have the same precedence, but the operations
1526 * are performed in an order that is different from the associativity,
1527 * then we need parentheses.
1529 * An and inside an or technically does not require parentheses,
1530 * but some compilers complain about that, so we add them anyway.
1532 * Computations such as "a / b * c" and "a % b + c" can be somewhat
1533 * difficult to read, so we add parentheses for those as well.
1535 static int sub_expr_need_parens(enum isl_ast_op_type op
,
1536 __isl_keep isl_ast_expr
*expr
, int left
)
1538 if (expr
->type
!= isl_ast_expr_op
)
1541 if (op_prec
[expr
->u
.op
.op
] > op_prec
[op
])
1543 if (op_prec
[expr
->u
.op
.op
] == op_prec
[op
] && left
!= op_left
[op
])
1546 if (is_or(op
) && is_and(expr
->u
.op
.op
))
1548 if (op
== isl_ast_op_mul
&& expr
->u
.op
.op
!= isl_ast_op_mul
&&
1549 op_prec
[expr
->u
.op
.op
] == op_prec
[op
])
1551 if (is_add_sub(op
) && is_div_mod(expr
->u
.op
.op
))
1557 /* Print "expr" as a subexpression of an "op" operation.
1558 * If "left" is set, then "expr" is the left-most operand.
1560 static __isl_give isl_printer
*print_sub_expr(__isl_take isl_printer
*p
,
1561 enum isl_ast_op_type op
, __isl_keep isl_ast_expr
*expr
, int left
)
1565 need_parens
= sub_expr_need_parens(op
, expr
, left
);
1568 p
= isl_printer_print_str(p
, "(");
1569 p
= isl_printer_print_ast_expr(p
, expr
);
1571 p
= isl_printer_print_str(p
, ")");
1575 #define isl_ast_op_last isl_ast_op_address_of
1577 /* Data structure that holds the user-specified textual
1578 * representations for the operators.
1579 * The entries are either NULL or copies of strings.
1580 * A NULL entry means that the default name should be used.
1582 struct isl_ast_op_names
{
1583 char *op_str
[isl_ast_op_last
+ 1];
1586 /* Create an empty struct isl_ast_op_names.
1588 static void *create_names(isl_ctx
*ctx
)
1590 return isl_calloc_type(ctx
, struct isl_ast_op_names
);
1593 /* Free a struct isl_ast_op_names along with all memory
1594 * owned by the struct.
1596 static void free_names(void *user
)
1599 struct isl_ast_op_names
*names
= user
;
1604 for (i
= 0; i
<= isl_ast_op_last
; ++i
)
1605 free(names
->op_str
[i
]);
1609 /* Create an identifier that is used to store
1610 * an isl_ast_op_names note.
1612 static __isl_give isl_id
*names_id(isl_ctx
*ctx
)
1614 return isl_id_alloc(ctx
, "isl_ast_op_type_names", NULL
);
1617 /* Ensure that "p" has a note identified by "id".
1618 * If there is no such note yet, then it is created by "note_create" and
1619 * scheduled do be freed by "note_free".
1621 static __isl_give isl_printer
*alloc_note(__isl_take isl_printer
*p
,
1622 __isl_keep isl_id
*id
, void *(*note_create
)(isl_ctx
*),
1623 void (*note_free
)(void *))
1630 has_note
= isl_printer_has_note(p
, id
);
1632 return isl_printer_free(p
);
1636 ctx
= isl_printer_get_ctx(p
);
1637 note
= note_create(ctx
);
1639 return isl_printer_free(p
);
1640 note_id
= isl_id_alloc(ctx
, NULL
, note
);
1644 note_id
= isl_id_set_free_user(note_id
, note_free
);
1646 p
= isl_printer_set_note(p
, isl_id_copy(id
), note_id
);
1651 /* Ensure that "p" has an isl_ast_op_names note identified by "id".
1653 static __isl_give isl_printer
*alloc_names(__isl_take isl_printer
*p
,
1654 __isl_keep isl_id
*id
)
1656 return alloc_note(p
, id
, &create_names
, &free_names
);
1659 /* Retrieve the note identified by "id" from "p".
1660 * The note is assumed to exist.
1662 static void *get_note(__isl_keep isl_printer
*p
, __isl_keep isl_id
*id
)
1666 id
= isl_printer_get_note(p
, isl_id_copy(id
));
1667 note
= isl_id_get_user(id
);
1673 /* Use "name" to print operations of type "type" to "p".
1675 * Store the name in an isl_ast_op_names note attached to "p", such that
1676 * it can be retrieved by get_op_str.
1678 __isl_give isl_printer
*isl_ast_op_type_set_print_name(
1679 __isl_take isl_printer
*p
, enum isl_ast_op_type type
,
1680 __isl_keep
const char *name
)
1683 struct isl_ast_op_names
*names
;
1687 if (type
> isl_ast_op_last
)
1688 isl_die(isl_printer_get_ctx(p
), isl_error_invalid
,
1689 "invalid type", return isl_printer_free(p
));
1691 id
= names_id(isl_printer_get_ctx(p
));
1692 p
= alloc_names(p
, id
);
1693 names
= get_note(p
, id
);
1696 return isl_printer_free(p
);
1697 free(names
->op_str
[type
]);
1698 names
->op_str
[type
] = strdup(name
);
1703 /* Return the textual representation of "type".
1705 * If there is a user-specified name in an isl_ast_op_names note
1706 * associated to "p", then return that.
1707 * Otherwise, return the default name in op_str.
1709 static const char *get_op_str(__isl_keep isl_printer
*p
,
1710 enum isl_ast_op_type type
)
1714 struct isl_ast_op_names
*names
= NULL
;
1716 id
= names_id(isl_printer_get_ctx(p
));
1717 has_names
= isl_printer_has_note(p
, id
);
1718 if (has_names
>= 0 && has_names
)
1719 names
= get_note(p
, id
);
1721 if (names
&& names
->op_str
[type
])
1722 return names
->op_str
[type
];
1723 return op_str
[type
];
1726 /* Print a min or max reduction "expr".
1728 static __isl_give isl_printer
*print_min_max(__isl_take isl_printer
*p
,
1729 __isl_keep isl_ast_expr
*expr
)
1733 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1734 p
= isl_printer_print_str(p
, get_op_str(p
, expr
->u
.op
.op
));
1735 p
= isl_printer_print_str(p
, "(");
1737 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1738 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1739 p
= isl_printer_print_str(p
, ", ");
1740 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[i
]);
1741 p
= isl_printer_print_str(p
, ")");
1747 /* Print a function call "expr".
1749 * The first argument represents the function to be called.
1751 static __isl_give isl_printer
*print_call(__isl_take isl_printer
*p
,
1752 __isl_keep isl_ast_expr
*expr
)
1756 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1757 p
= isl_printer_print_str(p
, "(");
1758 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1760 p
= isl_printer_print_str(p
, ", ");
1761 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[i
]);
1763 p
= isl_printer_print_str(p
, ")");
1768 /* Print an array access "expr".
1770 * The first argument represents the array being accessed.
1772 static __isl_give isl_printer
*print_access(__isl_take isl_printer
*p
,
1773 __isl_keep isl_ast_expr
*expr
)
1777 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1778 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1779 p
= isl_printer_print_str(p
, "[");
1780 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[i
]);
1781 p
= isl_printer_print_str(p
, "]");
1787 /* Print "expr" to "p".
1789 * If we are printing in isl format, then we also print an indication
1790 * of the size of the expression (if it was computed).
1792 __isl_give isl_printer
*isl_printer_print_ast_expr(__isl_take isl_printer
*p
,
1793 __isl_keep isl_ast_expr
*expr
)
1798 return isl_printer_free(p
);
1800 switch (expr
->type
) {
1801 case isl_ast_expr_op
:
1802 if (expr
->u
.op
.op
== isl_ast_op_call
) {
1803 p
= print_call(p
, expr
);
1806 if (expr
->u
.op
.op
== isl_ast_op_access
) {
1807 p
= print_access(p
, expr
);
1810 if (expr
->u
.op
.n_arg
== 1) {
1811 p
= isl_printer_print_str(p
,
1812 get_op_str(p
, expr
->u
.op
.op
));
1813 p
= print_sub_expr(p
, expr
->u
.op
.op
,
1814 expr
->u
.op
.args
[0], 0);
1817 if (expr
->u
.op
.op
== isl_ast_op_fdiv_q
) {
1818 const char *name
= get_op_str(p
, isl_ast_op_fdiv_q
);
1819 p
= isl_printer_print_str(p
, name
);
1820 p
= isl_printer_print_str(p
, "(");
1821 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1822 p
= isl_printer_print_str(p
, ", ");
1823 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[1]);
1824 p
= isl_printer_print_str(p
, ")");
1827 if (expr
->u
.op
.op
== isl_ast_op_max
||
1828 expr
->u
.op
.op
== isl_ast_op_min
) {
1829 p
= print_min_max(p
, expr
);
1832 if (expr
->u
.op
.op
== isl_ast_op_cond
||
1833 expr
->u
.op
.op
== isl_ast_op_select
) {
1834 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1835 p
= isl_printer_print_str(p
, " ? ");
1836 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[1]);
1837 p
= isl_printer_print_str(p
, " : ");
1838 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[2]);
1841 if (expr
->u
.op
.n_arg
!= 2)
1842 isl_die(isl_printer_get_ctx(p
), isl_error_internal
,
1843 "operation should have two arguments",
1845 p
= print_sub_expr(p
, expr
->u
.op
.op
, expr
->u
.op
.args
[0], 1);
1846 if (expr
->u
.op
.op
!= isl_ast_op_member
)
1847 p
= isl_printer_print_str(p
, " ");
1848 p
= isl_printer_print_str(p
, get_op_str(p
, expr
->u
.op
.op
));
1849 if (expr
->u
.op
.op
!= isl_ast_op_member
)
1850 p
= isl_printer_print_str(p
, " ");
1851 p
= print_sub_expr(p
, expr
->u
.op
.op
, expr
->u
.op
.args
[1], 0);
1853 case isl_ast_expr_id
:
1854 p
= isl_printer_print_str(p
, isl_id_get_name(expr
->u
.id
));
1856 case isl_ast_expr_int
:
1857 p
= isl_printer_print_val(p
, expr
->u
.v
);
1859 case isl_ast_expr_error
:
1865 isl_printer_free(p
);
1869 /* Print "node" to "p" in "isl format".
1871 static __isl_give isl_printer
*print_ast_node_isl(__isl_take isl_printer
*p
,
1872 __isl_keep isl_ast_node
*node
)
1874 p
= isl_printer_print_str(p
, "(");
1875 switch (node
->type
) {
1876 case isl_ast_node_for
:
1877 if (node
->u
.f
.degenerate
) {
1878 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
1880 p
= isl_printer_print_str(p
, "init: ");
1881 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
1882 p
= isl_printer_print_str(p
, ", ");
1883 p
= isl_printer_print_str(p
, "cond: ");
1884 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.cond
);
1885 p
= isl_printer_print_str(p
, ", ");
1886 p
= isl_printer_print_str(p
, "inc: ");
1887 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.inc
);
1889 if (node
->u
.f
.body
) {
1890 p
= isl_printer_print_str(p
, ", ");
1891 p
= isl_printer_print_str(p
, "body: ");
1892 p
= isl_printer_print_ast_node(p
, node
->u
.f
.body
);
1895 case isl_ast_node_mark
:
1896 p
= isl_printer_print_str(p
, "mark: ");
1897 p
= isl_printer_print_id(p
, node
->u
.m
.mark
);
1898 p
= isl_printer_print_str(p
, ", ");
1899 p
= isl_printer_print_str(p
, "node: ");
1900 p
= isl_printer_print_ast_node(p
, node
->u
.m
.node
);
1901 case isl_ast_node_user
:
1902 p
= isl_printer_print_ast_expr(p
, node
->u
.e
.expr
);
1904 case isl_ast_node_if
:
1905 p
= isl_printer_print_str(p
, "guard: ");
1906 p
= isl_printer_print_ast_expr(p
, node
->u
.i
.guard
);
1907 if (node
->u
.i
.then
) {
1908 p
= isl_printer_print_str(p
, ", ");
1909 p
= isl_printer_print_str(p
, "then: ");
1910 p
= isl_printer_print_ast_node(p
, node
->u
.i
.then
);
1912 if (node
->u
.i
.else_node
) {
1913 p
= isl_printer_print_str(p
, ", ");
1914 p
= isl_printer_print_str(p
, "else: ");
1915 p
= isl_printer_print_ast_node(p
, node
->u
.i
.else_node
);
1918 case isl_ast_node_block
:
1919 p
= isl_printer_print_ast_node_list(p
, node
->u
.b
.children
);
1921 case isl_ast_node_error
:
1924 p
= isl_printer_print_str(p
, ")");
1928 /* Do we need to print a block around the body "node" of a for or if node?
1930 * If the node is a block, then we need to print a block.
1931 * Also if the node is a degenerate for then we will print it as
1932 * an assignment followed by the body of the for loop, so we need a block
1934 * If the node is an if node with an else, then we print a block
1935 * to avoid spurious dangling else warnings emitted by some compilers.
1936 * If the node is a mark, then in principle, we would have to check
1937 * the child of the mark node. However, even if the child would not
1938 * require us to print a block, for readability it is probably best
1939 * to print a block anyway.
1940 * If the ast_always_print_block option has been set, then we print a block.
1942 static int need_block(__isl_keep isl_ast_node
*node
)
1946 if (node
->type
== isl_ast_node_block
)
1948 if (node
->type
== isl_ast_node_for
&& node
->u
.f
.degenerate
)
1950 if (node
->type
== isl_ast_node_if
&& node
->u
.i
.else_node
)
1952 if (node
->type
== isl_ast_node_mark
)
1955 ctx
= isl_ast_node_get_ctx(node
);
1956 return isl_options_get_ast_always_print_block(ctx
);
1959 static __isl_give isl_printer
*print_ast_node_c(__isl_take isl_printer
*p
,
1960 __isl_keep isl_ast_node
*node
,
1961 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
);
1962 static __isl_give isl_printer
*print_if_c(__isl_take isl_printer
*p
,
1963 __isl_keep isl_ast_node
*node
,
1964 __isl_keep isl_ast_print_options
*options
, int new_line
);
1966 /* Print the body "node" of a for or if node.
1967 * If "else_node" is set, then it is printed as well.
1969 * We first check if we need to print out a block.
1970 * We always print out a block if there is an else node to make
1971 * sure that the else node is matched to the correct if node.
1973 * If the else node is itself an if, then we print it as
1977 * Otherwise the else node is printed as
1982 static __isl_give isl_printer
*print_body_c(__isl_take isl_printer
*p
,
1983 __isl_keep isl_ast_node
*node
, __isl_keep isl_ast_node
*else_node
,
1984 __isl_keep isl_ast_print_options
*options
)
1987 return isl_printer_free(p
);
1989 if (!else_node
&& !need_block(node
)) {
1990 p
= isl_printer_end_line(p
);
1991 p
= isl_printer_indent(p
, 2);
1992 p
= isl_ast_node_print(node
, p
,
1993 isl_ast_print_options_copy(options
));
1994 p
= isl_printer_indent(p
, -2);
1998 p
= isl_printer_print_str(p
, " {");
1999 p
= isl_printer_end_line(p
);
2000 p
= isl_printer_indent(p
, 2);
2001 p
= print_ast_node_c(p
, node
, options
, 1, 0);
2002 p
= isl_printer_indent(p
, -2);
2003 p
= isl_printer_start_line(p
);
2004 p
= isl_printer_print_str(p
, "}");
2006 if (else_node
->type
== isl_ast_node_if
) {
2007 p
= isl_printer_print_str(p
, " else ");
2008 p
= print_if_c(p
, else_node
, options
, 0);
2010 p
= isl_printer_print_str(p
, " else");
2011 p
= print_body_c(p
, else_node
, NULL
, options
);
2014 p
= isl_printer_end_line(p
);
2019 /* Print the start of a compound statement.
2021 static __isl_give isl_printer
*start_block(__isl_take isl_printer
*p
)
2023 p
= isl_printer_start_line(p
);
2024 p
= isl_printer_print_str(p
, "{");
2025 p
= isl_printer_end_line(p
);
2026 p
= isl_printer_indent(p
, 2);
2031 /* Print the end of a compound statement.
2033 static __isl_give isl_printer
*end_block(__isl_take isl_printer
*p
)
2035 p
= isl_printer_indent(p
, -2);
2036 p
= isl_printer_start_line(p
);
2037 p
= isl_printer_print_str(p
, "}");
2038 p
= isl_printer_end_line(p
);
2043 /* Print the for node "node".
2045 * If the for node is degenerate, it is printed as
2047 * type iterator = init;
2050 * Otherwise, it is printed as
2052 * for (type iterator = init; cond; iterator += inc)
2055 * "in_block" is set if we are currently inside a block.
2056 * "in_list" is set if the current node is not alone in the block.
2057 * If we are not in a block or if the current not is not alone in the block
2058 * then we print a block around a degenerate for loop such that the variable
2059 * declaration will not conflict with any potential other declaration
2060 * of the same variable.
2062 static __isl_give isl_printer
*print_for_c(__isl_take isl_printer
*p
,
2063 __isl_keep isl_ast_node
*node
,
2064 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
)
2070 type
= isl_options_get_ast_iterator_type(isl_printer_get_ctx(p
));
2071 if (!node
->u
.f
.degenerate
) {
2072 id
= isl_ast_expr_get_id(node
->u
.f
.iterator
);
2073 name
= isl_id_get_name(id
);
2075 p
= isl_printer_start_line(p
);
2076 p
= isl_printer_print_str(p
, "for (");
2077 p
= isl_printer_print_str(p
, type
);
2078 p
= isl_printer_print_str(p
, " ");
2079 p
= isl_printer_print_str(p
, name
);
2080 p
= isl_printer_print_str(p
, " = ");
2081 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2082 p
= isl_printer_print_str(p
, "; ");
2083 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.cond
);
2084 p
= isl_printer_print_str(p
, "; ");
2085 p
= isl_printer_print_str(p
, name
);
2086 p
= isl_printer_print_str(p
, " += ");
2087 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.inc
);
2088 p
= isl_printer_print_str(p
, ")");
2089 p
= print_body_c(p
, node
->u
.f
.body
, NULL
, options
);
2091 id
= isl_ast_expr_get_id(node
->u
.f
.iterator
);
2092 name
= isl_id_get_name(id
);
2094 if (!in_block
|| in_list
)
2096 p
= isl_printer_start_line(p
);
2097 p
= isl_printer_print_str(p
, type
);
2098 p
= isl_printer_print_str(p
, " ");
2099 p
= isl_printer_print_str(p
, name
);
2100 p
= isl_printer_print_str(p
, " = ");
2101 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2102 p
= isl_printer_print_str(p
, ";");
2103 p
= isl_printer_end_line(p
);
2104 p
= print_ast_node_c(p
, node
->u
.f
.body
, options
, 1, 0);
2105 if (!in_block
|| in_list
)
2112 /* Print the if node "node".
2113 * If "new_line" is set then the if node should be printed on a new line.
2115 static __isl_give isl_printer
*print_if_c(__isl_take isl_printer
*p
,
2116 __isl_keep isl_ast_node
*node
,
2117 __isl_keep isl_ast_print_options
*options
, int new_line
)
2120 p
= isl_printer_start_line(p
);
2121 p
= isl_printer_print_str(p
, "if (");
2122 p
= isl_printer_print_ast_expr(p
, node
->u
.i
.guard
);
2123 p
= isl_printer_print_str(p
, ")");
2124 p
= print_body_c(p
, node
->u
.i
.then
, node
->u
.i
.else_node
, options
);
2129 /* Print the "node" to "p".
2131 * "in_block" is set if we are currently inside a block.
2132 * If so, we do not print a block around the children of a block node.
2133 * We do this to avoid an extra block around the body of a degenerate
2136 * "in_list" is set if the current node is not alone in the block.
2138 static __isl_give isl_printer
*print_ast_node_c(__isl_take isl_printer
*p
,
2139 __isl_keep isl_ast_node
*node
,
2140 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
)
2142 switch (node
->type
) {
2143 case isl_ast_node_for
:
2144 if (options
->print_for
)
2145 return options
->print_for(p
,
2146 isl_ast_print_options_copy(options
),
2147 node
, options
->print_for_user
);
2148 p
= print_for_c(p
, node
, options
, in_block
, in_list
);
2150 case isl_ast_node_if
:
2151 p
= print_if_c(p
, node
, options
, 1);
2153 case isl_ast_node_block
:
2156 p
= isl_ast_node_list_print(node
->u
.b
.children
, p
, options
);
2160 case isl_ast_node_mark
:
2161 p
= isl_printer_start_line(p
);
2162 p
= isl_printer_print_str(p
, "// ");
2163 p
= isl_printer_print_str(p
, isl_id_get_name(node
->u
.m
.mark
));
2164 p
= isl_printer_end_line(p
);
2165 p
= print_ast_node_c(p
, node
->u
.m
.node
, options
, 0, in_list
);
2167 case isl_ast_node_user
:
2168 if (options
->print_user
)
2169 return options
->print_user(p
,
2170 isl_ast_print_options_copy(options
),
2171 node
, options
->print_user_user
);
2172 p
= isl_printer_start_line(p
);
2173 p
= isl_printer_print_ast_expr(p
, node
->u
.e
.expr
);
2174 p
= isl_printer_print_str(p
, ";");
2175 p
= isl_printer_end_line(p
);
2177 case isl_ast_node_error
:
2183 /* Print the for node "node" to "p".
2185 __isl_give isl_printer
*isl_ast_node_for_print(__isl_keep isl_ast_node
*node
,
2186 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2188 if (!node
|| !options
)
2190 if (node
->type
!= isl_ast_node_for
)
2191 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
2192 "not a for node", goto error
);
2193 p
= print_for_c(p
, node
, options
, 0, 0);
2194 isl_ast_print_options_free(options
);
2197 isl_ast_print_options_free(options
);
2198 isl_printer_free(p
);
2202 /* Print the if node "node" to "p".
2204 __isl_give isl_printer
*isl_ast_node_if_print(__isl_keep isl_ast_node
*node
,
2205 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2207 if (!node
|| !options
)
2209 if (node
->type
!= isl_ast_node_if
)
2210 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
2211 "not an if node", goto error
);
2212 p
= print_if_c(p
, node
, options
, 1);
2213 isl_ast_print_options_free(options
);
2216 isl_ast_print_options_free(options
);
2217 isl_printer_free(p
);
2221 /* Print "node" to "p".
2223 __isl_give isl_printer
*isl_ast_node_print(__isl_keep isl_ast_node
*node
,
2224 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2226 if (!options
|| !node
)
2228 p
= print_ast_node_c(p
, node
, options
, 0, 0);
2229 isl_ast_print_options_free(options
);
2232 isl_ast_print_options_free(options
);
2233 isl_printer_free(p
);
2237 /* Print "node" to "p".
2239 __isl_give isl_printer
*isl_printer_print_ast_node(__isl_take isl_printer
*p
,
2240 __isl_keep isl_ast_node
*node
)
2243 isl_ast_print_options
*options
;
2248 format
= isl_printer_get_output_format(p
);
2250 case ISL_FORMAT_ISL
:
2251 p
= print_ast_node_isl(p
, node
);
2254 options
= isl_ast_print_options_alloc(isl_printer_get_ctx(p
));
2255 p
= isl_ast_node_print(node
, p
, options
);
2258 isl_die(isl_printer_get_ctx(p
), isl_error_unsupported
,
2259 "output format not supported for ast_node",
2260 return isl_printer_free(p
));
2266 /* Print the list of nodes "list" to "p".
2268 __isl_give isl_printer
*isl_ast_node_list_print(
2269 __isl_keep isl_ast_node_list
*list
, __isl_take isl_printer
*p
,
2270 __isl_keep isl_ast_print_options
*options
)
2274 if (!p
|| !list
|| !options
)
2275 return isl_printer_free(p
);
2277 for (i
= 0; i
< list
->n
; ++i
)
2278 p
= print_ast_node_c(p
, list
->p
[i
], options
, 1, 1);
2283 #define ISL_AST_MACRO_FLOORD (1 << 0)
2284 #define ISL_AST_MACRO_MIN (1 << 1)
2285 #define ISL_AST_MACRO_MAX (1 << 2)
2286 #define ISL_AST_MACRO_ALL (ISL_AST_MACRO_FLOORD | \
2287 ISL_AST_MACRO_MIN | \
2290 /* If "expr" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2291 * then set the corresponding bit in "macros".
2293 static int ast_expr_required_macros(__isl_keep isl_ast_expr
*expr
, int macros
)
2297 if (macros
== ISL_AST_MACRO_ALL
)
2300 if (expr
->type
!= isl_ast_expr_op
)
2303 if (expr
->u
.op
.op
== isl_ast_op_min
)
2304 macros
|= ISL_AST_MACRO_MIN
;
2305 if (expr
->u
.op
.op
== isl_ast_op_max
)
2306 macros
|= ISL_AST_MACRO_MAX
;
2307 if (expr
->u
.op
.op
== isl_ast_op_fdiv_q
)
2308 macros
|= ISL_AST_MACRO_FLOORD
;
2310 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
2311 macros
= ast_expr_required_macros(expr
->u
.op
.args
[i
], macros
);
2316 static int ast_node_list_required_macros(__isl_keep isl_ast_node_list
*list
,
2319 /* If "node" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2320 * then set the corresponding bit in "macros".
2322 static int ast_node_required_macros(__isl_keep isl_ast_node
*node
, int macros
)
2324 if (macros
== ISL_AST_MACRO_ALL
)
2327 switch (node
->type
) {
2328 case isl_ast_node_for
:
2329 macros
= ast_expr_required_macros(node
->u
.f
.init
, macros
);
2330 if (!node
->u
.f
.degenerate
) {
2331 macros
= ast_expr_required_macros(node
->u
.f
.cond
,
2333 macros
= ast_expr_required_macros(node
->u
.f
.inc
,
2336 macros
= ast_node_required_macros(node
->u
.f
.body
, macros
);
2338 case isl_ast_node_if
:
2339 macros
= ast_expr_required_macros(node
->u
.i
.guard
, macros
);
2340 macros
= ast_node_required_macros(node
->u
.i
.then
, macros
);
2341 if (node
->u
.i
.else_node
)
2342 macros
= ast_node_required_macros(node
->u
.i
.else_node
,
2345 case isl_ast_node_block
:
2346 macros
= ast_node_list_required_macros(node
->u
.b
.children
,
2349 case isl_ast_node_mark
:
2350 macros
= ast_node_required_macros(node
->u
.m
.node
, macros
);
2352 case isl_ast_node_user
:
2353 macros
= ast_expr_required_macros(node
->u
.e
.expr
, macros
);
2355 case isl_ast_node_error
:
2362 /* If "list" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2363 * then set the corresponding bit in "macros".
2365 static int ast_node_list_required_macros(__isl_keep isl_ast_node_list
*list
,
2370 for (i
= 0; i
< list
->n
; ++i
)
2371 macros
= ast_node_required_macros(list
->p
[i
], macros
);
2376 /* Data structure for keeping track of whether a macro definition
2377 * for a given type has already been printed.
2378 * The value is zero if no definition has been printed and non-zero otherwise.
2380 struct isl_ast_op_printed
{
2381 char printed
[isl_ast_op_last
+ 1];
2384 /* Create an empty struct isl_ast_op_printed.
2386 static void *create_printed(isl_ctx
*ctx
)
2388 return isl_calloc_type(ctx
, struct isl_ast_op_printed
);
2391 /* Free a struct isl_ast_op_printed.
2393 static void free_printed(void *user
)
2398 /* Ensure that "p" has an isl_ast_op_printed note identified by "id".
2400 static __isl_give isl_printer
*alloc_printed(__isl_take isl_printer
*p
,
2401 __isl_keep isl_id
*id
)
2403 return alloc_note(p
, id
, &create_printed
, &free_printed
);
2406 /* Create an identifier that is used to store
2407 * an isl_ast_op_printed note.
2409 static __isl_give isl_id
*printed_id(isl_ctx
*ctx
)
2411 return isl_id_alloc(ctx
, "isl_ast_op_type_printed", NULL
);
2414 /* Did the user specify that a macro definition should only be
2415 * printed once and has a macro definition for "type" already
2416 * been printed to "p"?
2417 * If definitions should only be printed once, but a definition
2418 * for "p" has not yet been printed, then mark it as having been
2419 * printed so that it will not printed again.
2420 * The actual printing is taken care of by the caller.
2422 static isl_bool
already_printed_once(__isl_keep isl_printer
*p
,
2423 enum isl_ast_op_type type
)
2427 struct isl_ast_op_printed
*printed
;
2430 return isl_bool_error
;
2432 ctx
= isl_printer_get_ctx(p
);
2433 if (!isl_options_get_ast_print_macro_once(ctx
))
2434 return isl_bool_false
;
2436 if (type
> isl_ast_op_last
)
2437 isl_die(isl_printer_get_ctx(p
), isl_error_invalid
,
2438 "invalid type", return isl_bool_error
);
2440 id
= printed_id(isl_printer_get_ctx(p
));
2441 p
= alloc_printed(p
, id
);
2442 printed
= get_note(p
, id
);
2445 return isl_bool_error
;
2447 if (printed
->printed
[type
])
2448 return isl_bool_true
;
2450 printed
->printed
[type
] = 1;
2451 return isl_bool_false
;
2454 /* Print a macro definition for the operator "type".
2456 * If the user has specified that a macro definition should
2457 * only be printed once to any given printer and if the macro definition
2458 * has already been printed to "p", then do not print the definition.
2460 __isl_give isl_printer
*isl_ast_op_type_print_macro(
2461 enum isl_ast_op_type type
, __isl_take isl_printer
*p
)
2465 skip
= already_printed_once(p
, type
);
2467 return isl_printer_free(p
);
2472 case isl_ast_op_min
:
2473 p
= isl_printer_start_line(p
);
2474 p
= isl_printer_print_str(p
, "#define ");
2475 p
= isl_printer_print_str(p
, get_op_str(p
, type
));
2476 p
= isl_printer_print_str(p
,
2477 "(x,y) ((x) < (y) ? (x) : (y))");
2478 p
= isl_printer_end_line(p
);
2480 case isl_ast_op_max
:
2481 p
= isl_printer_start_line(p
);
2482 p
= isl_printer_print_str(p
, "#define ");
2483 p
= isl_printer_print_str(p
, get_op_str(p
, type
));
2484 p
= isl_printer_print_str(p
,
2485 "(x,y) ((x) > (y) ? (x) : (y))");
2486 p
= isl_printer_end_line(p
);
2488 case isl_ast_op_fdiv_q
:
2489 p
= isl_printer_start_line(p
);
2490 p
= isl_printer_print_str(p
, "#define ");
2491 p
= isl_printer_print_str(p
, get_op_str(p
, type
));
2492 p
= isl_printer_print_str(p
,
2494 "(((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))");
2495 p
= isl_printer_end_line(p
);
2504 /* Call "fn" for each type of operation represented in the "macros"
2507 static isl_stat
foreach_ast_op_type(int macros
,
2508 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2510 if (macros
& ISL_AST_MACRO_MIN
&& fn(isl_ast_op_min
, user
) < 0)
2511 return isl_stat_error
;
2512 if (macros
& ISL_AST_MACRO_MAX
&& fn(isl_ast_op_max
, user
) < 0)
2513 return isl_stat_error
;
2514 if (macros
& ISL_AST_MACRO_FLOORD
&& fn(isl_ast_op_fdiv_q
, user
) < 0)
2515 return isl_stat_error
;
2520 /* Call "fn" for each type of operation that appears in "expr"
2521 * and that requires a macro definition.
2523 isl_stat
isl_ast_expr_foreach_ast_op_type(__isl_keep isl_ast_expr
*expr
,
2524 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2529 return isl_stat_error
;
2531 macros
= ast_expr_required_macros(expr
, 0);
2532 return foreach_ast_op_type(macros
, fn
, user
);
2535 /* Call "fn" for each type of operation that appears in "node"
2536 * and that requires a macro definition.
2538 isl_stat
isl_ast_node_foreach_ast_op_type(__isl_keep isl_ast_node
*node
,
2539 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2544 return isl_stat_error
;
2546 macros
= ast_node_required_macros(node
, 0);
2547 return foreach_ast_op_type(macros
, fn
, user
);
2550 static isl_stat
ast_op_type_print_macro(enum isl_ast_op_type type
, void *user
)
2552 isl_printer
**p
= user
;
2554 *p
= isl_ast_op_type_print_macro(type
, *p
);
2559 /* Print macro definitions for all the macros used in the result
2560 * of printing "expr".
2562 __isl_give isl_printer
*isl_ast_expr_print_macros(
2563 __isl_keep isl_ast_expr
*expr
, __isl_take isl_printer
*p
)
2565 if (isl_ast_expr_foreach_ast_op_type(expr
,
2566 &ast_op_type_print_macro
, &p
) < 0)
2567 return isl_printer_free(p
);
2571 /* Print macro definitions for all the macros used in the result
2572 * of printing "node".
2574 __isl_give isl_printer
*isl_ast_node_print_macros(
2575 __isl_keep isl_ast_node
*node
, __isl_take isl_printer
*p
)
2577 if (isl_ast_node_foreach_ast_op_type(node
,
2578 &ast_op_type_print_macro
, &p
) < 0)
2579 return isl_printer_free(p
);