annotate gcc/graphite-sese-to-poly.c @ 143:76e1cf5455ef

add cbc_gc test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 19:24:05 +0900
parents 84e7813d76e9
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Conversion of SESE regions to Polyhedra.
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 Copyright (C) 2009-2018 Free Software Foundation, Inc.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 Contributed by Sebastian Pop <sebastian.pop@amd.com>.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 This file is part of GCC.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 the Free Software Foundation; either version 3, or (at your option)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 any later version.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
11
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful,
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 GNU General Public License for more details.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
16
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
20
111
kono
parents: 67
diff changeset
21 #define USES_ISL
kono
parents: 67
diff changeset
22
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 #include "config.h"
111
kono
parents: 67
diff changeset
24
kono
parents: 67
diff changeset
25 #ifdef HAVE_isl
kono
parents: 67
diff changeset
26
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 #include "system.h"
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 #include "coretypes.h"
111
kono
parents: 67
diff changeset
29 #include "backend.h"
kono
parents: 67
diff changeset
30 #include "cfghooks.h"
kono
parents: 67
diff changeset
31 #include "tree.h"
kono
parents: 67
diff changeset
32 #include "gimple.h"
kono
parents: 67
diff changeset
33 #include "ssa.h"
kono
parents: 67
diff changeset
34 #include "params.h"
kono
parents: 67
diff changeset
35 #include "fold-const.h"
kono
parents: 67
diff changeset
36 #include "gimple-iterator.h"
kono
parents: 67
diff changeset
37 #include "gimplify.h"
kono
parents: 67
diff changeset
38 #include "gimplify-me.h"
kono
parents: 67
diff changeset
39 #include "tree-cfg.h"
kono
parents: 67
diff changeset
40 #include "tree-ssa-loop-manip.h"
kono
parents: 67
diff changeset
41 #include "tree-ssa-loop-niter.h"
kono
parents: 67
diff changeset
42 #include "tree-ssa-loop.h"
kono
parents: 67
diff changeset
43 #include "tree-into-ssa.h"
kono
parents: 67
diff changeset
44 #include "tree-pass.h"
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 #include "cfgloop.h"
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 #include "tree-data-ref.h"
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
47 #include "tree-scalar-evolution.h"
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 #include "domwalk.h"
111
kono
parents: 67
diff changeset
49 #include "tree-ssa-propagate.h"
kono
parents: 67
diff changeset
50
kono
parents: 67
diff changeset
51 #include <isl/constraint.h>
kono
parents: 67
diff changeset
52 #include <isl/set.h>
kono
parents: 67
diff changeset
53 #include <isl/map.h>
kono
parents: 67
diff changeset
54 #include <isl/union_map.h>
kono
parents: 67
diff changeset
55 #include <isl/constraint.h>
kono
parents: 67
diff changeset
56 #include <isl/aff.h>
kono
parents: 67
diff changeset
57 #include <isl/val.h>
kono
parents: 67
diff changeset
58
kono
parents: 67
diff changeset
59 #include "graphite.h"
kono
parents: 67
diff changeset
60
kono
parents: 67
diff changeset
61 /* Return an isl identifier for the polyhedral basic block PBB. */
kono
parents: 67
diff changeset
62
kono
parents: 67
diff changeset
63 static isl_id *
kono
parents: 67
diff changeset
64 isl_id_for_pbb (scop_p s, poly_bb_p pbb)
kono
parents: 67
diff changeset
65 {
kono
parents: 67
diff changeset
66 char name[14];
kono
parents: 67
diff changeset
67 snprintf (name, sizeof (name), "S_%d", pbb_index (pbb));
kono
parents: 67
diff changeset
68 return isl_id_alloc (s->isl_context, name, pbb);
kono
parents: 67
diff changeset
69 }
kono
parents: 67
diff changeset
70
kono
parents: 67
diff changeset
71 static isl_pw_aff *extract_affine (scop_p, tree, __isl_take isl_space *space);
kono
parents: 67
diff changeset
72
kono
parents: 67
diff changeset
73 /* Extract an affine expression from the chain of recurrence E. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
74
111
kono
parents: 67
diff changeset
75 static isl_pw_aff *
kono
parents: 67
diff changeset
76 extract_affine_chrec (scop_p s, tree e, __isl_take isl_space *space)
kono
parents: 67
diff changeset
77 {
kono
parents: 67
diff changeset
78 isl_pw_aff *lhs = extract_affine (s, CHREC_LEFT (e), isl_space_copy (space));
kono
parents: 67
diff changeset
79 isl_pw_aff *rhs = extract_affine (s, CHREC_RIGHT (e), isl_space_copy (space));
kono
parents: 67
diff changeset
80 isl_local_space *ls = isl_local_space_from_space (space);
kono
parents: 67
diff changeset
81 unsigned pos = sese_loop_depth (s->scop_info->region, get_chrec_loop (e)) - 1;
kono
parents: 67
diff changeset
82 isl_aff *loop = isl_aff_set_coefficient_si
kono
parents: 67
diff changeset
83 (isl_aff_zero_on_domain (ls), isl_dim_in, pos, 1);
kono
parents: 67
diff changeset
84 isl_pw_aff *l = isl_pw_aff_from_aff (loop);
kono
parents: 67
diff changeset
85
kono
parents: 67
diff changeset
86 /* Before multiplying, make sure that the result is affine. */
kono
parents: 67
diff changeset
87 gcc_assert (isl_pw_aff_is_cst (rhs)
kono
parents: 67
diff changeset
88 || isl_pw_aff_is_cst (l));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
89
111
kono
parents: 67
diff changeset
90 return isl_pw_aff_add (lhs, isl_pw_aff_mul (rhs, l));
kono
parents: 67
diff changeset
91 }
kono
parents: 67
diff changeset
92
kono
parents: 67
diff changeset
93 /* Extract an affine expression from the mult_expr E. */
kono
parents: 67
diff changeset
94
kono
parents: 67
diff changeset
95 static isl_pw_aff *
kono
parents: 67
diff changeset
96 extract_affine_mul (scop_p s, tree e, __isl_take isl_space *space)
kono
parents: 67
diff changeset
97 {
kono
parents: 67
diff changeset
98 isl_pw_aff *lhs = extract_affine (s, TREE_OPERAND (e, 0),
kono
parents: 67
diff changeset
99 isl_space_copy (space));
kono
parents: 67
diff changeset
100 isl_pw_aff *rhs = extract_affine (s, TREE_OPERAND (e, 1), space);
kono
parents: 67
diff changeset
101
kono
parents: 67
diff changeset
102 if (!isl_pw_aff_is_cst (lhs)
kono
parents: 67
diff changeset
103 && !isl_pw_aff_is_cst (rhs))
kono
parents: 67
diff changeset
104 {
kono
parents: 67
diff changeset
105 isl_pw_aff_free (lhs);
kono
parents: 67
diff changeset
106 isl_pw_aff_free (rhs);
kono
parents: 67
diff changeset
107 return NULL;
kono
parents: 67
diff changeset
108 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
109
111
kono
parents: 67
diff changeset
110 return isl_pw_aff_mul (lhs, rhs);
kono
parents: 67
diff changeset
111 }
kono
parents: 67
diff changeset
112
kono
parents: 67
diff changeset
113 /* Return an isl identifier from the name of the ssa_name E. */
kono
parents: 67
diff changeset
114
kono
parents: 67
diff changeset
115 static isl_id *
kono
parents: 67
diff changeset
116 isl_id_for_ssa_name (scop_p s, tree e)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
117 {
111
kono
parents: 67
diff changeset
118 char name1[14];
kono
parents: 67
diff changeset
119 snprintf (name1, sizeof (name1), "P_%d", SSA_NAME_VERSION (e));
kono
parents: 67
diff changeset
120 return isl_id_alloc (s->isl_context, name1, e);
kono
parents: 67
diff changeset
121 }
kono
parents: 67
diff changeset
122
kono
parents: 67
diff changeset
123 /* Return an isl identifier for the data reference DR. Data references and
kono
parents: 67
diff changeset
124 scalar references get the same isl_id. They need to be comparable and are
kono
parents: 67
diff changeset
125 distinguished through the first dimension, which contains the alias set or
kono
parents: 67
diff changeset
126 SSA_NAME_VERSION number. */
kono
parents: 67
diff changeset
127
kono
parents: 67
diff changeset
128 static isl_id *
kono
parents: 67
diff changeset
129 isl_id_for_dr (scop_p s)
kono
parents: 67
diff changeset
130 {
kono
parents: 67
diff changeset
131 return isl_id_alloc (s->isl_context, "", 0);
kono
parents: 67
diff changeset
132 }
kono
parents: 67
diff changeset
133
kono
parents: 67
diff changeset
134 /* Extract an affine expression from the ssa_name E. */
kono
parents: 67
diff changeset
135
kono
parents: 67
diff changeset
136 static isl_pw_aff *
kono
parents: 67
diff changeset
137 extract_affine_name (int dimension, __isl_take isl_space *space)
kono
parents: 67
diff changeset
138 {
kono
parents: 67
diff changeset
139 isl_set *dom = isl_set_universe (isl_space_copy (space));
kono
parents: 67
diff changeset
140 isl_aff *aff = isl_aff_zero_on_domain (isl_local_space_from_space (space));
kono
parents: 67
diff changeset
141 aff = isl_aff_add_coefficient_si (aff, isl_dim_param, dimension, 1);
kono
parents: 67
diff changeset
142 return isl_pw_aff_alloc (dom, aff);
kono
parents: 67
diff changeset
143 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
144
111
kono
parents: 67
diff changeset
145 /* Convert WI to a isl_val with CTX. */
kono
parents: 67
diff changeset
146
kono
parents: 67
diff changeset
147 static __isl_give isl_val *
kono
parents: 67
diff changeset
148 isl_val_int_from_wi (isl_ctx *ctx, const widest_int &wi)
kono
parents: 67
diff changeset
149 {
kono
parents: 67
diff changeset
150 if (wi::neg_p (wi, SIGNED))
kono
parents: 67
diff changeset
151 {
kono
parents: 67
diff changeset
152 widest_int mwi = -wi;
kono
parents: 67
diff changeset
153 return isl_val_neg (isl_val_int_from_chunks (ctx, mwi.get_len (),
kono
parents: 67
diff changeset
154 sizeof (HOST_WIDE_INT),
kono
parents: 67
diff changeset
155 mwi.get_val ()));
kono
parents: 67
diff changeset
156 }
kono
parents: 67
diff changeset
157 return isl_val_int_from_chunks (ctx, wi.get_len (), sizeof (HOST_WIDE_INT),
kono
parents: 67
diff changeset
158 wi.get_val ());
kono
parents: 67
diff changeset
159 }
kono
parents: 67
diff changeset
160
kono
parents: 67
diff changeset
161 /* Extract an affine expression from the gmp constant G. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
162
111
kono
parents: 67
diff changeset
163 static isl_pw_aff *
kono
parents: 67
diff changeset
164 extract_affine_wi (const widest_int &g, __isl_take isl_space *space)
kono
parents: 67
diff changeset
165 {
kono
parents: 67
diff changeset
166 isl_local_space *ls = isl_local_space_from_space (isl_space_copy (space));
kono
parents: 67
diff changeset
167 isl_aff *aff = isl_aff_zero_on_domain (ls);
kono
parents: 67
diff changeset
168 isl_set *dom = isl_set_universe (space);
kono
parents: 67
diff changeset
169 isl_ctx *ct = isl_aff_get_ctx (aff);
kono
parents: 67
diff changeset
170 isl_val *v = isl_val_int_from_wi (ct, g);
kono
parents: 67
diff changeset
171 aff = isl_aff_add_constant_val (aff, v);
kono
parents: 67
diff changeset
172
kono
parents: 67
diff changeset
173 return isl_pw_aff_alloc (dom, aff);
kono
parents: 67
diff changeset
174 }
kono
parents: 67
diff changeset
175
kono
parents: 67
diff changeset
176 /* Extract an affine expression from the integer_cst E. */
kono
parents: 67
diff changeset
177
kono
parents: 67
diff changeset
178 static isl_pw_aff *
kono
parents: 67
diff changeset
179 extract_affine_int (tree e, __isl_take isl_space *space)
kono
parents: 67
diff changeset
180 {
kono
parents: 67
diff changeset
181 isl_pw_aff *res = extract_affine_wi (wi::to_widest (e), space);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
182 return res;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
183 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
184
111
kono
parents: 67
diff changeset
185 /* Compute pwaff mod 2^width. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
186
111
kono
parents: 67
diff changeset
187 static isl_pw_aff *
kono
parents: 67
diff changeset
188 wrap (isl_pw_aff *pwaff, unsigned width)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
189 {
111
kono
parents: 67
diff changeset
190 isl_val *mod;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
191
111
kono
parents: 67
diff changeset
192 mod = isl_val_int_from_ui (isl_pw_aff_get_ctx (pwaff), width);
kono
parents: 67
diff changeset
193 mod = isl_val_2exp (mod);
kono
parents: 67
diff changeset
194 pwaff = isl_pw_aff_mod_val (pwaff, mod);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
195
111
kono
parents: 67
diff changeset
196 return pwaff;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
197 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
198
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
199 /* When parameter NAME is in REGION, returns its index in SESE_PARAMS.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 Otherwise returns -1. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
201
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 static inline int
111
kono
parents: 67
diff changeset
203 parameter_index_in_region (tree name, sese_info_p region)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 int i;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 tree p;
111
kono
parents: 67
diff changeset
207 FOR_EACH_VEC_ELT (region->params, i, p)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 if (p == name)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
209 return i;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
210 return -1;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
211 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
212
111
kono
parents: 67
diff changeset
213 /* Extract an affine expression from the tree E in the scop S. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
214
111
kono
parents: 67
diff changeset
215 static isl_pw_aff *
kono
parents: 67
diff changeset
216 extract_affine (scop_p s, tree e, __isl_take isl_space *space)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
217 {
111
kono
parents: 67
diff changeset
218 isl_pw_aff *lhs, *rhs, *res;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
219
111
kono
parents: 67
diff changeset
220 if (e == chrec_dont_know) {
kono
parents: 67
diff changeset
221 isl_space_free (space);
kono
parents: 67
diff changeset
222 return NULL;
kono
parents: 67
diff changeset
223 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
224
111
kono
parents: 67
diff changeset
225 tree type = TREE_TYPE (e);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
226 switch (TREE_CODE (e))
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 case POLYNOMIAL_CHREC:
111
kono
parents: 67
diff changeset
229 res = extract_affine_chrec (s, e, space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
231
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 case MULT_EXPR:
111
kono
parents: 67
diff changeset
233 res = extract_affine_mul (s, e, space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
235
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 case POINTER_PLUS_EXPR:
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
237 {
111
kono
parents: 67
diff changeset
238 lhs = extract_affine (s, TREE_OPERAND (e, 0), isl_space_copy (space));
kono
parents: 67
diff changeset
239 /* The RHS of a pointer-plus expression is to be interpreted
kono
parents: 67
diff changeset
240 as signed value. Try to look through a sign-changing conversion
kono
parents: 67
diff changeset
241 first. */
kono
parents: 67
diff changeset
242 tree tem = TREE_OPERAND (e, 1);
kono
parents: 67
diff changeset
243 STRIP_NOPS (tem);
kono
parents: 67
diff changeset
244 rhs = extract_affine (s, tem, space);
kono
parents: 67
diff changeset
245 if (TYPE_UNSIGNED (TREE_TYPE (tem)))
kono
parents: 67
diff changeset
246 rhs = wrap (rhs, TYPE_PRECISION (type) - 1);
kono
parents: 67
diff changeset
247 res = isl_pw_aff_add (lhs, rhs);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
248 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
249 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
250
111
kono
parents: 67
diff changeset
251 case PLUS_EXPR:
kono
parents: 67
diff changeset
252 lhs = extract_affine (s, TREE_OPERAND (e, 0), isl_space_copy (space));
kono
parents: 67
diff changeset
253 rhs = extract_affine (s, TREE_OPERAND (e, 1), space);
kono
parents: 67
diff changeset
254 res = isl_pw_aff_add (lhs, rhs);
kono
parents: 67
diff changeset
255 break;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
256
111
kono
parents: 67
diff changeset
257 case MINUS_EXPR:
kono
parents: 67
diff changeset
258 lhs = extract_affine (s, TREE_OPERAND (e, 0), isl_space_copy (space));
kono
parents: 67
diff changeset
259 rhs = extract_affine (s, TREE_OPERAND (e, 1), space);
kono
parents: 67
diff changeset
260 res = isl_pw_aff_sub (lhs, rhs);
kono
parents: 67
diff changeset
261 break;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
262
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
263 case BIT_NOT_EXPR:
111
kono
parents: 67
diff changeset
264 lhs = extract_affine (s, integer_minus_one_node, isl_space_copy (space));
kono
parents: 67
diff changeset
265 rhs = extract_affine (s, TREE_OPERAND (e, 0), space);
kono
parents: 67
diff changeset
266 res = isl_pw_aff_sub (lhs, rhs);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
267 /* We need to always wrap the result of a bitwise operation. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
268 return wrap (res, TYPE_PRECISION (type) - (TYPE_UNSIGNED (type) ? 0 : 1));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
269
111
kono
parents: 67
diff changeset
270 case NEGATE_EXPR:
kono
parents: 67
diff changeset
271 lhs = extract_affine (s, TREE_OPERAND (e, 0), isl_space_copy (space));
kono
parents: 67
diff changeset
272 rhs = extract_affine (s, integer_minus_one_node, space);
kono
parents: 67
diff changeset
273 res = isl_pw_aff_mul (lhs, rhs);
kono
parents: 67
diff changeset
274 break;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
275
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
276 case SSA_NAME:
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
277 {
111
kono
parents: 67
diff changeset
278 gcc_assert (! defined_in_sese_p (e, s->scop_info->region));
kono
parents: 67
diff changeset
279 int dim = parameter_index_in_region (e, s->scop_info);
kono
parents: 67
diff changeset
280 gcc_assert (dim != -1);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
281 /* No need to wrap a parameter. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
282 return extract_affine_name (dim, space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
283 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
284
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
285 case INTEGER_CST:
111
kono
parents: 67
diff changeset
286 res = extract_affine_int (e, space);
kono
parents: 67
diff changeset
287 /* No need to wrap a single integer. */
kono
parents: 67
diff changeset
288 return res;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
289
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
290 CASE_CONVERT:
111
kono
parents: 67
diff changeset
291 {
kono
parents: 67
diff changeset
292 tree itype = TREE_TYPE (TREE_OPERAND (e, 0));
kono
parents: 67
diff changeset
293 res = extract_affine (s, TREE_OPERAND (e, 0), space);
kono
parents: 67
diff changeset
294 /* Signed values, even if overflow is undefined, get modulo-reduced.
kono
parents: 67
diff changeset
295 But only if not all values of the old type fit in the new. */
kono
parents: 67
diff changeset
296 if (! TYPE_UNSIGNED (type)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
297 && ((TYPE_UNSIGNED (itype)
111
kono
parents: 67
diff changeset
298 && TYPE_PRECISION (type) <= TYPE_PRECISION (itype))
kono
parents: 67
diff changeset
299 || TYPE_PRECISION (type) < TYPE_PRECISION (itype)))
kono
parents: 67
diff changeset
300 res = wrap (res, TYPE_PRECISION (type) - 1);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
301 else if (TYPE_UNSIGNED (type)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
302 && (!TYPE_UNSIGNED (itype)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
303 || TYPE_PRECISION (type) < TYPE_PRECISION (itype)))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
304 res = wrap (res, TYPE_PRECISION (type));
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
305 return res;
111
kono
parents: 67
diff changeset
306 }
kono
parents: 67
diff changeset
307
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 case NON_LVALUE_EXPR:
111
kono
parents: 67
diff changeset
309 res = extract_affine (s, TREE_OPERAND (e, 0), space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
311
111
kono
parents: 67
diff changeset
312 default:
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
313 gcc_unreachable ();
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
314 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
315 }
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
316
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
317 /* For all wrapping arithmetic wrap the result. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
318 if (TYPE_OVERFLOW_WRAPS (type))
111
kono
parents: 67
diff changeset
319 res = wrap (res, TYPE_PRECISION (type));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
320
111
kono
parents: 67
diff changeset
321 return res;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
322 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
323
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
324 /* Returns a linear expression for tree T evaluated in PBB. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
325
111
kono
parents: 67
diff changeset
326 static isl_pw_aff *
kono
parents: 67
diff changeset
327 create_pw_aff_from_tree (poly_bb_p pbb, loop_p loop, tree t)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
328 {
111
kono
parents: 67
diff changeset
329 scop_p scop = PBB_SCOP (pbb);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
330
111
kono
parents: 67
diff changeset
331 t = scalar_evolution_in_region (scop->scop_info->region, loop, t);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
332
111
kono
parents: 67
diff changeset
333 gcc_assert (!chrec_contains_undetermined (t));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
334 gcc_assert (!automatically_generated_chrec_p (t));
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
335
111
kono
parents: 67
diff changeset
336 return extract_affine (scop, t, isl_set_get_space (pbb->domain));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
337 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
338
111
kono
parents: 67
diff changeset
339 /* Add conditional statement STMT to pbb. CODE is used as the comparison
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
340 operator. This allows us to invert the condition or to handle
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
341 inequalities. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
342
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
343 static void
111
kono
parents: 67
diff changeset
344 add_condition_to_pbb (poly_bb_p pbb, gcond *stmt, enum tree_code code)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 {
111
kono
parents: 67
diff changeset
346 loop_p loop = gimple_bb (stmt)->loop_father;
kono
parents: 67
diff changeset
347 isl_pw_aff *lhs = create_pw_aff_from_tree (pbb, loop, gimple_cond_lhs (stmt));
kono
parents: 67
diff changeset
348 isl_pw_aff *rhs = create_pw_aff_from_tree (pbb, loop, gimple_cond_rhs (stmt));
kono
parents: 67
diff changeset
349
kono
parents: 67
diff changeset
350 isl_set *cond;
kono
parents: 67
diff changeset
351 switch (code)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
352 {
111
kono
parents: 67
diff changeset
353 case LT_EXPR:
kono
parents: 67
diff changeset
354 cond = isl_pw_aff_lt_set (lhs, rhs);
kono
parents: 67
diff changeset
355 break;
kono
parents: 67
diff changeset
356
kono
parents: 67
diff changeset
357 case GT_EXPR:
kono
parents: 67
diff changeset
358 cond = isl_pw_aff_gt_set (lhs, rhs);
kono
parents: 67
diff changeset
359 break;
kono
parents: 67
diff changeset
360
kono
parents: 67
diff changeset
361 case LE_EXPR:
kono
parents: 67
diff changeset
362 cond = isl_pw_aff_le_set (lhs, rhs);
kono
parents: 67
diff changeset
363 break;
kono
parents: 67
diff changeset
364
kono
parents: 67
diff changeset
365 case GE_EXPR:
kono
parents: 67
diff changeset
366 cond = isl_pw_aff_ge_set (lhs, rhs);
kono
parents: 67
diff changeset
367 break;
kono
parents: 67
diff changeset
368
kono
parents: 67
diff changeset
369 case EQ_EXPR:
kono
parents: 67
diff changeset
370 cond = isl_pw_aff_eq_set (lhs, rhs);
kono
parents: 67
diff changeset
371 break;
kono
parents: 67
diff changeset
372
kono
parents: 67
diff changeset
373 case NE_EXPR:
kono
parents: 67
diff changeset
374 cond = isl_pw_aff_ne_set (lhs, rhs);
kono
parents: 67
diff changeset
375 break;
kono
parents: 67
diff changeset
376
kono
parents: 67
diff changeset
377 default:
kono
parents: 67
diff changeset
378 gcc_unreachable ();
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
379 }
111
kono
parents: 67
diff changeset
380
kono
parents: 67
diff changeset
381 cond = isl_set_coalesce (cond);
kono
parents: 67
diff changeset
382 cond = isl_set_set_tuple_id (cond, isl_set_get_tuple_id (pbb->domain));
kono
parents: 67
diff changeset
383 pbb->domain = isl_set_coalesce (isl_set_intersect (pbb->domain, cond));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
384 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
385
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
386 /* Add conditions to the domain of PBB. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
387
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
388 static void
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
389 add_conditions_to_domain (poly_bb_p pbb)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
390 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
391 unsigned int i;
111
kono
parents: 67
diff changeset
392 gimple *stmt;
kono
parents: 67
diff changeset
393 gimple_poly_bb_p gbb = PBB_BLACK_BOX (pbb);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
394
111
kono
parents: 67
diff changeset
395 if (GBB_CONDITIONS (gbb).is_empty ())
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
396 return;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
397
111
kono
parents: 67
diff changeset
398 FOR_EACH_VEC_ELT (GBB_CONDITIONS (gbb), i, stmt)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
399 switch (gimple_code (stmt))
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
400 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
401 case GIMPLE_COND:
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
402 {
111
kono
parents: 67
diff changeset
403 /* Don't constrain on anything else than INTEGER_TYPE. */
kono
parents: 67
diff changeset
404 if (TREE_CODE (TREE_TYPE (gimple_cond_lhs (stmt))) != INTEGER_TYPE)
kono
parents: 67
diff changeset
405 break;
kono
parents: 67
diff changeset
406
kono
parents: 67
diff changeset
407 gcond *cond_stmt = as_a <gcond *> (stmt);
kono
parents: 67
diff changeset
408 enum tree_code code = gimple_cond_code (cond_stmt);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
409
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
410 /* The conditions for ELSE-branches are inverted. */
111
kono
parents: 67
diff changeset
411 if (!GBB_CONDITION_CASES (gbb)[i])
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
412 code = invert_tree_comparison (code, false);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
413
111
kono
parents: 67
diff changeset
414 add_condition_to_pbb (pbb, cond_stmt, code);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
415 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
416 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
417
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
418 default:
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
419 gcc_unreachable ();
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
420 break;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
421 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
422 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
423
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
424 /* Add constraints on the possible values of parameter P from the type
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
425 of P. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
426
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
427 static void
111
kono
parents: 67
diff changeset
428 add_param_constraints (scop_p scop, graphite_dim_t p, tree parameter)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
429 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
430 tree type = TREE_TYPE (parameter);
111
kono
parents: 67
diff changeset
431 wide_int min, max;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
432
111
kono
parents: 67
diff changeset
433 gcc_assert (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type));
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
434
111
kono
parents: 67
diff changeset
435 if (INTEGRAL_TYPE_P (type)
kono
parents: 67
diff changeset
436 && get_range_info (parameter, &min, &max) == VR_RANGE)
kono
parents: 67
diff changeset
437 ;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
438 else
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
439 {
111
kono
parents: 67
diff changeset
440 min = wi::min_value (TYPE_PRECISION (type), TYPE_SIGN (type));
kono
parents: 67
diff changeset
441 max = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
442 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
443
111
kono
parents: 67
diff changeset
444 isl_space *space = isl_set_get_space (scop->param_context);
kono
parents: 67
diff changeset
445 isl_constraint *c = isl_inequality_alloc (isl_local_space_from_space (space));
kono
parents: 67
diff changeset
446 isl_val *v = isl_val_int_from_wi (scop->isl_context,
kono
parents: 67
diff changeset
447 widest_int::from (min, TYPE_SIGN (type)));
kono
parents: 67
diff changeset
448 v = isl_val_neg (v);
kono
parents: 67
diff changeset
449 c = isl_constraint_set_constant_val (c, v);
kono
parents: 67
diff changeset
450 c = isl_constraint_set_coefficient_si (c, isl_dim_param, p, 1);
kono
parents: 67
diff changeset
451 scop->param_context = isl_set_coalesce
kono
parents: 67
diff changeset
452 (isl_set_add_constraint (scop->param_context, c));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
453
111
kono
parents: 67
diff changeset
454 space = isl_set_get_space (scop->param_context);
kono
parents: 67
diff changeset
455 c = isl_inequality_alloc (isl_local_space_from_space (space));
kono
parents: 67
diff changeset
456 v = isl_val_int_from_wi (scop->isl_context,
kono
parents: 67
diff changeset
457 widest_int::from (max, TYPE_SIGN (type)));
kono
parents: 67
diff changeset
458 c = isl_constraint_set_constant_val (c, v);
kono
parents: 67
diff changeset
459 c = isl_constraint_set_coefficient_si (c, isl_dim_param, p, -1);
kono
parents: 67
diff changeset
460 scop->param_context = isl_set_coalesce
kono
parents: 67
diff changeset
461 (isl_set_add_constraint (scop->param_context, c));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
462 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
463
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 /* Add a constrain to the ACCESSES polyhedron for the alias set of
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
465 data reference DR. ACCESSP_NB_DIMS is the dimension of the
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
466 ACCESSES polyhedron, DOM_NB_DIMS is the dimension of the iteration
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
467 domain. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
468
111
kono
parents: 67
diff changeset
469 static isl_map *
kono
parents: 67
diff changeset
470 pdr_add_alias_set (isl_map *acc, dr_info &dri)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
471 {
111
kono
parents: 67
diff changeset
472 isl_constraint *c = isl_equality_alloc
kono
parents: 67
diff changeset
473 (isl_local_space_from_space (isl_map_get_space (acc)));
kono
parents: 67
diff changeset
474 /* Positive numbers for all alias sets. */
kono
parents: 67
diff changeset
475 c = isl_constraint_set_constant_si (c, -dri.alias_set);
kono
parents: 67
diff changeset
476 c = isl_constraint_set_coefficient_si (c, isl_dim_out, 0, 1);
kono
parents: 67
diff changeset
477
kono
parents: 67
diff changeset
478 return isl_map_add_constraint (acc, c);
kono
parents: 67
diff changeset
479 }
kono
parents: 67
diff changeset
480
kono
parents: 67
diff changeset
481 /* Assign the affine expression INDEX to the output dimension POS of
kono
parents: 67
diff changeset
482 MAP and return the result. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
483
111
kono
parents: 67
diff changeset
484 static isl_map *
kono
parents: 67
diff changeset
485 set_index (isl_map *map, int pos, isl_pw_aff *index)
kono
parents: 67
diff changeset
486 {
kono
parents: 67
diff changeset
487 isl_map *index_map;
kono
parents: 67
diff changeset
488 int len = isl_map_dim (map, isl_dim_out);
kono
parents: 67
diff changeset
489 isl_id *id;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
490
111
kono
parents: 67
diff changeset
491 index_map = isl_map_from_pw_aff (index);
kono
parents: 67
diff changeset
492 index_map = isl_map_insert_dims (index_map, isl_dim_out, 0, pos);
kono
parents: 67
diff changeset
493 index_map = isl_map_add_dims (index_map, isl_dim_out, len - pos - 1);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
494
111
kono
parents: 67
diff changeset
495 id = isl_map_get_tuple_id (map, isl_dim_out);
kono
parents: 67
diff changeset
496 index_map = isl_map_set_tuple_id (index_map, isl_dim_out, id);
kono
parents: 67
diff changeset
497 id = isl_map_get_tuple_id (map, isl_dim_in);
kono
parents: 67
diff changeset
498 index_map = isl_map_set_tuple_id (index_map, isl_dim_in, id);
kono
parents: 67
diff changeset
499
kono
parents: 67
diff changeset
500 return isl_map_intersect (map, index_map);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
501 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
502
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
503 /* Add to ACCESSES polyhedron equalities defining the access functions
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
504 to the memory. ACCESSP_NB_DIMS is the dimension of the ACCESSES
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
505 polyhedron, DOM_NB_DIMS is the dimension of the iteration domain.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
506 PBB is the poly_bb_p that contains the data reference DR. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
507
111
kono
parents: 67
diff changeset
508 static isl_map *
kono
parents: 67
diff changeset
509 pdr_add_memory_accesses (isl_map *acc, dr_info &dri)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
510 {
111
kono
parents: 67
diff changeset
511 data_reference_p dr = dri.dr;
kono
parents: 67
diff changeset
512 poly_bb_p pbb = dri.pbb;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
513 int i, nb_subscripts = DR_NUM_DIMENSIONS (dr);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
514 scop_p scop = PBB_SCOP (pbb);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
515
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
516 for (i = 0; i < nb_subscripts; i++)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
517 {
111
kono
parents: 67
diff changeset
518 isl_pw_aff *aff;
kono
parents: 67
diff changeset
519 tree afn = DR_ACCESS_FN (dr, i);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
520
111
kono
parents: 67
diff changeset
521 aff = extract_affine (scop, afn,
kono
parents: 67
diff changeset
522 isl_space_domain (isl_map_get_space (acc)));
kono
parents: 67
diff changeset
523 acc = set_index (acc, nb_subscripts - i , aff);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
524 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
525
111
kono
parents: 67
diff changeset
526 return isl_map_coalesce (acc);
kono
parents: 67
diff changeset
527 }
kono
parents: 67
diff changeset
528
kono
parents: 67
diff changeset
529 /* Return true when the LOW and HIGH bounds of an array reference REF are valid
kono
parents: 67
diff changeset
530 to extract constraints on accessed elements of the array. Returning false is
kono
parents: 67
diff changeset
531 the conservative answer. */
kono
parents: 67
diff changeset
532
kono
parents: 67
diff changeset
533 static bool
kono
parents: 67
diff changeset
534 bounds_are_valid (tree ref, tree low, tree high)
kono
parents: 67
diff changeset
535 {
kono
parents: 67
diff changeset
536 if (!high)
kono
parents: 67
diff changeset
537 return false;
kono
parents: 67
diff changeset
538
kono
parents: 67
diff changeset
539 if (!tree_fits_shwi_p (low)
kono
parents: 67
diff changeset
540 || !tree_fits_shwi_p (high))
kono
parents: 67
diff changeset
541 return false;
kono
parents: 67
diff changeset
542
kono
parents: 67
diff changeset
543 /* 1-element arrays at end of structures may extend over
kono
parents: 67
diff changeset
544 their declared size. */
kono
parents: 67
diff changeset
545 if (array_at_struct_end_p (ref)
kono
parents: 67
diff changeset
546 && operand_equal_p (low, high, 0))
kono
parents: 67
diff changeset
547 return false;
kono
parents: 67
diff changeset
548
kono
parents: 67
diff changeset
549 /* Fortran has some arrays where high bound is -1 and low is 0. */
kono
parents: 67
diff changeset
550 if (integer_onep (fold_build2 (LT_EXPR, boolean_type_node, high, low)))
kono
parents: 67
diff changeset
551 return false;
kono
parents: 67
diff changeset
552
kono
parents: 67
diff changeset
553 return true;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
554 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
555
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
556 /* Add constrains representing the size of the accessed data to the
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
557 ACCESSES polyhedron. ACCESSP_NB_DIMS is the dimension of the
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
558 ACCESSES polyhedron, DOM_NB_DIMS is the dimension of the iteration
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
559 domain. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
560
111
kono
parents: 67
diff changeset
561 static isl_set *
kono
parents: 67
diff changeset
562 pdr_add_data_dimensions (isl_set *subscript_sizes, scop_p scop,
kono
parents: 67
diff changeset
563 data_reference_p dr)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
564 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 tree ref = DR_REF (dr);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
566
111
kono
parents: 67
diff changeset
567 int nb_subscripts = DR_NUM_DIMENSIONS (dr);
kono
parents: 67
diff changeset
568 for (int i = nb_subscripts - 1; i >= 0; i--, ref = TREE_OPERAND (ref, 0))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
569 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
570 if (TREE_CODE (ref) != ARRAY_REF)
111
kono
parents: 67
diff changeset
571 return subscript_sizes;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
572
111
kono
parents: 67
diff changeset
573 tree low = array_ref_low_bound (ref);
kono
parents: 67
diff changeset
574 tree high = array_ref_up_bound (ref);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
575
111
kono
parents: 67
diff changeset
576 if (!bounds_are_valid (ref, low, high))
kono
parents: 67
diff changeset
577 continue;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
578
111
kono
parents: 67
diff changeset
579 isl_space *space = isl_set_get_space (subscript_sizes);
kono
parents: 67
diff changeset
580 isl_pw_aff *lb = extract_affine_int (low, isl_space_copy (space));
kono
parents: 67
diff changeset
581 isl_pw_aff *ub = extract_affine_int (high, isl_space_copy (space));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
582
111
kono
parents: 67
diff changeset
583 /* high >= 0 */
kono
parents: 67
diff changeset
584 isl_set *valid = isl_pw_aff_nonneg_set (isl_pw_aff_copy (ub));
kono
parents: 67
diff changeset
585 valid = isl_set_project_out (valid, isl_dim_set, 0,
kono
parents: 67
diff changeset
586 isl_set_dim (valid, isl_dim_set));
kono
parents: 67
diff changeset
587 scop->param_context = isl_set_coalesce
kono
parents: 67
diff changeset
588 (isl_set_intersect (scop->param_context, valid));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
589
111
kono
parents: 67
diff changeset
590 isl_aff *aff
kono
parents: 67
diff changeset
591 = isl_aff_zero_on_domain (isl_local_space_from_space (space));
kono
parents: 67
diff changeset
592 aff = isl_aff_add_coefficient_si (aff, isl_dim_in, i + 1, 1);
kono
parents: 67
diff changeset
593 isl_set *univ
kono
parents: 67
diff changeset
594 = isl_set_universe (isl_space_domain (isl_aff_get_space (aff)));
kono
parents: 67
diff changeset
595 isl_pw_aff *index = isl_pw_aff_alloc (univ, aff);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
596
111
kono
parents: 67
diff changeset
597 isl_id *id = isl_set_get_tuple_id (subscript_sizes);
kono
parents: 67
diff changeset
598 lb = isl_pw_aff_set_tuple_id (lb, isl_dim_in, isl_id_copy (id));
kono
parents: 67
diff changeset
599 ub = isl_pw_aff_set_tuple_id (ub, isl_dim_in, id);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
600
111
kono
parents: 67
diff changeset
601 /* low <= sub_i <= high */
kono
parents: 67
diff changeset
602 isl_set *lbs = isl_pw_aff_ge_set (isl_pw_aff_copy (index), lb);
kono
parents: 67
diff changeset
603 isl_set *ubs = isl_pw_aff_le_set (index, ub);
kono
parents: 67
diff changeset
604 subscript_sizes = isl_set_intersect (subscript_sizes, lbs);
kono
parents: 67
diff changeset
605 subscript_sizes = isl_set_intersect (subscript_sizes, ubs);
kono
parents: 67
diff changeset
606 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
607
111
kono
parents: 67
diff changeset
608 return isl_set_coalesce (subscript_sizes);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
609 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
610
111
kono
parents: 67
diff changeset
611 /* Build data accesses for DRI. */
kono
parents: 67
diff changeset
612
kono
parents: 67
diff changeset
613 static void
kono
parents: 67
diff changeset
614 build_poly_dr (dr_info &dri)
kono
parents: 67
diff changeset
615 {
kono
parents: 67
diff changeset
616 isl_map *acc;
kono
parents: 67
diff changeset
617 isl_set *subscript_sizes;
kono
parents: 67
diff changeset
618 poly_bb_p pbb = dri.pbb;
kono
parents: 67
diff changeset
619 data_reference_p dr = dri.dr;
kono
parents: 67
diff changeset
620 scop_p scop = PBB_SCOP (pbb);
kono
parents: 67
diff changeset
621 isl_id *id = isl_id_for_dr (scop);
kono
parents: 67
diff changeset
622
kono
parents: 67
diff changeset
623 {
kono
parents: 67
diff changeset
624 isl_space *dc = isl_set_get_space (pbb->domain);
kono
parents: 67
diff changeset
625 int nb_out = 1 + DR_NUM_DIMENSIONS (dr);
kono
parents: 67
diff changeset
626 isl_space *space = isl_space_add_dims (isl_space_from_domain (dc),
kono
parents: 67
diff changeset
627 isl_dim_out, nb_out);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
628
111
kono
parents: 67
diff changeset
629 acc = isl_map_universe (space);
kono
parents: 67
diff changeset
630 acc = isl_map_set_tuple_id (acc, isl_dim_out, isl_id_copy (id));
kono
parents: 67
diff changeset
631 }
kono
parents: 67
diff changeset
632
kono
parents: 67
diff changeset
633 acc = pdr_add_alias_set (acc, dri);
kono
parents: 67
diff changeset
634 acc = pdr_add_memory_accesses (acc, dri);
kono
parents: 67
diff changeset
635
kono
parents: 67
diff changeset
636 {
kono
parents: 67
diff changeset
637 int nb = 1 + DR_NUM_DIMENSIONS (dr);
kono
parents: 67
diff changeset
638 isl_space *space = isl_space_set_alloc (scop->isl_context, 0, nb);
kono
parents: 67
diff changeset
639
kono
parents: 67
diff changeset
640 space = isl_space_set_tuple_id (space, isl_dim_set, id);
kono
parents: 67
diff changeset
641 subscript_sizes = isl_set_nat_universe (space);
kono
parents: 67
diff changeset
642 subscript_sizes = isl_set_fix_si (subscript_sizes, isl_dim_set, 0,
kono
parents: 67
diff changeset
643 dri.alias_set);
kono
parents: 67
diff changeset
644 subscript_sizes = pdr_add_data_dimensions (subscript_sizes, scop, dr);
kono
parents: 67
diff changeset
645 }
kono
parents: 67
diff changeset
646
kono
parents: 67
diff changeset
647 new_poly_dr (pbb, DR_STMT (dr), DR_IS_READ (dr) ? PDR_READ : PDR_WRITE,
kono
parents: 67
diff changeset
648 acc, subscript_sizes);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
649 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
650
111
kono
parents: 67
diff changeset
651 static void
kono
parents: 67
diff changeset
652 build_poly_sr_1 (poly_bb_p pbb, gimple *stmt, tree var, enum poly_dr_type kind,
kono
parents: 67
diff changeset
653 isl_map *acc, isl_set *subscript_sizes)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
654 {
111
kono
parents: 67
diff changeset
655 scop_p scop = PBB_SCOP (pbb);
kono
parents: 67
diff changeset
656 /* Each scalar variables has a unique alias set number starting from
kono
parents: 67
diff changeset
657 the maximum alias set assigned to a dr. */
kono
parents: 67
diff changeset
658 int alias_set = scop->max_alias_set + SSA_NAME_VERSION (var);
kono
parents: 67
diff changeset
659 subscript_sizes = isl_set_fix_si (subscript_sizes, isl_dim_set, 0,
kono
parents: 67
diff changeset
660 alias_set);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
661
111
kono
parents: 67
diff changeset
662 /* Add a constrain to the ACCESSES polyhedron for the alias set of
kono
parents: 67
diff changeset
663 data reference DR. */
kono
parents: 67
diff changeset
664 isl_constraint *c
kono
parents: 67
diff changeset
665 = isl_equality_alloc (isl_local_space_from_space (isl_map_get_space (acc)));
kono
parents: 67
diff changeset
666 c = isl_constraint_set_constant_si (c, -alias_set);
kono
parents: 67
diff changeset
667 c = isl_constraint_set_coefficient_si (c, isl_dim_out, 0, 1);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
668
111
kono
parents: 67
diff changeset
669 new_poly_dr (pbb, stmt, kind, isl_map_add_constraint (acc, c),
kono
parents: 67
diff changeset
670 subscript_sizes);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
671 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
672
111
kono
parents: 67
diff changeset
673 /* Record all cross basic block scalar variables in PBB. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
674
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
675 static void
111
kono
parents: 67
diff changeset
676 build_poly_sr (poly_bb_p pbb)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
677 {
111
kono
parents: 67
diff changeset
678 scop_p scop = PBB_SCOP (pbb);
kono
parents: 67
diff changeset
679 gimple_poly_bb_p gbb = PBB_BLACK_BOX (pbb);
kono
parents: 67
diff changeset
680 vec<scalar_use> &reads = gbb->read_scalar_refs;
kono
parents: 67
diff changeset
681 vec<tree> &writes = gbb->write_scalar_refs;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
682
111
kono
parents: 67
diff changeset
683 isl_space *dc = isl_set_get_space (pbb->domain);
kono
parents: 67
diff changeset
684 int nb_out = 1;
kono
parents: 67
diff changeset
685 isl_space *space = isl_space_add_dims (isl_space_from_domain (dc),
kono
parents: 67
diff changeset
686 isl_dim_out, nb_out);
kono
parents: 67
diff changeset
687 isl_id *id = isl_id_for_dr (scop);
kono
parents: 67
diff changeset
688 space = isl_space_set_tuple_id (space, isl_dim_set, isl_id_copy (id));
kono
parents: 67
diff changeset
689 isl_map *acc = isl_map_universe (isl_space_copy (space));
kono
parents: 67
diff changeset
690 acc = isl_map_set_tuple_id (acc, isl_dim_out, id);
kono
parents: 67
diff changeset
691 isl_set *subscript_sizes = isl_set_nat_universe (space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
692
111
kono
parents: 67
diff changeset
693 int i;
kono
parents: 67
diff changeset
694 tree var;
kono
parents: 67
diff changeset
695 FOR_EACH_VEC_ELT (writes, i, var)
kono
parents: 67
diff changeset
696 build_poly_sr_1 (pbb, SSA_NAME_DEF_STMT (var), var, PDR_WRITE,
kono
parents: 67
diff changeset
697 isl_map_copy (acc), isl_set_copy (subscript_sizes));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
698
111
kono
parents: 67
diff changeset
699 scalar_use *use;
kono
parents: 67
diff changeset
700 FOR_EACH_VEC_ELT (reads, i, use)
kono
parents: 67
diff changeset
701 build_poly_sr_1 (pbb, use->first, use->second, PDR_READ, isl_map_copy (acc),
kono
parents: 67
diff changeset
702 isl_set_copy (subscript_sizes));
kono
parents: 67
diff changeset
703
kono
parents: 67
diff changeset
704 isl_map_free (acc);
kono
parents: 67
diff changeset
705 isl_set_free (subscript_sizes);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
706 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
707
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
708 /* Build data references in SCOP. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
709
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
710 static void
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
711 build_scop_drs (scop_p scop)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
712 {
111
kono
parents: 67
diff changeset
713 int i;
kono
parents: 67
diff changeset
714 dr_info *dri;
kono
parents: 67
diff changeset
715 FOR_EACH_VEC_ELT (scop->drs, i, dri)
kono
parents: 67
diff changeset
716 build_poly_dr (*dri);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
717
111
kono
parents: 67
diff changeset
718 poly_bb_p pbb;
kono
parents: 67
diff changeset
719 FOR_EACH_VEC_ELT (scop->pbbs, i, pbb)
kono
parents: 67
diff changeset
720 build_poly_sr (pbb);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
721 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
722
111
kono
parents: 67
diff changeset
723 /* Add to the iteration DOMAIN one extra dimension for LOOP->num. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
724
111
kono
parents: 67
diff changeset
725 static isl_set *
kono
parents: 67
diff changeset
726 add_iter_domain_dimension (__isl_take isl_set *domain, loop_p loop, scop_p scop)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
727 {
111
kono
parents: 67
diff changeset
728 int loop_index = isl_set_dim (domain, isl_dim_set);
kono
parents: 67
diff changeset
729 domain = isl_set_add_dims (domain, isl_dim_set, 1);
kono
parents: 67
diff changeset
730 char name[50];
kono
parents: 67
diff changeset
731 snprintf (name, sizeof(name), "i%d", loop->num);
kono
parents: 67
diff changeset
732 isl_id *label = isl_id_alloc (scop->isl_context, name, NULL);
kono
parents: 67
diff changeset
733 return isl_set_set_dim_id (domain, isl_dim_set, loop_index, label);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
734 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
735
111
kono
parents: 67
diff changeset
736 /* Add constraints to DOMAIN for each loop from LOOP up to CONTEXT. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
737
111
kono
parents: 67
diff changeset
738 static isl_set *
kono
parents: 67
diff changeset
739 add_loop_constraints (scop_p scop, __isl_take isl_set *domain, loop_p loop,
kono
parents: 67
diff changeset
740 loop_p context)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
741 {
111
kono
parents: 67
diff changeset
742 if (loop == context)
kono
parents: 67
diff changeset
743 return domain;
kono
parents: 67
diff changeset
744 const sese_l &region = scop->scop_info->region;
kono
parents: 67
diff changeset
745 if (!loop_in_sese_p (loop, region))
kono
parents: 67
diff changeset
746 return domain;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
747
111
kono
parents: 67
diff changeset
748 /* Recursion all the way up to the context loop. */
kono
parents: 67
diff changeset
749 domain = add_loop_constraints (scop, domain, loop_outer (loop), context);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
750
111
kono
parents: 67
diff changeset
751 /* Then, build constraints over the loop in post-order: outer to inner. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
752
111
kono
parents: 67
diff changeset
753 int loop_index = isl_set_dim (domain, isl_dim_set);
kono
parents: 67
diff changeset
754 if (dump_file)
kono
parents: 67
diff changeset
755 fprintf (dump_file, "[sese-to-poly] adding one extra dimension to the "
kono
parents: 67
diff changeset
756 "domain for loop_%d.\n", loop->num);
kono
parents: 67
diff changeset
757 domain = add_iter_domain_dimension (domain, loop, scop);
kono
parents: 67
diff changeset
758 isl_space *space = isl_set_get_space (domain);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
759
111
kono
parents: 67
diff changeset
760 /* 0 <= loop_i */
kono
parents: 67
diff changeset
761 isl_local_space *ls = isl_local_space_from_space (isl_space_copy (space));
kono
parents: 67
diff changeset
762 isl_constraint *c = isl_inequality_alloc (ls);
kono
parents: 67
diff changeset
763 c = isl_constraint_set_coefficient_si (c, isl_dim_set, loop_index, 1);
kono
parents: 67
diff changeset
764 if (dump_file)
kono
parents: 67
diff changeset
765 {
kono
parents: 67
diff changeset
766 fprintf (dump_file, "[sese-to-poly] adding constraint to the domain: ");
kono
parents: 67
diff changeset
767 print_isl_constraint (dump_file, c);
kono
parents: 67
diff changeset
768 }
kono
parents: 67
diff changeset
769 domain = isl_set_add_constraint (domain, c);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
770
111
kono
parents: 67
diff changeset
771 tree nb_iters = number_of_latch_executions (loop);
kono
parents: 67
diff changeset
772 if (TREE_CODE (nb_iters) == INTEGER_CST)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
773 {
111
kono
parents: 67
diff changeset
774 /* loop_i <= cst_nb_iters */
kono
parents: 67
diff changeset
775 isl_local_space *ls = isl_local_space_from_space (space);
kono
parents: 67
diff changeset
776 isl_constraint *c = isl_inequality_alloc (ls);
kono
parents: 67
diff changeset
777 c = isl_constraint_set_coefficient_si (c, isl_dim_set, loop_index, -1);
kono
parents: 67
diff changeset
778 isl_val *v
kono
parents: 67
diff changeset
779 = isl_val_int_from_wi (scop->isl_context, wi::to_widest (nb_iters));
kono
parents: 67
diff changeset
780 c = isl_constraint_set_constant_val (c, v);
kono
parents: 67
diff changeset
781 return isl_set_add_constraint (domain, c);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
782 }
111
kono
parents: 67
diff changeset
783 /* loop_i <= expr_nb_iters */
kono
parents: 67
diff changeset
784 gcc_assert (!chrec_contains_undetermined (nb_iters));
kono
parents: 67
diff changeset
785 nb_iters = scalar_evolution_in_region (region, loop, nb_iters);
kono
parents: 67
diff changeset
786 gcc_assert (!chrec_contains_undetermined (nb_iters));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
787
111
kono
parents: 67
diff changeset
788 isl_pw_aff *aff_nb_iters = extract_affine (scop, nb_iters,
kono
parents: 67
diff changeset
789 isl_space_copy (space));
kono
parents: 67
diff changeset
790 isl_set *valid = isl_pw_aff_nonneg_set (isl_pw_aff_copy (aff_nb_iters));
kono
parents: 67
diff changeset
791 valid = isl_set_project_out (valid, isl_dim_set, 0,
kono
parents: 67
diff changeset
792 isl_set_dim (valid, isl_dim_set));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
793
111
kono
parents: 67
diff changeset
794 if (valid)
kono
parents: 67
diff changeset
795 scop->param_context = isl_set_intersect (scop->param_context, valid);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
796
111
kono
parents: 67
diff changeset
797 ls = isl_local_space_from_space (isl_space_copy (space));
kono
parents: 67
diff changeset
798 isl_aff *loop_i = isl_aff_set_coefficient_si (isl_aff_zero_on_domain (ls),
kono
parents: 67
diff changeset
799 isl_dim_in, loop_index, 1);
kono
parents: 67
diff changeset
800 isl_set *le = isl_pw_aff_le_set (isl_pw_aff_from_aff (loop_i),
kono
parents: 67
diff changeset
801 isl_pw_aff_copy (aff_nb_iters));
kono
parents: 67
diff changeset
802 if (dump_file)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
803 {
111
kono
parents: 67
diff changeset
804 fprintf (dump_file, "[sese-to-poly] adding constraint to the domain: ");
kono
parents: 67
diff changeset
805 print_isl_set (dump_file, le);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
806 }
111
kono
parents: 67
diff changeset
807 domain = isl_set_intersect (domain, le);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
808
111
kono
parents: 67
diff changeset
809 widest_int nit;
kono
parents: 67
diff changeset
810 if (!max_stmt_executions (loop, &nit))
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
811 {
111
kono
parents: 67
diff changeset
812 isl_pw_aff_free (aff_nb_iters);
kono
parents: 67
diff changeset
813 isl_space_free (space);
kono
parents: 67
diff changeset
814 return domain;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
815 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
816
111
kono
parents: 67
diff changeset
817 /* NIT is an upper bound to NB_ITERS: "NIT >= NB_ITERS", although we
kono
parents: 67
diff changeset
818 do not know whether the loop executes at least once. */
kono
parents: 67
diff changeset
819 --nit;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
820
111
kono
parents: 67
diff changeset
821 isl_pw_aff *approx = extract_affine_wi (nit, isl_space_copy (space));
kono
parents: 67
diff changeset
822 isl_set *x = isl_pw_aff_ge_set (approx, aff_nb_iters);
kono
parents: 67
diff changeset
823 x = isl_set_project_out (x, isl_dim_set, 0,
kono
parents: 67
diff changeset
824 isl_set_dim (x, isl_dim_set));
kono
parents: 67
diff changeset
825 scop->param_context = isl_set_intersect (scop->param_context, x);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
826
111
kono
parents: 67
diff changeset
827 ls = isl_local_space_from_space (space);
kono
parents: 67
diff changeset
828 c = isl_inequality_alloc (ls);
kono
parents: 67
diff changeset
829 c = isl_constraint_set_coefficient_si (c, isl_dim_set, loop_index, -1);
kono
parents: 67
diff changeset
830 isl_val *v = isl_val_int_from_wi (scop->isl_context, nit);
kono
parents: 67
diff changeset
831 c = isl_constraint_set_constant_val (c, v);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
832
111
kono
parents: 67
diff changeset
833 if (dump_file)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
834 {
111
kono
parents: 67
diff changeset
835 fprintf (dump_file, "[sese-to-poly] adding constraint to the domain: ");
kono
parents: 67
diff changeset
836 print_isl_constraint (dump_file, c);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
837 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
838
111
kono
parents: 67
diff changeset
839 return isl_set_add_constraint (domain, c);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
840 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
841
111
kono
parents: 67
diff changeset
842 /* Builds the original iteration domains for each pbb in the SCOP. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
843
111
kono
parents: 67
diff changeset
844 static int
kono
parents: 67
diff changeset
845 build_iteration_domains (scop_p scop, __isl_keep isl_set *context,
kono
parents: 67
diff changeset
846 int index, loop_p context_loop)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
847 {
111
kono
parents: 67
diff changeset
848 loop_p current = pbb_loop (scop->pbbs[index]);
kono
parents: 67
diff changeset
849 isl_set *domain = isl_set_copy (context);
kono
parents: 67
diff changeset
850 domain = add_loop_constraints (scop, domain, current, context_loop);
kono
parents: 67
diff changeset
851 const sese_l &region = scop->scop_info->region;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
852
111
kono
parents: 67
diff changeset
853 int i;
kono
parents: 67
diff changeset
854 poly_bb_p pbb;
kono
parents: 67
diff changeset
855 FOR_EACH_VEC_ELT_FROM (scop->pbbs, i, pbb, index)
kono
parents: 67
diff changeset
856 {
kono
parents: 67
diff changeset
857 loop_p loop = pbb_loop (pbb);
kono
parents: 67
diff changeset
858 if (current == loop)
kono
parents: 67
diff changeset
859 {
kono
parents: 67
diff changeset
860 pbb->iterators = isl_set_copy (domain);
kono
parents: 67
diff changeset
861 pbb->domain = isl_set_copy (domain);
kono
parents: 67
diff changeset
862 pbb->domain = isl_set_set_tuple_id (pbb->domain,
kono
parents: 67
diff changeset
863 isl_id_for_pbb (scop, pbb));
kono
parents: 67
diff changeset
864 add_conditions_to_domain (pbb);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
865
111
kono
parents: 67
diff changeset
866 if (dump_file)
kono
parents: 67
diff changeset
867 {
kono
parents: 67
diff changeset
868 fprintf (dump_file, "[sese-to-poly] set pbb_%d->domain: ",
kono
parents: 67
diff changeset
869 pbb_index (pbb));
kono
parents: 67
diff changeset
870 print_isl_set (dump_file, domain);
kono
parents: 67
diff changeset
871 }
kono
parents: 67
diff changeset
872 continue;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
873 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
874
111
kono
parents: 67
diff changeset
875 while (loop_in_sese_p (loop, region)
kono
parents: 67
diff changeset
876 && current != loop)
kono
parents: 67
diff changeset
877 loop = loop_outer (loop);
kono
parents: 67
diff changeset
878
kono
parents: 67
diff changeset
879 if (current != loop)
kono
parents: 67
diff changeset
880 {
kono
parents: 67
diff changeset
881 /* A statement in a different loop nest than CURRENT loop. */
kono
parents: 67
diff changeset
882 isl_set_free (domain);
kono
parents: 67
diff changeset
883 return i;
kono
parents: 67
diff changeset
884 }
kono
parents: 67
diff changeset
885
kono
parents: 67
diff changeset
886 /* A statement nested in the CURRENT loop. */
kono
parents: 67
diff changeset
887 i = build_iteration_domains (scop, domain, i, current);
kono
parents: 67
diff changeset
888 i--;
kono
parents: 67
diff changeset
889 }
kono
parents: 67
diff changeset
890
kono
parents: 67
diff changeset
891 isl_set_free (domain);
kono
parents: 67
diff changeset
892 return i;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
893 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
894
111
kono
parents: 67
diff changeset
895 /* Assign dimension for each parameter in SCOP and add constraints for the
kono
parents: 67
diff changeset
896 parameters. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
897
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
898 static void
111
kono
parents: 67
diff changeset
899 build_scop_context (scop_p scop)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
900 {
111
kono
parents: 67
diff changeset
901 sese_info_p region = scop->scop_info;
kono
parents: 67
diff changeset
902 unsigned nbp = sese_nb_params (region);
kono
parents: 67
diff changeset
903 isl_space *space = isl_space_set_alloc (scop->isl_context, nbp, 0);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
904
111
kono
parents: 67
diff changeset
905 unsigned i;
kono
parents: 67
diff changeset
906 tree e;
kono
parents: 67
diff changeset
907 FOR_EACH_VEC_ELT (region->params, i, e)
kono
parents: 67
diff changeset
908 space = isl_space_set_dim_id (space, isl_dim_param, i,
kono
parents: 67
diff changeset
909 isl_id_for_ssa_name (scop, e));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
910
111
kono
parents: 67
diff changeset
911 scop->param_context = isl_set_universe (space);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
912
111
kono
parents: 67
diff changeset
913 FOR_EACH_VEC_ELT (region->params, i, e)
kono
parents: 67
diff changeset
914 add_param_constraints (scop, i, e);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
915 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
916
111
kono
parents: 67
diff changeset
917 /* Return true when loop A is nested in loop B. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
918
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
919 static bool
111
kono
parents: 67
diff changeset
920 nested_in (loop_p a, loop_p b)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
921 {
111
kono
parents: 67
diff changeset
922 return b == find_common_loop (a, b);
kono
parents: 67
diff changeset
923 }
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
924
111
kono
parents: 67
diff changeset
925 /* Return the loop at a specific SCOP->pbbs[*INDEX]. */
kono
parents: 67
diff changeset
926 static loop_p
kono
parents: 67
diff changeset
927 loop_at (scop_p scop, int *index)
kono
parents: 67
diff changeset
928 {
kono
parents: 67
diff changeset
929 return pbb_loop (scop->pbbs[*index]);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
930 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
931
111
kono
parents: 67
diff changeset
932 /* Return the index of any pbb belonging to loop or a subloop of A. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
933
111
kono
parents: 67
diff changeset
934 static int
kono
parents: 67
diff changeset
935 index_outermost_in_loop (loop_p a, scop_p scop)
kono
parents: 67
diff changeset
936 {
kono
parents: 67
diff changeset
937 int i, outermost = -1;
kono
parents: 67
diff changeset
938 int last_depth = -1;
kono
parents: 67
diff changeset
939 poly_bb_p pbb;
kono
parents: 67
diff changeset
940 FOR_EACH_VEC_ELT (scop->pbbs, i, pbb)
kono
parents: 67
diff changeset
941 if (nested_in (pbb_loop (pbb), a)
kono
parents: 67
diff changeset
942 && (last_depth == -1
kono
parents: 67
diff changeset
943 || last_depth > (int) loop_depth (pbb_loop (pbb))))
kono
parents: 67
diff changeset
944 {
kono
parents: 67
diff changeset
945 outermost = i;
kono
parents: 67
diff changeset
946 last_depth = loop_depth (pbb_loop (pbb));
kono
parents: 67
diff changeset
947 }
kono
parents: 67
diff changeset
948 return outermost;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
949 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
950
111
kono
parents: 67
diff changeset
951 /* Return the index of any pbb belonging to loop or a subloop of A. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
952
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
953 static int
111
kono
parents: 67
diff changeset
954 index_pbb_in_loop (loop_p a, scop_p scop)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
955 {
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
956 int i;
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
957 poly_bb_p pbb;
111
kono
parents: 67
diff changeset
958 FOR_EACH_VEC_ELT (scop->pbbs, i, pbb)
kono
parents: 67
diff changeset
959 if (pbb_loop (pbb) == a)
kono
parents: 67
diff changeset
960 return i;
kono
parents: 67
diff changeset
961 return -1;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
962 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
963
111
kono
parents: 67
diff changeset
964 static poly_bb_p
kono
parents: 67
diff changeset
965 outermost_pbb_in (loop_p loop, scop_p scop)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
966 {
111
kono
parents: 67
diff changeset
967 int x = index_pbb_in_loop (loop, scop);
kono
parents: 67
diff changeset
968 if (x == -1)
kono
parents: 67
diff changeset
969 x = index_outermost_in_loop (loop, scop);
kono
parents: 67
diff changeset
970 return scop->pbbs[x];
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
971 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
972
111
kono
parents: 67
diff changeset
973 static isl_schedule *
kono
parents: 67
diff changeset
974 add_in_sequence (__isl_take isl_schedule *a, __isl_take isl_schedule *b)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
975 {
111
kono
parents: 67
diff changeset
976 gcc_assert (a || b);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
977
111
kono
parents: 67
diff changeset
978 if (!a)
kono
parents: 67
diff changeset
979 return b;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
980
111
kono
parents: 67
diff changeset
981 if (!b)
kono
parents: 67
diff changeset
982 return a;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
983
111
kono
parents: 67
diff changeset
984 return isl_schedule_sequence (a, b);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
985 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
986
111
kono
parents: 67
diff changeset
987 struct map_to_dimension_data {
kono
parents: 67
diff changeset
988 int n;
kono
parents: 67
diff changeset
989 isl_union_pw_multi_aff *res;
kono
parents: 67
diff changeset
990 };
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
991
111
kono
parents: 67
diff changeset
992 /* Create a function that maps the elements of SET to its N-th dimension and add
kono
parents: 67
diff changeset
993 it to USER->res. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
994
111
kono
parents: 67
diff changeset
995 static isl_stat
kono
parents: 67
diff changeset
996 add_outer_projection (__isl_take isl_set *set, void *user)
kono
parents: 67
diff changeset
997 {
kono
parents: 67
diff changeset
998 struct map_to_dimension_data *data = (struct map_to_dimension_data *) user;
kono
parents: 67
diff changeset
999 int dim = isl_set_dim (set, isl_dim_set);
kono
parents: 67
diff changeset
1000 isl_space *space = isl_set_get_space (set);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1001
111
kono
parents: 67
diff changeset
1002 gcc_assert (dim >= data->n);
kono
parents: 67
diff changeset
1003 isl_pw_multi_aff *pma
kono
parents: 67
diff changeset
1004 = isl_pw_multi_aff_project_out_map (space, isl_dim_set, data->n,
kono
parents: 67
diff changeset
1005 dim - data->n);
kono
parents: 67
diff changeset
1006 data->res = isl_union_pw_multi_aff_add_pw_multi_aff (data->res, pma);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1007
111
kono
parents: 67
diff changeset
1008 isl_set_free (set);
kono
parents: 67
diff changeset
1009 return isl_stat_ok;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1010 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1011
111
kono
parents: 67
diff changeset
1012 /* Return SET in which all inner dimensions above N are removed. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1013
111
kono
parents: 67
diff changeset
1014 static isl_multi_union_pw_aff *
kono
parents: 67
diff changeset
1015 outer_projection_mupa (__isl_take isl_union_set *set, int n)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1016 {
111
kono
parents: 67
diff changeset
1017 gcc_assert (n >= 0);
kono
parents: 67
diff changeset
1018 gcc_assert (set);
kono
parents: 67
diff changeset
1019 gcc_assert (!isl_union_set_is_empty (set));
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1020
111
kono
parents: 67
diff changeset
1021 isl_space *space = isl_union_set_get_space (set);
kono
parents: 67
diff changeset
1022 isl_union_pw_multi_aff *pwaff = isl_union_pw_multi_aff_empty (space);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1023
111
kono
parents: 67
diff changeset
1024 struct map_to_dimension_data data = {n, pwaff};
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1025
111
kono
parents: 67
diff changeset
1026 if (isl_union_set_foreach_set (set, &add_outer_projection, &data) < 0)
kono
parents: 67
diff changeset
1027 data.res = isl_union_pw_multi_aff_free (data.res);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1028
111
kono
parents: 67
diff changeset
1029 isl_union_set_free (set);
kono
parents: 67
diff changeset
1030 return isl_multi_union_pw_aff_from_union_pw_multi_aff (data.res);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1031 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1032
111
kono
parents: 67
diff changeset
1033 /* Embed SCHEDULE in the constraints of the LOOP domain. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1034
111
kono
parents: 67
diff changeset
1035 static isl_schedule *
kono
parents: 67
diff changeset
1036 add_loop_schedule (__isl_take isl_schedule *schedule, loop_p loop,
kono
parents: 67
diff changeset
1037 scop_p scop)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1038 {
111
kono
parents: 67
diff changeset
1039 poly_bb_p pbb = outermost_pbb_in (loop, scop);
kono
parents: 67
diff changeset
1040 isl_set *iterators = pbb->iterators;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1041
111
kono
parents: 67
diff changeset
1042 int empty = isl_set_is_empty (iterators);
kono
parents: 67
diff changeset
1043 if (empty < 0 || empty)
kono
parents: 67
diff changeset
1044 return empty < 0 ? isl_schedule_free (schedule) : schedule;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1045
111
kono
parents: 67
diff changeset
1046 isl_union_set *domain = isl_schedule_get_domain (schedule);
kono
parents: 67
diff changeset
1047 /* We cannot apply an empty domain to pbbs in this loop so return early. */
kono
parents: 67
diff changeset
1048 if (isl_union_set_is_empty (domain))
kono
parents: 67
diff changeset
1049 {
kono
parents: 67
diff changeset
1050 isl_union_set_free (domain);
kono
parents: 67
diff changeset
1051 return schedule;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1052 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1053
111
kono
parents: 67
diff changeset
1054 isl_space *space = isl_set_get_space (iterators);
kono
parents: 67
diff changeset
1055 int loop_index = isl_space_dim (space, isl_dim_set) - 1;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1056
111
kono
parents: 67
diff changeset
1057 loop_p ploop = pbb_loop (pbb);
kono
parents: 67
diff changeset
1058 while (loop != ploop)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1059 {
111
kono
parents: 67
diff changeset
1060 --loop_index;
kono
parents: 67
diff changeset
1061 ploop = loop_outer (ploop);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1062 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1063
111
kono
parents: 67
diff changeset
1064 isl_local_space *ls = isl_local_space_from_space (space);
kono
parents: 67
diff changeset
1065 isl_aff *aff = isl_aff_var_on_domain (ls, isl_dim_set, loop_index);
kono
parents: 67
diff changeset
1066 isl_multi_aff *prefix = isl_multi_aff_from_aff (aff);
kono
parents: 67
diff changeset
1067 char name[50];
kono
parents: 67
diff changeset
1068 snprintf (name, sizeof(name), "L_%d", loop->num);
kono
parents: 67
diff changeset
1069 isl_id *label = isl_id_alloc (isl_schedule_get_ctx (schedule),
kono
parents: 67
diff changeset
1070 name, NULL);
kono
parents: 67
diff changeset
1071 prefix = isl_multi_aff_set_tuple_id (prefix, isl_dim_out, label);
kono
parents: 67
diff changeset
1072
kono
parents: 67
diff changeset
1073 int n = isl_multi_aff_dim (prefix, isl_dim_in);
kono
parents: 67
diff changeset
1074 isl_multi_union_pw_aff *mupa = outer_projection_mupa (domain, n);
kono
parents: 67
diff changeset
1075 mupa = isl_multi_union_pw_aff_apply_multi_aff (mupa, prefix);
kono
parents: 67
diff changeset
1076 return isl_schedule_insert_partial_schedule (schedule, mupa);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1077 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1078
111
kono
parents: 67
diff changeset
1079 /* Build schedule for the pbb at INDEX. */
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
1080
111
kono
parents: 67
diff changeset
1081 static isl_schedule *
kono
parents: 67
diff changeset
1082 build_schedule_pbb (scop_p scop, int *index)
kono
parents: 67
diff changeset
1083 {
kono
parents: 67
diff changeset
1084 poly_bb_p pbb = scop->pbbs[*index];
kono
parents: 67
diff changeset
1085 ++*index;
kono
parents: 67
diff changeset
1086 isl_set *domain = isl_set_copy (pbb->domain);
kono
parents: 67
diff changeset
1087 isl_union_set *ud = isl_union_set_from_set (domain);
kono
parents: 67
diff changeset
1088 return isl_schedule_from_domain (ud);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1089 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1090
111
kono
parents: 67
diff changeset
1091 static isl_schedule *build_schedule_loop_nest (scop_p, int *, loop_p);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1092
111
kono
parents: 67
diff changeset
1093 /* Build the schedule of the loop containing the SCOP pbb at INDEX. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1094
111
kono
parents: 67
diff changeset
1095 static isl_schedule *
kono
parents: 67
diff changeset
1096 build_schedule_loop (scop_p scop, int *index)
kono
parents: 67
diff changeset
1097 {
kono
parents: 67
diff changeset
1098 int max = scop->pbbs.length ();
kono
parents: 67
diff changeset
1099 gcc_assert (*index < max);
kono
parents: 67
diff changeset
1100 loop_p loop = loop_at (scop, index);
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
1101
111
kono
parents: 67
diff changeset
1102 isl_schedule *s = NULL;
kono
parents: 67
diff changeset
1103 while (nested_in (loop_at (scop, index), loop))
kono
parents: 67
diff changeset
1104 {
kono
parents: 67
diff changeset
1105 if (loop == loop_at (scop, index))
kono
parents: 67
diff changeset
1106 s = add_in_sequence (s, build_schedule_pbb (scop, index));
kono
parents: 67
diff changeset
1107 else
kono
parents: 67
diff changeset
1108 s = add_in_sequence (s, build_schedule_loop_nest (scop, index, loop));
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
1109
111
kono
parents: 67
diff changeset
1110 if (*index == max)
kono
parents: 67
diff changeset
1111 break;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
1112 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
1113
111
kono
parents: 67
diff changeset
1114 return add_loop_schedule (s, loop, scop);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1115 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1116
111
kono
parents: 67
diff changeset
1117 /* S is the schedule of the loop LOOP. Embed the schedule S in all outer loops.
kono
parents: 67
diff changeset
1118 When CONTEXT_LOOP is null, embed the schedule in all loops contained in the
kono
parents: 67
diff changeset
1119 SCOP surrounding LOOP. When CONTEXT_LOOP is non null, only embed S in the
kono
parents: 67
diff changeset
1120 maximal loop nest contained within CONTEXT_LOOP. */
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1121
111
kono
parents: 67
diff changeset
1122 static isl_schedule *
kono
parents: 67
diff changeset
1123 embed_in_surrounding_loops (__isl_take isl_schedule *s, scop_p scop,
kono
parents: 67
diff changeset
1124 loop_p loop, int *index, loop_p context_loop)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1125 {
111
kono
parents: 67
diff changeset
1126 loop_p outer = loop_outer (loop);
kono
parents: 67
diff changeset
1127 sese_l region = scop->scop_info->region;
kono
parents: 67
diff changeset
1128 if (context_loop == outer
kono
parents: 67
diff changeset
1129 || !loop_in_sese_p (outer, region))
kono
parents: 67
diff changeset
1130 return s;
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1131
111
kono
parents: 67
diff changeset
1132 int max = scop->pbbs.length ();
kono
parents: 67
diff changeset
1133 if (*index == max
kono
parents: 67
diff changeset
1134 || (context_loop && !nested_in (loop_at (scop, index), context_loop))
kono
parents: 67
diff changeset
1135 || (!context_loop
kono
parents: 67
diff changeset
1136 && !loop_in_sese_p (find_common_loop (outer, loop_at (scop, index)),
kono
parents: 67
diff changeset
1137 region)))
kono
parents: 67
diff changeset
1138 return embed_in_surrounding_loops (add_loop_schedule (s, outer, scop),
kono
parents: 67
diff changeset
1139 scop, outer, index, context_loop);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1140
111
kono
parents: 67
diff changeset
1141 bool a_pbb;
kono
parents: 67
diff changeset
1142 while ((a_pbb = (outer == loop_at (scop, index)))
kono
parents: 67
diff changeset
1143 || nested_in (loop_at (scop, index), outer))
kono
parents: 67
diff changeset
1144 {
kono
parents: 67
diff changeset
1145 if (a_pbb)
kono
parents: 67
diff changeset
1146 s = add_in_sequence (s, build_schedule_pbb (scop, index));
kono
parents: 67
diff changeset
1147 else
kono
parents: 67
diff changeset
1148 s = add_in_sequence (s, build_schedule_loop (scop, index));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1149
111
kono
parents: 67
diff changeset
1150 if (*index == max)
kono
parents: 67
diff changeset
1151 break;
kono
parents: 67
diff changeset
1152 }
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1153
111
kono
parents: 67
diff changeset
1154 /* We reached the end of the OUTER loop: embed S in OUTER. */
kono
parents: 67
diff changeset
1155 return embed_in_surrounding_loops (add_loop_schedule (s, outer, scop), scop,
kono
parents: 67
diff changeset
1156 outer, index, context_loop);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1157 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1158
111
kono
parents: 67
diff changeset
1159 /* Build schedule for the full loop nest containing the pbb at INDEX. When
kono
parents: 67
diff changeset
1160 CONTEXT_LOOP is null, build the schedule of all loops contained in the SCOP
kono
parents: 67
diff changeset
1161 surrounding the pbb. When CONTEXT_LOOP is non null, only build the maximal loop
kono
parents: 67
diff changeset
1162 nest contained within CONTEXT_LOOP. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1163
111
kono
parents: 67
diff changeset
1164 static isl_schedule *
kono
parents: 67
diff changeset
1165 build_schedule_loop_nest (scop_p scop, int *index, loop_p context_loop)
kono
parents: 67
diff changeset
1166 {
kono
parents: 67
diff changeset
1167 gcc_assert (*index != (int) scop->pbbs.length ());
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1168
111
kono
parents: 67
diff changeset
1169 loop_p loop = loop_at (scop, index);
kono
parents: 67
diff changeset
1170 isl_schedule *s = build_schedule_loop (scop, index);
kono
parents: 67
diff changeset
1171 return embed_in_surrounding_loops (s, scop, loop, index, context_loop);
kono
parents: 67
diff changeset
1172 }
kono
parents: 67
diff changeset
1173
kono
parents: 67
diff changeset
1174 /* Build the schedule of the SCOP. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1175
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1176 static void
111
kono
parents: 67
diff changeset
1177 build_original_schedule (scop_p scop)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1178 {
111
kono
parents: 67
diff changeset
1179 int i = 0;
kono
parents: 67
diff changeset
1180 int n = scop->pbbs.length ();
kono
parents: 67
diff changeset
1181 while (i < n)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1182 {
111
kono
parents: 67
diff changeset
1183 poly_bb_p pbb = scop->pbbs[i];
kono
parents: 67
diff changeset
1184 isl_schedule *s = NULL;
kono
parents: 67
diff changeset
1185 if (!loop_in_sese_p (pbb_loop (pbb), scop->scop_info->region))
kono
parents: 67
diff changeset
1186 s = build_schedule_pbb (scop, &i);
kono
parents: 67
diff changeset
1187 else
kono
parents: 67
diff changeset
1188 s = build_schedule_loop_nest (scop, &i, NULL);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1189
111
kono
parents: 67
diff changeset
1190 scop->original_schedule = add_in_sequence (scop->original_schedule, s);
kono
parents: 67
diff changeset
1191 }
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1192
111
kono
parents: 67
diff changeset
1193 if (dump_file)
kono
parents: 67
diff changeset
1194 {
kono
parents: 67
diff changeset
1195 fprintf (dump_file, "[sese-to-poly] original schedule:\n");
kono
parents: 67
diff changeset
1196 print_isl_schedule (dump_file, scop->original_schedule);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1197 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1198 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1199
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1200 /* Builds the polyhedral representation for a SESE region. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1201
111
kono
parents: 67
diff changeset
1202 bool
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1203 build_poly_scop (scop_p scop)
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1204 {
111
kono
parents: 67
diff changeset
1205 int old_err = isl_options_get_on_error (scop->isl_context);
kono
parents: 67
diff changeset
1206 isl_options_set_on_error (scop->isl_context, ISL_ON_ERROR_CONTINUE);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1207
111
kono
parents: 67
diff changeset
1208 build_scop_context (scop);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1209
111
kono
parents: 67
diff changeset
1210 unsigned i = 0;
kono
parents: 67
diff changeset
1211 unsigned n = scop->pbbs.length ();
kono
parents: 67
diff changeset
1212 while (i < n)
kono
parents: 67
diff changeset
1213 i = build_iteration_domains (scop, scop->param_context, i, NULL);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1214
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
1215 build_scop_drs (scop);
111
kono
parents: 67
diff changeset
1216 build_original_schedule (scop);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1217
111
kono
parents: 67
diff changeset
1218 enum isl_error err = isl_ctx_last_error (scop->isl_context);
kono
parents: 67
diff changeset
1219 isl_ctx_reset_error (scop->isl_context);
kono
parents: 67
diff changeset
1220 isl_options_set_on_error (scop->isl_context, old_err);
kono
parents: 67
diff changeset
1221 if (err != isl_error_none)
kono
parents: 67
diff changeset
1222 dump_printf (MSG_MISSED_OPTIMIZATION,
kono
parents: 67
diff changeset
1223 "ISL error while building poly scop\n");
kono
parents: 67
diff changeset
1224
kono
parents: 67
diff changeset
1225 return err == isl_error_none;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1226 }
111
kono
parents: 67
diff changeset
1227 #endif /* HAVE_isl */