Make sure THEN block has any insns at before testing for indirect jump
[official-gcc.git] / gcc / gthr-dce.h
blob199dfe66b409af6f1fc5b2fb90c699ba178b8402
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
29 #ifndef __gthr_dce_h
30 #define __gthr_dce_h
32 /* DCE threads interface.
33 DCE threads are based on POSIX threads draft 4, and many things
34 have changed since then. */
36 #define __GTHREADS 1
38 #include <pthread.h>
40 typedef pthread_key_t __gthread_key_t;
41 typedef pthread_once_t __gthread_once_t;
42 typedef pthread_mutex_t __gthread_mutex_t;
44 #define __GTHREAD_ONCE_INIT pthread_once_init
45 /* Howto define __GTHREAD_MUTEX_INIT? */
47 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
49 #pragma weak pthread_once
50 #pragma weak pthread_once_init
51 #pragma weak pthread_keycreate
52 #pragma weak pthread_key_delete
53 #pragma weak pthread_getspecific
54 #pragma weak pthread_setspecific
55 #pragma weak pthread_create
57 #pragma weak pthread_mutex_lock
58 #pragma weak pthread_mutex_trylock
59 #pragma weak pthread_mutex_unlock
61 #ifdef _LIBOBJC
62 /* Objective C. */
63 #pragma weak pthread_cond_broadcast
64 #pragma weak pthread_cond_destroy
65 #pragma weak pthread_cond_init
66 #pragma weak pthread_cond_signal
67 #pragma weak pthread_cond_wait
68 #pragma weak pthread_exit
69 #pragma weak pthread_getunique_np
70 #pragma weak pthread_mutex_init
71 #pragma weak pthread_mutex_destroy
72 #pragma weak pthread_self
73 #pragma weak pthread_yield
74 #endif
76 static void *__gthread_active_ptr = &pthread_create;
78 static inline int
79 __gthread_active_p (void)
81 return __gthread_active_ptr != 0;
84 #else /* not SUPPORTS_WEAK */
86 static inline int
87 __gthread_active_p (void)
89 return 1;
92 #endif /* SUPPORTS_WEAK */
94 #ifdef _LIBOBJC
96 /* Key structure for maintaining thread specific storage */
97 static pthread_key_t _objc_thread_storage;
99 /* Thread local storage for a single thread */
100 static void *thread_local_storage = NULL;
102 /* Backend initialization functions */
104 /* Initialize the threads subsystem. */
105 static inline int
106 __gthread_objc_init_thread_system(void)
108 if (__gthread_active_p ())
109 /* Initialize the thread storage key */
110 return pthread_keycreate (&_objc_thread_storage, NULL);
111 else
112 return -1;
115 /* Close the threads subsystem. */
116 static inline int
117 __gthread_objc_close_thread_system(void)
119 if (__gthread_active_p ())
120 return 0;
121 else
122 return -1;
125 /* Backend thread functions */
127 /* Create a new thread of execution. */
128 static inline objc_thread_t
129 __gthread_objc_thread_detach(void (*func)(void *), void *arg)
131 objc_thread_t thread_id;
132 pthread_t new_thread_handle;
134 if (!__gthread_active_p ())
135 return NULL;
137 if ( !(pthread_create(&new_thread_handle, pthread_attr_default,
138 (void *)func, arg)) )
140 /* ??? May not work! (64bit) */
141 thread_id = *(objc_thread_t *)&new_thread_handle;
142 pthread_detach(&new_thread_handle); /* Fully detach thread. */
144 else
145 thread_id = NULL;
147 return thread_id;
150 /* Set the current thread's priority. */
151 static inline int
152 __gthread_objc_thread_set_priority(int priority)
154 int sys_priority = 0;
156 if (!__gthread_active_p ())
157 return -1;
159 switch (priority)
161 case OBJC_THREAD_INTERACTIVE_PRIORITY:
162 sys_priority = (PRI_FG_MIN_NP + PRI_FG_MAX_NP) / 2;
163 break;
164 default:
165 case OBJC_THREAD_BACKGROUND_PRIORITY:
166 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
167 break;
168 case OBJC_THREAD_LOW_PRIORITY:
169 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
170 break;
173 /* Change the priority. */
174 if (pthread_setprio(pthread_self(), sys_priority) >= 0)
175 return 0;
176 else
177 /* Failed */
178 return -1;
181 /* Return the current thread's priority. */
182 static inline int
183 __gthread_objc_thread_get_priority(void)
185 int sys_priority;
187 if (__gthread_active_p ())
189 if ((sys_priority = pthread_getprio(pthread_self())) >= 0)
191 if (sys_priority >= PRI_FG_MIN_NP
192 && sys_priority <= PRI_FG_MAX_NP)
193 return OBJC_THREAD_INTERACTIVE_PRIORITY;
194 if (sys_priority >= PRI_BG_MIN_NP
195 && sys_priority <= PRI_BG_MAX_NP)
196 return OBJC_THREAD_BACKGROUND_PRIORITY;
197 return OBJC_THREAD_LOW_PRIORITY;
200 /* Failed */
201 return -1;
203 else
204 return OBJC_THREAD_INTERACTIVE_PRIORITY;
207 /* Yield our process time to another thread. */
208 static inline void
209 __gthread_objc_thread_yield(void)
211 if (__gthread_active_p ())
212 pthread_yield();
215 /* Terminate the current thread. */
216 static inline int
217 __gthread_objc_thread_exit(void)
219 if (__gthread_active_p ())
220 /* exit the thread */
221 pthread_exit(&__objc_thread_exit_status);
223 /* Failed if we reached here */
224 return -1;
227 /* Returns an integer value which uniquely describes a thread. */
228 static inline objc_thread_t
229 __gthread_objc_thread_id(void)
231 if (__gthread_active_p ())
233 pthread_t self = pthread_self();
235 return (objc_thread_t) pthread_getunique_np (&self);
237 else
238 return (objc_thread_t)1;
241 /* Sets the thread's local storage pointer. */
242 static inline int
243 __gthread_objc_thread_set_data(void *value)
245 if (__gthread_active_p ())
246 return pthread_setspecific(_objc_thread_storage, value);
247 else
249 thread_local_storage = value;
250 return 0;
254 /* Returns the thread's local storage pointer. */
255 static inline void *
256 __gthread_objc_thread_get_data(void)
258 void *value = NULL;
260 if (__gthread_active_p ())
262 if ( !(pthread_getspecific(_objc_thread_storage, &value)) )
263 return value;
265 return NULL;
267 else
268 return thread_local_storage;
271 /* Backend mutex functions */
273 /* Allocate a mutex. */
274 static inline int
275 __gthread_objc_mutex_allocate(objc_mutex_t mutex)
277 if (__gthread_active_p ()
278 && pthread_mutex_init((pthread_mutex_t *)mutex->backend,
279 pthread_mutexattr_default))
280 return -1;
282 return 0;
285 /* Deallocate a mutex. */
286 static inline int
287 __gthread_objc_mutex_deallocate(objc_mutex_t mutex)
289 if (__gthread_active_p ()
290 && pthread_mutex_destroy((pthread_mutex_t *)mutex->backend))
291 return -1;
293 return 0;
296 /* Grab a lock on a mutex. */
297 static inline int
298 __gthread_objc_mutex_lock(objc_mutex_t mutex)
300 if (__gthread_active_p ())
301 return pthread_mutex_lock((pthread_mutex_t *)mutex->backend);
302 else
303 return 0;
306 /* Try to grab a lock on a mutex. */
307 static inline int
308 __gthread_objc_mutex_trylock(objc_mutex_t mutex)
310 if (__gthread_active_p ()
311 && pthread_mutex_trylock((pthread_mutex_t *)mutex->backend) != 1)
312 return -1;
314 return 0;
317 /* Unlock the mutex */
318 static inline int
319 __gthread_objc_mutex_unlock(objc_mutex_t mutex)
321 if (__gthread_active_p ())
322 return pthread_mutex_unlock((pthread_mutex_t *)mutex->backend);
323 else
324 return 0;
327 /* Backend condition mutex functions */
329 /* Allocate a condition. */
330 static inline int
331 __gthread_objc_condition_allocate(objc_condition_t condition)
333 if (__gthread_active_p ())
334 /* Unimplemented. */
335 return -1;
336 else
337 return 0;
340 /* Deallocate a condition. */
341 static inline int
342 __gthread_objc_condition_deallocate(objc_condition_t condition)
344 if (__gthread_active_p ())
345 /* Unimplemented. */
346 return -1;
347 else
348 return 0;
351 /* Wait on the condition */
352 static inline int
353 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
355 if (__gthread_active_p ())
356 /* Unimplemented. */
357 return -1;
358 else
359 return 0;
362 /* Wake up all threads waiting on this condition. */
363 static inline int
364 __gthread_objc_condition_broadcast(objc_condition_t condition)
366 if (__gthread_active_p ())
367 /* Unimplemented. */
368 return -1;
369 else
370 return 0;
373 /* Wake up one thread waiting on this condition. */
374 static inline int
375 __gthread_objc_condition_signal(objc_condition_t condition)
377 if (__gthread_active_p ())
378 /* Unimplemented. */
379 return -1;
380 else
381 return 0;
384 #else /* _LIBOBJC */
386 static inline int
387 __gthread_once (__gthread_once_t *once, void (*func) (void))
389 if (__gthread_active_p ())
390 return pthread_once (once, func);
391 else
392 return -1;
395 static inline int
396 __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
398 return pthread_keycreate (key, dtor);
401 static inline int
402 __gthread_key_dtor (__gthread_key_t key, void *ptr)
404 /* Nothing needed. */
405 return 0;
408 static inline int
409 __gthread_key_delete (__gthread_key_t key)
411 return pthread_key_delete (key);
414 static inline void *
415 __gthread_getspecific (__gthread_key_t key)
417 void *ptr;
418 if (pthread_getspecific (key, &ptr) == 0)
419 return ptr;
420 else
421 return 0;
424 static inline int
425 __gthread_setspecific (__gthread_key_t key, const void *ptr)
427 return pthread_setspecific (key, (void *) ptr);
430 static inline int
431 __gthread_mutex_lock (__gthread_mutex_t *mutex)
433 if (__gthread_active_p ())
434 return pthread_mutex_lock (mutex);
435 else
436 return 0;
439 static inline int
440 __gthread_mutex_trylock (__gthread_mutex_t *mutex)
442 if (__gthread_active_p ())
443 return pthread_mutex_trylock (mutex);
444 else
445 return 0;
448 static inline int
449 __gthread_mutex_unlock (__gthread_mutex_t *mutex)
451 if (__gthread_active_p ())
452 return pthread_mutex_unlock (mutex);
453 else
454 return 0;
457 #endif /* _LIBOBJC */
459 #endif /* not __gthr_dce_h */