revised patch from gaby
[official-gcc/constexpr.git] / libgomp / team.c
blob44ffd56095ffb425da26579a4696775db67a7e0a
1 /* Copyright (C) 2005, 2006, 2007, 2008, 2009 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 handles the maintainence of threads in response to team
26 creation and termination. */
28 #include "libgomp.h"
29 #include <stdlib.h>
30 #include <string.h>
32 /* This attribute contains PTHREAD_CREATE_DETACHED. */
33 pthread_attr_t gomp_thread_attr;
35 /* This key is for the thread destructor. */
36 pthread_key_t gomp_thread_destructor;
39 /* This is the libgomp per-thread data structure. */
40 #ifdef HAVE_TLS
41 __thread struct gomp_thread gomp_tls_data;
42 #else
43 pthread_key_t gomp_tls_key;
44 #endif
47 /* This structure is used to communicate across pthread_create. */
49 struct gomp_thread_start_data
51 void (*fn) (void *);
52 void *fn_data;
53 struct gomp_team_state ts;
54 struct gomp_task *task;
55 struct gomp_thread_pool *thread_pool;
56 bool nested;
60 /* This function is a pthread_create entry point. This contains the idle
61 loop in which a thread waits to be called up to become part of a team. */
63 static void *
64 gomp_thread_start (void *xdata)
66 struct gomp_thread_start_data *data = xdata;
67 struct gomp_thread *thr;
68 struct gomp_thread_pool *pool;
69 void (*local_fn) (void *);
70 void *local_data;
72 #ifdef HAVE_TLS
73 thr = &gomp_tls_data;
74 #else
75 struct gomp_thread local_thr;
76 thr = &local_thr;
77 pthread_setspecific (gomp_tls_key, thr);
78 #endif
79 gomp_sem_init (&thr->release, 0);
81 /* Extract what we need from data. */
82 local_fn = data->fn;
83 local_data = data->fn_data;
84 thr->thread_pool = data->thread_pool;
85 thr->ts = data->ts;
86 thr->task = data->task;
88 thr->ts.team->ordered_release[thr->ts.team_id] = &thr->release;
90 /* Make thread pool local. */
91 pool = thr->thread_pool;
93 if (data->nested)
95 struct gomp_team *team = thr->ts.team;
96 struct gomp_task *task = thr->task;
98 gomp_barrier_wait (&team->barrier);
100 local_fn (local_data);
101 gomp_team_barrier_wait (&team->barrier);
102 gomp_finish_task (task);
103 gomp_barrier_wait_last (&team->barrier);
105 else
107 pool->threads[thr->ts.team_id] = thr;
109 gomp_barrier_wait (&pool->threads_dock);
112 struct gomp_team *team = thr->ts.team;
113 struct gomp_task *task = thr->task;
115 local_fn (local_data);
116 gomp_team_barrier_wait (&team->barrier);
117 gomp_finish_task (task);
119 gomp_barrier_wait (&pool->threads_dock);
121 local_fn = thr->fn;
122 local_data = thr->data;
123 thr->fn = NULL;
125 while (local_fn);
128 gomp_sem_destroy (&thr->release);
129 return NULL;
133 /* Create a new team data structure. */
135 struct gomp_team *
136 gomp_new_team (unsigned nthreads)
138 struct gomp_team *team;
139 size_t size;
140 int i;
142 size = sizeof (*team) + nthreads * (sizeof (team->ordered_release[0])
143 + sizeof (team->implicit_task[0]));
144 team = gomp_malloc (size);
146 team->work_share_chunk = 8;
147 #ifdef HAVE_SYNC_BUILTINS
148 team->single_count = 0;
149 #else
150 gomp_mutex_init (&team->work_share_list_free_lock);
151 #endif
152 gomp_init_work_share (&team->work_shares[0], false, nthreads);
153 team->work_shares[0].next_alloc = NULL;
154 team->work_share_list_free = NULL;
155 team->work_share_list_alloc = &team->work_shares[1];
156 for (i = 1; i < 7; i++)
157 team->work_shares[i].next_free = &team->work_shares[i + 1];
158 team->work_shares[i].next_free = NULL;
160 team->nthreads = nthreads;
161 gomp_barrier_init (&team->barrier, nthreads);
163 gomp_sem_init (&team->master_release, 0);
164 team->ordered_release = (void *) &team->implicit_task[nthreads];
165 team->ordered_release[0] = &team->master_release;
167 gomp_mutex_init (&team->task_lock);
168 team->task_queue = NULL;
169 team->task_count = 0;
170 team->task_running_count = 0;
172 return team;
176 /* Free a team data structure. */
178 static void
179 free_team (struct gomp_team *team)
181 gomp_barrier_destroy (&team->barrier);
182 gomp_mutex_destroy (&team->task_lock);
183 free (team);
186 /* Allocate and initialize a thread pool. */
188 static struct gomp_thread_pool *gomp_new_thread_pool (void)
190 struct gomp_thread_pool *pool
191 = gomp_malloc (sizeof(struct gomp_thread_pool));
192 pool->threads = NULL;
193 pool->threads_size = 0;
194 pool->threads_used = 0;
195 pool->last_team = NULL;
196 return pool;
199 static void
200 gomp_free_pool_helper (void *thread_pool)
202 struct gomp_thread_pool *pool
203 = (struct gomp_thread_pool *) thread_pool;
204 gomp_barrier_wait_last (&pool->threads_dock);
205 gomp_sem_destroy (&gomp_thread ()->release);
206 pthread_exit (NULL);
209 /* Free a thread pool and release its threads. */
211 static void
212 gomp_free_thread (void *arg __attribute__((unused)))
214 struct gomp_thread *thr = gomp_thread ();
215 struct gomp_thread_pool *pool = thr->thread_pool;
216 if (pool)
218 if (pool->threads_used > 0)
220 int i;
221 for (i = 1; i < pool->threads_used; i++)
223 struct gomp_thread *nthr = pool->threads[i];
224 nthr->fn = gomp_free_pool_helper;
225 nthr->data = pool;
227 /* This barrier undocks threads docked on pool->threads_dock. */
228 gomp_barrier_wait (&pool->threads_dock);
229 /* And this waits till all threads have called gomp_barrier_wait_last
230 in gomp_free_pool_helper. */
231 gomp_barrier_wait (&pool->threads_dock);
232 /* Now it is safe to destroy the barrier and free the pool. */
233 gomp_barrier_destroy (&pool->threads_dock);
235 free (pool->threads);
236 if (pool->last_team)
237 free_team (pool->last_team);
238 free (pool);
239 thr->thread_pool = NULL;
241 if (thr->task != NULL)
243 struct gomp_task *task = thr->task;
244 gomp_end_task ();
245 free (task);
249 /* Launch a team. */
251 void
252 gomp_team_start (void (*fn) (void *), void *data, unsigned nthreads,
253 struct gomp_team *team)
255 struct gomp_thread_start_data *start_data;
256 struct gomp_thread *thr, *nthr;
257 struct gomp_task *task;
258 struct gomp_task_icv *icv;
259 bool nested;
260 struct gomp_thread_pool *pool;
261 unsigned i, n, old_threads_used = 0;
262 pthread_attr_t thread_attr, *attr;
264 thr = gomp_thread ();
265 nested = thr->ts.team != NULL;
266 if (__builtin_expect (thr->thread_pool == NULL, 0))
268 thr->thread_pool = gomp_new_thread_pool ();
269 pthread_setspecific (gomp_thread_destructor, thr);
271 pool = thr->thread_pool;
272 task = thr->task;
273 icv = task ? &task->icv : &gomp_global_icv;
275 /* Always save the previous state, even if this isn't a nested team.
276 In particular, we should save any work share state from an outer
277 orphaned work share construct. */
278 team->prev_ts = thr->ts;
280 thr->ts.team = team;
281 thr->ts.team_id = 0;
282 ++thr->ts.level;
283 if (nthreads > 1)
284 ++thr->ts.active_level;
285 thr->ts.work_share = &team->work_shares[0];
286 thr->ts.last_work_share = NULL;
287 #ifdef HAVE_SYNC_BUILTINS
288 thr->ts.single_count = 0;
289 #endif
290 thr->ts.static_trip = 0;
291 thr->task = &team->implicit_task[0];
292 gomp_init_task (thr->task, task, icv);
294 if (nthreads == 1)
295 return;
297 i = 1;
299 /* We only allow the reuse of idle threads for non-nested PARALLEL
300 regions. This appears to be implied by the semantics of
301 threadprivate variables, but perhaps that's reading too much into
302 things. Certainly it does prevent any locking problems, since
303 only the initial program thread will modify gomp_threads. */
304 if (!nested)
306 old_threads_used = pool->threads_used;
308 if (nthreads <= old_threads_used)
309 n = nthreads;
310 else if (old_threads_used == 0)
312 n = 0;
313 gomp_barrier_init (&pool->threads_dock, nthreads);
315 else
317 n = old_threads_used;
319 /* Increase the barrier threshold to make sure all new
320 threads arrive before the team is released. */
321 gomp_barrier_reinit (&pool->threads_dock, nthreads);
324 /* Not true yet, but soon will be. We're going to release all
325 threads from the dock, and those that aren't part of the
326 team will exit. */
327 pool->threads_used = nthreads;
329 /* Release existing idle threads. */
330 for (; i < n; ++i)
332 nthr = pool->threads[i];
333 nthr->ts.team = team;
334 nthr->ts.work_share = &team->work_shares[0];
335 nthr->ts.last_work_share = NULL;
336 nthr->ts.team_id = i;
337 nthr->ts.level = team->prev_ts.level + 1;
338 nthr->ts.active_level = thr->ts.active_level;
339 #ifdef HAVE_SYNC_BUILTINS
340 nthr->ts.single_count = 0;
341 #endif
342 nthr->ts.static_trip = 0;
343 nthr->task = &team->implicit_task[i];
344 gomp_init_task (nthr->task, task, icv);
345 nthr->fn = fn;
346 nthr->data = data;
347 team->ordered_release[i] = &nthr->release;
350 if (i == nthreads)
351 goto do_release;
353 /* If necessary, expand the size of the gomp_threads array. It is
354 expected that changes in the number of threads are rare, thus we
355 make no effort to expand gomp_threads_size geometrically. */
356 if (nthreads >= pool->threads_size)
358 pool->threads_size = nthreads + 1;
359 pool->threads
360 = gomp_realloc (pool->threads,
361 pool->threads_size
362 * sizeof (struct gomp_thread_data *));
366 if (__builtin_expect (nthreads > old_threads_used, 0))
368 long diff = (long) nthreads - (long) old_threads_used;
370 if (old_threads_used == 0)
371 --diff;
373 #ifdef HAVE_SYNC_BUILTINS
374 __sync_fetch_and_add (&gomp_managed_threads, diff);
375 #else
376 gomp_mutex_lock (&gomp_remaining_threads_lock);
377 gomp_managed_threads += diff;
378 gomp_mutex_unlock (&gomp_remaining_threads_lock);
379 #endif
382 attr = &gomp_thread_attr;
383 if (__builtin_expect (gomp_cpu_affinity != NULL, 0))
385 size_t stacksize;
386 pthread_attr_init (&thread_attr);
387 pthread_attr_setdetachstate (&thread_attr, PTHREAD_CREATE_DETACHED);
388 if (! pthread_attr_getstacksize (&gomp_thread_attr, &stacksize))
389 pthread_attr_setstacksize (&thread_attr, stacksize);
390 attr = &thread_attr;
393 start_data = gomp_alloca (sizeof (struct gomp_thread_start_data)
394 * (nthreads-i));
396 /* Launch new threads. */
397 for (; i < nthreads; ++i, ++start_data)
399 pthread_t pt;
400 int err;
402 start_data->fn = fn;
403 start_data->fn_data = data;
404 start_data->ts.team = team;
405 start_data->ts.work_share = &team->work_shares[0];
406 start_data->ts.last_work_share = NULL;
407 start_data->ts.team_id = i;
408 start_data->ts.level = team->prev_ts.level + 1;
409 start_data->ts.active_level = thr->ts.active_level;
410 #ifdef HAVE_SYNC_BUILTINS
411 start_data->ts.single_count = 0;
412 #endif
413 start_data->ts.static_trip = 0;
414 start_data->task = &team->implicit_task[i];
415 gomp_init_task (start_data->task, task, icv);
416 start_data->thread_pool = pool;
417 start_data->nested = nested;
419 if (gomp_cpu_affinity != NULL)
420 gomp_init_thread_affinity (attr);
422 err = pthread_create (&pt, attr, gomp_thread_start, start_data);
423 if (err != 0)
424 gomp_fatal ("Thread creation failed: %s", strerror (err));
427 if (__builtin_expect (gomp_cpu_affinity != NULL, 0))
428 pthread_attr_destroy (&thread_attr);
430 do_release:
431 gomp_barrier_wait (nested ? &team->barrier : &pool->threads_dock);
433 /* Decrease the barrier threshold to match the number of threads
434 that should arrive back at the end of this team. The extra
435 threads should be exiting. Note that we arrange for this test
436 to never be true for nested teams. */
437 if (__builtin_expect (nthreads < old_threads_used, 0))
439 long diff = (long) nthreads - (long) old_threads_used;
441 gomp_barrier_reinit (&pool->threads_dock, nthreads);
443 #ifdef HAVE_SYNC_BUILTINS
444 __sync_fetch_and_add (&gomp_managed_threads, diff);
445 #else
446 gomp_mutex_lock (&gomp_remaining_threads_lock);
447 gomp_managed_threads += diff;
448 gomp_mutex_unlock (&gomp_remaining_threads_lock);
449 #endif
454 /* Terminate the current team. This is only to be called by the master
455 thread. We assume that we must wait for the other threads. */
457 void
458 gomp_team_end (void)
460 struct gomp_thread *thr = gomp_thread ();
461 struct gomp_team *team = thr->ts.team;
463 /* This barrier handles all pending explicit threads. */
464 gomp_team_barrier_wait (&team->barrier);
465 gomp_fini_work_share (thr->ts.work_share);
467 gomp_end_task ();
468 thr->ts = team->prev_ts;
470 if (__builtin_expect (thr->ts.team != NULL, 0))
472 #ifdef HAVE_SYNC_BUILTINS
473 __sync_fetch_and_add (&gomp_managed_threads, 1L - team->nthreads);
474 #else
475 gomp_mutex_lock (&gomp_remaining_threads_lock);
476 gomp_managed_threads -= team->nthreads - 1L;
477 gomp_mutex_unlock (&gomp_remaining_threads_lock);
478 #endif
479 /* This barrier has gomp_barrier_wait_last counterparts
480 and ensures the team can be safely destroyed. */
481 gomp_barrier_wait (&team->barrier);
484 if (__builtin_expect (team->work_shares[0].next_alloc != NULL, 0))
486 struct gomp_work_share *ws = team->work_shares[0].next_alloc;
489 struct gomp_work_share *next_ws = ws->next_alloc;
490 free (ws);
491 ws = next_ws;
493 while (ws != NULL);
495 gomp_sem_destroy (&team->master_release);
496 #ifndef HAVE_SYNC_BUILTINS
497 gomp_mutex_destroy (&team->work_share_list_free_lock);
498 #endif
500 if (__builtin_expect (thr->ts.team != NULL, 0)
501 || __builtin_expect (team->nthreads == 1, 0))
502 free_team (team);
503 else
505 struct gomp_thread_pool *pool = thr->thread_pool;
506 if (pool->last_team)
507 free_team (pool->last_team);
508 pool->last_team = team;
513 /* Constructors for this file. */
515 static void __attribute__((constructor))
516 initialize_team (void)
518 struct gomp_thread *thr;
520 #ifndef HAVE_TLS
521 static struct gomp_thread initial_thread_tls_data;
523 pthread_key_create (&gomp_tls_key, NULL);
524 pthread_setspecific (gomp_tls_key, &initial_thread_tls_data);
525 #endif
527 if (pthread_key_create (&gomp_thread_destructor, gomp_free_thread) != 0)
528 gomp_fatal ("could not create thread pool destructor.");
530 #ifdef HAVE_TLS
531 thr = &gomp_tls_data;
532 #else
533 thr = &initial_thread_tls_data;
534 #endif
535 gomp_sem_init (&thr->release, 0);
538 static void __attribute__((destructor))
539 team_destructor (void)
541 /* Without this dlclose on libgomp could lead to subsequent
542 crashes. */
543 pthread_key_delete (gomp_thread_destructor);
546 struct gomp_task_icv *
547 gomp_new_icv (void)
549 struct gomp_thread *thr = gomp_thread ();
550 struct gomp_task *task = gomp_malloc (sizeof (struct gomp_task));
551 gomp_init_task (task, NULL, &gomp_global_icv);
552 thr->task = task;
553 pthread_setspecific (gomp_thread_destructor, thr);
554 return &task->icv;