cache bd->todo_bd->free and the limit in the workspace
[ghc-hetmet.git] / rts / sm / Evac.c
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team 1998-2006
4  *
5  * Generational garbage collector: evacuation functions
6  *
7  * Documentation on the architecture of the Garbage Collector can be
8  * found in the online commentary:
9  * 
10  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC
11  *
12  * ---------------------------------------------------------------------------*/
13
14 #include "Rts.h"
15 #include "Storage.h"
16 #include "MBlock.h"
17 #include "Evac.h"
18 #include "GC.h"
19 #include "GCUtils.h"
20 #include "Compact.h"
21 #include "Prelude.h"
22 #include "LdvProfile.h"
23
24 /* Used to avoid long recursion due to selector thunks
25  */
26 #define MAX_THUNK_SELECTOR_DEPTH 16
27
28 static void eval_thunk_selector (StgClosure **q, StgSelector * p, rtsBool);
29 STATIC_INLINE void evacuate_large(StgPtr p);
30
31 /* -----------------------------------------------------------------------------
32    Allocate some space in which to copy an object.
33    -------------------------------------------------------------------------- */
34
35 STATIC_INLINE StgPtr
36 alloc_for_copy (nat size, step *stp)
37 {
38     StgPtr to;
39     step_workspace *ws;
40
41     /* Find out where we're going, using the handy "to" pointer in 
42      * the step of the source object.  If it turns out we need to
43      * evacuate to an older generation, adjust it here (see comment
44      * by evacuate()).
45      */
46     if (stp < gct->evac_step) {
47         if (gct->eager_promotion) {
48             stp = gct->evac_step;
49         } else {
50             gct->failed_to_evac = rtsTrue;
51         }
52     }
53     
54     ws = &gct->steps[stp->gen_no][stp->no];
55     
56     /* chain a new block onto the to-space for the destination step if
57      * necessary.
58      */
59     
60     ASSERT(ws->todo_free >= ws->todo_bd->free && ws->todo_free <= ws->todo_lim);
61     to = ws->todo_free;
62     if (to + size >= ws->todo_lim) {
63         to = gc_alloc_todo_block(ws);
64     }
65     ws->todo_free = to + size;
66     ASSERT(ws->todo_free >= ws->todo_bd->free && ws->todo_free <= ws->todo_lim);
67
68     return to;
69 }
70
71 /* -----------------------------------------------------------------------------
72    The evacuate() code
73    -------------------------------------------------------------------------- */
74
75 #define MINOR_GC
76 #include "Evac.c-inc"
77
78 #undef MINOR_GC
79 #include "Evac.c-inc"
80
81 /* -----------------------------------------------------------------------------
82    Evacuate a large object
83
84    This just consists of removing the object from the (doubly-linked)
85    step->large_objects list, and linking it on to the (singly-linked)
86    step->new_large_objects list, from where it will be scavenged later.
87
88    Convention: bd->flags has BF_EVACUATED set for a large object
89    that has been evacuated, or unset otherwise.
90    -------------------------------------------------------------------------- */
91
92 STATIC_INLINE void
93 evacuate_large(StgPtr p)
94 {
95   bdescr *bd = Bdescr(p);
96   step *stp;
97   step_workspace *ws;
98
99   // object must be at the beginning of the block (or be a ByteArray)
100   ASSERT(get_itbl((StgClosure *)p)->type == ARR_WORDS ||
101          (((W_)p & BLOCK_MASK) == 0));
102
103   // already evacuated? 
104   if (bd->flags & BF_EVACUATED) { 
105     /* Don't forget to set the gct->failed_to_evac flag if we didn't get
106      * the desired destination (see comments in evacuate()).
107      */
108     if (bd->step < gct->evac_step) {
109       gct->failed_to_evac = rtsTrue;
110       TICK_GC_FAILED_PROMOTION();
111     }
112     return;
113   }
114
115   stp = bd->step;
116
117   ACQUIRE_SPIN_LOCK(&stp->sync_large_objects);
118   // remove from large_object list 
119   if (bd->u.back) {
120     bd->u.back->link = bd->link;
121   } else { // first object in the list 
122     stp->large_objects = bd->link;
123   }
124   if (bd->link) {
125     bd->link->u.back = bd->u.back;
126   }
127   RELEASE_SPIN_LOCK(&stp->sync_large_objects);
128   
129   /* link it on to the evacuated large object list of the destination step
130    */
131   stp = bd->step->to;
132   if (stp < gct->evac_step) {
133       if (gct->eager_promotion) {
134           stp = gct->evac_step;
135       } else {
136           gct->failed_to_evac = rtsTrue;
137       }
138   }
139
140   ws = &gct->steps[stp->gen_no][stp->no];
141   bd->step = stp;
142   bd->gen_no = stp->gen_no;
143   bd->link = ws->todo_large_objects;
144   ws->todo_large_objects = bd;
145   bd->flags |= BF_EVACUATED;
146 }
147
148 /* -----------------------------------------------------------------------------
149    Evaluate a THUNK_SELECTOR if possible.
150
151    p points to a THUNK_SELECTOR that we want to evaluate.  The
152    result of "evaluating" it will be evacuated and a pointer to the
153    to-space closure will be returned.
154
155    If the THUNK_SELECTOR could not be evaluated (its selectee is still
156    a THUNK, for example), then the THUNK_SELECTOR itself will be
157    evacuated.
158    -------------------------------------------------------------------------- */
159 static void
160 unchain_thunk_selectors(StgSelector *p, StgClosure *val)
161 {
162     StgSelector *prev;
163
164     prev = NULL;
165     while (p)
166     {
167         ASSERT(p->header.info == &stg_BLACKHOLE_info
168               || p->header.info == &stg_WHITEHOLE_info);
169         prev = (StgSelector*)((StgClosure *)p)->payload[0];
170
171         // Update the THUNK_SELECTOR with an indirection to the
172         // EVACUATED closure now at p.  Why do this rather than
173         // upd_evacuee(q,p)?  Because we have an invariant that an
174         // EVACUATED closure always points to an object in the
175         // same or an older generation (required by the short-cut
176         // test in the EVACUATED case, below).
177         SET_INFO(p, &stg_IND_info);
178         ((StgInd *)p)->indirectee = val;
179
180         // For the purposes of LDV profiling, we have created an
181         // indirection.
182         LDV_RECORD_CREATE(p);
183
184         p = prev;
185     }
186 }
187
188 static void
189 eval_thunk_selector (StgClosure **q, StgSelector * p, rtsBool evac)
190                  // NB. for legacy reasons, p & q are swapped around :(
191 {
192     nat field;
193     StgInfoTable *info;
194     StgWord info_ptr;
195     StgClosure *selectee;
196     StgSelector *prev_thunk_selector;
197     bdescr *bd;
198     StgClosure *val;
199     
200     prev_thunk_selector = NULL;
201     // this is a chain of THUNK_SELECTORs that we are going to update
202     // to point to the value of the current THUNK_SELECTOR.  Each
203     // closure on the chain is a BLACKHOLE, and points to the next in the
204     // chain with payload[0].
205
206 selector_chain:
207
208     bd = Bdescr((StgPtr)p);
209     if (HEAP_ALLOCED(p)) {
210         // If the THUNK_SELECTOR is in to-space or in a generation that we
211         // are not collecting, then bale out early.  We won't be able to
212         // save any space in any case, and updating with an indirection is
213         // trickier in a non-collected gen: we would have to update the
214         // mutable list.
215         if ((bd->gen_no > N) || (bd->flags & BF_EVACUATED)) {
216             unchain_thunk_selectors(prev_thunk_selector, (StgClosure *)p);
217             *q = (StgClosure *)p;
218             return;
219         }
220         // we don't update THUNK_SELECTORS in the compacted
221         // generation, because compaction does not remove the INDs
222         // that result, this causes confusion later
223         // (scavenge_mark_stack doesn't deal with IND).  BEWARE!  This
224         // bit is very tricky to get right.  If you make changes
225         // around here, test by compiling stage 3 with +RTS -c -RTS.
226         if (bd->flags & BF_COMPACTED) {
227             // must call evacuate() to mark this closure if evac==rtsTrue
228             *q = (StgClosure *)p;
229             if (evac) evacuate(q);
230             unchain_thunk_selectors(prev_thunk_selector, (StgClosure *)p);
231             return;
232         }
233     }
234
235
236     // BLACKHOLE the selector thunk, since it is now under evaluation.
237     // This is important to stop us going into an infinite loop if
238     // this selector thunk eventually refers to itself.
239 #if defined(THREADED_RTS)
240     // In threaded mode, we'll use WHITEHOLE to lock the selector
241     // thunk while we evaluate it.
242     {
243         info_ptr = xchg((StgPtr)&p->header.info, (W_)&stg_WHITEHOLE_info);
244         if (info_ptr == (W_)&stg_WHITEHOLE_info) {
245             do {
246                 info_ptr = xchg((StgPtr)&p->header.info, (W_)&stg_WHITEHOLE_info);
247             } while (info_ptr == (W_)&stg_WHITEHOLE_info);
248             goto bale_out;
249         }
250         // make sure someone else didn't get here first
251         if (INFO_PTR_TO_STRUCT(info_ptr)->type != THUNK_SELECTOR) {
252             goto bale_out;
253         }
254     }
255 #else
256     // Save the real info pointer (NOTE: not the same as get_itbl()).
257     info_ptr = (StgWord)p->header.info;
258     SET_INFO(p,&stg_BLACKHOLE_info);
259 #endif
260
261     field = INFO_PTR_TO_STRUCT(info_ptr)->layout.selector_offset;
262
263     // The selectee might be a constructor closure,
264     // so we untag the pointer.
265     selectee = UNTAG_CLOSURE(p->selectee);
266
267 selector_loop:
268     // selectee now points to the closure that we're trying to select
269     // a field from.  It may or may not be in to-space: we try not to
270     // end up in to-space, but it's impractical to avoid it in
271     // general.  The compacting GC scatters to-space pointers in
272     // from-space during marking, for example.  We rely on the property
273     // that evacuate() doesn't mind if it gets passed a to-space pointer.
274
275     info = get_itbl(selectee);
276     switch (info->type) {
277       case WHITEHOLE:
278           goto bale_out; // about to be evacuated by another thread (or a loop).
279         
280       case CONSTR:
281       case CONSTR_1_0:
282       case CONSTR_0_1:
283       case CONSTR_2_0:
284       case CONSTR_1_1:
285       case CONSTR_0_2:
286       case CONSTR_STATIC:
287       case CONSTR_NOCAF_STATIC:
288           {
289               // check that the size is in range 
290               ASSERT(field <  (StgWord32)(info->layout.payload.ptrs + 
291                                           info->layout.payload.nptrs));
292           
293               // Select the right field from the constructor
294               val = selectee->payload[field];
295               
296 #ifdef PROFILING
297               // For the purposes of LDV profiling, we have destroyed
298               // the original selector thunk, p.
299               SET_INFO(p, (StgInfoTable *)info_ptr);
300               LDV_RECORD_DEAD_FILL_SLOP_DYNAMIC((StgClosure *)p);
301               SET_INFO(p, &stg_BLACKHOLE_info);
302 #endif
303
304               // the closure in val is now the "value" of the
305               // THUNK_SELECTOR in p.  However, val may itself be a
306               // THUNK_SELECTOR, in which case we want to continue
307               // evaluating until we find the real value, and then
308               // update the whole chain to point to the value.
309           val_loop:
310               info = get_itbl(UNTAG_CLOSURE(val));
311               switch (info->type) {
312               case IND:
313               case IND_PERM:
314               case IND_OLDGEN:
315               case IND_OLDGEN_PERM:
316               case IND_STATIC:
317                   val = ((StgInd *)val)->indirectee;
318                   goto val_loop;
319               case THUNK_SELECTOR:
320                   ((StgClosure*)p)->payload[0] = (StgClosure *)prev_thunk_selector;
321                   prev_thunk_selector = p;
322                   p = (StgSelector*)val;
323                   goto selector_chain;
324               default:
325                   ((StgClosure*)p)->payload[0] = (StgClosure *)prev_thunk_selector;
326                   prev_thunk_selector = p;
327
328                   *q = val;
329                   if (evac) evacuate(q);
330                   val = *q;
331                   // evacuate() cannot recurse through
332                   // eval_thunk_selector(), because we know val is not
333                   // a THUNK_SELECTOR.
334                   unchain_thunk_selectors(prev_thunk_selector, val);
335                   return;
336               }
337           }
338
339       case IND:
340       case IND_PERM:
341       case IND_OLDGEN:
342       case IND_OLDGEN_PERM:
343       case IND_STATIC:
344           // Again, we might need to untag a constructor.
345           selectee = UNTAG_CLOSURE( ((StgInd *)selectee)->indirectee );
346           goto selector_loop;
347
348       case EVACUATED:
349           // We don't follow pointers into to-space; the constructor
350           // has already been evacuated, so we won't save any space
351           // leaks by evaluating this selector thunk anyhow.
352           goto bale_out;
353
354       case THUNK_SELECTOR:
355       {
356           StgClosure *val;
357
358           // recursively evaluate this selector.  We don't want to
359           // recurse indefinitely, so we impose a depth bound.
360           if (gct->thunk_selector_depth >= MAX_THUNK_SELECTOR_DEPTH) {
361               goto bale_out;
362           }
363
364           gct->thunk_selector_depth++;
365           // rtsFalse says "don't evacuate the result".  It will,
366           // however, update any THUNK_SELECTORs that are evaluated
367           // along the way.
368           eval_thunk_selector(&val, (StgSelector*)selectee, rtsFalse);
369           gct->thunk_selector_depth--;
370
371           // did we actually manage to evaluate it?
372           if (val == selectee) goto bale_out;
373
374           // Of course this pointer might be tagged...
375           selectee = UNTAG_CLOSURE(val);
376           goto selector_loop;
377       }
378
379       case AP:
380       case AP_STACK:
381       case THUNK:
382       case THUNK_1_0:
383       case THUNK_0_1:
384       case THUNK_2_0:
385       case THUNK_1_1:
386       case THUNK_0_2:
387       case THUNK_STATIC:
388       case CAF_BLACKHOLE:
389       case SE_CAF_BLACKHOLE:
390       case SE_BLACKHOLE:
391       case BLACKHOLE:
392           // not evaluated yet 
393           goto bale_out;
394     
395       default:
396         barf("eval_thunk_selector: strange selectee %d",
397              (int)(info->type));
398     }
399
400 bale_out:
401     // We didn't manage to evaluate this thunk; restore the old info
402     // pointer.  But don't forget: we still need to evacuate the thunk itself.
403     SET_INFO(p, (const StgInfoTable *)info_ptr);
404     if (evac) {
405         copy(&val,(StgClosure *)p,THUNK_SELECTOR_sizeW(),bd->step->to);
406     } else {
407         val = (StgClosure *)p;
408     }
409     *q = val;
410     unchain_thunk_selectors(prev_thunk_selector, val);
411     return;
412 }
413
414 /* -----------------------------------------------------------------------------
415    move_TSO is called to update the TSO structure after it has been
416    moved from one place to another.
417    -------------------------------------------------------------------------- */
418
419 void
420 move_TSO (StgTSO *src, StgTSO *dest)
421 {
422     ptrdiff_t diff;
423
424     // relocate the stack pointer... 
425     diff = (StgPtr)dest - (StgPtr)src; // In *words* 
426     dest->sp = (StgPtr)dest->sp + diff;
427 }
428