2014-04-14 Martin Jambor <mjambor@suse.cz>
[official-gcc.git] / libgomp / iter_ull.c
blobd003dbbf342ca61434f39cf8613e15fc6948fac2
1 /* Copyright (C) 2005-2014 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@redhat.com>.
4 This file is part of the GNU OpenMP Library (libgomp).
6 Libgomp is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 /* This file contains routines for managing work-share iteration, both
26 for loops and sections. */
28 #include "libgomp.h"
29 #include <stdlib.h>
31 typedef unsigned long long gomp_ull;
33 /* This function implements the STATIC scheduling method. The caller should
34 iterate *pstart <= x < *pend. Return zero if there are more iterations
35 to perform; nonzero if not. Return less than 0 if this thread had
36 received the absolutely last iteration. */
38 int
39 gomp_iter_ull_static_next (gomp_ull *pstart, gomp_ull *pend)
41 struct gomp_thread *thr = gomp_thread ();
42 struct gomp_team *team = thr->ts.team;
43 struct gomp_work_share *ws = thr->ts.work_share;
44 unsigned long nthreads = team ? team->nthreads : 1;
46 if (thr->ts.static_trip == -1)
47 return -1;
49 /* Quick test for degenerate teams and orphaned constructs. */
50 if (nthreads == 1)
52 *pstart = ws->next_ull;
53 *pend = ws->end_ull;
54 thr->ts.static_trip = -1;
55 return ws->next_ull == ws->end_ull;
58 /* We interpret chunk_size zero as "unspecified", which means that we
59 should break up the iterations such that each thread makes only one
60 trip through the outer loop. */
61 if (ws->chunk_size_ull == 0)
63 gomp_ull n, q, i, t, s0, e0, s, e;
65 if (thr->ts.static_trip > 0)
66 return 1;
68 /* Compute the total number of iterations. */
69 if (__builtin_expect (ws->mode, 0) == 0)
70 n = (ws->end_ull - ws->next_ull + ws->incr_ull - 1) / ws->incr_ull;
71 else
72 n = (ws->next_ull - ws->end_ull - ws->incr_ull - 1) / -ws->incr_ull;
73 i = thr->ts.team_id;
75 /* Compute the "zero-based" start and end points. That is, as
76 if the loop began at zero and incremented by one. */
77 q = n / nthreads;
78 t = n % nthreads;
79 if (i < t)
81 t = 0;
82 q++;
84 s0 = q * i + t;
85 e0 = s0 + q;
87 /* Notice when no iterations allocated for this thread. */
88 if (s0 >= e0)
90 thr->ts.static_trip = 1;
91 return 1;
94 /* Transform these to the actual start and end numbers. */
95 s = s0 * ws->incr_ull + ws->next_ull;
96 e = e0 * ws->incr_ull + ws->next_ull;
98 *pstart = s;
99 *pend = e;
100 thr->ts.static_trip = (e0 == n ? -1 : 1);
101 return 0;
103 else
105 gomp_ull n, s0, e0, i, c, s, e;
107 /* Otherwise, each thread gets exactly chunk_size iterations
108 (if available) each time through the loop. */
110 if (__builtin_expect (ws->mode, 0) == 0)
111 n = (ws->end_ull - ws->next_ull + ws->incr_ull - 1) / ws->incr_ull;
112 else
113 n = (ws->next_ull - ws->end_ull - ws->incr_ull - 1) / -ws->incr_ull;
114 i = thr->ts.team_id;
115 c = ws->chunk_size_ull;
117 /* Initial guess is a C sized chunk positioned nthreads iterations
118 in, offset by our thread number. */
119 s0 = (thr->ts.static_trip * (gomp_ull) nthreads + i) * c;
120 e0 = s0 + c;
122 /* Detect overflow. */
123 if (s0 >= n)
124 return 1;
125 if (e0 > n)
126 e0 = n;
128 /* Transform these to the actual start and end numbers. */
129 s = s0 * ws->incr_ull + ws->next_ull;
130 e = e0 * ws->incr_ull + ws->next_ull;
132 *pstart = s;
133 *pend = e;
135 if (e0 == n)
136 thr->ts.static_trip = -1;
137 else
138 thr->ts.static_trip++;
139 return 0;
144 /* This function implements the DYNAMIC scheduling method. Arguments are
145 as for gomp_iter_ull_static_next. This function must be called with
146 ws->lock held. */
148 bool
149 gomp_iter_ull_dynamic_next_locked (gomp_ull *pstart, gomp_ull *pend)
151 struct gomp_thread *thr = gomp_thread ();
152 struct gomp_work_share *ws = thr->ts.work_share;
153 gomp_ull start, end, chunk, left;
155 start = ws->next_ull;
156 if (start == ws->end_ull)
157 return false;
159 chunk = ws->chunk_size_ull;
160 left = ws->end_ull - start;
161 if (__builtin_expect (ws->mode & 2, 0))
163 if (chunk < left)
164 chunk = left;
166 else
168 if (chunk > left)
169 chunk = left;
171 end = start + chunk;
173 ws->next_ull = end;
174 *pstart = start;
175 *pend = end;
176 return true;
180 #if defined HAVE_SYNC_BUILTINS && defined __LP64__
181 /* Similar, but doesn't require the lock held, and uses compare-and-swap
182 instead. Note that the only memory value that changes is ws->next_ull. */
184 bool
185 gomp_iter_ull_dynamic_next (gomp_ull *pstart, gomp_ull *pend)
187 struct gomp_thread *thr = gomp_thread ();
188 struct gomp_work_share *ws = thr->ts.work_share;
189 gomp_ull start, end, nend, chunk;
191 end = ws->end_ull;
192 chunk = ws->chunk_size_ull;
194 if (__builtin_expect (ws->mode & 1, 1))
196 gomp_ull tmp = __sync_fetch_and_add (&ws->next_ull, chunk);
197 if (__builtin_expect (ws->mode & 2, 0) == 0)
199 if (tmp >= end)
200 return false;
201 nend = tmp + chunk;
202 if (nend > end)
203 nend = end;
204 *pstart = tmp;
205 *pend = nend;
206 return true;
208 else
210 if (tmp <= end)
211 return false;
212 nend = tmp + chunk;
213 if (nend < end)
214 nend = end;
215 *pstart = tmp;
216 *pend = nend;
217 return true;
221 start = ws->next_ull;
222 while (1)
224 gomp_ull left = end - start;
225 gomp_ull tmp;
227 if (start == end)
228 return false;
230 if (__builtin_expect (ws->mode & 2, 0))
232 if (chunk < left)
233 chunk = left;
235 else
237 if (chunk > left)
238 chunk = left;
240 nend = start + chunk;
242 tmp = __sync_val_compare_and_swap (&ws->next_ull, start, nend);
243 if (__builtin_expect (tmp == start, 1))
244 break;
246 start = tmp;
249 *pstart = start;
250 *pend = nend;
251 return true;
253 #endif /* HAVE_SYNC_BUILTINS */
256 /* This function implements the GUIDED scheduling method. Arguments are
257 as for gomp_iter_ull_static_next. This function must be called with the
258 work share lock held. */
260 bool
261 gomp_iter_ull_guided_next_locked (gomp_ull *pstart, gomp_ull *pend)
263 struct gomp_thread *thr = gomp_thread ();
264 struct gomp_work_share *ws = thr->ts.work_share;
265 struct gomp_team *team = thr->ts.team;
266 gomp_ull nthreads = team ? team->nthreads : 1;
267 gomp_ull n, q;
268 gomp_ull start, end;
270 if (ws->next_ull == ws->end_ull)
271 return false;
273 start = ws->next_ull;
274 if (__builtin_expect (ws->mode, 0) == 0)
275 n = (ws->end_ull - start) / ws->incr_ull;
276 else
277 n = (start - ws->end_ull) / -ws->incr_ull;
278 q = (n + nthreads - 1) / nthreads;
280 if (q < ws->chunk_size_ull)
281 q = ws->chunk_size_ull;
282 if (q <= n)
283 end = start + q * ws->incr_ull;
284 else
285 end = ws->end_ull;
287 ws->next_ull = end;
288 *pstart = start;
289 *pend = end;
290 return true;
293 #if defined HAVE_SYNC_BUILTINS && defined __LP64__
294 /* Similar, but doesn't require the lock held, and uses compare-and-swap
295 instead. Note that the only memory value that changes is ws->next_ull. */
297 bool
298 gomp_iter_ull_guided_next (gomp_ull *pstart, gomp_ull *pend)
300 struct gomp_thread *thr = gomp_thread ();
301 struct gomp_work_share *ws = thr->ts.work_share;
302 struct gomp_team *team = thr->ts.team;
303 gomp_ull nthreads = team ? team->nthreads : 1;
304 gomp_ull start, end, nend, incr;
305 gomp_ull chunk_size;
307 start = ws->next_ull;
308 end = ws->end_ull;
309 incr = ws->incr_ull;
310 chunk_size = ws->chunk_size_ull;
312 while (1)
314 gomp_ull n, q;
315 gomp_ull tmp;
317 if (start == end)
318 return false;
320 if (__builtin_expect (ws->mode, 0) == 0)
321 n = (end - start) / incr;
322 else
323 n = (start - end) / -incr;
324 q = (n + nthreads - 1) / nthreads;
326 if (q < chunk_size)
327 q = chunk_size;
328 if (__builtin_expect (q <= n, 1))
329 nend = start + q * incr;
330 else
331 nend = end;
333 tmp = __sync_val_compare_and_swap (&ws->next_ull, start, nend);
334 if (__builtin_expect (tmp == start, 1))
335 break;
337 start = tmp;
340 *pstart = start;
341 *pend = nend;
342 return true;
344 #endif /* HAVE_SYNC_BUILTINS */