[project @ 2002-07-05 01:23:45 by mthomas]
[ghc-hetmet.git] / ghc / rts / Schedule.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Schedule.h,v 1.34 2002/06/19 20:45:15 sof Exp $
3  *
4  * (c) The GHC Team 1998-1999
5  *
6  * Prototypes for functions in Schedule.c 
7  * (RTS internal scheduler interface)
8  *
9  * -------------------------------------------------------------------------*/
10
11 #ifndef __SCHEDULE_H__
12 #define __SCHEDULE_H__
13 #include "OSThreads.h"
14
15 /* initScheduler(), exitScheduler(), startTasks()
16  * 
17  * Called from STG :  no
18  * Locks assumed   :  none
19  */
20 extern void initScheduler  ( void );
21 extern void exitScheduler  ( void );
22
23 /* awakenBlockedQueue()
24  *
25  * Takes a pointer to the beginning of a blocked TSO queue, and
26  * wakes up the entire queue.
27  *
28  * Called from STG :  yes
29  * Locks assumed   :  none
30  */
31 #if defined(GRAN)
32 void awakenBlockedQueue(StgBlockingQueueElement *q, StgClosure *node);
33 #elif defined(PAR)
34 void awakenBlockedQueue(StgBlockingQueueElement *q, StgClosure *node);
35 #else
36 void awakenBlockedQueue(StgTSO *tso);
37 #endif
38
39 /* unblockOne()
40  *
41  * Takes a pointer to the beginning of a blocked TSO queue, and
42  * removes the first thread, placing it on the runnable queue.
43  *
44  * Called from STG : yes
45  * Locks assumed   : none
46  */
47 #if defined(GRAN) || defined(PAR)
48 StgBlockingQueueElement *unblockOne(StgBlockingQueueElement *bqe, StgClosure *node);
49 #else
50 StgTSO *unblockOne(StgTSO *tso);
51 #endif
52
53 /* raiseAsync()
54  *
55  * Raises an exception asynchronously in the specified thread.
56  *
57  * Called from STG :  yes
58  * Locks assumed   :  none
59  */
60 void raiseAsync(StgTSO *tso, StgClosure *exception);
61 void raiseAsyncWithLock(StgTSO *tso, StgClosure *exception);
62
63 /* awaitEvent()
64  *
65  * Raises an exception asynchronously in the specified thread.
66  *
67  * Called from STG :  NO
68  * Locks assumed   :  sched_mutex
69  */
70 void awaitEvent(rtsBool wait);  /* In Select.c */
71
72 /* wakeUpSleepingThreads(nat ticks)
73  *
74  * Wakes up any sleeping threads whose timers have expired.
75  *
76  * Called from STG :  NO
77  * Locks assumed   :  sched_mutex
78  */
79 rtsBool wakeUpSleepingThreads(nat);  /* In Select.c */
80
81 /* GetRoots(evac_fn f)
82  *
83  * Call f() for each root known to the scheduler.
84  *
85  * Called from STG :  NO
86  * Locks assumed   :  ????
87  */
88 void GetRoots(evac_fn);
89
90 // ToDo: check whether all fcts below are used in the SMP version, too
91 #if defined(GRAN)
92 void    awaken_blocked_queue(StgBlockingQueueElement *q, StgClosure *node);
93 void    unlink_from_bq(StgTSO* tso, StgClosure* node);
94 void    initThread(StgTSO *tso, nat stack_size, StgInt pri);
95 #elif defined(PAR)
96 nat     run_queue_len(void);
97 void    awaken_blocked_queue(StgBlockingQueueElement *q, StgClosure *node);
98 void    initThread(StgTSO *tso, nat stack_size);
99 #else
100 char   *info_type(StgClosure *closure);    // dummy
101 char   *info_type_by_ip(StgInfoTable *ip); // dummy
102 void    awaken_blocked_queue(StgTSO *q);
103 void    initThread(StgTSO *tso, nat stack_size);
104 #endif
105
106 /* Context switch flag.
107  * Locks required  : sched_mutex
108  */
109 extern nat context_switch;
110 extern rtsBool interrupted;
111
112 /* In Select.c */
113 extern nat timestamp;
114
115 /* Thread queues.
116  * Locks required  : sched_mutex
117  *
118  * In GranSim we have one run/blocked_queue per PE.
119  */
120 #if defined(GRAN)
121 // run_queue_hds defined in GranSim.h
122 #else
123 extern  StgTSO *run_queue_hd, *run_queue_tl;
124 extern  StgTSO *blocked_queue_hd, *blocked_queue_tl;
125 extern  StgTSO *sleeping_queue;
126 #endif
127 /* Linked list of all threads. */
128 extern  StgTSO *all_threads;
129
130 #if defined(RTS_SUPPORTS_THREADS)
131 /* Schedule.c has detailed info on what these do */
132 extern Mutex       sched_mutex;
133 extern Condition   thread_ready_cond;
134 extern Condition   returning_worker_cond;
135 extern nat         rts_n_waiting_workers;
136 extern nat         rts_n_waiting_tasks;
137 #endif
138
139 StgInt forkProcess(StgTSO *tso);
140
141 extern SchedulerStatus rts_mainEvalIO(HaskellObj p, /*out*/HaskellObj *ret);
142
143
144 /* Called by shutdown_handler(). */
145 void interruptStgRts ( void );
146
147 void raiseAsync(StgTSO *tso, StgClosure *exception);
148 nat  run_queue_len(void);
149
150 void resurrectThreads( StgTSO * );
151
152 /* Main threads:
153  *
154  * These are the threads which clients have requested that we run.  
155  *
156  * In a 'threaded' build, we might have several concurrent clients all
157  * waiting for results, and each one will wait on a condition variable
158  * until the result is available.
159  *
160  * In non-SMP, clients are strictly nested: the first client calls
161  * into the RTS, which might call out again to C with a _ccall_GC, and
162  * eventually re-enter the RTS.
163  *
164  * This is non-abstract at the moment because the garbage collector
165  * treats pointers to TSOs from the main thread list as "weak" - these
166  * pointers won't prevent a thread from receiving a BlockedOnDeadMVar
167  * exception.
168  *
169  * Main threads information is kept in a linked list:
170  */
171 typedef struct StgMainThread_ {
172   StgTSO *         tso;
173   SchedulerStatus  stat;
174   StgClosure **    ret;
175 #if defined(RTS_SUPPORTS_THREADS)
176   Condition        wakeup;
177 #endif
178   struct StgMainThread_ *link;
179 } StgMainThread;
180
181 /* Main thread queue.
182  * Locks required: sched_mutex.
183  */
184 extern StgMainThread *main_threads;
185
186 /* debugging only 
187  */
188 #ifdef DEBUG
189 void printThreadBlockage(StgTSO *tso);
190 void printThreadStatus(StgTSO *tso);
191 void printAllThreads(void);
192 #endif
193 void print_bq (StgClosure *node);
194 #if defined(PAR)
195 void print_bqe (StgBlockingQueueElement *bqe);
196 #endif
197
198 /* -----------------------------------------------------------------------------
199  * Some convenient macros...
200  */
201
202 /* END_TSO_QUEUE and friends now defined in includes/StgMiscClosures.h */
203
204 /* Add a thread to the end of the run queue.
205  * NOTE: tso->link should be END_TSO_QUEUE before calling this macro.
206  */
207 #define APPEND_TO_RUN_QUEUE(tso)                \
208     ASSERT(tso->link == END_TSO_QUEUE);         \
209     if (run_queue_hd == END_TSO_QUEUE) {        \
210       run_queue_hd = tso;                       \
211     } else {                                    \
212       run_queue_tl->link = tso;                 \
213     }                                           \
214     run_queue_tl = tso;
215
216 /* Push a thread on the beginning of the run queue.  Used for
217  * newly awakened threads, so they get run as soon as possible.
218  */
219 #define PUSH_ON_RUN_QUEUE(tso)                  \
220     tso->link = run_queue_hd;                   \
221       run_queue_hd = tso;                       \
222     if (run_queue_tl == END_TSO_QUEUE) {        \
223       run_queue_tl = tso;                       \
224     }
225
226 /* Pop the first thread off the runnable queue.
227  */
228 #define POP_RUN_QUEUE()                         \
229   ({ StgTSO *t = run_queue_hd;                  \
230     if (t != END_TSO_QUEUE) {                   \
231       run_queue_hd = t->link;                   \
232       t->link = END_TSO_QUEUE;                  \
233       if (run_queue_hd == END_TSO_QUEUE) {      \
234         run_queue_tl = END_TSO_QUEUE;           \
235       }                                         \
236     }                                           \
237     t;                                          \
238   })
239
240 /* Add a thread to the end of the blocked queue.
241  */
242 #define APPEND_TO_BLOCKED_QUEUE(tso)            \
243     ASSERT(tso->link == END_TSO_QUEUE);         \
244     if (blocked_queue_hd == END_TSO_QUEUE) {    \
245       blocked_queue_hd = tso;                   \
246     } else {                                    \
247       blocked_queue_tl->link = tso;             \
248     }                                           \
249     blocked_queue_tl = tso;
250
251 /* Signal that a runnable thread has become available, in
252  * case there are any waiting tasks to execute it.
253  */
254 #if defined(RTS_SUPPORTS_THREADS)
255 #define THREAD_RUNNABLE()                       \
256   if ( !noCapabilities() ) {                    \
257      signalCondition(&thread_ready_cond);       \
258   }                                             \
259   context_switch = 1;
260 #else
261 #define THREAD_RUNNABLE()  /* nothing */
262 #endif
263
264 /* Check whether various thread queues are empty
265  */
266 #define EMPTY_QUEUE(q)         (q == END_TSO_QUEUE)
267
268 #define EMPTY_RUN_QUEUE()      (EMPTY_QUEUE(run_queue_hd))
269 #define EMPTY_BLOCKED_QUEUE()  (EMPTY_QUEUE(blocked_queue_hd))
270 #define EMPTY_SLEEPING_QUEUE() (EMPTY_QUEUE(sleeping_queue))
271
272 #define EMPTY_THREAD_QUEUES()  (EMPTY_RUN_QUEUE() && \
273                                 EMPTY_BLOCKED_QUEUE() && \
274                                 EMPTY_SLEEPING_QUEUE())
275
276 #endif /* __SCHEDULE_H__ */