4 /* An access to an array element or an iterator.
5 * Accesses to iterators have an access relation that maps to an unnamed space.
6 * An access may be both read and write.
8 struct gpu_stmt_access
{
9 /* Access reads elements */
11 /* Access writes elements */
14 /* Index of the array reference group this reference belong to. */
20 struct gpu_stmt_access
*next
;
25 struct pet_expr
*body
;
27 /* Number of tile dimensions. */
29 /* Number of initial parallel loops among tile dimensions. */
32 /* Linked list of accesses. */
33 struct gpu_stmt_access
*accesses
;
36 __isl_give isl_map
*wavefront(__isl_take isl_space
*dim
, int len
,
37 int first
, int wave_len
);
38 __isl_give isl_map
*project_out(__isl_take isl_space
*dim
,
39 int len
, int first
, int n
);
40 __isl_give isl_map
*projection(__isl_take isl_space
*dim
,
41 int src_len
, int dst_len
);
42 __isl_give isl_set
*extend(__isl_take isl_set
*set
, int dst_len
);
43 __isl_give isl_union_map
*align_range(__isl_take isl_union_map
*umap
);