don't make -ddump-if-trace imply -no-recomp
[ghc-hetmet.git] / rts / ThreadPaused.c
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team 1998-2006
4  *
5  * Tidying up a thread when it stops running
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #include "Rts.h"
10 #include "Storage.h"
11 #include "LdvProfile.h"
12 #include "Updates.h"
13 #include "RaiseAsync.h"
14 #include "Trace.h"
15 #include "RtsFlags.h"
16
17 #include <string.h> // for memmove()
18
19 /* -----------------------------------------------------------------------------
20  * Stack squeezing
21  *
22  * Code largely pinched from old RTS, then hacked to bits.  We also do
23  * lazy black holing here.
24  *
25  * -------------------------------------------------------------------------- */
26
27 struct stack_gap { StgWord gap_size; struct stack_gap *next_gap; };
28
29 static void
30 stackSqueeze(StgTSO *tso, StgPtr bottom)
31 {
32     StgPtr frame;
33     rtsBool prev_was_update_frame;
34     StgClosure *updatee = NULL;
35     StgRetInfoTable *info;
36     StgWord current_gap_size;
37     struct stack_gap *gap;
38
39     // Stage 1: 
40     //    Traverse the stack upwards, replacing adjacent update frames
41     //    with a single update frame and a "stack gap".  A stack gap
42     //    contains two values: the size of the gap, and the distance
43     //    to the next gap (or the stack top).
44
45     frame = tso->sp;
46
47     ASSERT(frame < bottom);
48     
49     prev_was_update_frame = rtsFalse;
50     current_gap_size = 0;
51     gap = (struct stack_gap *) (tso->sp - sizeofW(StgUpdateFrame));
52
53     while (frame <= bottom) {
54         
55         info = get_ret_itbl((StgClosure *)frame);
56         switch (info->i.type) {
57
58         case UPDATE_FRAME:
59         { 
60             StgUpdateFrame *upd = (StgUpdateFrame *)frame;
61
62             if (prev_was_update_frame) {
63
64                 TICK_UPD_SQUEEZED();
65                 /* wasn't there something about update squeezing and ticky to be
66                  * sorted out?  oh yes: we aren't counting each enter properly
67                  * in this case.  See the log somewhere.  KSW 1999-04-21
68                  *
69                  * Check two things: that the two update frames don't point to
70                  * the same object, and that the updatee_bypass isn't already an
71                  * indirection.  Both of these cases only happen when we're in a
72                  * block hole-style loop (and there are multiple update frames
73                  * on the stack pointing to the same closure), but they can both
74                  * screw us up if we don't check.
75                  */
76                 if (upd->updatee != updatee && !closure_IND(upd->updatee)) {
77                     UPD_IND_NOLOCK(upd->updatee, updatee);
78                 }
79
80                 // now mark this update frame as a stack gap.  The gap
81                 // marker resides in the bottom-most update frame of
82                 // the series of adjacent frames, and covers all the
83                 // frames in this series.
84                 current_gap_size += sizeofW(StgUpdateFrame);
85                 ((struct stack_gap *)frame)->gap_size = current_gap_size;
86                 ((struct stack_gap *)frame)->next_gap = gap;
87
88                 frame += sizeofW(StgUpdateFrame);
89                 continue;
90             } 
91
92             // single update frame, or the topmost update frame in a series
93             else {
94                 prev_was_update_frame = rtsTrue;
95                 updatee = upd->updatee;
96                 frame += sizeofW(StgUpdateFrame);
97                 continue;
98             }
99         }
100             
101         default:
102             prev_was_update_frame = rtsFalse;
103
104             // we're not in a gap... check whether this is the end of a gap
105             // (an update frame can't be the end of a gap).
106             if (current_gap_size != 0) {
107                 gap = (struct stack_gap *) (frame - sizeofW(StgUpdateFrame));
108             }
109             current_gap_size = 0;
110
111             frame += stack_frame_sizeW((StgClosure *)frame);
112             continue;
113         }
114     }
115
116     if (current_gap_size != 0) {
117         gap = (struct stack_gap *) (frame - sizeofW(StgUpdateFrame));
118     }
119
120     // Now we have a stack with gaps in it, and we have to walk down
121     // shoving the stack up to fill in the gaps.  A diagram might
122     // help:
123     //
124     //    +| ********* |
125     //     | ********* | <- sp
126     //     |           |
127     //     |           | <- gap_start
128     //     | ......... |                |
129     //     | stack_gap | <- gap         | chunk_size
130     //     | ......... |                | 
131     //     | ......... | <- gap_end     v
132     //     | ********* | 
133     //     | ********* | 
134     //     | ********* | 
135     //    -| ********* | 
136     //
137     // 'sp'  points the the current top-of-stack
138     // 'gap' points to the stack_gap structure inside the gap
139     // *****   indicates real stack data
140     // .....   indicates gap
141     // <empty> indicates unused
142     //
143     {
144         void *sp;
145         void *gap_start, *next_gap_start, *gap_end;
146         nat chunk_size;
147
148         next_gap_start = (void *)((unsigned char*)gap + sizeof(StgUpdateFrame));
149         sp = next_gap_start;
150
151         while ((StgPtr)gap > tso->sp) {
152
153             // we're working in *bytes* now...
154             gap_start = next_gap_start;
155             gap_end = (void*) ((unsigned char*)gap_start - gap->gap_size * sizeof(W_));
156
157             gap = gap->next_gap;
158             next_gap_start = (void *)((unsigned char*)gap + sizeof(StgUpdateFrame));
159
160             chunk_size = (unsigned char*)gap_end - (unsigned char*)next_gap_start;
161             sp -= chunk_size;
162             memmove(sp, next_gap_start, chunk_size);
163         }
164
165         tso->sp = (StgPtr)sp;
166     }
167 }    
168
169 /* -----------------------------------------------------------------------------
170  * Pausing a thread
171  * 
172  * We have to prepare for GC - this means doing lazy black holing
173  * here.  We also take the opportunity to do stack squeezing if it's
174  * turned on.
175  * -------------------------------------------------------------------------- */
176 void
177 threadPaused(Capability *cap, StgTSO *tso)
178 {
179     StgClosure *frame;
180     StgRetInfoTable *info;
181     const StgInfoTable *bh_info;
182     const StgInfoTable *cur_bh_info USED_IF_THREADS;
183     StgClosure *bh;
184     StgPtr stack_end;
185     nat words_to_squeeze = 0;
186     nat weight           = 0;
187     nat weight_pending   = 0;
188     rtsBool prev_was_update_frame = rtsFalse;
189     
190     // Check to see whether we have threads waiting to raise
191     // exceptions, and we're not blocking exceptions, or are blocked
192     // interruptibly.  This is important; if a thread is running with
193     // TSO_BLOCKEX and becomes blocked interruptibly, this is the only
194     // place we ensure that the blocked_exceptions get a chance.
195     maybePerformBlockedException (cap, tso);
196     if (tso->what_next == ThreadKilled) { return; }
197
198     stack_end = &tso->stack[tso->stack_size];
199     
200     frame = (StgClosure *)tso->sp;
201
202     while (1) {
203         // If we've already marked this frame, then stop here.
204         if (frame->header.info == (StgInfoTable *)&stg_marked_upd_frame_info) {
205             if (prev_was_update_frame) {
206                 words_to_squeeze += sizeofW(StgUpdateFrame);
207                 weight += weight_pending;
208                 weight_pending = 0;
209             }
210             goto end;
211         }
212
213         info = get_ret_itbl(frame);
214         
215         switch (info->i.type) {
216             
217         case UPDATE_FRAME:
218
219             SET_INFO(frame, (StgInfoTable *)&stg_marked_upd_frame_info);
220
221             bh = ((StgUpdateFrame *)frame)->updatee;
222             bh_info = bh->header.info;
223
224 #ifdef THREADED_RTS
225         retry:
226 #endif
227             if (closure_flags[INFO_PTR_TO_STRUCT(bh_info)->type] & _IND
228                 || bh_info == &stg_BLACKHOLE_info) {
229                 debugTrace(DEBUG_squeeze,
230                            "suspending duplicate work: %ld words of stack",
231                            (long)((StgPtr)frame - tso->sp));
232
233                 // If this closure is already an indirection, then
234                 // suspend the computation up to this point:
235                 suspendComputation(cap,tso,(StgPtr)frame);
236
237                 // Now drop the update frame, and arrange to return
238                 // the value to the frame underneath:
239                 tso->sp = (StgPtr)frame + sizeofW(StgUpdateFrame) - 2;
240                 tso->sp[1] = (StgWord)bh;
241                 tso->sp[0] = (W_)&stg_enter_info;
242
243                 // And continue with threadPaused; there might be
244                 // yet more computation to suspend.
245                 threadPaused(cap,tso);
246                 return;
247             }
248
249             if (bh->header.info != &stg_CAF_BLACKHOLE_info) {
250 #if (!defined(LAZY_BLACKHOLING)) && defined(DEBUG)
251                 debugBelch("Unexpected lazy BHing required at 0x%04lx\n",(long)bh);
252 #endif
253                 // zero out the slop so that the sanity checker can tell
254                 // where the next closure is.
255                 DEBUG_FILL_SLOP(bh);
256 #ifdef PROFILING
257                 // @LDV profiling
258                 // We pretend that bh is now dead.
259                 LDV_recordDead_FILL_SLOP_DYNAMIC((StgClosure *)bh);
260 #endif
261
262 #ifdef THREADED_RTS
263                 cur_bh_info = (const StgInfoTable *)
264                     cas((StgVolatilePtr)&bh->header.info, 
265                         (StgWord)bh_info, 
266                         (StgWord)&stg_BLACKHOLE_info);
267
268                 if (cur_bh_info != bh_info) {
269                     bh_info = cur_bh_info;
270                     goto retry;
271                 }
272 #else
273                 SET_INFO(bh,&stg_BLACKHOLE_info);
274 #endif
275
276                 // We pretend that bh has just been created.
277                 LDV_RECORD_CREATE(bh);
278             }
279             
280             frame = (StgClosure *) ((StgUpdateFrame *)frame + 1);
281             if (prev_was_update_frame) {
282                 words_to_squeeze += sizeofW(StgUpdateFrame);
283                 weight += weight_pending;
284                 weight_pending = 0;
285             }
286             prev_was_update_frame = rtsTrue;
287             break;
288             
289         case STOP_FRAME:
290             goto end;
291             
292             // normal stack frames; do nothing except advance the pointer
293         default:
294         {
295             nat frame_size = stack_frame_sizeW(frame);
296             weight_pending += frame_size;
297             frame = (StgClosure *)((StgPtr)frame + frame_size);
298             prev_was_update_frame = rtsFalse;
299         }
300         }
301     }
302
303 end:
304     debugTrace(DEBUG_squeeze, 
305                "words_to_squeeze: %d, weight: %d, squeeze: %s", 
306                words_to_squeeze, weight, 
307                weight < words_to_squeeze ? "YES" : "NO");
308
309     // Should we squeeze or not?  Arbitrary heuristic: we squeeze if
310     // the number of words we have to shift down is less than the
311     // number of stack words we squeeze away by doing so.
312     if (RtsFlags.GcFlags.squeezeUpdFrames == rtsTrue &&
313         ((weight <= 4 && words_to_squeeze > 0) || weight < words_to_squeeze)) {
314         stackSqueeze(tso, (StgPtr)frame);
315     }
316 }