7 #ifndef CLONE_PARENT /* lameass glibc 2.2 doesn't define this */
8 #define CLONE_PARENT 0x00008000 /* even though the manpage documents it */
12 #include "validate.h" /* for CONTROL_STACK_SIZE etc */
15 #include "target-arch-os.h"
18 #ifdef LISP_FEATURE_GENCGC
22 #include "genesis/cons.h"
23 #define ALIEN_STACK_SIZE (1*1024*1024) /* 1Mb size chosen at random */
25 int dynamic_values_bytes
=4096*sizeof(lispobj
); /* same for all threads */
26 struct thread
*all_threads
;
27 lispobj all_threads_lock
;
28 volatile int countdown_to_gc
;
29 extern struct interrupt_data
* global_interrupt_data
;
31 void get_spinlock(lispobj
*word
,int value
);
33 /* this is the first thing that clone() runs in the child (which is
34 * why the silly calling convention). Basically it calls the user's
35 * requested lisp function after doing arch_os_thread_init and
36 * whatever other bookkeeping needs to be done
39 /* set go to 0 to stop the thread before it starts. Convenient if you
40 * want to attach a debugger to it before it does anything */
44 new_thread_trampoline(struct thread
*th
)
48 function
= th
->unbound_marker
;
50 fprintf(stderr
, "/pausing 0x%lx(%d,%d) before new_thread_trampoline(0x%lx)\n",
51 (unsigned long)th
,th
->pid
,getpid(),(unsigned long)function
);
53 fprintf(stderr
, "/continue\n");
55 th
->unbound_marker
= UNBOUND_MARKER_WIDETAG
;
56 #ifdef LISP_FEATURE_SB_THREAD
57 /* wait here until our thread is linked into all_threads: see below */
58 while(th
->pid
<1) sched_yield();
61 lose("th->pid not set up right");
64 if(arch_os_thread_init(th
)==0)
65 return 1; /* failure. no, really */
66 #if !defined(LISP_FEATURE_SB_THREAD) && defined(LISP_FEATURE_X86)
67 return call_into_lisp_first_time(function
,args
,0);
69 return funcall0(function
);
73 /* this is called from any other thread to create the new one, and
74 * initialize all parts of it that can be initialized from another
78 pid_t
create_thread(lispobj initial_function
) {
79 union per_thread_data
*per_thread
;
80 struct thread
*th
=0; /* subdue gcc */
84 /* may as well allocate all the spaces at once: it saves us from
85 * having to decide what to do if only some of the allocations
88 THREAD_CONTROL_STACK_SIZE
+
94 if(!spaces
) goto cleanup
;
95 per_thread
=(union per_thread_data
*)
97 THREAD_CONTROL_STACK_SIZE
+
101 th
=&per_thread
->thread
;
103 memcpy(per_thread
,arch_os_get_current_thread(),
104 dynamic_values_bytes
);
106 #ifdef LISP_FEATURE_SB_THREAD
108 for(i
=0;i
<(dynamic_values_bytes
/sizeof(lispobj
));i
++)
109 per_thread
->dynamic_values
[i
]=UNBOUND_MARKER_WIDETAG
;
110 if(SymbolValue(FREE_TLS_INDEX
,0)==UNBOUND_MARKER_WIDETAG
)
113 make_fixnum(MAX_INTERRUPTS
+
114 sizeof(struct thread
)/sizeof(lispobj
)),
116 #define STATIC_TLS_INIT(sym,field) \
117 ((struct symbol *)(sym-OTHER_POINTER_LOWTAG))->tls_index= \
118 make_fixnum(THREAD_SLOT_OFFSET_WORDS(field))
120 STATIC_TLS_INIT(BINDING_STACK_START
,binding_stack_start
);
121 STATIC_TLS_INIT(BINDING_STACK_POINTER
,binding_stack_pointer
);
122 STATIC_TLS_INIT(CONTROL_STACK_START
,control_stack_start
);
123 STATIC_TLS_INIT(CONTROL_STACK_END
,control_stack_end
);
124 STATIC_TLS_INIT(ALIEN_STACK
,alien_stack_pointer
);
125 #ifdef LISP_FEATURE_X86
126 STATIC_TLS_INIT(PSEUDO_ATOMIC_ATOMIC
,pseudo_atomic_atomic
);
127 STATIC_TLS_INIT(PSEUDO_ATOMIC_INTERRUPTED
,pseudo_atomic_interrupted
);
129 #undef STATIC_TLS_INIT
133 th
->control_stack_start
= spaces
;
134 th
->binding_stack_start
=
135 (lispobj
*)((void*)th
->control_stack_start
+THREAD_CONTROL_STACK_SIZE
);
136 th
->control_stack_end
= th
->binding_stack_start
;
137 th
->alien_stack_start
=
138 (lispobj
*)((void*)th
->binding_stack_start
+BINDING_STACK_SIZE
);
139 th
->binding_stack_pointer
=th
->binding_stack_start
;
142 #ifdef LISP_FEATURE_STACK_GROWS_DOWNWARD_NOT_UPWARD
143 th
->alien_stack_pointer
=((void *)th
->alien_stack_start
144 + ALIEN_STACK_SIZE
-4); /* naked 4. FIXME */
146 th
->alien_stack_pointer
=((void *)th
->alien_stack_start
);
148 #ifdef LISP_FEATURE_X86
149 th
->pseudo_atomic_interrupted
=0;
150 /* runtime.c used to set PSEUDO_ATOMIC_ATOMIC =1 globally. I'm not
151 * sure why, but it appears to help */
152 th
->pseudo_atomic_atomic
=make_fixnum(1);
154 #ifdef LISP_FEATURE_GENCGC
155 gc_set_region_empty(&th
->alloc_region
);
158 #ifndef LISP_FEATURE_SB_THREAD
159 /* the tls-points-into-struct-thread trick is only good for threaded
160 * sbcl, because unithread sbcl doesn't have tls. So, we copy the
161 * appropriate values from struct thread here, and make sure that
162 * we use the appropriate SymbolValue macros to access any of the
163 * variable quantities from the C runtime. It's not quite OAOOM,
164 * it just feels like it */
165 SetSymbolValue(BINDING_STACK_START
,th
->binding_stack_start
,th
);
166 SetSymbolValue(CONTROL_STACK_START
,th
->control_stack_start
,th
);
167 SetSymbolValue(CONTROL_STACK_END
,th
->control_stack_end
,th
);
168 #ifdef LISP_FEATURE_X86
169 SetSymbolValue(BINDING_STACK_POINTER
,th
->binding_stack_pointer
,th
);
170 SetSymbolValue(ALIEN_STACK
,th
->alien_stack_pointer
,th
);
171 SetSymbolValue(PSEUDO_ATOMIC_ATOMIC
,th
->pseudo_atomic_atomic
,th
);
172 SetSymbolValue(PSEUDO_ATOMIC_INTERRUPTED
,th
->pseudo_atomic_interrupted
,th
);
174 current_binding_stack_pointer
=th
->binding_stack_pointer
;
175 current_control_stack_pointer
=th
->control_stack_start
;
178 bind_variable(CURRENT_CATCH_BLOCK
,make_fixnum(0),th
);
179 bind_variable(CURRENT_UNWIND_PROTECT_BLOCK
,make_fixnum(0),th
);
180 bind_variable(FREE_INTERRUPT_CONTEXT_INDEX
,make_fixnum(0),th
);
181 bind_variable(INTERRUPT_PENDING
, NIL
,th
);
182 bind_variable(INTERRUPTS_ENABLED
,T
,th
);
184 th
->interrupt_data
=os_validate(0,(sizeof (struct interrupt_data
)));
186 memcpy(th
->interrupt_data
,
187 arch_os_get_current_thread()->interrupt_data
,
188 sizeof (struct interrupt_data
));
190 memcpy(th
->interrupt_data
,global_interrupt_data
,
191 sizeof (struct interrupt_data
));
193 th
->unbound_marker
=initial_function
;
194 #ifdef LISP_FEATURE_SB_THREAD
195 #if defined(LISP_FEATURE_X86) && defined (LISP_FEATURE_LINUX)
197 clone(new_thread_trampoline
,
198 (((void*)th
->control_stack_start
)+THREAD_CONTROL_STACK_SIZE
-4),
199 (((getpid()!=parent_pid
)?(CLONE_PARENT
):0)
200 |CLONE_FILES
|SIGALRM
|CLONE_VM
),th
);
204 #error this stuff presently only works on x86 Linux
209 get_spinlock(&all_threads_lock
,kid_pid
);
210 th
->next
=all_threads
;
212 /* note that th->pid is 0 at this time. We rely on all_threads_lock
213 * to ensure that we don't have >1 thread with pid=0 on the list at once
215 protect_control_stack_guard_page(th
->pid
,1);
216 release_spinlock(&all_threads_lock
);
217 th
->pid
=kid_pid
; /* child will not start until this is set */
218 #ifndef LISP_FEATURE_SB_THREAD
219 new_thread_trampoline(all_threads
); /* call_into_lisp */
220 lose("Clever child? Idiot savant, verging on the.");
225 /* if(th && th->tls_cookie>=0) os_free_tls_pointer(th); */
226 if(spaces
) os_invalidate(spaces
,
227 THREAD_CONTROL_STACK_SIZE
+BINDING_STACK_SIZE
+
228 ALIEN_STACK_SIZE
+dynamic_values_bytes
);
232 void destroy_thread (struct thread
*th
)
234 /* precondition: the unix task has already been killed and exited.
235 * This is called by the parent */
236 #ifdef LISP_FEATURE_GENCGC
237 gc_alloc_update_page_tables(0, &th
->alloc_region
);
239 get_spinlock(&all_threads_lock
,th
->pid
);
240 if(countdown_to_gc
>0) countdown_to_gc
--;
242 all_threads
=th
->next
;
244 struct thread
*th1
=all_threads
;
245 while(th1
->next
!=th
) th1
=th1
->next
;
246 th1
->next
=th
->next
; /* unlink */
248 release_spinlock(&all_threads_lock
);
249 if(th
&& th
->tls_cookie
>=0) arch_os_thread_cleanup(th
);
250 os_invalidate((os_vm_address_t
) th
->control_stack_start
,
252 * (th
->control_stack_end
-th
->control_stack_start
)) +
253 BINDING_STACK_SIZE
+ALIEN_STACK_SIZE
+dynamic_values_bytes
+
258 struct thread
*find_thread_by_pid(pid_t pid
)
262 if(th
->pid
==pid
) return th
;
266 void block_sigcont(void)
268 /* don't allow ourselves to receive SIGCONT while we're in the
269 * "ambiguous" state of being on the queue but not actually stopped.
272 sigemptyset(&newset
);
273 sigaddset(&newset
,SIGCONT
);
274 sigprocmask(SIG_BLOCK
, &newset
, 0);
277 /* This is not needed unless #+SB-THREAD, and since sigwaitinfo()
278 * doesn't seem to be easily available everywhere (OpenBSD...) it's
279 * more trouble than it's worth to compile it when not needed. */
280 #if defined LISP_FEATURE_SB_THREAD
281 void unblock_sigcont_and_sleep(void)
285 sigaddset(&set
,SIGCONT
);
289 }while(errno
==EINTR
);
290 sigprocmask(SIG_UNBLOCK
,&set
,0);
293 int interrupt_thread(pid_t pid
, lispobj function
)
296 sigval
.sival_int
=function
;
298 return sigqueue(pid
, SIG_INTERRUPT_THREAD
, sigval
);
301 void gc_stop_the_world()
303 /* stop all other threads by sending them SIG_STOP_FOR_GC */
304 struct thread
*p
,*th
=arch_os_get_current_thread();
305 struct thread
*tail
=0;
308 get_spinlock(&all_threads_lock
,th
->pid
);
309 if(tail
!=all_threads
) {
310 /* new threads always get consed onto the front of all_threads,
311 * and may be created by any thread that we haven't signalled
312 * yet or hasn't received our signal and stopped yet. So, check
313 * for them on each time around */
314 for(p
=all_threads
;p
!=tail
;p
=p
->next
) {
317 kill(p
->pid
,SIG_STOP_FOR_GC
);
321 finished
=(countdown_to_gc
==0);
323 release_spinlock(&all_threads_lock
);
328 void gc_start_the_world()
330 struct thread
*p
,*th
=arch_os_get_current_thread();
331 get_spinlock(&all_threads_lock
,th
->pid
);
332 for(p
=all_threads
;p
;p
=p
->next
) {
334 kill(p
->pid
,SIGCONT
);
336 release_spinlock(&all_threads_lock
);