1 #if !defined(_INCLUDE_THREAD_H_)
2 #define _INCLUDE_THREAD_H_
11 #include "interrupt.h"
12 #ifdef LISP_FEATURE_GENCGC
13 #include "gencgc-alloc-region.h"
15 struct alloc_region { };
17 #include "genesis/symbol.h"
18 #include "genesis/static-symbols.h"
19 #include "genesis/thread.h"
20 #include "genesis/fdefn.h"
22 #define STATE_RUNNING (make_fixnum(1))
23 #define STATE_SUSPENDED (make_fixnum(2))
24 #define STATE_DEAD (make_fixnum(3))
26 #ifdef LISP_FEATURE_SB_THREAD
28 /* Only access thread state with blockables blocked. */
30 thread_state(struct thread *thread)
33 pthread_mutex_lock(thread->state_lock);
34 state = thread->state;
35 pthread_mutex_unlock(thread->state_lock);
40 set_thread_state(struct thread *thread, lispobj state)
42 pthread_mutex_lock(thread->state_lock);
43 thread->state = state;
44 pthread_cond_broadcast(thread->state_cond);
45 pthread_mutex_unlock(thread->state_lock);
49 wait_for_thread_state_change(struct thread *thread, lispobj state)
51 pthread_mutex_lock(thread->state_lock);
52 while (thread->state == state)
53 pthread_cond_wait(thread->state_cond, thread->state_lock);
54 pthread_mutex_unlock(thread->state_lock);
59 extern int kill_safely(os_thread_t os_thread, int signal);
61 #define THREAD_SLOT_OFFSET_WORDS(c) \
62 (offsetof(struct thread,c)/(sizeof (struct thread *)))
64 union per_thread_data {
66 lispobj dynamic_values[1]; /* actually more like 4000 or so */
69 extern struct thread *all_threads;
70 extern int dynamic_values_bytes;
72 #if defined(LISP_FEATURE_DARWIN)
73 #define CONTROL_STACK_ALIGNMENT_BYTES 8192 /* darwin wants page-aligned stacks */
74 #define THREAD_ALIGNMENT_BYTES CONTROL_STACK_ALIGNMENT_BYTES
76 #define THREAD_ALIGNMENT_BYTES BACKEND_PAGE_BYTES
77 #define CONTROL_STACK_ALIGNMENT_BYTES 16
81 #ifdef LISP_FEATURE_SB_THREAD
82 #define for_each_thread(th) for(th=all_threads;th;th=th->next)
84 /* there's some possibility a SSC could notice this never actually
86 #define for_each_thread(th) for(th=all_threads;th;th=0)
89 static inline lispobj *
90 SymbolValueAddress(u64 tagged_symbol_pointer, void *thread)
92 struct symbol *sym= (struct symbol *)
93 (pointer_sized_uint_t)(tagged_symbol_pointer-OTHER_POINTER_LOWTAG);
94 #ifdef LISP_FEATURE_SB_THREAD
95 if(thread && sym->tls_index) {
96 lispobj *r = &(((union per_thread_data *)thread)
97 ->dynamic_values[fixnum_value(sym->tls_index)]);
98 if((*r)!=NO_TLS_VALUE_MARKER_WIDETAG) return r;
104 static inline lispobj
105 SymbolValue(u64 tagged_symbol_pointer, void *thread)
107 struct symbol *sym= (struct symbol *)
108 (pointer_sized_uint_t)(tagged_symbol_pointer-OTHER_POINTER_LOWTAG);
109 #ifdef LISP_FEATURE_SB_THREAD
110 if(thread && sym->tls_index) {
112 ((union per_thread_data *)thread)
113 ->dynamic_values[fixnum_value(sym->tls_index)];
114 if(r!=NO_TLS_VALUE_MARKER_WIDETAG) return r;
120 static inline lispobj
121 SymbolTlValue(u64 tagged_symbol_pointer, void *thread)
123 struct symbol *sym= (struct symbol *)
124 (pointer_sized_uint_t)(tagged_symbol_pointer-OTHER_POINTER_LOWTAG);
125 #ifdef LISP_FEATURE_SB_THREAD
126 return ((union per_thread_data *)thread)
127 ->dynamic_values[fixnum_value(sym->tls_index)];
134 SetSymbolValue(u64 tagged_symbol_pointer,lispobj val, void *thread)
136 struct symbol *sym= (struct symbol *)
137 (pointer_sized_uint_t)(tagged_symbol_pointer-OTHER_POINTER_LOWTAG);
138 #ifdef LISP_FEATURE_SB_THREAD
139 if(thread && sym->tls_index) {
140 lispobj *pr= &(((union per_thread_data *)thread)
141 ->dynamic_values[fixnum_value(sym->tls_index)]);
142 if(*pr!=NO_TLS_VALUE_MARKER_WIDETAG) {
152 SetTlSymbolValue(u64 tagged_symbol_pointer,lispobj val, void *thread)
154 #ifdef LISP_FEATURE_SB_THREAD
155 struct symbol *sym= (struct symbol *)
156 (pointer_sized_uint_t)(tagged_symbol_pointer-OTHER_POINTER_LOWTAG);
157 ((union per_thread_data *)thread)
158 ->dynamic_values[fixnum_value(sym->tls_index)]
161 SetSymbolValue(tagged_symbol_pointer,val,thread) ;
165 /* This only works for static symbols. */
166 static inline lispobj
167 StaticSymbolFunction(lispobj sym)
169 return ((struct fdefn *)native_pointer(SymbolValue(sym, 0)))->fun;
173 os_context_t *get_interrupt_context_for_thread(struct thread *th)
175 return th->interrupt_contexts
176 [fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,th)-1)];
179 #if defined(LISP_FEATURE_SB_THREAD) && defined(LISP_FEATURE_GCC_TLS)
180 extern __thread struct thread *current_thread;
183 /* This is clearly per-arch and possibly even per-OS code, but we can't
184 * put it somewhere sensible like x86-linux-os.c because it needs too
185 * much stuff like struct thread and all_threads to be defined, which
186 * usually aren't by that time. So, it's here instead. Sorry */
188 static inline struct thread *arch_os_get_current_thread(void)
190 #if defined(LISP_FEATURE_SB_THREAD)
191 #if defined(LISP_FEATURE_X86)
192 register struct thread *me=0;
194 #if defined(LISP_FEATURE_DARWIN) && defined(LISP_FEATURE_RESTORE_FS_SEGMENT_REGISTER_FROM_TLS)
196 struct thread *th = pthread_getspecific(specials);
197 sel.index = th->tls_cookie;
200 __asm__ __volatile__ ("movw %w0, %%fs" : : "r"(sel));
201 #elif defined(LISP_FEATURE_FREEBSD)
202 #ifdef LISP_FEATURE_GCC_TLS
203 struct thread *th = current_thread;
205 struct thread *th = pthread_getspecific(specials);
207 #ifdef LISP_FEATURE_RESTORE_TLS_SEGMENT_REGISTER_FROM_TLS
208 unsigned int sel = LSEL(th->tls_cookie, SEL_UPL);
209 unsigned int fs = rfs();
211 /* Load FS only if it's necessary. Modifying a selector
212 * causes privilege checking and it takes long time. */
218 __asm__ __volatile__ ("movl %%fs:%c1,%0" : "=r" (me)
219 : "i" (offsetof (struct thread,this)));
223 #ifdef LISP_FEATURE_GCC_TLS
224 return current_thread;
226 return pthread_getspecific(specials);
234 #if defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER)
235 #define THREAD_STRUCT_TO_EXCEPTION_PORT(th) ((mach_port_t) th)
236 #define EXCEPTION_PORT_TO_THREAD_STRUCT(th) ((struct thread *) th)
239 extern void create_initial_thread(lispobj);
241 #endif /* _INCLUDE_THREAD_H_ */