Fix memory management for toggle-ref
[platform/upstream/libgc.git] / finalize.c
1 /*
2  * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3  * Copyright (c) 1991-1996 by Xerox Corporation.  All rights reserved.
4  * Copyright (c) 1996-1999 by Silicon Graphics.  All rights reserved.
5  * Copyright (C) 2007 Free Software Foundation, Inc
6
7  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
9  *
10  * Permission is hereby granted to use or copy this program
11  * for any purpose,  provided the above notices are retained on all copies.
12  * Permission to modify the code and to distribute modified code is granted,
13  * provided the above notices are retained, and a notice that the code was
14  * modified is included with the above copyright notice.
15  */
16
17 #include "private/gc_pmark.h"
18
19 #ifndef GC_NO_FINALIZATION
20
21 /* Type of mark procedure used for marking from finalizable object.     */
22 /* This procedure normally does not mark the object, only its           */
23 /* descendants.                                                         */
24 typedef void (* finalization_mark_proc)(ptr_t /* finalizable_obj_ptr */);
25
26 #define HASH3(addr,size,log_size) \
27         ((((word)(addr) >> 3) ^ ((word)(addr) >> (3 + (log_size)))) \
28          & ((size) - 1))
29 #define HASH2(addr,log_size) HASH3(addr, 1 << (log_size), log_size)
30
31 struct hash_chain_entry {
32     word hidden_key;
33     struct hash_chain_entry * next;
34 };
35
36 struct disappearing_link {
37     struct hash_chain_entry prolog;
38 #   define dl_hidden_link prolog.hidden_key
39                                 /* Field to be cleared.         */
40 #   define dl_next(x) (struct disappearing_link *)((x) -> prolog.next)
41 #   define dl_set_next(x, y) \
42                 (void)((x)->prolog.next = (struct hash_chain_entry *)(y))
43     word dl_hidden_obj;         /* Pointer to object base       */
44 };
45
46 struct dl_hashtbl_s {
47     struct disappearing_link **head;
48     signed_word log_size;
49     word entries;
50 };
51
52 STATIC struct dl_hashtbl_s GC_dl_hashtbl = {
53     /* head */ NULL, /* log_size */ -1, /* entries */ 0 };
54 #ifndef GC_LONG_REFS_NOT_NEEDED
55   STATIC struct dl_hashtbl_s GC_ll_hashtbl = { NULL, -1, 0 };
56 #endif
57
58 struct finalizable_object {
59     struct hash_chain_entry prolog;
60 #   define fo_hidden_base prolog.hidden_key
61                                 /* Pointer to object base.      */
62                                 /* No longer hidden once object */
63                                 /* is on finalize_now queue.    */
64 #   define fo_next(x) (struct finalizable_object *)((x) -> prolog.next)
65 #   define fo_set_next(x,y) ((x)->prolog.next = (struct hash_chain_entry *)(y))
66     GC_finalization_proc fo_fn; /* Finalizer.                   */
67     ptr_t fo_client_data;
68     word fo_object_size;        /* In bytes.                    */
69     finalization_mark_proc fo_mark_proc;        /* Mark-through procedure */
70 };
71
72 static signed_word log_fo_table_size = -1;
73
74 STATIC struct {
75   struct finalizable_object **fo_head;
76   /* List of objects that should be finalized now: */
77   struct finalizable_object *finalize_now;
78 } GC_fnlz_roots = { NULL, NULL };
79
80 GC_API void GC_CALL GC_push_finalizer_structures(void)
81 {
82   GC_ASSERT((word)&GC_dl_hashtbl.head % sizeof(word) == 0);
83   GC_ASSERT((word)&GC_fnlz_roots % sizeof(word) == 0);
84 # ifndef GC_LONG_REFS_NOT_NEEDED
85     GC_ASSERT((word)&GC_ll_hashtbl.head % sizeof(word) == 0);
86     GC_PUSH_ALL_SYM(GC_ll_hashtbl.head);
87 # endif
88   GC_PUSH_ALL_SYM(GC_dl_hashtbl.head);
89   GC_PUSH_ALL_SYM(GC_fnlz_roots);
90 }
91
92 /* Double the size of a hash table. *size_ptr is the log of its current */
93 /* size.  May be a no-op.                                               */
94 /* *table is a pointer to an array of hash headers.  If we succeed, we  */
95 /* update both *table and *log_size_ptr.  Lock is held.                 */
96 STATIC void GC_grow_table(struct hash_chain_entry ***table,
97                           signed_word *log_size_ptr)
98 {
99     register word i;
100     register struct hash_chain_entry *p;
101     signed_word log_old_size = *log_size_ptr;
102     signed_word log_new_size = log_old_size + 1;
103     word old_size = ((log_old_size == -1)? 0: (1 << log_old_size));
104     word new_size = (word)1 << log_new_size;
105     /* FIXME: Power of 2 size often gets rounded up to one more page. */
106     struct hash_chain_entry **new_table = (struct hash_chain_entry **)
107         GC_INTERNAL_MALLOC_IGNORE_OFF_PAGE(
108                 (size_t)new_size * sizeof(struct hash_chain_entry *), NORMAL);
109
110     if (new_table == 0) {
111         if (*table == 0) {
112             ABORT("Insufficient space for initial table allocation");
113         } else {
114             return;
115         }
116     }
117     for (i = 0; i < old_size; i++) {
118       p = (*table)[i];
119       while (p != 0) {
120         ptr_t real_key = GC_REVEAL_POINTER(p -> hidden_key);
121         struct hash_chain_entry *next = p -> next;
122         size_t new_hash = HASH3(real_key, new_size, log_new_size);
123
124         p -> next = new_table[new_hash];
125         new_table[new_hash] = p;
126         p = next;
127       }
128     }
129     *log_size_ptr = log_new_size;
130     *table = new_table;
131 }
132
133 GC_API int GC_CALL GC_register_disappearing_link(void * * link)
134 {
135     ptr_t base;
136
137     base = (ptr_t)GC_base(link);
138     if (base == 0)
139         ABORT("Bad arg to GC_register_disappearing_link");
140     return(GC_general_register_disappearing_link(link, base));
141 }
142
143 STATIC int GC_register_disappearing_link_inner(
144                         struct dl_hashtbl_s *dl_hashtbl, void **link,
145                         const void *obj, const char *tbl_log_name)
146 {
147     struct disappearing_link *curr_dl;
148     size_t index;
149     struct disappearing_link * new_dl;
150     DCL_LOCK_STATE;
151
152     LOCK();
153     GC_ASSERT(obj != NULL && GC_base_C(obj) == obj);
154     if (dl_hashtbl -> log_size == -1
155         || dl_hashtbl -> entries > ((word)1 << dl_hashtbl -> log_size)) {
156         GC_grow_table((struct hash_chain_entry ***)&dl_hashtbl -> head,
157                       &dl_hashtbl -> log_size);
158         GC_COND_LOG_PRINTF("Grew %s table to %u entries\n", tbl_log_name,
159                            1 << (unsigned)dl_hashtbl -> log_size);
160     }
161     index = HASH2(link, dl_hashtbl -> log_size);
162     for (curr_dl = dl_hashtbl -> head[index]; curr_dl != 0;
163          curr_dl = dl_next(curr_dl)) {
164         if (curr_dl -> dl_hidden_link == GC_HIDE_POINTER(link)) {
165             curr_dl -> dl_hidden_obj = GC_HIDE_POINTER(obj);
166             UNLOCK();
167             return GC_DUPLICATE;
168         }
169     }
170     new_dl = (struct disappearing_link *)
171         GC_INTERNAL_MALLOC(sizeof(struct disappearing_link),NORMAL);
172     if (0 == new_dl) {
173       GC_oom_func oom_fn = GC_oom_fn;
174       UNLOCK();
175       new_dl = (struct disappearing_link *)
176                 (*oom_fn)(sizeof(struct disappearing_link));
177       if (0 == new_dl) {
178         return GC_NO_MEMORY;
179       }
180       /* It's not likely we'll make it here, but ... */
181       LOCK();
182       /* Recalculate index since the table may grow.    */
183       index = HASH2(link, dl_hashtbl -> log_size);
184       /* Check again that our disappearing link not in the table. */
185       for (curr_dl = dl_hashtbl -> head[index]; curr_dl != 0;
186            curr_dl = dl_next(curr_dl)) {
187         if (curr_dl -> dl_hidden_link == GC_HIDE_POINTER(link)) {
188           curr_dl -> dl_hidden_obj = GC_HIDE_POINTER(obj);
189           UNLOCK();
190 #         ifndef DBG_HDRS_ALL
191             /* Free unused new_dl returned by GC_oom_fn() */
192             GC_free((void *)new_dl);
193 #         endif
194           return GC_DUPLICATE;
195         }
196       }
197     }
198     new_dl -> dl_hidden_obj = GC_HIDE_POINTER(obj);
199     new_dl -> dl_hidden_link = GC_HIDE_POINTER(link);
200     dl_set_next(new_dl, dl_hashtbl -> head[index]);
201     dl_hashtbl -> head[index] = new_dl;
202     dl_hashtbl -> entries++;
203     UNLOCK();
204     return GC_SUCCESS;
205 }
206
207 GC_API int GC_CALL GC_general_register_disappearing_link(void * * link,
208                                                          const void * obj)
209 {
210     if (((word)link & (ALIGNMENT-1)) != 0 || NULL == link)
211         ABORT("Bad arg to GC_general_register_disappearing_link");
212     return GC_register_disappearing_link_inner(&GC_dl_hashtbl, link, obj,
213                                                "dl");
214 }
215
216 #ifdef DBG_HDRS_ALL
217 # define FREE_DL_ENTRY(curr_dl) dl_set_next(curr_dl, NULL)
218 #else
219 # define FREE_DL_ENTRY(curr_dl) GC_free(curr_dl)
220 #endif
221
222 /* Unregisters given link and returns the link entry to free.   */
223 /* Assume the lock is held.                                     */
224 GC_INLINE struct disappearing_link *GC_unregister_disappearing_link_inner(
225                                 struct dl_hashtbl_s *dl_hashtbl, void **link)
226 {
227     struct disappearing_link *curr_dl;
228     struct disappearing_link *prev_dl = NULL;
229     size_t index = HASH2(link, dl_hashtbl->log_size);
230
231     for (curr_dl = dl_hashtbl -> head[index]; curr_dl;
232          curr_dl = dl_next(curr_dl)) {
233         if (curr_dl -> dl_hidden_link == GC_HIDE_POINTER(link)) {
234             /* Remove found entry from the table. */
235             if (NULL == prev_dl) {
236                 dl_hashtbl -> head[index] = dl_next(curr_dl);
237             } else {
238                 dl_set_next(prev_dl, dl_next(curr_dl));
239             }
240             dl_hashtbl -> entries--;
241             break;
242         }
243         prev_dl = curr_dl;
244     }
245     return curr_dl;
246 }
247
248 GC_API int GC_CALL GC_unregister_disappearing_link(void * * link)
249 {
250     struct disappearing_link *curr_dl;
251     DCL_LOCK_STATE;
252
253     if (((word)link & (ALIGNMENT-1)) != 0) return(0); /* Nothing to do. */
254
255     LOCK();
256     curr_dl = GC_unregister_disappearing_link_inner(&GC_dl_hashtbl, link);
257     UNLOCK();
258     if (NULL == curr_dl) return 0;
259     FREE_DL_ENTRY(curr_dl);
260     return 1;
261 }
262
263 /* toggleref support */
264 typedef struct {
265     GC_PTR strong_ref;
266     GC_hidden_pointer weak_ref;
267 } GCToggleRef;
268
269 static int (*GC_toggleref_callback) (GC_PTR obj);
270 static GCToggleRef *GC_toggleref_array;
271 static int GC_toggleref_array_size;
272 static int GC_toggleref_array_capacity;
273
274
275 void
276 GC_process_togglerefs (void)
277 {
278     int i, w;
279     int toggle_ref_counts [3] = { 0, 0, 0 };
280
281     for (i = w = 0; i < GC_toggleref_array_size; ++i) {
282         int res;
283         GCToggleRef r = GC_toggleref_array [i];
284
285         GC_PTR obj;
286
287         if (r.strong_ref)
288             obj = r.strong_ref;
289         else if (r.weak_ref)
290             obj = GC_REVEAL_POINTER (r.weak_ref);
291         else
292             continue;
293
294         res = GC_toggleref_callback (obj);
295         ++toggle_ref_counts [res];
296         switch (res) {
297         case 0:
298             break;
299         case 1:
300             GC_toggleref_array [w].strong_ref = obj;
301             GC_toggleref_array [w].weak_ref = (GC_hidden_pointer)NULL;
302             ++w;
303             break;
304         case 2:
305             GC_toggleref_array [w].strong_ref = NULL;
306             GC_toggleref_array [w].weak_ref = GC_HIDE_POINTER (obj);
307             ++w;
308             break;
309         default:
310             ABORT("Invalid callback result");
311         }
312     }
313
314     for (i = w; i < GC_toggleref_array_size; ++i) {
315         GC_toggleref_array [w].strong_ref = NULL;
316         GC_toggleref_array [w].weak_ref = (GC_hidden_pointer)NULL;
317     }
318
319     GC_toggleref_array_size = w;
320 }
321
322
323 static void push_and_mark_object (GC_PTR p)
324 {
325     hdr * hhdr = HDR(p);
326
327     PUSH_OBJ(p, hhdr, GC_mark_stack_top,
328          &(GC_mark_stack[GC_mark_stack_size]));
329
330     while (!GC_mark_stack_empty()) MARK_FROM_MARK_STACK();
331     GC_set_mark_bit (p);
332     if (GC_mark_state != MS_NONE)
333         while (!GC_mark_some((ptr_t)0)) {}
334 }
335
336 static void GC_mark_togglerefs ()
337 {
338     int i;
339     if (!GC_toggleref_array)
340         return;
341
342     GC_set_mark_bit (GC_toggleref_array);
343     for (i = 0; i < GC_toggleref_array_size; ++i) {
344         if (GC_toggleref_array [i].strong_ref) {
345             GC_PTR object = GC_toggleref_array [i].strong_ref;
346
347             push_and_mark_object (object);
348         }
349     }
350 }
351
352 static void GC_clear_togglerefs ()
353 {
354     int i;
355     for (i = 0; i < GC_toggleref_array_size; ++i) {
356         if (GC_toggleref_array [i].weak_ref) {
357             GC_PTR object = GC_REVEAL_POINTER (GC_toggleref_array [i].weak_ref);
358
359             if (!GC_is_marked (object)) {
360                 GC_toggleref_array [i].weak_ref = (GC_hidden_pointer)NULL; /* We defer compaction to only happen on the callback step. */
361             } else {
362                 /*No need to copy, boehm is non-moving */
363             }
364         }
365     }
366 }
367
368
369
370 void GC_toggleref_register_callback(int (*proccess_toggleref) (GC_PTR obj))
371 {
372     GC_toggleref_callback = proccess_toggleref;
373 }
374
375 static void
376 ensure_toggleref_capacity (int capacity)
377 {
378     if (!GC_toggleref_array) {
379         GC_toggleref_array_capacity = 32;
380         GC_toggleref_array = (GCToggleRef *) GC_INTERNAL_MALLOC_IGNORE_OFF_PAGE (GC_toggleref_array_capacity * sizeof (GCToggleRef), NORMAL);
381     }
382     if (GC_toggleref_array_size + capacity >= GC_toggleref_array_capacity) {
383         GCToggleRef *tmp;
384         int old_capacity = GC_toggleref_array_capacity;
385         while (GC_toggleref_array_capacity < GC_toggleref_array_size + capacity)
386             GC_toggleref_array_capacity *= 2;
387
388         tmp = (GCToggleRef *) GC_INTERNAL_MALLOC_IGNORE_OFF_PAGE (GC_toggleref_array_capacity * sizeof (GCToggleRef), NORMAL);
389         memcpy (tmp, GC_toggleref_array, GC_toggleref_array_size * sizeof (GCToggleRef));
390
391         GC_INTERNAL_FREE(GC_toggleref_array);
392         GC_toggleref_array = tmp;
393     }
394 }
395
396 void
397 GC_toggleref_add (GC_PTR object, int strong_ref)
398 {
399     DCL_LOCK_STATE;
400     LOCK();
401
402     if (!GC_toggleref_callback)
403         goto end;
404
405     ensure_toggleref_capacity (1);
406     GC_toggleref_array [GC_toggleref_array_size].strong_ref = strong_ref ? object : NULL;
407     GC_toggleref_array [GC_toggleref_array_size].weak_ref = strong_ref ? (GC_hidden_pointer)NULL : GC_HIDE_POINTER (object);
408     ++GC_toggleref_array_size;
409
410 end:
411     UNLOCK();
412 }
413
414
415 /* Finalizer callback support. */
416 STATIC GC_await_finalize_proc GC_object_finalized_proc = 0;
417
418 GC_API void GC_CALL GC_set_await_finalize_proc(GC_await_finalize_proc fn)
419 {
420   DCL_LOCK_STATE;
421
422   LOCK();
423   GC_object_finalized_proc = fn;
424   UNLOCK();
425 }
426
427 GC_API GC_await_finalize_proc GC_CALL GC_get_await_finalize_proc(void)
428 {
429   GC_await_finalize_proc fn;
430   DCL_LOCK_STATE;
431
432   LOCK();
433   fn = GC_object_finalized_proc;
434   UNLOCK();
435   return fn;
436 }
437
438 #ifndef GC_LONG_REFS_NOT_NEEDED
439   GC_API int GC_CALL GC_register_long_link(void * * link, const void * obj)
440   {
441     if (((word)link & (ALIGNMENT-1)) != 0 || NULL == link)
442         ABORT("Bad arg to GC_register_long_link");
443     return GC_register_disappearing_link_inner(&GC_ll_hashtbl, link, obj,
444                                                "long dl");
445   }
446
447   GC_API int GC_CALL GC_unregister_long_link(void * * link)
448   {
449     struct disappearing_link *curr_dl;
450     DCL_LOCK_STATE;
451
452     if (((word)link & (ALIGNMENT-1)) != 0) return(0); /* Nothing to do. */
453
454     LOCK();
455     curr_dl = GC_unregister_disappearing_link_inner(&GC_ll_hashtbl, link);
456     UNLOCK();
457     if (NULL == curr_dl) return 0;
458     FREE_DL_ENTRY(curr_dl);
459     return 1;
460   }
461 #endif /* !GC_LONG_REFS_NOT_NEEDED */
462
463 #ifndef GC_MOVE_DISAPPEARING_LINK_NOT_NEEDED
464   /* Moves a link.  Assume the lock is held.    */
465   STATIC int GC_move_disappearing_link_inner(
466                                 struct dl_hashtbl_s *dl_hashtbl,
467                                 void **link, void **new_link)
468   {
469     struct disappearing_link *curr_dl, *prev_dl, *new_dl;
470     size_t curr_index, new_index;
471     word curr_hidden_link;
472     word new_hidden_link;
473
474     /* Find current link.       */
475     curr_index = HASH2(link, dl_hashtbl -> log_size);
476     curr_hidden_link = GC_HIDE_POINTER(link);
477     prev_dl = NULL;
478     for (curr_dl = dl_hashtbl -> head[curr_index]; curr_dl;
479          curr_dl = dl_next(curr_dl)) {
480       if (curr_dl -> dl_hidden_link == curr_hidden_link)
481         break;
482       prev_dl = curr_dl;
483     }
484
485     if (NULL == curr_dl) {
486       return GC_NOT_FOUND;
487     }
488
489     if (link == new_link) {
490       return GC_SUCCESS; /* Nothing to do.      */
491     }
492
493     /* link found; now check new_link not present.      */
494     new_index = HASH2(new_link, dl_hashtbl -> log_size);
495     new_hidden_link = GC_HIDE_POINTER(new_link);
496     for (new_dl = dl_hashtbl -> head[new_index]; new_dl;
497          new_dl = dl_next(new_dl)) {
498       if (new_dl -> dl_hidden_link == new_hidden_link) {
499         /* Target already registered; bail.     */
500         return GC_DUPLICATE;
501       }
502     }
503
504     /* Remove from old, add to new, update link.        */
505     if (NULL == prev_dl) {
506       dl_hashtbl -> head[curr_index] = dl_next(curr_dl);
507     } else {
508       dl_set_next(prev_dl, dl_next(curr_dl));
509     }
510     curr_dl -> dl_hidden_link = new_hidden_link;
511     dl_set_next(curr_dl, dl_hashtbl -> head[new_index]);
512     dl_hashtbl -> head[new_index] = curr_dl;
513     return GC_SUCCESS;
514   }
515
516   GC_API int GC_CALL GC_move_disappearing_link(void **link, void **new_link)
517   {
518     int result;
519     DCL_LOCK_STATE;
520
521     if (((word)new_link & (ALIGNMENT-1)) != 0 || new_link == NULL)
522       ABORT("Bad new_link arg to GC_move_disappearing_link");
523     if (((word)link & (ALIGNMENT-1)) != 0)
524       return GC_NOT_FOUND; /* Nothing to do. */
525
526     LOCK();
527     result = GC_move_disappearing_link_inner(&GC_dl_hashtbl, link, new_link);
528     UNLOCK();
529     return result;
530   }
531
532 # ifndef GC_LONG_REFS_NOT_NEEDED
533     GC_API int GC_CALL GC_move_long_link(void **link, void **new_link)
534     {
535       int result;
536       DCL_LOCK_STATE;
537
538       if (((word)new_link & (ALIGNMENT-1)) != 0 || new_link == NULL)
539         ABORT("Bad new_link arg to GC_move_disappearing_link");
540       if (((word)link & (ALIGNMENT-1)) != 0)
541         return GC_NOT_FOUND; /* Nothing to do. */
542
543       LOCK();
544       result = GC_move_disappearing_link_inner(&GC_ll_hashtbl, link, new_link);
545       UNLOCK();
546       return result;
547     }
548 # endif /* !GC_LONG_REFS_NOT_NEEDED */
549 #endif /* !GC_MOVE_DISAPPEARING_LINK_NOT_NEEDED */
550
551 /* Possible finalization_marker procedures.  Note that mark stack       */
552 /* overflow is handled by the caller, and is not a disaster.            */
553 STATIC void GC_normal_finalize_mark_proc(ptr_t p)
554 {
555     hdr * hhdr = HDR(p);
556
557     PUSH_OBJ(p, hhdr, GC_mark_stack_top,
558              &(GC_mark_stack[GC_mark_stack_size]));
559 }
560
561 /* This only pays very partial attention to the mark descriptor.        */
562 /* It does the right thing for normal and atomic objects, and treats    */
563 /* most others as normal.                                               */
564 STATIC void GC_ignore_self_finalize_mark_proc(ptr_t p)
565 {
566     hdr * hhdr = HDR(p);
567     word descr = hhdr -> hb_descr;
568     ptr_t q;
569     word r;
570     ptr_t scan_limit;
571     ptr_t target_limit = p + hhdr -> hb_sz - 1;
572
573     if ((descr & GC_DS_TAGS) == GC_DS_LENGTH) {
574        scan_limit = p + descr - sizeof(word);
575     } else {
576        scan_limit = target_limit + 1 - sizeof(word);
577     }
578     for (q = p; (word)q <= (word)scan_limit; q += ALIGNMENT) {
579         r = *(word *)q;
580         if (r < (word)p || r > (word)target_limit) {
581             GC_PUSH_ONE_HEAP(r, q, GC_mark_stack_top);
582         }
583     }
584 }
585
586 STATIC void GC_null_finalize_mark_proc(ptr_t p GC_ATTR_UNUSED) {}
587
588 /* Possible finalization_marker procedures.  Note that mark stack       */
589 /* overflow is handled by the caller, and is not a disaster.            */
590
591 /* GC_unreachable_finalize_mark_proc is an alias for normal marking,    */
592 /* but it is explicitly tested for, and triggers different              */
593 /* behavior.  Objects registered in this way are not finalized          */
594 /* if they are reachable by other finalizable objects, even if those    */
595 /* other objects specify no ordering.                                   */
596 STATIC void GC_unreachable_finalize_mark_proc(ptr_t p)
597 {
598     GC_normal_finalize_mark_proc(p);
599 }
600
601 /* Register a finalization function.  See gc.h for details.     */
602 /* The last parameter is a procedure that determines            */
603 /* marking for finalization ordering.  Any objects marked       */
604 /* by that procedure will be guaranteed to not have been        */
605 /* finalized when this finalizer is invoked.                    */
606 STATIC void GC_register_finalizer_inner(void * obj,
607                                         GC_finalization_proc fn, void *cd,
608                                         GC_finalization_proc *ofn, void **ocd,
609                                         finalization_mark_proc mp)
610 {
611     ptr_t base;
612     struct finalizable_object * curr_fo, * prev_fo;
613     size_t index;
614     struct finalizable_object *new_fo = 0;
615     hdr *hhdr = NULL; /* initialized to prevent warning. */
616     GC_oom_func oom_fn;
617     DCL_LOCK_STATE;
618
619     LOCK();
620     if (log_fo_table_size == -1
621         || GC_fo_entries > ((word)1 << log_fo_table_size)) {
622         GC_grow_table((struct hash_chain_entry ***)&GC_fnlz_roots.fo_head,
623                       &log_fo_table_size);
624         GC_COND_LOG_PRINTF("Grew fo table to %u entries\n",
625                            1 << (unsigned)log_fo_table_size);
626     }
627     /* in the THREADS case we hold allocation lock.             */
628     base = (ptr_t)obj;
629     for (;;) {
630       index = HASH2(base, log_fo_table_size);
631       prev_fo = 0;
632       curr_fo = GC_fnlz_roots.fo_head[index];
633       while (curr_fo != 0) {
634         GC_ASSERT(GC_size(curr_fo) >= sizeof(struct finalizable_object));
635         if (curr_fo -> fo_hidden_base == GC_HIDE_POINTER(base)) {
636           /* Interruption by a signal in the middle of this     */
637           /* should be safe.  The client may see only *ocd      */
638           /* updated, but we'll declare that to be his problem. */
639           if (ocd) *ocd = (void *) (curr_fo -> fo_client_data);
640           if (ofn) *ofn = curr_fo -> fo_fn;
641           /* Delete the structure for base. */
642           if (prev_fo == 0) {
643             GC_fnlz_roots.fo_head[index] = fo_next(curr_fo);
644           } else {
645             fo_set_next(prev_fo, fo_next(curr_fo));
646           }
647           if (fn == 0) {
648             GC_fo_entries--;
649             /* May not happen if we get a signal.  But a high   */
650             /* estimate will only make the table larger than    */
651             /* necessary.                                       */
652 #           if !defined(THREADS) && !defined(DBG_HDRS_ALL)
653               GC_free((void *)curr_fo);
654 #           endif
655           } else {
656             curr_fo -> fo_fn = fn;
657             curr_fo -> fo_client_data = (ptr_t)cd;
658             curr_fo -> fo_mark_proc = mp;
659             /* Reinsert it.  We deleted it first to maintain    */
660             /* consistency in the event of a signal.            */
661             if (prev_fo == 0) {
662               GC_fnlz_roots.fo_head[index] = curr_fo;
663             } else {
664               fo_set_next(prev_fo, curr_fo);
665             }
666           }
667           UNLOCK();
668 #         ifndef DBG_HDRS_ALL
669             if (EXPECT(new_fo != 0, FALSE)) {
670               /* Free unused new_fo returned by GC_oom_fn() */
671               GC_free((void *)new_fo);
672             }
673 #         endif
674           return;
675         }
676         prev_fo = curr_fo;
677         curr_fo = fo_next(curr_fo);
678       }
679       if (EXPECT(new_fo != 0, FALSE)) {
680         /* new_fo is returned by GC_oom_fn(), so fn != 0 and hhdr != 0. */
681         break;
682       }
683       if (fn == 0) {
684         if (ocd) *ocd = 0;
685         if (ofn) *ofn = 0;
686         UNLOCK();
687         return;
688       }
689       GET_HDR(base, hhdr);
690       if (EXPECT(0 == hhdr, FALSE)) {
691         /* We won't collect it, hence finalizer wouldn't be run. */
692         if (ocd) *ocd = 0;
693         if (ofn) *ofn = 0;
694         UNLOCK();
695         return;
696       }
697       new_fo = (struct finalizable_object *)
698         GC_INTERNAL_MALLOC(sizeof(struct finalizable_object),NORMAL);
699       if (EXPECT(new_fo != 0, TRUE))
700         break;
701       oom_fn = GC_oom_fn;
702       UNLOCK();
703       new_fo = (struct finalizable_object *)
704                 (*oom_fn)(sizeof(struct finalizable_object));
705       if (0 == new_fo) {
706         /* No enough memory.  *ocd and *ofn remains unchanged.  */
707         return;
708       }
709       /* It's not likely we'll make it here, but ... */
710       LOCK();
711       /* Recalculate index since the table may grow and         */
712       /* check again that our finalizer is not in the table.    */
713     }
714     GC_ASSERT(GC_size(new_fo) >= sizeof(struct finalizable_object));
715     if (ocd) *ocd = 0;
716     if (ofn) *ofn = 0;
717     new_fo -> fo_hidden_base = GC_HIDE_POINTER(base);
718     new_fo -> fo_fn = fn;
719     new_fo -> fo_client_data = (ptr_t)cd;
720     new_fo -> fo_object_size = hhdr -> hb_sz;
721     new_fo -> fo_mark_proc = mp;
722     fo_set_next(new_fo, GC_fnlz_roots.fo_head[index]);
723     GC_fo_entries++;
724     GC_fnlz_roots.fo_head[index] = new_fo;
725     UNLOCK();
726 }
727
728 GC_API void GC_CALL GC_register_finalizer(void * obj,
729                                   GC_finalization_proc fn, void * cd,
730                                   GC_finalization_proc *ofn, void ** ocd)
731 {
732     GC_register_finalizer_inner(obj, fn, cd, ofn,
733                                 ocd, GC_normal_finalize_mark_proc);
734 }
735
736 GC_API void GC_CALL GC_register_finalizer_ignore_self(void * obj,
737                                GC_finalization_proc fn, void * cd,
738                                GC_finalization_proc *ofn, void ** ocd)
739 {
740     GC_register_finalizer_inner(obj, fn, cd, ofn,
741                                 ocd, GC_ignore_self_finalize_mark_proc);
742 }
743
744 GC_API void GC_CALL GC_register_finalizer_no_order(void * obj,
745                                GC_finalization_proc fn, void * cd,
746                                GC_finalization_proc *ofn, void ** ocd)
747 {
748     GC_register_finalizer_inner(obj, fn, cd, ofn,
749                                 ocd, GC_null_finalize_mark_proc);
750 }
751
752 static GC_bool need_unreachable_finalization = FALSE;
753         /* Avoid the work if this isn't used.   */
754
755 GC_API void GC_CALL GC_register_finalizer_unreachable(void * obj,
756                                GC_finalization_proc fn, void * cd,
757                                GC_finalization_proc *ofn, void ** ocd)
758 {
759     need_unreachable_finalization = TRUE;
760     GC_ASSERT(GC_java_finalization);
761     GC_register_finalizer_inner(obj, fn, cd, ofn,
762                                 ocd, GC_unreachable_finalize_mark_proc);
763 }
764
765 #ifndef NO_DEBUGGING
766   STATIC void GC_dump_finalization_links(
767                                 const struct dl_hashtbl_s *dl_hashtbl)
768   {
769     struct disappearing_link *curr_dl;
770     ptr_t real_ptr, real_link;
771     size_t dl_size = dl_hashtbl->log_size == -1 ? 0 :
772                                 1 << dl_hashtbl->log_size;
773     size_t i;
774
775     for (i = 0; i < dl_size; i++) {
776       for (curr_dl = dl_hashtbl -> head[i]; curr_dl != 0;
777            curr_dl = dl_next(curr_dl)) {
778         real_ptr = GC_REVEAL_POINTER(curr_dl -> dl_hidden_obj);
779         real_link = GC_REVEAL_POINTER(curr_dl -> dl_hidden_link);
780         GC_printf("Object: %p, link: %p\n", real_ptr, real_link);
781       }
782     }
783   }
784
785   void GC_dump_finalization(void)
786   {
787     struct finalizable_object * curr_fo;
788     size_t fo_size = log_fo_table_size == -1 ? 0 : 1 << log_fo_table_size;
789     ptr_t real_ptr;
790     size_t i;
791
792     GC_printf("Disappearing (short) links:\n");
793     GC_dump_finalization_links(&GC_dl_hashtbl);
794 #   ifndef GC_LONG_REFS_NOT_NEEDED
795       GC_printf("Disappearing long links:\n");
796       GC_dump_finalization_links(&GC_ll_hashtbl);
797 #   endif
798     GC_printf("Finalizers:\n");
799     for (i = 0; i < fo_size; i++) {
800       for (curr_fo = GC_fnlz_roots.fo_head[i];
801            curr_fo != NULL; curr_fo = fo_next(curr_fo)) {
802         real_ptr = GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
803         GC_printf("Finalizable object: %p\n", real_ptr);
804       }
805     }
806   }
807 #endif /* !NO_DEBUGGING */
808
809 #ifndef SMALL_CONFIG
810   STATIC word GC_old_dl_entries = 0; /* for stats printing */
811 # ifndef GC_LONG_REFS_NOT_NEEDED
812     STATIC word GC_old_ll_entries = 0;
813 # endif
814 #endif /* !SMALL_CONFIG */
815
816 #ifndef THREADS
817   /* Global variables to minimize the level of recursion when a client  */
818   /* finalizer allocates memory.                                        */
819   STATIC int GC_finalizer_nested = 0;
820                         /* Only the lowest byte is used, the rest is    */
821                         /* padding for proper global data alignment     */
822                         /* required for some compilers (like Watcom).   */
823   STATIC unsigned GC_finalizer_skipped = 0;
824
825   /* Checks and updates the level of finalizers recursion.              */
826   /* Returns NULL if GC_invoke_finalizers() should not be called by the */
827   /* collector (to minimize the risk of a deep finalizers recursion),   */
828   /* otherwise returns a pointer to GC_finalizer_nested.                */
829   STATIC unsigned char *GC_check_finalizer_nested(void)
830   {
831     unsigned nesting_level = *(unsigned char *)&GC_finalizer_nested;
832     if (nesting_level) {
833       /* We are inside another GC_invoke_finalizers().          */
834       /* Skip some implicitly-called GC_invoke_finalizers()     */
835       /* depending on the nesting (recursion) level.            */
836       if (++GC_finalizer_skipped < (1U << nesting_level)) return NULL;
837       GC_finalizer_skipped = 0;
838     }
839     *(char *)&GC_finalizer_nested = (char)(nesting_level + 1);
840     return (unsigned char *)&GC_finalizer_nested;
841   }
842 #endif /* THREADS */
843
844 #define ITERATE_DL_HASHTBL_BEGIN(dl_hashtbl, curr_dl, prev_dl) \
845   { \
846     size_t i; \
847     size_t dl_size = dl_hashtbl->log_size == -1 ? 0 : \
848                                 1 << dl_hashtbl->log_size; \
849     for (i = 0; i < dl_size; i++) { \
850       curr_dl = dl_hashtbl -> head[i]; \
851       prev_dl = NULL; \
852       while (curr_dl) {
853
854 #define ITERATE_DL_HASHTBL_END(curr_dl, prev_dl) \
855         prev_dl = curr_dl; \
856         curr_dl = dl_next(curr_dl); \
857       } \
858     } \
859   }
860
861 #define DELETE_DL_HASHTBL_ENTRY(dl_hashtbl, curr_dl, prev_dl, next_dl) \
862   { \
863     next_dl = dl_next(curr_dl); \
864     if (NULL == prev_dl) { \
865         dl_hashtbl -> head[i] = next_dl; \
866     } else { \
867         dl_set_next(prev_dl, next_dl); \
868     } \
869     GC_clear_mark_bit(curr_dl); \
870     dl_hashtbl -> entries--; \
871     curr_dl = next_dl; \
872     continue; \
873   }
874
875 GC_INLINE void GC_make_disappearing_links_disappear(
876                                 struct dl_hashtbl_s* dl_hashtbl)
877 {
878     struct disappearing_link *curr, *prev, *next;
879     ptr_t real_ptr, real_link;
880
881     ITERATE_DL_HASHTBL_BEGIN(dl_hashtbl, curr, prev)
882         real_ptr = GC_REVEAL_POINTER(curr -> dl_hidden_obj);
883         real_link = GC_REVEAL_POINTER(curr -> dl_hidden_link);
884         if (!GC_is_marked(real_ptr)) {
885             *(word *)real_link = 0;
886             GC_clear_mark_bit(curr);
887             DELETE_DL_HASHTBL_ENTRY(dl_hashtbl, curr, prev, next);
888         }
889     ITERATE_DL_HASHTBL_END(curr, prev)
890 }
891
892 GC_INLINE void GC_remove_dangling_disappearing_links(
893                                 struct dl_hashtbl_s* dl_hashtbl)
894 {
895     struct disappearing_link *curr, *prev, *next;
896     ptr_t real_link;
897
898     ITERATE_DL_HASHTBL_BEGIN(dl_hashtbl, curr, prev)
899         real_link = GC_base(GC_REVEAL_POINTER(curr -> dl_hidden_link));
900         if (NULL != real_link && !GC_is_marked(real_link)) {
901             GC_clear_mark_bit(curr);
902             DELETE_DL_HASHTBL_ENTRY(dl_hashtbl, curr, prev, next);
903         }
904     ITERATE_DL_HASHTBL_END(curr, prev)
905 }
906
907 /* Called with held lock (but the world is running).                    */
908 /* Cause disappearing links to disappear and unreachable objects to be  */
909 /* enqueued for finalization.                                           */
910 GC_INNER void GC_finalize(void)
911 {
912     struct finalizable_object * curr_fo, * prev_fo, * next_fo;
913     ptr_t real_ptr;
914     size_t i;
915     size_t fo_size = log_fo_table_size == -1 ? 0 : 1 << log_fo_table_size;
916
917 #   ifndef SMALL_CONFIG
918       /* Save current GC_[dl/ll]_entries value for stats printing */
919       GC_old_dl_entries = GC_dl_hashtbl.entries;
920 #     ifndef GC_LONG_REFS_NOT_NEEDED
921         GC_old_ll_entries = GC_ll_hashtbl.entries;
922 #     endif
923 #   endif
924
925     GC_mark_togglerefs();
926     GC_make_disappearing_links_disappear(&GC_dl_hashtbl);
927
928   /* Mark all objects reachable via chains of 1 or more pointers        */
929   /* from finalizable objects.                                          */
930     GC_ASSERT(GC_mark_state == MS_NONE);
931     for (i = 0; i < fo_size; i++) {
932       for (curr_fo = GC_fnlz_roots.fo_head[i];
933            curr_fo != NULL; curr_fo = fo_next(curr_fo)) {
934         GC_ASSERT(GC_size(curr_fo) >= sizeof(struct finalizable_object));
935         real_ptr = GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
936         if (!GC_is_marked(real_ptr)) {
937             GC_MARKED_FOR_FINALIZATION(real_ptr);
938             GC_MARK_FO(real_ptr, curr_fo -> fo_mark_proc);
939             if (GC_is_marked(real_ptr)) {
940                 WARN("Finalization cycle involving %p\n", real_ptr);
941             }
942         }
943       }
944     }
945   /* Enqueue for finalization all objects that are still                */
946   /* unreachable.                                                       */
947     GC_bytes_finalized = 0;
948     for (i = 0; i < fo_size; i++) {
949       curr_fo = GC_fnlz_roots.fo_head[i];
950       prev_fo = 0;
951       while (curr_fo != 0) {
952         real_ptr = GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
953         if (!GC_is_marked(real_ptr)) {
954             if (!GC_java_finalization) {
955               GC_set_mark_bit(real_ptr);
956             }
957             /* Delete from hash table */
958               next_fo = fo_next(curr_fo);
959               if (NULL == prev_fo) {
960                 GC_fnlz_roots.fo_head[i] = next_fo;
961               } else {
962                 fo_set_next(prev_fo, next_fo);
963               }
964               GC_fo_entries--;
965               if (GC_object_finalized_proc)
966                 GC_object_finalized_proc(real_ptr);
967
968             /* Add to list of objects awaiting finalization.    */
969               fo_set_next(curr_fo, GC_fnlz_roots.finalize_now);
970               GC_fnlz_roots.finalize_now = curr_fo;
971               /* unhide object pointer so any future collections will   */
972               /* see it.                                                */
973               curr_fo -> fo_hidden_base =
974                         (word)GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
975               GC_bytes_finalized +=
976                         curr_fo -> fo_object_size
977                         + sizeof(struct finalizable_object);
978             GC_ASSERT(GC_is_marked(GC_base(curr_fo)));
979             curr_fo = next_fo;
980         } else {
981             prev_fo = curr_fo;
982             curr_fo = fo_next(curr_fo);
983         }
984       }
985     }
986
987   if (GC_java_finalization) {
988     /* make sure we mark everything reachable from objects finalized
989        using the no_order mark_proc */
990       for (curr_fo = GC_fnlz_roots.finalize_now;
991            curr_fo != NULL; curr_fo = fo_next(curr_fo)) {
992         real_ptr = (ptr_t)curr_fo -> fo_hidden_base;
993         if (!GC_is_marked(real_ptr)) {
994             if (curr_fo -> fo_mark_proc == GC_null_finalize_mark_proc) {
995                 GC_MARK_FO(real_ptr, GC_normal_finalize_mark_proc);
996             }
997             if (curr_fo -> fo_mark_proc != GC_unreachable_finalize_mark_proc) {
998                 GC_set_mark_bit(real_ptr);
999             }
1000         }
1001       }
1002
1003     /* now revive finalize-when-unreachable objects reachable from
1004        other finalizable objects */
1005       if (need_unreachable_finalization) {
1006         curr_fo = GC_fnlz_roots.finalize_now;
1007         prev_fo = NULL;
1008         while (curr_fo != NULL) {
1009           next_fo = fo_next(curr_fo);
1010           if (curr_fo -> fo_mark_proc == GC_unreachable_finalize_mark_proc) {
1011             real_ptr = (ptr_t)curr_fo -> fo_hidden_base;
1012             if (!GC_is_marked(real_ptr)) {
1013               GC_set_mark_bit(real_ptr);
1014             } else {
1015               if (NULL == prev_fo) {
1016                 GC_fnlz_roots.finalize_now = next_fo;
1017               } else {
1018                 fo_set_next(prev_fo, next_fo);
1019               }
1020               curr_fo -> fo_hidden_base =
1021                                 GC_HIDE_POINTER(curr_fo -> fo_hidden_base);
1022               GC_bytes_finalized -=
1023                   curr_fo->fo_object_size + sizeof(struct finalizable_object);
1024
1025               i = HASH2(real_ptr, log_fo_table_size);
1026               fo_set_next(curr_fo, GC_fnlz_roots.fo_head[i]);
1027               GC_fo_entries++;
1028               GC_fnlz_roots.fo_head[i] = curr_fo;
1029               curr_fo = prev_fo;
1030             }
1031           }
1032           prev_fo = curr_fo;
1033           curr_fo = next_fo;
1034         }
1035       }
1036   }
1037
1038   GC_remove_dangling_disappearing_links(&GC_dl_hashtbl);
1039   GC_clear_togglerefs ();
1040 # ifndef GC_LONG_REFS_NOT_NEEDED
1041     GC_make_disappearing_links_disappear(&GC_ll_hashtbl);
1042     GC_remove_dangling_disappearing_links(&GC_ll_hashtbl);
1043 # endif
1044
1045   if (GC_fail_count) {
1046     /* Don't prevent running finalizers if there has been an allocation */
1047     /* failure recently.                                                */
1048 #   ifdef THREADS
1049       GC_reset_finalizer_nested();
1050 #   else
1051       GC_finalizer_nested = 0;
1052 #   endif
1053   }
1054 }
1055
1056 #ifndef JAVA_FINALIZATION_NOT_NEEDED
1057
1058   /* Enqueue all remaining finalizers to be run - Assumes lock is held. */
1059   STATIC void GC_enqueue_all_finalizers(void)
1060   {
1061     struct finalizable_object * curr_fo, * prev_fo, * next_fo;
1062     ptr_t real_ptr;
1063     register int i;
1064     int fo_size;
1065
1066     fo_size = log_fo_table_size == -1 ? 0 : 1 << log_fo_table_size;
1067     GC_bytes_finalized = 0;
1068     for (i = 0; i < fo_size; i++) {
1069       curr_fo = GC_fnlz_roots.fo_head[i];
1070       prev_fo = NULL;
1071       while (curr_fo != NULL) {
1072           real_ptr = GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
1073           GC_MARK_FO(real_ptr, GC_normal_finalize_mark_proc);
1074           GC_set_mark_bit(real_ptr);
1075
1076           /* Delete from hash table */
1077           next_fo = fo_next(curr_fo);
1078           if (prev_fo == 0) {
1079             GC_fnlz_roots.fo_head[i] = next_fo;
1080           } else {
1081             fo_set_next(prev_fo, next_fo);
1082           }
1083           GC_fo_entries--;
1084
1085           /* Add to list of objects awaiting finalization.      */
1086           fo_set_next(curr_fo, GC_fnlz_roots.finalize_now);
1087           GC_fnlz_roots.finalize_now = curr_fo;
1088
1089           /* unhide object pointer so any future collections will       */
1090           /* see it.                                                    */
1091           curr_fo -> fo_hidden_base =
1092                         (word)GC_REVEAL_POINTER(curr_fo -> fo_hidden_base);
1093           GC_bytes_finalized +=
1094                 curr_fo -> fo_object_size + sizeof(struct finalizable_object);
1095           curr_fo = next_fo;
1096         }
1097     }
1098   }
1099
1100   /* Invoke all remaining finalizers that haven't yet been run.
1101    * This is needed for strict compliance with the Java standard,
1102    * which can make the runtime guarantee that all finalizers are run.
1103    * Unfortunately, the Java standard implies we have to keep running
1104    * finalizers until there are no more left, a potential infinite loop.
1105    * YUCK.
1106    * Note that this is even more dangerous than the usual Java
1107    * finalizers, in that objects reachable from static variables
1108    * may have been finalized when these finalizers are run.
1109    * Finalizers run at this point must be prepared to deal with a
1110    * mostly broken world.
1111    * This routine is externally callable, so is called without
1112    * the allocation lock.
1113    */
1114   GC_API void GC_CALL GC_finalize_all(void)
1115   {
1116     DCL_LOCK_STATE;
1117
1118     LOCK();
1119     while (GC_fo_entries > 0) {
1120       GC_enqueue_all_finalizers();
1121       UNLOCK();
1122       GC_invoke_finalizers();
1123       /* Running the finalizers in this thread is arguably not a good   */
1124       /* idea when we should be notifying another thread to run them.   */
1125       /* But otherwise we don't have a great way to wait for them to    */
1126       /* run.                                                           */
1127       LOCK();
1128     }
1129     UNLOCK();
1130   }
1131
1132 #endif /* !JAVA_FINALIZATION_NOT_NEEDED */
1133
1134 /* Returns true if it is worth calling GC_invoke_finalizers. (Useful if */
1135 /* finalizers can only be called from some kind of "safe state" and     */
1136 /* getting into that safe state is expensive.)                          */
1137 GC_API int GC_CALL GC_should_invoke_finalizers(void)
1138 {
1139   return GC_fnlz_roots.finalize_now != NULL;
1140 }
1141
1142 /* Invoke finalizers for all objects that are ready to be finalized.    */
1143 /* Should be called without allocation lock.                            */
1144 GC_API int GC_CALL GC_invoke_finalizers(void)
1145 {
1146     struct finalizable_object * curr_fo;
1147     int count = 0;
1148     word bytes_freed_before = 0; /* initialized to prevent warning. */
1149     DCL_LOCK_STATE;
1150
1151     while (GC_fnlz_roots.finalize_now != NULL) {
1152 #       ifdef THREADS
1153             LOCK();
1154 #       endif
1155         if (count == 0) {
1156             bytes_freed_before = GC_bytes_freed;
1157             /* Don't do this outside, since we need the lock. */
1158         }
1159         curr_fo = GC_fnlz_roots.finalize_now;
1160 #       ifdef THREADS
1161             if (curr_fo != 0) GC_fnlz_roots.finalize_now = fo_next(curr_fo);
1162             UNLOCK();
1163             if (curr_fo == 0) break;
1164 #       else
1165             GC_fnlz_roots.finalize_now = fo_next(curr_fo);
1166 #       endif
1167         fo_set_next(curr_fo, 0);
1168         (*(curr_fo -> fo_fn))((ptr_t)(curr_fo -> fo_hidden_base),
1169                               curr_fo -> fo_client_data);
1170         curr_fo -> fo_client_data = 0;
1171         ++count;
1172 #       ifdef UNDEFINED
1173             /* This is probably a bad idea.  It throws off accounting if */
1174             /* nearly all objects are finalizable.  O.w. it shouldn't    */
1175             /* matter.                                                   */
1176             GC_free((void *)curr_fo);
1177 #       endif
1178     }
1179     /* bytes_freed_before is initialized whenever count != 0 */
1180     if (count != 0 && bytes_freed_before != GC_bytes_freed) {
1181         LOCK();
1182         GC_finalizer_bytes_freed += (GC_bytes_freed - bytes_freed_before);
1183         UNLOCK();
1184     }
1185     return count;
1186 }
1187
1188 static word last_finalizer_notification = 0;
1189
1190 GC_INNER void GC_notify_or_invoke_finalizers(void)
1191 {
1192     GC_finalizer_notifier_proc notifier_fn = 0;
1193 #   if defined(KEEP_BACK_PTRS) || defined(MAKE_BACK_GRAPH)
1194       static word last_back_trace_gc_no = 1;    /* Skip first one. */
1195 #   endif
1196     DCL_LOCK_STATE;
1197
1198 #   if defined(THREADS) && !defined(KEEP_BACK_PTRS) \
1199        && !defined(MAKE_BACK_GRAPH)
1200       /* Quick check (while unlocked) for an empty finalization queue.  */
1201       if (NULL == GC_fnlz_roots.finalize_now) return;
1202 #   endif
1203     LOCK();
1204
1205     /* This is a convenient place to generate backtraces if appropriate, */
1206     /* since that code is not callable with the allocation lock.         */
1207 #   if defined(KEEP_BACK_PTRS) || defined(MAKE_BACK_GRAPH)
1208       if (GC_gc_no > last_back_trace_gc_no) {
1209 #       ifdef KEEP_BACK_PTRS
1210           long i;
1211           /* Stops when GC_gc_no wraps; that's OK.      */
1212           last_back_trace_gc_no = (word)(-1);  /* disable others. */
1213           for (i = 0; i < GC_backtraces; ++i) {
1214               /* FIXME: This tolerates concurrent heap mutation,        */
1215               /* which may cause occasional mysterious results.         */
1216               /* We need to release the GC lock, since GC_print_callers */
1217               /* acquires it.  It probably shouldn't.                   */
1218               UNLOCK();
1219               GC_generate_random_backtrace_no_gc();
1220               LOCK();
1221           }
1222           last_back_trace_gc_no = GC_gc_no;
1223 #       endif
1224 #       ifdef MAKE_BACK_GRAPH
1225           if (GC_print_back_height) {
1226             UNLOCK();
1227             GC_print_back_graph_stats();
1228             LOCK();
1229           }
1230 #       endif
1231       }
1232 #   endif
1233     if (NULL == GC_fnlz_roots.finalize_now) {
1234       UNLOCK();
1235       return;
1236     }
1237
1238     if (!GC_finalize_on_demand) {
1239       unsigned char *pnested = GC_check_finalizer_nested();
1240       UNLOCK();
1241       /* Skip GC_invoke_finalizers() if nested */
1242       if (pnested != NULL) {
1243         (void) GC_invoke_finalizers();
1244         *pnested = 0; /* Reset since no more finalizers. */
1245 #       ifndef THREADS
1246           GC_ASSERT(NULL == GC_fnlz_roots.finalize_now);
1247 #       endif   /* Otherwise GC can run concurrently and add more */
1248       }
1249       return;
1250     }
1251
1252     /* These variables require synchronization to avoid data races.     */
1253     if (last_finalizer_notification != GC_gc_no) {
1254         last_finalizer_notification = GC_gc_no;
1255         notifier_fn = GC_finalizer_notifier;
1256     }
1257     UNLOCK();
1258     if (notifier_fn != 0)
1259         (*notifier_fn)(); /* Invoke the notifier */
1260 }
1261
1262 #ifndef SMALL_CONFIG
1263 # ifndef GC_LONG_REFS_NOT_NEEDED
1264 #   define IF_LONG_REFS_PRESENT_ELSE(x,y) (x)
1265 # else
1266 #   define IF_LONG_REFS_PRESENT_ELSE(x,y) (y)
1267 # endif
1268
1269   GC_INNER void GC_print_finalization_stats(void)
1270   {
1271     struct finalizable_object *fo;
1272     unsigned long ready = 0;
1273
1274     GC_log_printf("%lu finalization entries;"
1275                   " %lu/%lu short/long disappearing links alive\n",
1276                   (unsigned long)GC_fo_entries,
1277                   (unsigned long)GC_dl_hashtbl.entries,
1278                   (unsigned long)IF_LONG_REFS_PRESENT_ELSE(
1279                                                 GC_ll_hashtbl.entries, 0));
1280
1281     for (fo = GC_fnlz_roots.finalize_now; fo != NULL; fo = fo_next(fo))
1282       ++ready;
1283     GC_log_printf("%lu finalization-ready objects;"
1284                   " %ld/%ld short/long links cleared\n",
1285                   ready,
1286                   (long)GC_old_dl_entries - (long)GC_dl_hashtbl.entries,
1287                   (long)IF_LONG_REFS_PRESENT_ELSE(
1288                               GC_old_ll_entries - GC_ll_hashtbl.entries, 0));
1289   }
1290 #endif /* !SMALL_CONFIG */
1291
1292 #endif /* !GC_NO_FINALIZATION */