[project @ 2000-03-17 09:53:19 by simonmar]
[ghc-hetmet.git] / ghc / includes / TSO.h
1 /* -----------------------------------------------------------------------------
2  * $Id: TSO.h,v 1.12 2000/03/17 09:53:19 simonmar Exp $
3  *
4  * (c) The GHC Team, 1998-1999
5  *
6  * The definitions for Thread State Objects.
7  *
8  * ---------------------------------------------------------------------------*/
9
10 #ifndef TSO_H
11 #define TSO_H
12
13 #if defined(GRAN) || defined(PAR)
14 // magic marker for TSOs; debugging only
15 #define TSO_MAGIC 4321
16
17 typedef struct {
18   StgInt   pri;
19   StgInt   magic;
20   StgInt   sparkname;
21   rtsTime  startedat;
22   rtsBool  exported;
23   StgInt   basicblocks;
24   StgInt   allocs;
25   rtsTime  exectime;
26   rtsTime  fetchtime;
27   rtsTime  fetchcount;
28   rtsTime  blocktime;
29   StgInt   blockcount;
30   rtsTime  blockedat;
31   StgInt   globalsparks;
32   StgInt   localsparks;
33   rtsTime  clock;
34 } StgTSOStatBuf;
35 #endif
36
37 #if defined(PROFILING)
38 typedef struct {
39   CostCentreStack *CCCS;        /* thread's current CCS */
40 } StgTSOProfInfo;
41 #else /* !PROFILING */
42 typedef struct {
43 } StgTSOProfInfo;
44 #endif /* PROFILING */
45
46 #if defined(PAR)
47 typedef StgTSOStatBuf StgTSOParInfo;
48 #else /* !PAR */
49 typedef struct {
50 } StgTSOParInfo;
51 #endif /* PAR */
52
53 #if defined(GRAN)
54 typedef StgTSOStatBuf StgTSOGranInfo;
55 #else /* !GRAN */
56 typedef struct {
57 } StgTSOGranInfo;
58 #endif /* GRAN */
59
60
61 #if defined(TICKY)
62 typedef struct {
63 } StgTSOTickyInfo;
64 #else /* !TICKY_TICKY */
65 typedef struct {
66 } StgTSOTickyInfo;
67 #endif /* TICKY_TICKY */
68
69 typedef enum {
70     tso_state_runnable,
71     tso_state_stopped
72 } StgTSOState;
73
74 /*
75  * The whatNext field of a TSO indicates how the thread is to be run. 
76  */
77 typedef enum {
78   ThreadEnterGHC,               /* enter top thunk on stack */
79   ThreadRunGHC,                 /* return to address on top of stack */
80   ThreadEnterHugs,              /* enter top thunk on stack (w/ interpreter) */
81   ThreadKilled,                 /* thread has died, don't run it */
82   ThreadRelocated,              /* thread has moved, link points to new locn */
83   ThreadComplete                /* thread has finished */
84 } StgTSOWhatNext;
85
86 /*
87  * We are completely paranoid and make thread IDs 64 bits to avoid
88  * having to worry about overflow.  A little calculation shows that
89  * even doing 10^6 forks per second would take 35 million years to
90  * overflow a 64 bit thread ID :-)
91  *
92  */
93 typedef StgWord32 StgThreadID;
94
95 /*
96  * This type is returned to the scheduler by a thread that has
97  * stopped for one reason or another.
98  */
99
100 typedef enum {
101   HeapOverflow,                 /* might also be StackOverflow */
102   StackOverflow,
103   ThreadYielding,
104   ThreadBlocked,
105   ThreadFinished
106 } StgThreadReturnCode;
107
108 /* 
109  * Threads may be blocked for several reasons.  A blocked thread will
110  * have the reason in the why_blocked field of the TSO, and some
111  * further info (such as the closure the thread is blocked on, or the
112  * file descriptor if the thread is waiting on I/O) in the block_info
113  * field.
114  */
115
116 typedef enum {
117   NotBlocked,
118   BlockedOnMVar,
119   BlockedOnBlackHole,
120   BlockedOnException,
121   BlockedOnRead,
122   BlockedOnWrite,
123   BlockedOnDelay
124 #if defined(PAR)
125   , BlockedOnGA    // blocked on a remote closure represented by a Global Address
126 #endif
127 } StgTSOBlockReason;
128
129 typedef union {
130   StgClosure *closure;
131   struct StgTSO_ *tso;
132   int fd;
133   unsigned int delay;
134 #if defined(PAR)
135   globalAddr ga;
136 #endif
137 } StgTSOBlockInfo;
138
139 /*
140  * TSOs live on the heap, and therefore look just like heap objects.
141  * Large TSOs will live in their own "block group" allocated by the
142  * storage manager, and won't be copied during garbage collection.
143  */
144
145 typedef struct StgTSO_ {
146   StgHeader          header;
147
148   struct StgTSO_*    link;           /* Links threads onto blocking queues */
149   StgMutClosure *    mut_link;       /* TSO's are mutable of course! */
150   struct StgTSO_*    global_link;    /* Links all threads together */
151   
152   StgTSOWhatNext     whatNext;
153   StgTSOBlockReason  why_blocked;
154   StgTSOBlockInfo    block_info;
155   struct StgTSO_*    blocked_exceptions;
156   StgThreadID        id;
157   StgTSOTickyInfo    ticky; 
158   StgTSOProfInfo     prof;
159   StgTSOParInfo      par;
160   StgTSOGranInfo     gran;
161
162   /* The thread stack... */
163   StgWord            stack_size;     /* stack size in *words* */
164   StgWord            max_stack_size; /* maximum stack size in *words* */
165   StgPtr             sp;
166   StgUpdateFrame*    su;
167   StgPtr             splim;
168   
169   StgWord            stack[0];
170 } StgTSO;
171
172 /* -----------------------------------------------------------------------------
173    Invariants:
174
175    An active thread has the following properties:
176
177       tso->stack < tso->sp < tso->stack+tso->stack_size
178       tso->stack_size <= tso->max_stack_size
179       tso->splim == tso->stack + RESERVED_STACK_WORDS;
180       
181       RESERVED_STACK_WORDS is large enough for any heap-check or
182       stack-check failure.
183
184       The size of the TSO struct plus the stack is either
185         (a) smaller than a block, or
186         (b) a multiple of BLOCK_SIZE
187
188         tso->block_reason      tso->block_info      location
189         ----------------------------------------------------------------------
190         NotBlocked             NULL                 runnable_queue, or running
191         
192         BlockedOnBlackHole     the BLACKHOLE_BQ     the BLACKHOLE_BQ's queue
193         
194         BlockedOnMVar          the MVAR             the MVAR's queue
195         
196         BlockedOnException     the TSO              TSO->blocked_exception
197
198         BlockedOnRead          NULL                 blocked_queue
199         BlockedOnWrite         NULL                 blocked_queue
200         BlockedOnDelay         NULL                 blocked_queue
201
202       tso->link == END_TSO_QUEUE, if the thread is currently running.
203
204    A zombie thread has the following properties:
205       
206       tso->whatNext == ThreadComplete or ThreadKilled
207       tso->link     ==  (could be on some queue somewhere)
208       tso->su       ==  tso->stack + tso->stack_size
209       tso->sp       ==  tso->stack + tso->stack_size - 1 (i.e. top stack word)
210       tso->sp[0]    ==  return value of thread, if whatNext == ThreadComplete,
211                         exception             , if whatNext == ThreadKilled
212
213       (tso->sp is left pointing at the top word on the stack so that
214       the return value or exception will be retained by a GC).
215
216    tso->blocked_exceptions is either:
217
218       NULL             if async exceptions are unblocked.
219
220       END_TSO_QUEUE    if async exceptions are blocked, but no threads
221                        are currently waiting to deliver.
222
223       (StgTSO *)tso    if threads are currently awaiting delivery of
224                        exceptions to this thread.
225
226  ---------------------------------------------------------------------------- */
227
228 /* Workaround for a bug/quirk in gcc on certain architectures.
229  * symptom is that (&tso->stack - &tso->header) /=  sizeof(StgTSO)
230  * in other words, gcc pads the structure at the end.
231  */
232
233 extern StgTSO dummy_tso;
234
235 #define TSO_STRUCT_SIZE \
236    ((int)&(dummy_tso).stack - (int)&(dummy_tso).header)
237
238 #define TSO_STRUCT_SIZEW (TSO_STRUCT_SIZE / sizeof(W_))
239
240 #endif /* TSO_H */