[project @ 2004-08-13 13:04:50 by simonmar]
[ghc-hetmet.git] / ghc / rts / Stable.c
1 /* -----------------------------------------------------------------------------
2  * $Id: Stable.c,v 1.28 2004/08/13 13:10:45 simonmar Exp $
3  *
4  * (c) The GHC Team, 1998-2002
5  *
6  * Stable names and stable pointers.
7  *
8  * ---------------------------------------------------------------------------*/
9
10 // Make static versions of inline functions in Stable.h:
11 #define RTS_STABLE_C
12
13 #include "PosixSource.h"
14 #include "Rts.h"
15 #include "Hash.h"
16 #include "RtsUtils.h"
17 #include "Storage.h"
18 #include "RtsAPI.h"
19 #include "RtsFlags.h"
20
21 /* Comment from ADR's implementation in old RTS:
22
23   This files (together with @ghc/runtime/storage/PerformIO.lhc@ and a
24   small change in @HpOverflow.lc@) consists of the changes in the
25   runtime system required to implement "Stable Pointers". But we're
26   getting a bit ahead of ourselves --- what is a stable pointer and what
27   is it used for?
28
29   When Haskell calls C, it normally just passes over primitive integers,
30   floats, bools, strings, etc.  This doesn't cause any problems at all
31   for garbage collection because the act of passing them makes a copy
32   from the heap, stack or wherever they are onto the C-world stack.
33   However, if we were to pass a heap object such as a (Haskell) @String@
34   and a garbage collection occured before we finished using it, we'd run
35   into problems since the heap object might have been moved or even
36   deleted.
37
38   So, if a C call is able to cause a garbage collection or we want to
39   store a pointer to a heap object between C calls, we must be careful
40   when passing heap objects. Our solution is to keep a table of all
41   objects we've given to the C-world and to make sure that the garbage
42   collector collects these objects --- updating the table as required to
43   make sure we can still find the object.
44
45
46   Of course, all this rather begs the question: why would we want to
47   pass a boxed value?
48
49   One very good reason is to preserve laziness across the language
50   interface. Rather than evaluating an integer or a string because it
51   {\em might\/} be required by the C function, we can wait until the C
52   function actually wants the value and then force an evaluation.
53
54   Another very good reason (the motivating reason!) is that the C code
55   might want to execute an object of sort $IO ()$ for the side-effects
56   it will produce. For example, this is used when interfacing to an X
57   widgets library to allow a direct implementation of callbacks.
58
59
60   The @makeStablePointer :: a -> IO (StablePtr a)@ function
61   converts a value into a stable pointer.  It is part of the @PrimIO@
62   monad, because we want to be sure we don't allocate one twice by
63   accident, and then only free one of the copies.
64
65   \begin{verbatim}
66   makeStablePtr#  :: a -> State# RealWorld -> (# RealWorld, a #)
67   freeStablePtr#  :: StablePtr# a -> State# RealWorld -> State# RealWorld
68   deRefStablePtr# :: StablePtr# a -> State# RealWorld -> 
69         (# State# RealWorld, a #)
70   \end{verbatim}
71
72   There may be additional functions on the C side to allow evaluation,
73   application, etc of a stable pointer.
74
75 */
76
77 snEntry *stable_ptr_table = NULL;
78 static snEntry *stable_ptr_free = NULL;
79
80 static unsigned int SPT_size = 0;
81
82 /* This hash table maps Haskell objects to stable names, so that every
83  * call to lookupStableName on a given object will return the same
84  * stable name.
85  *
86  * OLD COMMENTS about reference counting follow.  The reference count
87  * in a stable name entry is now just a counter.
88  *
89  * Reference counting
90  * ------------------
91  * A plain stable name entry has a zero reference count, which means
92  * the entry will dissappear when the object it points to is
93  * unreachable.  For stable pointers, we need an entry that sticks
94  * around and keeps the object it points to alive, so each stable name
95  * entry has an associated reference count.
96  *
97  * A stable pointer has a weighted reference count N attached to it
98  * (actually in its upper 5 bits), which represents the weight
99  * 2^(N-1).  The stable name entry keeps a 32-bit reference count, which
100  * represents any weight between 1 and 2^32 (represented as zero).
101  * When the weight is 2^32, the stable name table owns "all" of the
102  * stable pointers to this object, and the entry can be garbage
103  * collected if the object isn't reachable.
104  *
105  * A new stable pointer is given the weight log2(W/2), where W is the
106  * weight stored in the table entry.  The new weight in the table is W
107  * - 2^log2(W/2).
108  *
109  * A stable pointer can be "split" into two stable pointers, by
110  * dividing the weight by 2 and giving each pointer half.
111  * When freeing a stable pointer, the weight of the pointer is added
112  * to the weight stored in the table entry.
113  * */
114
115 static HashTable *addrToStableHash = NULL;
116
117 #define INIT_SPT_SIZE 64
118
119 STATIC_INLINE void
120 initFreeList(snEntry *table, nat n, snEntry *free)
121 {
122   snEntry *p;
123
124   for (p = table + n - 1; p >= table; p--) {
125     p->addr   = (P_)free;
126     p->old    = NULL;
127     p->ref    = 0;
128     p->sn_obj = NULL;
129     free = p;
130   }
131   stable_ptr_free = table;
132 }
133
134 void
135 initStablePtrTable(void)
136 {
137     // Nothing to do:
138     // the table will be allocated the first time makeStablePtr is
139     // called, and we want the table to persist through multiple inits.
140 }
141
142 /*
143  * get at the real stuff...remove indirections.
144  *
145  * ToDo: move to a better home.
146  */
147 static
148 StgClosure*
149 removeIndirections(StgClosure* p)
150 {
151   StgClosure* q = p;
152
153   while (get_itbl(q)->type == IND ||
154          get_itbl(q)->type == IND_STATIC ||
155          get_itbl(q)->type == IND_OLDGEN ||
156          get_itbl(q)->type == IND_PERM ||
157          get_itbl(q)->type == IND_OLDGEN_PERM ) {
158       q = ((StgInd *)q)->indirectee;
159   }
160   return q;
161 }
162
163 StgWord
164 lookupStableName(StgPtr p)
165 {
166   StgWord sn;
167
168   if (stable_ptr_free == NULL) {
169     enlargeStablePtrTable();
170   }
171
172   /* removing indirections increases the likelihood
173    * of finding a match in the stable name hash table.
174    */
175   p = (StgPtr)removeIndirections((StgClosure*)p);
176
177   (void *)sn = lookupHashTable(addrToStableHash,(W_)p);
178   
179   if (sn != 0) {
180     ASSERT(stable_ptr_table[sn].addr == p);
181     IF_DEBUG(stable,fprintf(stderr,"cached stable name %d at %p\n",sn,p));
182     return sn;
183   } else {
184     sn = stable_ptr_free - stable_ptr_table;
185     (P_)stable_ptr_free  = stable_ptr_free->addr;
186     stable_ptr_table[sn].ref = 0;
187     stable_ptr_table[sn].addr = p;
188     stable_ptr_table[sn].sn_obj = NULL;
189     /* IF_DEBUG(stable,fprintf(stderr,"new stable name %d at
190        %p\n",sn,p)); */
191     
192     /* add the new stable name to the hash table */
193     insertHashTable(addrToStableHash, (W_)p, (void *)sn);
194
195     return sn;
196   }
197 }
198
199 STATIC_INLINE void
200 freeStableName(snEntry *sn)
201 {
202   ASSERT(sn->sn_obj == NULL);
203   if (sn->addr != NULL) {
204       removeHashTable(addrToStableHash, (W_)sn->addr, NULL);
205   }
206   sn->addr = (P_)stable_ptr_free;
207   stable_ptr_free = sn;
208 }
209
210 StgStablePtr
211 getStablePtr(StgPtr p)
212 {
213   StgWord sn;
214
215   sn = lookupStableName(p);
216   stable_ptr_table[sn].ref++;
217   return (StgStablePtr)(sn);
218 }
219
220 void
221 freeStablePtr(StgStablePtr sp)
222 {
223     snEntry *sn = &stable_ptr_table[(StgWord)sp];
224     
225     ASSERT((StgWord)sp < SPT_size  &&  sn->addr != NULL  &&  sn->ref > 0);
226
227     sn->ref--;
228
229     // If this entry has no StableName attached, then just free it
230     // immediately.  This is important; it might be a while before the
231     // next major GC which actually collects the entry.
232     if (sn->sn_obj == NULL && sn->ref == 0) {
233         freeStableName(sn);
234     }
235 }
236
237 void
238 enlargeStablePtrTable(void)
239 {
240   nat old_SPT_size = SPT_size;
241   
242   if (SPT_size == 0) {
243     // 1st time
244     SPT_size = INIT_SPT_SIZE;
245     stable_ptr_table = stgMallocBytes(SPT_size * sizeof(snEntry), 
246                                       "enlargeStablePtrTable");
247     
248     /* we don't use index 0 in the stable name table, because that
249      * would conflict with the hash table lookup operations which
250      * return NULL if an entry isn't found in the hash table.
251      */
252     initFreeList(stable_ptr_table+1,INIT_SPT_SIZE-1,NULL);
253     addrToStableHash = allocHashTable();
254   }
255   else {
256     // 2nd and subsequent times
257     SPT_size *= 2;
258     stable_ptr_table = 
259       stgReallocBytes(stable_ptr_table, 
260                       SPT_size * sizeof(snEntry),
261                       "enlargeStablePtrTable");
262
263     initFreeList(stable_ptr_table + old_SPT_size, old_SPT_size, NULL);
264   }
265 }
266
267 /* -----------------------------------------------------------------------------
268  * Treat stable pointers as roots for the garbage collector.
269  *
270  * A stable pointer is any stable name entry with a ref > 0.  We'll
271  * take the opportunity to zero the "keep" flags at the same time.
272  * -------------------------------------------------------------------------- */
273
274 void
275 markStablePtrTable(evac_fn evac)
276 {
277     snEntry *p, *end_stable_ptr_table;
278     StgPtr q;
279     
280     end_stable_ptr_table = &stable_ptr_table[SPT_size];
281     
282     // Mark all the stable *pointers* (not stable names).
283     // _starting_ at index 1; index 0 is unused.
284     for (p = stable_ptr_table+1; p < end_stable_ptr_table; p++) {
285         q = p->addr;
286
287         // Internal pointers are free slots.  If q == NULL, it's a
288         // stable name where the object has been GC'd, but the
289         // StableName object (sn_obj) is still alive.
290         if (q && (q < (P_)stable_ptr_table || q >= (P_)end_stable_ptr_table)) {
291
292             // save the current addr away: we need to be able to tell
293             // whether the objects moved in order to be able to update
294             // the hash table later.
295             p->old = p->addr;
296
297             // if the ref is non-zero, treat addr as a root
298             if (p->ref != 0) {
299                 evac((StgClosure **)&p->addr);
300             }
301         }
302     }
303 }
304
305 /* -----------------------------------------------------------------------------
306  * Thread the stable pointer table for compacting GC.
307  * 
308  * Here we must call the supplied evac function for each pointer into
309  * the heap from the stable pointer table, because the compacting
310  * collector may move the object it points to.
311  * -------------------------------------------------------------------------- */
312
313 void
314 threadStablePtrTable( evac_fn evac )
315 {
316     snEntry *p, *end_stable_ptr_table;
317     StgPtr q;
318     
319     end_stable_ptr_table = &stable_ptr_table[SPT_size];
320     
321     for (p = stable_ptr_table+1; p < end_stable_ptr_table; p++) {
322         
323         if (p->sn_obj != NULL) {
324             evac((StgClosure **)&p->sn_obj);
325         }
326
327         q = p->addr;
328         if (q && (q < (P_)stable_ptr_table || q >= (P_)end_stable_ptr_table)) {
329             evac((StgClosure **)&p->addr);
330         }
331     }
332 }
333
334 /* -----------------------------------------------------------------------------
335  * Garbage collect any dead entries in the stable pointer table.
336  *
337  * A dead entry has:
338  *
339  *          - a zero reference count
340  *          - a dead sn_obj
341  *
342  * Both of these conditions must be true in order to re-use the stable
343  * name table entry.  We can re-use stable name table entries for live
344  * heap objects, as long as the program has no StableName objects that
345  * refer to the entry.
346  * -------------------------------------------------------------------------- */
347
348 void
349 gcStablePtrTable( void )
350 {
351     snEntry *p, *end_stable_ptr_table;
352     StgPtr q;
353     
354     end_stable_ptr_table = &stable_ptr_table[SPT_size];
355     
356     // NOTE: _starting_ at index 1; index 0 is unused.
357     for (p = stable_ptr_table + 1; p < end_stable_ptr_table; p++) {
358         
359         // Update the pointer to the StableName object, if there is one
360         if (p->sn_obj != NULL) {
361             p->sn_obj = isAlive(p->sn_obj);
362         }
363         
364         // Internal pointers are free slots.  If q == NULL, it's a
365         // stable name where the object has been GC'd, but the
366         // StableName object (sn_obj) is still alive.
367         q = p->addr;
368         if (q && (q < (P_)stable_ptr_table || q >= (P_)end_stable_ptr_table)) {
369
370             // StableNames only:
371             if (p->ref == 0) {
372                 if (p->sn_obj == NULL) {
373                     // StableName object is dead
374                     freeStableName(p);
375                     IF_DEBUG(stable, fprintf(stderr,"GC'd Stable name %d\n", 
376                                              p - stable_ptr_table));
377                     continue;
378                     
379                 } else {
380                     (StgClosure *)p->addr = isAlive((StgClosure *)p->addr);
381                     IF_DEBUG(stable, fprintf(stderr,"Stable name %d still alive at %p, ref %d\n", p - stable_ptr_table, p->addr, p->ref));
382                 }
383             }
384         }
385     }
386 }
387
388 /* -----------------------------------------------------------------------------
389  * Update the StablePtr/StableName hash table
390  *
391  * The boolean argument 'full' indicates that a major collection is
392  * being done, so we might as well throw away the hash table and build
393  * a new one.  For a minor collection, we just re-hash the elements
394  * that changed.
395  * -------------------------------------------------------------------------- */
396
397 void
398 updateStablePtrTable(rtsBool full)
399 {
400     snEntry *p, *end_stable_ptr_table;
401     
402     if (full && addrToStableHash != NULL) {
403         freeHashTable(addrToStableHash,NULL);
404         addrToStableHash = allocHashTable();
405     }
406     
407     end_stable_ptr_table = &stable_ptr_table[SPT_size];
408     
409     // NOTE: _starting_ at index 1; index 0 is unused.
410     for (p = stable_ptr_table + 1; p < end_stable_ptr_table; p++) {
411         
412         if (p->addr == NULL) {
413             if (p->old != NULL) {
414                 // The target has been garbage collected.  Remove its
415                 // entry from the hash table.
416                 removeHashTable(addrToStableHash, (W_)p->old, NULL);
417                 p->old = NULL;
418             }
419         }
420         else if (p->addr < (P_)stable_ptr_table 
421                  || p->addr >= (P_)end_stable_ptr_table) {
422             // Target still alive, Re-hash this stable name 
423             if (full) {
424                 insertHashTable(addrToStableHash, (W_)p->addr, 
425                                 (void *)(p - stable_ptr_table));
426             } else if (p->addr != p->old) {
427                 removeHashTable(addrToStableHash, (W_)p->old, NULL);
428                 insertHashTable(addrToStableHash, (W_)p->addr, 
429                                 (void *)(p - stable_ptr_table));
430             }
431         }
432     }
433 }