pet_check_code: dump iteration domains if they are different
[pet.git] / pet_check_code.c
blobd7740fbc57f6751fff3d9a89e1eadc7ddc080ff9
1 /*
2 * Copyright 2012-2014 Ecole Normale Superieure. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following
13 * disclaimer in the documentation and/or other materials provided
14 * with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY ECOLE NORMALE SUPERIEURE ''AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ECOLE NORMALE SUPERIEURE OR
20 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * The views and conclusions contained in the software and documentation
29 * are those of the authors and should not be interpreted as
30 * representing official policies, either expressed or implied, of
31 * Ecole Normale Superieure.
34 #include <assert.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <isl/arg.h>
38 #include <isl/aff.h>
39 #include <isl/options.h>
40 #include <isl/set.h>
41 #include <isl/union_map.h>
42 #include <isl/id_to_pw_aff.h>
43 #include <pet.h>
45 struct options {
46 struct isl_options *isl;
47 struct pet_options *pet;
48 char *schedule;
49 char *code;
52 ISL_ARGS_START(struct options, options_args)
53 ISL_ARG_CHILD(struct options, isl, "isl", &isl_options_args, "isl options")
54 ISL_ARG_CHILD(struct options, pet, NULL, &pet_options_args, "pet options")
55 ISL_ARG_ARG(struct options, schedule, "schedule", NULL)
56 ISL_ARG_ARG(struct options, code, "code", NULL)
57 ISL_ARGS_END
59 ISL_ARG_DEF(options, struct options, options_args)
61 static __isl_give isl_pw_aff *expr_extract_pw_aff(struct pet_expr *expr,
62 __isl_keep isl_id_to_pw_aff *assignments);
64 /* Extract an affine expression from the call to floord in "expr",
65 * possibly exploiting "assignments".
67 static __isl_give isl_pw_aff *expr_extract_floord(struct pet_expr *expr,
68 __isl_keep isl_id_to_pw_aff *assignments)
70 isl_pw_aff *lhs, *rhs;
72 lhs = expr_extract_pw_aff(expr->args[0], assignments);
73 rhs = expr_extract_pw_aff(expr->args[1], assignments);
74 return isl_pw_aff_floor(isl_pw_aff_div(lhs, rhs));
77 /* Extract an affine expression from the call in "expr",
78 * possibly exploiting "assignments".
80 * We only support calls to the "floord" function for now.
82 static __isl_give isl_pw_aff *call_expr_extract_pw_aff(struct pet_expr *expr,
83 __isl_keep isl_id_to_pw_aff *assignments)
85 assert(!strcmp(expr->name, "floord"));
87 return expr_extract_floord(expr, assignments);
90 /* Is the variable accessed by "index" assigned in "assignments"?
92 * The assignments map variable identifiers to functions of the form
94 * { domain -> value }
96 static int is_assigned(__isl_keep isl_multi_pw_aff *index,
97 __isl_keep isl_id_to_pw_aff *assignments)
99 isl_id *var;
100 int assigned;
102 var = isl_multi_pw_aff_get_tuple_id(index, isl_dim_out);
103 assigned = isl_id_to_pw_aff_has(assignments, var);
104 isl_id_free(var);
106 return assigned;
109 /* Apply the appropriate assignment in "assignments"
110 * to the index expression "index".
112 * "index" is of the form
114 * { access_domain -> variable }
116 * "assignments" maps variable identifiers to functions of the form
118 * { assignment_domain -> value }
120 * We assume the assignment precedes the access in the code.
121 * In particular, we assume that the loops around the assignment
122 * are the same as the first loops around the access.
124 * We compute
126 * { access_domain -> assignment_domain }
128 * equating the iterators of assignment_domain to the corresponding iterators
129 * in access_domain and then plug that into the assigned value, obtaining
131 * { access_domain -> value }
133 static __isl_give isl_pw_aff *apply_assignment(
134 __isl_take isl_multi_pw_aff *index,
135 __isl_keep isl_id_to_pw_aff *assignments)
137 isl_id *id;
138 isl_set *dom;
139 isl_pw_aff *val;
140 isl_multi_aff *ma;
141 isl_space *space, *dom_space;
142 isl_local_space *ls;
143 int i, n;
145 id = isl_multi_pw_aff_get_tuple_id(index, isl_dim_out);
146 dom = isl_multi_pw_aff_domain(index);
147 val = isl_id_to_pw_aff_get(assignments, id);
148 space = isl_pw_aff_get_domain_space(val);
149 dom_space = isl_set_get_space(dom);
150 space = isl_space_map_from_domain_and_range(dom_space, space);
151 ma = isl_multi_aff_zero(space);
152 ls = isl_local_space_from_space(isl_set_get_space(dom));
153 n = isl_multi_aff_dim(ma, isl_dim_out);
154 for (i = 0; i < n; ++i) {
155 isl_aff *aff;
157 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
158 isl_dim_set, i);
159 ma = isl_multi_aff_set_aff(ma, i, aff);
161 isl_local_space_free(ls);
163 val = isl_pw_aff_pullback_multi_aff(val, ma);
164 val = isl_pw_aff_intersect_domain(val, dom);
166 return val;
169 /* Extract an affine expression from the access to a named space in "index",
170 * possibly exploiting "assignments".
172 * If the variable has been assigned a value, we return the corresponding
173 * assignment. Otherwise, we assume we are accessing a 0D space and
174 * we turn that into an expression equal to a parameter of the same name.
176 static __isl_give isl_pw_aff *resolve_access(__isl_take isl_multi_pw_aff *index,
177 __isl_keep isl_id_to_pw_aff *assignments)
179 isl_id *id;
180 isl_set *dom;
181 isl_aff *aff;
182 isl_local_space *ls;
183 isl_pw_aff *pa;
185 if (is_assigned(index, assignments))
186 return apply_assignment(index, assignments);
188 id = isl_multi_pw_aff_get_tuple_id(index, isl_dim_out);
189 dom = isl_multi_pw_aff_domain(index);
190 dom = isl_set_insert_dims(dom, isl_dim_param, 0, 1);
191 dom = isl_set_set_dim_id(dom, isl_dim_param, 0, id);
192 ls = isl_local_space_from_space(isl_set_get_space(dom));
193 aff = isl_aff_var_on_domain(ls, isl_dim_param, 0);
194 pa = isl_pw_aff_alloc(dom, aff);
196 return pa;
199 /* Extract an affine expression from the access expression "expr",
200 * possibly exploiting "assignments".
202 * If we are accessing a (1D) anonymous space, then we are actually
203 * computing an affine expression and we simply return that expression.
204 * Otherwise, we try and convert the access to an affine expression in
205 * resolve_access().
207 static __isl_give isl_pw_aff *access_expr_extract_pw_aff(struct pet_expr *expr,
208 __isl_keep isl_id_to_pw_aff *assignments)
210 isl_pw_aff *pa;
212 if (isl_multi_pw_aff_has_tuple_id(expr->acc.index, isl_dim_out)) {
213 isl_multi_pw_aff *index;
214 index = isl_multi_pw_aff_copy(expr->acc.index);
215 pa = resolve_access(index, assignments);
216 } else
217 pa = isl_multi_pw_aff_get_pw_aff(expr->acc.index, 0);
218 return pa;
221 /* Extract an affine expression from "expr", possibly exploiting "assignments",
222 * in the form of an isl_pw_aff.
224 * We only handle the kinds of expressions that we would expect
225 * as arguments to a function call in code generated by isl.
227 static __isl_give isl_pw_aff *expr_extract_pw_aff(struct pet_expr *expr,
228 __isl_keep isl_id_to_pw_aff *assignments)
230 isl_pw_aff *pa, *pa1, *pa2;
232 switch (expr->type) {
233 case pet_expr_access:
234 return access_expr_extract_pw_aff(expr, assignments);
235 case pet_expr_unary:
236 if (expr->op == pet_op_minus) {
237 pa = expr_extract_pw_aff(expr->args[0], assignments);
238 return isl_pw_aff_neg(pa);
240 assert(0);
241 case pet_expr_binary:
242 pa1 = expr_extract_pw_aff(expr->args[0], assignments);
243 pa2 = expr_extract_pw_aff(expr->args[1], assignments);
244 switch (expr->op) {
245 case pet_op_mul:
246 pa = isl_pw_aff_mul(pa1, pa2);
247 break;
248 case pet_op_add:
249 pa = isl_pw_aff_add(pa1, pa2);
250 break;
251 case pet_op_sub:
252 pa = isl_pw_aff_sub(pa1, pa2);
253 break;
254 case pet_op_div:
255 pa = isl_pw_aff_tdiv_q(pa1, pa2);
256 break;
257 case pet_op_mod:
258 pa = isl_pw_aff_tdiv_r(pa1, pa2);
259 break;
260 default:
261 assert(0);
263 return pa;
264 case pet_expr_call:
265 return call_expr_extract_pw_aff(expr, assignments);
266 case pet_expr_ternary:
267 pa = expr_extract_pw_aff(expr->args[0], assignments);
268 pa1 = expr_extract_pw_aff(expr->args[1], assignments);
269 pa2 = expr_extract_pw_aff(expr->args[2], assignments);
270 return isl_pw_aff_cond(pa, pa1, pa2);
271 case pet_expr_cast:
272 case pet_expr_double:
273 assert(0);
277 /* Extract an affine expression from "expr", possibly exploiting "assignments",
278 * in the form of an isl_map.
280 static __isl_give isl_map *expr_extract_map(struct pet_expr *expr,
281 __isl_keep isl_id_to_pw_aff *assignments)
283 return isl_map_from_pw_aff(expr_extract_pw_aff(expr, assignments));
286 /* Extract a call from "stmt", possibly exploiting "assignments".
288 * The returned map is of the form
290 * { domain -> function[arguments] }
292 static __isl_give isl_map *stmt_extract_call(struct pet_stmt *stmt,
293 __isl_keep isl_id_to_pw_aff *assignments)
295 int i;
296 isl_set *domain;
297 isl_map *call;
299 domain = isl_set_copy(stmt->domain);
300 call = isl_map_from_domain(domain);
302 assert(stmt->body->type == pet_expr_call);
304 for (i = 0; i < stmt->body->n_arg; ++i) {
305 isl_map *arg;
307 arg = expr_extract_map(stmt->body->args[i], assignments);
308 call = isl_map_flat_range_product(call, arg);
311 call = isl_map_set_tuple_name(call, isl_dim_out, stmt->body->name);
313 return call;
316 /* Add the assignment in "stmt" to "assignments".
318 * We extract the accessed variable identifier "var"
319 * and the assigned value
321 * { domain -> value }
323 * and map "var" to this value in "assignments", replacing
324 * any possible previously assigned value to the same variable.
326 static __isl_give isl_id_to_pw_aff *add_assignment(
327 __isl_take isl_id_to_pw_aff *assignments, struct pet_stmt *stmt)
329 isl_id *var;
330 isl_pw_aff *val;
332 assert(stmt->body->op == pet_op_assign);
333 assert(stmt->body->args[0]->type == pet_expr_access);
334 var = isl_map_get_tuple_id(stmt->body->args[0]->acc.access,
335 isl_dim_out);
336 val = expr_extract_pw_aff(stmt->body->args[1], assignments);
338 assignments = isl_id_to_pw_aff_set(assignments, var, val);
340 return assignments;
343 /* Is "stmt" a kill statement?
345 static int is_kill(struct pet_stmt *stmt)
347 if (stmt->body->type != pet_expr_unary)
348 return 0;
349 return stmt->body->op == pet_op_kill;
352 /* Extract a mapping from the iterations domains of "scop" to
353 * the calls in the corresponding statements.
355 * While scanning "scop", we keep track of assignments to variables
356 * so that we can plug them in in the arguments of the calls.
357 * Note that we do not perform any dependence analysis on the assigned
358 * variables. In code generated by isl, such assignments should only
359 * appear immediately before they are used.
361 * The assignments are kept as an associative array between
362 * variable identifiers and assignments of the form
364 * { domain -> value }
366 * We skip kill statements.
367 * Other than assignments and kill statements, all statements are assumed
368 * to be function calls.
370 static __isl_give isl_union_map *scop_collect_calls(struct pet_scop *scop)
372 int i;
373 isl_ctx *ctx;
374 isl_map *call_i;
375 isl_id_to_pw_aff *assignments;
376 isl_union_map *call;
378 if (!scop)
379 return NULL;
381 call = isl_union_map_empty(isl_set_get_space(scop->context));
382 ctx = isl_set_get_ctx(scop->context);
383 assignments = isl_id_to_pw_aff_alloc(ctx, 0);
385 for (i = 0; i < scop->n_stmt; ++i) {
386 struct pet_stmt *stmt;
388 stmt = scop->stmts[i];
389 if (stmt->body->type == pet_expr_binary) {
390 assignments = add_assignment(assignments, stmt);
391 continue;
393 if (is_kill(stmt))
394 continue;
395 call_i = stmt_extract_call(scop->stmts[i], assignments);
396 call = isl_union_map_add_map(call, call_i);
399 isl_id_to_pw_aff_free(assignments);
401 return call;
404 /* Extract a schedule on the original domains from "scop".
405 * The original domain elements appear as calls in "scop".
407 * We first extract a schedule on the code iteration domains
408 * and a mapping from the code iteration domains to the calls
409 * (i.e., the original domain) and then combine the two.
411 static __isl_give isl_union_map *extract_code_schedule(struct pet_scop *scop)
413 isl_union_map *schedule;
414 isl_union_map *calls;
416 schedule = pet_scop_collect_schedule(scop);
418 calls = scop_collect_calls(scop);
420 schedule = isl_union_map_apply_domain(schedule, calls);
422 return schedule;
425 /* Check that schedule and code_schedule have the same domain,
426 * i.e., that they execute the same statement instances.
428 static int check_domain(__isl_keep isl_union_map *schedule,
429 __isl_keep isl_union_map *code_schedule)
431 isl_union_set *dom1, *dom2;
432 int equal;
433 isl_set *s1, *s2;;
434 isl_id *id1, *id2;
435 int r = 0;
437 dom1 = isl_union_map_domain(isl_union_map_copy(schedule));
438 dom2 = isl_union_map_domain(isl_union_map_copy(code_schedule));
439 equal = isl_union_set_is_equal(dom1, dom2);
441 if (equal < 0)
442 r = -1;
443 else if (!equal) {
444 isl_union_set_dump(dom1);
445 isl_union_set_dump(dom2);
446 isl_die(isl_union_map_get_ctx(schedule), isl_error_unknown,
447 "domains not identical", r = -1);
450 isl_union_set_free(dom1);
451 isl_union_set_free(dom2);
453 return r;
456 /* Check that the relative order specified by the input schedule is respected
457 * by the schedule extracted from the code, in case the original schedule
458 * is single valued.
460 * In particular, check that there is no pair of statement instances
461 * such that the first should be scheduled _before_ the second,
462 * but is actually scheduled _after_ the second in the code.
464 static int check_order_sv(__isl_keep isl_union_map *schedule,
465 __isl_keep isl_union_map *code_schedule)
467 isl_union_map *t1;
468 isl_union_map *t2;
469 int empty;
471 t1 = isl_union_map_lex_lt_union_map(isl_union_map_copy(schedule),
472 isl_union_map_copy(schedule));
473 t2 = isl_union_map_lex_gt_union_map(isl_union_map_copy(code_schedule),
474 isl_union_map_copy(code_schedule));
475 t1 = isl_union_map_intersect(t1, t2);
476 empty = isl_union_map_is_empty(t1);
477 isl_union_map_free(t1);
479 if (empty < 0)
480 return -1;
481 if (!empty)
482 isl_die(isl_union_map_get_ctx(schedule), isl_error_unknown,
483 "order not respected", return -1);
485 return 0;
488 /* Check that the relative order specified by the input schedule is respected
489 * by the schedule extracted from the code, in case the original schedule
490 * is not single valued.
492 * In particular, check that the order imposed by the schedules on pairs
493 * of statement instances is the same.
495 static int check_order_not_sv(__isl_keep isl_union_map *schedule,
496 __isl_keep isl_union_map *code_schedule)
498 isl_union_map *t1;
499 isl_union_map *t2;
500 int equal;
502 t1 = isl_union_map_lex_lt_union_map(isl_union_map_copy(schedule),
503 isl_union_map_copy(schedule));
504 t2 = isl_union_map_lex_lt_union_map(isl_union_map_copy(code_schedule),
505 isl_union_map_copy(code_schedule));
506 equal = isl_union_map_is_equal(t1, t2);
507 isl_union_map_free(t1);
508 isl_union_map_free(t2);
510 if (equal < 0)
511 return -1;
512 if (!equal)
513 isl_die(isl_union_map_get_ctx(schedule), isl_error_unknown,
514 "order not respected", return -1);
516 return 0;
519 /* Check that the relative order specified by the input schedule is respected
520 * by the schedule extracted from the code.
522 * "sv" indicated whether the original schedule is single valued.
523 * If so, we use a cheaper test. Otherwise, we fall back on a more
524 * expensive test.
526 static int check_order(__isl_keep isl_union_map *schedule,
527 __isl_keep isl_union_map *code_schedule, int sv)
529 if (sv)
530 return check_order_sv(schedule, code_schedule);
531 else
532 return check_order_not_sv(schedule, code_schedule);
535 /* If the original schedule was single valued ("sv" is set),
536 * then the schedule extracted from the code should be single valued as well.
538 static int check_single_valued(__isl_keep isl_union_map *code_schedule, int sv)
540 if (!sv)
541 return 0;
543 sv = isl_union_map_is_single_valued(code_schedule);
544 if (sv < 0)
545 return -1;
547 if (!sv)
548 isl_die(isl_union_map_get_ctx(code_schedule), isl_error_unknown,
549 "schedule not single valued", return -1);
551 return 0;
554 /* Read a schedule and a context from the first argument and
555 * C code from the second argument and check that the C code
556 * corresponds to the schedule on the context.
558 * In particular, check that
559 * - the domains are identical, i.e., the calls in the C code
560 * correspond to the domain elements of the schedule
561 * - no function is called twice with the same arguments, provided
562 * the schedule is single-valued
563 * - the calls are performed in an order that is compatible
564 * with the schedule
566 * If the schedule is not single-valued then we would have to check
567 * that each function with a given set of arguments is called
568 * the same number of times as there are images in the schedule,
569 * but this is considerably more difficult.
571 int main(int argc, char **argv)
573 isl_ctx *ctx;
574 isl_set *context;
575 isl_union_map *schedule, *code_schedule;
576 struct pet_scop *scop;
577 struct options *options;
578 FILE *file;
579 int r;
580 int sv;
582 options = options_new_with_defaults();
583 assert(options);
584 ctx = isl_ctx_alloc_with_options(&options_args, options);
585 pet_options_set_signed_overflow(ctx, PET_OVERFLOW_IGNORE);
586 argc = options_parse(options, argc, argv, ISL_ARG_ALL);
588 file = fopen(options->schedule, "r");
589 assert(file);
590 schedule = isl_union_map_read_from_file(ctx, file);
591 context = isl_set_read_from_file(ctx, file);
592 fclose(file);
594 scop = pet_scop_extract_from_C_source(ctx, options->code, NULL);
596 schedule = isl_union_map_intersect_params(schedule,
597 isl_set_copy(context));
598 code_schedule = extract_code_schedule(scop);
599 code_schedule = isl_union_map_intersect_params(code_schedule, context);
601 sv = isl_union_map_is_single_valued(schedule);
602 r = sv < 0 ||
603 check_domain(schedule, code_schedule) ||
604 check_single_valued(code_schedule, sv) ||
605 check_order(schedule, code_schedule, sv);
607 pet_scop_free(scop);
608 isl_union_map_free(schedule);
609 isl_union_map_free(code_schedule);
610 isl_ctx_free(ctx);
612 return r;