add pet_expr_access_get_dependent_access
[pet.git] / include / pet.h
blobf9cc5eaba8a5f4549e1a391384fed9fdf4c21e25
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 /* Does "expr" represent an affine expression? */
173 int pet_expr_is_affine(struct pet_expr *expr);
174 /* Return the identifier of the outer array accessed by "expr". */
175 __isl_give isl_id *pet_expr_access_get_id(struct pet_expr *expr);
177 /* Return the potential read access relation of access expression "expr". */
178 __isl_give isl_map *pet_expr_access_get_may_access(struct pet_expr *expr);
179 /* Return the definite access relation of access expression "expr". */
180 __isl_give isl_map *pet_expr_access_get_must_access(struct pet_expr *expr);
181 /* Return the argument dependent access relation of access expression "expr". */
182 __isl_give isl_map *pet_expr_access_get_dependent_access(struct pet_expr *expr);
183 /* Return the tagged potential read access relation of access "expr". */
184 __isl_give isl_map *pet_expr_access_get_tagged_may_access(
185 struct pet_expr *expr);
187 /* Call "fn" on each of the subexpressions of "expr" of type pet_expr_access. */
188 int pet_expr_foreach_access_expr(struct pet_expr *expr,
189 int (*fn)(struct pet_expr *expr, void *user), void *user);
191 void pet_expr_dump(struct pet_expr *expr);
193 /* If the statement has arguments, i.e., n_arg != 0, then
194 * "domain" is a wrapped map, mapping the iteration domain
195 * to the values of the arguments for which this statement
196 * is executed.
197 * Otherwise, it is simply the iteration domain.
199 * If one of the arguments is an access expression that accesses
200 * more than one element for a given iteration, then the constraints
201 * on the value of this argument (encoded in "domain") should be satisfied
202 * for all of those accessed elements.
204 struct pet_stmt {
205 int line;
206 isl_set *domain;
207 isl_map *schedule;
208 struct pet_expr *body;
210 unsigned n_arg;
211 struct pet_expr **args;
214 /* Return the iteration space of "stmt". */
215 __isl_give isl_space *pet_stmt_get_space(struct pet_stmt *stmt);
217 /* Is "stmt" an assignment statement? */
218 int pet_stmt_is_assign(struct pet_stmt *stmt);
219 /* Is "stmt" a kill statement? */
220 int pet_stmt_is_kill(struct pet_stmt *stmt);
222 /* Construct an associative array from reference identifiers of
223 * access expressions in "stmt" to the corresponding isl_ast_expr.
224 * Each index expression is first transformed through "fn_index"
225 * (if not NULL). Then an AST expression is generated using "build".
226 * Finally, the AST expression is transformed using "fn_expr"
227 * (if not NULL).
229 __isl_give isl_id_to_ast_expr *pet_stmt_build_ast_exprs(struct pet_stmt *stmt,
230 __isl_keep isl_ast_build *build,
231 __isl_give isl_multi_pw_aff *(*fn_index)(
232 __isl_take isl_multi_pw_aff *mpa, __isl_keep isl_id *id,
233 void *user), void *user_index,
234 __isl_give isl_ast_expr *(*fn_expr)(__isl_take isl_ast_expr *expr,
235 __isl_keep isl_id *id, void *user), void *user_expr);
237 /* Print "stmt" to "p".
239 * The access expressions in "stmt" are replaced by the isl_ast_expr
240 * associated to its reference identifier in "ref2expr".
242 __isl_give isl_printer *pet_stmt_print_body(struct pet_stmt *stmt,
243 __isl_take isl_printer *p, __isl_keep isl_id_to_ast_expr *ref2expr);
245 /* This structure represents a defined type.
246 * "name" is the name of the type, while "definition" is a string
247 * representation of its definition.
249 struct pet_type {
250 char *name;
251 char *definition;
254 /* context holds constraints on the parameter that ensure that
255 * this array has a valid (i.e., non-negative) size
257 * extent holds constraints on the indices
259 * value_bounds holds constraints on the elements of the array
260 * and may be NULL if no such constraints were specified by the user
262 * element_size is the size in bytes of each array element
263 * element_type is the type of the array elements.
264 * element_is_record is set if this type is a record type.
266 * live_out is set if the array appears in a live-out pragma
268 * if uniquely_defined is set then the array is written by a single access
269 * such that any element that is ever read
270 * is known to be assigned exactly once before the read
272 * declared is set if the array was declared somewhere inside the scop.
273 * exposed is set if the declared array is visible outside the scop.
275 struct pet_array {
276 isl_set *context;
277 isl_set *extent;
278 isl_set *value_bounds;
279 char *element_type;
280 int element_is_record;
281 int element_size;
282 int live_out;
283 int uniquely_defined;
284 int declared;
285 int exposed;
288 /* This structure represents an implication on a boolean filter.
289 * In particular, if the filter value of an element in the domain
290 * of "extension" is equal to "satisfied", then the filter values
291 * of the corresponding images in "extension" are also equal
292 * to "satisfied".
294 struct pet_implication {
295 int satisfied;
296 isl_map *extension;
299 /* The start and end fields contain the offsets in the input file
300 * of the scop, where end points to the first character after the scop.
301 * If the scop was detected based on scop and endscop pragmas, then
302 * the lines containing these pragmas are included in this range.
303 * Internally, end may be zero to indicate that no offset information is
304 * available (yet).
305 * The context describes the set of parameter values for which
306 * the scop can be executed.
307 * context_value describes assignments to the parameters (if any)
308 * outside of the scop.
310 * The n_type types define types that may be referenced from by the arrays.
312 * The n_implication implications describe implications on boolean filters.
314 struct pet_scop {
315 unsigned start;
316 unsigned end;
318 isl_set *context;
319 isl_set *context_value;
321 int n_type;
322 struct pet_type **types;
324 int n_array;
325 struct pet_array **arrays;
327 int n_stmt;
328 struct pet_stmt **stmts;
330 int n_implication;
331 struct pet_implication **implications;
334 /* Return a textual representation of the operator. */
335 const char *pet_op_str(enum pet_op_type op);
336 int pet_op_is_inc_dec(enum pet_op_type op);
338 /* Extract a pet_scop from a C source file.
339 * If function is not NULL, then the pet_scop is extracted from
340 * a function with that name.
342 struct pet_scop *pet_scop_extract_from_C_source(isl_ctx *ctx,
343 const char *filename, const char *function);
345 /* Transform the C source file "input" by rewriting each scop
346 * When autodetecting scops, at most one scop per function is rewritten.
347 * The transformed C code is written to "output".
349 int pet_transform_C_source(isl_ctx *ctx, const char *input, FILE *output,
350 __isl_give isl_printer *(*transform)(__isl_take isl_printer *p,
351 struct pet_scop *scop, void *user), void *user);
352 /* Given a scop and a printer passed to a pet_transform_C_source callback,
353 * print the original corresponding code to the printer.
355 __isl_give isl_printer *pet_scop_print_original(struct pet_scop *scop,
356 __isl_take isl_printer *p);
358 /* Update all isl_sets and isl_maps such that they all have the same
359 * parameters in the same order.
361 struct pet_scop *pet_scop_align_params(struct pet_scop *scop);
363 /* Does "scop" contain any data dependent accesses? */
364 int pet_scop_has_data_dependent_accesses(struct pet_scop *scop);
365 /* Does "scop" contain any data dependent conditions? */
366 int pet_scop_has_data_dependent_conditions(struct pet_scop *scop);
368 void pet_scop_dump(struct pet_scop *scop);
369 struct pet_scop *pet_scop_free(struct pet_scop *scop);
371 __isl_give isl_union_set *pet_scop_collect_domains(struct pet_scop *scop);
372 /* Collect all potential read access relations. */
373 __isl_give isl_union_map *pet_scop_collect_may_reads(struct pet_scop *scop);
374 /* Collect all tagged potential read access relations. */
375 __isl_give isl_union_map *pet_scop_collect_tagged_may_reads(
376 struct pet_scop *scop);
377 /* Collect all potential write access relations. */
378 __isl_give isl_union_map *pet_scop_collect_may_writes(struct pet_scop *scop);
379 /* Collect all definite write access relations. */
380 __isl_give isl_union_map *pet_scop_collect_must_writes(struct pet_scop *scop);
381 /* Collect all tagged potential write access relations. */
382 __isl_give isl_union_map *pet_scop_collect_tagged_may_writes(
383 struct pet_scop *scop);
384 /* Collect all tagged definite write access relations. */
385 __isl_give isl_union_map *pet_scop_collect_tagged_must_writes(
386 struct pet_scop *scop);
387 /* Collect all definite kill access relations. */
388 __isl_give isl_union_map *pet_scop_collect_must_kills(struct pet_scop *scop);
389 /* Collect all tagged definite kill access relations. */
390 __isl_give isl_union_map *pet_scop_collect_tagged_must_kills(
391 struct pet_scop *scop);
392 __isl_give isl_union_map *pet_scop_collect_schedule(struct pet_scop *scop);
394 #if defined(__cplusplus)
396 #endif
398 #endif