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
14 #include <isl_ast_private.h>
19 #include <isl_list_templ.c>
24 #include <isl_list_templ.c>
26 isl_ctx
*isl_ast_print_options_get_ctx(
27 __isl_keep isl_ast_print_options
*options
)
29 return options
? options
->ctx
: NULL
;
32 __isl_give isl_ast_print_options
*isl_ast_print_options_alloc(isl_ctx
*ctx
)
34 isl_ast_print_options
*options
;
36 options
= isl_calloc_type(ctx
, isl_ast_print_options
);
47 __isl_give isl_ast_print_options
*isl_ast_print_options_dup(
48 __isl_keep isl_ast_print_options
*options
)
51 isl_ast_print_options
*dup
;
56 ctx
= isl_ast_print_options_get_ctx(options
);
57 dup
= isl_ast_print_options_alloc(ctx
);
61 dup
->print_for
= options
->print_for
;
62 dup
->print_for_user
= options
->print_for_user
;
63 dup
->print_user
= options
->print_user
;
64 dup
->print_user_user
= options
->print_user_user
;
69 __isl_give isl_ast_print_options
*isl_ast_print_options_cow(
70 __isl_take isl_ast_print_options
*options
)
75 if (options
->ref
== 1)
78 return isl_ast_print_options_dup(options
);
81 __isl_give isl_ast_print_options
*isl_ast_print_options_copy(
82 __isl_keep isl_ast_print_options
*options
)
91 __isl_null isl_ast_print_options
*isl_ast_print_options_free(
92 __isl_take isl_ast_print_options
*options
)
97 if (--options
->ref
> 0)
100 isl_ctx_deref(options
->ctx
);
106 /* Set the print_user callback of "options" to "print_user".
108 * If this callback is set, then it used to print user nodes in the AST.
109 * Otherwise, the expression associated to the user node is printed.
111 __isl_give isl_ast_print_options
*isl_ast_print_options_set_print_user(
112 __isl_take isl_ast_print_options
*options
,
113 __isl_give isl_printer
*(*print_user
)(__isl_take isl_printer
*p
,
114 __isl_take isl_ast_print_options
*options
,
115 __isl_keep isl_ast_node
*node
, void *user
),
118 options
= isl_ast_print_options_cow(options
);
122 options
->print_user
= print_user
;
123 options
->print_user_user
= user
;
128 /* Set the print_for callback of "options" to "print_for".
130 * If this callback is set, then it used to print for nodes in the AST.
132 __isl_give isl_ast_print_options
*isl_ast_print_options_set_print_for(
133 __isl_take isl_ast_print_options
*options
,
134 __isl_give isl_printer
*(*print_for
)(__isl_take isl_printer
*p
,
135 __isl_take isl_ast_print_options
*options
,
136 __isl_keep isl_ast_node
*node
, void *user
),
139 options
= isl_ast_print_options_cow(options
);
143 options
->print_for
= print_for
;
144 options
->print_for_user
= user
;
149 __isl_give isl_ast_expr
*isl_ast_expr_copy(__isl_keep isl_ast_expr
*expr
)
158 __isl_give isl_ast_expr
*isl_ast_expr_dup(__isl_keep isl_ast_expr
*expr
)
167 ctx
= isl_ast_expr_get_ctx(expr
);
168 switch (expr
->type
) {
169 case isl_ast_expr_int
:
170 dup
= isl_ast_expr_from_val(isl_val_copy(expr
->u
.v
));
172 case isl_ast_expr_id
:
173 dup
= isl_ast_expr_from_id(isl_id_copy(expr
->u
.id
));
175 case isl_ast_expr_op
:
176 dup
= isl_ast_expr_alloc_op(ctx
,
177 expr
->u
.op
.op
, expr
->u
.op
.n_arg
);
180 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
182 isl_ast_expr_copy(expr
->u
.op
.args
[i
]);
184 case isl_ast_expr_error
:
194 __isl_give isl_ast_expr
*isl_ast_expr_cow(__isl_take isl_ast_expr
*expr
)
202 return isl_ast_expr_dup(expr
);
205 __isl_null isl_ast_expr
*isl_ast_expr_free(__isl_take isl_ast_expr
*expr
)
215 isl_ctx_deref(expr
->ctx
);
217 switch (expr
->type
) {
218 case isl_ast_expr_int
:
219 isl_val_free(expr
->u
.v
);
221 case isl_ast_expr_id
:
222 isl_id_free(expr
->u
.id
);
224 case isl_ast_expr_op
:
226 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
227 isl_ast_expr_free(expr
->u
.op
.args
[i
]);
228 free(expr
->u
.op
.args
);
230 case isl_ast_expr_error
:
238 isl_ctx
*isl_ast_expr_get_ctx(__isl_keep isl_ast_expr
*expr
)
240 return expr
? expr
->ctx
: NULL
;
243 enum isl_ast_expr_type
isl_ast_expr_get_type(__isl_keep isl_ast_expr
*expr
)
245 return expr
? expr
->type
: isl_ast_expr_error
;
248 /* Return the integer value represented by "expr".
250 __isl_give isl_val
*isl_ast_expr_get_val(__isl_keep isl_ast_expr
*expr
)
254 if (expr
->type
!= isl_ast_expr_int
)
255 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
256 "expression not an int", return NULL
);
257 return isl_val_copy(expr
->u
.v
);
260 __isl_give isl_id
*isl_ast_expr_get_id(__isl_keep isl_ast_expr
*expr
)
264 if (expr
->type
!= isl_ast_expr_id
)
265 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
266 "expression not an identifier", return NULL
);
268 return isl_id_copy(expr
->u
.id
);
271 enum isl_ast_op_type
isl_ast_expr_get_op_type(__isl_keep isl_ast_expr
*expr
)
274 return isl_ast_op_error
;
275 if (expr
->type
!= isl_ast_expr_op
)
276 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
277 "expression not an operation", return isl_ast_op_error
);
278 return expr
->u
.op
.op
;
281 int isl_ast_expr_get_op_n_arg(__isl_keep isl_ast_expr
*expr
)
285 if (expr
->type
!= isl_ast_expr_op
)
286 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
287 "expression not an operation", return -1);
288 return expr
->u
.op
.n_arg
;
291 __isl_give isl_ast_expr
*isl_ast_expr_get_op_arg(__isl_keep isl_ast_expr
*expr
,
296 if (expr
->type
!= isl_ast_expr_op
)
297 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
298 "expression not an operation", return NULL
);
299 if (pos
< 0 || pos
>= expr
->u
.op
.n_arg
)
300 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
301 "index out of bounds", return NULL
);
303 return isl_ast_expr_copy(expr
->u
.op
.args
[pos
]);
306 /* Replace the argument at position "pos" of "expr" by "arg".
308 __isl_give isl_ast_expr
*isl_ast_expr_set_op_arg(__isl_take isl_ast_expr
*expr
,
309 int pos
, __isl_take isl_ast_expr
*arg
)
311 expr
= isl_ast_expr_cow(expr
);
314 if (expr
->type
!= isl_ast_expr_op
)
315 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
316 "expression not an operation", goto error
);
317 if (pos
< 0 || pos
>= expr
->u
.op
.n_arg
)
318 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
319 "index out of bounds", goto error
);
321 isl_ast_expr_free(expr
->u
.op
.args
[pos
]);
322 expr
->u
.op
.args
[pos
] = arg
;
326 isl_ast_expr_free(arg
);
327 return isl_ast_expr_free(expr
);
330 /* Is "expr1" equal to "expr2"?
332 isl_bool
isl_ast_expr_is_equal(__isl_keep isl_ast_expr
*expr1
,
333 __isl_keep isl_ast_expr
*expr2
)
337 if (!expr1
|| !expr2
)
338 return isl_bool_error
;
341 return isl_bool_true
;
342 if (expr1
->type
!= expr2
->type
)
343 return isl_bool_false
;
344 switch (expr1
->type
) {
345 case isl_ast_expr_int
:
346 return isl_val_eq(expr1
->u
.v
, expr2
->u
.v
);
347 case isl_ast_expr_id
:
348 return expr1
->u
.id
== expr2
->u
.id
;
349 case isl_ast_expr_op
:
350 if (expr1
->u
.op
.op
!= expr2
->u
.op
.op
)
351 return isl_bool_false
;
352 if (expr1
->u
.op
.n_arg
!= expr2
->u
.op
.n_arg
)
353 return isl_bool_false
;
354 for (i
= 0; i
< expr1
->u
.op
.n_arg
; ++i
) {
356 equal
= isl_ast_expr_is_equal(expr1
->u
.op
.args
[i
],
357 expr2
->u
.op
.args
[i
]);
358 if (equal
< 0 || !equal
)
361 return isl_bool_true
;
362 case isl_ast_expr_error
:
363 return isl_bool_error
;
366 isl_die(isl_ast_expr_get_ctx(expr1
), isl_error_internal
,
367 "unhandled case", return isl_bool_error
);
370 /* Create a new operation expression of operation type "op",
371 * with "n_arg" as yet unspecified arguments.
373 __isl_give isl_ast_expr
*isl_ast_expr_alloc_op(isl_ctx
*ctx
,
374 enum isl_ast_op_type op
, int n_arg
)
378 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
385 expr
->type
= isl_ast_expr_op
;
387 expr
->u
.op
.n_arg
= n_arg
;
388 expr
->u
.op
.args
= isl_calloc_array(ctx
, isl_ast_expr
*, n_arg
);
390 if (n_arg
&& !expr
->u
.op
.args
)
391 return isl_ast_expr_free(expr
);
396 /* Create a new id expression representing "id".
398 __isl_give isl_ast_expr
*isl_ast_expr_from_id(__isl_take isl_id
*id
)
406 ctx
= isl_id_get_ctx(id
);
407 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
414 expr
->type
= isl_ast_expr_id
;
423 /* Create a new integer expression representing "i".
425 __isl_give isl_ast_expr
*isl_ast_expr_alloc_int_si(isl_ctx
*ctx
, int i
)
429 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
436 expr
->type
= isl_ast_expr_int
;
437 expr
->u
.v
= isl_val_int_from_si(ctx
, i
);
439 return isl_ast_expr_free(expr
);
444 /* Create a new integer expression representing "v".
446 __isl_give isl_ast_expr
*isl_ast_expr_from_val(__isl_take isl_val
*v
)
453 if (!isl_val_is_int(v
))
454 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
455 "expecting integer value", goto error
);
457 ctx
= isl_val_get_ctx(v
);
458 expr
= isl_calloc_type(ctx
, isl_ast_expr
);
465 expr
->type
= isl_ast_expr_int
;
474 /* Create an expression representing the unary operation "type" applied to
477 __isl_give isl_ast_expr
*isl_ast_expr_alloc_unary(enum isl_ast_op_type type
,
478 __isl_take isl_ast_expr
*arg
)
481 isl_ast_expr
*expr
= NULL
;
486 ctx
= isl_ast_expr_get_ctx(arg
);
487 expr
= isl_ast_expr_alloc_op(ctx
, type
, 1);
491 expr
->u
.op
.args
[0] = arg
;
495 isl_ast_expr_free(arg
);
499 /* Create an expression representing the negation of "arg".
501 __isl_give isl_ast_expr
*isl_ast_expr_neg(__isl_take isl_ast_expr
*arg
)
503 return isl_ast_expr_alloc_unary(isl_ast_op_minus
, arg
);
506 /* Create an expression representing the address of "expr".
508 __isl_give isl_ast_expr
*isl_ast_expr_address_of(__isl_take isl_ast_expr
*expr
)
513 if (isl_ast_expr_get_type(expr
) != isl_ast_expr_op
||
514 isl_ast_expr_get_op_type(expr
) != isl_ast_op_access
)
515 isl_die(isl_ast_expr_get_ctx(expr
), isl_error_invalid
,
516 "can only take address of access expressions",
517 return isl_ast_expr_free(expr
));
519 return isl_ast_expr_alloc_unary(isl_ast_op_address_of
, expr
);
522 /* Create an expression representing the binary operation "type"
523 * applied to "expr1" and "expr2".
525 __isl_give isl_ast_expr
*isl_ast_expr_alloc_binary(enum isl_ast_op_type type
,
526 __isl_take isl_ast_expr
*expr1
, __isl_take isl_ast_expr
*expr2
)
529 isl_ast_expr
*expr
= NULL
;
531 if (!expr1
|| !expr2
)
534 ctx
= isl_ast_expr_get_ctx(expr1
);
535 expr
= isl_ast_expr_alloc_op(ctx
, type
, 2);
539 expr
->u
.op
.args
[0] = expr1
;
540 expr
->u
.op
.args
[1] = expr2
;
544 isl_ast_expr_free(expr1
);
545 isl_ast_expr_free(expr2
);
549 /* Create an expression representing the sum of "expr1" and "expr2".
551 __isl_give isl_ast_expr
*isl_ast_expr_add(__isl_take isl_ast_expr
*expr1
,
552 __isl_take isl_ast_expr
*expr2
)
554 return isl_ast_expr_alloc_binary(isl_ast_op_add
, expr1
, expr2
);
557 /* Create an expression representing the difference of "expr1" and "expr2".
559 __isl_give isl_ast_expr
*isl_ast_expr_sub(__isl_take isl_ast_expr
*expr1
,
560 __isl_take isl_ast_expr
*expr2
)
562 return isl_ast_expr_alloc_binary(isl_ast_op_sub
, expr1
, expr2
);
565 /* Create an expression representing the product of "expr1" and "expr2".
567 __isl_give isl_ast_expr
*isl_ast_expr_mul(__isl_take isl_ast_expr
*expr1
,
568 __isl_take isl_ast_expr
*expr2
)
570 return isl_ast_expr_alloc_binary(isl_ast_op_mul
, expr1
, expr2
);
573 /* Create an expression representing the quotient of "expr1" and "expr2".
575 __isl_give isl_ast_expr
*isl_ast_expr_div(__isl_take isl_ast_expr
*expr1
,
576 __isl_take isl_ast_expr
*expr2
)
578 return isl_ast_expr_alloc_binary(isl_ast_op_div
, expr1
, expr2
);
581 /* Create an expression representing the quotient of the integer
582 * division of "expr1" by "expr2", where "expr1" is known to be
585 __isl_give isl_ast_expr
*isl_ast_expr_pdiv_q(__isl_take isl_ast_expr
*expr1
,
586 __isl_take isl_ast_expr
*expr2
)
588 return isl_ast_expr_alloc_binary(isl_ast_op_pdiv_q
, expr1
, expr2
);
591 /* Create an expression representing the remainder of the integer
592 * division of "expr1" by "expr2", where "expr1" is known to be
595 __isl_give isl_ast_expr
*isl_ast_expr_pdiv_r(__isl_take isl_ast_expr
*expr1
,
596 __isl_take isl_ast_expr
*expr2
)
598 return isl_ast_expr_alloc_binary(isl_ast_op_pdiv_r
, expr1
, expr2
);
601 /* Create an expression representing the conjunction of "expr1" and "expr2".
603 __isl_give isl_ast_expr
*isl_ast_expr_and(__isl_take isl_ast_expr
*expr1
,
604 __isl_take isl_ast_expr
*expr2
)
606 return isl_ast_expr_alloc_binary(isl_ast_op_and
, expr1
, expr2
);
609 /* Create an expression representing the conjunction of "expr1" and "expr2",
610 * where "expr2" is evaluated only if "expr1" is evaluated to true.
612 __isl_give isl_ast_expr
*isl_ast_expr_and_then(__isl_take isl_ast_expr
*expr1
,
613 __isl_take isl_ast_expr
*expr2
)
615 return isl_ast_expr_alloc_binary(isl_ast_op_and_then
, expr1
, expr2
);
618 /* Create an expression representing the disjunction of "expr1" and "expr2".
620 __isl_give isl_ast_expr
*isl_ast_expr_or(__isl_take isl_ast_expr
*expr1
,
621 __isl_take isl_ast_expr
*expr2
)
623 return isl_ast_expr_alloc_binary(isl_ast_op_or
, expr1
, expr2
);
626 /* Create an expression representing the disjunction of "expr1" and "expr2",
627 * where "expr2" is evaluated only if "expr1" is evaluated to false.
629 __isl_give isl_ast_expr
*isl_ast_expr_or_else(__isl_take isl_ast_expr
*expr1
,
630 __isl_take isl_ast_expr
*expr2
)
632 return isl_ast_expr_alloc_binary(isl_ast_op_or_else
, expr1
, expr2
);
635 /* Create an expression representing "expr1" less than or equal to "expr2".
637 __isl_give isl_ast_expr
*isl_ast_expr_le(__isl_take isl_ast_expr
*expr1
,
638 __isl_take isl_ast_expr
*expr2
)
640 return isl_ast_expr_alloc_binary(isl_ast_op_le
, expr1
, expr2
);
643 /* Create an expression representing "expr1" less than "expr2".
645 __isl_give isl_ast_expr
*isl_ast_expr_lt(__isl_take isl_ast_expr
*expr1
,
646 __isl_take isl_ast_expr
*expr2
)
648 return isl_ast_expr_alloc_binary(isl_ast_op_lt
, expr1
, expr2
);
651 /* Create an expression representing "expr1" greater than or equal to "expr2".
653 __isl_give isl_ast_expr
*isl_ast_expr_ge(__isl_take isl_ast_expr
*expr1
,
654 __isl_take isl_ast_expr
*expr2
)
656 return isl_ast_expr_alloc_binary(isl_ast_op_ge
, expr1
, expr2
);
659 /* Create an expression representing "expr1" greater than "expr2".
661 __isl_give isl_ast_expr
*isl_ast_expr_gt(__isl_take isl_ast_expr
*expr1
,
662 __isl_take isl_ast_expr
*expr2
)
664 return isl_ast_expr_alloc_binary(isl_ast_op_gt
, expr1
, expr2
);
667 /* Create an expression representing "expr1" equal to "expr2".
669 __isl_give isl_ast_expr
*isl_ast_expr_eq(__isl_take isl_ast_expr
*expr1
,
670 __isl_take isl_ast_expr
*expr2
)
672 return isl_ast_expr_alloc_binary(isl_ast_op_eq
, expr1
, expr2
);
675 /* Create an expression of type "type" with as arguments "arg0" followed
678 static __isl_give isl_ast_expr
*ast_expr_with_arguments(
679 enum isl_ast_op_type type
, __isl_take isl_ast_expr
*arg0
,
680 __isl_take isl_ast_expr_list
*arguments
)
684 isl_ast_expr
*res
= NULL
;
686 if (!arg0
|| !arguments
)
689 ctx
= isl_ast_expr_get_ctx(arg0
);
690 n
= isl_ast_expr_list_n_ast_expr(arguments
);
691 res
= isl_ast_expr_alloc_op(ctx
, type
, 1 + n
);
694 for (i
= 0; i
< n
; ++i
) {
696 arg
= isl_ast_expr_list_get_ast_expr(arguments
, i
);
697 res
->u
.op
.args
[1 + i
] = arg
;
701 res
->u
.op
.args
[0] = arg0
;
703 isl_ast_expr_list_free(arguments
);
706 isl_ast_expr_free(arg0
);
707 isl_ast_expr_list_free(arguments
);
708 isl_ast_expr_free(res
);
712 /* Create an expression representing an access to "array" with index
713 * expressions "indices".
715 __isl_give isl_ast_expr
*isl_ast_expr_access(__isl_take isl_ast_expr
*array
,
716 __isl_take isl_ast_expr_list
*indices
)
718 return ast_expr_with_arguments(isl_ast_op_access
, array
, indices
);
721 /* Create an expression representing a call to "function" with argument
722 * expressions "arguments".
724 __isl_give isl_ast_expr
*isl_ast_expr_call(__isl_take isl_ast_expr
*function
,
725 __isl_take isl_ast_expr_list
*arguments
)
727 return ast_expr_with_arguments(isl_ast_op_call
, function
, arguments
);
730 /* For each subexpression of "expr" of type isl_ast_expr_id,
731 * if it appears in "id2expr", then replace it by the corresponding
734 __isl_give isl_ast_expr
*isl_ast_expr_substitute_ids(
735 __isl_take isl_ast_expr
*expr
, __isl_take isl_id_to_ast_expr
*id2expr
)
738 isl_maybe_isl_ast_expr m
;
740 if (!expr
|| !id2expr
)
743 switch (expr
->type
) {
744 case isl_ast_expr_int
:
746 case isl_ast_expr_id
:
747 m
= isl_id_to_ast_expr_try_get(id2expr
, expr
->u
.id
);
752 isl_ast_expr_free(expr
);
755 case isl_ast_expr_op
:
756 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
) {
758 arg
= isl_ast_expr_copy(expr
->u
.op
.args
[i
]);
759 arg
= isl_ast_expr_substitute_ids(arg
,
760 isl_id_to_ast_expr_copy(id2expr
));
761 if (arg
== expr
->u
.op
.args
[i
]) {
762 isl_ast_expr_free(arg
);
766 expr
= isl_ast_expr_free(expr
);
767 expr
= isl_ast_expr_cow(expr
);
769 isl_ast_expr_free(arg
);
772 isl_ast_expr_free(expr
->u
.op
.args
[i
]);
773 expr
->u
.op
.args
[i
] = arg
;
776 case isl_ast_expr_error
:
777 expr
= isl_ast_expr_free(expr
);
781 isl_id_to_ast_expr_free(id2expr
);
784 isl_ast_expr_free(expr
);
785 isl_id_to_ast_expr_free(id2expr
);
789 isl_ctx
*isl_ast_node_get_ctx(__isl_keep isl_ast_node
*node
)
791 return node
? node
->ctx
: NULL
;
794 enum isl_ast_node_type
isl_ast_node_get_type(__isl_keep isl_ast_node
*node
)
796 return node
? node
->type
: isl_ast_node_error
;
799 __isl_give isl_ast_node
*isl_ast_node_alloc(isl_ctx
*ctx
,
800 enum isl_ast_node_type type
)
804 node
= isl_calloc_type(ctx
, isl_ast_node
);
816 /* Create an if node with the given guard.
818 * The then body needs to be filled in later.
820 __isl_give isl_ast_node
*isl_ast_node_alloc_if(__isl_take isl_ast_expr
*guard
)
827 node
= isl_ast_node_alloc(isl_ast_expr_get_ctx(guard
), isl_ast_node_if
);
830 node
->u
.i
.guard
= guard
;
834 isl_ast_expr_free(guard
);
838 /* Create a for node with the given iterator.
840 * The remaining fields need to be filled in later.
842 __isl_give isl_ast_node
*isl_ast_node_alloc_for(__isl_take isl_id
*id
)
850 ctx
= isl_id_get_ctx(id
);
851 node
= isl_ast_node_alloc(ctx
, isl_ast_node_for
);
855 node
->u
.f
.iterator
= isl_ast_expr_from_id(id
);
856 if (!node
->u
.f
.iterator
)
857 return isl_ast_node_free(node
);
865 /* Create a mark node, marking "node" with "id".
867 __isl_give isl_ast_node
*isl_ast_node_alloc_mark(__isl_take isl_id
*id
,
868 __isl_take isl_ast_node
*node
)
876 ctx
= isl_id_get_ctx(id
);
877 mark
= isl_ast_node_alloc(ctx
, isl_ast_node_mark
);
882 mark
->u
.m
.node
= node
;
887 isl_ast_node_free(node
);
891 /* Create a user node evaluating "expr".
893 __isl_give isl_ast_node
*isl_ast_node_alloc_user(__isl_take isl_ast_expr
*expr
)
901 ctx
= isl_ast_expr_get_ctx(expr
);
902 node
= isl_ast_node_alloc(ctx
, isl_ast_node_user
);
906 node
->u
.e
.expr
= expr
;
910 isl_ast_expr_free(expr
);
914 /* Create a block node with the given children.
916 __isl_give isl_ast_node
*isl_ast_node_alloc_block(
917 __isl_take isl_ast_node_list
*list
)
925 ctx
= isl_ast_node_list_get_ctx(list
);
926 node
= isl_ast_node_alloc(ctx
, isl_ast_node_block
);
930 node
->u
.b
.children
= list
;
934 isl_ast_node_list_free(list
);
938 /* Represent the given list of nodes as a single node, either by
939 * extract the node from a single element list or by creating
940 * a block node with the list of nodes as children.
942 __isl_give isl_ast_node
*isl_ast_node_from_ast_node_list(
943 __isl_take isl_ast_node_list
*list
)
947 if (isl_ast_node_list_n_ast_node(list
) != 1)
948 return isl_ast_node_alloc_block(list
);
950 node
= isl_ast_node_list_get_ast_node(list
, 0);
951 isl_ast_node_list_free(list
);
956 __isl_give isl_ast_node
*isl_ast_node_copy(__isl_keep isl_ast_node
*node
)
965 __isl_give isl_ast_node
*isl_ast_node_dup(__isl_keep isl_ast_node
*node
)
972 dup
= isl_ast_node_alloc(isl_ast_node_get_ctx(node
), node
->type
);
976 switch (node
->type
) {
977 case isl_ast_node_if
:
978 dup
->u
.i
.guard
= isl_ast_expr_copy(node
->u
.i
.guard
);
979 dup
->u
.i
.then
= isl_ast_node_copy(node
->u
.i
.then
);
980 dup
->u
.i
.else_node
= isl_ast_node_copy(node
->u
.i
.else_node
);
981 if (!dup
->u
.i
.guard
|| !dup
->u
.i
.then
||
982 (node
->u
.i
.else_node
&& !dup
->u
.i
.else_node
))
983 return isl_ast_node_free(dup
);
985 case isl_ast_node_for
:
986 dup
->u
.f
.iterator
= isl_ast_expr_copy(node
->u
.f
.iterator
);
987 dup
->u
.f
.init
= isl_ast_expr_copy(node
->u
.f
.init
);
988 dup
->u
.f
.cond
= isl_ast_expr_copy(node
->u
.f
.cond
);
989 dup
->u
.f
.inc
= isl_ast_expr_copy(node
->u
.f
.inc
);
990 dup
->u
.f
.body
= isl_ast_node_copy(node
->u
.f
.body
);
991 if (!dup
->u
.f
.iterator
|| !dup
->u
.f
.init
|| !dup
->u
.f
.cond
||
992 !dup
->u
.f
.inc
|| !dup
->u
.f
.body
)
993 return isl_ast_node_free(dup
);
995 case isl_ast_node_block
:
996 dup
->u
.b
.children
= isl_ast_node_list_copy(node
->u
.b
.children
);
997 if (!dup
->u
.b
.children
)
998 return isl_ast_node_free(dup
);
1000 case isl_ast_node_mark
:
1001 dup
->u
.m
.mark
= isl_id_copy(node
->u
.m
.mark
);
1002 dup
->u
.m
.node
= isl_ast_node_copy(node
->u
.m
.node
);
1003 if (!dup
->u
.m
.mark
|| !dup
->u
.m
.node
)
1004 return isl_ast_node_free(dup
);
1006 case isl_ast_node_user
:
1007 dup
->u
.e
.expr
= isl_ast_expr_copy(node
->u
.e
.expr
);
1009 return isl_ast_node_free(dup
);
1011 case isl_ast_node_error
:
1018 __isl_give isl_ast_node
*isl_ast_node_cow(__isl_take isl_ast_node
*node
)
1026 return isl_ast_node_dup(node
);
1029 __isl_null isl_ast_node
*isl_ast_node_free(__isl_take isl_ast_node
*node
)
1034 if (--node
->ref
> 0)
1037 switch (node
->type
) {
1038 case isl_ast_node_if
:
1039 isl_ast_expr_free(node
->u
.i
.guard
);
1040 isl_ast_node_free(node
->u
.i
.then
);
1041 isl_ast_node_free(node
->u
.i
.else_node
);
1043 case isl_ast_node_for
:
1044 isl_ast_expr_free(node
->u
.f
.iterator
);
1045 isl_ast_expr_free(node
->u
.f
.init
);
1046 isl_ast_expr_free(node
->u
.f
.cond
);
1047 isl_ast_expr_free(node
->u
.f
.inc
);
1048 isl_ast_node_free(node
->u
.f
.body
);
1050 case isl_ast_node_block
:
1051 isl_ast_node_list_free(node
->u
.b
.children
);
1053 case isl_ast_node_mark
:
1054 isl_id_free(node
->u
.m
.mark
);
1055 isl_ast_node_free(node
->u
.m
.node
);
1057 case isl_ast_node_user
:
1058 isl_ast_expr_free(node
->u
.e
.expr
);
1060 case isl_ast_node_error
:
1064 isl_id_free(node
->annotation
);
1065 isl_ctx_deref(node
->ctx
);
1071 /* Replace the body of the for node "node" by "body".
1073 __isl_give isl_ast_node
*isl_ast_node_for_set_body(
1074 __isl_take isl_ast_node
*node
, __isl_take isl_ast_node
*body
)
1076 node
= isl_ast_node_cow(node
);
1079 if (node
->type
!= isl_ast_node_for
)
1080 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1081 "not a for node", goto error
);
1083 isl_ast_node_free(node
->u
.f
.body
);
1084 node
->u
.f
.body
= body
;
1088 isl_ast_node_free(node
);
1089 isl_ast_node_free(body
);
1093 __isl_give isl_ast_node
*isl_ast_node_for_get_body(
1094 __isl_keep isl_ast_node
*node
)
1098 if (node
->type
!= isl_ast_node_for
)
1099 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1100 "not a for node", return NULL
);
1101 return isl_ast_node_copy(node
->u
.f
.body
);
1104 /* Mark the given for node as being degenerate.
1106 __isl_give isl_ast_node
*isl_ast_node_for_mark_degenerate(
1107 __isl_take isl_ast_node
*node
)
1109 node
= isl_ast_node_cow(node
);
1112 node
->u
.f
.degenerate
= 1;
1116 isl_bool
isl_ast_node_for_is_degenerate(__isl_keep isl_ast_node
*node
)
1119 return isl_bool_error
;
1120 if (node
->type
!= isl_ast_node_for
)
1121 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1122 "not a for node", return isl_bool_error
);
1123 return node
->u
.f
.degenerate
;
1126 __isl_give isl_ast_expr
*isl_ast_node_for_get_iterator(
1127 __isl_keep isl_ast_node
*node
)
1131 if (node
->type
!= isl_ast_node_for
)
1132 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1133 "not a for node", return NULL
);
1134 return isl_ast_expr_copy(node
->u
.f
.iterator
);
1137 __isl_give isl_ast_expr
*isl_ast_node_for_get_init(
1138 __isl_keep isl_ast_node
*node
)
1142 if (node
->type
!= isl_ast_node_for
)
1143 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1144 "not a for node", return NULL
);
1145 return isl_ast_expr_copy(node
->u
.f
.init
);
1148 /* Return the condition expression of the given for node.
1150 * If the for node is degenerate, then the condition is not explicitly
1151 * stored in the node. Instead, it is constructed as
1155 __isl_give isl_ast_expr
*isl_ast_node_for_get_cond(
1156 __isl_keep isl_ast_node
*node
)
1160 if (node
->type
!= isl_ast_node_for
)
1161 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1162 "not a for node", return NULL
);
1163 if (!node
->u
.f
.degenerate
)
1164 return isl_ast_expr_copy(node
->u
.f
.cond
);
1166 return isl_ast_expr_alloc_binary(isl_ast_op_le
,
1167 isl_ast_expr_copy(node
->u
.f
.iterator
),
1168 isl_ast_expr_copy(node
->u
.f
.init
));
1171 /* Return the increment of the given for node.
1173 * If the for node is degenerate, then the increment is not explicitly
1174 * stored in the node. We simply return "1".
1176 __isl_give isl_ast_expr
*isl_ast_node_for_get_inc(
1177 __isl_keep isl_ast_node
*node
)
1181 if (node
->type
!= isl_ast_node_for
)
1182 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1183 "not a for node", return NULL
);
1184 if (!node
->u
.f
.degenerate
)
1185 return isl_ast_expr_copy(node
->u
.f
.inc
);
1186 return isl_ast_expr_alloc_int_si(isl_ast_node_get_ctx(node
), 1);
1189 /* Replace the then branch of the if node "node" by "child".
1191 __isl_give isl_ast_node
*isl_ast_node_if_set_then(
1192 __isl_take isl_ast_node
*node
, __isl_take isl_ast_node
*child
)
1194 node
= isl_ast_node_cow(node
);
1195 if (!node
|| !child
)
1197 if (node
->type
!= isl_ast_node_if
)
1198 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1199 "not an if node", goto error
);
1201 isl_ast_node_free(node
->u
.i
.then
);
1202 node
->u
.i
.then
= child
;
1206 isl_ast_node_free(node
);
1207 isl_ast_node_free(child
);
1211 __isl_give isl_ast_node
*isl_ast_node_if_get_then(
1212 __isl_keep isl_ast_node
*node
)
1216 if (node
->type
!= isl_ast_node_if
)
1217 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1218 "not an if node", return NULL
);
1219 return isl_ast_node_copy(node
->u
.i
.then
);
1222 isl_bool
isl_ast_node_if_has_else(
1223 __isl_keep isl_ast_node
*node
)
1226 return isl_bool_error
;
1227 if (node
->type
!= isl_ast_node_if
)
1228 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1229 "not an if node", return isl_bool_error
);
1230 return node
->u
.i
.else_node
!= NULL
;
1233 __isl_give isl_ast_node
*isl_ast_node_if_get_else(
1234 __isl_keep isl_ast_node
*node
)
1238 if (node
->type
!= isl_ast_node_if
)
1239 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1240 "not an if node", return NULL
);
1241 return isl_ast_node_copy(node
->u
.i
.else_node
);
1244 __isl_give isl_ast_expr
*isl_ast_node_if_get_cond(
1245 __isl_keep isl_ast_node
*node
)
1249 if (node
->type
!= isl_ast_node_if
)
1250 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1251 "not a guard node", return NULL
);
1252 return isl_ast_expr_copy(node
->u
.i
.guard
);
1255 __isl_give isl_ast_node_list
*isl_ast_node_block_get_children(
1256 __isl_keep isl_ast_node
*node
)
1260 if (node
->type
!= isl_ast_node_block
)
1261 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1262 "not a block node", return NULL
);
1263 return isl_ast_node_list_copy(node
->u
.b
.children
);
1266 __isl_give isl_ast_expr
*isl_ast_node_user_get_expr(
1267 __isl_keep isl_ast_node
*node
)
1271 if (node
->type
!= isl_ast_node_user
)
1272 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1273 "not a user node", return NULL
);
1275 return isl_ast_expr_copy(node
->u
.e
.expr
);
1278 /* Return the mark identifier of the mark node "node".
1280 __isl_give isl_id
*isl_ast_node_mark_get_id(__isl_keep isl_ast_node
*node
)
1284 if (node
->type
!= isl_ast_node_mark
)
1285 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1286 "not a mark node", return NULL
);
1288 return isl_id_copy(node
->u
.m
.mark
);
1291 /* Return the node marked by mark node "node".
1293 __isl_give isl_ast_node
*isl_ast_node_mark_get_node(
1294 __isl_keep isl_ast_node
*node
)
1298 if (node
->type
!= isl_ast_node_mark
)
1299 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
1300 "not a mark node", return NULL
);
1302 return isl_ast_node_copy(node
->u
.m
.node
);
1305 __isl_give isl_id
*isl_ast_node_get_annotation(__isl_keep isl_ast_node
*node
)
1307 return node
? isl_id_copy(node
->annotation
) : NULL
;
1310 /* Replace node->annotation by "annotation".
1312 __isl_give isl_ast_node
*isl_ast_node_set_annotation(
1313 __isl_take isl_ast_node
*node
, __isl_take isl_id
*annotation
)
1315 node
= isl_ast_node_cow(node
);
1316 if (!node
|| !annotation
)
1319 isl_id_free(node
->annotation
);
1320 node
->annotation
= annotation
;
1324 isl_id_free(annotation
);
1325 return isl_ast_node_free(node
);
1328 /* Traverse the elements of "list" and all their descendants
1329 * in depth first preorder.
1331 * Return isl_stat_ok on success and isl_stat_error on failure.
1333 static isl_stat
nodelist_foreach(__isl_keep isl_ast_node_list
*list
,
1334 isl_bool (*fn
)(__isl_keep isl_ast_node
*node
, void *user
), void *user
)
1339 return isl_stat_error
;
1341 for (i
= 0; i
< list
->n
; ++i
) {
1343 isl_ast_node
*node
= list
->p
[i
];
1345 ok
= isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1347 return isl_stat_error
;
1353 /* Traverse the descendants of "node" (including the node itself)
1354 * in depth first preorder.
1356 * If "fn" returns isl_bool_error on any of the nodes, then the traversal
1358 * If "fn" returns isl_bool_false on any of the nodes, then the subtree rooted
1359 * at that node is skipped.
1361 * Return isl_stat_ok on success and isl_stat_error on failure.
1363 isl_stat
isl_ast_node_foreach_descendant_top_down(
1364 __isl_keep isl_ast_node
*node
,
1365 isl_bool (*fn
)(__isl_keep isl_ast_node
*node
, void *user
), void *user
)
1371 return isl_stat_error
;
1373 more
= fn(node
, user
);
1375 return isl_stat_error
;
1379 switch (node
->type
) {
1380 case isl_ast_node_for
:
1381 node
= node
->u
.f
.body
;
1382 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1383 case isl_ast_node_if
:
1384 ok
= isl_ast_node_foreach_descendant_top_down(node
->u
.i
.then
,
1387 return isl_stat_error
;
1388 if (!node
->u
.i
.else_node
)
1390 node
= node
->u
.i
.else_node
;
1391 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1392 case isl_ast_node_block
:
1393 return nodelist_foreach(node
->u
.b
.children
, fn
, user
);
1394 case isl_ast_node_mark
:
1395 node
= node
->u
.m
.node
;
1396 return isl_ast_node_foreach_descendant_top_down(node
, fn
, user
);
1397 case isl_ast_node_user
:
1399 case isl_ast_node_error
:
1400 return isl_stat_error
;
1406 /* Textual C representation of the various operators.
1408 static char *op_str_c
[] = {
1409 [isl_ast_op_and
] = "&&",
1410 [isl_ast_op_and_then
] = "&&",
1411 [isl_ast_op_or
] = "||",
1412 [isl_ast_op_or_else
] = "||",
1413 [isl_ast_op_max
] = "max",
1414 [isl_ast_op_min
] = "min",
1415 [isl_ast_op_minus
] = "-",
1416 [isl_ast_op_add
] = "+",
1417 [isl_ast_op_sub
] = "-",
1418 [isl_ast_op_mul
] = "*",
1419 [isl_ast_op_fdiv_q
] = "floord",
1420 [isl_ast_op_pdiv_q
] = "/",
1421 [isl_ast_op_pdiv_r
] = "%",
1422 [isl_ast_op_zdiv_r
] = "%",
1423 [isl_ast_op_div
] = "/",
1424 [isl_ast_op_eq
] = "==",
1425 [isl_ast_op_le
] = "<=",
1426 [isl_ast_op_ge
] = ">=",
1427 [isl_ast_op_lt
] = "<",
1428 [isl_ast_op_gt
] = ">",
1429 [isl_ast_op_member
] = ".",
1430 [isl_ast_op_address_of
] = "&"
1433 /* Precedence in C of the various operators.
1434 * Based on http://en.wikipedia.org/wiki/Operators_in_C_and_C++
1435 * Lowest value means highest precedence.
1437 static int op_prec
[] = {
1438 [isl_ast_op_and
] = 13,
1439 [isl_ast_op_and_then
] = 13,
1440 [isl_ast_op_or
] = 14,
1441 [isl_ast_op_or_else
] = 14,
1442 [isl_ast_op_max
] = 2,
1443 [isl_ast_op_min
] = 2,
1444 [isl_ast_op_minus
] = 3,
1445 [isl_ast_op_add
] = 6,
1446 [isl_ast_op_sub
] = 6,
1447 [isl_ast_op_mul
] = 5,
1448 [isl_ast_op_div
] = 5,
1449 [isl_ast_op_fdiv_q
] = 2,
1450 [isl_ast_op_pdiv_q
] = 5,
1451 [isl_ast_op_pdiv_r
] = 5,
1452 [isl_ast_op_zdiv_r
] = 5,
1453 [isl_ast_op_cond
] = 15,
1454 [isl_ast_op_select
] = 15,
1455 [isl_ast_op_eq
] = 9,
1456 [isl_ast_op_le
] = 8,
1457 [isl_ast_op_ge
] = 8,
1458 [isl_ast_op_lt
] = 8,
1459 [isl_ast_op_gt
] = 8,
1460 [isl_ast_op_call
] = 2,
1461 [isl_ast_op_access
] = 2,
1462 [isl_ast_op_member
] = 2,
1463 [isl_ast_op_address_of
] = 3
1466 /* Is the operator left-to-right associative?
1468 static int op_left
[] = {
1469 [isl_ast_op_and
] = 1,
1470 [isl_ast_op_and_then
] = 1,
1471 [isl_ast_op_or
] = 1,
1472 [isl_ast_op_or_else
] = 1,
1473 [isl_ast_op_max
] = 1,
1474 [isl_ast_op_min
] = 1,
1475 [isl_ast_op_minus
] = 0,
1476 [isl_ast_op_add
] = 1,
1477 [isl_ast_op_sub
] = 1,
1478 [isl_ast_op_mul
] = 1,
1479 [isl_ast_op_div
] = 1,
1480 [isl_ast_op_fdiv_q
] = 1,
1481 [isl_ast_op_pdiv_q
] = 1,
1482 [isl_ast_op_pdiv_r
] = 1,
1483 [isl_ast_op_zdiv_r
] = 1,
1484 [isl_ast_op_cond
] = 0,
1485 [isl_ast_op_select
] = 0,
1486 [isl_ast_op_eq
] = 1,
1487 [isl_ast_op_le
] = 1,
1488 [isl_ast_op_ge
] = 1,
1489 [isl_ast_op_lt
] = 1,
1490 [isl_ast_op_gt
] = 1,
1491 [isl_ast_op_call
] = 1,
1492 [isl_ast_op_access
] = 1,
1493 [isl_ast_op_member
] = 1,
1494 [isl_ast_op_address_of
] = 0
1497 static int is_and(enum isl_ast_op_type op
)
1499 return op
== isl_ast_op_and
|| op
== isl_ast_op_and_then
;
1502 static int is_or(enum isl_ast_op_type op
)
1504 return op
== isl_ast_op_or
|| op
== isl_ast_op_or_else
;
1507 static int is_add_sub(enum isl_ast_op_type op
)
1509 return op
== isl_ast_op_add
|| op
== isl_ast_op_sub
;
1512 static int is_div_mod(enum isl_ast_op_type op
)
1514 return op
== isl_ast_op_div
||
1515 op
== isl_ast_op_pdiv_r
||
1516 op
== isl_ast_op_zdiv_r
;
1519 static __isl_give isl_printer
*print_ast_expr_c(__isl_take isl_printer
*p
,
1520 __isl_keep isl_ast_expr
*expr
);
1522 /* Do we need/want parentheses around "expr" as a subexpression of
1523 * an "op" operation? If "left" is set, then "expr" is the left-most
1526 * We only need parentheses if "expr" represents an operation.
1528 * If op has a higher precedence than expr->u.op.op, then we need
1530 * If op and expr->u.op.op have the same precedence, but the operations
1531 * are performed in an order that is different from the associativity,
1532 * then we need parentheses.
1534 * An and inside an or technically does not require parentheses,
1535 * but some compilers complain about that, so we add them anyway.
1537 * Computations such as "a / b * c" and "a % b + c" can be somewhat
1538 * difficult to read, so we add parentheses for those as well.
1540 static int sub_expr_need_parens(enum isl_ast_op_type op
,
1541 __isl_keep isl_ast_expr
*expr
, int left
)
1543 if (expr
->type
!= isl_ast_expr_op
)
1546 if (op_prec
[expr
->u
.op
.op
] > op_prec
[op
])
1548 if (op_prec
[expr
->u
.op
.op
] == op_prec
[op
] && left
!= op_left
[op
])
1551 if (is_or(op
) && is_and(expr
->u
.op
.op
))
1553 if (op
== isl_ast_op_mul
&& expr
->u
.op
.op
!= isl_ast_op_mul
&&
1554 op_prec
[expr
->u
.op
.op
] == op_prec
[op
])
1556 if (is_add_sub(op
) && is_div_mod(expr
->u
.op
.op
))
1562 /* Print "expr" as a subexpression of an "op" operation in C format.
1563 * If "left" is set, then "expr" is the left-most operand.
1565 static __isl_give isl_printer
*print_sub_expr_c(__isl_take isl_printer
*p
,
1566 enum isl_ast_op_type op
, __isl_keep isl_ast_expr
*expr
, int left
)
1570 need_parens
= sub_expr_need_parens(op
, expr
, left
);
1573 p
= isl_printer_print_str(p
, "(");
1574 p
= print_ast_expr_c(p
, expr
);
1576 p
= isl_printer_print_str(p
, ")");
1580 #define isl_ast_op_last isl_ast_op_address_of
1582 /* Data structure that holds the user-specified textual
1583 * representations for the operators in C format.
1584 * The entries are either NULL or copies of strings.
1585 * A NULL entry means that the default name should be used.
1587 struct isl_ast_op_names
{
1588 char *op_str
[isl_ast_op_last
+ 1];
1591 /* Create an empty struct isl_ast_op_names.
1593 static void *create_names(isl_ctx
*ctx
)
1595 return isl_calloc_type(ctx
, struct isl_ast_op_names
);
1598 /* Free a struct isl_ast_op_names along with all memory
1599 * owned by the struct.
1601 static void free_names(void *user
)
1604 struct isl_ast_op_names
*names
= user
;
1609 for (i
= 0; i
<= isl_ast_op_last
; ++i
)
1610 free(names
->op_str
[i
]);
1614 /* Create an identifier that is used to store
1615 * an isl_ast_op_names note.
1617 static __isl_give isl_id
*names_id(isl_ctx
*ctx
)
1619 return isl_id_alloc(ctx
, "isl_ast_op_type_names", NULL
);
1622 /* Ensure that "p" has a note identified by "id".
1623 * If there is no such note yet, then it is created by "note_create" and
1624 * scheduled do be freed by "note_free".
1626 static __isl_give isl_printer
*alloc_note(__isl_take isl_printer
*p
,
1627 __isl_keep isl_id
*id
, void *(*note_create
)(isl_ctx
*),
1628 void (*note_free
)(void *))
1635 has_note
= isl_printer_has_note(p
, id
);
1637 return isl_printer_free(p
);
1641 ctx
= isl_printer_get_ctx(p
);
1642 note
= note_create(ctx
);
1644 return isl_printer_free(p
);
1645 note_id
= isl_id_alloc(ctx
, NULL
, note
);
1649 note_id
= isl_id_set_free_user(note_id
, note_free
);
1651 p
= isl_printer_set_note(p
, isl_id_copy(id
), note_id
);
1656 /* Ensure that "p" has an isl_ast_op_names note identified by "id".
1658 static __isl_give isl_printer
*alloc_names(__isl_take isl_printer
*p
,
1659 __isl_keep isl_id
*id
)
1661 return alloc_note(p
, id
, &create_names
, &free_names
);
1664 /* Retrieve the note identified by "id" from "p".
1665 * The note is assumed to exist.
1667 static void *get_note(__isl_keep isl_printer
*p
, __isl_keep isl_id
*id
)
1671 id
= isl_printer_get_note(p
, isl_id_copy(id
));
1672 note
= isl_id_get_user(id
);
1678 /* Use "name" to print operations of type "type" to "p".
1680 * Store the name in an isl_ast_op_names note attached to "p", such that
1681 * it can be retrieved by get_op_str.
1683 __isl_give isl_printer
*isl_ast_op_type_set_print_name(
1684 __isl_take isl_printer
*p
, enum isl_ast_op_type type
,
1685 __isl_keep
const char *name
)
1688 struct isl_ast_op_names
*names
;
1692 if (type
> isl_ast_op_last
)
1693 isl_die(isl_printer_get_ctx(p
), isl_error_invalid
,
1694 "invalid type", return isl_printer_free(p
));
1696 id
= names_id(isl_printer_get_ctx(p
));
1697 p
= alloc_names(p
, id
);
1698 names
= get_note(p
, id
);
1701 return isl_printer_free(p
);
1702 free(names
->op_str
[type
]);
1703 names
->op_str
[type
] = strdup(name
);
1708 /* Return the textual representation of "type" in C format.
1710 * If there is a user-specified name in an isl_ast_op_names note
1711 * associated to "p", then return that.
1712 * Otherwise, return the default name in op_str.
1714 static const char *get_op_str_c(__isl_keep isl_printer
*p
,
1715 enum isl_ast_op_type type
)
1719 struct isl_ast_op_names
*names
= NULL
;
1721 id
= names_id(isl_printer_get_ctx(p
));
1722 has_names
= isl_printer_has_note(p
, id
);
1723 if (has_names
>= 0 && has_names
)
1724 names
= get_note(p
, id
);
1726 if (names
&& names
->op_str
[type
])
1727 return names
->op_str
[type
];
1728 return op_str_c
[type
];
1731 /* Print a min or max reduction "expr" in C format.
1733 static __isl_give isl_printer
*print_min_max_c(__isl_take isl_printer
*p
,
1734 __isl_keep isl_ast_expr
*expr
)
1738 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1739 p
= isl_printer_print_str(p
, get_op_str_c(p
, expr
->u
.op
.op
));
1740 p
= isl_printer_print_str(p
, "(");
1742 p
= isl_printer_print_ast_expr(p
, expr
->u
.op
.args
[0]);
1743 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1744 p
= isl_printer_print_str(p
, ", ");
1745 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[i
]);
1746 p
= isl_printer_print_str(p
, ")");
1752 /* Print a function call "expr" in C format.
1754 * The first argument represents the function to be called.
1756 static __isl_give isl_printer
*print_call_c(__isl_take isl_printer
*p
,
1757 __isl_keep isl_ast_expr
*expr
)
1761 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[0]);
1762 p
= isl_printer_print_str(p
, "(");
1763 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1765 p
= isl_printer_print_str(p
, ", ");
1766 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[i
]);
1768 p
= isl_printer_print_str(p
, ")");
1773 /* Print an array access "expr" in C format.
1775 * The first argument represents the array being accessed.
1777 static __isl_give isl_printer
*print_access_c(__isl_take isl_printer
*p
,
1778 __isl_keep isl_ast_expr
*expr
)
1782 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[0]);
1783 for (i
= 1; i
< expr
->u
.op
.n_arg
; ++i
) {
1784 p
= isl_printer_print_str(p
, "[");
1785 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[i
]);
1786 p
= isl_printer_print_str(p
, "]");
1792 /* Print "expr" to "p" in C format.
1794 static __isl_give isl_printer
*print_ast_expr_c(__isl_take isl_printer
*p
,
1795 __isl_keep isl_ast_expr
*expr
)
1800 return isl_printer_free(p
);
1802 switch (expr
->type
) {
1803 case isl_ast_expr_op
:
1804 if (expr
->u
.op
.op
== isl_ast_op_call
) {
1805 p
= print_call_c(p
, expr
);
1808 if (expr
->u
.op
.op
== isl_ast_op_access
) {
1809 p
= print_access_c(p
, expr
);
1812 if (expr
->u
.op
.n_arg
== 1) {
1813 p
= isl_printer_print_str(p
,
1814 get_op_str_c(p
, expr
->u
.op
.op
));
1815 p
= print_sub_expr_c(p
, expr
->u
.op
.op
,
1816 expr
->u
.op
.args
[0], 0);
1819 if (expr
->u
.op
.op
== isl_ast_op_fdiv_q
) {
1820 const char *name
= get_op_str_c(p
, isl_ast_op_fdiv_q
);
1821 p
= isl_printer_print_str(p
, name
);
1822 p
= isl_printer_print_str(p
, "(");
1823 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[0]);
1824 p
= isl_printer_print_str(p
, ", ");
1825 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[1]);
1826 p
= isl_printer_print_str(p
, ")");
1829 if (expr
->u
.op
.op
== isl_ast_op_max
||
1830 expr
->u
.op
.op
== isl_ast_op_min
) {
1831 p
= print_min_max_c(p
, expr
);
1834 if (expr
->u
.op
.op
== isl_ast_op_cond
||
1835 expr
->u
.op
.op
== isl_ast_op_select
) {
1836 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[0]);
1837 p
= isl_printer_print_str(p
, " ? ");
1838 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[1]);
1839 p
= isl_printer_print_str(p
, " : ");
1840 p
= print_ast_expr_c(p
, expr
->u
.op
.args
[2]);
1843 if (expr
->u
.op
.n_arg
!= 2)
1844 isl_die(isl_printer_get_ctx(p
), isl_error_internal
,
1845 "operation should have two arguments",
1846 return isl_printer_free(p
));
1847 p
= print_sub_expr_c(p
, expr
->u
.op
.op
, expr
->u
.op
.args
[0], 1);
1848 if (expr
->u
.op
.op
!= isl_ast_op_member
)
1849 p
= isl_printer_print_str(p
, " ");
1850 p
= isl_printer_print_str(p
, get_op_str_c(p
, expr
->u
.op
.op
));
1851 if (expr
->u
.op
.op
!= isl_ast_op_member
)
1852 p
= isl_printer_print_str(p
, " ");
1853 p
= print_sub_expr_c(p
, expr
->u
.op
.op
, expr
->u
.op
.args
[1], 0);
1855 case isl_ast_expr_id
:
1856 p
= isl_printer_print_str(p
, isl_id_get_name(expr
->u
.id
));
1858 case isl_ast_expr_int
:
1859 p
= isl_printer_print_val(p
, expr
->u
.v
);
1861 case isl_ast_expr_error
:
1868 /* Textual representation of the isl_ast_op_type elements
1869 * for use in a YAML representation of an isl_ast_expr.
1871 static char *op_str
[] = {
1872 [isl_ast_op_and
] = "and",
1873 [isl_ast_op_and_then
] = "and_then",
1874 [isl_ast_op_or
] = "or",
1875 [isl_ast_op_or_else
] = "or_else",
1876 [isl_ast_op_max
] = "max",
1877 [isl_ast_op_min
] = "min",
1878 [isl_ast_op_minus
] = "minus",
1879 [isl_ast_op_add
] = "add",
1880 [isl_ast_op_sub
] = "sub",
1881 [isl_ast_op_mul
] = "mul",
1882 [isl_ast_op_div
] = "div",
1883 [isl_ast_op_fdiv_q
] = "fdiv_q",
1884 [isl_ast_op_pdiv_q
] = "pdiv_q",
1885 [isl_ast_op_pdiv_r
] = "pdiv_r",
1886 [isl_ast_op_zdiv_r
] = "zdiv_r",
1887 [isl_ast_op_cond
] = "cond",
1888 [isl_ast_op_select
] = "select",
1889 [isl_ast_op_eq
] = "eq",
1890 [isl_ast_op_le
] = "le",
1891 [isl_ast_op_lt
] = "lt",
1892 [isl_ast_op_ge
] = "ge",
1893 [isl_ast_op_gt
] = "gt",
1894 [isl_ast_op_call
] = "call",
1895 [isl_ast_op_access
] = "access",
1896 [isl_ast_op_member
] = "member",
1897 [isl_ast_op_address_of
] = "address_of"
1900 static __isl_give isl_printer
*print_ast_expr_isl(__isl_take isl_printer
*p
,
1901 __isl_keep isl_ast_expr
*expr
);
1903 /* Print the arguments of "expr" to "p" in isl format.
1905 * If there are no arguments, then nothing needs to be printed.
1906 * Otherwise add an "args" key to the current mapping with as value
1907 * the list of arguments of "expr".
1909 static __isl_give isl_printer
*print_arguments(__isl_take isl_printer
*p
,
1910 __isl_keep isl_ast_expr
*expr
)
1914 n
= isl_ast_expr_get_op_n_arg(expr
);
1916 return isl_printer_free(p
);
1920 p
= isl_printer_print_str(p
, "args");
1921 p
= isl_printer_yaml_next(p
);
1922 p
= isl_printer_yaml_start_sequence(p
);
1923 for (i
= 0; i
< n
; ++i
) {
1926 arg
= isl_ast_expr_get_op_arg(expr
, i
);
1927 p
= print_ast_expr_isl(p
, arg
);
1928 isl_ast_expr_free(arg
);
1929 p
= isl_printer_yaml_next(p
);
1931 p
= isl_printer_yaml_end_sequence(p
);
1936 /* Print "expr" to "p" in isl format.
1938 * In particular, print the isl_ast_expr as a YAML document.
1940 static __isl_give isl_printer
*print_ast_expr_isl(__isl_take isl_printer
*p
,
1941 __isl_keep isl_ast_expr
*expr
)
1943 enum isl_ast_expr_type type
;
1944 enum isl_ast_op_type op
;
1949 return isl_printer_free(p
);
1951 p
= isl_printer_yaml_start_mapping(p
);
1952 type
= isl_ast_expr_get_type(expr
);
1954 case isl_ast_expr_error
:
1955 return isl_printer_free(p
);
1956 case isl_ast_expr_op
:
1957 op
= isl_ast_expr_get_op_type(expr
);
1958 if (op
== isl_ast_op_error
)
1959 return isl_printer_free(p
);
1960 p
= isl_printer_print_str(p
, "op");
1961 p
= isl_printer_yaml_next(p
);
1962 p
= isl_printer_print_str(p
, op_str
[op
]);
1963 p
= isl_printer_yaml_next(p
);
1964 p
= print_arguments(p
, expr
);
1966 case isl_ast_expr_id
:
1967 p
= isl_printer_print_str(p
, "id");
1968 p
= isl_printer_yaml_next(p
);
1969 id
= isl_ast_expr_get_id(expr
);
1970 p
= isl_printer_print_id(p
, id
);
1973 case isl_ast_expr_int
:
1974 p
= isl_printer_print_str(p
, "val");
1975 p
= isl_printer_yaml_next(p
);
1976 v
= isl_ast_expr_get_val(expr
);
1977 p
= isl_printer_print_val(p
, v
);
1981 p
= isl_printer_yaml_end_mapping(p
);
1986 /* Print "expr" to "p".
1988 * Only an isl and a C format are supported.
1990 __isl_give isl_printer
*isl_printer_print_ast_expr(__isl_take isl_printer
*p
,
1991 __isl_keep isl_ast_expr
*expr
)
1998 format
= isl_printer_get_output_format(p
);
2000 case ISL_FORMAT_ISL
:
2001 p
= print_ast_expr_isl(p
, expr
);
2004 p
= print_ast_expr_c(p
, expr
);
2007 isl_die(isl_printer_get_ctx(p
), isl_error_unsupported
,
2008 "output format not supported for ast_expr",
2009 return isl_printer_free(p
));
2015 static __isl_give isl_printer
*print_ast_node_isl(__isl_take isl_printer
*p
,
2016 __isl_keep isl_ast_node
*node
);
2018 /* Print a YAML sequence containing the entries in "list" to "p".
2020 static __isl_give isl_printer
*print_ast_node_list(__isl_take isl_printer
*p
,
2021 __isl_keep isl_ast_node_list
*list
)
2025 n
= isl_ast_node_list_n_ast_node(list
);
2027 return isl_printer_free(p
);
2029 p
= isl_printer_yaml_start_sequence(p
);
2030 for (i
= 0; i
< n
; ++i
) {
2033 node
= isl_ast_node_list_get_ast_node(list
, i
);
2034 p
= print_ast_node_isl(p
, node
);
2035 isl_ast_node_free(node
);
2036 p
= isl_printer_yaml_next(p
);
2038 p
= isl_printer_yaml_end_sequence(p
);
2043 /* Print "node" to "p" in "isl format".
2045 * In particular, print the isl_ast_node as a YAML document.
2047 static __isl_give isl_printer
*print_ast_node_isl(__isl_take isl_printer
*p
,
2048 __isl_keep isl_ast_node
*node
)
2050 switch (node
->type
) {
2051 case isl_ast_node_for
:
2052 p
= isl_printer_yaml_start_mapping(p
);
2053 p
= isl_printer_print_str(p
, "iterator");
2054 p
= isl_printer_yaml_next(p
);
2055 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.iterator
);
2056 p
= isl_printer_yaml_next(p
);
2057 if (node
->u
.f
.degenerate
) {
2058 p
= isl_printer_print_str(p
, "value");
2059 p
= isl_printer_yaml_next(p
);
2060 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2061 p
= isl_printer_yaml_next(p
);
2063 p
= isl_printer_print_str(p
, "init");
2064 p
= isl_printer_yaml_next(p
);
2065 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2066 p
= isl_printer_yaml_next(p
);
2067 p
= isl_printer_print_str(p
, "cond");
2068 p
= isl_printer_yaml_next(p
);
2069 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.cond
);
2070 p
= isl_printer_yaml_next(p
);
2071 p
= isl_printer_print_str(p
, "inc");
2072 p
= isl_printer_yaml_next(p
);
2073 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.inc
);
2074 p
= isl_printer_yaml_next(p
);
2076 if (node
->u
.f
.body
) {
2077 p
= isl_printer_print_str(p
, "body");
2078 p
= isl_printer_yaml_next(p
);
2079 p
= isl_printer_print_ast_node(p
, node
->u
.f
.body
);
2080 p
= isl_printer_yaml_next(p
);
2082 p
= isl_printer_yaml_end_mapping(p
);
2084 case isl_ast_node_mark
:
2085 p
= isl_printer_yaml_start_mapping(p
);
2086 p
= isl_printer_print_str(p
, "mark");
2087 p
= isl_printer_yaml_next(p
);
2088 p
= isl_printer_print_id(p
, node
->u
.m
.mark
);
2089 p
= isl_printer_yaml_next(p
);
2090 p
= isl_printer_print_str(p
, "node");
2091 p
= isl_printer_yaml_next(p
);
2092 p
= isl_printer_print_ast_node(p
, node
->u
.m
.node
);
2093 p
= isl_printer_yaml_end_mapping(p
);
2095 case isl_ast_node_user
:
2096 p
= isl_printer_yaml_start_mapping(p
);
2097 p
= isl_printer_print_str(p
, "user");
2098 p
= isl_printer_yaml_next(p
);
2099 p
= isl_printer_print_ast_expr(p
, node
->u
.e
.expr
);
2100 p
= isl_printer_yaml_end_mapping(p
);
2102 case isl_ast_node_if
:
2103 p
= isl_printer_yaml_start_mapping(p
);
2104 p
= isl_printer_print_str(p
, "guard");
2105 p
= isl_printer_yaml_next(p
);
2106 p
= isl_printer_print_ast_expr(p
, node
->u
.i
.guard
);
2107 p
= isl_printer_yaml_next(p
);
2108 if (node
->u
.i
.then
) {
2109 p
= isl_printer_print_str(p
, "then");
2110 p
= isl_printer_yaml_next(p
);
2111 p
= isl_printer_print_ast_node(p
, node
->u
.i
.then
);
2112 p
= isl_printer_yaml_next(p
);
2114 if (node
->u
.i
.else_node
) {
2115 p
= isl_printer_print_str(p
, "else");
2116 p
= isl_printer_yaml_next(p
);
2117 p
= isl_printer_print_ast_node(p
, node
->u
.i
.else_node
);
2119 p
= isl_printer_yaml_end_mapping(p
);
2121 case isl_ast_node_block
:
2122 p
= print_ast_node_list(p
, node
->u
.b
.children
);
2124 case isl_ast_node_error
:
2130 /* Do we need to print a block around the body "node" of a for or if node?
2132 * If the node is a block, then we need to print a block.
2133 * Also if the node is a degenerate for then we will print it as
2134 * an assignment followed by the body of the for loop, so we need a block
2136 * If the node is an if node with an else, then we print a block
2137 * to avoid spurious dangling else warnings emitted by some compilers.
2138 * If the node is a mark, then in principle, we would have to check
2139 * the child of the mark node. However, even if the child would not
2140 * require us to print a block, for readability it is probably best
2141 * to print a block anyway.
2142 * If the ast_always_print_block option has been set, then we print a block.
2144 static int need_block(__isl_keep isl_ast_node
*node
)
2148 if (node
->type
== isl_ast_node_block
)
2150 if (node
->type
== isl_ast_node_for
&& node
->u
.f
.degenerate
)
2152 if (node
->type
== isl_ast_node_if
&& node
->u
.i
.else_node
)
2154 if (node
->type
== isl_ast_node_mark
)
2157 ctx
= isl_ast_node_get_ctx(node
);
2158 return isl_options_get_ast_always_print_block(ctx
);
2161 static __isl_give isl_printer
*print_ast_node_c(__isl_take isl_printer
*p
,
2162 __isl_keep isl_ast_node
*node
,
2163 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
);
2164 static __isl_give isl_printer
*print_if_c(__isl_take isl_printer
*p
,
2165 __isl_keep isl_ast_node
*node
,
2166 __isl_keep isl_ast_print_options
*options
, int new_line
,
2169 /* Print the body "node" of a for or if node.
2170 * If "else_node" is set, then it is printed as well.
2171 * If "force_block" is set, then print out the body as a block.
2173 * We first check if we need to print out a block.
2174 * We always print out a block if there is an else node to make
2175 * sure that the else node is matched to the correct if node.
2176 * For consistency, the corresponding else node is also printed as a block.
2178 * If the else node is itself an if, then we print it as
2183 * Otherwise the else node is printed as
2189 static __isl_give isl_printer
*print_body_c(__isl_take isl_printer
*p
,
2190 __isl_keep isl_ast_node
*node
, __isl_keep isl_ast_node
*else_node
,
2191 __isl_keep isl_ast_print_options
*options
, int force_block
)
2194 return isl_printer_free(p
);
2196 if (!force_block
&& !else_node
&& !need_block(node
)) {
2197 p
= isl_printer_end_line(p
);
2198 p
= isl_printer_indent(p
, 2);
2199 p
= isl_ast_node_print(node
, p
,
2200 isl_ast_print_options_copy(options
));
2201 p
= isl_printer_indent(p
, -2);
2205 p
= isl_printer_print_str(p
, " {");
2206 p
= isl_printer_end_line(p
);
2207 p
= isl_printer_indent(p
, 2);
2208 p
= print_ast_node_c(p
, node
, options
, 1, 0);
2209 p
= isl_printer_indent(p
, -2);
2210 p
= isl_printer_start_line(p
);
2211 p
= isl_printer_print_str(p
, "}");
2213 if (else_node
->type
== isl_ast_node_if
) {
2214 p
= isl_printer_print_str(p
, " else ");
2215 p
= print_if_c(p
, else_node
, options
, 0, 1);
2217 p
= isl_printer_print_str(p
, " else");
2218 p
= print_body_c(p
, else_node
, NULL
, options
, 1);
2221 p
= isl_printer_end_line(p
);
2226 /* Print the start of a compound statement.
2228 static __isl_give isl_printer
*start_block(__isl_take isl_printer
*p
)
2230 p
= isl_printer_start_line(p
);
2231 p
= isl_printer_print_str(p
, "{");
2232 p
= isl_printer_end_line(p
);
2233 p
= isl_printer_indent(p
, 2);
2238 /* Print the end of a compound statement.
2240 static __isl_give isl_printer
*end_block(__isl_take isl_printer
*p
)
2242 p
= isl_printer_indent(p
, -2);
2243 p
= isl_printer_start_line(p
);
2244 p
= isl_printer_print_str(p
, "}");
2245 p
= isl_printer_end_line(p
);
2250 /* Print the for node "node".
2252 * If the for node is degenerate, it is printed as
2254 * type iterator = init;
2257 * Otherwise, it is printed as
2259 * for (type iterator = init; cond; iterator += inc)
2262 * "in_block" is set if we are currently inside a block.
2263 * "in_list" is set if the current node is not alone in the block.
2264 * If we are not in a block or if the current not is not alone in the block
2265 * then we print a block around a degenerate for loop such that the variable
2266 * declaration will not conflict with any potential other declaration
2267 * of the same variable.
2269 static __isl_give isl_printer
*print_for_c(__isl_take isl_printer
*p
,
2270 __isl_keep isl_ast_node
*node
,
2271 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
)
2277 type
= isl_options_get_ast_iterator_type(isl_printer_get_ctx(p
));
2278 if (!node
->u
.f
.degenerate
) {
2279 id
= isl_ast_expr_get_id(node
->u
.f
.iterator
);
2280 name
= isl_id_get_name(id
);
2282 p
= isl_printer_start_line(p
);
2283 p
= isl_printer_print_str(p
, "for (");
2284 p
= isl_printer_print_str(p
, type
);
2285 p
= isl_printer_print_str(p
, " ");
2286 p
= isl_printer_print_str(p
, name
);
2287 p
= isl_printer_print_str(p
, " = ");
2288 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2289 p
= isl_printer_print_str(p
, "; ");
2290 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.cond
);
2291 p
= isl_printer_print_str(p
, "; ");
2292 p
= isl_printer_print_str(p
, name
);
2293 p
= isl_printer_print_str(p
, " += ");
2294 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.inc
);
2295 p
= isl_printer_print_str(p
, ")");
2296 p
= print_body_c(p
, node
->u
.f
.body
, NULL
, options
, 0);
2298 id
= isl_ast_expr_get_id(node
->u
.f
.iterator
);
2299 name
= isl_id_get_name(id
);
2301 if (!in_block
|| in_list
)
2303 p
= isl_printer_start_line(p
);
2304 p
= isl_printer_print_str(p
, type
);
2305 p
= isl_printer_print_str(p
, " ");
2306 p
= isl_printer_print_str(p
, name
);
2307 p
= isl_printer_print_str(p
, " = ");
2308 p
= isl_printer_print_ast_expr(p
, node
->u
.f
.init
);
2309 p
= isl_printer_print_str(p
, ";");
2310 p
= isl_printer_end_line(p
);
2311 p
= print_ast_node_c(p
, node
->u
.f
.body
, options
, 1, 0);
2312 if (!in_block
|| in_list
)
2319 /* Print the if node "node".
2320 * If "new_line" is set then the if node should be printed on a new line.
2321 * If "force_block" is set, then print out the body as a block.
2323 static __isl_give isl_printer
*print_if_c(__isl_take isl_printer
*p
,
2324 __isl_keep isl_ast_node
*node
,
2325 __isl_keep isl_ast_print_options
*options
, int new_line
,
2329 p
= isl_printer_start_line(p
);
2330 p
= isl_printer_print_str(p
, "if (");
2331 p
= isl_printer_print_ast_expr(p
, node
->u
.i
.guard
);
2332 p
= isl_printer_print_str(p
, ")");
2333 p
= print_body_c(p
, node
->u
.i
.then
, node
->u
.i
.else_node
, options
,
2339 /* Print the "node" to "p".
2341 * "in_block" is set if we are currently inside a block.
2342 * If so, we do not print a block around the children of a block node.
2343 * We do this to avoid an extra block around the body of a degenerate
2346 * "in_list" is set if the current node is not alone in the block.
2348 static __isl_give isl_printer
*print_ast_node_c(__isl_take isl_printer
*p
,
2349 __isl_keep isl_ast_node
*node
,
2350 __isl_keep isl_ast_print_options
*options
, int in_block
, int in_list
)
2352 switch (node
->type
) {
2353 case isl_ast_node_for
:
2354 if (options
->print_for
)
2355 return options
->print_for(p
,
2356 isl_ast_print_options_copy(options
),
2357 node
, options
->print_for_user
);
2358 p
= print_for_c(p
, node
, options
, in_block
, in_list
);
2360 case isl_ast_node_if
:
2361 p
= print_if_c(p
, node
, options
, 1, 0);
2363 case isl_ast_node_block
:
2366 p
= isl_ast_node_list_print(node
->u
.b
.children
, p
, options
);
2370 case isl_ast_node_mark
:
2371 p
= isl_printer_start_line(p
);
2372 p
= isl_printer_print_str(p
, "// ");
2373 p
= isl_printer_print_str(p
, isl_id_get_name(node
->u
.m
.mark
));
2374 p
= isl_printer_end_line(p
);
2375 p
= print_ast_node_c(p
, node
->u
.m
.node
, options
, 0, in_list
);
2377 case isl_ast_node_user
:
2378 if (options
->print_user
)
2379 return options
->print_user(p
,
2380 isl_ast_print_options_copy(options
),
2381 node
, options
->print_user_user
);
2382 p
= isl_printer_start_line(p
);
2383 p
= isl_printer_print_ast_expr(p
, node
->u
.e
.expr
);
2384 p
= isl_printer_print_str(p
, ";");
2385 p
= isl_printer_end_line(p
);
2387 case isl_ast_node_error
:
2393 /* Print the for node "node" to "p".
2395 __isl_give isl_printer
*isl_ast_node_for_print(__isl_keep isl_ast_node
*node
,
2396 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2398 if (!node
|| !options
)
2400 if (node
->type
!= isl_ast_node_for
)
2401 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
2402 "not a for node", goto error
);
2403 p
= print_for_c(p
, node
, options
, 0, 0);
2404 isl_ast_print_options_free(options
);
2407 isl_ast_print_options_free(options
);
2408 isl_printer_free(p
);
2412 /* Print the if node "node" to "p".
2414 __isl_give isl_printer
*isl_ast_node_if_print(__isl_keep isl_ast_node
*node
,
2415 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2417 if (!node
|| !options
)
2419 if (node
->type
!= isl_ast_node_if
)
2420 isl_die(isl_ast_node_get_ctx(node
), isl_error_invalid
,
2421 "not an if node", goto error
);
2422 p
= print_if_c(p
, node
, options
, 1, 0);
2423 isl_ast_print_options_free(options
);
2426 isl_ast_print_options_free(options
);
2427 isl_printer_free(p
);
2431 /* Print "node" to "p".
2433 __isl_give isl_printer
*isl_ast_node_print(__isl_keep isl_ast_node
*node
,
2434 __isl_take isl_printer
*p
, __isl_take isl_ast_print_options
*options
)
2436 if (!options
|| !node
)
2438 p
= print_ast_node_c(p
, node
, options
, 0, 0);
2439 isl_ast_print_options_free(options
);
2442 isl_ast_print_options_free(options
);
2443 isl_printer_free(p
);
2447 /* Print "node" to "p".
2449 __isl_give isl_printer
*isl_printer_print_ast_node(__isl_take isl_printer
*p
,
2450 __isl_keep isl_ast_node
*node
)
2453 isl_ast_print_options
*options
;
2458 format
= isl_printer_get_output_format(p
);
2460 case ISL_FORMAT_ISL
:
2461 p
= print_ast_node_isl(p
, node
);
2464 options
= isl_ast_print_options_alloc(isl_printer_get_ctx(p
));
2465 p
= isl_ast_node_print(node
, p
, options
);
2468 isl_die(isl_printer_get_ctx(p
), isl_error_unsupported
,
2469 "output format not supported for ast_node",
2470 return isl_printer_free(p
));
2476 /* Print the list of nodes "list" to "p".
2478 __isl_give isl_printer
*isl_ast_node_list_print(
2479 __isl_keep isl_ast_node_list
*list
, __isl_take isl_printer
*p
,
2480 __isl_keep isl_ast_print_options
*options
)
2484 if (!p
|| !list
|| !options
)
2485 return isl_printer_free(p
);
2487 for (i
= 0; i
< list
->n
; ++i
)
2488 p
= print_ast_node_c(p
, list
->p
[i
], options
, 1, 1);
2493 #define ISL_AST_MACRO_FLOORD (1 << 0)
2494 #define ISL_AST_MACRO_MIN (1 << 1)
2495 #define ISL_AST_MACRO_MAX (1 << 2)
2496 #define ISL_AST_MACRO_ALL (ISL_AST_MACRO_FLOORD | \
2497 ISL_AST_MACRO_MIN | \
2500 /* If "expr" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2501 * then set the corresponding bit in "macros".
2503 static int ast_expr_required_macros(__isl_keep isl_ast_expr
*expr
, int macros
)
2507 if (macros
== ISL_AST_MACRO_ALL
)
2510 if (expr
->type
!= isl_ast_expr_op
)
2513 if (expr
->u
.op
.op
== isl_ast_op_min
)
2514 macros
|= ISL_AST_MACRO_MIN
;
2515 if (expr
->u
.op
.op
== isl_ast_op_max
)
2516 macros
|= ISL_AST_MACRO_MAX
;
2517 if (expr
->u
.op
.op
== isl_ast_op_fdiv_q
)
2518 macros
|= ISL_AST_MACRO_FLOORD
;
2520 for (i
= 0; i
< expr
->u
.op
.n_arg
; ++i
)
2521 macros
= ast_expr_required_macros(expr
->u
.op
.args
[i
], macros
);
2526 static int ast_node_list_required_macros(__isl_keep isl_ast_node_list
*list
,
2529 /* If "node" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2530 * then set the corresponding bit in "macros".
2532 static int ast_node_required_macros(__isl_keep isl_ast_node
*node
, int macros
)
2534 if (macros
== ISL_AST_MACRO_ALL
)
2537 switch (node
->type
) {
2538 case isl_ast_node_for
:
2539 macros
= ast_expr_required_macros(node
->u
.f
.init
, macros
);
2540 if (!node
->u
.f
.degenerate
) {
2541 macros
= ast_expr_required_macros(node
->u
.f
.cond
,
2543 macros
= ast_expr_required_macros(node
->u
.f
.inc
,
2546 macros
= ast_node_required_macros(node
->u
.f
.body
, macros
);
2548 case isl_ast_node_if
:
2549 macros
= ast_expr_required_macros(node
->u
.i
.guard
, macros
);
2550 macros
= ast_node_required_macros(node
->u
.i
.then
, macros
);
2551 if (node
->u
.i
.else_node
)
2552 macros
= ast_node_required_macros(node
->u
.i
.else_node
,
2555 case isl_ast_node_block
:
2556 macros
= ast_node_list_required_macros(node
->u
.b
.children
,
2559 case isl_ast_node_mark
:
2560 macros
= ast_node_required_macros(node
->u
.m
.node
, macros
);
2562 case isl_ast_node_user
:
2563 macros
= ast_expr_required_macros(node
->u
.e
.expr
, macros
);
2565 case isl_ast_node_error
:
2572 /* If "list" contains an isl_ast_op_min, isl_ast_op_max or isl_ast_op_fdiv_q
2573 * then set the corresponding bit in "macros".
2575 static int ast_node_list_required_macros(__isl_keep isl_ast_node_list
*list
,
2580 for (i
= 0; i
< list
->n
; ++i
)
2581 macros
= ast_node_required_macros(list
->p
[i
], macros
);
2586 /* Data structure for keeping track of whether a macro definition
2587 * for a given type has already been printed.
2588 * The value is zero if no definition has been printed and non-zero otherwise.
2590 struct isl_ast_op_printed
{
2591 char printed
[isl_ast_op_last
+ 1];
2594 /* Create an empty struct isl_ast_op_printed.
2596 static void *create_printed(isl_ctx
*ctx
)
2598 return isl_calloc_type(ctx
, struct isl_ast_op_printed
);
2601 /* Free a struct isl_ast_op_printed.
2603 static void free_printed(void *user
)
2608 /* Ensure that "p" has an isl_ast_op_printed note identified by "id".
2610 static __isl_give isl_printer
*alloc_printed(__isl_take isl_printer
*p
,
2611 __isl_keep isl_id
*id
)
2613 return alloc_note(p
, id
, &create_printed
, &free_printed
);
2616 /* Create an identifier that is used to store
2617 * an isl_ast_op_printed note.
2619 static __isl_give isl_id
*printed_id(isl_ctx
*ctx
)
2621 return isl_id_alloc(ctx
, "isl_ast_op_type_printed", NULL
);
2624 /* Did the user specify that a macro definition should only be
2625 * printed once and has a macro definition for "type" already
2626 * been printed to "p"?
2627 * If definitions should only be printed once, but a definition
2628 * for "p" has not yet been printed, then mark it as having been
2629 * printed so that it will not printed again.
2630 * The actual printing is taken care of by the caller.
2632 static isl_bool
already_printed_once(__isl_keep isl_printer
*p
,
2633 enum isl_ast_op_type type
)
2637 struct isl_ast_op_printed
*printed
;
2640 return isl_bool_error
;
2642 ctx
= isl_printer_get_ctx(p
);
2643 if (!isl_options_get_ast_print_macro_once(ctx
))
2644 return isl_bool_false
;
2646 if (type
> isl_ast_op_last
)
2647 isl_die(isl_printer_get_ctx(p
), isl_error_invalid
,
2648 "invalid type", return isl_bool_error
);
2650 id
= printed_id(isl_printer_get_ctx(p
));
2651 p
= alloc_printed(p
, id
);
2652 printed
= get_note(p
, id
);
2655 return isl_bool_error
;
2657 if (printed
->printed
[type
])
2658 return isl_bool_true
;
2660 printed
->printed
[type
] = 1;
2661 return isl_bool_false
;
2664 /* Print a macro definition for the operator "type".
2666 * If the user has specified that a macro definition should
2667 * only be printed once to any given printer and if the macro definition
2668 * has already been printed to "p", then do not print the definition.
2670 __isl_give isl_printer
*isl_ast_op_type_print_macro(
2671 enum isl_ast_op_type type
, __isl_take isl_printer
*p
)
2675 skip
= already_printed_once(p
, type
);
2677 return isl_printer_free(p
);
2682 case isl_ast_op_min
:
2683 p
= isl_printer_start_line(p
);
2684 p
= isl_printer_print_str(p
, "#define ");
2685 p
= isl_printer_print_str(p
, get_op_str_c(p
, type
));
2686 p
= isl_printer_print_str(p
,
2687 "(x,y) ((x) < (y) ? (x) : (y))");
2688 p
= isl_printer_end_line(p
);
2690 case isl_ast_op_max
:
2691 p
= isl_printer_start_line(p
);
2692 p
= isl_printer_print_str(p
, "#define ");
2693 p
= isl_printer_print_str(p
, get_op_str_c(p
, type
));
2694 p
= isl_printer_print_str(p
,
2695 "(x,y) ((x) > (y) ? (x) : (y))");
2696 p
= isl_printer_end_line(p
);
2698 case isl_ast_op_fdiv_q
:
2699 p
= isl_printer_start_line(p
);
2700 p
= isl_printer_print_str(p
, "#define ");
2701 p
= isl_printer_print_str(p
, get_op_str_c(p
, type
));
2702 p
= isl_printer_print_str(p
,
2704 "(((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))");
2705 p
= isl_printer_end_line(p
);
2714 /* Call "fn" for each type of operation represented in the "macros"
2717 static isl_stat
foreach_ast_op_type(int macros
,
2718 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2720 if (macros
& ISL_AST_MACRO_MIN
&& fn(isl_ast_op_min
, user
) < 0)
2721 return isl_stat_error
;
2722 if (macros
& ISL_AST_MACRO_MAX
&& fn(isl_ast_op_max
, user
) < 0)
2723 return isl_stat_error
;
2724 if (macros
& ISL_AST_MACRO_FLOORD
&& fn(isl_ast_op_fdiv_q
, user
) < 0)
2725 return isl_stat_error
;
2730 /* Call "fn" for each type of operation that appears in "expr"
2731 * and that requires a macro definition.
2733 isl_stat
isl_ast_expr_foreach_ast_op_type(__isl_keep isl_ast_expr
*expr
,
2734 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2739 return isl_stat_error
;
2741 macros
= ast_expr_required_macros(expr
, 0);
2742 return foreach_ast_op_type(macros
, fn
, user
);
2745 /* Call "fn" for each type of operation that appears in "node"
2746 * and that requires a macro definition.
2748 isl_stat
isl_ast_node_foreach_ast_op_type(__isl_keep isl_ast_node
*node
,
2749 isl_stat (*fn
)(enum isl_ast_op_type type
, void *user
), void *user
)
2754 return isl_stat_error
;
2756 macros
= ast_node_required_macros(node
, 0);
2757 return foreach_ast_op_type(macros
, fn
, user
);
2760 static isl_stat
ast_op_type_print_macro(enum isl_ast_op_type type
, void *user
)
2762 isl_printer
**p
= user
;
2764 *p
= isl_ast_op_type_print_macro(type
, *p
);
2769 /* Print macro definitions for all the macros used in the result
2770 * of printing "expr".
2772 __isl_give isl_printer
*isl_ast_expr_print_macros(
2773 __isl_keep isl_ast_expr
*expr
, __isl_take isl_printer
*p
)
2775 if (isl_ast_expr_foreach_ast_op_type(expr
,
2776 &ast_op_type_print_macro
, &p
) < 0)
2777 return isl_printer_free(p
);
2781 /* Print macro definitions for all the macros used in the result
2782 * of printing "node".
2784 __isl_give isl_printer
*isl_ast_node_print_macros(
2785 __isl_keep isl_ast_node
*node
, __isl_take isl_printer
*p
)
2787 if (isl_ast_node_foreach_ast_op_type(node
,
2788 &ast_op_type_print_macro
, &p
) < 0)
2789 return isl_printer_free(p
);
2793 /* Return a string containing C code representing this isl_ast_expr.
2795 __isl_give
char *isl_ast_expr_to_C_str(__isl_keep isl_ast_expr
*expr
)
2803 p
= isl_printer_to_str(isl_ast_expr_get_ctx(expr
));
2804 p
= isl_printer_set_output_format(p
, ISL_FORMAT_C
);
2805 p
= isl_printer_print_ast_expr(p
, expr
);
2807 str
= isl_printer_get_str(p
);
2809 isl_printer_free(p
);
2814 /* Return a string containing C code representing this isl_ast_node.
2816 __isl_give
char *isl_ast_node_to_C_str(__isl_keep isl_ast_node
*node
)
2824 p
= isl_printer_to_str(isl_ast_node_get_ctx(node
));
2825 p
= isl_printer_set_output_format(p
, ISL_FORMAT_C
);
2826 p
= isl_printer_print_ast_node(p
, node
);
2828 str
= isl_printer_get_str(p
);
2830 isl_printer_free(p
);