2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / gthr-dce.h
blobfe4bba769d9d11475126cbeadc38e002968e4c8d
1 /* Threads compatibility routines for libgcc2 and libobjc. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1999, 2000, 2001, 2004, 2005
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA. */
23 /* As a special exception, if you link this library with other files,
24 some of which are compiled with GCC, to produce an executable,
25 this library does not by itself cause the resulting executable
26 to be covered by the GNU General Public License.
27 This exception does not however invalidate any other reasons why
28 the executable file might be covered by the GNU General Public License. */
30 #ifndef GCC_GTHR_DCE_H
31 #define GCC_GTHR_DCE_H
33 /* If _DCE_THREADS is not defined, then we're building the single
34 threaded version of the libraries and do not want to reference
35 anything related to pthreads or dce. */
36 #ifndef _DCE_THREADS
37 #include "gthr-single.h"
38 #else
39 /* DCE threads interface.
40 DCE threads are based on POSIX threads draft 4, and many things
41 have changed since then. */
43 #define __GTHREADS 1
45 #include <pthread.h>
47 #ifdef __cplusplus
48 #define UNUSED(x) x
49 #else
50 #define UNUSED(x) x __attribute__((unused))
51 #endif
53 typedef pthread_key_t __gthread_key_t;
54 typedef pthread_once_t __gthread_once_t;
55 typedef pthread_mutex_t __gthread_mutex_t;
56 typedef pthread_mutex_t __gthread_recursive_mutex_t;
58 #define __GTHREAD_ONCE_INIT __gthrw_pthread_once_init
60 #define __GTHREAD_MUTEX_INIT_FUNCTION __gthread_mutex_init_function
61 #define __GTHREAD_RECURSIVE_MUTEX_INIT_FUNCTION __gthread_recursive_mutex_init_function
63 #define __GTHREAD_MUTEX_INIT_DEFAULT __gthrw_pthread_once_init
65 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
66 # define __gthrw(name) \
67 static __typeof(name) __gthrw_ ## name __attribute__ ((__weakref__(#name)))
68 #else
69 # define __gthrw_asmname(cname) __gthrw_asmnamep (__USER_LABEL_PREFIX__, cname)
70 # define __gthrw_asmnamep(prefix, cname) __gthrw_string (prefix) cname
71 # define __gthrw_string(x) #x
72 # define __gthrw(name) \
73 extern __typeof(name) __gthrw_ ## name __asm (__gthrw_asmname (#name))
74 #endif
76 __gthrw(pthread_once);
77 __gthrw(pthread_once_init);
78 __gthrw(pthread_keycreate);
79 __gthrw(pthread_key_delete);
80 __gthrw(pthread_getspecific);
81 __gthrw(pthread_setspecific);
82 __gthrw(pthread_create);
83 __gthrw(pthread_mutex_init);
84 __gthrw(pthread_mutex_lock);
85 __gthrw(pthread_mutex_trylock);
86 __gthrw(pthread_mutex_unlock);
87 __gthrw(pthread_mutexattr_create);
88 __gthrw(pthread_mutexattr_setkind_np);
89 __gthrw(pthread_mutexattr_delete);
91 #ifdef _LIBOBJC
92 /* Objective-C. */
93 __gthrw(pthread_cond_broadcast);
94 __gthrw(pthread_cond_destroy);
95 __gthrw(pthread_cond_init);
96 __gthrw(pthread_cond_signal);
97 __gthrw(pthread_cond_wait);
98 __gthrw(pthread_exit);
99 __gthrw(pthread_getunique_np);
100 __gthrw(pthread_mutex_destroy);
101 __gthrw(pthread_self);
102 __gthrw(pthread_yield);
103 #endif
105 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
107 static inline int
108 __gthread_active_p (void)
110 static void *const __gthread_active_ptr = (void *) &__gthrw_pthread_create;
111 return __gthread_active_ptr != 0;
114 #else /* not SUPPORTS_WEAK */
116 static inline int
117 __gthread_active_p (void)
119 return 1;
122 #endif /* SUPPORTS_WEAK */
124 #ifdef _LIBOBJC
126 /* Key structure for maintaining thread specific storage */
127 static pthread_key_t _objc_thread_storage;
129 /* Thread local storage for a single thread */
130 static void *thread_local_storage = NULL;
132 /* Backend initialization functions */
134 /* Initialize the threads subsystem. */
135 static inline int
136 __gthread_objc_init_thread_system (void)
138 if (__gthread_active_p ())
139 /* Initialize the thread storage key. */
140 return __gthrw_pthread_keycreate (&_objc_thread_storage, NULL);
141 else
142 return -1;
145 /* Close the threads subsystem. */
146 static inline int
147 __gthread_objc_close_thread_system (void)
149 if (__gthread_active_p ())
150 return 0;
151 else
152 return -1;
155 /* Backend thread functions */
157 /* Create a new thread of execution. */
158 static inline objc_thread_t
159 __gthread_objc_thread_detach (void (*func)(void *), void *arg)
161 objc_thread_t thread_id;
162 pthread_t new_thread_handle;
164 if (!__gthread_active_p ())
165 return NULL;
167 if (!(__gthrw_pthread_create (&new_thread_handle, pthread_attr_default,
168 (void *) func, arg)))
170 /* ??? May not work! (64bit) */
171 thread_id = *(objc_thread_t *) &new_thread_handle;
172 pthread_detach (&new_thread_handle); /* Fully detach thread. */
174 else
175 thread_id = NULL;
177 return thread_id;
180 /* Set the current thread's priority. */
181 static inline int
182 __gthread_objc_thread_set_priority (int priority)
184 int sys_priority = 0;
186 if (!__gthread_active_p ())
187 return -1;
189 switch (priority)
191 case OBJC_THREAD_INTERACTIVE_PRIORITY:
192 sys_priority = (PRI_FG_MIN_NP + PRI_FG_MAX_NP) / 2;
193 break;
194 default:
195 case OBJC_THREAD_BACKGROUND_PRIORITY:
196 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
197 break;
198 case OBJC_THREAD_LOW_PRIORITY:
199 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
200 break;
203 /* Change the priority. */
204 if (pthread_setprio (__gthrw_pthread_self (), sys_priority) >= 0)
205 return 0;
206 else
207 /* Failed */
208 return -1;
211 /* Return the current thread's priority. */
212 static inline int
213 __gthread_objc_thread_get_priority (void)
215 int sys_priority;
217 if (__gthread_active_p ())
219 if ((sys_priority = pthread_getprio (__gthrw_pthread_self ())) >= 0)
221 if (sys_priority >= PRI_FG_MIN_NP
222 && sys_priority <= PRI_FG_MAX_NP)
223 return OBJC_THREAD_INTERACTIVE_PRIORITY;
224 if (sys_priority >= PRI_BG_MIN_NP
225 && sys_priority <= PRI_BG_MAX_NP)
226 return OBJC_THREAD_BACKGROUND_PRIORITY;
227 return OBJC_THREAD_LOW_PRIORITY;
230 /* Failed */
231 return -1;
233 else
234 return OBJC_THREAD_INTERACTIVE_PRIORITY;
237 /* Yield our process time to another thread. */
238 static inline void
239 __gthread_objc_thread_yield (void)
241 if (__gthread_active_p ())
242 __gthrw_pthread_yield ();
245 /* Terminate the current thread. */
246 static inline int
247 __gthread_objc_thread_exit (void)
249 if (__gthread_active_p ())
250 /* exit the thread */
251 __gthrw_pthread_exit (&__objc_thread_exit_status);
253 /* Failed if we reached here */
254 return -1;
257 /* Returns an integer value which uniquely describes a thread. */
258 static inline objc_thread_t
259 __gthread_objc_thread_id (void)
261 if (__gthread_active_p ())
263 pthread_t self = __gthrw_pthread_self ();
265 return (objc_thread_t) __gthrw_pthread_getunique_np (&self);
267 else
268 return (objc_thread_t) 1;
271 /* Sets the thread's local storage pointer. */
272 static inline int
273 __gthread_objc_thread_set_data (void *value)
275 if (__gthread_active_p ())
276 return __gthrw_pthread_setspecific (_objc_thread_storage, value);
277 else
279 thread_local_storage = value;
280 return 0;
284 /* Returns the thread's local storage pointer. */
285 static inline void *
286 __gthread_objc_thread_get_data (void)
288 void *value = NULL;
290 if (__gthread_active_p ())
292 if (!(__gthrw_pthread_getspecific (_objc_thread_storage, &value)))
293 return value;
295 return NULL;
297 else
298 return thread_local_storage;
301 /* Backend mutex functions */
303 /* Allocate a mutex. */
304 static inline int
305 __gthread_objc_mutex_allocate (objc_mutex_t mutex)
307 if (__gthread_active_p ())
309 mutex->backend = objc_malloc (sizeof (pthread_mutex_t));
311 if (__gthrw_pthread_mutex_init ((pthread_mutex_t *) mutex->backend,
312 pthread_mutexattr_default))
314 objc_free (mutex->backend);
315 mutex->backend = NULL;
316 return -1;
320 return 0;
323 /* Deallocate a mutex. */
324 static inline int
325 __gthread_objc_mutex_deallocate (objc_mutex_t mutex)
327 if (__gthread_active_p ())
329 if (__gthrw_pthread_mutex_destroy ((pthread_mutex_t *) mutex->backend))
330 return -1;
332 objc_free (mutex->backend);
333 mutex->backend = NULL;
336 return 0;
339 /* Grab a lock on a mutex. */
340 static inline int
341 __gthread_objc_mutex_lock (objc_mutex_t mutex)
343 if (__gthread_active_p ())
344 return __gthrw_pthread_mutex_lock ((pthread_mutex_t *) mutex->backend);
345 else
346 return 0;
349 /* Try to grab a lock on a mutex. */
350 static inline int
351 __gthread_objc_mutex_trylock (objc_mutex_t mutex)
353 if (__gthread_active_p ()
354 && __gthrw_pthread_mutex_trylock ((pthread_mutex_t *) mutex->backend) != 1)
355 return -1;
357 return 0;
360 /* Unlock the mutex */
361 static inline int
362 __gthread_objc_mutex_unlock (objc_mutex_t mutex)
364 if (__gthread_active_p ())
365 return __gthrw_pthread_mutex_unlock ((pthread_mutex_t *) mutex->backend);
366 else
367 return 0;
370 /* Backend condition mutex functions */
372 /* Allocate a condition. */
373 static inline int
374 __gthread_objc_condition_allocate (objc_condition_t condition)
376 if (__gthread_active_p ())
377 /* Unimplemented. */
378 return -1;
379 else
380 return 0;
383 /* Deallocate a condition. */
384 static inline int
385 __gthread_objc_condition_deallocate (objc_condition_t condition)
387 if (__gthread_active_p ())
388 /* Unimplemented. */
389 return -1;
390 else
391 return 0;
394 /* Wait on the condition */
395 static inline int
396 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex)
398 if (__gthread_active_p ())
399 /* Unimplemented. */
400 return -1;
401 else
402 return 0;
405 /* Wake up all threads waiting on this condition. */
406 static inline int
407 __gthread_objc_condition_broadcast (objc_condition_t condition)
409 if (__gthread_active_p ())
410 /* Unimplemented. */
411 return -1;
412 else
413 return 0;
416 /* Wake up one thread waiting on this condition. */
417 static inline int
418 __gthread_objc_condition_signal (objc_condition_t condition)
420 if (__gthread_active_p ())
421 /* Unimplemented. */
422 return -1;
423 else
424 return 0;
427 #else /* _LIBOBJC */
429 static inline int
430 __gthread_once (__gthread_once_t *once, void (*func) (void))
432 if (__gthread_active_p ())
433 return __gthrw_pthread_once (once, func);
434 else
435 return -1;
438 static inline int
439 __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
441 return __gthrw_pthread_keycreate (key, dtor);
444 static inline int
445 __gthread_key_delete (UNUSED (__gthread_key_t key))
447 /* Operation is not supported. */
448 return -1;
451 static inline void *
452 __gthread_getspecific (__gthread_key_t key)
454 void *ptr;
455 if (__gthrw_pthread_getspecific (key, &ptr) == 0)
456 return ptr;
457 else
458 return 0;
461 static inline int
462 __gthread_setspecific (__gthread_key_t key, const void *ptr)
464 return __gthrw_pthread_setspecific (key, (void *) ptr);
467 static inline void
468 __gthread_mutex_init_function (__gthread_mutex_t *mutex)
470 if (__gthread_active_p ())
471 __gthrw_pthread_mutex_init (mutex, pthread_mutexattr_default);
474 static inline int
475 __gthread_mutex_lock (__gthread_mutex_t *mutex)
477 if (__gthread_active_p ())
478 return __gthrw_pthread_mutex_lock (mutex);
479 else
480 return 0;
483 static inline int
484 __gthread_mutex_trylock (__gthread_mutex_t *mutex)
486 if (__gthread_active_p ())
487 return __gthrw_pthread_mutex_trylock (mutex);
488 else
489 return 0;
492 static inline int
493 __gthread_mutex_unlock (__gthread_mutex_t *mutex)
495 if (__gthread_active_p ())
496 return __gthrw_pthread_mutex_unlock (mutex);
497 else
498 return 0;
501 static inline int
502 __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex)
504 if (__gthread_active_p ())
506 pthread_mutexattr_t attr;
507 int r;
509 r = __gthrw_pthread_mutexattr_create (&attr);
510 if (!r)
511 r = __gthrw_pthread_mutexattr_setkind_np (&attr, MUTEX_RECURSIVE_NP);
512 if (!r)
513 r = __gthrw_pthread_mutex_init (mutex, attr);
514 if (!r)
515 r = __gthrw_pthread_mutexattr_delete (&attr);
516 return r;
520 static inline int
521 __gthread_recursive_mutex_lock (__gthread_recursive_mutex_t *mutex)
523 return __gthread_mutex_lock (mutex);
526 static inline int
527 __gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t *mutex)
529 return __gthread_mutex_trylock (mutex);
532 static inline int
533 __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t *mutex)
535 return __gthread_mutex_unlock (mutex);
538 #endif /* _LIBOBJC */
540 #undef UNUSED
542 #endif
543 #endif /* ! GCC_GTHR_DCE_H */