break up access relations into may_read/may_write/must_write in interface
[pet.git] / include / pet.h
blob8c904077db183d6ee09d6da7057cb3ec8fa0c2f0
1 #ifndef PET_H
2 #define PET_H
4 #include <isl/aff.h>
5 #include <isl/arg.h>
6 #include <isl/ast_build.h>
7 #include <isl/set.h>
8 #include <isl/map.h>
9 #include <isl/union_map.h>
10 #include <isl/printer.h>
11 #include <isl/id_to_ast_expr.h>
12 #include <isl/id_to_pw_aff.h>
14 #if defined(__cplusplus)
15 extern "C" {
16 #endif
18 struct pet_options;
19 ISL_ARG_DECL(pet_options, struct pet_options, pet_options_args)
21 /* If autodetect is set, any valid scop is extracted.
22 * Otherwise, the scop needs to be delimited by pragmas.
24 int pet_options_set_autodetect(isl_ctx *ctx, int val);
25 int pet_options_get_autodetect(isl_ctx *ctx);
27 int pet_options_set_detect_conditional_assignment(isl_ctx *ctx, int val);
28 int pet_options_get_detect_conditional_assignment(isl_ctx *ctx);
30 /* If encapsulate-dynamic-control is set, then any dynamic control
31 * in the input program will be encapsulated in macro statements.
32 * This means in particular that no statements with arguments
33 * will be created.
35 int pet_options_set_encapsulate_dynamic_control(isl_ctx *ctx, int val);
36 int pet_options_get_encapsulate_dynamic_control(isl_ctx *ctx);
38 #define PET_OVERFLOW_AVOID 0
39 #define PET_OVERFLOW_IGNORE 1
40 int pet_options_set_signed_overflow(isl_ctx *ctx, int val);
41 int pet_options_get_signed_overflow(isl_ctx *ctx);
43 struct pet_loc;
44 typedef struct pet_loc pet_loc;
46 /* Return an additional reference to "loc". */
47 __isl_give pet_loc *pet_loc_copy(__isl_keep pet_loc *loc);
48 /* Free a reference to "loc". */
49 pet_loc *pet_loc_free(__isl_take pet_loc *loc);
51 /* Return the offset in the input file of the start of "loc". */
52 unsigned pet_loc_get_start(__isl_keep pet_loc *loc);
53 /* Return the offset in the input file of the character after "loc". */
54 unsigned pet_loc_get_end(__isl_keep pet_loc *loc);
55 /* Return the line number of a line within the "loc" region. */
56 int pet_loc_get_line(__isl_keep pet_loc *loc);
57 /* Return the indentation of the "loc" region. */
58 __isl_keep const char *pet_loc_get_indent(__isl_keep pet_loc *loc);
60 enum pet_expr_type {
61 pet_expr_error = -1,
62 pet_expr_access,
63 pet_expr_call,
64 pet_expr_cast,
65 pet_expr_int,
66 pet_expr_double,
67 pet_expr_op
70 enum pet_op_type {
71 /* only compound assignments operators before assignment */
72 pet_op_add_assign,
73 pet_op_sub_assign,
74 pet_op_mul_assign,
75 pet_op_div_assign,
76 pet_op_assign,
77 pet_op_add,
78 pet_op_sub,
79 pet_op_mul,
80 pet_op_div,
81 pet_op_mod,
82 pet_op_shl,
83 pet_op_shr,
84 pet_op_eq,
85 pet_op_ne,
86 pet_op_le,
87 pet_op_ge,
88 pet_op_lt,
89 pet_op_gt,
90 pet_op_minus,
91 pet_op_post_inc,
92 pet_op_post_dec,
93 pet_op_pre_inc,
94 pet_op_pre_dec,
95 pet_op_address_of,
96 pet_op_assume,
97 pet_op_kill,
98 pet_op_and,
99 pet_op_xor,
100 pet_op_or,
101 pet_op_not,
102 pet_op_land,
103 pet_op_lor,
104 pet_op_lnot,
105 pet_op_cond,
106 pet_op_last
109 /* Index into the pet_expr->args array when pet_expr->type == pet_expr_unary
111 enum pet_un_arg_type {
112 pet_un_arg
115 /* Indices into the pet_expr->args array when
116 * pet_expr->type == pet_expr_binary
118 enum pet_bin_arg_type {
119 pet_bin_lhs,
120 pet_bin_rhs
123 /* Indices into the pet_expr->args array when
124 * pet_expr->type == pet_expr_ternary
126 enum pet_ter_arg_type {
127 pet_ter_cond,
128 pet_ter_true,
129 pet_ter_false
132 struct pet_expr;
133 typedef struct pet_expr pet_expr;
135 /* Return an additional reference to "expr". */
136 __isl_give pet_expr *pet_expr_copy(__isl_keep pet_expr *expr);
137 /* Free a reference to "expr". */
138 __isl_null pet_expr *pet_expr_free(__isl_take pet_expr *expr);
140 /* Return the isl_ctx in which "expr" was created. */
141 isl_ctx *pet_expr_get_ctx(__isl_keep pet_expr *expr);
143 /* Return the type of "expr". */
144 enum pet_expr_type pet_expr_get_type(__isl_keep pet_expr *expr);
145 /* Return the number of arguments of "expr". */
146 int pet_expr_get_n_arg(__isl_keep pet_expr *expr);
147 /* Set the number of arguments of "expr" to "n". */
148 __isl_give pet_expr *pet_expr_set_n_arg(__isl_take pet_expr *expr, int n);
149 /* Return the argument of "expr" at position "pos". */
150 __isl_give pet_expr *pet_expr_get_arg(__isl_keep pet_expr *expr, int pos);
151 /* Replace the argument of "expr" at position "pos" by "arg". */
152 __isl_give pet_expr *pet_expr_set_arg(__isl_take pet_expr *expr, int pos,
153 __isl_take pet_expr *arg);
155 /* Return the operation type of operation expression "expr". */
156 enum pet_op_type pet_expr_op_get_type(__isl_keep pet_expr *expr);
157 /* Replace the operation type of operation expression "expr" by "type". */
158 __isl_give pet_expr *pet_expr_op_set_type(__isl_take pet_expr *expr,
159 enum pet_op_type type);
161 /* Construct a (read) access pet_expr from an index expression. */
162 __isl_give pet_expr *pet_expr_from_index(__isl_take isl_multi_pw_aff *index);
164 /* Does "expr" represent an affine expression? */
165 int pet_expr_is_affine(__isl_keep pet_expr *expr);
166 /* Does the access expression "expr" read the accessed elements? */
167 int pet_expr_access_is_read(__isl_keep pet_expr *expr);
168 /* Does the access expression "expr" write to the accessed elements? */
169 int pet_expr_access_is_write(__isl_keep pet_expr *expr);
170 /* Mark "expr" as a read dependening on "read". */
171 __isl_give pet_expr *pet_expr_access_set_read(__isl_take pet_expr *expr,
172 int read);
173 /* Mark "expr" as a write dependening on "write". */
174 __isl_give pet_expr *pet_expr_access_set_write(__isl_take pet_expr *expr,
175 int write);
176 /* Return the reference identifier of access expression "expr". */
177 __isl_give isl_id *pet_expr_access_get_ref_id(__isl_keep pet_expr *expr);
178 /* Replace the reference identifier of access expression "expr" by "ref_id". */
179 __isl_give pet_expr *pet_expr_access_set_ref_id(__isl_take pet_expr *expr,
180 __isl_take isl_id *ref_id);
181 /* Return the identifier of the outer array accessed by "expr". */
182 __isl_give isl_id *pet_expr_access_get_id(__isl_keep pet_expr *expr);
183 /* Return the index expression of access expression "expr". */
184 __isl_give isl_multi_pw_aff *pet_expr_access_get_index(
185 __isl_keep pet_expr *expr);
187 /* Return the potential read access relation of access expression "expr". */
188 __isl_give isl_union_map *pet_expr_access_get_may_read(
189 __isl_keep pet_expr *expr);
190 /* Return the potential write access relation of access expression "expr". */
191 __isl_give isl_union_map *pet_expr_access_get_may_write(
192 __isl_keep pet_expr *expr);
193 /* Return the definite write access relation of access expression "expr". */
194 __isl_give isl_union_map *pet_expr_access_get_must_write(
195 __isl_keep pet_expr *expr);
196 /* Return the argument dependent potential read access relation of "expr". */
197 __isl_give isl_union_map *pet_expr_access_get_dependent_may_read(
198 __isl_keep pet_expr *expr);
199 /* Return the argument dependent potential write access relation of "expr". */
200 __isl_give isl_union_map *pet_expr_access_get_dependent_may_write(
201 __isl_keep pet_expr *expr);
202 /* Return the argument dependent definite write access relation of "expr". */
203 __isl_give isl_union_map *pet_expr_access_get_dependent_must_write(
204 __isl_keep pet_expr *expr);
205 /* Return the tagged potential read access relation of access "expr". */
206 __isl_give isl_union_map *pet_expr_access_get_tagged_may_read(
207 __isl_keep pet_expr *expr);
208 /* Return the tagged potential write access relation of access "expr". */
209 __isl_give isl_union_map *pet_expr_access_get_tagged_may_write(
210 __isl_keep pet_expr *expr);
212 /* Return the name of the function called by "expr". */
213 __isl_keep const char *pet_expr_call_get_name(__isl_keep pet_expr *expr);
214 /* Replace the name of the function called by "expr" by "name". */
215 __isl_give pet_expr *pet_expr_call_set_name(__isl_take pet_expr *expr,
216 __isl_keep const char *name);
218 /* Replace the type of the cast performed by "expr" by "name". */
219 __isl_give pet_expr *pet_expr_cast_set_type_name(__isl_take pet_expr *expr,
220 __isl_keep const char *name);
222 /* Return the value of the integer represented by "expr". */
223 __isl_give isl_val *pet_expr_int_get_val(__isl_keep pet_expr *expr);
224 /* Replace the value of the integer represented by "expr" by "v". */
225 __isl_give pet_expr *pet_expr_int_set_val(__isl_take pet_expr *expr,
226 __isl_take isl_val *v);
228 /* Return a string representation of the double expression "expr". */
229 __isl_give char *pet_expr_double_get_str(__isl_keep pet_expr *expr);
230 /* Replace value and string representation of the double expression "expr" */
231 __isl_give pet_expr *pet_expr_double_set(__isl_take pet_expr *expr,
232 double d, __isl_keep const char *s);
234 /* Call "fn" on each of the subexpressions of "expr" of type pet_expr_access. */
235 int pet_expr_foreach_access_expr(__isl_keep pet_expr *expr,
236 int (*fn)(__isl_keep pet_expr *expr, void *user), void *user);
237 /* Call "fn" on each of the subexpressions of "expr" of type pet_expr_call. */
238 int pet_expr_foreach_call_expr(__isl_keep pet_expr *expr,
239 int (*fn)(__isl_keep pet_expr *expr, void *user), void *user);
241 struct pet_context;
242 typedef struct pet_context pet_context;
244 /* Create a context with the given domain. */
245 __isl_give pet_context *pet_context_alloc(__isl_take isl_set *domain);
246 /* Return an additional reference to "pc". */
247 __isl_give pet_context *pet_context_copy(__isl_keep pet_context *pc);
248 /* Free a reference to "pc". */
249 __isl_null pet_context *pet_context_free(__isl_take pet_context *pc);
251 /* Return the isl_ctx in which "pc" was created. */
252 isl_ctx *pet_context_get_ctx(__isl_keep pet_context *pc);
254 /* Extract an affine expression defined over the domain of "pc" from "expr"
255 * or return NaN.
257 __isl_give isl_pw_aff *pet_expr_extract_affine(__isl_keep pet_expr *expr,
258 __isl_keep pet_context *pc);
260 void pet_expr_dump(__isl_keep pet_expr *expr);
262 enum pet_tree_type {
263 pet_tree_error = -1,
264 pet_tree_expr,
265 pet_tree_block,
266 pet_tree_break,
267 pet_tree_continue,
268 pet_tree_decl, /* A declaration without initialization */
269 pet_tree_decl_init, /* A declaration with initialization */
270 pet_tree_if, /* An if without an else branch */
271 pet_tree_if_else, /* An if with an else branch */
272 pet_tree_for,
273 pet_tree_infinite_loop,
274 pet_tree_while
277 struct pet_tree;
278 typedef struct pet_tree pet_tree;
280 /* Return the isl_ctx in which "tree" was created. */
281 isl_ctx *pet_tree_get_ctx(__isl_keep pet_tree *tree);
283 /* Return an additional reference to "tree". */
284 __isl_give pet_tree *pet_tree_copy(__isl_keep pet_tree *tree);
285 /* Free a reference to "tree". */
286 __isl_null pet_tree *pet_tree_free(__isl_take pet_tree *tree);
288 /* Return the location of "tree". */
289 __isl_give pet_loc *pet_tree_get_loc(__isl_keep pet_tree *tree);
291 /* Return the type of "tree". */
292 enum pet_tree_type pet_tree_get_type(__isl_keep pet_tree *tree);
294 /* Return the expression of the expression tree "tree". */
295 __isl_give pet_expr *pet_tree_expr_get_expr(__isl_keep pet_tree *tree);
297 /* Return the number of children of the block tree "tree". */
298 int pet_tree_block_n_child(__isl_keep pet_tree *tree);
299 /* Return child "pos" of the block tree "tree". */
300 __isl_give pet_tree *pet_tree_block_get_child(__isl_keep pet_tree *tree,
301 int pos);
303 /* Is "tree" a declaration (with or without initialization)? */
304 int pet_tree_is_decl(__isl_keep pet_tree *tree);
305 /* Return the variable declared by the declaration tree "tree". */
306 __isl_give pet_expr *pet_tree_decl_get_var(__isl_keep pet_tree *tree);
307 /* Return the initial value of the pet_tree_decl_init tree "tree". */
308 __isl_give pet_expr *pet_tree_decl_get_init(__isl_keep pet_tree *tree);
310 /* Return the condition of the if tree "tree". */
311 __isl_give pet_expr *pet_tree_if_get_cond(__isl_keep pet_tree *tree);
312 /* Return the then branch of the if tree "tree". */
313 __isl_give pet_tree *pet_tree_if_get_then(__isl_keep pet_tree *tree);
314 /* Return the else branch of the if tree with else branch "tree". */
315 __isl_give pet_tree *pet_tree_if_get_else(__isl_keep pet_tree *tree);
317 /* Is "tree" a for loop, a while loop or an infinite loop? */
318 int pet_tree_is_loop(__isl_keep pet_tree *tree);
319 /* Return the induction variable of the for loop "tree" */
320 __isl_give pet_expr *pet_tree_loop_get_var(__isl_keep pet_tree *tree);
321 /* Return the initial value of the induction variable of the for loop "tree" */
322 __isl_give pet_expr *pet_tree_loop_get_init(__isl_keep pet_tree *tree);
323 /* Return the condition of the loop tree "tree" */
324 __isl_give pet_expr *pet_tree_loop_get_cond(__isl_keep pet_tree *tree);
325 /* Return the induction variable of the for loop "tree" */
326 __isl_give pet_expr *pet_tree_loop_get_inc(__isl_keep pet_tree *tree);
327 /* Return the body of the loop tree "tree" */
328 __isl_give pet_tree *pet_tree_loop_get_body(__isl_keep pet_tree *tree);
330 /* Call "fn" on each top-level expression in the nodes of "tree" */
331 int pet_tree_foreach_expr(__isl_keep pet_tree *tree,
332 int (*fn)(__isl_keep pet_expr *expr, void *user), void *user);
333 /* Call "fn" on each access subexpression in the nodes of "tree" */
334 int pet_tree_foreach_access_expr(__isl_keep pet_tree *tree,
335 int (*fn)(__isl_keep pet_expr *expr, void *user), void *user);
337 void pet_tree_dump(__isl_keep pet_tree *tree);
339 /* "loc" represents the region of the source code that is represented
340 * by this statement.
342 * If the statement has arguments, i.e., n_arg != 0, then
343 * "domain" is a wrapped map, mapping the iteration domain
344 * to the values of the arguments for which this statement
345 * is executed.
346 * Otherwise, it is simply the iteration domain.
348 * If one of the arguments is an access expression that accesses
349 * more than one element for a given iteration, then the constraints
350 * on the value of this argument (encoded in "domain") should be satisfied
351 * for all of those accessed elements.
353 struct pet_stmt {
354 pet_loc *loc;
355 isl_set *domain;
356 isl_map *schedule;
357 pet_tree *body;
359 unsigned n_arg;
360 pet_expr **args;
363 /* Return the iteration space of "stmt". */
364 __isl_give isl_space *pet_stmt_get_space(struct pet_stmt *stmt);
366 /* Is "stmt" an assignment statement? */
367 int pet_stmt_is_assign(struct pet_stmt *stmt);
368 /* Is "stmt" a kill statement? */
369 int pet_stmt_is_kill(struct pet_stmt *stmt);
371 /* pet_stmt_build_ast_exprs is currently limited to only handle
372 * some forms of data dependent accesses.
373 * If pet_stmt_can_build_ast_exprs returns 1, then pet_stmt_build_ast_exprs
374 * can safely be called on "stmt".
376 int pet_stmt_can_build_ast_exprs(struct pet_stmt *stmt);
377 /* Construct an associative array from reference identifiers of
378 * access expressions in "stmt" to the corresponding isl_ast_expr.
379 * Each index expression is first transformed through "fn_index"
380 * (if not NULL). Then an AST expression is generated using "build".
381 * Finally, the AST expression is transformed using "fn_expr"
382 * (if not NULL).
384 __isl_give isl_id_to_ast_expr *pet_stmt_build_ast_exprs(struct pet_stmt *stmt,
385 __isl_keep isl_ast_build *build,
386 __isl_give isl_multi_pw_aff *(*fn_index)(
387 __isl_take isl_multi_pw_aff *mpa, __isl_keep isl_id *id,
388 void *user), void *user_index,
389 __isl_give isl_ast_expr *(*fn_expr)(__isl_take isl_ast_expr *expr,
390 __isl_keep isl_id *id, void *user), void *user_expr);
392 /* Print "stmt" to "p".
394 * The access expressions in "stmt" are replaced by the isl_ast_expr
395 * associated to its reference identifier in "ref2expr".
397 __isl_give isl_printer *pet_stmt_print_body(struct pet_stmt *stmt,
398 __isl_take isl_printer *p, __isl_keep isl_id_to_ast_expr *ref2expr);
400 /* This structure represents a defined type.
401 * "name" is the name of the type, while "definition" is a string
402 * representation of its definition.
404 struct pet_type {
405 char *name;
406 char *definition;
409 /* context holds constraints on the parameter that ensure that
410 * this array has a valid (i.e., non-negative) size
412 * extent holds constraints on the indices
414 * value_bounds holds constraints on the elements of the array
415 * and may be NULL if no such constraints were specified by the user
417 * element_size is the size in bytes of each array element
418 * element_type is the type of the array elements.
419 * element_is_record is set if this type is a record type.
421 * live_out is set if the array appears in a live-out pragma
423 * if uniquely_defined is set then the array is written by a single access
424 * such that any element that is ever read
425 * is known to be assigned exactly once before the read
427 * declared is set if the array was declared somewhere inside the scop.
428 * exposed is set if the declared array is visible outside the scop.
430 struct pet_array {
431 isl_set *context;
432 isl_set *extent;
433 isl_set *value_bounds;
434 char *element_type;
435 int element_is_record;
436 int element_size;
437 int live_out;
438 int uniquely_defined;
439 int declared;
440 int exposed;
443 /* This structure represents an implication on a boolean filter.
444 * In particular, if the filter value of an element in the domain
445 * of "extension" is equal to "satisfied", then the filter values
446 * of the corresponding images in "extension" are also equal
447 * to "satisfied".
449 struct pet_implication {
450 int satisfied;
451 isl_map *extension;
454 /* This structure represents an independence implied by a for loop
455 * that is marked as independent in the source code.
456 * "filter" contains pairs of statement instances that are guaranteed
457 * not to be dependent on each other based on the independent for loop,
458 * assuming that no dependences carried by this loop are implied
459 * by the variables in "local".
460 * "local" contains the variables that are local to the loop that was
461 * marked independent.
463 struct pet_independence {
464 isl_union_map *filter;
465 isl_union_set *local;
468 /* "loc" represents the region of the source code that is represented
469 * by this scop.
470 * If the scop was detected based on scop and endscop pragmas, then
471 * the lines containing these pragmas are included in this region.
472 * In the final result, the context describes the set of parameter values
473 * for which the scop can be executed.
474 * During the construction of the pet_scop, the context lives in a set space
475 * where each dimension refers to an outer loop.
476 * context_value describes assignments to the parameters (if any)
477 * outside of the scop.
479 * The n_type types define types that may be referenced from by the arrays.
481 * The n_implication implications describe implications on boolean filters.
483 * The n_independence independences describe independences implied
484 * by for loops that are marked independent in the source code.
486 struct pet_scop {
487 pet_loc *loc;
489 isl_set *context;
490 isl_set *context_value;
492 int n_type;
493 struct pet_type **types;
495 int n_array;
496 struct pet_array **arrays;
498 int n_stmt;
499 struct pet_stmt **stmts;
501 int n_implication;
502 struct pet_implication **implications;
504 int n_independence;
505 struct pet_independence **independences;
508 /* Return a textual representation of the operator. */
509 const char *pet_op_str(enum pet_op_type op);
510 int pet_op_is_inc_dec(enum pet_op_type op);
512 /* Extract a pet_scop from a C source file.
513 * If function is not NULL, then the pet_scop is extracted from
514 * a function with that name.
516 struct pet_scop *pet_scop_extract_from_C_source(isl_ctx *ctx,
517 const char *filename, const char *function);
519 /* Transform the C source file "input" by rewriting each scop
520 * When autodetecting scops, at most one scop per function is rewritten.
521 * The transformed C code is written to "output".
523 int pet_transform_C_source(isl_ctx *ctx, const char *input, FILE *output,
524 __isl_give isl_printer *(*transform)(__isl_take isl_printer *p,
525 struct pet_scop *scop, void *user), void *user);
526 /* Given a scop and a printer passed to a pet_transform_C_source callback,
527 * print the original corresponding code to the printer.
529 __isl_give isl_printer *pet_scop_print_original(struct pet_scop *scop,
530 __isl_take isl_printer *p);
532 /* Update all isl_sets and isl_maps such that they all have the same
533 * parameters in the same order.
535 struct pet_scop *pet_scop_align_params(struct pet_scop *scop);
537 /* Does "scop" contain any data dependent accesses? */
538 int pet_scop_has_data_dependent_accesses(struct pet_scop *scop);
539 /* Does "scop" contain any data dependent conditions? */
540 int pet_scop_has_data_dependent_conditions(struct pet_scop *scop);
541 /* pet_stmt_build_ast_exprs is currently limited to only handle
542 * some forms of data dependent accesses.
543 * If pet_scop_can_build_ast_exprs returns 1, then pet_stmt_build_ast_exprs
544 * can safely be called on all statements in the scop.
546 int pet_scop_can_build_ast_exprs(struct pet_scop *scop);
548 void pet_scop_dump(struct pet_scop *scop);
549 struct pet_scop *pet_scop_free(struct pet_scop *scop);
551 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop);
552 /* Collect all potential read access relations. */
553 __isl_give isl_union_map *pet_scop_collect_may_reads(struct pet_scop *scop);
554 /* Collect all tagged potential read access relations. */
555 __isl_give isl_union_map *pet_scop_collect_tagged_may_reads(
556 struct pet_scop *scop);
557 /* Collect all potential write access relations. */
558 __isl_give isl_union_map *pet_scop_collect_may_writes(struct pet_scop *scop);
559 /* Collect all definite write access relations. */
560 __isl_give isl_union_map *pet_scop_collect_must_writes(struct pet_scop *scop);
561 /* Collect all tagged potential write access relations. */
562 __isl_give isl_union_map *pet_scop_collect_tagged_may_writes(
563 struct pet_scop *scop);
564 /* Collect all tagged definite write access relations. */
565 __isl_give isl_union_map *pet_scop_collect_tagged_must_writes(
566 struct pet_scop *scop);
567 /* Collect all definite kill access relations. */
568 __isl_give isl_union_map *pet_scop_collect_must_kills(struct pet_scop *scop);
569 /* Collect all tagged definite kill access relations. */
570 __isl_give isl_union_map *pet_scop_collect_tagged_must_kills(
571 struct pet_scop *scop);
572 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop);
574 /* Compute a mapping from all outermost arrays (of structs) in scop
575 * to their innermost members.
577 __isl_give isl_union_map *pet_scop_compute_outer_to_inner(
578 struct pet_scop *scop);
579 /* Compute a mapping from all outermost arrays (of structs) in scop
580 * to their members, including the outermost arrays themselves.
582 __isl_give isl_union_map *pet_scop_compute_outer_to_any(struct pet_scop *scop);
584 #if defined(__cplusplus)
586 #endif
588 #endif