[project @ 2002-02-13 08:48:06 by sof]
[ghc-hetmet.git] / ghc / rts / Schedule.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Schedule.h,v 1.28 2002/02/13 08:48:07 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 #ifndef __SCHEDULE_H__
11 #define __SCHEDULE_H__
12 #include "OSThreads.h"
13
14 //@menu
15 //* Scheduler Functions::       
16 //* Scheduler Vars and Data Types::  
17 //* Some convenient macros::    
18 //* Index::                     
19 //@end menu
20
21 //@node Scheduler Functions, Scheduler Vars and Data Types
22 //@subsection Scheduler Functions
23
24 //@cindex initScheduler
25 //@cindex exitScheduler
26 /* initScheduler(), exitScheduler(), startTasks()
27  * 
28  * Called from STG :  no
29  * Locks assumed   :  none
30  */
31 extern void initScheduler  ( void );
32 extern void exitScheduler  ( void );
33
34 //@cindex awakenBlockedQueue
35 /* awakenBlockedQueue()
36  *
37  * Takes a pointer to the beginning of a blocked TSO queue, and
38  * wakes up the entire queue.
39  *
40  * Called from STG :  yes
41  * Locks assumed   :  none
42  */
43 #if defined(GRAN)
44 void awakenBlockedQueue(StgBlockingQueueElement *q, StgClosure *node);
45 #elif defined(PAR)
46 void awakenBlockedQueue(StgBlockingQueueElement *q, StgClosure *node);
47 #else
48 void awakenBlockedQueue(StgTSO *tso);
49 #endif
50
51 //@cindex unblockOne
52 /* unblockOne()
53  *
54  * Takes a pointer to the beginning of a blocked TSO queue, and
55  * removes the first thread, placing it on the runnable queue.
56  *
57  * Called from STG : yes
58  * Locks assumed   : none
59  */
60 #if defined(GRAN) || defined(PAR)
61 StgBlockingQueueElement *unblockOne(StgBlockingQueueElement *bqe, StgClosure *node);
62 #else
63 StgTSO *unblockOne(StgTSO *tso);
64 #endif
65
66 //@cindex raiseAsync
67 /* raiseAsync()
68  *
69  * Raises an exception asynchronously in the specified thread.
70  *
71  * Called from STG :  yes
72  * Locks assumed   :  none
73  */
74 void raiseAsync(StgTSO *tso, StgClosure *exception);
75
76 //@cindex awaitEvent
77 /* awaitEvent()
78  *
79  * Raises an exception asynchronously in the specified thread.
80  *
81  * Called from STG :  NO
82  * Locks assumed   :  sched_mutex
83  */
84 void awaitEvent(rtsBool wait);  /* In Select.c */
85
86 /* wakeUpSleepingThreads(nat ticks)
87  *
88  * Wakes up any sleeping threads whose timers have expired.
89  *
90  * Called from STG :  NO
91  * Locks assumed   :  sched_mutex
92  */
93 rtsBool wakeUpSleepingThreads(nat);  /* In Select.c */
94
95 /* GetRoots(evac_fn f)
96  *
97  * Call f() for each root known to the scheduler.
98  *
99  * Called from STG :  NO
100  * Locks assumed   :  ????
101  */
102 void GetRoots(evac_fn);
103
104 // ToDo: check whether all fcts below are used in the SMP version, too
105 //@cindex awaken_blocked_queue
106 #if defined(GRAN)
107 void    awaken_blocked_queue(StgBlockingQueueElement *q, StgClosure *node);
108 void    unlink_from_bq(StgTSO* tso, StgClosure* node);
109 void    initThread(StgTSO *tso, nat stack_size, StgInt pri);
110 #elif defined(PAR)
111 nat     run_queue_len(void);
112 void    awaken_blocked_queue(StgBlockingQueueElement *q, StgClosure *node);
113 void    initThread(StgTSO *tso, nat stack_size);
114 #else
115 char   *info_type(StgClosure *closure);    // dummy
116 char   *info_type_by_ip(StgInfoTable *ip); // dummy
117 void    awaken_blocked_queue(StgTSO *q);
118 void    initThread(StgTSO *tso, nat stack_size);
119 #endif
120
121 //@node Scheduler Vars and Data Types, Some convenient macros, Scheduler Functions
122 //@subsection Scheduler Vars and Data Types
123
124 //@cindex context_switch
125 /* Context switch flag.
126  * Locks required  : sched_mutex
127  */
128 extern nat context_switch;
129 extern rtsBool interrupted;
130
131 /* In Select.c */
132 extern nat timestamp;
133
134 /* Thread queues.
135  * Locks required  : sched_mutex
136  *
137  * In GranSim we have one run/blocked_queue per PE.
138  */
139 #if defined(GRAN)
140 // run_queue_hds defined in GranSim.h
141 #else
142 extern  StgTSO *run_queue_hd, *run_queue_tl;
143 extern  StgTSO *blocked_queue_hd, *blocked_queue_tl;
144 extern  StgTSO *sleeping_queue;
145 #endif
146 /* Linked list of all threads. */
147 extern  StgTSO *all_threads;
148
149 #if defined(RTS_SUPPORTS_THREADS)
150 /* Schedule.c has detailed info on what these do */
151 extern Mutex       sched_mutex;
152 extern Condition   thread_ready_cond;
153 extern Condition   returning_worker_cond;
154 extern nat         rts_n_waiting_workers;
155 extern nat         rts_n_waiting_tasks;
156 #endif
157
158
159 /* Sigh, RTS-internal versions of waitThread(), scheduleThread(), and
160    rts_evalIO() for the use by main() only. ToDo: better. */
161 extern SchedulerStatus waitThread_(StgTSO *tso,
162                                    /*out*/StgClosure **ret
163 #if defined(THREADED_RTS)
164                                    , rtsBool blockWaiting
165 #endif
166                                    );
167 extern void scheduleThread_(StgTSO *tso
168 #if defined(THREADED_RTS)
169                            , rtsBool createTask
170 #endif
171                             );
172 extern SchedulerStatus rts_mainEvalIO(HaskellObj p, /*out*/HaskellObj *ret);
173
174
175 /* Called by shutdown_handler(). */
176 void interruptStgRts ( void );
177
178 void raiseAsync(StgTSO *tso, StgClosure *exception);
179 nat  run_queue_len(void);
180
181 void resurrectThreads( StgTSO * );
182
183 //@node Some convenient macros, Index, Scheduler Vars and Data Types
184 //@subsection Some convenient macros
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 //@cindex APPEND_TO_RUN_QUEUE
205 /* Add a thread to the end of the run queue.
206  * NOTE: tso->link should be END_TSO_QUEUE before calling this macro.
207  */
208 #define APPEND_TO_RUN_QUEUE(tso)                \
209     ASSERT(tso->link == END_TSO_QUEUE);         \
210     if (run_queue_hd == END_TSO_QUEUE) {        \
211       run_queue_hd = tso;                       \
212     } else {                                    \
213       run_queue_tl->link = tso;                 \
214     }                                           \
215     run_queue_tl = tso;
216
217 //@cindex PUSH_ON_RUN_QUEUE
218 /* Push a thread on the beginning of the run queue.  Used for
219  * newly awakened threads, so they get run as soon as possible.
220  */
221 #define PUSH_ON_RUN_QUEUE(tso)                  \
222     tso->link = run_queue_hd;                   \
223       run_queue_hd = tso;                       \
224     if (run_queue_tl == END_TSO_QUEUE) {        \
225       run_queue_tl = tso;                       \
226     }
227
228 //@cindex POP_RUN_QUEUE
229 /* Pop the first thread off the runnable queue.
230  */
231 #define POP_RUN_QUEUE()                         \
232   ({ StgTSO *t = run_queue_hd;                  \
233     if (t != END_TSO_QUEUE) {                   \
234       run_queue_hd = t->link;                   \
235       t->link = END_TSO_QUEUE;                  \
236       if (run_queue_hd == END_TSO_QUEUE) {      \
237         run_queue_tl = END_TSO_QUEUE;           \
238       }                                         \
239     }                                           \
240     t;                                          \
241   })
242
243 //@cindex APPEND_TO_BLOCKED_QUEUE
244 /* Add a thread to the end of the blocked queue.
245  */
246 #define APPEND_TO_BLOCKED_QUEUE(tso)            \
247     ASSERT(tso->link == END_TSO_QUEUE);         \
248     if (blocked_queue_hd == END_TSO_QUEUE) {    \
249       blocked_queue_hd = tso;                   \
250     } else {                                    \
251       blocked_queue_tl->link = tso;             \
252     }                                           \
253     blocked_queue_tl = tso;
254
255 //@cindex THREAD_RUNNABLE
256 /* Signal that a runnable thread has become available, in
257  * case there are any waiting tasks to execute it.
258  */
259 #if defined(RTS_SUPPORTS_THREADS)
260 #define THREAD_RUNNABLE()                       \
261   if ( !noCapabilities() ) {                    \
262      signalCondition(&thread_ready_cond);       \
263   }                                             \
264   context_switch = 1;
265 #else
266 #define THREAD_RUNNABLE()  /* nothing */
267 #endif
268
269 //@cindex EMPTY_RUN_QUEUE
270 /* Check whether the run queue is empty i.e. the PE is idle
271  */
272 #define EMPTY_RUN_QUEUE()     (run_queue_hd == END_TSO_QUEUE)
273 #define EMPTY_QUEUE(q)        (q == END_TSO_QUEUE)
274
275 #endif /* __SCHEDULE_H__ */
276
277 //@node Index,  , Some convenient macros
278 //@subsection Index
279
280 //@index
281 //* APPEND_TO_BLOCKED_QUEUE::  @cindex\s-+APPEND_TO_BLOCKED_QUEUE
282 //* APPEND_TO_RUN_QUEUE::  @cindex\s-+APPEND_TO_RUN_QUEUE
283 //* POP_RUN_QUEUE    ::  @cindex\s-+POP_RUN_QUEUE    
284 //* PUSH_ON_RUN_QUEUE::  @cindex\s-+PUSH_ON_RUN_QUEUE
285 //* awaitEvent::  @cindex\s-+awaitEvent
286 //* awakenBlockedQueue::  @cindex\s-+awakenBlockedQueue
287 //* awaken_blocked_queue::  @cindex\s-+awaken_blocked_queue
288 //* context_switch::  @cindex\s-+context_switch
289 //* exitScheduler::  @cindex\s-+exitScheduler
290 //* gc_pending_cond::  @cindex\s-+gc_pending_cond
291 //* initScheduler::  @cindex\s-+initScheduler
292 //* raiseAsync::  @cindex\s-+raiseAsync
293 //* startTasks::  @cindex\s-+startTasks
294 //* unblockOne::  @cindex\s-+unblockOne
295 //@end index