* src/vm/jit/stacktrace.c (stacktrace_create): Changed signature.
[cacao.git] / src / threads / native / threads.h
1 /* src/threads/native/threads.h - native threads header
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: threads.h 7657 2007-04-03 15:51:52Z twisti $
26
27 */
28
29
30 #ifndef _THREADS_H
31 #define _THREADS_H
32
33 /* forward typedefs ***********************************************************/
34
35 typedef struct threadobject          threadobject;
36 typedef union  threads_table_entry_t threads_table_entry_t;
37 typedef struct threads_table_t       threads_table_t;
38
39
40 #include "config.h"
41
42 #include <pthread.h>
43 #include <ucontext.h>
44
45 #include "vm/types.h"
46
47 #include "mm/memory.h"
48 #include "native/jni.h"
49 #include "native/include/java_lang_Thread.h"
50
51 #include "threads/native/lock.h"
52
53 #include "vm/global.h"
54
55 #include "vm/jit/stacktrace.h"
56
57 #if defined(ENABLE_INTRP)
58 #include "vm/jit/intrp/intrp.h"
59 #endif
60
61 #if defined(__DARWIN__)
62 # include <mach/mach.h>
63
64 typedef struct {
65         pthread_mutex_t mutex;
66         pthread_cond_t cond;
67         int value;
68 } sem_t;
69
70 #else
71 # include <semaphore.h>
72 #endif
73
74
75 /* current threadobject *******************************************************/
76
77 #if defined(HAVE___THREAD)
78
79 #define THREADSPECIFIC    __thread
80 #define THREADOBJECT      threads_current_threadobject
81
82 extern __thread threadobject *threads_current_threadobject;
83
84 #else /* defined(HAVE___THREAD) */
85
86 #define THREADSPECIFIC
87 #define THREADOBJECT \
88         ((threadobject *) pthread_getspecific(threads_current_threadobject_key))
89
90 extern pthread_key_t threads_current_threadobject_key;
91
92 #endif /* defined(HAVE___THREAD) */
93
94
95 /* threads_table_entry_t *******************************************************
96
97    An entry in the global threads table.
98
99 *******************************************************************************/
100
101 union threads_table_entry_t {
102         threadobject       *thread;        /* an existing thread                  */
103         ptrint              nextfree;      /* next free index                     */
104 };
105
106
107 /* threads_table_t *************************************************************
108
109    Struct for the global threads table.
110
111 *******************************************************************************/
112
113 struct threads_table_t {
114         threads_table_entry_t *table;      /* the table, threads[0] is the head   */
115                                            /* of the free list. Real entries      */
116                                                                            /* start at threads[1].                */
117         s4                     size;       /* current size of the table           */
118 };
119
120
121 /* threadobject ****************************************************************
122
123    Struct holding thread local variables.
124
125 *******************************************************************************/
126
127 #define THREAD_FLAG_JAVA        0x01    /* a normal Java thread               */
128 #define THREAD_FLAG_INTERNAL    0x02    /* CACAO internal thread              */
129 #define THREAD_FLAG_DAEMON      0x04    /* daemon thread                      */
130
131
132 struct threadobject {
133         java_lang_Thread     *object;       /* link to java.lang.Thread object    */
134
135         lock_execution_env_t  ee;           /* data for the lock implementation   */
136
137         threadobject         *next;         /* next thread in list, or self       */
138         threadobject         *prev;         /* prev thread in list, or self       */
139
140         ptrint                thinlock;     /* pre-computed thin lock value       */
141
142         s4                    index;        /* thread index, starting with 1      */
143         u4                    flags;        /* flag field                         */
144
145         pthread_t             tid;          /* pthread id                         */
146
147 #if defined(__DARWIN__)
148         mach_port_t           mach_thread;       /* Darwin thread id              */
149 #endif
150
151         pthread_mutex_t       joinmutex;
152         pthread_cond_t        joincond;
153
154         /* these are used for the wait/notify implementation                      */
155         pthread_mutex_t       waitmutex;
156         pthread_cond_t        waitcond;
157
158         bool                  interrupted;
159         bool                  signaled;
160         bool                  sleeping;
161
162         u1                   *pc;           /* current PC (used for profiling)    */
163
164         java_objectheader    *_exceptionptr;     /* current exception             */
165         stackframeinfo       *_stackframeinfo;   /* current native stackframeinfo */
166         localref_table       *_localref_table;   /* JNI local references          */
167
168 #if defined(ENABLE_INTRP)
169         Cell                 *_global_sp;        /* stack pointer for interpreter */
170 #endif
171
172         dumpinfo_t            dumpinfo;     /* dump memory info structure         */
173 };
174
175
176 /* exception pointer **********************************************************/
177
178 #define exceptionptr      (&(THREADOBJECT->_exceptionptr))
179
180
181 /* stackframeinfo *************************************************************/
182
183 #define STACKFRAMEINFO    (THREADOBJECT->_stackframeinfo)
184
185
186 /* variables ******************************************************************/
187
188 extern threadobject *mainthreadobj;
189
190
191 /* functions ******************************************************************/
192
193 void threads_sem_init(sem_t *sem, bool shared, int value);
194 void threads_sem_wait(sem_t *sem);
195 void threads_sem_post(sem_t *sem);
196
197 threadobject *threads_get_current_threadobject(void);
198
199 void threads_preinit(void);
200 bool threads_init(void);
201
202 void threads_start_javathread(java_lang_Thread *object);
203 void threads_start_thread(threadobject *thread, functionptr function);
204
205 void threads_set_thread_priority(pthread_t tid, int priority);
206
207 bool threads_attach_current_thread(JavaVMAttachArgs *vm_aargs, bool isdaemon);
208 bool threads_detach_thread(threadobject *thread);
209
210 void threads_join_all_threads(void);
211
212 void threads_sleep(s8 millis, s4 nanos);
213 void threads_yield(void);
214
215 bool threads_wait_with_timeout_relative(threadobject *t, s8 millis, s4 nanos);
216
217 void threads_thread_interrupt(threadobject *thread);
218 bool threads_check_if_interrupted_and_reset(void);
219 bool threads_thread_has_been_interrupted(threadobject *thread);
220
221 void threads_cast_stopworld(void);
222 void threads_cast_startworld(void);
223
224 #endif /* _THREADS_H */
225
226
227 /*
228  * These are local overrides for various environment variables in Emacs.
229  * Please do not remove this and leave it at the end of the file, where
230  * Emacs will automagically detect them.
231  * ---------------------------------------------------------------------
232  * Local variables:
233  * mode: c
234  * indent-tabs-mode: t
235  * c-basic-offset: 4
236  * tab-width: 4
237  * End:
238  * vim:noexpandtab:sw=4:ts=4:
239  */