leave out ATTRIBUTE_ALIGNED on Windows, it gives a warning
[ghc-hetmet.git] / rts / Capability.h
1 /* ---------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2001-2006
4  *
5  * Capabilities
6  *
7  * The notion of a capability is used when operating in multi-threaded
8  * environments (which the THREADED_RTS build of the RTS does), to
9  * hold all the state an OS thread/task needs to run Haskell code:
10  * its STG registers, a pointer to its  TSO, a nursery etc. During
11  * STG execution, a pointer to the capabilitity is kept in a 
12  * register (BaseReg).
13  *
14  * Only in an THREADED_RTS build will there be multiple capabilities,
15  * in the non-threaded builds there is one global capability, namely
16  * MainCapability.
17  *
18  * This header file contains the functions for working with capabilities.
19  * (the main, and only, consumer of this interface is the scheduler).
20  * 
21  * --------------------------------------------------------------------------*/
22
23 #ifndef CAPABILITY_H
24 #define CAPABILITY_H
25
26 #include "RtsFlags.h"
27 #include "Task.h"
28 #include "Sparks.h"
29
30 struct Capability_ {
31     // State required by the STG virtual machine when running Haskell
32     // code.  During STG execution, the BaseReg register always points
33     // to the StgRegTable of the current Capability (&cap->r).
34     StgFunTable f;
35     StgRegTable r;
36
37     nat no;  // capability number.
38
39     // The Task currently holding this Capability.  This task has
40     // exclusive access to the contents of this Capability (apart from
41     // returning_tasks_hd/returning_tasks_tl).
42     // Locks required: cap->lock.
43     Task *running_task;
44
45     // true if this Capability is running Haskell code, used for
46     // catching unsafe call-ins.
47     rtsBool in_haskell;
48
49     // The run queue.  The Task owning this Capability has exclusive
50     // access to its run queue, so can wake up threads without
51     // taking a lock, and the common path through the scheduler is
52     // also lock-free.
53     StgTSO *run_queue_hd;
54     StgTSO *run_queue_tl;
55
56     // Tasks currently making safe foreign calls.  Doubly-linked.
57     // When returning, a task first acquires the Capability before
58     // removing itself from this list, so that the GC can find all
59     // the suspended TSOs easily.  Hence, when migrating a Task from
60     // the returning_tasks list, we must also migrate its entry from
61     // this list.
62     Task *suspended_ccalling_tasks;
63
64     // One mutable list per generation, so we don't need to take any
65     // locks when updating an old-generation thunk.  These
66     // mini-mut-lists are moved onto the respective gen->mut_list at
67     // each GC.
68     bdescr **mut_lists;
69
70     // Context switch flag. We used to have one global flag, now one 
71     // per capability. Locks required  : none (conflicts are harmless)
72     int context_switch;
73
74 #if defined(THREADED_RTS)
75     // Worker Tasks waiting in the wings.  Singly-linked.
76     Task *spare_workers;
77
78     // This lock protects running_task, returning_tasks_{hd,tl}, wakeup_queue.
79     Mutex lock;
80
81     // Tasks waiting to return from a foreign call, or waiting to make
82     // a new call-in using this Capability (NULL if empty).
83     // NB. this field needs to be modified by tasks other than the
84     // running_task, so it requires cap->lock to modify.  A task can
85     // check whether it is NULL without taking the lock, however.
86     Task *returning_tasks_hd; // Singly-linked, with head/tail
87     Task *returning_tasks_tl;
88
89     // A list of threads to append to this Capability's run queue at
90     // the earliest opportunity.  These are threads that have been
91     // woken up by another Capability.
92     StgTSO *wakeup_queue_hd;
93     StgTSO *wakeup_queue_tl;
94
95     SparkPool *sparks;
96
97     // Stats on spark creation/conversion
98     nat sparks_created;
99     nat sparks_converted;
100     nat sparks_pruned;
101 #endif
102
103     // Per-capability STM-related data
104     StgTVarWatchQueue *free_tvar_watch_queues;
105     StgInvariantCheckQueue *free_invariant_check_queues;
106     StgTRecChunk *free_trec_chunks;
107     StgTRecHeader *free_trec_headers;
108     nat transaction_tokens;
109 } // typedef Capability is defined in RtsAPI.h
110   // Capabilities are stored in an array, so make sure that adjacent
111   // Capabilities don't share any cache-lines:
112 #ifndef mingw32_HOST_OS
113   ATTRIBUTE_ALIGNED(64)
114 #endif
115   ;
116
117
118 #if defined(THREADED_RTS)
119 #define ASSERT_TASK_ID(task) ASSERT(task->id == osThreadId())
120 #else
121 #define ASSERT_TASK_ID(task) /*empty*/
122 #endif
123
124 // These properties should be true when a Task is holding a Capability
125 #define ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task)                     \
126   ASSERT(cap->running_task != NULL && cap->running_task == task);       \
127   ASSERT(task->cap == cap);                                             \
128   ASSERT_PARTIAL_CAPABILITY_INVARIANTS(cap,task)
129
130 // Sometimes a Task holds a Capability, but the Task is not associated
131 // with that Capability (ie. task->cap != cap).  This happens when
132 // (a) a Task holds multiple Capabilities, and (b) when the current
133 // Task is bound, its thread has just blocked, and it may have been
134 // moved to another Capability.
135 #define ASSERT_PARTIAL_CAPABILITY_INVARIANTS(cap,task)  \
136   ASSERT(cap->run_queue_hd == END_TSO_QUEUE ?           \
137             cap->run_queue_tl == END_TSO_QUEUE : 1);    \
138   ASSERT(myTask() == task);                             \
139   ASSERT_TASK_ID(task);
140
141 // Converts a *StgRegTable into a *Capability.
142 //
143 INLINE_HEADER Capability *
144 regTableToCapability (StgRegTable *reg)
145 {
146     return (Capability *)((void *)((unsigned char*)reg - sizeof(StgFunTable)));
147 }
148
149 // Initialise the available capabilities.
150 //
151 void initCapabilities (void);
152
153 // Release a capability.  This is called by a Task that is exiting
154 // Haskell to make a foreign call, or in various other cases when we
155 // want to relinquish a Capability that we currently hold.
156 //
157 // ASSUMES: cap->running_task is the current Task.
158 //
159 #if defined(THREADED_RTS)
160 void releaseCapability           (Capability* cap);
161 void releaseAndWakeupCapability  (Capability* cap);
162 void releaseCapability_ (Capability* cap, rtsBool always_wakeup); 
163 // assumes cap->lock is held
164 #else
165 // releaseCapability() is empty in non-threaded RTS
166 INLINE_HEADER void releaseCapability  (Capability* cap STG_UNUSED) {};
167 INLINE_HEADER void releaseAndWakeupCapability  (Capability* cap STG_UNUSED) {};
168 INLINE_HEADER void releaseCapability_ (Capability* cap STG_UNUSED, 
169                                        rtsBool always_wakeup STG_UNUSED) {};
170 #endif
171
172 #if !IN_STG_CODE
173 // one global capability
174 extern Capability MainCapability; 
175 #endif
176
177 // Array of all the capabilities
178 //
179 extern nat n_capabilities;
180 extern Capability *capabilities;
181
182 // The Capability that was last free.  Used as a good guess for where
183 // to assign new threads.
184 //
185 extern Capability *last_free_capability;
186
187 // GC indicator, in scope for the scheduler
188 extern volatile StgWord waiting_for_gc;
189
190 // Acquires a capability at a return point.  If *cap is non-NULL, then
191 // this is taken as a preference for the Capability we wish to
192 // acquire.
193 //
194 // OS threads waiting in this function get priority over those waiting
195 // in waitForCapability().
196 //
197 // On return, *cap is non-NULL, and points to the Capability acquired.
198 //
199 void waitForReturnCapability (Capability **cap/*in/out*/, Task *task);
200
201 INLINE_HEADER void recordMutableCap (StgClosure *p, Capability *cap, nat gen);
202
203 #if defined(THREADED_RTS)
204
205 // Gives up the current capability IFF there is a higher-priority
206 // thread waiting for it.  This happens in one of two ways:
207 //
208 //   (a) we are passing the capability to another OS thread, so
209 //       that it can run a bound Haskell thread, or
210 //
211 //   (b) there is an OS thread waiting to return from a foreign call
212 //
213 // On return: *pCap is NULL if the capability was released.  The
214 // current task should then re-acquire it using waitForCapability().
215 //
216 void yieldCapability (Capability** pCap, Task *task);
217
218 // Acquires a capability for doing some work.
219 //
220 // On return: pCap points to the capability.
221 //
222 void waitForCapability (Task *task, Mutex *mutex, Capability **pCap);
223
224 // Wakes up a thread on a Capability (probably a different Capability
225 // from the one held by the current Task).
226 //
227 void wakeupThreadOnCapability (Capability *my_cap, Capability *other_cap,
228                                StgTSO *tso);
229
230 // Wakes up a worker thread on just one Capability, used when we
231 // need to service some global event.
232 //
233 void prodOneCapability (void);
234
235 // Similar to prodOneCapability(), but prods all of them.
236 //
237 void prodAllCapabilities (void);
238
239 // Waits for a capability to drain of runnable threads and workers,
240 // and then acquires it.  Used at shutdown time.
241 //
242 void shutdownCapability (Capability *cap, Task *task, rtsBool wait_foreign);
243
244 // Attempt to gain control of a Capability if it is free.
245 //
246 rtsBool tryGrabCapability (Capability *cap, Task *task);
247
248 // Try to steal a spark from other Capabilities
249 //
250 StgClosure *stealWork (Capability *cap);
251
252 // True if any capabilities have sparks
253 //
254 rtsBool anySparks (void);
255
256 INLINE_HEADER rtsBool emptySparkPoolCap (Capability *cap);
257 INLINE_HEADER nat     sparkPoolSizeCap  (Capability *cap);
258 INLINE_HEADER void    discardSparksCap  (Capability *cap);
259
260 #else // !THREADED_RTS
261
262 // Grab a capability.  (Only in the non-threaded RTS; in the threaded
263 // RTS one of the waitFor*Capability() functions must be used).
264 //
265 extern void grabCapability (Capability **pCap);
266
267 #endif /* !THREADED_RTS */
268
269 // cause all capabilities to context switch as soon as possible.
270 void setContextSwitches(void);
271
272 // Free all capabilities
273 void freeCapabilities (void);
274
275 // FOr the GC:
276 void markSomeCapabilities (evac_fn evac, void *user, nat i0, nat delta, 
277                            rtsBool prune_sparks);
278 void markCapabilities (evac_fn evac, void *user);
279 void traverseSparkQueues (evac_fn evac, void *user);
280
281 /* -----------------------------------------------------------------------------
282  * INLINE functions... private below here
283  * -------------------------------------------------------------------------- */
284
285 INLINE_HEADER void
286 recordMutableCap (StgClosure *p, Capability *cap, nat gen)
287 {
288     bdescr *bd;
289
290     // We must own this Capability in order to modify its mutable list.
291     ASSERT(cap->running_task == myTask());
292     bd = cap->mut_lists[gen];
293     if (bd->free >= bd->start + BLOCK_SIZE_W) {
294         bdescr *new_bd;
295         new_bd = allocBlock_lock();
296         new_bd->link = bd;
297         bd = new_bd;
298         cap->mut_lists[gen] = bd;
299     }
300     *bd->free++ = (StgWord)p;
301 }
302
303 #if defined(THREADED_RTS)
304 INLINE_HEADER rtsBool
305 emptySparkPoolCap (Capability *cap) 
306 { return looksEmpty(cap->sparks); }
307
308 INLINE_HEADER nat
309 sparkPoolSizeCap (Capability *cap) 
310 { return sparkPoolSize(cap->sparks); }
311
312 INLINE_HEADER void
313 discardSparksCap (Capability *cap) 
314 { return discardSparks(cap->sparks); }
315 #endif
316
317 #endif /* CAPABILITY_H */