assertion fix
[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 #ifdef THREADED_RTS
168         ASSERT(p->header.info == &stg_WHITEHOLE_info);
169 #else
170         ASSERT(p->header.info == &stg_BLACKHOLE_info);
171 #endif
172         prev = (StgSelector*)((StgClosure *)p)->payload[0];
173
174         // Update the THUNK_SELECTOR with an indirection to the
175         // EVACUATED closure now at p.  Why do this rather than
176         // upd_evacuee(q,p)?  Because we have an invariant that an
177         // EVACUATED closure always points to an object in the
178         // same or an older generation (required by the short-cut
179         // test in the EVACUATED case, below).
180         SET_INFO(p, &stg_IND_info);
181         ((StgInd *)p)->indirectee = val;
182
183         // For the purposes of LDV profiling, we have created an
184         // indirection.
185         LDV_RECORD_CREATE(p);
186
187         p = prev;
188     }
189 }
190
191 static void
192 eval_thunk_selector (StgClosure **q, StgSelector * p, rtsBool evac)
193                  // NB. for legacy reasons, p & q are swapped around :(
194 {
195     nat field;
196     StgInfoTable *info;
197     StgWord info_ptr;
198     StgClosure *selectee;
199     StgSelector *prev_thunk_selector;
200     bdescr *bd;
201     StgClosure *val;
202     
203     prev_thunk_selector = NULL;
204     // this is a chain of THUNK_SELECTORs that we are going to update
205     // to point to the value of the current THUNK_SELECTOR.  Each
206     // closure on the chain is a BLACKHOLE, and points to the next in the
207     // chain with payload[0].
208
209 selector_chain:
210
211     bd = Bdescr((StgPtr)p);
212     if (HEAP_ALLOCED(p)) {
213         // If the THUNK_SELECTOR is in to-space or in a generation that we
214         // are not collecting, then bale out early.  We won't be able to
215         // save any space in any case, and updating with an indirection is
216         // trickier in a non-collected gen: we would have to update the
217         // mutable list.
218         if ((bd->gen_no > N) || (bd->flags & BF_EVACUATED)) {
219             unchain_thunk_selectors(prev_thunk_selector, (StgClosure *)p);
220             *q = (StgClosure *)p;
221             return;
222         }
223         // we don't update THUNK_SELECTORS in the compacted
224         // generation, because compaction does not remove the INDs
225         // that result, this causes confusion later
226         // (scavenge_mark_stack doesn't deal with IND).  BEWARE!  This
227         // bit is very tricky to get right.  If you make changes
228         // around here, test by compiling stage 3 with +RTS -c -RTS.
229         if (bd->flags & BF_COMPACTED) {
230             // must call evacuate() to mark this closure if evac==rtsTrue
231             *q = (StgClosure *)p;
232             if (evac) evacuate(q);
233             unchain_thunk_selectors(prev_thunk_selector, (StgClosure *)p);
234             return;
235         }
236     }
237
238
239     // BLACKHOLE the selector thunk, since it is now under evaluation.
240     // This is important to stop us going into an infinite loop if
241     // this selector thunk eventually refers to itself.
242 #if defined(THREADED_RTS)
243     // In threaded mode, we'll use WHITEHOLE to lock the selector
244     // thunk while we evaluate it.
245     {
246         info_ptr = xchg((StgPtr)&p->header.info, (W_)&stg_WHITEHOLE_info);
247         if (info_ptr == (W_)&stg_WHITEHOLE_info) {
248             do {
249                 info_ptr = xchg((StgPtr)&p->header.info, (W_)&stg_WHITEHOLE_info);
250             } while (info_ptr == (W_)&stg_WHITEHOLE_info);
251             goto bale_out;
252         }
253         // make sure someone else didn't get here first
254         if (INFO_PTR_TO_STRUCT(info_ptr)->type != THUNK_SELECTOR) {
255             goto bale_out;
256         }
257     }
258 #else
259     // Save the real info pointer (NOTE: not the same as get_itbl()).
260     info_ptr = (StgWord)p->header.info;
261     SET_INFO(p,&stg_BLACKHOLE_info);
262 #endif
263
264     field = INFO_PTR_TO_STRUCT(info_ptr)->layout.selector_offset;
265
266     // The selectee might be a constructor closure,
267     // so we untag the pointer.
268     selectee = UNTAG_CLOSURE(p->selectee);
269
270 selector_loop:
271     // selectee now points to the closure that we're trying to select
272     // a field from.  It may or may not be in to-space: we try not to
273     // end up in to-space, but it's impractical to avoid it in
274     // general.  The compacting GC scatters to-space pointers in
275     // from-space during marking, for example.  We rely on the property
276     // that evacuate() doesn't mind if it gets passed a to-space pointer.
277
278     info = get_itbl(selectee);
279     switch (info->type) {
280       case WHITEHOLE:
281           goto bale_out; // about to be evacuated by another thread (or a loop).
282         
283       case CONSTR:
284       case CONSTR_1_0:
285       case CONSTR_0_1:
286       case CONSTR_2_0:
287       case CONSTR_1_1:
288       case CONSTR_0_2:
289       case CONSTR_STATIC:
290       case CONSTR_NOCAF_STATIC:
291           {
292               // check that the size is in range 
293               ASSERT(field <  (StgWord32)(info->layout.payload.ptrs + 
294                                           info->layout.payload.nptrs));
295           
296               // Select the right field from the constructor
297               val = selectee->payload[field];
298               
299 #ifdef PROFILING
300               // For the purposes of LDV profiling, we have destroyed
301               // the original selector thunk, p.
302               SET_INFO(p, (StgInfoTable *)info_ptr);
303               LDV_RECORD_DEAD_FILL_SLOP_DYNAMIC((StgClosure *)p);
304               SET_INFO(p, &stg_BLACKHOLE_info);
305 #endif
306
307               // the closure in val is now the "value" of the
308               // THUNK_SELECTOR in p.  However, val may itself be a
309               // THUNK_SELECTOR, in which case we want to continue
310               // evaluating until we find the real value, and then
311               // update the whole chain to point to the value.
312           val_loop:
313               info = get_itbl(UNTAG_CLOSURE(val));
314               switch (info->type) {
315               case IND:
316               case IND_PERM:
317               case IND_OLDGEN:
318               case IND_OLDGEN_PERM:
319               case IND_STATIC:
320                   val = ((StgInd *)val)->indirectee;
321                   goto val_loop;
322               case THUNK_SELECTOR:
323                   ((StgClosure*)p)->payload[0] = (StgClosure *)prev_thunk_selector;
324                   prev_thunk_selector = p;
325                   p = (StgSelector*)val;
326                   goto selector_chain;
327               default:
328                   ((StgClosure*)p)->payload[0] = (StgClosure *)prev_thunk_selector;
329                   prev_thunk_selector = p;
330
331                   *q = val;
332                   if (evac) evacuate(q);
333                   val = *q;
334                   // evacuate() cannot recurse through
335                   // eval_thunk_selector(), because we know val is not
336                   // a THUNK_SELECTOR.
337                   unchain_thunk_selectors(prev_thunk_selector, val);
338                   return;
339               }
340           }
341
342       case IND:
343       case IND_PERM:
344       case IND_OLDGEN:
345       case IND_OLDGEN_PERM:
346       case IND_STATIC:
347           // Again, we might need to untag a constructor.
348           selectee = UNTAG_CLOSURE( ((StgInd *)selectee)->indirectee );
349           goto selector_loop;
350
351       case EVACUATED:
352           // We don't follow pointers into to-space; the constructor
353           // has already been evacuated, so we won't save any space
354           // leaks by evaluating this selector thunk anyhow.
355           goto bale_out;
356
357       case THUNK_SELECTOR:
358       {
359           StgClosure *val;
360
361           // recursively evaluate this selector.  We don't want to
362           // recurse indefinitely, so we impose a depth bound.
363           if (gct->thunk_selector_depth >= MAX_THUNK_SELECTOR_DEPTH) {
364               goto bale_out;
365           }
366
367           gct->thunk_selector_depth++;
368           // rtsFalse says "don't evacuate the result".  It will,
369           // however, update any THUNK_SELECTORs that are evaluated
370           // along the way.
371           eval_thunk_selector(&val, (StgSelector*)selectee, rtsFalse);
372           gct->thunk_selector_depth--;
373
374           // did we actually manage to evaluate it?
375           if (val == selectee) goto bale_out;
376
377           // Of course this pointer might be tagged...
378           selectee = UNTAG_CLOSURE(val);
379           goto selector_loop;
380       }
381
382       case AP:
383       case AP_STACK:
384       case THUNK:
385       case THUNK_1_0:
386       case THUNK_0_1:
387       case THUNK_2_0:
388       case THUNK_1_1:
389       case THUNK_0_2:
390       case THUNK_STATIC:
391       case CAF_BLACKHOLE:
392       case SE_CAF_BLACKHOLE:
393       case SE_BLACKHOLE:
394       case BLACKHOLE:
395           // not evaluated yet 
396           goto bale_out;
397     
398       default:
399         barf("eval_thunk_selector: strange selectee %d",
400              (int)(info->type));
401     }
402
403 bale_out:
404     // We didn't manage to evaluate this thunk; restore the old info
405     // pointer.  But don't forget: we still need to evacuate the thunk itself.
406     SET_INFO(p, (const StgInfoTable *)info_ptr);
407     if (evac) {
408         copy(&val,(StgClosure *)p,THUNK_SELECTOR_sizeW(),bd->step->to);
409     } else {
410         val = (StgClosure *)p;
411     }
412     *q = val;
413     unchain_thunk_selectors(prev_thunk_selector, val);
414     return;
415 }
416
417 /* -----------------------------------------------------------------------------
418    move_TSO is called to update the TSO structure after it has been
419    moved from one place to another.
420    -------------------------------------------------------------------------- */
421
422 void
423 move_TSO (StgTSO *src, StgTSO *dest)
424 {
425     ptrdiff_t diff;
426
427     // relocate the stack pointer... 
428     diff = (StgPtr)dest - (StgPtr)src; // In *words* 
429     dest->sp = (StgPtr)dest->sp + diff;
430 }
431