gpu.c: create_kernel_vars: improve error handling
[ppcg.git] / gpu.c
blob98202cda992b12878504aa074e90695664a0f90d
1 /*
2 * Copyright 2010-2011 INRIA Saclay
3 * Copyright 2012-2013 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
8 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
9 * 91893 Orsay, France
10 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
13 #include <assert.h>
14 #include <stdlib.h>
15 #include <string.h>
17 #include <isl/polynomial.h>
18 #include <isl/union_set.h>
19 #include <isl/aff.h>
20 #include <isl/ilp.h>
21 #include <isl/flow.h>
22 #include <isl/schedule.h>
23 #include <isl/schedule_node.h>
24 #include <isl/options.h>
25 #include <isl/ast_build.h>
27 #include "cpu.h"
28 #include "gpu.h"
29 #include "gpu_array_tile.h"
30 #include "gpu_group.h"
31 #include "gpu_tree.h"
32 #include "schedule.h"
33 #include "ppcg_options.h"
34 #include "print.h"
36 struct gpu_array_info;
38 /* Collect all references to the given array and store pointers to them
39 * in array->refs.
41 * If the array contains structures, then there is no need to collect
42 * the references since we will not be computing any reference groups.
44 static void collect_references(struct gpu_prog *prog,
45 struct gpu_array_info *array)
47 int i;
48 int n;
50 if (array->has_compound_element)
51 return;
53 n = 0;
54 for (i = 0; i < prog->n_stmts; ++i) {
55 struct gpu_stmt *stmt = &prog->stmts[i];
56 struct gpu_stmt_access *access;
58 for (access = stmt->accesses; access; access = access->next) {
59 const char *name;
60 name = isl_map_get_tuple_name(access->access,
61 isl_dim_out);
62 if (name && !strcmp(array->name, name))
63 n++;
67 array->n_ref = n;
68 array->refs = isl_alloc_array(prog->ctx, struct gpu_stmt_access *, n);
69 assert(array->refs);
71 n = 0;
72 for (i = 0; i < prog->n_stmts; ++i) {
73 struct gpu_stmt *stmt = &prog->stmts[i];
74 struct gpu_stmt_access *access;
76 for (access = stmt->accesses; access; access = access->next) {
77 const char *name;
78 name = isl_map_get_tuple_name(access->access,
79 isl_dim_out);
80 if (!name || strcmp(array->name, name))
81 continue;
83 array->refs[n++] = access;
88 /* Compute and return the extent of "array", taking into account the set of
89 * accessed elements.
91 * In particular, the extent in the outer dimension is taken
92 * from "accessed", while the extents in the remaining dimensions
93 * are taken from array->extent.
95 * The extent in the outer dimension cannot be taken from array->extent
96 * because that may be unbounded. Furthermore, even if it is bounded,
97 * it may be larger than the piece of the array that is being accessed.
99 static __isl_give isl_set *compute_extent(struct pet_array *array,
100 __isl_keep isl_set *accessed)
102 int n_index;
103 isl_id *id;
104 isl_set *outer;
105 isl_set *extent;
107 extent = isl_set_copy(array->extent);
109 n_index = isl_set_dim(accessed, isl_dim_set);
110 if (n_index == 0)
111 return extent;
113 extent = isl_set_project_out(extent, isl_dim_set, 0, 1);
114 outer = isl_set_copy(accessed);
115 outer = isl_set_project_out(outer, isl_dim_set, 1, n_index - 1);
116 extent = isl_set_flat_product(outer, extent);
117 id = isl_set_get_tuple_id(accessed);
118 extent = isl_set_set_tuple_id(extent, id);
120 return extent;
123 /* Is the array "array" being extracted a read-only scalar?
125 * That is, is "array" a scalar that is never possibly written to.
126 * An array containing structures is never considered to be a scalar.
128 static int is_read_only_scalar(struct gpu_array_info *array,
129 struct gpu_prog *prog)
131 isl_set *space;
132 isl_union_map *write;
133 int empty;
135 if (array->has_compound_element)
136 return 0;
137 if (array->n_index != 0)
138 return 0;
140 write = isl_union_map_copy(prog->may_write);
141 space = isl_set_universe(isl_space_copy(array->space));
142 write = isl_union_map_intersect_range(write,
143 isl_union_set_from_set(space));
144 empty = isl_union_map_is_empty(write);
145 isl_union_map_free(write);
147 return empty;
150 /* Compute bounds on the host array "pa" based on the corresponding
151 * accessed elements in "arrays"
152 * and collect all references to the array.
153 * Store the results in "info".
155 * If the array is zero-dimensional and does not contain structures,
156 * i.e., if the array is a scalar, we check whether it is read-only.
157 * We also check whether the array is accessed at all.
159 static int extract_array_info(struct gpu_prog *prog,
160 struct gpu_array_info *info, struct pet_array *pa,
161 __isl_keep isl_union_set *arrays)
163 int i, empty;
164 const char *name;
165 int n_index;
166 isl_pw_aff **bounds;
167 isl_set *accessed, *extent;
169 n_index = isl_set_dim(pa->extent, isl_dim_set);
170 name = isl_set_get_tuple_name(pa->extent);
171 bounds = isl_alloc_array(prog->ctx, isl_pw_aff *, n_index);
172 if (!bounds)
173 return -1;
175 info->space = isl_set_get_space(pa->extent);
176 info->name = strdup(name);
177 info->n_index = n_index;
178 info->bound = bounds;
179 info->linearize = prog->scop->options->linearize_device_arrays;
181 info->type = strdup(pa->element_type);
182 info->size = pa->element_size;
183 info->local = pa->declared && !pa->exposed;
184 info->has_compound_element = pa->element_is_record;
185 info->read_only_scalar = is_read_only_scalar(info, prog);
187 accessed = isl_union_set_extract_set(arrays,
188 isl_space_copy(info->space));
189 empty = isl_set_is_empty(accessed);
190 extent = compute_extent(pa, accessed);
191 isl_set_free(accessed);
192 info->extent = extent;
193 if (empty < 0)
194 return -1;
195 info->accessed = !empty;
196 for (i = 0; i < n_index; ++i) {
197 isl_set *dom;
198 isl_local_space *ls;
199 isl_aff *one;
200 isl_pw_aff *bound;
202 dom = isl_set_copy(extent);
203 dom = isl_set_project_out(dom, isl_dim_set, i + 1,
204 n_index - (i + 1));
205 dom = isl_set_project_out(dom, isl_dim_set, 0, i);
206 if (!isl_set_dim_has_upper_bound(dom, isl_dim_set, 0)) {
207 fprintf(stderr, "unable to determine extent of '%s' "
208 "in dimension %d\n", info->name, i);
209 dom = isl_set_free(dom);
211 bound = isl_set_dim_max(dom, 0);
212 dom = isl_pw_aff_domain(isl_pw_aff_copy(bound));
213 ls = isl_local_space_from_space(isl_set_get_space(dom));
214 one = isl_aff_zero_on_domain(ls);
215 one = isl_aff_add_constant_si(one, 1);
216 bound = isl_pw_aff_add(bound, isl_pw_aff_alloc(dom, one));
217 bound = isl_pw_aff_gist(bound, isl_set_copy(prog->context));
219 bounds[i] = bound;
220 if (!isl_pw_aff_is_cst(bound))
221 info->linearize = 1;
224 collect_references(prog, info);
226 return 0;
229 /* Remove independence from the order constraints "order" on array "array".
230 * Since the pairs of iterations in the filter relation of an independence
231 * are guaranteed to be completely independent by the user, there is
232 * no need to ensure that live ranges are ordered along thong pairs.
233 * We make an exception for local variables, though, as the independence
234 * guarantee does not apply to those.
236 * The order constraints are used in two places.
237 * Those on scalars are used in check_scalar_live_ranges to check if
238 * we need to force the scalar to be private. Any non-local scalar
239 * should not be forced scalar if it only appears in independent loops.
240 * Those on non-scalars are added to the coincidence constraints
241 * in compute_schedule because we do not support any array expansion.
242 * Accesses to non-local arrays should not prevent a loop from being
243 * considered coincident so we should indeed remove those constraints
244 * from the order constraints.
246 static __isl_give isl_union_map *remove_independences(struct gpu_prog *prog,
247 struct gpu_array_info *array, __isl_take isl_union_map *order)
249 int i;
251 for (i = 0; i < prog->scop->pet->n_independence; ++i) {
252 struct pet_independence *pi = prog->scop->pet->independences[i];
253 if (isl_union_set_contains(pi->local, array->space))
254 continue;
256 order = isl_union_map_subtract(order,
257 isl_union_map_copy(pi->filter));
260 return order;
263 /* For each array in "prog", store the (untagged) order dependences
264 * derived from the array in array->dep_order.
265 * In particular, consider all references that access the given array
266 * and take the order dependences that have one of these references
267 * as source. (Since an order dependence relates two references to
268 * the same array, the target of these order dependences will also
269 * be one of these references.)
270 * Additionally, store the union of these array->dep_order relations
271 * for all non-scalar arrays in prog->array_order.
273 void collect_order_dependences(struct gpu_prog *prog)
275 int i;
276 isl_space *space;
277 isl_union_map *accesses;
279 space = isl_union_map_get_space(prog->read);
280 prog->array_order = isl_union_map_empty(space);
282 accesses = isl_union_map_copy(prog->scop->tagged_reads);
283 accesses = isl_union_map_union(accesses,
284 isl_union_map_copy(prog->scop->tagged_may_writes));
285 accesses = isl_union_map_universe(accesses);
286 accesses = isl_union_map_apply_range(accesses,
287 isl_union_map_copy(prog->to_outer));
289 for (i = 0; i < prog->n_array; ++i) {
290 struct gpu_array_info *array = &prog->array[i];
291 isl_set *set;
292 isl_union_set *uset;
293 isl_union_map *order;
295 set = isl_set_universe(isl_space_copy(array->space));
296 uset = isl_union_set_from_set(set);
297 uset = isl_union_map_domain(
298 isl_union_map_intersect_range(isl_union_map_copy(accesses),
299 uset));
300 order = isl_union_map_copy(prog->scop->tagged_dep_order);
301 order = isl_union_map_intersect_domain(order, uset);
302 order = isl_union_map_zip(order);
303 order = isl_union_set_unwrap(isl_union_map_domain(order));
304 order = remove_independences(prog, array, order);
305 array->dep_order = order;
307 if (gpu_array_is_scalar(array) && !array->has_compound_element)
308 continue;
310 prog->array_order = isl_union_map_union(prog->array_order,
311 isl_union_map_copy(array->dep_order));
314 isl_union_map_free(accesses);
317 /* Construct a gpu_array_info for each array referenced by prog->scop and
318 * collect them in prog->array.
320 * The sizes are based on the extents and the set of possibly accessed
321 * elements by "prog".
322 * If there are any member accesses involved, then they are first mapped
323 * to the outer arrays of structs.
325 * If we are allowing live range reordering, then also set
326 * the dep_order field. Otherwise leave it NULL.
328 static int collect_array_info(struct gpu_prog *prog)
330 int i;
331 int r = 0;
332 isl_union_set *arrays;
334 arrays = isl_union_map_range(isl_union_map_copy(prog->read));
335 arrays = isl_union_set_union(arrays,
336 isl_union_map_range(isl_union_map_copy(prog->may_write)));
338 arrays = isl_union_set_apply(arrays,
339 isl_union_map_copy(prog->to_outer));
341 arrays = isl_union_set_coalesce(arrays);
343 prog->n_array = prog->scop->pet->n_array;
344 prog->array = isl_calloc_array(prog->ctx,
345 struct gpu_array_info, prog->n_array);
346 assert(prog->array);
347 for (i = 0; i < prog->scop->pet->n_array; ++i)
348 if (extract_array_info(prog, &prog->array[i],
349 prog->scop->pet->arrays[i], arrays) < 0)
350 r = -1;
352 isl_union_set_free(arrays);
354 if (prog->scop->options->live_range_reordering)
355 collect_order_dependences(prog);
357 return r;
360 static void free_array_info(struct gpu_prog *prog)
362 int i, j;
364 for (i = 0; i < prog->n_array; ++i) {
365 int n_index = prog->array[i].n_index;
366 free(prog->array[i].type);
367 free(prog->array[i].name);
368 for (j = 0; j < n_index; ++j)
369 isl_pw_aff_free(prog->array[i].bound[j]);
370 isl_space_free(prog->array[i].space);
371 isl_set_free(prog->array[i].extent);
372 free(prog->array[i].bound);
373 free(prog->array[i].refs);
374 isl_union_map_free(prog->array[i].dep_order);
376 free(prog->array);
379 /* Check if a gpu array is a scalar. A scalar is a value that is not stored
380 * as an array or through a pointer reference, but as a single data element.
381 * At the moment, scalars are represented as zero-dimensional arrays.
382 * Note that the single data element may be an entire structure.
384 int gpu_array_is_scalar(struct gpu_array_info *array)
386 return array->n_index == 0;
389 /* Is "array" a read-only scalar?
391 int gpu_array_is_read_only_scalar(struct gpu_array_info *array)
393 return array->read_only_scalar;
396 /* Return the set of parameter values for which the array has a positive
397 * size in all dimensions.
398 * If the sizes are only valid for some parameter values, then those
399 * constraints are also taken into account.
401 __isl_give isl_set *gpu_array_positive_size_guard(struct gpu_array_info *array)
403 int i;
404 isl_space *space;
405 isl_set *guard;
407 space = isl_space_params(isl_space_copy(array->space));
408 guard = isl_set_universe(space);
410 for (i = 0; i < array->n_index; ++i) {
411 isl_pw_aff *bound;
412 isl_set *guard_i, *zero;
414 bound = isl_pw_aff_copy(array->bound[i]);
415 guard_i = isl_pw_aff_nonneg_set(isl_pw_aff_copy(bound));
416 zero = isl_pw_aff_zero_set(bound);
417 guard_i = isl_set_subtract(guard_i, zero);
418 guard = isl_set_intersect(guard, guard_i);
421 return guard;
424 /* Internal data structure for extract_size_of_type.
425 * "type" specifies the name of the space that we want to extract.
426 * "res" is used to store the subset of that space.
428 struct ppcg_extract_size_data {
429 const char *type;
430 isl_set *res;
433 /* This function is called for each set in a union_set.
434 * If the name of the set matches data->type, we store the
435 * set in data->res.
437 static int extract_size_of_type(__isl_take isl_set *size, void *user)
439 struct ppcg_extract_size_data *data = user;
440 const char *name;
442 name = isl_set_get_tuple_name(size);
443 if (name && !strcmp(name, data->type)) {
444 data->res = size;
445 return -1;
448 isl_set_free(size);
449 return 0;
452 /* Given a union map { kernel[i] -> *[...] },
453 * return the range in the space called "type" for the kernel with
454 * sequence number "id".
456 static __isl_give isl_set *extract_sizes(__isl_keep isl_union_map *sizes,
457 const char *type, int id)
459 isl_space *space;
460 isl_set *dom;
461 isl_union_set *local_sizes;
462 struct ppcg_extract_size_data data = { type, NULL };
464 if (!sizes)
465 return NULL;
467 space = isl_union_map_get_space(sizes);
468 space = isl_space_set_from_params(space);
469 space = isl_space_add_dims(space, isl_dim_set, 1);
470 space = isl_space_set_tuple_name(space, isl_dim_set, "kernel");
471 dom = isl_set_universe(space);
472 dom = isl_set_fix_si(dom, isl_dim_set, 0, id);
474 local_sizes = isl_union_set_apply(isl_union_set_from_set(dom),
475 isl_union_map_copy(sizes));
476 isl_union_set_foreach_set(local_sizes, &extract_size_of_type, &data);
477 isl_union_set_free(local_sizes);
478 return data.res;
481 /* Given a singleton set, extract the first (at most *len) elements
482 * of the single integer tuple into *sizes and update *len if needed.
484 static void read_sizes_from_set(__isl_take isl_set *set, int *sizes, int *len)
486 int i;
487 int dim;
489 if (!set)
490 return;
492 dim = isl_set_dim(set, isl_dim_set);
493 if (dim < *len)
494 *len = dim;
496 for (i = 0; i < *len; ++i) {
497 isl_val *v;
499 v = isl_set_plain_get_val_if_fixed(set, isl_dim_set, i);
500 assert(v);
502 sizes[i] = isl_val_get_num_si(v);
503 isl_val_free(v);
506 isl_set_free(set);
509 /* Add the map { kernel[id] -> type[sizes] } to gen->used_sizes,
510 * if the option debug->dump_sizes is set.
512 static void set_used_sizes(struct gpu_gen *gen, const char *type, int id,
513 int *sizes, int len)
515 int i;
516 isl_space *space;
517 isl_map *map;
519 if (!gen->options->debug->dump_sizes)
520 return;
522 space = isl_union_map_get_space(gen->used_sizes);
523 space = isl_space_set_from_params(space);
524 space = isl_space_add_dims(space, isl_dim_set, 1);
525 space = isl_space_set_tuple_name(space, isl_dim_set, "kernel");
526 space = isl_space_from_domain(space);
527 space = isl_space_add_dims(space, isl_dim_out, len);
528 space = isl_space_set_tuple_name(space, isl_dim_out, type);
530 map = isl_map_universe(space);
531 map = isl_map_fix_si(map, isl_dim_in, 0, id);
532 for (i = 0; i < len; ++i)
533 map = isl_map_fix_si(map, isl_dim_out, i, sizes[i]);
535 gen->used_sizes = isl_union_map_add_map(gen->used_sizes, map);
538 /* Extract user specified "tile" sizes from the "sizes" command line option,
539 * defaulting to option->tile_size in each dimension.
540 * *tile_len contains the maximum number of tile sizes needed.
541 * Update *tile_len to the number of specified tile sizes, if any, and
542 * return a pointer to the tile sizes (or NULL on error).
543 * Add the effectively used sizes to gen->used_sizes.
545 static int *read_tile_sizes(struct gpu_gen *gen, int *tile_len)
547 int n;
548 int *tile_size;
549 isl_set *size;
551 tile_size = isl_alloc_array(gen->ctx, int, *tile_len);
552 if (!tile_size)
553 return NULL;
554 for (n = 0; n < *tile_len; ++n)
555 tile_size[n] = gen->options->tile_size;
557 size = extract_sizes(gen->sizes, "tile", gen->kernel_id);
558 read_sizes_from_set(size, tile_size, tile_len);
559 set_used_sizes(gen, "tile", gen->kernel_id, tile_size, *tile_len);
561 return tile_size;
564 /* Extract user specified "block" sizes from the "sizes" command line option,
565 * after filling in some potentially useful defaults.
567 static void read_block_sizes(struct ppcg_kernel *kernel,
568 __isl_keep isl_union_map *sizes)
570 isl_set *size;
572 if (kernel->n_block > 3)
573 kernel->n_block = 3;
574 switch (kernel->n_block) {
575 case 1:
576 kernel->block_dim[0] = 512;
577 break;
578 case 2:
579 kernel->block_dim[0] = 32;
580 kernel->block_dim[1] = 16;
581 break;
582 default:
583 kernel->block_dim[0] = 32;
584 kernel->block_dim[1] = 4;
585 kernel->block_dim[2] = 4;
586 break;
589 size = extract_sizes(sizes, "block", kernel->id);
590 read_sizes_from_set(size, kernel->block_dim, &kernel->n_block);
593 /* Extract user specified "grid" sizes from the "sizes" command line option,
594 * after filling in some potentially useful defaults.
596 static void read_grid_sizes(struct ppcg_kernel *kernel,
597 __isl_keep isl_union_map *sizes)
599 isl_set *size;
601 if (kernel->n_grid > 2)
602 kernel->n_grid = 2;
603 switch (kernel->n_grid) {
604 case 1:
605 kernel->grid_dim[0] = 32768;
606 break;
607 default:
608 kernel->grid_dim[0] = 256;
609 kernel->grid_dim[1] = 256;
610 break;
613 size = extract_sizes(sizes, "grid", kernel->id);
614 read_sizes_from_set(size, kernel->grid_dim, &kernel->n_grid);
617 /* Extract user specified grid and block sizes from the gen->sizes
618 * command line option after filling in some potentially useful defaults.
619 * Store the extracted sizes in "kernel".
620 * Add the effectively used sizes to gen->used_sizes.
622 static void read_grid_and_block_sizes(struct ppcg_kernel *kernel,
623 struct gpu_gen *gen)
625 read_block_sizes(kernel, gen->sizes);
626 read_grid_sizes(kernel, gen->sizes);
627 set_used_sizes(gen, "block", kernel->id,
628 kernel->block_dim, kernel->n_block);
629 set_used_sizes(gen, "grid", kernel->id,
630 kernel->grid_dim, kernel->n_grid);
633 static void *free_stmts(struct gpu_stmt *stmts, int n)
635 int i;
637 if (!stmts)
638 return NULL;
640 for (i = 0; i < n; ++i) {
641 struct gpu_stmt_access *access, *next;
643 for (access = stmts[i].accesses; access; access = next) {
644 next = access->next;
645 isl_id_free(access->ref_id);
646 isl_map_free(access->access);
647 isl_map_free(access->tagged_access);
648 free(access);
651 isl_id_free(stmts[i].id);
653 free(stmts);
655 return NULL;
658 /* Add parameters p[i] with identifiers "ids" to "set",
659 * with bounds to 0 <= p[i] < size[i].
661 __isl_give isl_set *add_bounded_parameters(__isl_take isl_set *set,
662 int *size, __isl_keep isl_id_list *ids)
664 int i, len;
665 unsigned nparam;
667 len = isl_id_list_n_id(ids);
668 nparam = isl_set_dim(set, isl_dim_param);
669 set = isl_set_add_dims(set, isl_dim_param, len);
671 for (i = 0; i < len; ++i) {
672 isl_id *id;
674 id = isl_id_list_get_id(ids, i);
675 set = isl_set_set_dim_id(set, isl_dim_param, nparam + i, id);
676 set = isl_set_lower_bound_si(set, isl_dim_param, nparam + i, 0);
677 set = isl_set_upper_bound_si(set, isl_dim_param,
678 nparam + i, size[i] - 1);
681 return set;
684 /* Add "len" parameters p[i] with identifiers "ids" and intersect "set"
685 * with
687 * { : 0 <= p[i] < size[i] }
689 * or an overapproximation.
691 static __isl_give isl_set *add_bounded_parameters_dynamic(
692 __isl_take isl_set *set, __isl_keep isl_multi_pw_aff *size,
693 __isl_keep isl_id_list *ids)
695 int i, len;
696 unsigned nparam;
697 isl_space *space;
698 isl_local_space *ls;
700 len = isl_multi_pw_aff_dim(size, isl_dim_out);
701 nparam = isl_set_dim(set, isl_dim_param);
702 set = isl_set_add_dims(set, isl_dim_param, len);
704 for (i = 0; i < len; ++i) {
705 isl_id *id;
707 id = isl_id_list_get_id(ids, i);
708 set = isl_set_set_dim_id(set, isl_dim_param, nparam + i, id);
711 space = isl_space_params(isl_set_get_space(set));
712 ls = isl_local_space_from_space(space);
713 for (i = 0; i < len; ++i) {
714 isl_pw_aff *param, *size_i, *zero;
715 isl_set *bound;
717 param = isl_pw_aff_var_on_domain(isl_local_space_copy(ls),
718 isl_dim_param, nparam + i);
720 size_i = isl_multi_pw_aff_get_pw_aff(size, i);
721 bound = isl_pw_aff_lt_set(isl_pw_aff_copy(param), size_i);
722 bound = isl_set_from_basic_set(isl_set_simple_hull(bound));
723 set = isl_set_intersect_params(set, bound);
725 zero = isl_pw_aff_zero_on_domain(isl_local_space_copy(ls));
726 bound = isl_pw_aff_ge_set(param, zero);
727 set = isl_set_intersect_params(set, bound);
729 isl_local_space_free(ls);
731 return set;
734 /* Return the union of all tagged access relations in the group.
736 static __isl_give isl_union_map *group_tagged_access_relation(
737 struct gpu_array_ref_group *group)
739 int i;
740 isl_union_map *access;
742 access = isl_union_map_empty(isl_map_get_space(group->access));
743 for (i = 0; i < group->n_ref; ++i) {
744 isl_map *map_i;
746 map_i = isl_map_copy(group->refs[i]->tagged_access);
747 access = isl_union_map_union(access,
748 isl_union_map_from_map(map_i));
751 return access;
754 /* Return the extent of "array", recomputed from the bounds.
755 * The recomputed extent may be simpler than the original extent.
757 static __isl_give isl_set *array_extent(struct gpu_array_info *array)
759 int i;
760 isl_id *id;
761 isl_space *space;
762 isl_local_space *ls;
763 isl_set *extent;
765 id = isl_set_get_tuple_id(array->extent);
766 space = isl_set_get_space(array->extent);
767 extent = isl_set_universe(isl_space_copy(space));
768 ls = isl_local_space_from_space(space);
769 for (i = 0; i < array->n_index; ++i) {
770 isl_pw_aff *bound;
771 isl_aff *aff;
772 isl_pw_aff *index;
773 isl_set *lt;
775 extent = isl_set_lower_bound_si(extent, isl_dim_set, i, 0);
777 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
778 isl_dim_set, i);
779 index = isl_pw_aff_from_aff(aff);
780 bound = isl_pw_aff_copy(array->bound[i]);
781 bound = isl_pw_aff_from_range(bound);
782 bound = isl_pw_aff_add_dims(bound, isl_dim_in, array->n_index);
783 bound = isl_pw_aff_set_tuple_id(bound, isl_dim_in,
784 isl_id_copy(id));
785 lt = isl_pw_aff_lt_set(index, bound);
786 extent = isl_set_intersect(extent, lt);
788 isl_local_space_free(ls);
789 isl_id_free(id);
791 return extent;
794 /* Return a map from the first group->depth dimensions of the computed
795 * schedule to the array tile in
796 * global memory that corresponds to the shared memory copy.
798 * In particular, return a map
800 * { D[i] -> A[a] }
802 * with constraints
804 * tile_offset(i) <= a <= tile_offset(i) + tile_size - 1 (1)
806 * and
808 * 0 <= a <= array_size - 1 (2)
810 * Note that if some stride has been detected (i.e., when
811 * group->shared_tile->bound[i].shift is set), then a in (1) refers
812 * to the shifted and scaled down version.
814 * Constraints (1) are obtained by mapping the size constraints on the
815 * shared/private memory tile back to the access relation.
816 * Constraints (2) are obtained from the (recomputed) extent.
818 static __isl_give isl_map *group_tile(struct gpu_array_ref_group *group)
820 int i;
821 int n_index = group->array->n_index;
822 isl_map *tile;
823 isl_space *space;
824 isl_set *local;
825 isl_set *extent;
827 space = isl_multi_aff_get_space(group->shared_tile->tiling);
828 space = isl_space_range(space);
829 local = isl_set_universe(space);
830 for (i = 0; i < n_index; ++i) {
831 isl_val *bound;
833 local = isl_set_lower_bound_si(local, isl_dim_set, i, 0);
834 bound = isl_val_copy(group->shared_tile->bound[i].size);
835 bound = isl_val_sub_ui(bound, 1);
836 local = isl_set_upper_bound_val(local, isl_dim_set, i, bound);
838 local = isl_set_preimage_multi_aff(local,
839 isl_multi_aff_copy(group->shared_tile->tiling));
840 tile = isl_set_unwrap(local);
841 extent = array_extent(group->array);
842 tile = isl_map_intersect_range(tile, extent);
844 return tile;
847 /* Given a mapping "iterator_map" from the AST schedule to a domain,
848 * return the corresponding mapping from the AST schedule to
849 * to the outer kernel->shared_schedule_dim dimensions of
850 * the schedule computed by PPCG for this kernel.
852 * Note that kernel->shared_schedule_dim is at least as large as
853 * the largest depth of any array reference group associated to the kernel.
854 * This is needed as the returned schedule is used to extract a mapping
855 * to the outer group->depth dimensions in transform_index.
857 static __isl_give isl_pw_multi_aff *compute_sched_to_shared(
858 struct ppcg_kernel *kernel, __isl_take isl_pw_multi_aff *iterator_map)
860 isl_union_pw_multi_aff *upma;
861 isl_pw_multi_aff *pma;
862 isl_space *space;
864 space = isl_space_range(isl_pw_multi_aff_get_space(iterator_map));
865 space = isl_space_from_domain(space);
866 space = isl_space_add_dims(space, isl_dim_out,
867 kernel->shared_schedule_dim);
869 upma = isl_union_pw_multi_aff_copy(kernel->shared_schedule);
870 pma = isl_union_pw_multi_aff_extract_pw_multi_aff(upma, space);
871 isl_union_pw_multi_aff_free(upma);
873 return isl_pw_multi_aff_pullback_pw_multi_aff(pma, iterator_map);
876 /* If max_shared_memory is not set to infinity (-1), then make
877 * sure that the total amount of shared memory required by the
878 * array reference groups mapped to shared memory by "kernel"
879 * is no larger than this maximum.
881 * We apply a greedy approach and discard (keep in global memory)
882 * those groups that would result in a total memory size that
883 * is larger than the maximum.
885 * This function should be called after any function that may
886 * affect the decision on whether to place a reference group
887 * in private, shared or global memory.
889 static void check_shared_memory_bound(struct ppcg_kernel *kernel)
891 int i, j;
892 isl_val *left, *size;
894 if (kernel->options->max_shared_memory < 0)
895 return;
897 left = isl_val_int_from_si(kernel->ctx,
898 kernel->options->max_shared_memory);
900 for (i = 0; i < kernel->n_array; ++i) {
901 struct gpu_local_array_info *local = &kernel->array[i];
903 for (j = 0; j < local->n_group; ++j) {
904 struct gpu_array_ref_group *group;
906 group = local->groups[j];
907 if (group->private_tile)
908 continue;
909 if (!group->shared_tile)
910 continue;
912 size = gpu_array_tile_size(group->shared_tile);
913 size = isl_val_mul_ui(size, local->array->size);
915 if (isl_val_le(size, left)) {
916 left = isl_val_sub(left, size);
917 continue;
919 isl_val_free(size);
921 group->shared_tile =
922 gpu_array_tile_free(group->shared_tile);
926 isl_val_free(left);
929 /* Compute a tiling for all the array reference groups in "kernel".
931 static void compute_group_tilings(struct ppcg_kernel *kernel)
933 int i, j;
935 for (i = 0; i < kernel->n_array; ++i) {
936 struct gpu_local_array_info *array = &kernel->array[i];
938 for (j = 0; j < array->n_group; ++j)
939 gpu_array_ref_group_compute_tiling(array->groups[j]);
943 /* Compute the size of a bounding box around the origin and "set",
944 * where "set" is assumed to contain only non-negative elements.
945 * In particular, compute the maximal value of "set" in each direction
946 * and add one.
948 static __isl_give isl_multi_pw_aff *extract_size(__isl_take isl_set *set,
949 __isl_take isl_set *context)
951 int i, n;
952 isl_multi_pw_aff *mpa;
954 context = isl_set_params(context);
955 n = isl_set_dim(set, isl_dim_set);
956 mpa = isl_multi_pw_aff_zero(isl_set_get_space(set));
957 for (i = 0; i < n; ++i) {
958 isl_space *space;
959 isl_aff *one;
960 isl_pw_aff *bound;
962 bound = isl_set_dim_max(isl_set_copy(set), i);
963 bound = isl_pw_aff_coalesce(bound);
964 bound = isl_pw_aff_gist(bound, isl_set_copy(context));
966 space = isl_pw_aff_get_domain_space(bound);
967 one = isl_aff_zero_on_domain(isl_local_space_from_space(space));
968 one = isl_aff_add_constant_si(one, 1);
969 bound = isl_pw_aff_add(bound, isl_pw_aff_from_aff(one));
970 mpa = isl_multi_pw_aff_set_pw_aff(mpa, i, bound);
972 isl_set_free(set);
973 isl_set_free(context);
975 return mpa;
978 /* Compute the effective grid size as a list of the sizes in each dimension.
980 * The grid size specified by the user or set by default
981 * in read_grid_sizes() and applied by the block filter,
982 * may be too large for the given code in the sense that
983 * it may contain blocks that don't need to execute anything.
984 * We therefore don't return this grid size, but instead the
985 * smallest grid size that ensures that all blocks that actually
986 * execute code are included in the grid.
988 * We first extract a description of the grid, i.e., the possible values
989 * of the block ids, from the domain elements in "domain" and
990 * kernel->block_filter.
991 * The block ids are parameters in kernel->block_filter.
992 * We simply need to change them into set dimensions.
994 * Then, for each block dimension, we compute the maximal value of the block id
995 * and add one.
997 static __isl_give isl_multi_pw_aff *extract_grid_size(
998 struct ppcg_kernel *kernel, __isl_take isl_union_set *domain)
1000 int i;
1001 isl_set *grid;
1003 domain = isl_union_set_intersect(domain,
1004 isl_union_set_copy(kernel->block_filter));
1005 grid = isl_union_set_params(domain);
1006 grid = isl_set_from_params(grid);
1007 grid = isl_set_add_dims(grid, isl_dim_set, kernel->n_grid);
1008 for (i = 0; i < kernel->n_grid; ++i) {
1009 int pos;
1010 isl_id *id;
1012 id = isl_id_list_get_id(kernel->block_ids, i);
1013 pos = isl_set_find_dim_by_id(grid, isl_dim_param, id);
1014 isl_id_free(id);
1015 assert(pos >= 0);
1016 grid = isl_set_equate(grid, isl_dim_param, pos, isl_dim_set, i);
1017 grid = isl_set_project_out(grid, isl_dim_param, pos, 1);
1020 return extract_size(grid, isl_set_copy(kernel->context));
1023 /* Compute the size of a fixed bounding box around the origin and "set",
1024 * where "set" is assumed to contain only non-negative elements,
1025 * and store the results in "size".
1026 * In particular, compute the maximal value of "set" in each direction
1027 * and add one.
1029 static void extract_fixed_size(__isl_take isl_set *set, int *size)
1031 int i, n;
1032 isl_local_space *ls;
1033 isl_aff *obj;
1035 n = isl_set_dim(set, isl_dim_set);
1036 ls = isl_local_space_from_space(isl_set_get_space(set));
1037 obj = isl_aff_zero_on_domain(ls);
1038 for (i = 0; i < n; ++i) {
1039 isl_val *max;
1041 obj = isl_aff_set_coefficient_si(obj, isl_dim_in, i, 1);
1042 max = isl_set_max_val(set, obj);
1043 size[i] = isl_val_get_num_si(max) + 1;
1044 isl_val_free(max);
1045 obj = isl_aff_set_coefficient_si(obj, isl_dim_in, i, 0);
1047 isl_aff_free(obj);
1048 isl_set_free(set);
1051 /* Compute the effective block size as a list of the sizes in each dimension
1052 * and store the sizes in kernel->block_dim.
1054 * The block size specified by the user or set by default
1055 * in read_block_sizes() and applied by the thread filter,
1056 * may be too large for the given code in the sense that
1057 * it may contain threads that don't need to execute anything.
1058 * We therefore update this block size in kernel->block_dim
1059 * to the smallest block size that ensures that all threads
1060 * that actually execute code are included in the block.
1062 * The possible values of the thread ids is obtained from
1063 * the domain elements "domain" and kernel->thread_filter.
1064 * The current implementation eliminates all parameters, ensuring
1065 * that the size is a fixed constant in each dimension.
1066 * In principle we could also compute parametric sizes.
1067 * We would have to make sure to project out all b%d and t%d parameters,
1068 * however.
1070 static void extract_block_size(struct ppcg_kernel *kernel,
1071 __isl_take isl_union_set *domain)
1073 int i;
1074 int nparam;
1075 isl_set *block;
1077 domain = isl_union_set_intersect(domain,
1078 isl_union_set_copy(kernel->thread_filter));
1079 block = isl_union_set_params(domain);
1080 block = isl_set_from_params(block);
1081 block = isl_set_add_dims(block, isl_dim_set, kernel->n_block);
1082 for (i = 0; i < kernel->n_block; ++i) {
1083 int pos;
1084 isl_id *id;
1086 id = isl_id_list_get_id(kernel->thread_ids, i);
1087 pos = isl_set_find_dim_by_id(block, isl_dim_param, id);
1088 isl_id_free(id);
1089 assert(pos >= 0);
1090 block = isl_set_equate(block, isl_dim_param, pos,
1091 isl_dim_set, i);
1093 nparam = isl_set_dim(block, isl_dim_param);
1094 block = isl_set_project_out(block, isl_dim_param, 0, nparam);
1096 extract_fixed_size(block, kernel->block_dim);
1099 struct ppcg_kernel *ppcg_kernel_free(struct ppcg_kernel *kernel)
1101 int i, j;
1103 if (!kernel)
1104 return NULL;
1106 isl_id_list_free(kernel->block_ids);
1107 isl_id_list_free(kernel->thread_ids);
1108 isl_multi_pw_aff_free(kernel->grid_size);
1109 isl_set_free(kernel->context);
1110 isl_union_set_free(kernel->core);
1111 isl_union_set_free(kernel->arrays);
1112 isl_space_free(kernel->space);
1113 isl_ast_node_free(kernel->tree);
1114 isl_union_set_free(kernel->block_filter);
1115 isl_union_set_free(kernel->thread_filter);
1116 isl_union_pw_multi_aff_free(kernel->shared_schedule);
1118 for (i = 0; i < kernel->n_array; ++i) {
1119 struct gpu_local_array_info *array = &kernel->array[i];
1121 for (j = 0; j < array->n_group; ++j)
1122 gpu_array_ref_group_free(array->groups[j]);
1123 free(array->groups);
1125 isl_pw_aff_list_free(array->bound);
1127 free(kernel->array);
1129 for (i = 0; i < kernel->n_var; ++i) {
1130 free(kernel->var[i].name);
1131 isl_vec_free(kernel->var[i].size);
1133 free(kernel->var);
1135 free(kernel);
1137 return NULL;
1140 /* Wrapper around ppcg_kernel_free for use as a isl_id_set_free_user callback.
1142 static void ppcg_kernel_free_wrap(void *user)
1144 struct ppcg_kernel *kernel = user;
1146 ppcg_kernel_free(kernel);
1149 static void create_kernel_var(isl_ctx *ctx, struct gpu_array_ref_group *group,
1150 struct ppcg_kernel_var *var)
1152 int j;
1153 struct gpu_array_tile *tile;
1154 isl_printer *p;
1155 char *name;
1157 var->array = group->array;
1159 tile = group->private_tile;
1160 var->type = ppcg_access_private;
1161 if (!tile) {
1162 tile = group->shared_tile;
1163 var->type = ppcg_access_shared;
1166 p = isl_printer_to_str(ctx);
1167 p = gpu_array_ref_group_print_name(group, p);
1168 var->name = isl_printer_get_str(p);
1169 isl_printer_free(p);
1171 var->size = isl_vec_alloc(ctx, group->array->n_index);
1173 for (j = 0; j < group->array->n_index; ++j)
1174 var->size = isl_vec_set_element_val(var->size, j,
1175 isl_val_copy(tile->bound[j].size));
1178 static int create_kernel_vars(struct ppcg_kernel *kernel)
1180 int i, j, n;
1182 n = 0;
1183 for (i = 0; i < kernel->n_array; ++i) {
1184 struct gpu_local_array_info *array = &kernel->array[i];
1186 for (j = 0; j < array->n_group; ++j) {
1187 struct gpu_array_ref_group *group = array->groups[j];
1188 if (group->private_tile || group->shared_tile)
1189 ++n;
1193 kernel->n_var = n;
1194 kernel->var = isl_calloc_array(kernel->ctx, struct ppcg_kernel_var, n);
1195 if (!kernel->var)
1196 return -1;
1198 n = 0;
1199 for (i = 0; i < kernel->n_array; ++i) {
1200 struct gpu_local_array_info *array = &kernel->array[i];
1202 for (j = 0; j < array->n_group; ++j) {
1203 struct gpu_array_ref_group *group = array->groups[j];
1204 if (!group->private_tile && !group->shared_tile)
1205 continue;
1206 create_kernel_var(kernel->ctx, group, &kernel->var[n]);
1207 ++n;
1211 return 0;
1214 /* Replace "pa" by the zero function defined over the universe domain
1215 * in the space of "pa".
1217 static __isl_give isl_pw_aff *set_universally_zero(__isl_take isl_pw_aff *pa)
1219 isl_space *space;
1220 isl_aff *zero;
1222 space = isl_space_domain(isl_pw_aff_get_space(pa));
1223 isl_pw_aff_free(pa);
1224 zero = isl_aff_zero_on_domain(isl_local_space_from_space(space));
1226 return isl_pw_aff_from_aff(zero);
1229 /* The sizes of the arrays on the host that have been computed by
1230 * extract_array_info may depend on the parameters. Use the extra
1231 * constraints on the parameters that are valid at "host_domain"
1232 * to simplify these expressions and store the results in kernel->array.
1234 * We only need these localized bounds for arrays that are accessed
1235 * by the current kernel. If we have found at least one reference group
1236 * then the array is accessed by the kernel. If the array has compound
1237 * elements then we skipped the construction of array reference groups.
1239 * The resulting sizes may be functions that are nowhere defined
1240 * in case the access function cannot possibly access anything inside
1241 * the kernel for some reason. If so, they are replaced by the zero
1242 * function. Since the access function cannot actually access anything,
1243 * there is no harm in printing the array sizes as zero.
1245 static void localize_bounds(struct ppcg_kernel *kernel,
1246 __isl_keep isl_set *host_domain)
1248 int i, j;
1249 isl_set *context;
1251 context = isl_set_copy(host_domain);
1252 context = isl_set_params(context);
1254 for (i = 0; i < kernel->n_array; ++i) {
1255 struct gpu_local_array_info *local = &kernel->array[i];
1256 isl_pw_aff_list *bound;
1257 int n_index;
1259 if (local->n_group == 0 && !local->array->has_compound_element)
1260 continue;
1262 n_index = local->array->n_index;
1263 bound = isl_pw_aff_list_alloc(kernel->ctx, n_index);
1265 for (j = 0; j < n_index; ++j) {
1266 isl_pw_aff *pwaff;
1267 int empty;
1269 pwaff = isl_pw_aff_copy(local->array->bound[j]);
1270 pwaff = isl_pw_aff_gist(pwaff, isl_set_copy(context));
1271 empty = isl_pw_aff_is_empty(pwaff);
1272 if (empty < 0)
1273 pwaff = isl_pw_aff_free(pwaff);
1274 else if (empty)
1275 pwaff = set_universally_zero(pwaff);
1276 bound = isl_pw_aff_list_add(bound, pwaff);
1279 local->n_index = n_index;
1280 local->bound = bound;
1282 isl_set_free(context);
1285 /* Create the array of gpu_local_array_info structures "array"
1286 * inside "kernel". The number of elements in this array is
1287 * the same as the number of arrays in "prog".
1288 * Initialize the "array" field of each local array to point
1289 * to the corresponding array in "prog".
1291 static struct ppcg_kernel *ppcg_kernel_create_local_arrays(
1292 struct ppcg_kernel *kernel, struct gpu_prog *prog)
1294 int i;
1295 isl_ctx *ctx;
1297 ctx = isl_set_get_ctx(prog->context);
1298 kernel->array = isl_calloc_array(ctx,
1299 struct gpu_local_array_info, prog->n_array);
1300 if (!kernel->array)
1301 return ppcg_kernel_free(kernel);
1302 kernel->n_array = prog->n_array;
1304 for (i = 0; i < prog->n_array; ++i)
1305 kernel->array[i].array = &prog->array[i];
1307 return kernel;
1310 /* Find the element in gen->stmt that has the given "id".
1311 * Return NULL if no such gpu_stmt can be found.
1313 static struct gpu_stmt *find_stmt(struct gpu_prog *prog, __isl_keep isl_id *id)
1315 int i;
1317 for (i = 0; i < prog->n_stmts; ++i) {
1318 if (id == prog->stmts[i].id)
1319 break;
1322 return i < prog->n_stmts ? &prog->stmts[i] : NULL;
1325 void ppcg_kernel_stmt_free(void *user)
1327 int i;
1328 struct ppcg_kernel_stmt *stmt = user;
1330 if (!stmt)
1331 return;
1333 switch (stmt->type) {
1334 case ppcg_kernel_copy:
1335 isl_ast_expr_free(stmt->u.c.index);
1336 isl_ast_expr_free(stmt->u.c.local_index);
1337 break;
1338 case ppcg_kernel_domain:
1339 isl_id_to_ast_expr_free(stmt->u.d.ref2expr);
1340 break;
1341 case ppcg_kernel_sync:
1342 break;
1345 free(stmt);
1348 /* Return the gpu_stmt_access in the list "accesses" that corresponds
1349 * to "ref_id".
1351 static struct gpu_stmt_access *find_access(struct gpu_stmt_access *accesses,
1352 __isl_keep isl_id *ref_id)
1354 struct gpu_stmt_access *access;
1356 for (access = accesses; access; access = access->next)
1357 if (access->ref_id == ref_id)
1358 return access;
1360 return NULL;
1363 /* Return the index of the array called "name" in the list of arrays.
1365 static int find_array_index(struct ppcg_kernel *kernel, const char *name)
1367 int i;
1369 for (i = 0; i < kernel->n_array; ++i)
1370 if (!strcmp(name, kernel->array[i].array->name))
1371 return i;
1373 return -1;
1376 /* Internal data structure for the index and AST expression transformation
1377 * callbacks for pet_stmt_build_ast_exprs.
1379 * "accesses" is the list of gpu_stmt_access in the statement.
1380 * "iterator_map" expresses the statement iterators in terms of
1381 * the AST loop iterators.
1382 * "sched2shared" expresses the outer shared_schedule_dim dimensions of
1383 * the kernel schedule in terms of the AST loop iterators.
1385 * The following fields are set in transform_index and used in transform_expr.
1386 * "array" is the array that is being accessed.
1387 * "global" is set if the global array is accessed (rather than
1388 * shared/private memory).
1389 * "local_array" refers to information on the array specialized
1390 * to the current kernel.
1392 struct ppcg_transform_data {
1393 struct gpu_gen *gen;
1394 struct gpu_stmt_access *accesses;
1395 isl_pw_multi_aff *iterator_map;
1396 isl_pw_multi_aff *sched2shared;
1398 struct gpu_array_info *array;
1399 int global;
1400 struct gpu_local_array_info *local_array;
1403 /* Return the name of the outer array (of structs) accessed by "access".
1405 static const char *get_outer_array_name(__isl_keep isl_map *access)
1407 isl_space *space;
1408 const char *name;
1410 space = isl_space_range(isl_map_get_space(access));
1411 while (space && isl_space_is_wrapping(space))
1412 space = isl_space_domain(isl_space_unwrap(space));
1413 name = isl_space_get_tuple_name(space, isl_dim_set);
1414 isl_space_free(space);
1416 return name;
1419 /* Return a pointer to the gpu_array_ref_group in "local"
1420 * that contains the reference "access".
1421 * Return NULL if no such group can be found.
1423 static struct gpu_array_ref_group *find_ref_group(
1424 struct gpu_local_array_info *local, struct gpu_stmt_access *access)
1426 int i, j;
1428 for (i = 0; i < local->n_group; ++i) {
1429 struct gpu_array_ref_group *group = local->groups[i];
1431 for (j = 0; j < group->n_ref; ++j)
1432 if (group->refs[j] == access)
1433 return group;
1436 return NULL;
1439 /* Index transformation callback for pet_stmt_build_ast_exprs.
1441 * "index" expresses the array indices in terms of statement iterators
1443 * We first reformulate "index" in terms of the AST loop iterators.
1444 * Then we check if we are accessing the global array or
1445 * a shared/private copy. In the former case, we simply return
1446 * the updated index. If "index" is an affine expression rather
1447 * than an array access, then we also return the updated index here.
1449 * If no reference groups have been computed for the array,
1450 * then we can only be accessing the global array.
1452 * Otherwise, we apply the tiling to the index.
1453 * This tiling is of the form
1455 * [D -> A] -> T
1457 * where D corresponds to the outer group->depth dimensions of
1458 * the kernel schedule.
1459 * The index is of the form
1461 * L -> A
1463 * We update the tiling to refer to the AST loop iterators
1465 * [L -> A] -> T
1467 * and modify index to keep track of those iterators
1469 * L -> [L -> A]
1471 * Combining these two yields a tiled index expression in terms
1472 * of the AST loop iterators
1474 * L -> T
1476 static __isl_give isl_multi_pw_aff *transform_index(
1477 __isl_take isl_multi_pw_aff *index, __isl_keep isl_id *ref_id,
1478 void *user)
1480 struct ppcg_transform_data *data = user;
1481 struct gpu_stmt_access *access;
1482 struct gpu_array_ref_group *group;
1483 struct gpu_array_tile *tile;
1484 isl_pw_multi_aff *iterator_map;
1485 int i;
1486 int dim;
1487 const char *name;
1488 isl_space *space;
1489 isl_multi_pw_aff *tiling;
1490 isl_pw_multi_aff *pma;
1491 isl_multi_pw_aff *mpa;
1492 isl_pw_multi_aff *sched2depth;
1494 data->array = NULL;
1496 iterator_map = isl_pw_multi_aff_copy(data->iterator_map);
1497 index = isl_multi_pw_aff_pullback_pw_multi_aff(index, iterator_map);
1499 access = find_access(data->accesses, ref_id);
1500 if (!access)
1501 return index;
1502 if (!isl_map_has_tuple_name(access->access, isl_dim_out))
1503 return index;
1505 name = get_outer_array_name(access->access);
1506 i = find_array_index(data->gen->kernel, name);
1507 if (i < 0)
1508 isl_die(isl_multi_pw_aff_get_ctx(index), isl_error_internal,
1509 "cannot find array",
1510 return isl_multi_pw_aff_free(index));
1511 data->array = &data->gen->prog->array[i];
1512 data->local_array = &data->gen->kernel->array[i];
1514 group = find_ref_group(data->local_array, access);
1515 if (!group) {
1516 data->global = 1;
1517 return index;
1520 tile = group->private_tile;
1521 if (!tile)
1522 tile = group->shared_tile;
1523 data->global = !tile;
1524 if (!tile)
1525 return index;
1527 space = isl_space_range(isl_multi_pw_aff_get_space(index));
1528 space = isl_space_map_from_set(space);
1529 pma = isl_pw_multi_aff_identity(space);
1530 sched2depth = isl_pw_multi_aff_copy(data->sched2shared);
1531 dim = isl_pw_multi_aff_dim(sched2depth, isl_dim_out);
1532 sched2depth = isl_pw_multi_aff_drop_dims(sched2depth, isl_dim_out,
1533 group->depth, dim - group->depth);
1534 pma = isl_pw_multi_aff_product(sched2depth, pma);
1535 tiling = isl_multi_pw_aff_from_multi_aff(
1536 isl_multi_aff_copy(tile->tiling));
1537 tiling = isl_multi_pw_aff_pullback_pw_multi_aff(tiling, pma);
1539 space = isl_space_domain(isl_multi_pw_aff_get_space(index));
1540 space = isl_space_map_from_set(space);
1541 mpa = isl_multi_pw_aff_identity(space);
1542 index = isl_multi_pw_aff_range_product(mpa, index);
1543 index = isl_multi_pw_aff_pullback_multi_pw_aff(tiling, index);
1545 return index;
1548 /* Dereference "expr" by adding an index [0].
1549 * The original "expr" is assumed not to have any indices.
1551 * If "expr" is a member access, then the dereferencing needs
1552 * to be applied to the structure argument of this member access.
1554 static __isl_give isl_ast_expr *dereference(__isl_take isl_ast_expr *expr)
1556 isl_ctx *ctx;
1557 isl_ast_expr *arg0, *res;
1558 isl_ast_expr_list *list;
1560 arg0 = isl_ast_expr_get_op_arg(expr, 0);
1561 if (!arg0)
1562 return isl_ast_expr_free(expr);
1563 if (isl_ast_expr_get_type(arg0) == isl_ast_expr_op &&
1564 isl_ast_expr_get_op_type(arg0) == isl_ast_op_member) {
1565 isl_ast_expr *arg;
1567 arg = isl_ast_expr_get_op_arg(arg0, 0);
1568 arg = dereference(arg);
1569 arg0 = isl_ast_expr_set_op_arg(arg0, 0, arg);
1570 expr = isl_ast_expr_set_op_arg(expr, 0, arg0);
1572 return expr;
1574 isl_ast_expr_free(arg0);
1576 ctx = isl_ast_expr_get_ctx(expr);
1577 res = isl_ast_expr_from_val(isl_val_zero(ctx));
1578 list = isl_ast_expr_list_from_ast_expr(res);
1579 res = isl_ast_expr_get_op_arg(expr, 0);
1580 res = isl_ast_expr_access(res, list);
1581 isl_ast_expr_free(expr);
1583 return res;
1586 /* Linearize the index expression "expr" based on the array bounds
1587 * of "array".
1589 * That is, transform expression
1591 * A[i_0][i_1]...[i_n]
1593 * to
1595 * A[(..((i_0 * b_1 + i_1) ... ) * b_n + i_n]
1597 * where b_0, b_1, ..., b_n are the bounds on the array.
1599 * If the base of "expr" is a member access, then the linearization needs
1600 * to be applied to the structure argument of this member access.
1602 * In the base case, if "expr" has no arguments (other than the name of
1603 * the array), then we are passing an entire array to a function.
1604 * In this case, there is nothing to linearize.
1605 * Note that at this point an expression with no arguments can
1606 * only be an entire array because the scalar case and
1607 * the case of single struct are handled by the caller.
1609 * If the number of specified index expressions in "expr"
1610 * is smaller than the dimension of the accessed array,
1611 * then the missing i_j also do not appear in the linearized expression.
1612 * Furthermore, since such an expression does not refer to a single
1613 * element while the default linearized expression would refer to
1614 * a single element, we return the expression
1616 * A + (..((i_0 * b_1 + i_1) ... ) * b_n]
1618 * instead. Note that because of the special case handling above,
1619 * we can assume here that here that there is at least one index expression.
1621 __isl_give isl_ast_expr *gpu_local_array_info_linearize_index(
1622 struct gpu_local_array_info *array, __isl_take isl_ast_expr *expr)
1624 int i, n;
1625 isl_ctx *ctx;
1626 isl_set *context;
1627 isl_ast_expr *arg0;
1628 isl_ast_expr *res;
1629 isl_ast_expr_list *list;
1630 isl_ast_build *build;
1632 arg0 = isl_ast_expr_get_op_arg(expr, 0);
1633 if (isl_ast_expr_get_type(arg0) == isl_ast_expr_op &&
1634 isl_ast_expr_get_op_type(arg0) == isl_ast_op_member) {
1635 isl_ast_expr *arg;
1637 arg = isl_ast_expr_get_op_arg(arg0, 0);
1638 arg = gpu_local_array_info_linearize_index(array, arg);
1639 arg0 = isl_ast_expr_set_op_arg(arg0, 0, arg);
1640 expr = isl_ast_expr_set_op_arg(expr, 0, arg0);
1642 return expr;
1644 isl_ast_expr_free(arg0);
1646 if (isl_ast_expr_get_op_n_arg(expr) == 1)
1647 return expr;
1649 ctx = isl_ast_expr_get_ctx(expr);
1650 context = isl_set_universe(isl_space_params_alloc(ctx, 0));
1651 build = isl_ast_build_from_context(context);
1653 n = isl_ast_expr_get_op_n_arg(expr);
1654 res = isl_ast_expr_get_op_arg(expr, 1);
1655 for (i = 1; i < array->n_index; ++i) {
1656 isl_pw_aff *bound_i;
1657 isl_ast_expr *expr_i;
1659 bound_i = isl_pw_aff_list_get_pw_aff(array->bound, i);
1660 expr_i = isl_ast_build_expr_from_pw_aff(build, bound_i);
1661 res = isl_ast_expr_mul(res, expr_i);
1663 if (i + 1 >= n)
1664 continue;
1665 expr_i = isl_ast_expr_get_op_arg(expr, i + 1);
1666 res = isl_ast_expr_add(res, expr_i);
1669 isl_ast_build_free(build);
1671 if (1 + array->n_index > n) {
1672 res = isl_ast_expr_add(isl_ast_expr_get_op_arg(expr, 0), res);
1673 } else {
1674 list = isl_ast_expr_list_from_ast_expr(res);
1675 res = isl_ast_expr_get_op_arg(expr, 0);
1676 res = isl_ast_expr_access(res, list);
1679 isl_ast_expr_free(expr);
1681 return res;
1684 /* AST expression transformation callback for pet_stmt_build_ast_exprs.
1686 * If the AST expression refers to an array that is not accessed
1687 * at all, then this means the value of the expression is not used,
1688 * so we might as well print zero (NULL pointer) instead.
1690 * If the AST expression refers to a global scalar that is not
1691 * a read-only scalar, then its address was passed to the kernel and
1692 * we need to dereference it.
1694 * If the AST expression refers to an access to a global array,
1695 * then we linearize the access exploiting the bounds in data->local_array.
1697 static __isl_give isl_ast_expr *transform_expr(__isl_take isl_ast_expr *expr,
1698 __isl_keep isl_id *id, void *user)
1700 struct ppcg_transform_data *data = user;
1702 if (!data->array)
1703 return expr;
1704 if (!data->array->accessed) {
1705 isl_ctx *ctx;
1707 ctx = isl_ast_expr_get_ctx(expr);
1708 isl_ast_expr_free(expr);
1709 return isl_ast_expr_from_val(isl_val_zero(ctx));
1711 if (gpu_array_is_read_only_scalar(data->array))
1712 return expr;
1713 if (!data->global)
1714 return expr;
1715 if (data->array->n_index == 0)
1716 return dereference(expr);
1717 if (!data->array->linearize)
1718 return expr;
1720 return gpu_local_array_info_linearize_index(data->local_array, expr);
1723 /* This function is called for each instance of a user statement
1724 * in the kernel, identified by "gpu_stmt".
1726 * We attach a struct ppcg_kernel_stmt to the "node", containing
1727 * a computed AST expression for each access.
1728 * These AST expressions are computed from iterator_map,
1729 * which expresses the domain
1730 * elements in terms of the generated loops, and sched2shared,
1731 * which expresses the outer shared_schedule_dim dimensions of
1732 * the kernel schedule computed by PPCG in terms of the generated loops.
1734 static __isl_give isl_ast_node *create_domain_leaf(struct gpu_gen *gen,
1735 __isl_take isl_ast_node *node, __isl_keep isl_ast_build *build,
1736 struct gpu_stmt *gpu_stmt)
1738 struct ppcg_transform_data data;
1739 struct ppcg_kernel_stmt *stmt;
1740 isl_id *id;
1741 isl_pw_multi_aff *sched2shared;
1742 isl_map *map;
1743 isl_pw_multi_aff *iterator_map;
1744 isl_union_map *schedule;
1746 stmt = isl_calloc_type(gen->ctx, struct ppcg_kernel_stmt);
1747 if (!stmt)
1748 return isl_ast_node_free(node);
1750 schedule = isl_ast_build_get_schedule(build);
1751 map = isl_map_reverse(isl_map_from_union_map(schedule));
1752 iterator_map = isl_pw_multi_aff_from_map(map);
1753 sched2shared = compute_sched_to_shared(gen->kernel,
1754 isl_pw_multi_aff_copy(iterator_map));
1756 stmt->type = ppcg_kernel_domain;
1757 stmt->u.d.stmt = gpu_stmt;
1759 data.gen = gen;
1760 data.accesses = stmt->u.d.stmt->accesses;
1761 data.iterator_map = iterator_map;
1762 data.sched2shared = sched2shared;
1763 stmt->u.d.ref2expr = pet_stmt_build_ast_exprs(stmt->u.d.stmt->stmt,
1764 build, &transform_index, &data,
1765 &transform_expr, &data);
1767 isl_pw_multi_aff_free(iterator_map);
1768 isl_pw_multi_aff_free(sched2shared);
1770 id = isl_id_alloc(gen->ctx, NULL, stmt);
1771 id = isl_id_set_free_user(id, &ppcg_kernel_stmt_free);
1772 return isl_ast_node_set_annotation(node, id);
1775 /* This function is called for each statement node in the AST
1776 * for copying to or from shared/private memory.
1777 * Attach a pointer to a ppcg_kernel_stmt representing the copy
1778 * statement to the node.
1779 * The statement name is "read" or "write", depending on whether we are
1780 * reading from global memory or writing to global memory.
1782 * The schedule is of the form
1784 * type[D -> A] -> L
1786 * where D corresponds to the outer group->depth dimensions of
1787 * the kernel schedule, A to the global array and L to the outer
1788 * generated AST schedule.
1789 * We compute the inverse and strip off the type, resulting in
1791 * L -> [D -> A]
1793 * We combine this mapping with on the one hand the projection
1795 * [D -> A] -> A
1797 * and on the other hand the group tiling
1799 * [D -> A] -> T
1801 * resulting in
1803 * L -> A and L -> T
1805 * and store the corresponding expressions in stmt->index and stmt->local_index,
1806 * where stmt points to the ppcg_kernel_stmt that is attached to the node.
1808 static __isl_give isl_ast_node *create_access_leaf(struct gpu_gen *gen,
1809 struct gpu_array_ref_group *group, __isl_take isl_ast_node *node,
1810 __isl_keep isl_ast_build *build)
1812 struct ppcg_kernel_stmt *stmt;
1813 struct gpu_array_tile *tile;
1814 isl_id *id;
1815 isl_ast_expr *expr;
1816 isl_space *space;
1817 isl_map *access;
1818 isl_pw_multi_aff *pma, *pma2;
1819 const char *type;
1821 stmt = isl_calloc_type(gen->ctx, struct ppcg_kernel_stmt);
1822 if (!stmt)
1823 return isl_ast_node_free(node);
1825 access = isl_map_from_union_map(isl_ast_build_get_schedule(build));
1826 type = isl_map_get_tuple_name(access, isl_dim_in);
1827 stmt->u.c.read = !strcmp(type, "read");
1828 access = isl_map_reverse(access);
1829 pma = isl_pw_multi_aff_from_map(access);
1830 pma = isl_pw_multi_aff_reset_tuple_id(pma, isl_dim_out);
1832 space = isl_space_range(isl_pw_multi_aff_get_space(pma));
1833 space = isl_space_unwrap(space);
1834 pma2 = isl_pw_multi_aff_range_map(space);
1835 pma2 = isl_pw_multi_aff_pullback_pw_multi_aff(pma2,
1836 isl_pw_multi_aff_copy(pma));
1837 expr = isl_ast_build_access_from_pw_multi_aff(build, pma2);
1838 stmt->u.c.index = expr;
1840 tile = gpu_array_ref_group_tile(group);
1841 pma2 = isl_pw_multi_aff_from_multi_aff(
1842 isl_multi_aff_copy(tile->tiling));
1843 pma2 = isl_pw_multi_aff_pullback_pw_multi_aff(pma2, pma);
1844 expr = isl_ast_build_access_from_pw_multi_aff(build, pma2);
1845 stmt->u.c.local_index = expr;
1847 stmt->u.c.array = group->array;
1848 stmt->u.c.local_array = group->local_array;
1849 stmt->type = ppcg_kernel_copy;
1851 id = isl_id_alloc(gen->ctx, NULL, stmt);
1852 id = isl_id_set_free_user(id, &ppcg_kernel_stmt_free);
1853 return isl_ast_node_set_annotation(node, id);
1856 /* Create a synchronization ppcg_kernel_stmt and
1857 * attach it to the node "node" representing the synchronization.
1859 static __isl_give isl_ast_node *create_sync_leaf(
1860 struct gpu_gen *gen, __isl_take isl_ast_node *node,
1861 __isl_keep isl_ast_build *build)
1863 struct ppcg_kernel_stmt *stmt;
1864 isl_id *id;
1866 stmt = isl_calloc_type(gen->ctx, struct ppcg_kernel_stmt);
1867 if (!stmt)
1868 return isl_ast_node_free(node);
1870 stmt->type = ppcg_kernel_sync;
1871 id = isl_id_alloc(gen->ctx, NULL, stmt);
1872 id = isl_id_set_free_user(id, &ppcg_kernel_stmt_free);
1873 return isl_ast_node_set_annotation(node, id);
1876 /* This function is called for each instance of a user statement
1877 * in the kernel. This may be one of the original user statements
1878 * or a statement introduced by PPCG.
1880 * We assume that the original user statements only have a name
1881 * and no user pointer. The statements introduced by PPCG
1882 * on the other hand all have a user pointer.
1884 * If the user statement is one of the original user statements
1885 * (one with no user pointer), then we call create_domain_leaf. Otherwise,
1886 * we check if it is a copy or synchronization statement and
1887 * call the appropriate functions.
1889 static __isl_give isl_ast_node *at_domain(__isl_take isl_ast_node *node,
1890 __isl_keep isl_ast_build *build, void *user)
1892 struct gpu_gen *gen = (struct gpu_gen *) user;
1893 isl_ast_expr *expr, *arg;
1894 isl_id *id;
1895 int is_sync;
1896 const char *name;
1897 void *p;
1899 expr = isl_ast_node_user_get_expr(node);
1900 arg = isl_ast_expr_get_op_arg(expr, 0);
1901 id = isl_ast_expr_get_id(arg);
1902 name = isl_id_get_name(id);
1903 p = isl_id_get_user(id);
1904 isl_ast_expr_free(expr);
1905 isl_ast_expr_free(arg);
1907 if (!p) {
1908 struct gpu_stmt *gpu_stmt;
1910 gpu_stmt = find_stmt(gen->prog, id);
1911 isl_id_free(id);
1912 if (!gpu_stmt)
1913 isl_die(gen->ctx, isl_error_internal,
1914 "statement not found",
1915 return isl_ast_node_free(node));
1917 return create_domain_leaf(gen, node, build, gpu_stmt);
1920 is_sync = gpu_tree_id_is_sync(id, gen->kernel);
1921 isl_id_free(id);
1922 if (is_sync < 0)
1923 return isl_ast_node_free(node);
1924 if (!strcmp(name, "read") || !strcmp(name, "write")) {
1925 struct gpu_array_ref_group *group = p;
1926 return create_access_leaf(gen, group, node, build);
1928 if (!is_sync)
1929 isl_die(gen->ctx, isl_error_internal,
1930 "unknown statement type",
1931 return isl_ast_node_free(node));
1932 return create_sync_leaf(gen, node, build);
1935 /* Given a set of wrapped references "ref", return the corresponding
1936 * access relations based on the tagged access relations "tagged".
1938 * The elements of "ref" are of the form
1940 * [D -> R]
1942 * with D an iteration domains and R a reference.
1943 * The elements of "tagged" are of the form
1945 * [D -> R] -> A
1947 * with A an array.
1949 * Extend "tagged" to include the iteration domain in the range, i.e.,
1951 * [D -> R] -> [D -> A]
1953 * apply the result to "ref" and then unwrap the resulting set
1954 * to obtain relations of the form
1956 * D -> A
1958 static __isl_give isl_union_map *wrapped_reference_to_access(
1959 __isl_take isl_union_set *ref, __isl_take isl_union_map *tagged)
1961 isl_union_map *tag2access;
1963 tag2access = isl_union_map_copy(tagged);
1964 tag2access = isl_union_map_universe(tag2access);
1965 tag2access = isl_union_set_unwrap(isl_union_map_domain(tag2access));
1966 tag2access = isl_union_map_domain_map(tag2access);
1967 tag2access = isl_union_map_range_product(tag2access, tagged);
1969 ref = isl_union_set_coalesce(ref);
1970 ref = isl_union_set_apply(ref, tag2access);
1972 return isl_union_set_unwrap(ref);
1975 /* Given an access relation "access" from "group", remove those reads
1976 * if ("read" is 1) or writes (if "read" is 0) that are only needed to
1977 * communicate data within the same iteration of "sched".
1979 * If the access is a read then it is either an element of
1981 * live_in union (range flow)
1983 * where live_in and flow may be overapproximations, or
1984 * it reads an uninitialized value (that is not live-in because
1985 * there is an intermediate kill) or it reads a value that was
1986 * written within the same (compound) statement instance.
1987 * If the access is a write then it is either an element of
1989 * live_out union (domain flow)
1991 * or it writes a value that is never read (and is not live-out
1992 * because of an intermediate kill) or only
1993 * within the same (compound) statement instance.
1994 * In both cases, the access relation is also a subset of
1995 * the group access relation.
1997 * The cases where an uninitialized value is read or a value is written
1998 * that is never read or where the dataflow occurs within a statement
1999 * instance are also considered local and may also be removed.
2001 * Essentially, we compute the intersection of "access" with either
2003 * live_in union (range non-local-flow)
2005 * or
2007 * live_out union (domain non-local-flow)
2009 * We first construct a relation "local"
2011 * [[D -> R] -> [D' -> R']]
2013 * of pairs of domain iterations accessing the reference group
2014 * and references in the group that are coscheduled by "sched".
2016 * If this relation does not intersect the dataflow dependences,
2017 * then there is nothing we can possibly remove, unless the dataflow
2018 * dependences themselves only relate a subset of the accesses.
2019 * In particular, the accesses may not be involved in any dataflow
2020 * dependences, either because they are uninitialized reads/dead writes
2021 * or because the dataflow occurs inside a statement instance.
2023 * Since the computation below may break up the access relation
2024 * into smaller pieces, we only perform the intersection with
2025 * the non-local dependent accesses if the local pairs
2026 * intersect the dataflow dependences. Otherwise, we intersect
2027 * with the universe of the non-local dependent accesses.
2028 * This should at least remove accesses from statements that
2029 * do not participate in any dependences.
2031 * In particular, we remove the "local" dataflow dependences from
2032 * the set of all dataflow dependences.
2033 * Note that if the potential dataflow dependences are an overapproximation
2034 * of the actual dataflow dependences, then the result remains an
2035 * overapproximation of the non-local dataflow dependences.
2036 * Copying to/from global memory is only needed for the references
2037 * in the domain/range of the result or for accesses that are live out/in
2038 * for the entire scop.
2040 * We therefore map the domain/range of the "external" relation
2041 * to the corresponding access relation and take the union with
2042 * the live out/in relation.
2044 static __isl_give isl_union_map *remove_local_accesses(
2045 struct gpu_prog *prog, struct gpu_array_ref_group *group,
2046 __isl_take isl_union_map *access, __isl_take isl_union_map *sched,
2047 int read)
2049 int empty;
2050 isl_union_pw_multi_aff *tagger;
2051 isl_union_set *domain;
2052 isl_union_map *local, *tagged, *external;
2053 isl_union_set *tag_set;
2055 if (isl_union_map_is_empty(access)) {
2056 isl_union_map_free(sched);
2057 return access;
2060 tagged = group_tagged_access_relation(group);
2062 tagger = isl_union_pw_multi_aff_copy(prog->scop->tagger);
2063 domain = isl_union_map_domain(isl_union_map_copy(tagged));
2064 tagger = isl_union_pw_multi_aff_intersect_domain(tagger, domain);
2065 sched = isl_union_map_preimage_domain_union_pw_multi_aff(sched, tagger);
2067 local = isl_union_map_apply_range(sched,
2068 isl_union_map_reverse(isl_union_map_copy(sched)));
2069 local = isl_union_map_intersect(local,
2070 isl_union_map_copy(prog->scop->tagged_dep_flow));
2072 empty = isl_union_map_is_empty(local);
2074 external = isl_union_map_copy(prog->scop->tagged_dep_flow);
2075 external = isl_union_map_intersect_params(external,
2076 isl_set_copy(prog->scop->context));
2077 external = isl_union_map_subtract(external, local);
2079 if (read) {
2080 tag_set = isl_union_map_range(external);
2081 external = wrapped_reference_to_access(tag_set, tagged);
2082 external = isl_union_map_union(external,
2083 isl_union_map_copy(prog->scop->live_in));
2084 } else {
2085 tag_set = isl_union_map_domain(external);
2086 external = wrapped_reference_to_access(tag_set, tagged);
2087 external = isl_union_map_union(external,
2088 isl_union_map_copy(prog->scop->live_out));
2091 if (empty < 0)
2092 external = isl_union_map_free(external);
2093 else if (empty)
2094 external = isl_union_map_universe(external);
2096 access = isl_union_map_intersect(access, external);
2098 return access;
2101 /* Given an access relation "access" from "group", remove those reads
2102 * if ("read" is 1) or writes (if "read" is 0) that are only needed to
2103 * communicate data within the same iteration of the schedule at the
2104 * position where the copying of the group is inserted.
2105 * "node" points to this position, i.e., the depth at "node"
2106 * is equal to group->depth.
2108 * We extract a schedule that picks out the iterations of the outer
2109 * group->depth dimensions and call remove_local_accesses.
2111 static __isl_give isl_union_map *remove_local_accesses_group(
2112 struct ppcg_kernel *kernel, struct gpu_array_ref_group *group,
2113 __isl_take isl_union_map *access, __isl_keep isl_schedule_node *node,
2114 int read)
2116 isl_union_map *sched;
2118 if (isl_union_map_is_empty(access))
2119 return access;
2121 sched = isl_schedule_node_get_prefix_schedule_relation(node);
2123 return remove_local_accesses(kernel->prog, group, access, sched, read);
2126 /* This function is called before the AST generator starts traversing
2127 * the schedule subtree of a node with mark "mark".
2129 * If the mark is called "kernel", store the kernel pointer in gen->kernel
2130 * for use in at_domain.
2132 static int before_mark(__isl_keep isl_id *mark,
2133 __isl_keep isl_ast_build *build, void *user)
2135 struct gpu_gen *gen = user;
2137 if (!mark)
2138 return -1;
2139 if (!strcmp(isl_id_get_name(mark), "kernel"))
2140 gen->kernel = isl_id_get_user(mark);
2141 return 0;
2144 /* This function is called after the AST generator has finished traversing
2145 * the schedule subtree of a mark node. "node" points to the corresponding
2146 * mark AST node.
2148 * If the mark is called "kernel", then replace "node" by a user node
2149 * that "calls" the kernel, representing the launch of the kernel.
2150 * The original "node" is stored inside the kernel object so that
2151 * it can be used to print the device code.
2152 * Note that this assumes that a kernel is only launched once.
2153 * Also clear the kernel field of gen.
2155 static __isl_give isl_ast_node *after_mark(__isl_take isl_ast_node *node,
2156 __isl_keep isl_ast_build *build, void *user)
2158 isl_ctx *ctx;
2159 isl_id *id;
2160 isl_ast_expr *expr;
2161 isl_ast_expr_list *list;
2162 struct ppcg_kernel *kernel;
2163 struct gpu_gen *gen = user;
2165 ctx = isl_ast_node_get_ctx(node);
2166 id = isl_ast_node_mark_get_id(node);
2167 if (!id)
2168 return isl_ast_node_free(node);
2169 if (strcmp(isl_id_get_name(id), "kernel") || !gen->kernel) {
2170 isl_id_free(id);
2171 return node;
2173 kernel = gen->kernel;
2174 gen->kernel = NULL;
2175 kernel->space = isl_ast_build_get_schedule_space(build);
2176 kernel->tree = isl_ast_node_mark_get_node(node);
2177 isl_ast_node_free(node);
2179 expr = isl_ast_expr_from_id(isl_id_copy(id));
2180 list = isl_ast_expr_list_alloc(ctx, 0);
2181 expr = isl_ast_expr_call(expr, list);
2182 node = isl_ast_node_alloc_user(expr);
2183 node = isl_ast_node_set_annotation(node, id);
2185 return node;
2188 static int update_depth(__isl_keep isl_schedule_node *node, void *user)
2190 int *depth = user;
2191 int node_depth;
2193 if (isl_schedule_node_get_type(node) != isl_schedule_node_leaf)
2194 return 1;
2195 node_depth = isl_schedule_node_get_schedule_depth(node);
2196 if (node_depth > *depth)
2197 *depth = node_depth;
2199 return 0;
2202 /* Use isl to generate code for both the host and the device
2203 * from gen->schedule.
2204 * The device code is marked by "kernel" mark nodes in the schedule tree,
2205 * containing a pointer to a ppcg_kernel object.
2206 * The returned AST only contains the AST for the host code.
2207 * The ASTs for the device code are embedded in ppcg_kernel objects
2208 * attached to the leaf nodes that call "kernel".
2210 static __isl_give isl_ast_node *generate_code(struct gpu_gen *gen)
2212 isl_ast_build *build;
2213 isl_ast_node *tree;
2214 isl_schedule *schedule;
2215 isl_id_list *iterators;
2216 int depth;
2218 depth = 0;
2219 if (isl_schedule_foreach_schedule_node(gen->schedule, &update_depth,
2220 &depth) < 0)
2221 return NULL;
2222 build = isl_ast_build_from_context(isl_set_copy(gen->prog->context));
2223 iterators = ppcg_scop_generate_names(gen->prog->scop, depth, "c");
2224 build = isl_ast_build_set_iterators(build, iterators);
2225 build = isl_ast_build_set_at_each_domain(build, &at_domain, gen);
2226 build = isl_ast_build_set_before_each_mark(build, &before_mark, gen);
2227 build = isl_ast_build_set_after_each_mark(build, &after_mark, gen);
2228 schedule = isl_schedule_copy(gen->schedule);
2229 tree = isl_ast_build_node_from_schedule(build, schedule);
2230 isl_ast_build_free(build);
2232 return tree;
2235 __isl_give isl_union_map *extract_sizes_from_str(isl_ctx *ctx, const char *str)
2237 if (!str)
2238 return NULL;
2239 return isl_union_map_read_from_str(ctx, str);
2242 /* Information about the outermost tilable bands in the forest of bands.
2244 * prefix is the (padded) schedule leading up to the outermost tilable bands.
2246 * tile_first is the number of schedule dimensions in prefix.
2248 * suffix is the schedule of the outermost tilable bands and their descendants.
2250 struct band_info {
2251 struct gpu_gen *gen;
2252 int tile_first;
2253 isl_union_map *prefix;
2254 isl_union_map *suffix;
2257 /* Construct an isl_multi_val for use as tile sizes for tiling "node"
2258 * from the elements in "tile_size".
2260 static __isl_give isl_multi_val *construct_band_tiles_sizes(
2261 __isl_keep isl_schedule_node *node, int *tile_size)
2263 int i, n;
2264 isl_ctx *ctx;
2265 isl_space *space;
2266 isl_multi_val *mv;
2268 if (!node)
2269 return NULL;
2271 ctx = isl_schedule_node_get_ctx(node);
2272 space = isl_schedule_node_band_get_space(node);
2273 n = isl_schedule_node_band_n_member(node);
2274 mv = isl_multi_val_zero(space);
2275 for (i = 0; i < n; ++i) {
2276 isl_val *v;
2278 v = isl_val_int_from_si(ctx, tile_size[i]);
2279 mv = isl_multi_val_set_val(mv, i, v);
2282 return mv;
2285 /* Replace the partial schedule S of the band node "node" by
2287 * floor(S/f)
2289 * or
2291 * f * floor(S/f)
2293 * if scale_tile_loops is set, with f the integers in "factor".
2294 * The list that "factor" points to is assumed to contain at least
2295 * as many elements as the number of members in the band.
2297 static __isl_give isl_schedule_node *snap_band_to_sizes(
2298 __isl_take isl_schedule_node *node, int *factor,
2299 struct ppcg_options *options)
2301 isl_multi_val *mv;
2303 mv = construct_band_tiles_sizes(node, factor);
2304 node = isl_schedule_node_band_scale_down(node, isl_multi_val_copy(mv));
2305 if (options->scale_tile_loops)
2306 node = isl_schedule_node_band_scale(node,
2307 isl_multi_val_copy(mv));
2308 isl_multi_val_free(mv);
2310 return node;
2313 /* Tile "band" with tile size specified by "sizes".
2315 * Since the tile loops will be mapped to block ids, we forcibly
2316 * turn off tile loop scaling. We may want to enable tile loop scaling
2317 * at some later point, but then we would have to support the detection
2318 * of strides during the mapping to block ids.
2319 * Similarly, since the point loops will be mapped to thread ids,
2320 * we forcibly shift the point loops so that they start at zero.
2322 static __isl_give isl_schedule_node *tile_band(
2323 __isl_take isl_schedule_node *node, __isl_take isl_multi_val *sizes)
2325 isl_ctx *ctx = isl_schedule_node_get_ctx(node);
2326 int scale_tile;
2327 int shift_point;
2329 scale_tile = isl_options_get_tile_scale_tile_loops(ctx);
2330 isl_options_set_tile_scale_tile_loops(ctx, 0);
2331 shift_point = isl_options_get_tile_shift_point_loops(ctx);
2332 isl_options_set_tile_shift_point_loops(ctx, 1);
2334 node = isl_schedule_node_band_tile(node, sizes);
2336 isl_options_set_tile_scale_tile_loops(ctx, scale_tile);
2337 isl_options_set_tile_shift_point_loops(ctx, shift_point);
2339 return node;
2342 /* Extract the set of parameter values and outer schedule dimensions
2343 * for which any statement instance
2344 * in the kernel inserted at "node" needs to be executed.
2345 * Intersect the set of parameter values derived from the host schedule
2346 * relation with the context of "prog".
2348 static __isl_give isl_set *extract_context(__isl_keep isl_schedule_node *node,
2349 struct gpu_prog *prog)
2351 isl_union_map *schedule;
2352 isl_union_set *schedule_domain;
2353 isl_set *context;
2354 int empty;
2356 schedule = isl_schedule_node_get_prefix_schedule_relation(node);
2357 schedule_domain = isl_union_map_range(schedule);
2358 empty = isl_union_set_is_empty(schedule_domain);
2359 if (empty < 0) {
2360 isl_union_set_free(schedule_domain);
2361 return NULL;
2363 if (empty) {
2364 int depth;
2365 isl_space *space;
2367 space = isl_union_set_get_space(schedule_domain);
2368 isl_union_set_free(schedule_domain);
2369 space = isl_space_set_from_params(space);
2370 depth = isl_schedule_node_get_schedule_depth(node);
2371 space = isl_space_add_dims(space, isl_dim_set, depth);
2372 context = isl_set_empty(space);
2373 } else {
2374 context = isl_set_from_union_set(schedule_domain);
2376 context = isl_set_intersect_params(context,
2377 isl_set_copy(prog->context));
2379 return context;
2382 /* Return the set of outer array elements accessed by
2383 * by the statement instance in "domain" in "prog".
2385 static __isl_give isl_union_set *accessed_by_domain(
2386 __isl_take isl_union_set *domain, struct gpu_prog *prog)
2388 isl_union_map *access;
2389 isl_union_set *arrays;
2391 access = isl_union_map_union(isl_union_map_copy(prog->read),
2392 isl_union_map_copy(prog->may_write));
2393 access = isl_union_map_intersect_domain(access, domain);
2394 arrays = isl_union_map_range(access);
2395 arrays = isl_union_set_apply(arrays,
2396 isl_union_map_copy(prog->to_outer));
2398 return arrays;
2401 /* Return the number of outer band members of the band node "node"
2402 * that are marked coincident.
2404 static int n_outer_coincidence(__isl_keep isl_schedule_node *node)
2406 int i, n;
2408 n = isl_schedule_node_band_n_member(node);
2410 for (i = 0; i < n; ++i)
2411 if (!isl_schedule_node_band_member_get_coincident(node, i))
2412 break;
2414 return i;
2417 /* If the band node "node" has more than "n" members, then split off
2418 * the first "n" of them.
2420 static __isl_give isl_schedule_node *split_band(
2421 __isl_take isl_schedule_node *node, int n)
2423 int dim;
2425 dim = isl_schedule_node_band_n_member(node);
2426 if (n < dim)
2427 node = isl_schedule_node_band_split(node, n);
2429 return node;
2432 /* Scale a band node that may have been split by split_band.
2433 * "sizes" are the scaling factors for the original node.
2434 * "node" either points to the original band node, or the outer
2435 * of the two pieces after splitting.
2437 * If the number of elements in "node" is smaller than the number of
2438 * elements in "sizes", then some splitting has occurred and we split
2439 * "sizes" in the same way.
2441 static __isl_give isl_schedule_node *scale_band(
2442 __isl_take isl_schedule_node *node, __isl_take isl_multi_val *sizes)
2444 int n, dim;
2446 n = isl_multi_val_dim(sizes, isl_dim_set);
2447 dim = isl_schedule_node_band_n_member(node);
2448 if (n > dim) {
2449 isl_multi_val *sizes2;
2451 sizes2 = isl_multi_val_copy(sizes);
2452 sizes = isl_multi_val_drop_dims(sizes,
2453 isl_dim_set, dim, n - dim);
2454 sizes2 = isl_multi_val_drop_dims(sizes2, isl_dim_set, 0, dim);
2455 node = isl_schedule_node_child(node, 0);
2456 node = isl_schedule_node_band_scale(node, sizes2);
2457 node = isl_schedule_node_parent(node);
2460 return isl_schedule_node_band_scale(node, sizes);
2463 /* Return an isl_multi_aff, with as elements the parameters in "space"
2464 * that have the names specified by the elements in "names".
2465 * If (some of) these parameters do not already appear in "space",
2466 * then they are added first.
2468 static __isl_give isl_multi_aff *parameter_vector(__isl_take isl_space *space,
2469 __isl_keep isl_id_list *names)
2471 int i, n;
2472 isl_local_space *ls;
2473 isl_multi_aff *ma;
2475 if (!names)
2476 space = isl_space_free(space);
2478 n = isl_id_list_n_id(names);
2479 for (i = 0; i < n; ++i) {
2480 int pos;
2481 isl_id *id;
2483 id = isl_id_list_get_id(names, i);
2484 pos = isl_space_find_dim_by_id(space, isl_dim_param, id);
2485 if (pos >= 0) {
2486 isl_id_free(id);
2487 continue;
2489 pos = isl_space_dim(space, isl_dim_param);
2490 space = isl_space_add_dims(space, isl_dim_param, 1);
2491 space = isl_space_set_dim_id(space, isl_dim_param, pos, id);
2493 ma = isl_multi_aff_zero(isl_space_copy(space));
2494 ls = isl_local_space_from_space(isl_space_domain(space));
2495 for (i = 0; i < n; ++i) {
2496 int pos;
2497 isl_id *id;
2498 isl_aff *aff;
2500 id = isl_id_list_get_id(names, i);
2501 pos = isl_space_find_dim_by_id(space, isl_dim_param, id);
2502 isl_id_free(id);
2503 aff = isl_aff_var_on_domain(isl_local_space_copy(ls),
2504 isl_dim_param, pos);
2505 ma = isl_multi_aff_set_aff(ma, i, aff);
2507 isl_local_space_free(ls);
2509 return ma;
2512 /* Return constraints on the domain elements that equate a sequence of
2513 * parameters called "names", to the partial schedule
2514 * of "node" modulo the integers in "size".
2515 * The number of elements in the array "size" should be equal
2516 * to the number of elements in "names".
2517 * The number of members of the band node "node" should be smaller
2518 * than or equal to this number. If it is smaller, then the first
2519 * elements of "names" are equated to zero.
2521 static __isl_give isl_union_set *set_schedule_modulo(
2522 __isl_keep isl_schedule_node *node, __isl_keep isl_id_list *names,
2523 int *size)
2525 int n, n_zero;
2526 isl_space *space;
2527 isl_multi_aff *ma;
2528 isl_multi_union_pw_aff *mupa, *mupa2;
2529 isl_multi_val *mv;
2530 isl_union_set *domain;
2532 if (!node)
2533 return NULL;
2534 n = isl_id_list_n_id(names);
2535 if (n == 0)
2536 return isl_schedule_node_get_universe_domain(node);
2537 n_zero = n - isl_schedule_node_band_n_member(node);
2539 mupa = isl_schedule_node_band_get_partial_schedule(node);
2540 mv = construct_band_tiles_sizes(node, size + n_zero);
2541 mupa = isl_multi_union_pw_aff_mod_multi_val(mupa, mv);
2543 space = isl_multi_union_pw_aff_get_space(mupa);
2544 space = isl_space_params(space);
2545 space = isl_space_set_from_params(space);
2546 space = isl_space_add_dims(space, isl_dim_set, n_zero);
2547 ma = isl_multi_aff_zero(space);
2549 domain = isl_schedule_node_get_universe_domain(node);
2550 mupa2 = isl_multi_union_pw_aff_multi_aff_on_domain(
2551 isl_union_set_copy(domain), ma);
2552 mupa = isl_multi_union_pw_aff_range_product(mupa2, mupa);
2554 space = isl_multi_union_pw_aff_get_space(mupa);
2555 ma = parameter_vector(space, names);
2557 mupa2 = isl_multi_union_pw_aff_multi_aff_on_domain(domain, ma);
2558 mupa = isl_multi_union_pw_aff_sub(mupa, mupa2);
2560 return isl_multi_union_pw_aff_zero_union_set(mupa);
2563 /* Insert a context node at "node" introducing the block and thread
2564 * identifiers along with their bounds, which are stored in kernel->grid_size
2565 * and kernel->block_dim.
2566 * Note that the bounds on the block identifiers may implicitly impose
2567 * constraints on the parameters. A guard needs to be inserted
2568 * in the schedule tree to ensure that those bounds hold at "node".
2569 * This guard is inserted in insert_guard.
2571 static __isl_give isl_schedule_node *insert_context(struct ppcg_kernel *kernel,
2572 __isl_take isl_schedule_node *node)
2574 isl_set *context;
2576 context = isl_set_universe(isl_set_get_space(kernel->context));
2578 context = add_bounded_parameters_dynamic(context,
2579 kernel->grid_size, kernel->block_ids);
2580 context = add_bounded_parameters(context,
2581 kernel->block_dim, kernel->thread_ids);
2583 node = isl_schedule_node_insert_context(node, context);
2585 return node;
2588 /* Insert a guard that eliminates kernel launches where the kernel
2589 * obviously does not have any work to do.
2591 * In particular, eliminate kernel launches where there are obviously
2592 * zero blocks.
2593 * Use the same block size constraints that are used to create the context
2594 * to ensure that all constraints implicit in the constructed context
2595 * are imposed by the guard.
2597 * Additionally, add other constraints that are valid
2598 * for each executed instance ("context"), as long as this does not result
2599 * in a disjunction.
2601 static __isl_give isl_schedule_node *insert_guard(
2602 __isl_take isl_schedule_node *node, __isl_keep isl_set *context,
2603 __isl_keep isl_multi_pw_aff *size, struct ppcg_scop *scop)
2605 unsigned nparam, n;
2606 isl_set *guard;
2607 isl_id_list *ids;
2609 guard = isl_set_copy(context);
2610 guard = isl_set_compute_divs(guard);
2611 guard = isl_set_from_basic_set(isl_set_simple_hull(guard));
2613 nparam = isl_set_dim(guard, isl_dim_param);
2614 n = isl_multi_pw_aff_dim(size, isl_dim_out);
2615 ids = ppcg_scop_generate_names(scop, n, "__ppcg_tmp");
2616 guard = add_bounded_parameters_dynamic(guard, size, ids);
2617 isl_id_list_free(ids);
2618 guard = isl_set_project_out(guard, isl_dim_param, nparam, n);
2620 node = isl_schedule_node_insert_guard(node, guard);
2622 return node;
2625 /* Does any array reference group mapping require the band that is mapped
2626 * to threads to be unrolled?
2628 static int kernel_requires_unroll(struct ppcg_kernel *kernel)
2630 int i, j;
2632 for (i = 0; i < kernel->n_array; ++i) {
2633 struct gpu_local_array_info *array = &kernel->array[i];
2635 for (j = 0; j < array->n_group; ++j) {
2636 struct gpu_array_ref_group *group = array->groups[j];
2637 if (gpu_array_ref_group_requires_unroll(group))
2638 return 1;
2642 return 0;
2645 /* Mark the given band node "node" for unrolling by the AST generator and
2646 * then sink it to the leaves of the schedule tree.
2647 * All dimensions of "node" are assumed to be coincident, such that this
2648 * sinking is a valid operation.
2650 static __isl_give isl_schedule_node *unroll(__isl_take isl_schedule_node *node)
2652 int i, n;
2654 n = isl_schedule_node_band_n_member(node);
2655 for (i = 0; i < n; ++i)
2656 node = isl_schedule_node_band_member_set_ast_loop_type(node, i,
2657 isl_ast_loop_unroll);
2659 node = isl_schedule_node_band_sink(node);
2661 return node;
2664 /* Is there any write in "kernel" that writes directly to global memory?
2665 * That is, is there any array reference group that involves a write and
2666 * that is not mapped to private or shared memory?
2668 static int any_global_write(struct ppcg_kernel *kernel)
2670 int i, j;
2672 for (i = 0; i < kernel->n_array; ++i) {
2673 struct gpu_local_array_info *array = &kernel->array[i];
2675 for (j = 0; j < array->n_group; ++j) {
2676 struct gpu_array_ref_group *group = array->groups[j];
2678 if (!group->write)
2679 continue;
2680 if (group->private_tile || group->shared_tile)
2681 continue;
2682 return 1;
2686 return 0;
2689 /* Insert a synchronization node in the schedule tree of "node"
2690 * after the core computation of "kernel" at the level of the band
2691 * that is mapped to threads, except if that level is equal to
2692 * that of the band that is mapped to blocks.
2693 * "node" is assumed to point to the kernel node.
2695 static __isl_give isl_schedule_node *add_sync(struct ppcg_kernel *kernel,
2696 __isl_take isl_schedule_node *node)
2698 int kernel_depth;
2700 kernel_depth = isl_schedule_node_get_schedule_depth(node);
2702 node = gpu_tree_move_down_to_thread(node, kernel->core);
2703 if (kernel_depth == isl_schedule_node_get_schedule_depth(node))
2704 return gpu_tree_move_up_to_kernel(node);
2706 node = gpu_tree_ensure_following_sync(node, kernel);
2708 node = gpu_tree_move_up_to_kernel(node);
2710 return node;
2713 /* Return a read ("read" is 1) or write access relation for "group"
2714 * with those accesses removed that are only needed to communicate data
2715 * within the subtree of the schedule rooted at "node".
2716 * Furthermore, include the prefix schedule at "node".
2717 * That is, return a relation of the form
2719 * S -> [D -> A]
2721 * with D the outer schedule dimensions at "node".
2723 static __isl_give isl_union_map *anchored_non_local_accesses(
2724 struct ppcg_kernel *kernel, struct gpu_array_ref_group *group,
2725 __isl_take isl_schedule_node *node, int read)
2727 isl_union_map *access;
2728 isl_union_map *prefix;
2730 access = gpu_array_ref_group_access_relation(group, read, !read);
2731 access = remove_local_accesses_group(kernel, group, access, node, read);
2732 prefix = isl_schedule_node_get_prefix_schedule_relation(node);
2733 access = isl_union_map_range_product(prefix, access);
2735 return access;
2738 /* Given an array reference group "group", create a mapping
2740 * read[D -> A] -> [D -> A]
2742 * if "read" is set or
2744 * write[D -> A] -> [D -> A]
2746 * if "read" is not set.
2747 * D corresponds to the outer group->depth dimensions of
2748 * the kernel schedule.
2750 static __isl_give isl_multi_aff *create_from_access(isl_ctx *ctx,
2751 struct gpu_array_ref_group *group, int read)
2753 isl_space *space;
2754 isl_id *id;
2756 space = isl_space_copy(group->array->space);
2757 space = isl_space_from_range(space);
2758 space = isl_space_add_dims(space, isl_dim_in, group->depth);
2759 space = isl_space_wrap(space);
2760 space = isl_space_map_from_set(space);
2762 id = isl_id_alloc(ctx, read ? "read" : "write", group);
2763 space = isl_space_set_tuple_id(space, isl_dim_in, id);
2765 return isl_multi_aff_identity(space);
2768 /* Add copy statements to the schedule tree of "node"
2769 * for reading from global memory to private memory (if "read" is set) or
2770 * for writing back from private memory to global memory
2771 * (if "read" is not set) for the array reference group "group" that
2772 * is mapped to private memory.
2773 * On input, "node" points to the kernel node, and it is moved
2774 * back there on output.
2776 * The copies are performed in the order of the array elements.
2777 * The copy statement instances include a reference to the outer
2778 * group->depth dimensions of the kernel schedule for ease of
2779 * combining them with the group tiling.
2781 * That is, the extra schedule is of the form
2783 * type[D -> A] -> A
2785 * where D corresponds to the outer group->depth dimensions of
2786 * the kernel schedule and A to the global array.
2787 * This schedule is unrolled because registers are not addressable.
2789 * The copying is inserted in the schedule tree through an extension
2790 * of the form
2792 * D -> type[D -> A]
2794 * where the extra domain elements type[D -> A] are those accessed
2795 * by the group.
2796 * A filter is inserted on type[D -> A] to ensure that the element
2797 * is read/written by the same thread that needs the element.
2798 * This filter is obtained by applying
2800 * S -> type[D -> A]
2802 * to the thread filter for the core statements.
2804 * The extension is inserted before the core computation in case of a read
2805 * and after the core computation in case of a write.
2806 * In the latter case, we also make sure that there is a synchronization
2807 * node after the write to global memory, unless this write is performed
2808 * at the outer level of the kernel.
2809 * In principle, this synchronization could be inserted higher
2810 * in the schedule tree depending on where the corresponding reads
2811 * from global memory are performed.
2813 static __isl_give isl_schedule_node *add_copies_group_private(
2814 struct ppcg_kernel *kernel, struct gpu_array_ref_group *group,
2815 __isl_take isl_schedule_node *node, int read)
2817 isl_union_map *access;
2818 isl_union_map *prefix;
2819 isl_union_set *domain;
2820 isl_space *space;
2821 isl_multi_aff *from_access;
2822 isl_multi_pw_aff *mpa;
2823 isl_multi_union_pw_aff *mupa;
2824 isl_schedule_node *graft;
2825 isl_union_set *filter;
2826 int kernel_depth;
2827 int empty;
2829 kernel_depth = isl_schedule_node_get_schedule_depth(node);
2830 node = gpu_tree_move_down_to_depth(node, group->depth, kernel->core);
2832 access = anchored_non_local_accesses(kernel, group, node, read);
2833 empty = isl_union_map_is_empty(access);
2834 if (empty < 0 || empty) {
2835 isl_union_map_free(access);
2836 if (empty < 0)
2837 return isl_schedule_node_free(node);
2838 return gpu_tree_move_up_to_kernel(node);
2841 from_access = create_from_access(kernel->ctx, group, read);
2842 space = isl_space_domain(isl_multi_aff_get_space(from_access));
2843 access = isl_union_map_preimage_range_multi_aff(access, from_access);
2845 filter = isl_union_set_copy(kernel->thread_filter);
2846 filter = isl_union_set_apply(filter, isl_union_map_copy(access));
2847 filter = isl_union_set_detect_equalities(filter);
2848 filter = isl_union_set_coalesce(filter);
2850 domain = isl_union_map_range(access);
2851 access = isl_union_set_wrapped_domain_map(domain);
2852 access = isl_union_map_reverse(access);
2853 access = isl_union_map_coalesce(access);
2854 graft = isl_schedule_node_from_extension(access);
2856 space = isl_space_map_from_set(space);
2857 mpa = isl_multi_pw_aff_identity(space);
2858 mpa = isl_multi_pw_aff_range_factor_range(mpa);
2859 mupa = isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
2861 graft = isl_schedule_node_child(graft, 0);
2862 graft = isl_schedule_node_insert_partial_schedule(graft, mupa);
2863 graft = unroll(graft);
2865 graft = isl_schedule_node_insert_filter(graft, filter);
2867 graft = isl_schedule_node_parent(graft);
2869 if (read)
2870 node = isl_schedule_node_graft_before(node, graft);
2871 else {
2872 node = isl_schedule_node_graft_after(node, graft);
2873 if (kernel_depth < group->depth) {
2874 node = isl_schedule_node_parent(node);
2875 node = isl_schedule_node_next_sibling(node);
2876 node = isl_schedule_node_child(node, 0);
2877 node = gpu_tree_ensure_following_sync(node, kernel);
2881 node = gpu_tree_move_up_to_kernel(node);
2883 return node;
2886 /* Add copy statements to the schedule tree of "node"
2887 * for reading from global memory to shared memory (if "read" is set) or
2888 * for writing back from shared memory to global memory
2889 * (if "read" is not set) for the array reference group "group" that
2890 * is mapped to shared memory.
2891 * On input, "node" points to the kernel node, and it is moved
2892 * back there on output.
2894 * The copies are performed in the order of the corresponding shared
2895 * memory tile.
2896 * The copy statement instances include a reference to the outer
2897 * group->depth dimensions of the kernel schedule for ease of
2898 * combining them with the group tiling.
2900 * If we are performing a read from global memory to shared memory and
2901 * if the array involved is not a scalar, then we copy
2902 * the entire tile to shared memory. This may result in some extra
2903 * elements getting copied, but it should lead to simpler code
2904 * (which means that fewer registers may be needed) and less divergence.
2906 * Otherwise, we only copy the elements that will be read or have been written
2907 * in the kernel.
2909 * That is, the extra schedule is of the form
2911 * type[D -> A] -> T
2913 * where D corresponds to the outer group->depth dimensions of
2914 * the kernel schedule, A to the global array and T is the corresponding
2915 * shared memory tile.
2917 * The copying is inserted in the schedule tree through an extension
2918 * of the form
2920 * D -> type[D -> A]
2922 * where the extra domain elements type[D -> A] are those accessed
2923 * by the group. In the case of read from a non-scalar, this set
2924 * is replaced by the entire shared memory tile.
2926 * A filter is inserted on type[D -> A] to map the copy instances
2927 * to the threads. In particular, the thread identifiers are
2928 * equated to the position inside the shared memory tile (T)
2929 * modulo the block size.
2930 * We try to align the innermost tile dimension with the innermost
2931 * thread identifier (x) as a heuristic to improve coalescing.
2932 * In particular, if the dimension of the tile is greater than
2933 * the dimension of the block, then the schedule mapping to the tile
2934 * is broken up into two pieces and the filter is applied to the inner part.
2935 * If, on the other hand, the dimension of the tile is smaller than
2936 * the dimension of the block, then the initial thread identifiers
2937 * are equated to zero and the remaining thread identifiers are
2938 * matched to the memory tile.
2940 * The extension is inserted before the core computation in case of a read
2941 * and after the core computation in case of a write.
2942 * In the case of a read, we first need to make sure there is some
2943 * synchronization before the core computation such that we can put the read
2944 * from global memory to shared memory before that synchronization.
2945 * This ensures that all threads have finished copying into shared memory
2946 * before the shared memory is used.
2947 * We also need to make sure that there is a synchronization node after
2948 * the core computation to ensure that the next load into shared memory
2949 * only happens after all data has been used. There is no need for
2950 * this synchronization if we are at the outer level since then there
2951 * won't be a next load.
2952 * In the case of a write, we need to make sure there is some synchronization
2953 * after the core computation such taht we can put the write from shared
2954 * memory to global memory after that synchronization.
2955 * Unless we are at the outer level, we also need a synchronization node
2956 * after the write to ensure the data is saved to global memory
2957 * before the next iteration write to the same shared memory.
2958 * It also makes sure the data has arrived in global memory before
2959 * it is read in a subsequent iteration.
2961 static __isl_give isl_schedule_node *add_copies_group_shared(
2962 struct ppcg_kernel *kernel, struct gpu_array_ref_group *group,
2963 __isl_take isl_schedule_node *node, int read)
2965 struct gpu_array_tile *tile;
2966 isl_union_map *access;
2967 isl_union_set *domain;
2968 isl_union_set *sync;
2969 isl_multi_aff *ma;
2970 isl_multi_aff *from_access;
2971 isl_multi_pw_aff *mpa;
2972 isl_multi_union_pw_aff *mupa;
2973 isl_schedule_node *graft;
2974 isl_union_set *filter;
2975 int skip;
2976 int kernel_depth;
2977 int empty;
2979 kernel_depth = isl_schedule_node_get_schedule_depth(node);
2980 node = gpu_tree_move_down_to_depth(node, group->depth, kernel->core);
2982 access = anchored_non_local_accesses(kernel, group, node, read);
2983 empty = isl_union_map_is_empty(access);
2984 if (empty < 0 || empty) {
2985 isl_union_map_free(access);
2986 if (empty < 0)
2987 return isl_schedule_node_free(node);
2988 return gpu_tree_move_up_to_kernel(node);
2991 from_access = create_from_access(kernel->ctx, group, read);
2993 tile = gpu_array_ref_group_tile(group);
2994 ma = isl_multi_aff_copy(tile->tiling);
2995 ma = isl_multi_aff_pullback_multi_aff(ma,
2996 isl_multi_aff_copy(from_access));
2997 mpa = isl_multi_pw_aff_from_multi_aff(ma);
2998 mupa = isl_multi_union_pw_aff_from_multi_pw_aff(mpa);
3000 domain = isl_union_map_range(access);
3002 if (read && !gpu_array_is_scalar(group->array)) {
3003 isl_map *map;
3004 isl_union_set_free(domain);
3005 map = group_tile(group);
3006 domain = isl_union_set_from_set(isl_map_wrap(map));
3009 domain = isl_union_set_preimage_multi_aff(domain, from_access);
3010 access = isl_union_set_wrapped_domain_map(domain);
3011 access = isl_union_map_reverse(access);
3012 access = isl_union_map_coalesce(access);
3013 graft = isl_schedule_node_from_extension(access);
3015 graft = isl_schedule_node_child(graft, 0);
3017 graft = isl_schedule_node_insert_partial_schedule(graft, mupa);
3019 if (tile->n > kernel->n_block && kernel->n_block > 0) {
3020 graft = isl_schedule_node_band_split(graft,
3021 tile->n - kernel->n_block);
3022 graft = isl_schedule_node_child(graft, 0);
3024 if (tile->n < kernel->n_block)
3025 skip = kernel->n_block - tile->n;
3026 else
3027 skip = 0;
3028 filter = set_schedule_modulo(graft, kernel->thread_ids,
3029 kernel->block_dim);
3030 if (!kernel->options->wrap)
3031 graft = snap_band_to_sizes(graft, kernel->block_dim + skip,
3032 kernel->options);
3033 if (tile->n > kernel->n_block && kernel->n_block > 0)
3034 graft = isl_schedule_node_parent(graft);
3035 graft = isl_schedule_node_insert_filter(graft, filter);
3037 while (graft && isl_schedule_node_has_parent(graft))
3038 graft = isl_schedule_node_parent(graft);
3040 if (read) {
3041 if (kernel_depth < group->depth)
3042 node = gpu_tree_ensure_sync_after_core(node, kernel);
3043 node = gpu_tree_move_left_to_sync(node, kernel);
3044 node = isl_schedule_node_graft_before(node, graft);
3045 } else {
3046 node = gpu_tree_move_right_to_sync(node, kernel);
3047 node = isl_schedule_node_graft_after(node, graft);
3048 node = isl_schedule_node_parent(node);
3049 node = isl_schedule_node_next_sibling(node);
3050 node = isl_schedule_node_child(node, 0);
3051 if (kernel_depth < group->depth)
3052 node = gpu_tree_ensure_following_sync(node, kernel);
3055 node = gpu_tree_move_up_to_kernel(node);
3057 return node;
3060 /* Check whether the array reference group "group" is mapped to
3061 * private or shared memory and, if so,
3062 * add copy statements to the schedule tree of "node"
3063 * for reading from global memory to private or shared memory
3064 * (if "read" is set) or for writing back from private or shared memory
3065 * to global memory (if "read" is not set) for this group.
3066 * On input, "node" points to the kernel node, and it is moved
3067 * back there on output.
3069 static __isl_give isl_schedule_node *add_copies_group(
3070 struct ppcg_kernel *kernel, struct gpu_array_ref_group *group,
3071 __isl_take isl_schedule_node *node, int read)
3073 if (group->private_tile)
3074 return add_copies_group_private(kernel, group, node, read);
3075 if (group->shared_tile)
3076 return add_copies_group_shared(kernel, group, node, read);
3077 return node;
3080 /* For each array reference group that is mapped to private or shared memory,
3081 * add copy statements to the schedule tree of "node"
3082 * for reading from global memory to private or shared memory
3083 * and for writing back.
3084 * On input, "node" points to the kernel node, and it is moved
3085 * back there on output.
3087 static __isl_give isl_schedule_node *add_copies(struct ppcg_kernel *kernel,
3088 __isl_take isl_schedule_node *node)
3090 int i, j;
3092 for (i = 0; i < kernel->n_array; ++i) {
3093 struct gpu_local_array_info *array = &kernel->array[i];
3095 for (j = 0; j < array->n_group; ++j) {
3096 struct gpu_array_ref_group *group = array->groups[j];
3098 node = add_copies_group(kernel, group, node, 1);
3099 if (!node)
3100 return NULL;
3101 node = add_copies_group(kernel, group, node, 0);
3102 if (!node)
3103 return NULL;
3107 return node;
3110 /* Mark all dimensions in the current band node atomic.
3112 static __isl_give isl_schedule_node *atomic(__isl_take isl_schedule_node *node)
3114 int i, n;
3116 n = isl_schedule_node_band_n_member(node);
3117 for (i = 0; i < n; ++i)
3118 node = isl_schedule_node_band_member_set_ast_loop_type(node, i,
3119 isl_ast_loop_atomic);
3121 return node;
3124 /* Mark "node" atomic, if it is a band node.
3125 * Do the same for all ancestors.
3126 * Return a pointer to "node" (in the updated schedule tree).
3128 static __isl_give isl_schedule_node *atomic_ancestors(
3129 __isl_take isl_schedule_node *node)
3131 int pos;
3133 if (!node)
3134 return NULL;
3135 if (!isl_schedule_node_has_parent(node))
3136 return node;
3138 pos = isl_schedule_node_get_child_position(node);
3139 node = isl_schedule_node_parent(node);
3140 if (isl_schedule_node_get_type(node) == isl_schedule_node_band)
3141 node = atomic(node);
3142 node = atomic_ancestors(node);
3143 node = isl_schedule_node_child(node, pos);
3145 return node;
3148 /* Group the domain elements into a single space, named kernelX,
3149 * with X the kernel sequence number "kernel_id".
3151 static __isl_give isl_schedule_node *group_statements(
3152 __isl_take isl_schedule_node *node, int kernel_id)
3154 char buffer[20];
3155 isl_id *id;
3157 if (!node)
3158 return NULL;
3160 snprintf(buffer, sizeof(buffer), "kernel%d", kernel_id);
3161 id = isl_id_alloc(isl_schedule_node_get_ctx(node), buffer, NULL);
3162 return isl_schedule_node_group(node, id);
3165 /* Create a ppcg_kernel representing the domain instances that reach "node"
3166 * and insert a mark node pointing to the ppcg_kernel before "node".
3167 * The band that "node" points to is the band that needs to be mapped
3168 * to block identifiers. The band that needs to be mapped to thread
3169 * identifiers should be marked by a "thread" mark by the caller.
3170 * This mark is removed by this function.
3171 * If "scale" is set, then the band that "node" points to is scaled
3172 * by "sizes".
3174 * Mark all outer band nodes as atomic to ensure each kernel is only
3175 * scheduled once.
3176 * If the domain elements that reach "node" live in more than one space,
3177 * then group the domain elements into a single space, named kernelX,
3178 * with X the kernel sequence number.
3180 * Insert a guard node governing the kernel node to ensure that
3181 * no kernels with zero blocks are launched.
3183 * Insert a context node describing the block and thread
3184 * identifiers inside the kernel mark.
3185 * The context node needs to be inserted after the effective block size
3186 * has been determined such that the bounds on the thread identifiers
3187 * would reflect the effective block size.
3188 * Insert a filter node inside the context node mapping the statement
3189 * instances to block identifiers. In particular, the block identifiers
3190 * are equated to the partial schedule of band that was marked for mapping
3191 * to blocks modulo the grid size.
3192 * Insert a filter node inside the "thread" mark mapping the statement
3193 * instances to thread identifiers. In particular, the thread identifiers
3194 * are equated to the partial schedule of band that was marked for mapping
3195 * to threads modulo the block size.
3197 * Compute array reference groups for all arrays, set the local
3198 * array bounds based on the set of domain instances that reach
3199 * the kernel node, check the total amount of shared memory used
3200 * and compute all group tilings.
3201 * The array reference groups are computed after the block filter
3202 * has been inserted because it affects the mapping to shared or
3203 * private memory. This computation also requires the thread filter
3204 * (in the ppcg_kernel object), but this thread filter should not
3205 * have been added to the schedule tree yet since the computation
3206 * requires the schedule of the band that needs to be mapped to
3207 * threads before the privatization is applied.
3209 * If any array reference group requires the band mapped to threads
3210 * to be unrolled, then we perform the required unrolling.
3212 * We save a copy of the schedule that may influence the mappings
3213 * to shared or private memory in kernel->shared_schedule.
3215 * Finally, we add synchronization and copy statements to the schedule tree,
3216 * remove the "thread" mark and create representations for the local
3217 * variables in the kernel.
3219 * We keep a copy of the isl_id that points to the kernel to ensure
3220 * that the kernel does not get destroyed if the schedule node
3221 * is freed due to some error condition.
3223 static __isl_give isl_schedule_node *create_kernel(struct gpu_gen *gen,
3224 __isl_take isl_schedule_node *node, int scale,
3225 __isl_keep isl_multi_val *sizes)
3227 struct ppcg_kernel *kernel;
3228 isl_id *id;
3229 isl_schedule_node *node_thread;
3230 isl_union_map *host_schedule;
3231 isl_set *host_domain;
3232 isl_union_set *domain;
3233 int single_statement;
3235 kernel = isl_calloc_type(gen->ctx, struct ppcg_kernel);
3236 kernel = ppcg_kernel_create_local_arrays(kernel, gen->prog);
3237 if (!kernel)
3238 return isl_schedule_node_free(node);
3240 domain = isl_schedule_node_get_domain(node);
3241 single_statement = isl_union_set_n_set(domain) == 1;
3243 kernel->ctx = gen->ctx;
3244 kernel->prog = gen->prog;
3245 kernel->options = gen->options;
3246 kernel->context = extract_context(node, gen->prog);
3247 kernel->core = isl_union_set_universe(isl_union_set_copy(domain));
3248 kernel->arrays = accessed_by_domain(isl_union_set_copy(domain),
3249 gen->prog);
3250 kernel->n_grid = n_outer_coincidence(node);
3251 node_thread = isl_schedule_node_copy(node);
3252 node_thread = gpu_tree_move_down_to_thread(node_thread, kernel->core);
3253 node_thread = isl_schedule_node_child(node_thread, 0);
3254 kernel->n_block = n_outer_coincidence(node_thread);
3255 isl_schedule_node_free(node_thread);
3256 kernel->id = gen->kernel_id++;
3257 read_grid_and_block_sizes(kernel, gen);
3259 host_schedule = isl_schedule_node_get_prefix_schedule_union_map(node);
3260 host_domain = isl_set_from_union_set(isl_union_map_range(
3261 host_schedule));
3263 node = atomic_ancestors(node);
3265 id = isl_id_alloc(gen->ctx, "kernel", kernel);
3266 id = isl_id_set_free_user(id, &ppcg_kernel_free_wrap);
3267 node = isl_schedule_node_insert_mark(node, isl_id_copy(id));
3269 if (!single_statement)
3270 node = group_statements(node, kernel->id);
3272 node = isl_schedule_node_child(node, 0);
3273 node = split_band(node, kernel->n_grid);
3274 kernel->block_ids = ppcg_scop_generate_names(gen->prog->scop,
3275 kernel->n_grid, "b");
3276 kernel->block_filter = set_schedule_modulo(node, kernel->block_ids,
3277 kernel->grid_dim);
3278 kernel->grid_size = extract_grid_size(kernel,
3279 isl_union_set_copy(domain));
3280 if (!kernel->options->wrap)
3281 node = snap_band_to_sizes(node, kernel->grid_dim,
3282 kernel->options);
3283 if (scale)
3284 node = scale_band(node, isl_multi_val_copy(sizes));
3285 node = isl_schedule_node_parent(node);
3286 if (!single_statement)
3287 node = isl_schedule_node_parent(node);
3288 node = insert_guard(node, kernel->context, kernel->grid_size,
3289 gen->prog->scop);
3290 node = gpu_tree_move_down_to_thread(node, kernel->core);
3291 node = isl_schedule_node_child(node, 0);
3292 node = split_band(node, kernel->n_block);
3293 kernel->thread_ids = ppcg_scop_generate_names(gen->prog->scop,
3294 kernel->n_block, "t");
3295 kernel->thread_filter = set_schedule_modulo(node, kernel->thread_ids,
3296 kernel->block_dim);
3297 extract_block_size(kernel, domain);
3299 node = gpu_tree_move_up_to_kernel(node);
3300 node = isl_schedule_node_child(node, 0);
3301 node = insert_context(kernel, node);
3302 node = isl_schedule_node_child(node, 0);
3303 node = isl_schedule_node_insert_filter(node,
3304 isl_union_set_copy(kernel->block_filter));
3306 node = gpu_tree_move_up_to_kernel(node);
3308 if (gpu_group_references(kernel, node) < 0)
3309 node = isl_schedule_node_free(node);
3310 localize_bounds(kernel, host_domain);
3311 isl_set_free(host_domain);
3313 check_shared_memory_bound(kernel);
3314 compute_group_tilings(kernel);
3316 node = gpu_tree_move_down_to_thread(node, kernel->core);
3317 node = isl_schedule_node_child(node, 0);
3318 if (!kernel->options->wrap)
3319 node = snap_band_to_sizes(node, kernel->block_dim,
3320 kernel->options);
3321 node = isl_schedule_node_insert_filter(node,
3322 isl_union_set_copy(kernel->thread_filter));
3323 if (kernel_requires_unroll(kernel)) {
3324 node = isl_schedule_node_child(node, 0);
3325 node = unroll(node);
3328 node = gpu_tree_move_up_to_thread(node);
3329 kernel->shared_schedule_dim =
3330 isl_schedule_node_get_schedule_depth(node);
3331 kernel->shared_schedule =
3332 isl_schedule_node_get_prefix_schedule_union_pw_multi_aff(node);
3334 node = gpu_tree_move_up_to_kernel(node);
3336 if (any_global_write(kernel))
3337 node = add_sync(kernel, node);
3338 node = add_copies(kernel, node);
3340 node = gpu_tree_move_down_to_thread(node, kernel->core);
3341 node = isl_schedule_node_delete(node);
3343 node = gpu_tree_move_up_to_kernel(node);
3345 if (create_kernel_vars(kernel) < 0)
3346 node = isl_schedule_node_free(node);
3348 if (!single_statement)
3349 node = isl_schedule_node_parent(node);
3350 node = isl_schedule_node_parent(node);
3352 isl_id_free(id);
3353 return node;
3356 /* Insert a zero-dimensional permutable band at "node".
3358 static __isl_give isl_schedule_node *insert_empty_permutable_band(
3359 __isl_take isl_schedule_node *node)
3361 isl_space *space;
3362 isl_schedule *schedule;
3363 isl_union_set *domain;
3364 isl_multi_union_pw_aff *mupa;
3366 schedule = isl_schedule_node_get_schedule(node);
3367 domain = isl_schedule_get_domain(schedule);
3368 space = isl_union_set_get_space(domain);
3369 isl_union_set_free(domain);
3370 isl_schedule_free(schedule);
3372 space = isl_space_set_from_params(space);
3373 mupa = isl_multi_union_pw_aff_zero(space);
3374 node = isl_schedule_node_insert_partial_schedule(node, mupa);
3375 node = isl_schedule_node_band_set_permutable(node, 1);
3377 return node;
3380 /* Mark "node" as outer permutable.
3382 * If "node" originally points to a leaf, then insert a zero-dimensional
3383 * permutable band such that we can assume that "node" always
3384 * points to a band node.
3386 * Tile "node" using user specified tile sizes, after splitting the band
3387 * if the number of specified tile sizes is smaller than the dimension
3388 * of the band. Mark the point band of this tiling as the band that
3389 * needs to be mapped to threads.
3390 * Create a kernel representing the domain instances that reach "node" and
3391 * insert a mark node pointing to the ppcg_kernel before the band node.
3393 static __isl_give isl_schedule_node *mark_outer_permutable(
3394 struct gpu_gen *gen, __isl_take isl_schedule_node *node)
3396 int scale;
3397 int tile_len;
3398 int *tile_size;
3399 isl_id *id;
3400 isl_multi_val *sizes;
3402 if (isl_schedule_node_get_type(node) == isl_schedule_node_leaf)
3403 node = insert_empty_permutable_band(node);
3405 tile_len = isl_schedule_node_band_n_member(node);
3406 tile_size = read_tile_sizes(gen, &tile_len);
3407 if (!tile_size)
3408 return isl_schedule_node_free(node);
3409 if (tile_len < isl_schedule_node_band_n_member(node))
3410 node = isl_schedule_node_band_split(node, tile_len);
3411 sizes = construct_band_tiles_sizes(node, tile_size);
3412 node = tile_band(node, isl_multi_val_copy(sizes));
3413 node = isl_schedule_node_child(node, 0);
3414 id = isl_id_alloc(gen->ctx, "thread", NULL);
3415 node = isl_schedule_node_insert_mark(node, id);
3416 node = isl_schedule_node_parent(node);
3418 scale = gen->options->scale_tile_loops;
3419 node = create_kernel(gen, node, scale, sizes);
3420 isl_multi_val_free(sizes);
3421 free(tile_size);
3423 return node;
3426 static __isl_give isl_schedule_node *select_outer_band(struct gpu_gen *gen,
3427 __isl_take isl_schedule_node *node, int pos, struct band_info *info);
3429 /* Check if this band node is tilable and has any parallel loops. If so,
3430 * take it as the outermost tilable band. If not, continue looking for the
3431 * outermost tilable band in the children of the current band.
3432 * Return a pointer to the same node in a tree where all outermost tilable
3433 * bands in the current subtree have been replaced by mark nodes
3434 * containing a pointer to a ppcg_kernel object.
3436 static __isl_give isl_schedule_node *band_select_outer_band(struct gpu_gen *gen,
3437 __isl_take isl_schedule_node *node, int pos, struct band_info *info)
3439 int n = isl_schedule_node_band_n_member(node);
3440 int n_parallel;
3442 n_parallel = n_outer_coincidence(node);
3444 if (!isl_schedule_node_band_get_permutable(node) || n_parallel == 0) {
3445 node = isl_schedule_node_child(node, 0);
3446 node = select_outer_band(gen, node, pos + n, info);
3447 return isl_schedule_node_parent(node);
3450 gen->any_parallelism = 1;
3451 info->gen = gen;
3452 info->tile_first = pos;
3453 info->prefix = isl_schedule_node_get_prefix_schedule_union_map(node);
3454 info->suffix = isl_schedule_node_get_subtree_schedule_union_map(node);
3456 node = mark_outer_permutable(gen, node);
3458 return node;
3461 /* Extend "umap" with coordinates with fixed value "val"
3462 * to a total length of "dst_len", assuming the original dimension is "src_len".
3464 static __isl_give isl_union_map *extend_range(
3465 __isl_take isl_union_map *umap, int src_len, int dst_len, int val)
3467 isl_space *dim;
3468 isl_map *map;
3469 int i;
3471 dim = isl_union_map_get_space(umap);
3472 map = isl_map_reverse(projection(dim, dst_len, src_len));
3473 for (i = src_len; i < dst_len; ++i)
3474 map = isl_map_fix_si(map, isl_dim_out, i, val);
3476 umap = isl_union_map_apply_range(umap, isl_union_map_from_map(map));
3478 return umap;
3481 /* Select the outermost bands in the elements of the sequence or set
3482 * node "node", align their prefix schedules and combine the resulting
3483 * prefix and suffix schedules into a single pair of prefix and
3484 * suffix schedules for the entire list.
3485 * Return a pointer to the same node in a tree where all outermost tilable
3486 * bands in the current subtree have been replaced by mark nodes
3487 * containing a pointer to a ppcg_kernel object.
3489 static __isl_give isl_schedule_node *list_select_outer_band(
3490 struct gpu_gen *gen, __isl_take isl_schedule_node *node, int pos,
3491 struct band_info *list_info)
3493 int i;
3494 int n = isl_schedule_node_n_children(node);
3495 isl_ctx *ctx = isl_schedule_node_get_ctx(node);
3496 struct band_info *info;
3497 int max_tile_first;
3498 isl_union_map *prefix;
3499 isl_union_map *suffix;
3501 assert(n >= 1);
3502 info = isl_calloc_array(ctx, struct band_info, n);
3503 assert(info);
3505 max_tile_first = 0;
3506 for (i = 0; i < n; ++i) {
3507 node = isl_schedule_node_child(node, i);
3508 node = select_outer_band(gen, node, pos, &info[i]);
3509 if (info[i].tile_first > max_tile_first)
3510 max_tile_first = info[i].tile_first;
3511 node = isl_schedule_node_parent(node);
3514 for (i = 0; i < n; ++i) {
3515 if (info[i].tile_first == max_tile_first)
3516 continue;
3517 info[i].prefix = extend_range(info[i].prefix,
3518 info[i].tile_first, max_tile_first, 0);
3519 info[i].tile_first = max_tile_first;
3522 prefix = info[0].prefix;
3523 suffix = info[0].suffix;
3525 for (i = 1; i < n; ++i) {
3526 prefix = isl_union_map_union(prefix, info[i].prefix);
3527 suffix = isl_union_map_union(suffix, info[i].suffix);
3530 list_info->tile_first = info[0].tile_first;
3531 list_info->prefix = prefix;
3532 list_info->suffix = suffix;
3534 free(info);
3535 return node;
3538 /* If we reach a leaf node, then we have not found any outer tilable
3539 * band with parallel loops, so consider the leaf node as the outermost
3540 * tilable band.
3541 * Return a pointer to a mark node containing a pointer
3542 * to a ppcg_kernel object inserted at the original leaf node.
3544 static __isl_give isl_schedule_node *leaf_select_outer_band(struct gpu_gen *gen,
3545 __isl_take isl_schedule_node *node, int pos, struct band_info *info)
3547 info->gen = gen;
3548 info->tile_first = pos;
3549 info->prefix = isl_schedule_node_get_prefix_schedule_union_map(node);
3550 info->suffix = isl_schedule_node_get_subtree_schedule_union_map(node);
3552 node = mark_outer_permutable(gen, node);
3554 return node;
3557 /* Select the outermost tilable band in the subtree that "node" points to and
3558 * return a pointer to the same node in a tree where all outermost tilable
3559 * bands in the current subtree have been replaced by mark nodes
3560 * containing a pointer to a ppcg_kernel object.
3562 static __isl_give isl_schedule_node *select_outer_band(struct gpu_gen *gen,
3563 __isl_take isl_schedule_node *node, int pos, struct band_info *info)
3565 enum isl_schedule_node_type type;
3567 type = isl_schedule_node_get_type(node);
3568 switch (type) {
3569 case isl_schedule_node_domain:
3570 case isl_schedule_node_filter:
3571 node = isl_schedule_node_child(node, 0);
3572 node = select_outer_band(gen, node, pos, info);
3573 return isl_schedule_node_parent(node);
3574 case isl_schedule_node_leaf:
3575 return leaf_select_outer_band(gen, node, pos, info);
3576 case isl_schedule_node_band:
3577 return band_select_outer_band(gen, node, pos, info);
3578 case isl_schedule_node_set:
3579 case isl_schedule_node_sequence:
3580 return list_select_outer_band(gen, node, pos, info);
3581 default:
3582 isl_die(isl_schedule_node_get_ctx(node),
3583 isl_error_unsupported, "unhandled schedule node type",
3584 node = node);
3585 case isl_schedule_node_error:
3586 info->prefix = NULL;
3587 info->suffix = NULL;
3588 break;
3591 return isl_schedule_node_free(node);
3594 /* Select the outermost tilable band that (by construction)
3595 * has at least one parallel loop.
3596 * The starting position of the aligned band is stored in the pair
3597 * gen->tile_first.
3598 * The sizes and number of parallel loops may be different in different
3599 * parts of the band forest and are therefore stored in the gpu_stmts.
3601 * Return the complete schedule, with the tilable bands aligned
3602 * at gen->tile_first and padded with zero, if needed.
3603 * Store a schedule tree corresponding to the outer gen->tile_first
3604 * dimensions, with mark nodes containing pointers to ppcg_kernel objects,
3605 * in gen->schedule.
3607 static __isl_give isl_union_map *select_outer_tilable_band(struct gpu_gen *gen,
3608 __isl_keep isl_schedule *schedule)
3610 isl_schedule_node *node;
3611 struct band_info info;
3613 node = isl_schedule_get_root(schedule);
3614 node = select_outer_band(gen, node, 0, &info);
3615 gen->schedule = isl_schedule_node_get_schedule(node);
3616 isl_schedule_node_free(node);
3618 gen->tile_first = info.tile_first;
3619 info.suffix = align_range(info.suffix);
3621 return isl_union_map_flat_range_product(info.prefix, info.suffix);
3624 /* Compute an appropriate schedule based on the accesses in
3625 * gen->read and gen->write.
3627 * We use the dependences in gen->prog->scop to compute
3628 * a schedule that has a parallel loop in each tilable band.
3629 * Finally, we select the outermost tilable band.
3631 * If live range reordering is allowed, then we need to make sure
3632 * that live ranges on arrays are not run in parallel since doing
3633 * so would require array expansion. We therefore add the array
3634 * order dependences to the coincidence dependences. Non-zero array
3635 * order dependences will then prevent a schedule dimension from being
3636 * considered parallel.
3637 * Live ranges derived from scalars are allowed to be run in parallel
3638 * since we force the scalars to be mapped to private memory in
3639 * check_scalar_live_ranges.
3640 * If live range reordering is allowed, then the false dependences
3641 * are not added to the validity constraints as that would prevent
3642 * reordering. Instead, the external false dependences that enforce that reads
3643 * from potentially live-in data precede any later write and
3644 * that writes of potentially live-out data follow any other earlier write
3645 * are added to the validity and the coincidence constraints.
3646 * The false dependences are still added to the proximity constraints
3647 * for consistency with the case where live range reordering is not allowed.
3648 * The coincidence constraints then consist of flow dependences,
3649 * external false dependences and array order dependences.
3650 * The independences can be filtered out from the first two sets.
3651 * They have already been filtered out from the array order dependences
3652 * on a per array basis in collect_order_dependences.
3653 * There is no need for a per array handling of the other two sets
3654 * as there should be no flow or external false dependence on local
3655 * variables that can be filtered out.
3657 static void compute_schedule(struct gpu_gen *gen)
3659 isl_union_set *domain;
3660 isl_union_map *dep_raw, *dep;
3661 isl_union_map *validity, *proximity, *coincidence;
3662 isl_union_map *sched;
3663 isl_schedule_constraints *sc;
3664 isl_schedule *schedule;
3666 domain = isl_union_set_copy(gen->prog->scop->domain);
3667 sc = isl_schedule_constraints_on_domain(domain);
3668 sc = isl_schedule_constraints_set_context(sc,
3669 isl_set_copy(gen->prog->scop->context));
3670 if (gen->options->live_range_reordering) {
3671 sc = isl_schedule_constraints_set_conditional_validity(sc,
3672 isl_union_map_copy(gen->prog->scop->tagged_dep_flow),
3673 isl_union_map_copy(gen->prog->scop->tagged_dep_order));
3674 proximity = isl_union_map_copy(gen->prog->scop->dep_flow);
3675 validity = isl_union_map_copy(proximity);
3676 validity = isl_union_map_union(validity,
3677 isl_union_map_copy(gen->prog->scop->dep_forced));
3678 proximity = isl_union_map_union(proximity,
3679 isl_union_map_copy(gen->prog->scop->dep_false));
3680 coincidence = isl_union_map_copy(validity);
3681 coincidence = isl_union_map_subtract(coincidence,
3682 isl_union_map_copy(gen->prog->scop->independence));
3683 coincidence = isl_union_map_union(coincidence,
3684 isl_union_map_copy(gen->prog->array_order));
3685 } else {
3686 dep_raw = isl_union_map_copy(gen->prog->scop->dep_flow);
3687 dep = isl_union_map_copy(gen->prog->scop->dep_false);
3688 dep = isl_union_map_union(dep, dep_raw);
3689 dep = isl_union_map_coalesce(dep);
3690 proximity = isl_union_map_copy(dep);
3691 coincidence = isl_union_map_copy(dep);
3692 validity = dep;
3694 sc = isl_schedule_constraints_set_validity(sc, validity);
3695 sc = isl_schedule_constraints_set_coincidence(sc, coincidence);
3696 sc = isl_schedule_constraints_set_proximity(sc, proximity);
3698 if (gen->options->debug->dump_schedule_constraints)
3699 isl_schedule_constraints_dump(sc);
3700 schedule = isl_schedule_constraints_compute_schedule(sc);
3701 if (gen->options->debug->dump_schedule)
3702 isl_schedule_dump(schedule);
3704 sched = select_outer_tilable_band(gen, schedule);
3706 isl_union_map_free(sched);
3708 isl_schedule_free(schedule);
3711 /* Compute the sets of outer array elements that need to be copied in and out.
3713 * In particular, for each array that is possibly written anywhere in
3714 * gen->prog and that is visible outside the corresponding scop,
3715 * we copy out its entire extent.
3717 * Any array elements that is read without first being written needs
3718 * to be copied in. Furthermore, if there are any array elements that
3719 * are copied out, but that may not be written inside gen->prog, then
3720 * they also need to be copied in to ensure that the value after execution
3721 * is the same as the value before execution, at least for those array
3722 * elements that may have their values preserved by the scop.
3723 * In case the array elements are structures, we need to take into
3724 * account that all members of the structures need to be written
3725 * by gen->prog before we can avoid copying the data structure in.
3727 * While computing the set of array elements that are copied out but
3728 * not necessarily written, we intersect both sets with the context.
3729 * This helps in those cases where the arrays are declared with a fixed size,
3730 * while the accesses are parametric and the context assigns a fixed value
3731 * to the parameters.
3733 * If an element from a local array is read without first being written,
3734 * then there is no point in copying it in since it cannot have been
3735 * written prior to the scop. Warn about the uninitialized read instead.
3737 static void compute_copy_in_and_out(struct gpu_gen *gen)
3739 int i;
3740 isl_union_set *local;
3741 isl_union_set *may_write, *must_write;
3742 isl_union_set *copy_in, *copy_out;
3743 isl_union_set *not_written;
3744 isl_union_map *uninitialized;
3745 isl_union_map *local_uninitialized;
3747 must_write = isl_union_map_range(
3748 isl_union_map_copy(gen->prog->must_write));
3749 must_write = isl_union_set_intersect_params(must_write,
3750 isl_set_copy(gen->prog->context));
3751 may_write = isl_union_map_range(
3752 isl_union_map_copy(gen->prog->may_write));
3753 may_write = isl_union_set_intersect_params(may_write,
3754 isl_set_copy(gen->prog->context));
3755 may_write = isl_union_set_universe(may_write);
3756 may_write = isl_union_set_apply(may_write,
3757 isl_union_map_copy(gen->prog->to_outer));
3758 copy_out = isl_union_set_empty(isl_union_set_get_space(may_write));
3759 local = isl_union_set_copy(copy_out);
3761 for (i = 0; i < gen->prog->n_array; ++i) {
3762 isl_space *space;
3763 isl_set *write_i;
3764 int empty;
3766 space = isl_space_copy(gen->prog->array[i].space);
3768 if (gen->prog->array[i].local) {
3769 isl_set *set;
3771 set = isl_set_universe(space);
3772 local = isl_union_set_add_set(local, set);
3773 continue;
3776 write_i = isl_union_set_extract_set(may_write, space);
3777 empty = isl_set_plain_is_empty(write_i);
3778 isl_set_free(write_i);
3779 if (empty)
3780 continue;
3782 write_i = isl_set_copy(gen->prog->array[i].extent);
3783 copy_out = isl_union_set_add_set(copy_out, write_i);
3785 isl_union_set_free(may_write);
3787 copy_out = isl_union_set_intersect_params(copy_out,
3788 isl_set_copy(gen->prog->context));
3790 gen->prog->copy_out = isl_union_set_copy(copy_out);
3792 copy_out = isl_union_set_apply(copy_out,
3793 isl_union_map_copy(gen->prog->to_inner));
3794 copy_out = isl_union_set_intersect(copy_out,
3795 isl_union_set_copy(gen->prog->may_persist));
3796 not_written = isl_union_set_subtract(copy_out, must_write);
3798 uninitialized = isl_union_map_copy(gen->prog->scop->live_in);
3799 local_uninitialized = isl_union_map_copy(uninitialized);
3801 local = isl_union_set_apply(local,
3802 isl_union_map_copy(gen->prog->to_inner));
3803 local_uninitialized = isl_union_map_intersect_range(local_uninitialized,
3804 local);
3805 if (!isl_union_map_is_empty(local_uninitialized)) {
3806 fprintf(stderr,
3807 "possibly uninitialized reads (not copied in):\n");
3808 isl_union_map_dump(local_uninitialized);
3810 uninitialized = isl_union_map_subtract(uninitialized,
3811 local_uninitialized);
3812 copy_in = isl_union_map_range(uninitialized);
3813 copy_in = isl_union_set_union(copy_in, not_written);
3814 copy_in = isl_union_set_apply(copy_in,
3815 isl_union_map_copy(gen->prog->to_outer));
3817 gen->prog->copy_in = copy_in;
3820 /* Internal data structure for extract_access.
3821 * "next_access" points to the end of a linked list that is extended
3822 * by extract_access.
3823 * "single_expression" is set if the access expressions belong to
3824 * an expression statement (i.e., a statement without internal control).
3825 * "any_to_outer" maps all intermediate arrays to their outer arrays.
3827 struct ppcg_extract_access_data {
3828 struct gpu_stmt_access **next_access;
3829 int single_expression;
3830 isl_union_map *any_to_outer;
3833 /* Given a tagged access relation to a single array "tagged", extract it
3834 * as a map, taking into account that the input may be empty.
3835 * If the access relation is empty, then it does not contain
3836 * any space information, so we try to recover it from the index
3837 * expression.
3838 * The space of the index expression is of the form I -> A,
3839 * with I the statement instances and A the array, or [I -> F] -> A,
3840 * with F the filters corresponding to arguments.
3841 * We first drop F, if present, obtaining I -> A.
3842 * Then we construct I -> R, with R the reference tag,
3843 * combine the two into I -> [R -> A] and uncurry to obtain
3844 * the final result [I -> R] -> A.
3845 * Note that the index expression may have a lower dimension
3846 * than that of the array, but this dimension is not used
3847 * if the access relation is empty.
3849 static __isl_give isl_map *extract_single_tagged_access(
3850 __isl_take isl_union_map *tagged, __isl_keep pet_expr *expr)
3852 int empty;
3853 isl_id *id;
3854 isl_space *space, *space2;
3855 isl_multi_pw_aff *index;
3857 empty = isl_union_map_is_empty(tagged);
3858 if (empty < 0)
3859 goto error;
3860 if (!empty)
3861 return isl_map_from_union_map(tagged);
3862 isl_union_map_free(tagged);
3864 index = pet_expr_access_get_index(expr);
3865 space = isl_multi_pw_aff_get_space(index);
3866 isl_multi_pw_aff_free(index);
3867 if (isl_space_domain_is_wrapping(space))
3868 space = isl_space_domain_factor_domain(space);
3869 space2 = isl_space_copy(space);
3870 space2 = isl_space_from_domain(isl_space_domain(space));
3871 id = pet_expr_access_get_ref_id(expr);
3872 space2 = isl_space_set_tuple_id(space2, isl_dim_out, id);
3873 space = isl_space_range_product(space2, space);
3874 space = isl_space_uncurry(space);
3876 return isl_map_empty(space);
3877 error:
3878 isl_union_map_free(tagged);
3879 return NULL;
3882 /* Extract a gpu_stmt_access from "expr", append it to the list
3883 * that ends in *data->next_access and update the end of the list.
3884 * If the access expression performs a write, then it is considered
3885 * exact only if it appears in a single expression statement and
3886 * if its may access relation is equal to its must access relation.
3888 * The combined set of may accesses may be union if member accesses
3889 * are involved, but the entire set is derived from a single reference and
3890 * therefore from a single index expression. These accesses therefore
3891 * all map to the same outer array.
3893 static int extract_access(__isl_keep pet_expr *expr, void *user)
3895 struct ppcg_extract_access_data *data = user;
3896 isl_union_map *tagged;
3897 struct gpu_stmt_access *access;
3898 isl_ctx *ctx = pet_expr_get_ctx(expr);
3899 isl_multi_pw_aff *index;
3901 access = isl_alloc_type(ctx, struct gpu_stmt_access);
3902 assert(access);
3903 access->next = NULL;
3904 access->read = pet_expr_access_is_read(expr);
3905 access->write = pet_expr_access_is_write(expr);
3906 tagged = pet_expr_access_get_tagged_may_read(expr);
3907 tagged = isl_union_map_union(tagged,
3908 pet_expr_access_get_tagged_may_write(expr));
3909 tagged = isl_union_map_apply_range(tagged,
3910 isl_union_map_copy(data->any_to_outer));
3911 if (!access->write) {
3912 access->exact_write = 1;
3913 } else if (!data->single_expression) {
3914 access->exact_write = 0;
3915 } else {
3916 isl_union_map *must, *may;
3917 may = isl_union_map_copy(tagged);
3918 may = isl_union_map_domain_factor_domain(may);
3919 must = pet_expr_access_get_must_write(expr);
3920 access->exact_write = isl_union_map_is_equal(must, may);
3921 isl_union_map_free(must);
3922 isl_union_map_free(may);
3924 index = pet_expr_access_get_index(expr);
3925 access->n_index = isl_multi_pw_aff_dim(index, isl_dim_out);
3926 isl_multi_pw_aff_free(index);
3927 access->ref_id = pet_expr_access_get_ref_id(expr);
3928 access->tagged_access = extract_single_tagged_access(tagged, expr);
3929 access->access = isl_map_copy(access->tagged_access);
3930 access->access = isl_map_domain_factor_domain(access->access);
3932 *data->next_access = access;
3933 data->next_access = &(*data->next_access)->next;
3935 if (!access->access)
3936 return -1;
3938 return 0;
3941 /* Construct a linked list of gpu_stmt_access objects,
3942 * one for each access expression in the statement body.
3943 * "any_to_outer" maps all intermediate arrays to their outer arrays.
3945 static int pet_stmt_extract_accesses(struct gpu_stmt *stmt,
3946 __isl_keep isl_union_map *any_to_outer)
3948 struct ppcg_extract_access_data data;
3950 stmt->accesses = NULL;
3951 data.next_access = &stmt->accesses;
3952 data.single_expression =
3953 pet_tree_get_type(stmt->stmt->body) == pet_tree_expr;
3954 data.any_to_outer = any_to_outer;
3955 return pet_tree_foreach_access_expr(stmt->stmt->body,
3956 &extract_access, &data);
3959 /* Return an array of gpu_stmt representing the statements in "scop".
3961 static struct gpu_stmt *extract_stmts(isl_ctx *ctx, struct ppcg_scop *scop,
3962 __isl_keep isl_set *context, __isl_keep isl_union_map *any_to_outer)
3964 int i;
3965 struct gpu_stmt *stmts;
3967 stmts = isl_calloc_array(ctx, struct gpu_stmt, scop->pet->n_stmt);
3968 if (!stmts)
3969 return NULL;
3971 for (i = 0; i < scop->pet->n_stmt; ++i) {
3972 struct gpu_stmt *s = &stmts[i];
3974 s->id = isl_set_get_tuple_id(scop->pet->stmts[i]->domain);
3975 s->stmt = scop->pet->stmts[i];
3976 if (pet_stmt_extract_accesses(s, any_to_outer) < 0)
3977 return free_stmts(stmts, i + 1);
3980 return stmts;
3983 /* Callback for ppcg_print_guarded that calls the callback for generate_gpu.
3985 static __isl_give isl_printer *print_gpu(__isl_take isl_printer *p, void *user)
3987 struct gpu_gen *gen = user;
3989 return gen->print(p, gen->prog, gen->tree, &gen->types,
3990 gen->print_user);
3993 /* Generate CUDA code for "scop" and print it to "p".
3994 * After generating an AST for the transformed scop as explained below,
3995 * we call "gen->print" to print the AST in the desired output format
3996 * to "p".
3998 * If it turns out that it does not make sense to generate GPU code,
3999 * then we generate CPU code instead.
4001 * The GPU code is generated in a context where at least one
4002 * statement instance is executed. The corresponding guard (if any) is printed
4003 * around the entire generated GPU code, except for the declaration
4004 * of the arrays that are visible outside of the scop and that therefore
4005 * cannot be declared inside the body of any possible guard.
4007 * We first compute a schedule that respects the dependences
4008 * of the original program and select the outermost bands
4009 * of tilable dimensions that have at least one parallel loop.
4011 * Each of these bands B is then tiled according to "tile" sizes, resulting
4012 * in two nested bands, with a kernel marker on top
4020 * We then split off at most 2 parallel dimensions from the T band and
4021 * at most 3 parallel dimension from the P band
4026 * T1
4028 * T2
4030 * P1
4032 * P2
4034 * A filter is introduced in front of T1 that maps the domain instances
4035 * to block identifiers. Similarly, a filter is introduced in front of P1
4036 * that maps the domain instances to thread identifiers.
4038 * For each iteration of the T2 band and for each array, we compute
4039 * the array elements accessed by that iteration, construct a rectangular
4040 * box around it and shift it to the origin. The result is used
4041 * as shared memory for the array.
4043 * Copying and synchronization statements are added to this schedule tree.
4044 * In principle, these are added in front of the P1 band, but some of
4045 * them may get hoisted up to higher levels.
4047 * The entire AST is then generated from the single resulting schedule tree.
4048 * During the generation the subtrees at kernel nodes (K) are saved
4049 * aside and replaced by kernel calls. The result is printed as host code
4050 * while the saved subtrees are printed as device code.
4052 static __isl_give isl_printer *generate(__isl_take isl_printer *p,
4053 struct gpu_gen *gen, struct ppcg_scop *scop,
4054 struct ppcg_options *options)
4056 struct gpu_prog *prog;
4057 isl_ctx *ctx;
4058 isl_set *context, *guard;
4060 if (!scop)
4061 return isl_printer_free(p);
4063 ctx = isl_printer_get_ctx(p);
4064 prog = gpu_prog_alloc(ctx, scop);
4065 if (!prog)
4066 return isl_printer_free(p);
4068 context = isl_set_copy(prog->context);
4069 guard = isl_union_set_params(isl_union_set_copy(prog->scop->domain));
4070 prog->context = isl_set_intersect(prog->context, isl_set_copy(guard));
4072 gen->prog = prog;
4073 gen->any_parallelism = 0;
4074 compute_schedule(gen);
4076 if (!gen->any_parallelism) {
4077 isl_set_free(context);
4078 isl_set_free(guard);
4079 p = print_cpu(p, scop, options);
4080 } else {
4081 compute_copy_in_and_out(gen);
4082 gen->tree = generate_code(gen);
4083 p = ppcg_print_exposed_declarations(p, prog->scop);
4084 p = ppcg_print_guarded(p, guard, context, &print_gpu, gen);
4085 isl_ast_node_free(gen->tree);
4088 isl_schedule_free(gen->schedule);
4090 gpu_prog_free(prog);
4092 return p;
4095 /* Wrapper around generate for use as a ppcg_transform callback.
4097 static __isl_give isl_printer *generate_wrap(__isl_take isl_printer *p,
4098 struct ppcg_scop *scop, void *user)
4100 struct gpu_gen *gen = user;
4102 return generate(p, gen, scop, gen->options);
4105 /* Transform the code in the file called "input" by replacing
4106 * all scops by corresponding GPU code and write the results to "out".
4108 int generate_gpu(isl_ctx *ctx, const char *input, FILE *out,
4109 struct ppcg_options *options,
4110 __isl_give isl_printer *(*print)(__isl_take isl_printer *p,
4111 struct gpu_prog *prog, __isl_keep isl_ast_node *tree,
4112 struct gpu_types *types, void *user), void *user)
4114 struct gpu_gen gen;
4115 int r;
4116 int i;
4118 gen.ctx = ctx;
4119 gen.sizes = extract_sizes_from_str(ctx, options->sizes);
4120 gen.options = options;
4121 gen.kernel_id = 0;
4122 gen.print = print;
4123 gen.print_user = user;
4124 gen.types.n = 0;
4125 gen.types.name = NULL;
4127 if (options->debug->dump_sizes) {
4128 isl_space *space = isl_space_params_alloc(ctx, 0);
4129 gen.used_sizes = isl_union_map_empty(space);
4132 r = ppcg_transform(ctx, input, out, options, &generate_wrap, &gen);
4134 if (options->debug->dump_sizes) {
4135 isl_union_map_dump(gen.used_sizes);
4136 isl_union_map_free(gen.used_sizes);
4139 isl_union_map_free(gen.sizes);
4140 for (i = 0; i < gen.types.n; ++i)
4141 free(gen.types.name[i]);
4142 free(gen.types.name);
4144 return r;
4147 /* Compute the set of inner array elements that may have their values
4148 * preserved by "prog". In particular, collect the array elements of
4149 * arrays that are not local to "prog" and remove those elements that
4150 * are definitely killed or definitely written by "prog".
4152 static __isl_give isl_union_set *compute_may_persist(struct gpu_prog *prog)
4154 int i;
4155 isl_union_set *may_persist, *killed;
4156 isl_union_map *must_kill;
4158 may_persist = isl_union_set_empty(isl_set_get_space(prog->context));
4159 for (i = 0; i < prog->n_array; ++i) {
4160 isl_set *extent;
4162 if (prog->array[i].local)
4163 continue;
4165 extent = isl_set_copy(prog->array[i].extent);
4166 may_persist = isl_union_set_add_set(may_persist, extent);
4169 may_persist = isl_union_set_intersect_params(may_persist,
4170 isl_set_copy(prog->context));
4171 may_persist = isl_union_set_apply(may_persist,
4172 isl_union_map_copy(prog->to_inner));
4173 must_kill = isl_union_map_copy(prog->tagged_must_kill);
4174 killed = isl_union_map_range(must_kill);
4175 must_kill = isl_union_map_copy(prog->must_write);
4176 killed = isl_union_set_union(killed, isl_union_map_range(must_kill));
4178 may_persist = isl_union_set_subtract(may_persist, killed);
4179 return may_persist;
4182 struct gpu_prog *gpu_prog_alloc(isl_ctx *ctx, struct ppcg_scop *scop)
4184 struct gpu_prog *prog;
4185 isl_space *space;
4186 isl_map *id;
4188 if (!scop)
4189 return NULL;
4191 prog = isl_calloc_type(ctx, struct gpu_prog);
4192 assert(prog);
4194 prog->ctx = ctx;
4195 prog->scop = scop;
4196 prog->context = isl_set_copy(scop->context);
4197 prog->n_stmts = scop->pet->n_stmt;
4198 prog->any_to_outer = pet_scop_compute_outer_to_any(scop->pet);
4199 prog->any_to_outer = isl_union_map_reverse(prog->any_to_outer);
4200 space = isl_union_map_get_space(prog->any_to_outer);
4201 space = isl_space_set_from_params(space);
4202 space = isl_space_add_dims(space, isl_dim_set, 1);
4203 space = isl_space_map_from_set(space);
4204 id = isl_map_identity(space);
4205 prog->any_to_outer = isl_union_map_add_map(prog->any_to_outer, id);
4206 prog->stmts = extract_stmts(ctx, scop,
4207 prog->context, prog->any_to_outer);
4208 prog->read = isl_union_map_copy(scop->reads);
4209 prog->may_write = isl_union_map_copy(scop->may_writes);
4210 prog->must_write = isl_union_map_copy(scop->must_writes);
4211 prog->tagged_must_kill = isl_union_map_copy(scop->tagged_must_kills);
4212 prog->to_inner = pet_scop_compute_outer_to_inner(scop->pet);
4213 prog->to_outer = isl_union_map_copy(prog->to_inner);
4214 prog->to_outer = isl_union_map_reverse(prog->to_outer);
4216 if (!prog->stmts)
4217 return gpu_prog_free(prog);
4219 if (collect_array_info(prog) < 0)
4220 return gpu_prog_free(prog);
4221 prog->may_persist = compute_may_persist(prog);
4223 return prog;
4226 void *gpu_prog_free(struct gpu_prog *prog)
4228 if (!prog)
4229 return NULL;
4230 free_array_info(prog);
4231 free_stmts(prog->stmts, prog->n_stmts);
4232 isl_union_map_free(prog->any_to_outer);
4233 isl_union_map_free(prog->to_outer);
4234 isl_union_map_free(prog->to_inner);
4235 isl_union_set_free(prog->copy_in);
4236 isl_union_set_free(prog->copy_out);
4237 isl_union_map_free(prog->read);
4238 isl_union_map_free(prog->may_write);
4239 isl_union_map_free(prog->must_write);
4240 isl_union_map_free(prog->tagged_must_kill);
4241 isl_union_map_free(prog->array_order);
4242 isl_union_set_free(prog->may_persist);
4243 isl_set_free(prog->context);
4244 free(prog);
4245 return NULL;