1 /* Heuristics and transform for loop blocking and strip mining on
2 polyhedral representation.
4 Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 Contributed by Sebastian Pop <sebastian.pop@amd.com> and
6 Pranav Garg <pranav.garg2107@gmail.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
29 #include <isl/union_map.h>
30 #include <isl/constraint.h>
32 #include <cloog/cloog.h>
33 #include <cloog/isl/domain.h>
38 #include "coretypes.h"
40 #include "basic-block.h"
41 #include "tree-ssa-alias.h"
42 #include "internal-fn.h"
43 #include "gimple-expr.h"
46 #include "gimple-iterator.h"
47 #include "tree-ssa-loop.h"
50 #include "tree-chrec.h"
51 #include "tree-data-ref.h"
55 #include "graphite-poly.h"
58 /* Strip mines with a factor STRIDE the scattering (time) dimension
59 around PBB at depth TIME_DEPTH.
61 The following example comes from the wiki page:
62 http://gcc.gnu.org/wiki/Graphite/Strip_mine
64 The strip mine of a loop with a tile of 64 can be obtained with a
65 scattering function as follows:
67 $ cat ./albert_strip_mine.cloog
71 # parameter {n | n >= 0}
78 1 # Number of statements:
91 1 # Scattering functions
102 #the output of CLooG is like this:
103 #$ cloog ./albert_strip_mine.cloog
104 # for (NEW=0;NEW<=floord(n,64);NEW++) {
105 # for (OLD=max(64*NEW,0);OLD<=min(64*NEW+63,n);OLD++) {
112 pbb_strip_mine_time_depth (poly_bb_p pbb
, int time_depth
, int stride
)
117 /* STRIP is the dimension that iterates with stride STRIDE. */
118 /* ITER is the dimension that enumerates single iterations inside
119 one strip that has at most STRIDE iterations. */
123 pbb
->transformed
= isl_map_insert_dims (pbb
->transformed
, isl_dim_out
,
126 /* Lower bound of the striped loop. */
127 d
= isl_map_get_space (pbb
->transformed
);
128 c
= isl_inequality_alloc (isl_local_space_from_space (d
));
129 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, strip
, -stride
);
130 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, iter
, 1);
131 pbb
->transformed
= isl_map_add_constraint (pbb
->transformed
, c
);
133 /* Upper bound of the striped loop. */
134 d
= isl_map_get_space (pbb
->transformed
);
135 c
= isl_inequality_alloc (isl_local_space_from_space (d
));
136 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, strip
, stride
);
137 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, iter
, -1);
138 c
= isl_constraint_set_constant_si (c
, stride
- 1);
139 pbb
->transformed
= isl_map_add_constraint (pbb
->transformed
, c
);
141 /* Static scheduling for ITER level.
142 This is mandatory to keep the 2d + 1 canonical scheduling format. */
143 d
= isl_map_get_space (pbb
->transformed
);
144 c
= isl_equality_alloc (isl_local_space_from_space (d
));
145 c
= isl_constraint_set_coefficient_si (c
, isl_dim_out
, strip
+ 1, 1);
146 pbb
->transformed
= isl_map_add_constraint (pbb
->transformed
, c
);
149 /* Returns true when strip mining with STRIDE of the loop LST is
153 lst_strip_mine_profitable_p (lst_p lst
, int stride
)
155 mpz_t niter
, strip_stride
;
158 gcc_assert (LST_LOOP_P (lst
));
159 mpz_init (strip_stride
);
162 mpz_set_si (strip_stride
, stride
);
163 lst_niter_for_loop (lst
, niter
);
164 res
= (mpz_cmp (niter
, strip_stride
) > 0);
166 mpz_clear (strip_stride
);
171 /* Strip-mines all the loops of LST with STRIDE. Return the number of
172 loops strip-mined. */
175 lst_do_strip_mine_loop (lst_p lst
, int depth
, int stride
)
184 if (LST_LOOP_P (lst
))
188 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
189 res
+= lst_do_strip_mine_loop (l
, depth
, stride
);
195 pbb_strip_mine_time_depth (pbb
, psct_dynamic_dim (pbb
, depth
), stride
);
199 /* Strip-mines all the loops of LST with STRIDE. When STRIDE is zero,
200 read the stride from the PARAM_LOOP_BLOCK_TILE_SIZE. Return the
201 number of strip-mined loops.
203 Strip mining transforms a loop
205 | for (i = 0; i < N; i++)
208 into the following loop nest:
210 | for (k = 0; k < N; k += STRIDE)
211 | for (j = 0; j < STRIDE; j++)
216 lst_do_strip_mine (lst_p lst
, int stride
)
224 stride
= PARAM_VALUE (PARAM_LOOP_BLOCK_TILE_SIZE
);
227 || !LST_LOOP_P (lst
))
230 FOR_EACH_VEC_ELT (LST_SEQ (lst
), i
, l
)
231 res
+= lst_do_strip_mine (l
, stride
);
233 depth
= lst_depth (lst
);
235 && lst_strip_mine_profitable_p (lst
, stride
))
237 res
+= lst_do_strip_mine_loop (lst
, lst_depth (lst
), stride
);
238 lst_add_loop_under_loop (lst
);
244 /* Strip mines all the loops in SCOP. Returns the number of
245 strip-mined loops. */
248 scop_do_strip_mine (scop_p scop
, int stride
)
250 return lst_do_strip_mine (SCOP_TRANSFORMED_SCHEDULE (scop
), stride
);
253 /* Loop blocks all the loops in SCOP. Returns true when we manage to
257 scop_do_block (scop_p scop
)
259 store_scattering (scop
);
261 /* If we don't strip mine at least two loops, or not interchange
262 loops, the strip mine alone will not be profitable, and the
263 transform is not a loop blocking: so revert the transform. */
264 if (lst_do_strip_mine (SCOP_TRANSFORMED_SCHEDULE (scop
), 0) < 2
265 || scop_do_interchange (scop
) == 0)
267 restore_scattering (scop
);
271 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
272 fprintf (dump_file
, "SCoP will be loop blocked.\n");