2 * Copyright 2011 Leiden University. All rights reserved.
3 * Copyright 2012-2014 Ecole Normale Superieure. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials provided
15 * with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY LEIDEN UNIVERSITY ''AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LEIDEN UNIVERSITY OR
21 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * The views and conclusions contained in the software and documentation
30 * are those of the authors and should not be interpreted as
31 * representing official policies, either expressed or implied, of
36 #include <isl/constraint.h>
37 #include <isl/union_set.h>
44 #include "value_bounds.h"
46 /* pet_scop with extra information that is used during parsing and printing.
48 * In particular, we keep track of conditions under which we want
49 * to skip the rest of the current loop iteration (skip[pet_skip_now])
50 * and of conditions under which we want to skip subsequent
51 * loop iterations (skip[pet_skip_later]).
53 * The conditions are represented as index expressions defined
54 * over a zero-dimensional domain. The index expression is either
55 * a boolean affine expression or an access to a variable, which
56 * is assumed to attain values zero and one. The condition holds
57 * if the variable has value one or if the affine expression
58 * has value one (typically for only part of the parameter space).
60 * A missing condition (skip[type] == NULL) means that we don't want
63 * Additionally, we keep track of the original input file
64 * inside pet_transform_C_source.
69 isl_multi_pw_aff
*skip
[2];
73 /* Construct a pet_stmt with given line number and statement
74 * number from a pet_expr.
75 * The initial iteration domain is the zero-dimensional universe.
76 * The name of the domain is given by "label" if it is non-NULL.
77 * Otherwise, the name is constructed as S_<id>.
78 * The domains of all access relations are modified to refer
79 * to the statement iteration domain.
81 struct pet_stmt
*pet_stmt_from_pet_expr(int line
, __isl_take isl_id
*label
,
82 int id
, __isl_take pet_expr
*expr
)
84 struct pet_stmt
*stmt
;
89 isl_multi_pw_aff
*add_name
;
95 ctx
= pet_expr_get_ctx(expr
);
96 stmt
= isl_calloc_type(ctx
, struct pet_stmt
);
100 dim
= isl_space_set_alloc(ctx
, 0, 0);
102 dim
= isl_space_set_tuple_id(dim
, isl_dim_set
, label
);
104 snprintf(name
, sizeof(name
), "S_%d", id
);
105 dim
= isl_space_set_tuple_name(dim
, isl_dim_set
, name
);
107 dom
= isl_set_universe(isl_space_copy(dim
));
108 sched
= isl_map_from_domain(isl_set_copy(dom
));
110 dim
= isl_space_from_domain(dim
);
111 add_name
= isl_multi_pw_aff_zero(dim
);
112 expr
= pet_expr_update_domain(expr
, add_name
);
116 stmt
->schedule
= sched
;
119 if (!stmt
->domain
|| !stmt
->schedule
|| !stmt
->body
)
120 return pet_stmt_free(stmt
);
129 void *pet_stmt_free(struct pet_stmt
*stmt
)
136 isl_set_free(stmt
->domain
);
137 isl_map_free(stmt
->schedule
);
138 pet_expr_free(stmt
->body
);
140 for (i
= 0; i
< stmt
->n_arg
; ++i
)
141 pet_expr_free(stmt
->args
[i
]);
148 /* Return the iteration space of "stmt".
150 * If the statement has arguments, then stmt->domain is a wrapped map
151 * mapping the iteration domain to the values of the arguments
152 * for which this statement is executed.
153 * In this case, we need to extract the domain space of this wrapped map.
155 __isl_give isl_space
*pet_stmt_get_space(struct pet_stmt
*stmt
)
162 space
= isl_set_get_space(stmt
->domain
);
163 if (isl_space_is_wrapping(space
))
164 space
= isl_space_domain(isl_space_unwrap(space
));
169 static void stmt_dump(struct pet_stmt
*stmt
, int indent
)
176 fprintf(stderr
, "%*s%d\n", indent
, "", stmt
->line
);
177 fprintf(stderr
, "%*s", indent
, "");
178 isl_set_dump(stmt
->domain
);
179 fprintf(stderr
, "%*s", indent
, "");
180 isl_map_dump(stmt
->schedule
);
181 pet_expr_dump_with_indent(stmt
->body
, indent
);
182 for (i
= 0; i
< stmt
->n_arg
; ++i
)
183 pet_expr_dump_with_indent(stmt
->args
[i
], indent
+ 2);
186 void pet_stmt_dump(struct pet_stmt
*stmt
)
191 /* Allocate a new pet_type with the given "name" and "definition".
193 struct pet_type
*pet_type_alloc(isl_ctx
*ctx
, const char *name
,
194 const char *definition
)
196 struct pet_type
*type
;
198 type
= isl_alloc_type(ctx
, struct pet_type
);
202 type
->name
= strdup(name
);
203 type
->definition
= strdup(definition
);
205 if (!type
->name
|| !type
->definition
)
206 return pet_type_free(type
);
211 /* Free "type" and return NULL.
213 struct pet_type
*pet_type_free(struct pet_type
*type
)
219 free(type
->definition
);
225 struct pet_array
*pet_array_free(struct pet_array
*array
)
230 isl_set_free(array
->context
);
231 isl_set_free(array
->extent
);
232 isl_set_free(array
->value_bounds
);
233 free(array
->element_type
);
239 void pet_array_dump(struct pet_array
*array
)
244 isl_set_dump(array
->context
);
245 isl_set_dump(array
->extent
);
246 isl_set_dump(array
->value_bounds
);
247 fprintf(stderr
, "%s%s%s\n", array
->element_type
,
248 array
->element_is_record
? " element-is-record" : "",
249 array
->live_out
? " live-out" : "");
252 /* Alloc a pet_scop structure, with extra room for information that
253 * is only used during parsing.
255 struct pet_scop
*pet_scop_alloc(isl_ctx
*ctx
)
257 return &isl_calloc_type(ctx
, struct pet_scop_ext
)->scop
;
260 /* Construct a pet_scop with room for n statements.
262 static struct pet_scop
*scop_alloc(isl_ctx
*ctx
, int n
)
265 struct pet_scop
*scop
;
267 scop
= pet_scop_alloc(ctx
);
271 space
= isl_space_params_alloc(ctx
, 0);
272 scop
->context
= isl_set_universe(isl_space_copy(space
));
273 scop
->context_value
= isl_set_universe(space
);
274 scop
->stmts
= isl_calloc_array(ctx
, struct pet_stmt
*, n
);
275 if (!scop
->context
|| !scop
->stmts
)
276 return pet_scop_free(scop
);
283 struct pet_scop
*pet_scop_empty(isl_ctx
*ctx
)
285 return scop_alloc(ctx
, 0);
288 /* Update "context" with respect to the valid parameter values for "access".
290 static __isl_give isl_set
*access_extract_context(__isl_keep isl_map
*access
,
291 __isl_take isl_set
*context
)
293 context
= isl_set_intersect(context
,
294 isl_map_params(isl_map_copy(access
)));
298 /* Update "context" with respect to the valid parameter values for "expr".
300 * If "expr" represents a conditional operator, then a parameter value
301 * needs to be valid for the condition and for at least one of the
302 * remaining two arguments.
303 * If the condition is an affine expression, then we can be a bit more specific.
304 * The parameter then has to be valid for the second argument for
305 * non-zero accesses and valid for the third argument for zero accesses.
307 static __isl_give isl_set
*expr_extract_context(__isl_keep pet_expr
*expr
,
308 __isl_take isl_set
*context
)
312 if (expr
->type
== pet_expr_op
&& expr
->op
== pet_op_cond
) {
314 isl_set
*context1
, *context2
;
316 is_aff
= pet_expr_is_affine(expr
->args
[0]);
320 context
= expr_extract_context(expr
->args
[0], context
);
321 context1
= expr_extract_context(expr
->args
[1],
322 isl_set_copy(context
));
323 context2
= expr_extract_context(expr
->args
[2], context
);
329 access
= isl_map_copy(expr
->args
[0]->acc
.access
);
330 access
= isl_map_fix_si(access
, isl_dim_out
, 0, 0);
331 zero_set
= isl_map_params(access
);
332 context1
= isl_set_subtract(context1
,
333 isl_set_copy(zero_set
));
334 context2
= isl_set_intersect(context2
, zero_set
);
337 context
= isl_set_union(context1
, context2
);
338 context
= isl_set_coalesce(context
);
343 for (i
= 0; i
< expr
->n_arg
; ++i
)
344 context
= expr_extract_context(expr
->args
[i
], context
);
346 if (expr
->type
== pet_expr_access
)
347 context
= access_extract_context(expr
->acc
.access
, context
);
351 isl_set_free(context
);
355 /* Update "context" with respect to the valid parameter values for "stmt".
357 * If the statement is an assume statement with an affine expression,
358 * then intersect "context" with that expression.
359 * Otherwise, intersect "context" with the contexts of the expressions
362 static __isl_give isl_set
*stmt_extract_context(struct pet_stmt
*stmt
,
363 __isl_take isl_set
*context
)
367 if (pet_stmt_is_assume(stmt
) &&
368 pet_expr_is_affine(stmt
->body
->args
[0])) {
369 isl_multi_pw_aff
*index
;
373 index
= stmt
->body
->args
[0]->acc
.index
;
374 pa
= isl_multi_pw_aff_get_pw_aff(index
, 0);
375 cond
= isl_set_params(isl_pw_aff_non_zero_set(pa
));
376 return isl_set_intersect(context
, cond
);
379 for (i
= 0; i
< stmt
->n_arg
; ++i
)
380 context
= expr_extract_context(stmt
->args
[i
], context
);
382 context
= expr_extract_context(stmt
->body
, context
);
387 /* Construct a pet_scop that contains the given pet_stmt.
389 struct pet_scop
*pet_scop_from_pet_stmt(isl_ctx
*ctx
, struct pet_stmt
*stmt
)
391 struct pet_scop
*scop
;
396 scop
= scop_alloc(ctx
, 1);
400 scop
->context
= stmt_extract_context(stmt
, scop
->context
);
404 scop
->stmts
[0] = stmt
;
413 /* Does "mpa" represent an access to an element of an unnamed space, i.e.,
414 * does it represent an affine expression?
416 static int multi_pw_aff_is_affine(__isl_keep isl_multi_pw_aff
*mpa
)
420 has_id
= isl_multi_pw_aff_has_tuple_id(mpa
, isl_dim_out
);
427 /* Return the piecewise affine expression "set ? 1 : 0" defined on "dom".
429 static __isl_give isl_pw_aff
*indicator_function(__isl_take isl_set
*set
,
430 __isl_take isl_set
*dom
)
433 pa
= isl_set_indicator_function(set
);
434 pa
= isl_pw_aff_intersect_domain(pa
, dom
);
438 /* Return "lhs || rhs", defined on the shared definition domain.
440 static __isl_give isl_pw_aff
*pw_aff_or(__isl_take isl_pw_aff
*lhs
,
441 __isl_take isl_pw_aff
*rhs
)
446 dom
= isl_set_intersect(isl_pw_aff_domain(isl_pw_aff_copy(lhs
)),
447 isl_pw_aff_domain(isl_pw_aff_copy(rhs
)));
448 cond
= isl_set_union(isl_pw_aff_non_zero_set(lhs
),
449 isl_pw_aff_non_zero_set(rhs
));
450 cond
= isl_set_coalesce(cond
);
451 return indicator_function(cond
, dom
);
454 /* Combine ext1->skip[type] and ext2->skip[type] into ext->skip[type].
455 * ext may be equal to either ext1 or ext2.
457 * The two skips that need to be combined are assumed to be affine expressions.
459 * We need to skip in ext if we need to skip in either ext1 or ext2.
460 * We don't need to skip in ext if we don't need to skip in both ext1 and ext2.
462 static struct pet_scop_ext
*combine_skips(struct pet_scop_ext
*ext
,
463 struct pet_scop_ext
*ext1
, struct pet_scop_ext
*ext2
,
466 isl_pw_aff
*skip
, *skip1
, *skip2
;
470 if (!ext1
->skip
[type
] && !ext2
->skip
[type
])
472 if (!ext1
->skip
[type
]) {
475 ext
->skip
[type
] = ext2
->skip
[type
];
476 ext2
->skip
[type
] = NULL
;
479 if (!ext2
->skip
[type
]) {
482 ext
->skip
[type
] = ext1
->skip
[type
];
483 ext1
->skip
[type
] = NULL
;
487 if (!multi_pw_aff_is_affine(ext1
->skip
[type
]) ||
488 !multi_pw_aff_is_affine(ext2
->skip
[type
]))
489 isl_die(isl_multi_pw_aff_get_ctx(ext1
->skip
[type
]),
490 isl_error_internal
, "can only combine affine skips",
493 skip1
= isl_multi_pw_aff_get_pw_aff(ext1
->skip
[type
], 0);
494 skip2
= isl_multi_pw_aff_get_pw_aff(ext2
->skip
[type
], 0);
495 skip
= pw_aff_or(skip1
, skip2
);
496 isl_multi_pw_aff_free(ext1
->skip
[type
]);
497 ext1
->skip
[type
] = NULL
;
498 isl_multi_pw_aff_free(ext2
->skip
[type
]);
499 ext2
->skip
[type
] = NULL
;
500 ext
->skip
[type
] = isl_multi_pw_aff_from_pw_aff(skip
);
501 if (!ext
->skip
[type
])
506 pet_scop_free(&ext
->scop
);
510 /* Combine scop1->skip[type] and scop2->skip[type] into scop->skip[type],
511 * where type takes on the values pet_skip_now and pet_skip_later.
512 * scop may be equal to either scop1 or scop2.
514 static struct pet_scop
*scop_combine_skips(struct pet_scop
*scop
,
515 struct pet_scop
*scop1
, struct pet_scop
*scop2
)
517 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
518 struct pet_scop_ext
*ext1
= (struct pet_scop_ext
*) scop1
;
519 struct pet_scop_ext
*ext2
= (struct pet_scop_ext
*) scop2
;
521 ext
= combine_skips(ext
, ext1
, ext2
, pet_skip_now
);
522 ext
= combine_skips(ext
, ext1
, ext2
, pet_skip_later
);
526 /* Update scop->start and scop->end to include the region from "start"
527 * to "end". In particular, if scop->end == 0, then "scop" does not
528 * have any offset information yet and we simply take the information
529 * from "start" and "end". Otherwise, we update the fields if the
530 * region from "start" to "end" is not already included.
532 struct pet_scop
*pet_scop_update_start_end(struct pet_scop
*scop
,
533 unsigned start
, unsigned end
)
537 if (scop
->end
== 0) {
541 if (start
< scop
->start
)
550 /* Does "implication" appear in the list of implications of "scop"?
552 static int is_known_implication(struct pet_scop
*scop
,
553 struct pet_implication
*implication
)
557 for (i
= 0; i
< scop
->n_implication
; ++i
) {
558 struct pet_implication
*pi
= scop
->implications
[i
];
561 if (pi
->satisfied
!= implication
->satisfied
)
563 equal
= isl_map_is_equal(pi
->extension
, implication
->extension
);
573 /* Store the concatenation of the implications of "scop1" and "scop2"
574 * in "scop", removing duplicates (i.e., implications in "scop2" that
575 * already appear in "scop1").
577 static struct pet_scop
*scop_collect_implications(isl_ctx
*ctx
,
578 struct pet_scop
*scop
, struct pet_scop
*scop1
, struct pet_scop
*scop2
)
585 if (scop2
->n_implication
== 0) {
586 scop
->n_implication
= scop1
->n_implication
;
587 scop
->implications
= scop1
->implications
;
588 scop1
->n_implication
= 0;
589 scop1
->implications
= NULL
;
593 if (scop1
->n_implication
== 0) {
594 scop
->n_implication
= scop2
->n_implication
;
595 scop
->implications
= scop2
->implications
;
596 scop2
->n_implication
= 0;
597 scop2
->implications
= NULL
;
601 scop
->implications
= isl_calloc_array(ctx
, struct pet_implication
*,
602 scop1
->n_implication
+ scop2
->n_implication
);
603 if (!scop
->implications
)
604 return pet_scop_free(scop
);
606 for (i
= 0; i
< scop1
->n_implication
; ++i
) {
607 scop
->implications
[i
] = scop1
->implications
[i
];
608 scop1
->implications
[i
] = NULL
;
611 scop
->n_implication
= scop1
->n_implication
;
612 j
= scop1
->n_implication
;
613 for (i
= 0; i
< scop2
->n_implication
; ++i
) {
616 known
= is_known_implication(scop
, scop2
->implications
[i
]);
618 return pet_scop_free(scop
);
621 scop
->implications
[j
++] = scop2
->implications
[i
];
622 scop2
->implications
[i
] = NULL
;
624 scop
->n_implication
= j
;
629 /* Combine the offset information of "scop1" and "scop2" into "scop".
631 static struct pet_scop
*scop_combine_start_end(struct pet_scop
*scop
,
632 struct pet_scop
*scop1
, struct pet_scop
*scop2
)
635 scop
= pet_scop_update_start_end(scop
,
636 scop1
->start
, scop1
->end
);
638 scop
= pet_scop_update_start_end(scop
,
639 scop2
->start
, scop2
->end
);
643 /* Construct a pet_scop that contains the offset information,
644 * arrays, statements and skip information in "scop1" and "scop2".
646 static struct pet_scop
*pet_scop_add(isl_ctx
*ctx
, struct pet_scop
*scop1
,
647 struct pet_scop
*scop2
)
650 struct pet_scop
*scop
= NULL
;
652 if (!scop1
|| !scop2
)
655 if (scop1
->n_stmt
== 0) {
656 scop2
= scop_combine_skips(scop2
, scop1
, scop2
);
657 pet_scop_free(scop1
);
661 if (scop2
->n_stmt
== 0) {
662 scop1
= scop_combine_skips(scop1
, scop1
, scop2
);
663 pet_scop_free(scop2
);
667 scop
= scop_alloc(ctx
, scop1
->n_stmt
+ scop2
->n_stmt
);
671 scop
->arrays
= isl_calloc_array(ctx
, struct pet_array
*,
672 scop1
->n_array
+ scop2
->n_array
);
675 scop
->n_array
= scop1
->n_array
+ scop2
->n_array
;
677 for (i
= 0; i
< scop1
->n_stmt
; ++i
) {
678 scop
->stmts
[i
] = scop1
->stmts
[i
];
679 scop1
->stmts
[i
] = NULL
;
682 for (i
= 0; i
< scop2
->n_stmt
; ++i
) {
683 scop
->stmts
[scop1
->n_stmt
+ i
] = scop2
->stmts
[i
];
684 scop2
->stmts
[i
] = NULL
;
687 for (i
= 0; i
< scop1
->n_array
; ++i
) {
688 scop
->arrays
[i
] = scop1
->arrays
[i
];
689 scop1
->arrays
[i
] = NULL
;
692 for (i
= 0; i
< scop2
->n_array
; ++i
) {
693 scop
->arrays
[scop1
->n_array
+ i
] = scop2
->arrays
[i
];
694 scop2
->arrays
[i
] = NULL
;
697 scop
= scop_collect_implications(ctx
, scop
, scop1
, scop2
);
698 scop
= pet_scop_restrict_context(scop
, isl_set_copy(scop1
->context
));
699 scop
= pet_scop_restrict_context(scop
, isl_set_copy(scop2
->context
));
700 scop
= scop_combine_skips(scop
, scop1
, scop2
);
701 scop
= scop_combine_start_end(scop
, scop1
, scop2
);
703 pet_scop_free(scop1
);
704 pet_scop_free(scop2
);
707 pet_scop_free(scop1
);
708 pet_scop_free(scop2
);
713 /* Apply the skip condition "skip" to "scop".
714 * That is, make sure "scop" is not executed when the condition holds.
716 * If "skip" is an affine expression, we add the conditions under
717 * which the expression is zero to the iteration domains.
718 * Otherwise, we add a filter on the variable attaining the value zero.
720 static struct pet_scop
*restrict_skip(struct pet_scop
*scop
,
721 __isl_take isl_multi_pw_aff
*skip
)
730 is_aff
= multi_pw_aff_is_affine(skip
);
735 return pet_scop_filter(scop
, skip
, 0);
737 pa
= isl_multi_pw_aff_get_pw_aff(skip
, 0);
738 isl_multi_pw_aff_free(skip
);
739 zero
= isl_set_params(isl_pw_aff_zero_set(pa
));
740 scop
= pet_scop_restrict(scop
, zero
);
744 isl_multi_pw_aff_free(skip
);
745 return pet_scop_free(scop
);
748 /* Construct a pet_scop that contains the arrays, statements and
749 * skip information in "scop1" and "scop2", where the two scops
750 * are executed "in sequence". That is, breaks and continues
751 * in scop1 have an effect on scop2.
753 struct pet_scop
*pet_scop_add_seq(isl_ctx
*ctx
, struct pet_scop
*scop1
,
754 struct pet_scop
*scop2
)
756 if (scop1
&& pet_scop_has_skip(scop1
, pet_skip_now
))
757 scop2
= restrict_skip(scop2
,
758 pet_scop_get_skip(scop1
, pet_skip_now
));
759 return pet_scop_add(ctx
, scop1
, scop2
);
762 /* Construct a pet_scop that contains the arrays, statements and
763 * skip information in "scop1" and "scop2", where the two scops
764 * are executed "in parallel". That is, any break or continue
765 * in scop1 has no effect on scop2.
767 struct pet_scop
*pet_scop_add_par(isl_ctx
*ctx
, struct pet_scop
*scop1
,
768 struct pet_scop
*scop2
)
770 return pet_scop_add(ctx
, scop1
, scop2
);
773 void *pet_implication_free(struct pet_implication
*implication
)
780 isl_map_free(implication
->extension
);
786 struct pet_scop
*pet_scop_free(struct pet_scop
*scop
)
789 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
793 isl_set_free(scop
->context
);
794 isl_set_free(scop
->context_value
);
796 for (i
= 0; i
< scop
->n_type
; ++i
)
797 pet_type_free(scop
->types
[i
]);
800 for (i
= 0; i
< scop
->n_array
; ++i
)
801 pet_array_free(scop
->arrays
[i
]);
804 for (i
= 0; i
< scop
->n_stmt
; ++i
)
805 pet_stmt_free(scop
->stmts
[i
]);
807 if (scop
->implications
)
808 for (i
= 0; i
< scop
->n_implication
; ++i
)
809 pet_implication_free(scop
->implications
[i
]);
810 free(scop
->implications
);
811 isl_multi_pw_aff_free(ext
->skip
[pet_skip_now
]);
812 isl_multi_pw_aff_free(ext
->skip
[pet_skip_later
]);
817 void pet_type_dump(struct pet_type
*type
)
822 fprintf(stderr
, "%s -> %s\n", type
->name
, type
->definition
);
825 void pet_implication_dump(struct pet_implication
*implication
)
830 fprintf(stderr
, "%d\n", implication
->satisfied
);
831 isl_map_dump(implication
->extension
);
834 void pet_scop_dump(struct pet_scop
*scop
)
837 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
842 isl_set_dump(scop
->context
);
843 isl_set_dump(scop
->context_value
);
844 for (i
= 0; i
< scop
->n_type
; ++i
)
845 pet_type_dump(scop
->types
[i
]);
846 for (i
= 0; i
< scop
->n_array
; ++i
)
847 pet_array_dump(scop
->arrays
[i
]);
848 for (i
= 0; i
< scop
->n_stmt
; ++i
)
849 pet_stmt_dump(scop
->stmts
[i
]);
850 for (i
= 0; i
< scop
->n_implication
; ++i
)
851 pet_implication_dump(scop
->implications
[i
]);
854 fprintf(stderr
, "skip\n");
855 isl_multi_pw_aff_dump(ext
->skip
[0]);
856 isl_multi_pw_aff_dump(ext
->skip
[1]);
860 /* Return 1 if the two pet_arrays are equivalent.
862 * We don't compare element_size as this may be target dependent.
864 int pet_array_is_equal(struct pet_array
*array1
, struct pet_array
*array2
)
866 if (!array1
|| !array2
)
869 if (!isl_set_is_equal(array1
->context
, array2
->context
))
871 if (!isl_set_is_equal(array1
->extent
, array2
->extent
))
873 if (!!array1
->value_bounds
!= !!array2
->value_bounds
)
875 if (array1
->value_bounds
&&
876 !isl_set_is_equal(array1
->value_bounds
, array2
->value_bounds
))
878 if (strcmp(array1
->element_type
, array2
->element_type
))
880 if (array1
->element_is_record
!= array2
->element_is_record
)
882 if (array1
->live_out
!= array2
->live_out
)
884 if (array1
->uniquely_defined
!= array2
->uniquely_defined
)
886 if (array1
->declared
!= array2
->declared
)
888 if (array1
->exposed
!= array2
->exposed
)
894 /* Return 1 if the two pet_stmts are equivalent.
896 int pet_stmt_is_equal(struct pet_stmt
*stmt1
, struct pet_stmt
*stmt2
)
900 if (!stmt1
|| !stmt2
)
903 if (stmt1
->line
!= stmt2
->line
)
905 if (!isl_set_is_equal(stmt1
->domain
, stmt2
->domain
))
907 if (!isl_map_is_equal(stmt1
->schedule
, stmt2
->schedule
))
909 if (!pet_expr_is_equal(stmt1
->body
, stmt2
->body
))
911 if (stmt1
->n_arg
!= stmt2
->n_arg
)
913 for (i
= 0; i
< stmt1
->n_arg
; ++i
) {
914 if (!pet_expr_is_equal(stmt1
->args
[i
], stmt2
->args
[i
]))
921 /* Return 1 if the two pet_types are equivalent.
923 * We only compare the names of the types since the exact representation
924 * of the definition may depend on the version of clang being used.
926 int pet_type_is_equal(struct pet_type
*type1
, struct pet_type
*type2
)
928 if (!type1
|| !type2
)
931 if (strcmp(type1
->name
, type2
->name
))
937 /* Return 1 if the two pet_implications are equivalent.
939 int pet_implication_is_equal(struct pet_implication
*implication1
,
940 struct pet_implication
*implication2
)
942 if (!implication1
|| !implication2
)
945 if (implication1
->satisfied
!= implication2
->satisfied
)
947 if (!isl_map_is_equal(implication1
->extension
, implication2
->extension
))
953 /* Return 1 if the two pet_scops are equivalent.
955 int pet_scop_is_equal(struct pet_scop
*scop1
, struct pet_scop
*scop2
)
959 if (!scop1
|| !scop2
)
962 if (!isl_set_is_equal(scop1
->context
, scop2
->context
))
964 if (!isl_set_is_equal(scop1
->context_value
, scop2
->context_value
))
967 if (scop1
->n_type
!= scop2
->n_type
)
969 for (i
= 0; i
< scop1
->n_type
; ++i
)
970 if (!pet_type_is_equal(scop1
->types
[i
], scop2
->types
[i
]))
973 if (scop1
->n_array
!= scop2
->n_array
)
975 for (i
= 0; i
< scop1
->n_array
; ++i
)
976 if (!pet_array_is_equal(scop1
->arrays
[i
], scop2
->arrays
[i
]))
979 if (scop1
->n_stmt
!= scop2
->n_stmt
)
981 for (i
= 0; i
< scop1
->n_stmt
; ++i
)
982 if (!pet_stmt_is_equal(scop1
->stmts
[i
], scop2
->stmts
[i
]))
985 if (scop1
->n_implication
!= scop2
->n_implication
)
987 for (i
= 0; i
< scop1
->n_implication
; ++i
)
988 if (!pet_implication_is_equal(scop1
->implications
[i
],
989 scop2
->implications
[i
]))
995 /* Prefix the schedule of "stmt" with an extra dimension with constant
998 struct pet_stmt
*pet_stmt_prefix(struct pet_stmt
*stmt
, int pos
)
1003 stmt
->schedule
= isl_map_insert_dims(stmt
->schedule
, isl_dim_out
, 0, 1);
1004 stmt
->schedule
= isl_map_fix_si(stmt
->schedule
, isl_dim_out
, 0, pos
);
1005 if (!stmt
->schedule
)
1006 return pet_stmt_free(stmt
);
1011 /* Prefix the schedules of all statements in "scop" with an extra
1012 * dimension with constant value "pos".
1014 struct pet_scop
*pet_scop_prefix(struct pet_scop
*scop
, int pos
)
1021 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
1022 scop
->stmts
[i
] = pet_stmt_prefix(scop
->stmts
[i
], pos
);
1023 if (!scop
->stmts
[i
])
1024 return pet_scop_free(scop
);
1030 /* Given a set with a parameter at "param_pos" that refers to the
1031 * iterator, "move" the iterator to the first set dimension.
1032 * That is, essentially equate the parameter to the first set dimension
1033 * and then project it out.
1035 * The first set dimension may however refer to a virtual iterator,
1036 * while the parameter refers to the "real" iterator.
1037 * We therefore need to take into account the affine expression "iv_map", which
1038 * expresses the real iterator in terms of the virtual iterator.
1039 * In particular, we equate the set dimension to the input of the map
1040 * and the parameter to the output of the map and then project out
1041 * everything we don't need anymore.
1043 static __isl_give isl_set
*internalize_iv(__isl_take isl_set
*set
,
1044 int param_pos
, __isl_take isl_aff
*iv_map
)
1046 isl_map
*map
, *map2
;
1047 map
= isl_map_from_domain(set
);
1048 map
= isl_map_add_dims(map
, isl_dim_out
, 1);
1049 map
= isl_map_equate(map
, isl_dim_in
, 0, isl_dim_out
, 0);
1050 map2
= isl_map_from_aff(iv_map
);
1051 map2
= isl_map_align_params(map2
, isl_map_get_space(map
));
1052 map
= isl_map_apply_range(map
, map2
);
1053 map
= isl_map_equate(map
, isl_dim_param
, param_pos
, isl_dim_out
, 0);
1054 map
= isl_map_project_out(map
, isl_dim_param
, param_pos
, 1);
1055 return isl_map_domain(map
);
1058 /* Data used in embed_access.
1059 * extend adds an iterator to the iteration domain (through precomposition).
1060 * iv_map expresses the real iterator in terms of the virtual iterator
1061 * var_id represents the induction variable of the corresponding loop
1063 struct pet_embed_access
{
1064 isl_multi_pw_aff
*extend
;
1069 /* Given an index expression, return an expression for the outer iterator.
1071 static __isl_give isl_aff
*index_outer_iterator(
1072 __isl_take isl_multi_pw_aff
*index
)
1075 isl_local_space
*ls
;
1077 space
= isl_multi_pw_aff_get_domain_space(index
);
1078 isl_multi_pw_aff_free(index
);
1080 ls
= isl_local_space_from_space(space
);
1081 return isl_aff_var_on_domain(ls
, isl_dim_set
, 0);
1084 /* Replace an index expression that references the new (outer) iterator variable
1085 * by one that references the corresponding (real) iterator.
1087 * The input index expression is of the form
1089 * { S[i',...] -> i[] }
1091 * where i' refers to the virtual iterator.
1093 * iv_map is of the form
1097 * Return the index expression
1099 * { S[i',...] -> [i] }
1101 static __isl_give isl_multi_pw_aff
*replace_by_iterator(
1102 __isl_take isl_multi_pw_aff
*index
, __isl_take isl_aff
*iv_map
)
1107 aff
= index_outer_iterator(index
);
1108 space
= isl_aff_get_space(aff
);
1109 iv_map
= isl_aff_align_params(iv_map
, space
);
1110 aff
= isl_aff_pullback_aff(iv_map
, aff
);
1112 return isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff
));
1115 /* Given an index expression "index" that refers to the (real) iterator
1116 * through the parameter at position "pos", plug in "iv_map", expressing
1117 * the real iterator in terms of the virtual (outer) iterator.
1119 * In particular, the index expression is of the form
1121 * [..., i, ...] -> { S[i',...] -> ... i ... }
1123 * where i refers to the real iterator and i' refers to the virtual iterator.
1125 * iv_map is of the form
1129 * Return the index expression
1131 * [..., ...] -> { S[i',...] -> ... iv_map(i') ... }
1134 * We first move the parameter to the input
1136 * [..., ...] -> { [i, i',...] -> ... i ... }
1140 * { S[i',...] -> [i=iv_map(i'), i', ...] }
1142 * and then combine the two to obtain the desired result.
1144 static __isl_give isl_multi_pw_aff
*index_internalize_iv(
1145 __isl_take isl_multi_pw_aff
*index
, int pos
, __isl_take isl_aff
*iv_map
)
1147 isl_space
*space
= isl_multi_pw_aff_get_domain_space(index
);
1150 space
= isl_space_drop_dims(space
, isl_dim_param
, pos
, 1);
1151 index
= isl_multi_pw_aff_move_dims(index
, isl_dim_in
, 0,
1152 isl_dim_param
, pos
, 1);
1154 space
= isl_space_map_from_set(space
);
1155 ma
= isl_multi_aff_identity(isl_space_copy(space
));
1156 iv_map
= isl_aff_align_params(iv_map
, space
);
1157 iv_map
= isl_aff_pullback_aff(iv_map
, isl_multi_aff_get_aff(ma
, 0));
1158 ma
= isl_multi_aff_flat_range_product(
1159 isl_multi_aff_from_aff(iv_map
), ma
);
1160 index
= isl_multi_pw_aff_pullback_multi_aff(index
, ma
);
1165 /* Does the index expression "index" reference a virtual array, i.e.,
1166 * one with user pointer equal to NULL?
1167 * A virtual array does not have any members.
1169 static int index_is_virtual_array(__isl_keep isl_multi_pw_aff
*index
)
1174 if (!isl_multi_pw_aff_has_tuple_id(index
, isl_dim_out
))
1176 if (isl_multi_pw_aff_range_is_wrapping(index
))
1178 id
= isl_multi_pw_aff_get_tuple_id(index
, isl_dim_out
);
1179 is_virtual
= !isl_id_get_user(id
);
1185 /* Does the access relation "access" reference a virtual array, i.e.,
1186 * one with user pointer equal to NULL?
1187 * A virtual array does not have any members.
1189 static int access_is_virtual_array(__isl_keep isl_map
*access
)
1194 if (!isl_map_has_tuple_id(access
, isl_dim_out
))
1196 if (isl_map_range_is_wrapping(access
))
1198 id
= isl_map_get_tuple_id(access
, isl_dim_out
);
1199 is_virtual
= !isl_id_get_user(id
);
1205 /* Embed the given index expression in an extra outer loop.
1206 * The domain of the index expression has already been updated.
1208 * If the access refers to the induction variable, then it is
1209 * turned into an access to the set of integers with index (and value)
1210 * equal to the induction variable.
1212 * If the accessed array is a virtual array (with user
1213 * pointer equal to NULL), as created by create_test_index,
1214 * then it is extended along with the domain of the index expression.
1216 static __isl_give isl_multi_pw_aff
*embed_index_expression(
1217 __isl_take isl_multi_pw_aff
*index
, struct pet_embed_access
*data
)
1219 isl_id
*array_id
= NULL
;
1222 if (isl_multi_pw_aff_has_tuple_id(index
, isl_dim_out
))
1223 array_id
= isl_multi_pw_aff_get_tuple_id(index
, isl_dim_out
);
1224 if (array_id
== data
->var_id
) {
1225 index
= replace_by_iterator(index
, isl_aff_copy(data
->iv_map
));
1226 } else if (index_is_virtual_array(index
)) {
1228 isl_multi_pw_aff
*mpa
;
1230 aff
= index_outer_iterator(isl_multi_pw_aff_copy(index
));
1231 mpa
= isl_multi_pw_aff_from_pw_aff(isl_pw_aff_from_aff(aff
));
1232 index
= isl_multi_pw_aff_flat_range_product(mpa
, index
);
1233 index
= isl_multi_pw_aff_set_tuple_id(index
, isl_dim_out
,
1234 isl_id_copy(array_id
));
1236 isl_id_free(array_id
);
1238 pos
= isl_multi_pw_aff_find_dim_by_id(index
,
1239 isl_dim_param
, data
->var_id
);
1241 index
= index_internalize_iv(index
, pos
,
1242 isl_aff_copy(data
->iv_map
));
1243 index
= isl_multi_pw_aff_set_dim_id(index
, isl_dim_in
, 0,
1244 isl_id_copy(data
->var_id
));
1249 /* Embed the given access relation in an extra outer loop.
1250 * The domain of the access relation has already been updated.
1252 * If the access refers to the induction variable, then it is
1253 * turned into an access to the set of integers with index (and value)
1254 * equal to the induction variable.
1256 * If the induction variable appears in the constraints (as a parameter),
1257 * then the parameter is equated to the newly introduced iteration
1258 * domain dimension and subsequently projected out.
1260 * Similarly, if the accessed array is a virtual array (with user
1261 * pointer equal to NULL), as created by create_test_index,
1262 * then it is extended along with the domain of the access.
1264 static __isl_give isl_map
*embed_access_relation(__isl_take isl_map
*access
,
1265 struct pet_embed_access
*data
)
1267 isl_id
*array_id
= NULL
;
1270 if (isl_map_has_tuple_id(access
, isl_dim_out
))
1271 array_id
= isl_map_get_tuple_id(access
, isl_dim_out
);
1272 if (array_id
== data
->var_id
|| access_is_virtual_array(access
)) {
1273 access
= isl_map_insert_dims(access
, isl_dim_out
, 0, 1);
1274 access
= isl_map_equate(access
,
1275 isl_dim_in
, 0, isl_dim_out
, 0);
1276 if (array_id
== data
->var_id
)
1277 access
= isl_map_apply_range(access
,
1278 isl_map_from_aff(isl_aff_copy(data
->iv_map
)));
1280 access
= isl_map_set_tuple_id(access
, isl_dim_out
,
1281 isl_id_copy(array_id
));
1283 isl_id_free(array_id
);
1285 pos
= isl_map_find_dim_by_id(access
, isl_dim_param
, data
->var_id
);
1287 isl_set
*set
= isl_map_wrap(access
);
1288 set
= internalize_iv(set
, pos
, isl_aff_copy(data
->iv_map
));
1289 access
= isl_set_unwrap(set
);
1291 access
= isl_map_set_dim_id(access
, isl_dim_in
, 0,
1292 isl_id_copy(data
->var_id
));
1297 /* Given an access expression, embed the associated access relation and
1298 * index expression in an extra outer loop.
1300 * We first update the domains to insert the extra dimension and
1301 * then update the access relation and index expression to take
1302 * into account the mapping "iv_map" from virtual iterator
1305 static __isl_give pet_expr
*embed_access(__isl_take pet_expr
*expr
, void *user
)
1307 struct pet_embed_access
*data
= user
;
1309 expr
= pet_expr_cow(expr
);
1310 expr
= pet_expr_access_update_domain(expr
, data
->extend
);
1314 expr
->acc
.access
= embed_access_relation(expr
->acc
.access
, data
);
1315 expr
->acc
.index
= embed_index_expression(expr
->acc
.index
, data
);
1316 if (!expr
->acc
.access
|| !expr
->acc
.index
)
1317 return pet_expr_free(expr
);
1322 /* Embed all access subexpressions of "expr" in an extra loop.
1323 * "extend" inserts an outer loop iterator in the iteration domains
1324 * (through precomposition).
1325 * "iv_map" expresses the real iterator in terms of the virtual iterator
1326 * "var_id" represents the induction variable.
1328 static __isl_give pet_expr
*expr_embed(__isl_take pet_expr
*expr
,
1329 __isl_take isl_multi_pw_aff
*extend
, __isl_take isl_aff
*iv_map
,
1330 __isl_keep isl_id
*var_id
)
1332 struct pet_embed_access data
=
1333 { .extend
= extend
, .iv_map
= iv_map
, .var_id
= var_id
};
1335 expr
= pet_expr_map_access(expr
, &embed_access
, &data
);
1336 isl_aff_free(iv_map
);
1337 isl_multi_pw_aff_free(extend
);
1341 /* Embed the given pet_stmt in an extra outer loop with iteration domain
1342 * "dom" and schedule "sched". "var_id" represents the induction variable
1343 * of the loop. "iv_map" maps a possibly virtual iterator to the real iterator.
1344 * That is, it expresses the iterator that some of the parameters in "stmt"
1345 * may refer to in terms of the iterator used in "dom" and
1346 * the domain of "sched".
1348 * The iteration domain and schedule of the statement are updated
1349 * according to the iteration domain and schedule of the new loop.
1350 * If stmt->domain is a wrapped map, then the iteration domain
1351 * is the domain of this map, so we need to be careful to adjust
1354 * If the induction variable appears in the constraints (as a parameter)
1355 * of the current iteration domain or the schedule of the statement,
1356 * then the parameter is equated to the newly introduced iteration
1357 * domain dimension and subsequently projected out.
1359 * Finally, all access relations are updated based on the extra loop.
1361 static struct pet_stmt
*pet_stmt_embed(struct pet_stmt
*stmt
,
1362 __isl_take isl_set
*dom
, __isl_take isl_map
*sched
,
1363 __isl_take isl_aff
*iv_map
, __isl_take isl_id
*var_id
)
1369 isl_multi_pw_aff
*extend
;
1374 if (isl_set_is_wrapping(stmt
->domain
)) {
1379 map
= isl_set_unwrap(stmt
->domain
);
1380 stmt_id
= isl_map_get_tuple_id(map
, isl_dim_in
);
1381 ran_dim
= isl_space_range(isl_map_get_space(map
));
1382 ext
= isl_map_from_domain_and_range(isl_set_copy(dom
),
1383 isl_set_universe(ran_dim
));
1384 map
= isl_map_flat_domain_product(ext
, map
);
1385 map
= isl_map_set_tuple_id(map
, isl_dim_in
,
1386 isl_id_copy(stmt_id
));
1387 dim
= isl_space_domain(isl_map_get_space(map
));
1388 stmt
->domain
= isl_map_wrap(map
);
1390 stmt_id
= isl_set_get_tuple_id(stmt
->domain
);
1391 stmt
->domain
= isl_set_flat_product(isl_set_copy(dom
),
1393 stmt
->domain
= isl_set_set_tuple_id(stmt
->domain
,
1394 isl_id_copy(stmt_id
));
1395 dim
= isl_set_get_space(stmt
->domain
);
1398 pos
= isl_set_find_dim_by_id(stmt
->domain
, isl_dim_param
, var_id
);
1400 stmt
->domain
= internalize_iv(stmt
->domain
, pos
,
1401 isl_aff_copy(iv_map
));
1403 stmt
->schedule
= isl_map_flat_product(sched
, stmt
->schedule
);
1404 stmt
->schedule
= isl_map_set_tuple_id(stmt
->schedule
,
1405 isl_dim_in
, stmt_id
);
1407 pos
= isl_map_find_dim_by_id(stmt
->schedule
, isl_dim_param
, var_id
);
1409 isl_set
*set
= isl_map_wrap(stmt
->schedule
);
1410 set
= internalize_iv(set
, pos
, isl_aff_copy(iv_map
));
1411 stmt
->schedule
= isl_set_unwrap(set
);
1414 dim
= isl_space_map_from_set(dim
);
1415 extend
= isl_multi_pw_aff_identity(dim
);
1416 extend
= isl_multi_pw_aff_drop_dims(extend
, isl_dim_out
, 0, 1);
1417 extend
= isl_multi_pw_aff_set_tuple_id(extend
, isl_dim_out
,
1418 isl_multi_pw_aff_get_tuple_id(extend
, isl_dim_in
));
1419 for (i
= 0; i
< stmt
->n_arg
; ++i
)
1420 stmt
->args
[i
] = expr_embed(stmt
->args
[i
],
1421 isl_multi_pw_aff_copy(extend
),
1422 isl_aff_copy(iv_map
), var_id
);
1423 stmt
->body
= expr_embed(stmt
->body
, extend
, iv_map
, var_id
);
1426 isl_id_free(var_id
);
1428 for (i
= 0; i
< stmt
->n_arg
; ++i
)
1430 return pet_stmt_free(stmt
);
1431 if (!stmt
->domain
|| !stmt
->schedule
|| !stmt
->body
)
1432 return pet_stmt_free(stmt
);
1436 isl_map_free(sched
);
1437 isl_aff_free(iv_map
);
1438 isl_id_free(var_id
);
1442 /* Embed the given pet_array in an extra outer loop with iteration domain
1444 * This embedding only has an effect on virtual arrays (those with
1445 * user pointer equal to NULL), which need to be extended along with
1446 * the iteration domain.
1448 static struct pet_array
*pet_array_embed(struct pet_array
*array
,
1449 __isl_take isl_set
*dom
)
1451 isl_id
*array_id
= NULL
;
1456 if (isl_set_has_tuple_id(array
->extent
))
1457 array_id
= isl_set_get_tuple_id(array
->extent
);
1459 if (array_id
&& !isl_id_get_user(array_id
)) {
1460 array
->extent
= isl_set_flat_product(dom
, array
->extent
);
1461 array
->extent
= isl_set_set_tuple_id(array
->extent
, array_id
);
1463 return pet_array_free(array
);
1466 isl_id_free(array_id
);
1475 /* Update the context with respect to an embedding into a loop
1476 * with iteration domain "dom" and induction variable "id".
1477 * "iv_map" expresses the real iterator (parameter "id") in terms
1478 * of a possibly virtual iterator (used in "dom").
1480 * If the current context is independent of "id", we don't need
1482 * Otherwise, a parameter value is invalid for the embedding if
1483 * any of the corresponding iterator values is invalid.
1484 * That is, a parameter value is valid only if all the corresponding
1485 * iterator values are valid.
1486 * We therefore compute the set of parameters
1488 * forall i in dom : valid (i)
1492 * not exists i in dom : not valid(i)
1496 * not exists i in dom \ valid(i)
1498 * Before we subtract valid(i) from dom, we first need to substitute
1499 * the real iterator for the virtual iterator.
1501 * If there are any unnamed parameters in "dom", then we consider
1502 * a parameter value to be valid if it is valid for any value of those
1503 * unnamed parameters. They are therefore projected out at the end.
1505 static __isl_give isl_set
*context_embed(__isl_take isl_set
*context
,
1506 __isl_keep isl_set
*dom
, __isl_keep isl_aff
*iv_map
,
1507 __isl_keep isl_id
*id
)
1512 pos
= isl_set_find_dim_by_id(context
, isl_dim_param
, id
);
1516 context
= isl_set_from_params(context
);
1517 context
= isl_set_add_dims(context
, isl_dim_set
, 1);
1518 context
= isl_set_equate(context
, isl_dim_param
, pos
, isl_dim_set
, 0);
1519 context
= isl_set_project_out(context
, isl_dim_param
, pos
, 1);
1520 ma
= isl_multi_aff_from_aff(isl_aff_copy(iv_map
));
1521 context
= isl_set_preimage_multi_aff(context
, ma
);
1522 context
= isl_set_subtract(isl_set_copy(dom
), context
);
1523 context
= isl_set_params(context
);
1524 context
= isl_set_complement(context
);
1525 context
= pet_nested_remove_from_set(context
);
1529 /* Update the implication with respect to an embedding into a loop
1530 * with iteration domain "dom".
1532 * Since embed_access extends virtual arrays along with the domain
1533 * of the access, we need to do the same with domain and range
1534 * of the implication. Since the original implication is only valid
1535 * within a given iteration of the loop, the extended implication
1536 * maps the extra array dimension corresponding to the extra loop
1539 static struct pet_implication
*pet_implication_embed(
1540 struct pet_implication
*implication
, __isl_take isl_set
*dom
)
1548 map
= isl_set_identity(dom
);
1549 id
= isl_map_get_tuple_id(implication
->extension
, isl_dim_in
);
1550 map
= isl_map_flat_product(map
, implication
->extension
);
1551 map
= isl_map_set_tuple_id(map
, isl_dim_in
, isl_id_copy(id
));
1552 map
= isl_map_set_tuple_id(map
, isl_dim_out
, id
);
1553 implication
->extension
= map
;
1554 if (!implication
->extension
)
1555 return pet_implication_free(implication
);
1563 /* Embed all statements and arrays in "scop" in an extra outer loop
1564 * with iteration domain "dom" and schedule "sched".
1565 * "id" represents the induction variable of the loop.
1566 * "iv_map" maps a possibly virtual iterator to the real iterator.
1567 * That is, it expresses the iterator that some of the parameters in "scop"
1568 * may refer to in terms of the iterator used in "dom" and
1569 * the domain of "sched".
1571 * Any skip conditions within the loop have no effect outside of the loop.
1572 * The caller is responsible for making sure skip[pet_skip_later] has been
1573 * taken into account.
1575 struct pet_scop
*pet_scop_embed(struct pet_scop
*scop
, __isl_take isl_set
*dom
,
1576 __isl_take isl_aff
*sched
, __isl_take isl_aff
*iv_map
,
1577 __isl_take isl_id
*id
)
1582 sched_map
= isl_map_from_aff(sched
);
1587 pet_scop_reset_skip(scop
, pet_skip_now
);
1588 pet_scop_reset_skip(scop
, pet_skip_later
);
1590 scop
->context
= context_embed(scop
->context
, dom
, iv_map
, id
);
1594 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
1595 scop
->stmts
[i
] = pet_stmt_embed(scop
->stmts
[i
],
1596 isl_set_copy(dom
), isl_map_copy(sched_map
),
1597 isl_aff_copy(iv_map
), isl_id_copy(id
));
1598 if (!scop
->stmts
[i
])
1602 for (i
= 0; i
< scop
->n_array
; ++i
) {
1603 scop
->arrays
[i
] = pet_array_embed(scop
->arrays
[i
],
1605 if (!scop
->arrays
[i
])
1609 for (i
= 0; i
< scop
->n_implication
; ++i
) {
1610 scop
->implications
[i
] =
1611 pet_implication_embed(scop
->implications
[i
],
1613 if (!scop
->implications
[i
])
1618 isl_map_free(sched_map
);
1619 isl_aff_free(iv_map
);
1624 isl_map_free(sched_map
);
1625 isl_aff_free(iv_map
);
1627 return pet_scop_free(scop
);
1630 /* Add extra conditions on the parameters to the iteration domain of "stmt".
1632 static struct pet_stmt
*stmt_restrict(struct pet_stmt
*stmt
,
1633 __isl_take isl_set
*cond
)
1638 stmt
->domain
= isl_set_intersect_params(stmt
->domain
, cond
);
1643 return pet_stmt_free(stmt
);
1646 /* Add extra conditions to scop->skip[type].
1648 * The new skip condition only holds if it held before
1649 * and the condition is true. It does not hold if it did not hold
1650 * before or the condition is false.
1652 * The skip condition is assumed to be an affine expression.
1654 static struct pet_scop
*pet_scop_restrict_skip(struct pet_scop
*scop
,
1655 enum pet_skip type
, __isl_keep isl_set
*cond
)
1657 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
1663 if (!ext
->skip
[type
])
1666 if (!multi_pw_aff_is_affine(ext
->skip
[type
]))
1667 isl_die(isl_multi_pw_aff_get_ctx(ext
->skip
[type
]),
1668 isl_error_internal
, "can only restrict affine skips",
1669 return pet_scop_free(scop
));
1671 skip
= isl_multi_pw_aff_get_pw_aff(ext
->skip
[type
], 0);
1672 dom
= isl_pw_aff_domain(isl_pw_aff_copy(skip
));
1673 cond
= isl_set_copy(cond
);
1674 cond
= isl_set_from_params(cond
);
1675 cond
= isl_set_intersect(cond
, isl_pw_aff_non_zero_set(skip
));
1676 skip
= indicator_function(cond
, dom
);
1677 isl_multi_pw_aff_free(ext
->skip
[type
]);
1678 ext
->skip
[type
] = isl_multi_pw_aff_from_pw_aff(skip
);
1679 if (!ext
->skip
[type
])
1680 return pet_scop_free(scop
);
1685 /* Add extra conditions on the parameters to all iteration domains
1686 * and skip conditions.
1688 * A parameter value is valid for the result if it was valid
1689 * for the original scop and satisfies "cond" or if it does
1690 * not satisfy "cond" as in this case the scop is not executed
1691 * and the original constraints on the parameters are irrelevant.
1693 struct pet_scop
*pet_scop_restrict(struct pet_scop
*scop
,
1694 __isl_take isl_set
*cond
)
1698 scop
= pet_scop_restrict_skip(scop
, pet_skip_now
, cond
);
1699 scop
= pet_scop_restrict_skip(scop
, pet_skip_later
, cond
);
1704 scop
->context
= isl_set_intersect(scop
->context
, isl_set_copy(cond
));
1705 scop
->context
= isl_set_union(scop
->context
,
1706 isl_set_complement(isl_set_copy(cond
)));
1707 scop
->context
= isl_set_coalesce(scop
->context
);
1708 scop
->context
= pet_nested_remove_from_set(scop
->context
);
1712 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
1713 scop
->stmts
[i
] = stmt_restrict(scop
->stmts
[i
],
1714 isl_set_copy(cond
));
1715 if (!scop
->stmts
[i
])
1723 return pet_scop_free(scop
);
1726 /* Insert an argument expression corresponding to "test" in front
1727 * of the list of arguments described by *n_arg and *args.
1729 static int args_insert_access(unsigned *n_arg
, pet_expr
***args
,
1730 __isl_keep isl_multi_pw_aff
*test
)
1733 isl_ctx
*ctx
= isl_multi_pw_aff_get_ctx(test
);
1739 *args
= isl_calloc_array(ctx
, pet_expr
*, 1);
1744 ext
= isl_calloc_array(ctx
, pet_expr
*, 1 + *n_arg
);
1747 for (i
= 0; i
< *n_arg
; ++i
)
1748 ext
[1 + i
] = (*args
)[i
];
1753 (*args
)[0] = pet_expr_from_index(isl_multi_pw_aff_copy(test
));
1760 /* Look through the applications in "scop" for any that can be
1761 * applied to the filter expressed by "map" and "satisified".
1762 * If there is any, then apply it to "map" and return the result.
1763 * Otherwise, return "map".
1764 * "id" is the identifier of the virtual array.
1766 * We only introduce at most one implication for any given virtual array,
1767 * so we can apply the implication and return as soon as we find one.
1769 static __isl_give isl_map
*apply_implications(struct pet_scop
*scop
,
1770 __isl_take isl_map
*map
, __isl_keep isl_id
*id
, int satisfied
)
1774 for (i
= 0; i
< scop
->n_implication
; ++i
) {
1775 struct pet_implication
*pi
= scop
->implications
[i
];
1778 if (pi
->satisfied
!= satisfied
)
1780 pi_id
= isl_map_get_tuple_id(pi
->extension
, isl_dim_in
);
1785 return isl_map_apply_range(map
, isl_map_copy(pi
->extension
));
1791 /* Is the filter expressed by "test" and "satisfied" implied
1792 * by filter "pos" on "domain", with filter "expr", taking into
1793 * account the implications of "scop"?
1795 * For filter on domain implying that expressed by "test" and "satisfied",
1796 * the filter needs to be an access to the same (virtual) array as "test" and
1797 * the filter value needs to be equal to "satisfied".
1798 * Moreover, the filter access relation, possibly extended by
1799 * the implications in "scop" needs to contain "test".
1801 static int implies_filter(struct pet_scop
*scop
,
1802 __isl_keep isl_map
*domain
, int pos
, __isl_keep pet_expr
*expr
,
1803 __isl_keep isl_map
*test
, int satisfied
)
1805 isl_id
*test_id
, *arg_id
;
1812 if (expr
->type
!= pet_expr_access
)
1814 test_id
= isl_map_get_tuple_id(test
, isl_dim_out
);
1815 arg_id
= pet_expr_access_get_id(expr
);
1816 isl_id_free(arg_id
);
1817 isl_id_free(test_id
);
1818 if (test_id
!= arg_id
)
1820 val
= isl_map_plain_get_val_if_fixed(domain
, isl_dim_out
, pos
);
1821 is_int
= isl_val_is_int(val
);
1823 s
= isl_val_get_num_si(val
);
1832 implied
= isl_map_copy(expr
->acc
.access
);
1833 implied
= apply_implications(scop
, implied
, test_id
, satisfied
);
1834 is_subset
= isl_map_is_subset(test
, implied
);
1835 isl_map_free(implied
);
1840 /* Is the filter expressed by "test" and "satisfied" implied
1841 * by any of the filters on the domain of "stmt", taking into
1842 * account the implications of "scop"?
1844 static int filter_implied(struct pet_scop
*scop
,
1845 struct pet_stmt
*stmt
, __isl_keep isl_multi_pw_aff
*test
, int satisfied
)
1853 if (!scop
|| !stmt
|| !test
)
1855 if (scop
->n_implication
== 0)
1857 if (stmt
->n_arg
== 0)
1860 domain
= isl_set_unwrap(isl_set_copy(stmt
->domain
));
1861 test_map
= isl_map_from_multi_pw_aff(isl_multi_pw_aff_copy(test
));
1864 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
1865 implied
= implies_filter(scop
, domain
, i
, stmt
->args
[i
],
1866 test_map
, satisfied
);
1867 if (implied
< 0 || implied
)
1871 isl_map_free(test_map
);
1872 isl_map_free(domain
);
1876 /* Make the statement "stmt" depend on the value of "test"
1877 * being equal to "satisfied" by adjusting stmt->domain.
1879 * The domain of "test" corresponds to the (zero or more) outer dimensions
1880 * of the iteration domain.
1882 * We first extend "test" to apply to the entire iteration domain and
1883 * then check if the filter that we are about to add is implied
1884 * by any of the current filters, possibly taking into account
1885 * the implications in "scop". If so, we leave "stmt" untouched and return.
1887 * Otherwise, we insert an argument corresponding to a read to "test"
1888 * from the iteration domain of "stmt" in front of the list of arguments.
1889 * We also insert a corresponding output dimension in the wrapped
1890 * map contained in stmt->domain, with value set to "satisfied".
1892 static struct pet_stmt
*stmt_filter(struct pet_scop
*scop
,
1893 struct pet_stmt
*stmt
, __isl_take isl_multi_pw_aff
*test
, int satisfied
)
1899 isl_pw_multi_aff
*pma
;
1900 isl_multi_aff
*add_dom
;
1902 isl_local_space
*ls
;
1908 space
= pet_stmt_get_space(stmt
);
1909 n_test_dom
= isl_multi_pw_aff_dim(test
, isl_dim_in
);
1910 space
= isl_space_from_domain(space
);
1911 space
= isl_space_add_dims(space
, isl_dim_out
, n_test_dom
);
1912 add_dom
= isl_multi_aff_zero(isl_space_copy(space
));
1913 ls
= isl_local_space_from_space(isl_space_domain(space
));
1914 for (i
= 0; i
< n_test_dom
; ++i
) {
1916 aff
= isl_aff_var_on_domain(isl_local_space_copy(ls
),
1918 add_dom
= isl_multi_aff_set_aff(add_dom
, i
, aff
);
1920 isl_local_space_free(ls
);
1921 test
= isl_multi_pw_aff_pullback_multi_aff(test
, add_dom
);
1923 implied
= filter_implied(scop
, stmt
, test
, satisfied
);
1927 isl_multi_pw_aff_free(test
);
1931 id
= isl_multi_pw_aff_get_tuple_id(test
, isl_dim_out
);
1932 pma
= pet_filter_insert_pma(isl_set_get_space(stmt
->domain
),
1934 stmt
->domain
= isl_set_preimage_pw_multi_aff(stmt
->domain
, pma
);
1936 if (args_insert_access(&stmt
->n_arg
, &stmt
->args
, test
) < 0)
1939 isl_multi_pw_aff_free(test
);
1942 isl_multi_pw_aff_free(test
);
1943 return pet_stmt_free(stmt
);
1946 /* Does "scop" have a skip condition of the given "type"?
1948 int pet_scop_has_skip(struct pet_scop
*scop
, enum pet_skip type
)
1950 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
1954 return ext
->skip
[type
] != NULL
;
1957 /* Does "scop" have a skip condition of the given "type" that
1958 * is an affine expression?
1960 int pet_scop_has_affine_skip(struct pet_scop
*scop
, enum pet_skip type
)
1962 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
1966 if (!ext
->skip
[type
])
1968 return multi_pw_aff_is_affine(ext
->skip
[type
]);
1971 /* Does "scop" have a skip condition of the given "type" that
1972 * is not an affine expression?
1974 int pet_scop_has_var_skip(struct pet_scop
*scop
, enum pet_skip type
)
1976 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
1981 if (!ext
->skip
[type
])
1983 aff
= multi_pw_aff_is_affine(ext
->skip
[type
]);
1989 /* Does "scop" have a skip condition of the given "type" that
1990 * is affine and holds on the entire domain?
1992 int pet_scop_has_universal_skip(struct pet_scop
*scop
, enum pet_skip type
)
1994 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
2000 is_aff
= pet_scop_has_affine_skip(scop
, type
);
2001 if (is_aff
< 0 || !is_aff
)
2004 pa
= isl_multi_pw_aff_get_pw_aff(ext
->skip
[type
], 0);
2005 set
= isl_pw_aff_non_zero_set(pa
);
2006 is_univ
= isl_set_plain_is_universe(set
);
2012 /* Replace scop->skip[type] by "skip".
2014 struct pet_scop
*pet_scop_set_skip(struct pet_scop
*scop
,
2015 enum pet_skip type
, __isl_take isl_multi_pw_aff
*skip
)
2017 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
2022 isl_multi_pw_aff_free(ext
->skip
[type
]);
2023 ext
->skip
[type
] = skip
;
2027 isl_multi_pw_aff_free(skip
);
2028 return pet_scop_free(scop
);
2031 /* Return a copy of scop->skip[type].
2033 __isl_give isl_multi_pw_aff
*pet_scop_get_skip(struct pet_scop
*scop
,
2036 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
2041 return isl_multi_pw_aff_copy(ext
->skip
[type
]);
2044 /* Assuming scop->skip[type] is an affine expression,
2045 * return the constraints on the parameters for which the skip condition
2048 __isl_give isl_set
*pet_scop_get_affine_skip_domain(struct pet_scop
*scop
,
2051 isl_multi_pw_aff
*skip
;
2054 skip
= pet_scop_get_skip(scop
, type
);
2055 pa
= isl_multi_pw_aff_get_pw_aff(skip
, 0);
2056 isl_multi_pw_aff_free(skip
);
2057 return isl_set_params(isl_pw_aff_non_zero_set(pa
));
2060 /* Return the identifier of the variable that is accessed by
2061 * the skip condition of the given type.
2063 * The skip condition is assumed not to be an affine condition.
2065 __isl_give isl_id
*pet_scop_get_skip_id(struct pet_scop
*scop
,
2068 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
2073 return isl_multi_pw_aff_get_tuple_id(ext
->skip
[type
], isl_dim_out
);
2076 /* Return an access pet_expr corresponding to the skip condition
2077 * of the given type.
2079 __isl_give pet_expr
*pet_scop_get_skip_expr(struct pet_scop
*scop
,
2082 return pet_expr_from_index(pet_scop_get_skip(scop
, type
));
2085 /* Drop the the skip condition scop->skip[type].
2087 void pet_scop_reset_skip(struct pet_scop
*scop
, enum pet_skip type
)
2089 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
2094 isl_multi_pw_aff_free(ext
->skip
[type
]);
2095 ext
->skip
[type
] = NULL
;
2098 /* Make the skip condition (if any) depend on the value of "test" being
2099 * equal to "satisfied".
2101 * We only support the case where the original skip condition is universal,
2102 * i.e., where skipping is unconditional, and where satisfied == 1.
2103 * In this case, the skip condition is changed to skip only when
2104 * "test" is equal to one.
2106 static struct pet_scop
*pet_scop_filter_skip(struct pet_scop
*scop
,
2107 enum pet_skip type
, __isl_keep isl_multi_pw_aff
*test
, int satisfied
)
2113 if (!pet_scop_has_skip(scop
, type
))
2117 is_univ
= pet_scop_has_universal_skip(scop
, type
);
2119 return pet_scop_free(scop
);
2120 if (satisfied
&& is_univ
) {
2121 isl_multi_pw_aff
*skip
;
2122 skip
= isl_multi_pw_aff_copy(test
);
2123 scop
= pet_scop_set_skip(scop
, type
, skip
);
2127 isl_die(isl_multi_pw_aff_get_ctx(test
), isl_error_internal
,
2128 "skip expression cannot be filtered",
2129 return pet_scop_free(scop
));
2135 /* Make all statements in "scop" depend on the value of "test"
2136 * being equal to "satisfied" by adjusting their domains.
2138 struct pet_scop
*pet_scop_filter(struct pet_scop
*scop
,
2139 __isl_take isl_multi_pw_aff
*test
, int satisfied
)
2143 scop
= pet_scop_filter_skip(scop
, pet_skip_now
, test
, satisfied
);
2144 scop
= pet_scop_filter_skip(scop
, pet_skip_later
, test
, satisfied
);
2149 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2150 scop
->stmts
[i
] = stmt_filter(scop
, scop
->stmts
[i
],
2151 isl_multi_pw_aff_copy(test
), satisfied
);
2152 if (!scop
->stmts
[i
])
2156 isl_multi_pw_aff_free(test
);
2159 isl_multi_pw_aff_free(test
);
2160 return pet_scop_free(scop
);
2163 /* Add all parameters in "expr" to "space" and return the result.
2165 static __isl_give isl_space
*expr_collect_params(__isl_keep pet_expr
*expr
,
2166 __isl_take isl_space
*space
)
2172 for (i
= 0; i
< expr
->n_arg
; ++i
)
2173 space
= expr_collect_params(expr
->args
[i
], space
);
2175 if (expr
->type
== pet_expr_access
)
2176 space
= isl_space_align_params(space
,
2177 isl_map_get_space(expr
->acc
.access
));
2181 pet_expr_free(expr
);
2182 return isl_space_free(space
);
2185 /* Add all parameters in "stmt" to "space" and return the result.
2187 static __isl_give isl_space
*stmt_collect_params(struct pet_stmt
*stmt
,
2188 __isl_take isl_space
*space
)
2193 return isl_space_free(space
);
2195 space
= isl_space_align_params(space
, isl_set_get_space(stmt
->domain
));
2196 space
= isl_space_align_params(space
,
2197 isl_map_get_space(stmt
->schedule
));
2198 for (i
= 0; i
< stmt
->n_arg
; ++i
)
2199 space
= expr_collect_params(stmt
->args
[i
], space
);
2200 space
= expr_collect_params(stmt
->body
, space
);
2205 /* Add all parameters in "array" to "space" and return the result.
2207 static __isl_give isl_space
*array_collect_params(struct pet_array
*array
,
2208 __isl_take isl_space
*space
)
2211 return isl_space_free(space
);
2213 space
= isl_space_align_params(space
,
2214 isl_set_get_space(array
->context
));
2215 space
= isl_space_align_params(space
, isl_set_get_space(array
->extent
));
2220 /* Add all parameters in "scop" to "space" and return the result.
2222 static __isl_give isl_space
*scop_collect_params(struct pet_scop
*scop
,
2223 __isl_take isl_space
*space
)
2228 return isl_space_free(space
);
2230 for (i
= 0; i
< scop
->n_array
; ++i
)
2231 space
= array_collect_params(scop
->arrays
[i
], space
);
2233 for (i
= 0; i
< scop
->n_stmt
; ++i
)
2234 space
= stmt_collect_params(scop
->stmts
[i
], space
);
2239 /* Add all parameters in "space" to the domain, schedule and
2240 * all access relations in "stmt".
2242 static struct pet_stmt
*stmt_propagate_params(struct pet_stmt
*stmt
,
2243 __isl_take isl_space
*space
)
2250 stmt
->domain
= isl_set_align_params(stmt
->domain
,
2251 isl_space_copy(space
));
2252 stmt
->schedule
= isl_map_align_params(stmt
->schedule
,
2253 isl_space_copy(space
));
2255 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
2256 stmt
->args
[i
] = pet_expr_align_params(stmt
->args
[i
],
2257 isl_space_copy(space
));
2261 stmt
->body
= pet_expr_align_params(stmt
->body
, isl_space_copy(space
));
2263 if (!stmt
->domain
|| !stmt
->schedule
|| !stmt
->body
)
2266 isl_space_free(space
);
2269 isl_space_free(space
);
2270 return pet_stmt_free(stmt
);
2273 /* Add all parameters in "space" to "array".
2275 static struct pet_array
*array_propagate_params(struct pet_array
*array
,
2276 __isl_take isl_space
*space
)
2281 array
->context
= isl_set_align_params(array
->context
,
2282 isl_space_copy(space
));
2283 array
->extent
= isl_set_align_params(array
->extent
,
2284 isl_space_copy(space
));
2285 if (array
->value_bounds
) {
2286 array
->value_bounds
= isl_set_align_params(array
->value_bounds
,
2287 isl_space_copy(space
));
2288 if (!array
->value_bounds
)
2292 if (!array
->context
|| !array
->extent
)
2295 isl_space_free(space
);
2298 isl_space_free(space
);
2299 return pet_array_free(array
);
2302 /* Add all parameters in "space" to "scop".
2304 static struct pet_scop
*scop_propagate_params(struct pet_scop
*scop
,
2305 __isl_take isl_space
*space
)
2312 for (i
= 0; i
< scop
->n_array
; ++i
) {
2313 scop
->arrays
[i
] = array_propagate_params(scop
->arrays
[i
],
2314 isl_space_copy(space
));
2315 if (!scop
->arrays
[i
])
2319 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2320 scop
->stmts
[i
] = stmt_propagate_params(scop
->stmts
[i
],
2321 isl_space_copy(space
));
2322 if (!scop
->stmts
[i
])
2326 isl_space_free(space
);
2329 isl_space_free(space
);
2330 return pet_scop_free(scop
);
2333 /* Update all isl_sets and isl_maps in "scop" such that they all
2334 * have the same parameters.
2336 struct pet_scop
*pet_scop_align_params(struct pet_scop
*scop
)
2343 space
= isl_set_get_space(scop
->context
);
2344 space
= scop_collect_params(scop
, space
);
2346 scop
->context
= isl_set_align_params(scop
->context
,
2347 isl_space_copy(space
));
2348 scop
= scop_propagate_params(scop
, space
);
2350 if (scop
&& !scop
->context
)
2351 return pet_scop_free(scop
);
2356 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
2357 * in "space" by a value equal to the corresponding parameter.
2359 static struct pet_stmt
*stmt_detect_parameter_accesses(struct pet_stmt
*stmt
,
2360 __isl_take isl_space
*space
)
2365 stmt
->body
= pet_expr_detect_parameter_accesses(stmt
->body
,
2366 isl_space_copy(space
));
2368 if (!stmt
->domain
|| !stmt
->schedule
|| !stmt
->body
)
2371 isl_space_free(space
);
2374 isl_space_free(space
);
2375 return pet_stmt_free(stmt
);
2378 /* Replace all accesses to (0D) arrays that correspond to one of the parameters
2379 * in "space" by a value equal to the corresponding parameter.
2381 static struct pet_scop
*scop_detect_parameter_accesses(struct pet_scop
*scop
,
2382 __isl_take isl_space
*space
)
2389 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2390 scop
->stmts
[i
] = stmt_detect_parameter_accesses(scop
->stmts
[i
],
2391 isl_space_copy(space
));
2392 if (!scop
->stmts
[i
])
2396 isl_space_free(space
);
2399 isl_space_free(space
);
2400 return pet_scop_free(scop
);
2403 /* Replace all accesses to (0D) arrays that correspond to any of
2404 * the parameters used in "scop" by a value equal
2405 * to the corresponding parameter.
2407 struct pet_scop
*pet_scop_detect_parameter_accesses(struct pet_scop
*scop
)
2414 space
= isl_set_get_space(scop
->context
);
2415 space
= scop_collect_params(scop
, space
);
2417 scop
= scop_detect_parameter_accesses(scop
, space
);
2422 /* Add the access relation of the access expression "expr" to "accesses" and
2423 * return the result.
2424 * The domain of the access relation is intersected with "domain".
2425 * If "tag" is set, then the access relation is tagged with
2426 * the corresponding reference identifier.
2428 static __isl_give isl_union_map
*expr_collect_access(__isl_keep pet_expr
*expr
,
2429 int tag
, __isl_take isl_union_map
*accesses
, __isl_keep isl_set
*domain
)
2433 access
= pet_expr_access_get_may_access(expr
);
2434 access
= isl_map_intersect_domain(access
, isl_set_copy(domain
));
2436 access
= pet_expr_tag_access(expr
, access
);
2437 return isl_union_map_add_map(accesses
, access
);
2440 /* Add all read access relations (if "read" is set) and/or all write
2441 * access relations (if "write" is set) to "accesses" and return the result.
2442 * The domains of the access relations are intersected with "domain".
2443 * If "tag" is set, then the access relations are tagged with
2444 * the corresponding reference identifiers.
2446 * If "must" is set, then we only add the accesses that are definitely
2447 * performed. Otherwise, we add all potential accesses.
2448 * In particular, if the access has any arguments, then if "must" is
2449 * set we currently skip the access completely. If "must" is not set,
2450 * we project out the values of the access arguments.
2452 static __isl_give isl_union_map
*expr_collect_accesses(
2453 __isl_keep pet_expr
*expr
, int read
, int write
, int must
, int tag
,
2454 __isl_take isl_union_map
*accesses
, __isl_keep isl_set
*domain
)
2461 return isl_union_map_free(accesses
);
2463 for (i
= 0; i
< expr
->n_arg
; ++i
)
2464 accesses
= expr_collect_accesses(expr
->args
[i
],
2465 read
, write
, must
, tag
, accesses
, domain
);
2467 if (expr
->type
== pet_expr_access
&& !pet_expr_is_affine(expr
) &&
2468 ((read
&& expr
->acc
.read
) || (write
&& expr
->acc
.write
)) &&
2469 (!must
|| expr
->n_arg
== 0)) {
2470 accesses
= expr_collect_access(expr
, tag
, accesses
, domain
);
2476 /* Collect and return all read access relations (if "read" is set)
2477 * and/or all write access relations (if "write" is set) in "stmt".
2478 * If "tag" is set, then the access relations are tagged with
2479 * the corresponding reference identifiers.
2480 * If "kill" is set, then "stmt" is a kill statement and we simply
2481 * add the argument of the kill operation.
2483 * If "must" is set, then we only add the accesses that are definitely
2484 * performed. Otherwise, we add all potential accesses.
2485 * In particular, if the statement has any arguments, then if "must" is
2486 * set we currently skip the statement completely. If "must" is not set,
2487 * we project out the values of the statement arguments.
2489 static __isl_give isl_union_map
*stmt_collect_accesses(struct pet_stmt
*stmt
,
2490 int read
, int write
, int kill
, int must
, int tag
,
2491 __isl_take isl_space
*dim
)
2493 isl_union_map
*accesses
;
2499 accesses
= isl_union_map_empty(dim
);
2501 if (must
&& stmt
->n_arg
> 0)
2504 domain
= isl_set_copy(stmt
->domain
);
2505 if (isl_set_is_wrapping(domain
))
2506 domain
= isl_map_domain(isl_set_unwrap(domain
));
2509 accesses
= expr_collect_access(stmt
->body
->args
[0], tag
,
2512 accesses
= expr_collect_accesses(stmt
->body
, read
, write
,
2513 must
, tag
, accesses
, domain
);
2514 isl_set_free(domain
);
2519 /* Is "stmt" an assignment statement?
2521 int pet_stmt_is_assign(struct pet_stmt
*stmt
)
2525 if (stmt
->body
->type
!= pet_expr_op
)
2527 return stmt
->body
->op
== pet_op_assign
;
2530 /* Is "stmt" a kill statement?
2532 int pet_stmt_is_kill(struct pet_stmt
*stmt
)
2536 if (stmt
->body
->type
!= pet_expr_op
)
2538 return stmt
->body
->op
== pet_op_kill
;
2541 /* Is "stmt" an assume statement?
2543 int pet_stmt_is_assume(struct pet_stmt
*stmt
)
2545 if (stmt
->body
->type
!= pet_expr_op
)
2547 return stmt
->body
->op
== pet_op_assume
;
2550 /* Compute a mapping from all arrays (of structs) in scop
2551 * to their innermost arrays.
2553 * In particular, for each array of a primitive type, the result
2554 * contains the identity mapping on that array.
2555 * For each array involving member accesses, the result
2556 * contains a mapping from the elements of any intermediate array of structs
2557 * to all corresponding elements of the innermost nested arrays.
2559 static __isl_give isl_union_map
*compute_to_inner(struct pet_scop
*scop
)
2562 isl_union_map
*to_inner
;
2564 to_inner
= isl_union_map_empty(isl_set_get_space(scop
->context
));
2566 for (i
= 0; i
< scop
->n_array
; ++i
) {
2567 struct pet_array
*array
= scop
->arrays
[i
];
2569 isl_map
*map
, *gist
;
2571 if (array
->element_is_record
)
2574 map
= isl_set_identity(isl_set_copy(array
->extent
));
2576 set
= isl_map_domain(isl_map_copy(map
));
2577 gist
= isl_map_copy(map
);
2578 gist
= isl_map_gist_domain(gist
, isl_set_copy(set
));
2579 to_inner
= isl_union_map_add_map(to_inner
, gist
);
2581 while (set
&& isl_set_is_wrapping(set
)) {
2585 id
= isl_set_get_tuple_id(set
);
2586 wrapped
= isl_set_unwrap(set
);
2587 wrapped
= isl_map_domain_map(wrapped
);
2588 wrapped
= isl_map_set_tuple_id(wrapped
, isl_dim_in
, id
);
2589 map
= isl_map_apply_domain(map
, wrapped
);
2590 set
= isl_map_domain(isl_map_copy(map
));
2591 gist
= isl_map_copy(map
);
2592 gist
= isl_map_gist_domain(gist
, isl_set_copy(set
));
2593 to_inner
= isl_union_map_add_map(to_inner
, gist
);
2603 /* Collect and return all read access relations (if "read" is set)
2604 * and/or all write access relations (if "write" is set) in "scop".
2605 * If "kill" is set, then we only add the arguments of kill operations.
2606 * If "must" is set, then we only add the accesses that are definitely
2607 * performed. Otherwise, we add all potential accesses.
2608 * If "tag" is set, then the access relations are tagged with
2609 * the corresponding reference identifiers.
2610 * For accesses to structures, the returned access relation accesses
2611 * all individual fields in the structures.
2613 static __isl_give isl_union_map
*scop_collect_accesses(struct pet_scop
*scop
,
2614 int read
, int write
, int kill
, int must
, int tag
)
2617 isl_union_map
*accesses
;
2618 isl_union_set
*arrays
;
2619 isl_union_map
*to_inner
;
2624 accesses
= isl_union_map_empty(isl_set_get_space(scop
->context
));
2626 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2627 struct pet_stmt
*stmt
= scop
->stmts
[i
];
2628 isl_union_map
*accesses_i
;
2631 if (kill
&& !pet_stmt_is_kill(stmt
))
2634 space
= isl_set_get_space(scop
->context
);
2635 accesses_i
= stmt_collect_accesses(stmt
, read
, write
, kill
,
2637 accesses
= isl_union_map_union(accesses
, accesses_i
);
2640 arrays
= isl_union_set_empty(isl_union_map_get_space(accesses
));
2641 for (i
= 0; i
< scop
->n_array
; ++i
) {
2642 isl_set
*extent
= isl_set_copy(scop
->arrays
[i
]->extent
);
2643 arrays
= isl_union_set_add_set(arrays
, extent
);
2645 accesses
= isl_union_map_intersect_range(accesses
, arrays
);
2647 to_inner
= compute_to_inner(scop
);
2648 accesses
= isl_union_map_apply_range(accesses
, to_inner
);
2653 /* Collect all potential read access relations.
2655 __isl_give isl_union_map
*pet_scop_collect_may_reads(struct pet_scop
*scop
)
2657 return scop_collect_accesses(scop
, 1, 0, 0, 0, 0);
2660 /* Collect all potential write access relations.
2662 __isl_give isl_union_map
*pet_scop_collect_may_writes(struct pet_scop
*scop
)
2664 return scop_collect_accesses(scop
, 0, 1, 0, 0, 0);
2667 /* Collect all definite write access relations.
2669 __isl_give isl_union_map
*pet_scop_collect_must_writes(struct pet_scop
*scop
)
2671 return scop_collect_accesses(scop
, 0, 1, 0, 1, 0);
2674 /* Collect all definite kill access relations.
2676 __isl_give isl_union_map
*pet_scop_collect_must_kills(struct pet_scop
*scop
)
2678 return scop_collect_accesses(scop
, 0, 0, 1, 1, 0);
2681 /* Collect all tagged potential read access relations.
2683 __isl_give isl_union_map
*pet_scop_collect_tagged_may_reads(
2684 struct pet_scop
*scop
)
2686 return scop_collect_accesses(scop
, 1, 0, 0, 0, 1);
2689 /* Collect all tagged potential write access relations.
2691 __isl_give isl_union_map
*pet_scop_collect_tagged_may_writes(
2692 struct pet_scop
*scop
)
2694 return scop_collect_accesses(scop
, 0, 1, 0, 0, 1);
2697 /* Collect all tagged definite write access relations.
2699 __isl_give isl_union_map
*pet_scop_collect_tagged_must_writes(
2700 struct pet_scop
*scop
)
2702 return scop_collect_accesses(scop
, 0, 1, 0, 1, 1);
2705 /* Collect all tagged definite kill access relations.
2707 __isl_give isl_union_map
*pet_scop_collect_tagged_must_kills(
2708 struct pet_scop
*scop
)
2710 return scop_collect_accesses(scop
, 0, 0, 1, 1, 1);
2713 /* Collect and return the union of iteration domains in "scop".
2715 __isl_give isl_union_set
*pet_scop_collect_domains(struct pet_scop
*scop
)
2719 isl_union_set
*domain
;
2724 domain
= isl_union_set_empty(isl_set_get_space(scop
->context
));
2726 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2727 domain_i
= isl_set_copy(scop
->stmts
[i
]->domain
);
2728 domain
= isl_union_set_add_set(domain
, domain_i
);
2734 /* Collect and return the schedules of the statements in "scop".
2735 * The range is normalized to the maximal number of scheduling
2738 __isl_give isl_union_map
*pet_scop_collect_schedule(struct pet_scop
*scop
)
2741 isl_map
*schedule_i
;
2742 isl_union_map
*schedule
;
2743 int depth
, max_depth
= 0;
2748 schedule
= isl_union_map_empty(isl_set_get_space(scop
->context
));
2750 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2751 depth
= isl_map_dim(scop
->stmts
[i
]->schedule
, isl_dim_out
);
2752 if (depth
> max_depth
)
2756 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2757 schedule_i
= isl_map_copy(scop
->stmts
[i
]->schedule
);
2758 depth
= isl_map_dim(schedule_i
, isl_dim_out
);
2759 schedule_i
= isl_map_add_dims(schedule_i
, isl_dim_out
,
2761 for (j
= depth
; j
< max_depth
; ++j
)
2762 schedule_i
= isl_map_fix_si(schedule_i
,
2764 schedule
= isl_union_map_add_map(schedule
, schedule_i
);
2770 /* Does statement "stmt" write to "id"?
2772 static int stmt_writes(struct pet_stmt
*stmt
, __isl_keep isl_id
*id
)
2774 return pet_expr_writes(stmt
->body
, id
);
2777 /* Is there any write access in "scop" that accesses "id"?
2779 int pet_scop_writes(struct pet_scop
*scop
, __isl_keep isl_id
*id
)
2786 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2787 int writes
= stmt_writes(scop
->stmts
[i
], id
);
2788 if (writes
< 0 || writes
)
2795 /* Add a reference identifier to all access expressions in "stmt".
2796 * "n_ref" points to an integer that contains the sequence number
2797 * of the next reference.
2799 static struct pet_stmt
*stmt_add_ref_ids(struct pet_stmt
*stmt
, int *n_ref
)
2806 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
2807 stmt
->args
[i
] = pet_expr_add_ref_ids(stmt
->args
[i
], n_ref
);
2809 return pet_stmt_free(stmt
);
2812 stmt
->body
= pet_expr_add_ref_ids(stmt
->body
, n_ref
);
2814 return pet_stmt_free(stmt
);
2819 /* Add a reference identifier to all access expressions in "scop".
2821 struct pet_scop
*pet_scop_add_ref_ids(struct pet_scop
*scop
)
2830 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2831 scop
->stmts
[i
] = stmt_add_ref_ids(scop
->stmts
[i
], &n_ref
);
2832 if (!scop
->stmts
[i
])
2833 return pet_scop_free(scop
);
2839 /* Reset the user pointer on all parameter ids in "array".
2841 static struct pet_array
*array_anonymize(struct pet_array
*array
)
2846 array
->context
= isl_set_reset_user(array
->context
);
2847 array
->extent
= isl_set_reset_user(array
->extent
);
2848 if (!array
->context
|| !array
->extent
)
2849 return pet_array_free(array
);
2854 /* Reset the user pointer on all parameter and tuple ids in "stmt".
2856 static struct pet_stmt
*stmt_anonymize(struct pet_stmt
*stmt
)
2865 stmt
->domain
= isl_set_reset_user(stmt
->domain
);
2866 stmt
->schedule
= isl_map_reset_user(stmt
->schedule
);
2867 if (!stmt
->domain
|| !stmt
->schedule
)
2868 return pet_stmt_free(stmt
);
2870 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
2871 stmt
->args
[i
] = pet_expr_anonymize(stmt
->args
[i
]);
2873 return pet_stmt_free(stmt
);
2876 stmt
->body
= pet_expr_anonymize(stmt
->body
);
2878 return pet_stmt_free(stmt
);
2883 /* Reset the user pointer on the tuple ids and all parameter ids
2886 static struct pet_implication
*implication_anonymize(
2887 struct pet_implication
*implication
)
2892 implication
->extension
= isl_map_reset_user(implication
->extension
);
2893 if (!implication
->extension
)
2894 return pet_implication_free(implication
);
2899 /* Reset the user pointer on all parameter and tuple ids in "scop".
2901 struct pet_scop
*pet_scop_anonymize(struct pet_scop
*scop
)
2908 scop
->context
= isl_set_reset_user(scop
->context
);
2909 scop
->context_value
= isl_set_reset_user(scop
->context_value
);
2910 if (!scop
->context
|| !scop
->context_value
)
2911 return pet_scop_free(scop
);
2913 for (i
= 0; i
< scop
->n_array
; ++i
) {
2914 scop
->arrays
[i
] = array_anonymize(scop
->arrays
[i
]);
2915 if (!scop
->arrays
[i
])
2916 return pet_scop_free(scop
);
2919 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
2920 scop
->stmts
[i
] = stmt_anonymize(scop
->stmts
[i
]);
2921 if (!scop
->stmts
[i
])
2922 return pet_scop_free(scop
);
2925 for (i
= 0; i
< scop
->n_implication
; ++i
) {
2926 scop
->implications
[i
] =
2927 implication_anonymize(scop
->implications
[i
]);
2928 if (!scop
->implications
[i
])
2929 return pet_scop_free(scop
);
2935 /* Compute the gist of the iteration domain and all access relations
2936 * of "stmt" based on the constraints on the parameters specified by "context"
2937 * and the constraints on the values of nested accesses specified
2938 * by "value_bounds".
2940 static struct pet_stmt
*stmt_gist(struct pet_stmt
*stmt
,
2941 __isl_keep isl_set
*context
, __isl_keep isl_union_map
*value_bounds
)
2949 domain
= isl_set_copy(stmt
->domain
);
2950 if (stmt
->n_arg
> 0)
2951 domain
= isl_map_domain(isl_set_unwrap(domain
));
2953 domain
= isl_set_intersect_params(domain
, isl_set_copy(context
));
2955 for (i
= 0; i
< stmt
->n_arg
; ++i
) {
2956 stmt
->args
[i
] = pet_expr_gist(stmt
->args
[i
],
2957 domain
, value_bounds
);
2962 stmt
->body
= pet_expr_gist(stmt
->body
, domain
, value_bounds
);
2966 isl_set_free(domain
);
2968 domain
= isl_set_universe(pet_stmt_get_space(stmt
));
2969 domain
= isl_set_intersect_params(domain
, isl_set_copy(context
));
2970 if (stmt
->n_arg
> 0)
2971 domain
= pet_value_bounds_apply(domain
, stmt
->n_arg
, stmt
->args
,
2973 stmt
->domain
= isl_set_gist(stmt
->domain
, domain
);
2975 return pet_stmt_free(stmt
);
2979 isl_set_free(domain
);
2980 return pet_stmt_free(stmt
);
2983 /* Compute the gist of the extent of the array
2984 * based on the constraints on the parameters specified by "context".
2986 static struct pet_array
*array_gist(struct pet_array
*array
,
2987 __isl_keep isl_set
*context
)
2992 array
->extent
= isl_set_gist_params(array
->extent
,
2993 isl_set_copy(context
));
2995 return pet_array_free(array
);
3000 /* Compute the gist of all sets and relations in "scop"
3001 * based on the constraints on the parameters specified by "scop->context"
3002 * and the constraints on the values of nested accesses specified
3003 * by "value_bounds".
3005 struct pet_scop
*pet_scop_gist(struct pet_scop
*scop
,
3006 __isl_keep isl_union_map
*value_bounds
)
3013 scop
->context
= isl_set_coalesce(scop
->context
);
3015 return pet_scop_free(scop
);
3017 for (i
= 0; i
< scop
->n_array
; ++i
) {
3018 scop
->arrays
[i
] = array_gist(scop
->arrays
[i
], scop
->context
);
3019 if (!scop
->arrays
[i
])
3020 return pet_scop_free(scop
);
3023 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
3024 scop
->stmts
[i
] = stmt_gist(scop
->stmts
[i
], scop
->context
,
3026 if (!scop
->stmts
[i
])
3027 return pet_scop_free(scop
);
3033 /* Intersect the context of "scop" with "context".
3034 * To ensure that we don't introduce any unnamed parameters in
3035 * the context of "scop", we first remove the unnamed parameters
3038 struct pet_scop
*pet_scop_restrict_context(struct pet_scop
*scop
,
3039 __isl_take isl_set
*context
)
3044 context
= pet_nested_remove_from_set(context
);
3045 scop
->context
= isl_set_intersect(scop
->context
, context
);
3047 return pet_scop_free(scop
);
3051 isl_set_free(context
);
3052 return pet_scop_free(scop
);
3055 /* Drop the current context of "scop". That is, replace the context
3056 * by a universal set.
3058 struct pet_scop
*pet_scop_reset_context(struct pet_scop
*scop
)
3065 space
= isl_set_get_space(scop
->context
);
3066 isl_set_free(scop
->context
);
3067 scop
->context
= isl_set_universe(space
);
3069 return pet_scop_free(scop
);
3074 /* Append "array" to the arrays of "scop".
3076 struct pet_scop
*pet_scop_add_array(struct pet_scop
*scop
,
3077 struct pet_array
*array
)
3080 struct pet_array
**arrays
;
3082 if (!array
|| !scop
)
3085 ctx
= isl_set_get_ctx(scop
->context
);
3086 arrays
= isl_realloc_array(ctx
, scop
->arrays
, struct pet_array
*,
3090 scop
->arrays
= arrays
;
3091 scop
->arrays
[scop
->n_array
] = array
;
3096 pet_array_free(array
);
3097 return pet_scop_free(scop
);
3100 /* Add an array with the given extent (range of "index") to the list
3101 * of arrays in "scop" and return the extended pet_scop.
3102 * "int_size" is the number of bytes needed to represent values of type "int".
3103 * The array is marked as attaining values 0 and 1 only and
3104 * as each element being assigned at most once.
3106 struct pet_scop
*pet_scop_add_boolean_array(struct pet_scop
*scop
,
3107 __isl_take isl_multi_pw_aff
*index
, int int_size
)
3111 struct pet_array
*array
;
3114 if (!scop
|| !index
)
3117 ctx
= isl_multi_pw_aff_get_ctx(index
);
3118 array
= isl_calloc_type(ctx
, struct pet_array
);
3122 access
= isl_map_from_multi_pw_aff(index
);
3123 array
->extent
= isl_map_range(access
);
3124 space
= isl_space_params_alloc(ctx
, 0);
3125 array
->context
= isl_set_universe(space
);
3126 space
= isl_space_set_alloc(ctx
, 0, 1);
3127 array
->value_bounds
= isl_set_universe(space
);
3128 array
->value_bounds
= isl_set_lower_bound_si(array
->value_bounds
,
3130 array
->value_bounds
= isl_set_upper_bound_si(array
->value_bounds
,
3132 array
->element_type
= strdup("int");
3133 array
->element_size
= int_size
;
3134 array
->uniquely_defined
= 1;
3136 if (!array
->extent
|| !array
->context
)
3137 array
= pet_array_free(array
);
3139 scop
= pet_scop_add_array(scop
, array
);
3143 isl_multi_pw_aff_free(index
);
3144 return pet_scop_free(scop
);
3147 /* Create and return an implication on filter values equal to "satisfied"
3148 * with extension "map".
3150 static struct pet_implication
*new_implication(__isl_take isl_map
*map
,
3154 struct pet_implication
*implication
;
3158 ctx
= isl_map_get_ctx(map
);
3159 implication
= isl_alloc_type(ctx
, struct pet_implication
);
3163 implication
->extension
= map
;
3164 implication
->satisfied
= satisfied
;
3172 /* Add an implication on filter values equal to "satisfied"
3173 * with extension "map" to "scop".
3175 struct pet_scop
*pet_scop_add_implication(struct pet_scop
*scop
,
3176 __isl_take isl_map
*map
, int satisfied
)
3179 struct pet_implication
*implication
;
3180 struct pet_implication
**implications
;
3182 implication
= new_implication(map
, satisfied
);
3183 if (!scop
|| !implication
)
3186 ctx
= isl_set_get_ctx(scop
->context
);
3187 implications
= isl_realloc_array(ctx
, scop
->implications
,
3188 struct pet_implication
*,
3189 scop
->n_implication
+ 1);
3192 scop
->implications
= implications
;
3193 scop
->implications
[scop
->n_implication
] = implication
;
3194 scop
->n_implication
++;
3198 pet_implication_free(implication
);
3199 return pet_scop_free(scop
);
3202 /* Given an access expression, check if it is data dependent.
3203 * If so, set *found and abort the search.
3205 static int is_data_dependent(__isl_keep pet_expr
*expr
, void *user
)
3209 if (pet_expr_get_n_arg(expr
) > 0) {
3217 /* Does "scop" contain any data dependent accesses?
3219 * Check the body of each statement for such accesses.
3221 int pet_scop_has_data_dependent_accesses(struct pet_scop
*scop
)
3229 for (i
= 0; i
< scop
->n_stmt
; ++i
) {
3230 int r
= pet_expr_foreach_access_expr(scop
->stmts
[i
]->body
,
3231 &is_data_dependent
, &found
);
3232 if (r
< 0 && !found
)
3241 /* Does "scop" contain and data dependent conditions?
3243 int pet_scop_has_data_dependent_conditions(struct pet_scop
*scop
)
3250 for (i
= 0; i
< scop
->n_stmt
; ++i
)
3251 if (scop
->stmts
[i
]->n_arg
> 0)
3257 /* Keep track of the "input" file inside the (extended) "scop".
3259 struct pet_scop
*pet_scop_set_input_file(struct pet_scop
*scop
, FILE *input
)
3261 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
3271 /* Print the original code corresponding to "scop" to printer "p".
3273 * pet_scop_print_original can only be called from
3274 * a pet_transform_C_source callback. This means that the input
3275 * file is stored in the extended scop and that the printer prints
3278 __isl_give isl_printer
*pet_scop_print_original(struct pet_scop
*scop
,
3279 __isl_take isl_printer
*p
)
3281 struct pet_scop_ext
*ext
= (struct pet_scop_ext
*) scop
;
3285 return isl_printer_free(p
);
3288 isl_die(isl_printer_get_ctx(p
), isl_error_invalid
,
3289 "no input file stored in scop",
3290 return isl_printer_free(p
));
3292 output
= isl_printer_get_file(p
);
3294 return isl_printer_free(p
);
3296 if (copy(ext
->input
, output
, scop
->start
, scop
->end
) < 0)
3297 return isl_printer_free(p
);