[project @ 2003-12-15 16:43:45 by simonmar]
[ghc-hetmet.git] / ghc / rts / Capability.c
1 /* ---------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2002
4  *
5  * Capabilities
6  *
7  * A Capability represent the token required to execute STG code,
8  * and all the state an OS thread/task needs to run Haskell code:
9  * its STG registers, a pointer to its TSO, a nursery etc. During
10  * STG execution, a pointer to the capabilitity is kept in a
11  * register (BaseReg).
12  *
13  * Only in an SMP build will there be multiple capabilities, for
14  * the threaded RTS and other non-threaded builds, there is only
15  * one global capability, namely MainCapability.
16  * 
17  * --------------------------------------------------------------------------*/
18 #include "PosixSource.h"
19 #include "Rts.h"
20 #include "RtsUtils.h"
21 #include "OSThreads.h"
22 #include "Capability.h"
23 #include "Schedule.h"  /* to get at EMPTY_RUN_QUEUE() */
24 #include "Signals.h" /* to get at handleSignalsInThisThread() */
25
26 #if !defined(SMP)
27 Capability MainCapability;     /* for non-SMP, we have one global capability */
28 #endif
29
30 nat rts_n_free_capabilities;
31
32 #if defined(RTS_SUPPORTS_THREADS)
33 /* returning_worker_cond: when a worker thread returns from executing an
34  * external call, it needs to wait for an RTS Capability before passing
35  * on the result of the call to the Haskell thread that made it.
36  * 
37  * returning_worker_cond is signalled in Capability.releaseCapability().
38  *
39  */
40 Condition returning_worker_cond = INIT_COND_VAR;
41
42 /*
43  * To avoid starvation of threads blocked on worker_thread_cond,
44  * the task(s) that enter the Scheduler will check to see whether
45  * there are one or more worker threads blocked waiting on
46  * returning_worker_cond.
47  */
48 nat rts_n_waiting_workers = 0;
49
50 /* thread_ready_cond: when signalled, a thread has become runnable for a
51  * task to execute.
52  *
53  * In the non-SMP case, it also implies that the thread that is woken up has
54  * exclusive access to the RTS and all its data structures (that are not
55  * locked by the Scheduler's mutex).
56  *
57  * thread_ready_cond is signalled whenever noCapabilities doesn't hold.
58  *
59  */
60 Condition thread_ready_cond = INIT_COND_VAR;
61
62 /*
63  * To be able to make an informed decision about whether or not 
64  * to create a new task when making an external call, keep track of
65  * the number of tasks currently blocked waiting on thread_ready_cond.
66  * (if > 0 => no need for a new task, just unblock an existing one).
67  *
68  * waitForWorkCapability() takes care of keeping it up-to-date;
69  * Task.startTask() uses its current value.
70  */
71 nat rts_n_waiting_tasks = 0;
72
73 static Condition *passTarget = NULL;
74 static rtsBool passingCapability = rtsFalse;
75 #endif
76
77 /* -----------------------------------------------------------------------------
78    Initialisation
79    -------------------------------------------------------------------------- */
80 static
81 void
82 initCapability( Capability *cap )
83 {
84     cap->f.stgGCEnter1     = (F_)__stg_gc_enter_1;
85     cap->f.stgGCFun        = (F_)__stg_gc_fun;
86 }
87
88 #if defined(SMP)
89 static void initCapabilities_(nat n);
90 #endif
91
92 /* 
93  * Function:  initCapabilities()
94  *
95  * Purpose:   set up the Capability handling. For the SMP build,
96  *            we keep a table of them, the size of which is
97  *            controlled by the user via the RTS flag RtsFlags.ParFlags.nNodes
98  *
99  * Pre-conditions: no locks assumed held.
100  */
101 void
102 initCapabilities()
103 {
104 #if defined(RTS_SUPPORTS_THREADS)
105   initCondition(&returning_worker_cond);
106   initCondition(&thread_ready_cond);
107 #endif
108
109 #if defined(SMP)
110   initCapabilities_(RtsFlags.ParFlags.nNodes);
111 #else
112   initCapability(&MainCapability);
113   rts_n_free_capabilities = 1;
114 #endif
115
116   return;
117 }
118
119 #if defined(SMP)
120 /* Free capability list. */
121 static Capability *free_capabilities; /* Available capabilities for running threads */
122 static Capability *returning_capabilities; 
123         /* Capabilities being passed to returning worker threads */
124 #endif
125
126 /* -----------------------------------------------------------------------------
127    Acquiring capabilities
128    -------------------------------------------------------------------------- */
129
130 /*
131  * Function:  grabCapability(Capability**)
132  * 
133  * Purpose:   the act of grabbing a capability is easy; just 
134  *            remove one from the free capabilities list (which
135  *            may just have one entry). In threaded builds, worker
136  *            threads are prevented from doing so willy-nilly
137  *            via the condition variables thread_ready_cond and
138  *            returning_worker_cond.
139  *
140  */ 
141 void grabCapability(Capability** cap)
142 {
143 #if !defined(SMP)
144   ASSERT(rts_n_free_capabilities == 1);
145   rts_n_free_capabilities = 0;
146   *cap = &MainCapability;
147   handleSignalsInThisThread();
148 #else
149   *cap = free_capabilities;
150   free_capabilities = (*cap)->link;
151   rts_n_free_capabilities--;
152 #endif
153 #ifdef RTS_SUPPORTS_THREADS
154     IF_DEBUG(scheduler, sched_belch("worker: got capability"));
155 #endif
156 }
157
158 /*
159  * Function:  releaseCapability(Capability*)
160  *
161  * Purpose:   Letting go of a capability. Causes a
162  *            'returning worker' thread or a 'waiting worker'
163  *            to wake up, in that order.
164  *
165  */
166 void releaseCapability(Capability* cap
167 #if !defined(SMP)
168                        STG_UNUSED
169 #endif
170 )
171 {       // Precondition: sched_mutex must be held
172 #if defined(RTS_SUPPORTS_THREADS)
173 #ifndef SMP
174   ASSERT(rts_n_free_capabilities == 0);
175 #endif
176   /* Check to see whether a worker thread can be given
177      the go-ahead to return the result of an external call..*/
178   if (rts_n_waiting_workers > 0) {
179     /* Decrement the counter here to avoid livelock where the
180      * thread that is yielding its capability will repeatedly
181      * signal returning_worker_cond.
182      */
183 #if defined(SMP)
184         // SMP variant untested
185     cap->link = returning_capabilities;
186     returning_capabilities = cap;
187 #else
188 #endif
189     rts_n_waiting_workers--;
190     signalCondition(&returning_worker_cond);
191     IF_DEBUG(scheduler, sched_belch("worker: released capability to returning worker"));
192   } else /*if ( !EMPTY_RUN_QUEUE() )*/ {
193 #if defined(SMP)
194     cap->link = free_capabilities;
195     free_capabilities = cap;
196     rts_n_free_capabilities++;
197 #else
198     rts_n_free_capabilities = 1;
199 #endif
200     /* Signal that a capability is available */
201     signalCondition(&thread_ready_cond);
202     startSchedulerTaskIfNecessary();  // if there is more work to be done,
203                                       // we'll need a new thread
204     IF_DEBUG(scheduler, sched_belch("worker: released capability"));
205   }
206 #endif
207   return;
208 }
209
210 #if defined(RTS_SUPPORTS_THREADS)
211 /*
212  * When a native thread has completed the execution of an external
213  * call, it needs to communicate the result back. This is done
214  * as follows:
215  *
216  *  - in resumeThread(), the thread calls grabReturnCapability().
217  *  - If no capabilities are readily available, grabReturnCapability()
218  *    increments a counter rts_n_waiting_workers, and blocks
219  *    waiting for the condition returning_worker_cond to become
220  *    signalled.
221  *  - upon entry to the Scheduler, a worker thread checks the
222  *    value of rts_n_waiting_workers. If > 0, the worker thread
223  *    will yield its capability to let a returning worker thread
224  *    proceed with returning its result -- this is done via
225  *    yieldToReturningWorker().
226  *  - the worker thread that yielded its capability then tries
227  *    to re-grab a capability and re-enter the Scheduler.
228  */
229
230 /*
231  * Function: grabReturnCapability(Capability**)
232  *
233  * Purpose:  when an OS thread returns from an external call,
234  * it calls grabReturnCapability() (via Schedule.resumeThread())
235  * to wait for permissions to enter the RTS & communicate the
236  * result of the external call back to the Haskell thread that
237  * made it.
238  *
239  * Pre-condition:  pMutex is held.
240  * Post-condition: pMutex is still held and a capability has
241  *                 been assigned to the worker thread.
242  */
243 void
244 grabReturnCapability(Mutex* pMutex, Capability** pCap)
245 {
246   IF_DEBUG(scheduler, 
247            sched_belch("worker: returning; workers waiting: %d",
248                        rts_n_waiting_workers));
249   if ( noCapabilities() || passingCapability ) {
250     rts_n_waiting_workers++;
251     wakeBlockedWorkerThread();
252     context_switch = 1; // make sure it's our turn soon
253     waitCondition(&returning_worker_cond, pMutex);
254 #if defined(SMP)
255     *pCap = returning_capabilities;
256     returning_capabilities = (*pCap)->link;
257 #else
258     *pCap = &MainCapability;
259     ASSERT(rts_n_free_capabilities == 0);
260     handleSignalsInThisThread();
261 #endif
262   } else {
263     grabCapability(pCap);
264   }
265   return;
266 }
267
268
269 /* -----------------------------------------------------------------------------
270    Yielding/waiting for capabilities
271    -------------------------------------------------------------------------- */
272
273 /*
274  * Function: yieldToReturningWorker(Mutex*,Capability*,Condition*)
275  *
276  * Purpose:  when, upon entry to the Scheduler, an OS worker thread
277  *           spots that one or more threads are blocked waiting for
278  *           permission to return back their result, it gives up
279  *           its Capability.
280  *           Immediately afterwards, it tries to reaquire the Capabilty
281  *           using waitForWorkCapability.
282  *
283  *
284  * Pre-condition:  pMutex is assumed held and the thread possesses
285  *                 a Capability.
286  * Post-condition: pMutex is held and the thread possesses
287  *                 a Capability.
288  */
289 void
290 yieldToReturningWorker(Mutex* pMutex, Capability** pCap, Condition* pThreadCond)
291 {
292   if ( rts_n_waiting_workers > 0 ) {
293     IF_DEBUG(scheduler, sched_belch("worker: giving up capability"));
294     releaseCapability(*pCap);
295         /* And wait for work */
296     waitForWorkCapability(pMutex, pCap, pThreadCond);
297     IF_DEBUG(scheduler,
298              sched_belch("worker: got back capability (after yieldToReturningWorker)"));
299   }
300   return;
301 }
302
303
304 /*
305  * Function: waitForWorkCapability(Mutex*, Capability**, Condition*)
306  *
307  * Purpose:  wait for a Capability to become available. In
308  *           the process of doing so, updates the number
309  *           of tasks currently blocked waiting for a capability/more
310  *           work. That counter is used when deciding whether or
311  *           not to create a new worker thread when an external
312  *           call is made.
313  *           If pThreadCond is not NULL, a capability can be specifically
314  *           passed to this thread using passCapability.
315  *
316  * Pre-condition: pMutex is held.
317  * Post-condition: pMutex is held and *pCap is held by the current thread
318  */
319  
320 void 
321 waitForWorkCapability(Mutex* pMutex, Capability** pCap, Condition* pThreadCond)
322 {
323 #ifdef SMP
324   #error SMP version not implemented
325 #endif
326   while ( noCapabilities() || (passingCapability && passTarget != pThreadCond)) {
327     IF_DEBUG(scheduler,
328              sched_belch("worker: wait for capability (cond: %p)",
329                          pThreadCond));
330     if(pThreadCond)
331     {
332       waitCondition(pThreadCond, pMutex);
333       IF_DEBUG(scheduler, sched_belch("worker: get passed capability"));
334     }
335     else
336     {
337       rts_n_waiting_tasks++;
338       waitCondition(&thread_ready_cond, pMutex);
339       rts_n_waiting_tasks--;
340       IF_DEBUG(scheduler, sched_belch("worker: get normal capability"));
341     }
342   }
343   passingCapability = rtsFalse;
344   grabCapability(pCap);
345   return;
346 }
347
348 /*
349  * Function: passCapability(Mutex*, Capability*, Condition*)
350  *
351  * Purpose:  Let go of the capability and make sure the thread associated
352  *           with the Condition pTargetThreadCond gets it next.
353  *
354  * Pre-condition: pMutex is held and cap is held by the current thread
355  * Post-condition: pMutex is held; cap will be grabbed by the "target"
356  *                 thread when pMutex is released.
357  */
358
359 void
360 passCapability(Mutex* pMutex, Capability* cap, Condition *pTargetThreadCond)
361 {
362 #ifdef SMP
363   #error SMP version not implemented
364 #endif
365     rts_n_free_capabilities = 1;
366     signalCondition(pTargetThreadCond);
367     passTarget = pTargetThreadCond;
368     passingCapability = rtsTrue;
369     IF_DEBUG(scheduler, sched_belch("worker: passCapability"));
370 }
371
372 /*
373  * Function: passCapabilityToWorker(Mutex*, Capability*)
374  *
375  * Purpose:  Let go of the capability and make sure that a
376  *           "plain" worker thread (not a bound thread) gets it next.
377  *
378  * Pre-condition: pMutex is held and cap is held by the current thread
379  * Post-condition: pMutex is held; cap will be grabbed by the "target"
380  *                 thread when pMutex is released.
381  */
382
383 void
384 passCapabilityToWorker(Mutex* pMutex, Capability* cap)
385 {
386 #ifdef SMP
387   #error SMP version not implemented
388 #endif
389     rts_n_free_capabilities = 1;
390     signalCondition(&thread_ready_cond);
391     startSchedulerTaskIfNecessary();
392     passTarget = NULL;
393     passingCapability = rtsTrue;
394     IF_DEBUG(scheduler, sched_belch("worker: passCapabilityToWorker"));
395 }
396
397
398
399 #endif /* RTS_SUPPORTS_THREADS */
400
401 #if defined(SMP)
402 /*
403  * Function: initCapabilities_(nat)
404  *
405  * Purpose:  upon startup, allocate and fill in table
406  *           holding 'n' Capabilities. Only for SMP, since
407  *           it is the only build that supports multiple
408  *           capabilities within the RTS.
409  */
410 static void
411 initCapabilities_(nat n)
412 {
413   nat i;
414   Capability *cap, *prev;
415   cap  = NULL;
416   prev = NULL;
417   for (i = 0; i < n; i++) {
418     cap = stgMallocBytes(sizeof(Capability), "initCapabilities");
419     initCapability(cap);
420     cap->link = prev;
421     prev = cap;
422   }
423   free_capabilities = cap;
424   rts_n_free_capabilities = n;
425   returning_capabilities = NULL;
426   IF_DEBUG(scheduler,
427            sched_belch("allocated %d capabilities", n_free_capabilities));
428 }
429 #endif /* SMP */
430