export pet_expr_foreach_access_expr
[pet.git] / include / pet.h
blob649960ac285d5ceed6ccfd984c5336c547d4ec9d
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>
13 #if defined(__cplusplus)
14 extern "C" {
15 #endif
17 struct pet_options;
18 ISL_ARG_DECL(pet_options, struct pet_options, pet_options_args)
20 /* If autodetect is set, any valid scop is extracted.
21 * Otherwise, the scop needs to be delimited by pragmas.
23 int pet_options_set_autodetect(isl_ctx *ctx, int val);
24 int pet_options_get_autodetect(isl_ctx *ctx);
26 int pet_options_set_detect_conditional_assignment(isl_ctx *ctx, int val);
27 int pet_options_get_detect_conditional_assignment(isl_ctx *ctx);
29 #define PET_OVERFLOW_AVOID 0
30 #define PET_OVERFLOW_IGNORE 1
31 int pet_options_set_signed_overflow(isl_ctx *ctx, int val);
32 int pet_options_get_signed_overflow(isl_ctx *ctx);
34 enum pet_expr_type {
35 pet_expr_access,
36 pet_expr_call,
37 pet_expr_cast,
38 pet_expr_int,
39 pet_expr_double,
40 pet_expr_op
43 enum pet_op_type {
44 /* only compound assignments operators before assignment */
45 pet_op_add_assign,
46 pet_op_sub_assign,
47 pet_op_mul_assign,
48 pet_op_div_assign,
49 pet_op_assign,
50 pet_op_add,
51 pet_op_sub,
52 pet_op_mul,
53 pet_op_div,
54 pet_op_mod,
55 pet_op_shl,
56 pet_op_shr,
57 pet_op_eq,
58 pet_op_ne,
59 pet_op_le,
60 pet_op_ge,
61 pet_op_lt,
62 pet_op_gt,
63 pet_op_minus,
64 pet_op_post_inc,
65 pet_op_post_dec,
66 pet_op_pre_inc,
67 pet_op_pre_dec,
68 pet_op_address_of,
69 pet_op_assume,
70 pet_op_kill,
71 pet_op_and,
72 pet_op_xor,
73 pet_op_or,
74 pet_op_not,
75 pet_op_land,
76 pet_op_lor,
77 pet_op_lnot,
78 pet_op_cond,
79 pet_op_last
82 /* Index into the pet_expr->args array when pet_expr->type == pet_expr_unary
84 enum pet_un_arg_type {
85 pet_un_arg
88 /* Indices into the pet_expr->args array when
89 * pet_expr->type == pet_expr_binary
91 enum pet_bin_arg_type {
92 pet_bin_lhs,
93 pet_bin_rhs
96 /* Indices into the pet_expr->args array when
97 * pet_expr->type == pet_expr_ternary
99 enum pet_ter_arg_type {
100 pet_ter_cond,
101 pet_ter_true,
102 pet_ter_false
105 /* d is valid when type == pet_expr_double
106 * i isl valid when type == pet_expr_int
107 * acc is valid when type == pet_expr_access
108 * name is valid when type == pet_expr_call
109 * type is valid when type == pet_expr_cast
110 * op is valid otherwise
112 * For each access expression inside the body of a statement, acc.ref_id
113 * is a unique reference identifier.
114 * acc.index represents the index expression, while acc.access
115 * represents the corresponding access relation.
116 * The output dimension of the index expression may be smaller
117 * than the number of dimensions of the accessed array.
118 * The target space of the access relation, on the other hand,
119 * is equal to the array space.
120 * Both acc.index and acc.access usually map an iteration space
121 * to a (partial) data space.
122 * If the access has arguments, however, then the domain of the
123 * mapping is a wrapped mapping from the iteration space
124 * to a space of dimensionality equal to the number of arguments.
125 * Each dimension in this space corresponds to the value of the
126 * corresponding argument.
128 * The ranges of the index expressions and access relations may
129 * also be wrapped relations, in which case the expression represents
130 * a member access, with the structure represented by the domain
131 * of this wrapped relation and the member represented by the range.
132 * In case of nested member accesses, the domain is itself a wrapped
133 * relation.
135 * If the data space is unnamed (and 1D), then it represents
136 * the set of integers. That is, the access represents a value that
137 * is equal to the index.
139 * A double is represented as both an (approximate) value "val" and
140 * a string representation "s".
142 struct pet_expr {
143 enum pet_expr_type type;
145 unsigned n_arg;
146 struct pet_expr **args;
148 union {
149 struct {
150 isl_id *ref_id;
151 isl_map *access;
152 isl_multi_pw_aff *index;
153 int read;
154 int write;
155 } acc;
156 enum pet_op_type op;
157 char *name;
158 char *type_name;
159 struct {
160 double val;
161 char *s;
162 } d;
163 isl_val *i;
167 struct pet_expr *pet_expr_free(struct pet_expr *expr);
169 /* Construct a (read) access pet_expr from an index expression. */
170 struct pet_expr *pet_expr_from_index(__isl_take isl_multi_pw_aff *index);
172 /* Return the potential read access relation of access expression "expr". */
173 __isl_give isl_map *pet_expr_access_get_may_access(struct pet_expr *expr);
174 /* Return the tagged potential read access relation of access "expr". */
175 __isl_give isl_map *pet_expr_access_get_tagged_may_access(
176 struct pet_expr *expr);
178 /* Call "fn" on each of the subexpressions of "expr" of type pet_expr_access. */
179 int pet_expr_foreach_access_expr(struct pet_expr *expr,
180 int (*fn)(struct pet_expr *expr, void *user), void *user);
182 /* If the statement has arguments, i.e., n_arg != 0, then
183 * "domain" is a wrapped map, mapping the iteration domain
184 * to the values of the arguments for which this statement
185 * is executed.
186 * Otherwise, it is simply the iteration domain.
188 * If one of the arguments is an access expression that accesses
189 * more than one element for a given iteration, then the constraints
190 * on the value of this argument (encoded in "domain") should be satisfied
191 * for all of those accessed elements.
193 struct pet_stmt {
194 int line;
195 isl_set *domain;
196 isl_map *schedule;
197 struct pet_expr *body;
199 unsigned n_arg;
200 struct pet_expr **args;
203 /* Return the iteration space of "stmt". */
204 __isl_give isl_space *pet_stmt_get_space(struct pet_stmt *stmt);
206 /* Is "stmt" an assignment statement? */
207 int pet_stmt_is_assign(struct pet_stmt *stmt);
208 /* Is "stmt" a kill statement? */
209 int pet_stmt_is_kill(struct pet_stmt *stmt);
211 /* Construct an associative array from reference identifiers of
212 * access expressions in "stmt" to the corresponding isl_ast_expr.
213 * Each index expression is first transformed through "fn_index"
214 * (if not NULL). Then an AST expression is generated using "build".
215 * Finally, the AST expression is transformed using "fn_expr"
216 * (if not NULL).
218 __isl_give isl_id_to_ast_expr *pet_stmt_build_ast_exprs(struct pet_stmt *stmt,
219 __isl_keep isl_ast_build *build,
220 __isl_give isl_multi_pw_aff *(*fn_index)(
221 __isl_take isl_multi_pw_aff *mpa, __isl_keep isl_id *id,
222 void *user), void *user_index,
223 __isl_give isl_ast_expr *(*fn_expr)(__isl_take isl_ast_expr *expr,
224 __isl_keep isl_id *id, void *user), void *user_expr);
226 /* Print "stmt" to "p".
228 * The access expressions in "stmt" are replaced by the isl_ast_expr
229 * associated to its reference identifier in "ref2expr".
231 __isl_give isl_printer *pet_stmt_print_body(struct pet_stmt *stmt,
232 __isl_take isl_printer *p, __isl_keep isl_id_to_ast_expr *ref2expr);
234 /* This structure represents a defined type.
235 * "name" is the name of the type, while "definition" is a string
236 * representation of its definition.
238 struct pet_type {
239 char *name;
240 char *definition;
243 /* context holds constraints on the parameter that ensure that
244 * this array has a valid (i.e., non-negative) size
246 * extent holds constraints on the indices
248 * value_bounds holds constraints on the elements of the array
249 * and may be NULL if no such constraints were specified by the user
251 * element_size is the size in bytes of each array element
252 * element_type is the type of the array elements.
253 * element_is_record is set if this type is a record type.
255 * live_out is set if the array appears in a live-out pragma
257 * if uniquely_defined is set then the array is written by a single access
258 * such that any element that is ever read
259 * is known to be assigned exactly once before the read
261 * declared is set if the array was declared somewhere inside the scop.
262 * exposed is set if the declared array is visible outside the scop.
264 struct pet_array {
265 isl_set *context;
266 isl_set *extent;
267 isl_set *value_bounds;
268 char *element_type;
269 int element_is_record;
270 int element_size;
271 int live_out;
272 int uniquely_defined;
273 int declared;
274 int exposed;
277 /* This structure represents an implication on a boolean filter.
278 * In particular, if the filter value of an element in the domain
279 * of "extension" is equal to "satisfied", then the filter values
280 * of the corresponding images in "extension" are also equal
281 * to "satisfied".
283 struct pet_implication {
284 int satisfied;
285 isl_map *extension;
288 /* The start and end fields contain the offsets in the input file
289 * of the scop, where end points to the first character after the scop.
290 * If the scop was detected based on scop and endscop pragmas, then
291 * the lines containing these pragmas are included in this range.
292 * Internally, end may be zero to indicate that no offset information is
293 * available (yet).
294 * The context describes the set of parameter values for which
295 * the scop can be executed.
296 * context_value describes assignments to the parameters (if any)
297 * outside of the scop.
299 * The n_type types define types that may be referenced from by the arrays.
301 * The n_implication implications describe implications on boolean filters.
303 struct pet_scop {
304 unsigned start;
305 unsigned end;
307 isl_set *context;
308 isl_set *context_value;
310 int n_type;
311 struct pet_type **types;
313 int n_array;
314 struct pet_array **arrays;
316 int n_stmt;
317 struct pet_stmt **stmts;
319 int n_implication;
320 struct pet_implication **implications;
323 /* Return a textual representation of the operator. */
324 const char *pet_op_str(enum pet_op_type op);
325 int pet_op_is_inc_dec(enum pet_op_type op);
327 /* Extract a pet_scop from a C source file.
328 * If function is not NULL, then the pet_scop is extracted from
329 * a function with that name.
331 struct pet_scop *pet_scop_extract_from_C_source(isl_ctx *ctx,
332 const char *filename, const char *function);
334 /* Transform the C source file "input" by rewriting each scop
335 * When autodetecting scops, at most one scop per function is rewritten.
336 * The transformed C code is written to "output".
338 int pet_transform_C_source(isl_ctx *ctx, const char *input, FILE *output,
339 __isl_give isl_printer *(*transform)(__isl_take isl_printer *p,
340 struct pet_scop *scop, void *user), void *user);
341 /* Given a scop and a printer passed to a pet_transform_C_source callback,
342 * print the original corresponding code to the printer.
344 __isl_give isl_printer *pet_scop_print_original(struct pet_scop *scop,
345 __isl_take isl_printer *p);
347 /* Update all isl_sets and isl_maps such that they all have the same
348 * parameters in the same order.
350 struct pet_scop *pet_scop_align_params(struct pet_scop *scop);
352 /* Does "scop" contain any data dependent accesses? */
353 int pet_scop_has_data_dependent_accesses(struct pet_scop *scop);
354 /* Does "scop" contain any data dependent conditions? */
355 int pet_scop_has_data_dependent_conditions(struct pet_scop *scop);
357 void pet_scop_dump(struct pet_scop *scop);
358 struct pet_scop *pet_scop_free(struct pet_scop *scop);
360 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop);
361 /* Collect all potential read access relations. */
362 __isl_give isl_union_map *pet_scop_collect_may_reads(struct pet_scop *scop);
363 /* Collect all tagged potential read access relations. */
364 __isl_give isl_union_map *pet_scop_collect_tagged_may_reads(
365 struct pet_scop *scop);
366 /* Collect all potential write access relations. */
367 __isl_give isl_union_map *pet_scop_collect_may_writes(struct pet_scop *scop);
368 /* Collect all definite write access relations. */
369 __isl_give isl_union_map *pet_scop_collect_must_writes(struct pet_scop *scop);
370 /* Collect all tagged potential write access relations. */
371 __isl_give isl_union_map *pet_scop_collect_tagged_may_writes(
372 struct pet_scop *scop);
373 /* Collect all tagged definite write access relations. */
374 __isl_give isl_union_map *pet_scop_collect_tagged_must_writes(
375 struct pet_scop *scop);
376 /* Collect all definite kill access relations. */
377 __isl_give isl_union_map *pet_scop_collect_must_kills(struct pet_scop *scop);
378 /* Collect all tagged definite kill access relations. */
379 __isl_give isl_union_map *pet_scop_collect_tagged_must_kills(
380 struct pet_scop *scop);
381 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop);
383 #if defined(__cplusplus)
385 #endif
387 #endif