reapply
[mono.git] / mono / metadata / gc.c
1 /*
2  * metadata/gc.c: GC icalls.
3  *
4  * Author: Paolo Molaro <lupus@ximian.com>
5  *
6  * (C) 2002 Ximian, Inc.
7  */
8
9 #include <config.h>
10 #include <glib.h>
11 #include <string.h>
12
13 #include <mono/metadata/gc-internal.h>
14 #include <mono/metadata/mono-gc.h>
15 #include <mono/metadata/threads.h>
16 #include <mono/metadata/tabledefs.h>
17 #include <mono/metadata/exception.h>
18 #include <mono/metadata/profiler-private.h>
19 #include <mono/metadata/domain-internals.h>
20 #include <mono/metadata/class-internals.h>
21 #include <mono/utils/mono-logger.h>
22 #include <mono/os/gc_wrapper.h>
23 #include <mono/metadata/marshal.h> /* for mono_delegate_free_ftnptr () */
24
25 typedef struct DomainFinalizationReq {
26         MonoDomain *domain;
27         HANDLE done_event;
28 } DomainFinalizationReq;
29
30 #ifdef PLATFORM_WINCE /* FIXME: add accessors to gc.dll API */
31 extern void (*__imp_GC_finalizer_notifier)(void);
32 #define GC_finalizer_notifier __imp_GC_finalizer_notifier
33 extern int __imp_GC_finalize_on_demand;
34 #define GC_finalize_on_demand __imp_GC_finalize_on_demand
35 #endif
36
37 static gboolean gc_disabled = FALSE;
38
39 #define mono_finalizer_lock() EnterCriticalSection (&finalizer_mutex)
40 #define mono_finalizer_unlock() LeaveCriticalSection (&finalizer_mutex)
41 static CRITICAL_SECTION finalizer_mutex;
42
43 static GSList *domains_to_finalize= NULL;
44
45 static MonoThread *gc_thread;
46
47 static void object_register_finalizer (MonoObject *obj, void (*callback)(void *, void*));
48
49 #ifndef HAVE_NULL_GC
50 static HANDLE pending_done_event;
51 static HANDLE shutdown_event;
52 static HANDLE thread_started_event;
53 #endif
54
55 /* 
56  * actually, we might want to queue the finalize requests in a separate thread,
57  * but we need to be careful about the execution domain of the thread...
58  */
59 static void
60 run_finalize (void *obj, void *data)
61 {
62         MonoObject *exc = NULL;
63         MonoObject *o, *o2;
64         o = (MonoObject*)((char*)obj + GPOINTER_TO_UINT (data));
65
66 #ifndef HAVE_SGEN_GC
67         mono_domain_lock (o->vtable->domain);
68
69         o2 = g_hash_table_lookup (o->vtable->domain->finalizable_objects_hash, o);
70
71         mono_domain_unlock (o->vtable->domain);
72
73         if (!o2)
74                 /* Already finalized somehow */
75                 return;
76 #endif
77
78         /* make sure the finalizer is not called again if the object is resurrected */
79         object_register_finalizer (obj, NULL);
80
81         if (o->vtable->klass == mono_get_thread_class ())
82                 if (mono_gc_is_finalizer_thread ((MonoThread*)o))
83                         /* Avoid finalizing ourselves */
84                         return;
85
86         /* speedup later... and use a timeout */
87         /* g_print ("Finalize run on %p %s.%s\n", o, mono_object_class (o)->name_space, mono_object_class (o)->name); */
88
89         /* Use _internal here, since this thread can enter a doomed appdomain */
90         mono_domain_set_internal (mono_object_domain (o));              
91
92         /* delegates that have a native function pointer allocated are
93          * registered for finalization, but they don't have a Finalize
94          * method, because in most cases it's not needed and it's just a waste.
95          */
96         if (o->vtable->klass->delegate) {
97                 MonoDelegate* del = (MonoDelegate*)o;
98                 if (del->delegate_trampoline)
99                         mono_delegate_free_ftnptr ((MonoDelegate*)o);
100                 return;
101         }
102
103         mono_runtime_invoke (mono_class_get_finalizer (o->vtable->klass), o, NULL, &exc);
104
105         if (exc) {
106                 /* fixme: do something useful */
107         }
108 }
109
110 gpointer
111 mono_gc_out_of_memory (size_t size)
112 {
113         /* 
114          * we could allocate at program startup some memory that we could release 
115          * back to the system at this point if we're really low on memory (ie, size is
116          * lower than the memory we set apart)
117          */
118         mono_raise_exception (mono_domain_get ()->out_of_memory_ex);
119
120         return NULL;
121 }
122
123 /*
124  * Some of our objects may point to a different address than the address returned by GC_malloc()
125  * (because of the GetHashCode hack), but we need to pass the real address to register_finalizer.
126  * This also means that in the callback we need to adjust the pointer to get back the real
127  * MonoObject*.
128  * We also need to be consistent in the use of the GC_debug* variants of malloc and register_finalizer, 
129  * since that, too, can cause the underlying pointer to be offset.
130  */
131 static void
132 object_register_finalizer (MonoObject *obj, void (*callback)(void *, void*))
133 {
134 #if HAVE_BOEHM_GC
135         guint offset = 0;
136
137 #ifndef GC_DEBUG
138         /* This assertion is not valid when GC_DEBUG is defined */
139         g_assert (GC_base (obj) == (char*)obj - offset);
140 #endif
141
142         if (mono_domain_is_unloading (obj->vtable->domain) && (callback != NULL))
143                 /*
144                  * Can't register finalizers in a dying appdomain, since they
145                  * could be invoked after the appdomain has been unloaded.
146                  */
147                 return;
148
149         mono_domain_lock (obj->vtable->domain);
150
151         if (callback)
152                 g_hash_table_insert (obj->vtable->domain->finalizable_objects_hash, obj,
153                                                          obj);
154         else
155                 g_hash_table_remove (obj->vtable->domain->finalizable_objects_hash, obj);
156
157         mono_domain_unlock (obj->vtable->domain);
158
159         GC_REGISTER_FINALIZER_NO_ORDER ((char*)obj - offset, callback, GUINT_TO_POINTER (offset), NULL, NULL);
160 #elif defined(HAVE_SGEN_GC)
161         mono_gc_register_for_finalization (obj, callback);
162 #endif
163 }
164
165 /**
166  * mono_object_register_finalizer:
167  * @obj: object to register
168  *
169  * Records that object @obj has a finalizer, this will call the
170  * Finalize method when the garbage collector disposes the object.
171  * 
172  */
173 void
174 mono_object_register_finalizer (MonoObject *obj)
175 {
176         /* g_print ("Registered finalizer on %p %s.%s\n", obj, mono_object_class (obj)->name_space, mono_object_class (obj)->name); */
177         object_register_finalizer (obj, run_finalize);
178 }
179
180 /**
181  * mono_domain_finalize:
182  * @domain: the domain to finalize
183  * @timeout: msects to wait for the finalization to complete
184  *
185  *  Request finalization of all finalizable objects inside @domain. Wait
186  * @timeout msecs for the finalization to complete.
187  *
188  * Returns: TRUE if succeeded, FALSE if there was a timeout
189  */
190
191 gboolean
192 mono_domain_finalize (MonoDomain *domain, guint32 timeout) 
193 {
194         DomainFinalizationReq *req;
195         guint32 res;
196         HANDLE done_event;
197
198         if (mono_thread_current () == gc_thread)
199                 /* We are called from inside a finalizer, not much we can do here */
200                 return FALSE;
201
202         mono_profiler_appdomain_event (domain, MONO_PROFILE_START_UNLOAD);
203
204         /* 
205          * No need to create another thread 'cause the finalizer thread
206          * is still working and will take care of running the finalizers
207          */ 
208         
209 #ifndef HAVE_NULL_GC
210         if (gc_disabled)
211                 return TRUE;
212
213         mono_gc_collect (mono_gc_max_generation ());
214
215         done_event = CreateEvent (NULL, TRUE, FALSE, NULL);
216
217         req = g_new0 (DomainFinalizationReq, 1);
218         req->domain = domain;
219         req->done_event = done_event;
220         
221         mono_finalizer_lock ();
222
223         domains_to_finalize = g_slist_append (domains_to_finalize, req);
224
225         mono_finalizer_unlock ();
226
227         /* Tell the finalizer thread to finalize this appdomain */
228         mono_gc_finalize_notify ();
229
230         res = WaitForSingleObjectEx (done_event, timeout, TRUE);
231
232         /* printf ("WAIT RES: %d.\n", res); */
233         if (res == WAIT_TIMEOUT) {
234                 /* We leak the handle here */
235                 return FALSE;
236         }
237
238         CloseHandle (done_event);
239         return TRUE;
240 #else
241         /* We don't support domain finalization without a GC */
242         return FALSE;
243 #endif
244 }
245
246 void
247 ves_icall_System_GC_InternalCollect (int generation)
248 {
249         mono_gc_collect (generation);
250 }
251
252 gint64
253 ves_icall_System_GC_GetTotalMemory (MonoBoolean forceCollection)
254 {
255         MONO_ARCH_SAVE_REGS;
256
257         if (forceCollection)
258                 mono_gc_collect (mono_gc_max_generation ());
259         return mono_gc_get_used_size ();
260 }
261
262 void
263 ves_icall_System_GC_KeepAlive (MonoObject *obj)
264 {
265         MONO_ARCH_SAVE_REGS;
266
267         /*
268          * Does nothing.
269          */
270 }
271
272 void
273 ves_icall_System_GC_ReRegisterForFinalize (MonoObject *obj)
274 {
275         MONO_ARCH_SAVE_REGS;
276
277         object_register_finalizer (obj, run_finalize);
278 }
279
280 void
281 ves_icall_System_GC_SuppressFinalize (MonoObject *obj)
282 {
283         MONO_ARCH_SAVE_REGS;
284
285         object_register_finalizer (obj, NULL);
286 }
287
288 void
289 ves_icall_System_GC_WaitForPendingFinalizers (void)
290 {
291         MONO_ARCH_SAVE_REGS;
292         
293 #ifndef HAVE_NULL_GC
294         if (!mono_gc_pending_finalizers ())
295                 return;
296
297         if (mono_thread_current () == gc_thread)
298                 /* Avoid deadlocks */
299                 return;
300
301         ResetEvent (pending_done_event);
302         mono_gc_finalize_notify ();
303         /* g_print ("Waiting for pending finalizers....\n"); */
304         WaitForSingleObjectEx (pending_done_event, INFINITE, TRUE);
305         /* g_print ("Done pending....\n"); */
306 #else
307 #endif
308 }
309 #define mono_allocator_lock() EnterCriticalSection (&allocator_section)
310 #define mono_allocator_unlock() LeaveCriticalSection (&allocator_section)
311 static CRITICAL_SECTION allocator_section;
312 static CRITICAL_SECTION handle_section;
313
314 typedef enum {
315         HANDLE_WEAK,
316         HANDLE_WEAK_TRACK,
317         HANDLE_NORMAL,
318         HANDLE_PINNED
319 } HandleType;
320
321 static void mono_gchandle_set_target (guint32 gchandle, MonoObject *obj);
322
323 MonoObject *
324 ves_icall_System_GCHandle_GetTarget (guint32 handle)
325 {
326         return mono_gchandle_get_target (handle);
327 }
328
329 /*
330  * if type == -1, change the target of the handle, otherwise allocate a new handle.
331  */
332 guint32
333 ves_icall_System_GCHandle_GetTargetHandle (MonoObject *obj, guint32 handle, gint32 type)
334 {
335         if (type == -1) {
336                 mono_gchandle_set_target (handle, obj);
337                 /* the handle doesn't change */
338                 return handle;
339         }
340         switch (type) {
341         case HANDLE_WEAK:
342                 return mono_gchandle_new_weakref (obj, FALSE);
343         case HANDLE_WEAK_TRACK:
344                 return mono_gchandle_new_weakref (obj, TRUE);
345         case HANDLE_NORMAL:
346                 return mono_gchandle_new (obj, FALSE);
347         case HANDLE_PINNED:
348                 return mono_gchandle_new (obj, TRUE);
349         default:
350                 g_assert_not_reached ();
351         }
352         return 0;
353 }
354
355 void
356 ves_icall_System_GCHandle_FreeHandle (guint32 handle)
357 {
358         mono_gchandle_free (handle);
359 }
360
361 gpointer
362 ves_icall_System_GCHandle_GetAddrOfPinnedObject (guint32 handle)
363 {
364         MonoObject *obj;
365
366         obj = mono_gchandle_get_target (handle);
367         if (obj) {
368                 MonoClass *klass = mono_object_class (obj);
369                 if (klass == mono_defaults.string_class) {
370                         return mono_string_chars ((MonoString*)obj);
371                 } else if (klass->rank) {
372                         return mono_array_addr ((MonoArray*)obj, char, 0);
373                 } else {
374                         /* the C# code will check and throw the exception */
375                         /* FIXME: missing !klass->blittable test, see bug #61134 */
376                         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_AUTO_LAYOUT)
377                                 return (gpointer)-1;
378                         return (char*)obj + sizeof (MonoObject);
379                 }
380         }
381         return NULL;
382 }
383
384 typedef struct {
385         guint32  *bitmap;
386         gpointer *entries;
387         guint32   size;
388         guint8    type;
389         guint     slot_hint : 24; /* starting slot for search */
390         /* 2^16 appdomains should be enough for everyone (though I know I'll regret this in 20 years) */
391         /* we alloc this only for weak refs, since we can get the domain directly in the other cases */
392         guint16  *domain_ids;
393 } HandleData;
394
395 /* weak and weak-track arrays will be allocated in malloc memory 
396  */
397 static HandleData gc_handles [] = {
398         {NULL, NULL, 0, HANDLE_WEAK, 0},
399         {NULL, NULL, 0, HANDLE_WEAK_TRACK, 0},
400         {NULL, NULL, 0, HANDLE_NORMAL, 0},
401         {NULL, NULL, 0, HANDLE_PINNED, 0}
402 };
403
404 #define lock_handles(handles) EnterCriticalSection (&handle_section)
405 #define unlock_handles(handles) LeaveCriticalSection (&handle_section)
406
407 static int
408 find_first_unset (guint32 bitmap)
409 {
410         int i;
411         for (i = 0; i < 32; ++i) {
412                 if (!(bitmap & (1 << i)))
413                         return i;
414         }
415         return -1;
416 }
417
418 static guint32
419 alloc_handle (HandleData *handles, MonoObject *obj)
420 {
421         gint slot, i;
422         lock_handles (handles);
423         if (!handles->size) {
424                 handles->size = 32;
425                 if (handles->type > HANDLE_WEAK_TRACK) {
426                         handles->entries = mono_gc_alloc_fixed (sizeof (gpointer) * handles->size, NULL);
427                 } else {
428                         handles->entries = g_malloc0 (sizeof (gpointer) * handles->size);
429                         handles->domain_ids = g_malloc0 (sizeof (guint16) * handles->size);
430                 }
431                 handles->bitmap = g_malloc0 (handles->size / 8);
432         }
433         i = -1;
434         for (slot = handles->slot_hint; slot < handles->size / 32; ++slot) {
435                 if (handles->bitmap [slot] != 0xffffffff) {
436                         i = find_first_unset (handles->bitmap [slot]);
437                         handles->slot_hint = slot;
438                         break;
439                 }
440         }
441         if (i == -1 && handles->slot_hint != 0) {
442                 for (slot = 0; slot < handles->slot_hint; ++slot) {
443                         if (handles->bitmap [slot] != 0xffffffff) {
444                                 i = find_first_unset (handles->bitmap [slot]);
445                                 handles->slot_hint = slot;
446                                 break;
447                         }
448                 }
449         }
450         if (i == -1) {
451                 guint32 *new_bitmap;
452                 guint32 new_size = handles->size * 2; /* always double: we memset to 0 based on this below */
453
454                 /* resize and copy the bitmap */
455                 new_bitmap = g_malloc0 (new_size / 8);
456                 memcpy (new_bitmap, handles->bitmap, handles->size / 8);
457                 g_free (handles->bitmap);
458                 handles->bitmap = new_bitmap;
459
460                 /* resize and copy the entries */
461                 if (handles->type > HANDLE_WEAK_TRACK) {
462                         gpointer *entries;
463                         entries = mono_gc_alloc_fixed (sizeof (gpointer) * new_size, NULL);
464                         memcpy (entries, handles->entries, sizeof (gpointer) * handles->size);
465                         handles->entries = entries;
466                 } else {
467                         gpointer *entries;
468                         guint16 *domain_ids;
469                         domain_ids = g_malloc0 (sizeof (guint16) * new_size);
470                         entries = g_malloc (sizeof (gpointer) * new_size);
471                         /* we disable GC because we could lose some disappearing link updates */
472                         mono_gc_disable ();
473                         memcpy (entries, handles->entries, sizeof (gpointer) * handles->size);
474                         memset (entries + handles->size, 0, sizeof (gpointer) * handles->size);
475                         memcpy (domain_ids, handles->domain_ids, sizeof (guint16) * handles->size);
476                         for (i = 0; i < handles->size; ++i) {
477                                 MonoObject *obj = mono_gc_weak_link_get (&(handles->entries [i]));
478                                 if (handles->entries [i])
479                                         mono_gc_weak_link_remove (&(handles->entries [i]));
480                                 /*g_print ("reg/unreg entry %d of type %d at %p to object %p (%p), was: %p\n", i, handles->type, &(entries [i]), obj, entries [i], handles->entries [i]);*/
481                                 if (obj) {
482                                         mono_gc_weak_link_add (&(entries [i]), obj);
483                                 }
484                         }
485                         g_free (handles->entries);
486                         g_free (handles->domain_ids);
487                         handles->entries = entries;
488                         handles->domain_ids = domain_ids;
489                         mono_gc_enable ();
490                 }
491
492                 /* set i and slot to the next free position */
493                 i = 0;
494                 slot = (handles->size + 1) / 32;
495                 handles->slot_hint = handles->size + 1;
496                 handles->size = new_size;
497         }
498         handles->bitmap [slot] |= 1 << i;
499         slot = slot * 32 + i;
500         handles->entries [slot] = obj;
501         if (handles->type <= HANDLE_WEAK_TRACK) {
502                 if (obj)
503                         mono_gc_weak_link_add (&(handles->entries [slot]), obj);
504         }
505
506         unlock_handles (handles);
507         /*g_print ("allocated entry %d of type %d to object %p (in slot: %p)\n", slot, handles->type, obj, handles->entries [slot]);*/
508         return (slot << 3) | (handles->type + 1);
509 }
510
511 /**
512  * mono_gchandle_new:
513  * @obj: managed object to get a handle for
514  * @pinned: whether the object should be pinned
515  *
516  * This returns a handle that wraps the object, this is used to keep a
517  * reference to a managed object from the unmanaged world and preventing the
518  * object from being disposed.
519  * 
520  * If @pinned is false the address of the object can not be obtained, if it is
521  * true the address of the object can be obtained.  This will also pin the
522  * object so it will not be possible by a moving garbage collector to move the
523  * object. 
524  * 
525  * Returns: a handle that can be used to access the object from
526  * unmanaged code.
527  */
528 guint32
529 mono_gchandle_new (MonoObject *obj, gboolean pinned)
530 {
531         return alloc_handle (&gc_handles [pinned? HANDLE_PINNED: HANDLE_NORMAL], obj);
532 }
533
534 /**
535  * mono_gchandle_new_weakref:
536  * @obj: managed object to get a handle for
537  * @pinned: whether the object should be pinned
538  *
539  * This returns a weak handle that wraps the object, this is used to
540  * keep a reference to a managed object from the unmanaged world.
541  * Unlike the mono_gchandle_new the object can be reclaimed by the
542  * garbage collector.  In this case the value of the GCHandle will be
543  * set to zero.
544  * 
545  * If @pinned is false the address of the object can not be obtained, if it is
546  * true the address of the object can be obtained.  This will also pin the
547  * object so it will not be possible by a moving garbage collector to move the
548  * object. 
549  * 
550  * Returns: a handle that can be used to access the object from
551  * unmanaged code.
552  */
553 guint32
554 mono_gchandle_new_weakref (MonoObject *obj, gboolean track_resurrection)
555 {
556         return alloc_handle (&gc_handles [track_resurrection? HANDLE_WEAK_TRACK: HANDLE_WEAK], obj);
557 }
558
559 /**
560  * mono_gchandle_get_target:
561  * @gchandle: a GCHandle's handle.
562  *
563  * The handle was previously created by calling mono_gchandle_new or
564  * mono_gchandle_new_weakref. 
565  *
566  * Returns a pointer to the MonoObject represented by the handle or
567  * NULL for a collected object if using a weakref handle.
568  */
569 MonoObject*
570 mono_gchandle_get_target (guint32 gchandle)
571 {
572         guint slot = gchandle >> 3;
573         guint type = (gchandle & 7) - 1;
574         HandleData *handles = &gc_handles [type];
575         MonoObject *obj = NULL;
576         if (type > 3)
577                 return NULL;
578         lock_handles (handles);
579         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
580                 if (handles->type <= HANDLE_WEAK_TRACK) {
581                         obj = mono_gc_weak_link_get (&handles->entries [slot]);
582                 } else {
583                         obj = handles->entries [slot];
584                 }
585         } else {
586                 /* print a warning? */
587         }
588         unlock_handles (handles);
589         /*g_print ("get target of entry %d of type %d: %p\n", slot, handles->type, obj);*/
590         return obj;
591 }
592
593 static void
594 mono_gchandle_set_target (guint32 gchandle, MonoObject *obj)
595 {
596         guint slot = gchandle >> 3;
597         guint type = (gchandle & 7) - 1;
598         HandleData *handles = &gc_handles [type];
599         if (type > 3)
600                 return;
601         lock_handles (handles);
602         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
603                 if (handles->type <= HANDLE_WEAK_TRACK) {
604                         if (handles->entries [slot])
605                                 mono_gc_weak_link_remove (&handles->entries [slot]);
606                         if (obj)
607                                 mono_gc_weak_link_add (&handles->entries [slot], obj);
608                 } else {
609                         handles->entries [slot] = obj;
610                 }
611         } else {
612                 /* print a warning? */
613         }
614         /*g_print ("changed entry %d of type %d to object %p (in slot: %p)\n", slot, handles->type, obj, handles->entries [slot]);*/
615         unlock_handles (handles);
616 }
617
618 /**
619  * mono_gchandle_is_in_domain:
620  * @gchandle: a GCHandle's handle.
621  * @domain: An application domain.
622  *
623  * Returns: true if the object wrapped by the @gchandle belongs to the specific @domain.
624  */
625 gboolean
626 mono_gchandle_is_in_domain (guint32 gchandle, MonoDomain *domain)
627 {
628         guint slot = gchandle >> 3;
629         guint type = (gchandle & 7) - 1;
630         HandleData *handles = &gc_handles [type];
631         gboolean result = FALSE;
632         if (type > 3)
633                 return FALSE;
634         lock_handles (handles);
635         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
636                 if (handles->type <= HANDLE_WEAK_TRACK) {
637                         result = domain->domain_id == handles->domain_ids [slot];
638                 } else {
639                         MonoObject *obj;
640                         obj = handles->entries [slot];
641                         if (obj == NULL)
642                                 result = TRUE;
643                         else
644                                 result = domain == mono_object_domain (obj);
645                 }
646         } else {
647                 /* print a warning? */
648         }
649         unlock_handles (handles);
650         return result;
651 }
652
653 /**
654  * mono_gchandle_free:
655  * @gchandle: a GCHandle's handle.
656  *
657  * Frees the @gchandle handle.  If there are no outstanding
658  * references, the garbage collector can reclaim the memory of the
659  * object wrapped. 
660  */
661 void
662 mono_gchandle_free (guint32 gchandle)
663 {
664         guint slot = gchandle >> 3;
665         guint type = (gchandle & 7) - 1;
666         HandleData *handles = &gc_handles [type];
667         if (type > 3)
668                 return;
669         lock_handles (handles);
670         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
671                 if (handles->type <= HANDLE_WEAK_TRACK) {
672                         if (handles->entries [slot])
673                                 mono_gc_weak_link_remove (&handles->entries [slot]);
674                 } else {
675                         handles->entries [slot] = NULL;
676                 }
677                 handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
678         } else {
679                 /* print a warning? */
680         }
681         /*g_print ("freed entry %d of type %d\n", slot, handles->type);*/
682         unlock_handles (handles);
683 }
684
685 /**
686  * mono_gchandle_free_domain:
687  * @domain: domain that is unloading
688  *
689  * Function used internally to cleanup any GC handle for objects belonging
690  * to the specified domain during appdomain unload.
691  */
692 void
693 mono_gchandle_free_domain (MonoDomain *domain)
694 {
695         guint type;
696
697         for (type = 0; type < 3; ++type) {
698                 guint slot;
699                 HandleData *handles = &gc_handles [type];
700                 lock_handles (handles);
701                 for (slot = 0; slot < handles->size; ++slot) {
702                         if (!(handles->bitmap [slot / 32] & (1 << (slot % 32))))
703                                 continue;
704                         if (type <= HANDLE_WEAK_TRACK) {
705                                 if (domain->domain_id == handles->domain_ids [slot]) {
706                                         handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
707                                         if (handles->entries [slot])
708                                                 mono_gc_weak_link_remove (&handles->entries [slot]);
709                                 }
710                         } else {
711                                 if (handles->entries [slot] && mono_object_domain (handles->entries [slot]) == domain) {
712                                         handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
713                                         handles->entries [slot] = NULL;
714                                 }
715                         }
716                 }
717                 unlock_handles (handles);
718         }
719
720 }
721
722 #ifndef HAVE_NULL_GC
723
724 static HANDLE finalizer_event;
725 static volatile gboolean finished=FALSE;
726
727 void
728 mono_gc_finalize_notify (void)
729 {
730 #ifdef DEBUG
731         g_message (G_GNUC_PRETTY_FUNCTION ": prodding finalizer");
732 #endif
733
734         SetEvent (finalizer_event);
735 }
736
737 static void
738 collect_objects (gpointer key, gpointer value, gpointer user_data)
739 {
740         GPtrArray *arr = (GPtrArray*)user_data;
741         g_ptr_array_add (arr, key);
742 }
743
744 /*
745  * finalize_domain_objects:
746  *
747  *  Run the finalizers of all finalizable objects in req->domain.
748  */
749 static void
750 finalize_domain_objects (DomainFinalizationReq *req)
751 {
752         int i;
753         GPtrArray *objs;
754         MonoDomain *domain = req->domain;
755         
756         while (g_hash_table_size (domain->finalizable_objects_hash) > 0) {
757                 /* 
758                  * Since the domain is unloading, nobody is allowed to put
759                  * new entries into the hash table. But finalize_object might
760                  * remove entries from the hash table, so we make a copy.
761                  */
762                 objs = g_ptr_array_new ();
763                 g_hash_table_foreach (domain->finalizable_objects_hash, 
764                                                           collect_objects, objs);
765                 /* printf ("FINALIZING %d OBJECTS.\n", objs->len); */
766
767                 for (i = 0; i < objs->len; ++i) {
768                         MonoObject *o = (MonoObject*)g_ptr_array_index (objs, i);
769                         /* FIXME: Avoid finalizing threads, etc */
770                         run_finalize (o, 0);
771                 }
772
773                 g_ptr_array_free (objs, TRUE);
774         }
775
776         /* Process finalizers which are already in the queue */
777         mono_gc_invoke_finalizers ();
778
779         /* printf ("DONE.\n"); */
780         SetEvent (req->done_event);
781
782         /* The event is closed in mono_domain_finalize if we get here */
783         g_free (req);
784 }
785
786 static guint32 finalizer_thread (gpointer unused)
787 {
788         gc_thread = mono_thread_current ();
789
790         SetEvent (thread_started_event);
791
792         while(!finished) {
793                 /* Wait to be notified that there's at least one
794                  * finaliser to run
795                  */
796                 WaitForSingleObjectEx (finalizer_event, INFINITE, TRUE);
797
798                 if (domains_to_finalize) {
799                         mono_finalizer_lock ();
800                         if (domains_to_finalize) {
801                                 DomainFinalizationReq *req = domains_to_finalize->data;
802                                 domains_to_finalize = g_slist_remove (domains_to_finalize, req);
803                                 mono_finalizer_unlock ();
804
805                                 finalize_domain_objects (req);
806                         }
807                         else
808                                 mono_finalizer_unlock ();
809                 }                               
810
811 #ifdef DEBUG
812                 g_message (G_GNUC_PRETTY_FUNCTION ": invoking finalizers");
813 #endif
814
815                 /* If finished == TRUE, mono_gc_cleanup has been called (from mono_runtime_cleanup),
816                  * before the domain is unloaded.
817                  */
818                 mono_gc_invoke_finalizers ();
819
820                 SetEvent (pending_done_event);
821         }
822
823         SetEvent (shutdown_event);
824         return(0);
825 }
826
827 /* 
828  * Enable or disable the separate finalizer thread.
829  * It's currently disabled because it still requires some
830  * work in the rest of the runtime.
831  */
832 #define ENABLE_FINALIZER_THREAD
833
834 void
835 mono_gc_init (void)
836 {
837         InitializeCriticalSection (&handle_section);
838         InitializeCriticalSection (&allocator_section);
839
840         InitializeCriticalSection (&finalizer_mutex);
841
842         MONO_GC_REGISTER_ROOT (gc_handles [HANDLE_NORMAL].entries);
843         MONO_GC_REGISTER_ROOT (gc_handles [HANDLE_PINNED].entries);
844
845         mono_gc_base_init ();
846
847 #ifdef ENABLE_FINALIZER_THREAD
848
849         if (g_getenv ("GC_DONT_GC")) {
850                 gc_disabled = TRUE;
851                 return;
852         }
853         
854         finalizer_event = CreateEvent (NULL, FALSE, FALSE, NULL);
855         pending_done_event = CreateEvent (NULL, TRUE, FALSE, NULL);
856         shutdown_event = CreateEvent (NULL, TRUE, FALSE, NULL);
857         thread_started_event = CreateEvent (NULL, TRUE, FALSE, NULL);
858         if (finalizer_event == NULL || pending_done_event == NULL || shutdown_event == NULL || thread_started_event == NULL) {
859                 g_assert_not_reached ();
860         }
861
862         mono_thread_create (mono_domain_get (), finalizer_thread, NULL);
863         /*
864          * Wait until the finalizer thread sets gc_thread since its value is needed
865          * by mono_thread_attach ()
866          */
867         WaitForSingleObjectEx (thread_started_event, INFINITE, FALSE);
868 #endif
869 }
870
871 void mono_gc_cleanup (void)
872 {
873 #ifdef DEBUG
874         g_message (G_GNUC_PRETTY_FUNCTION ": cleaning up finalizer");
875 #endif
876
877 #ifdef ENABLE_FINALIZER_THREAD
878         if (!gc_disabled) {
879                 ResetEvent (shutdown_event);
880                 finished = TRUE;
881                 if (mono_thread_current () != gc_thread) {
882                         mono_gc_finalize_notify ();
883                         /* Finishing the finalizer thread, so wait a little bit... */
884                         /* MS seems to wait for about 2 seconds */
885                         if (WaitForSingleObjectEx (shutdown_event, 2000, FALSE) == WAIT_TIMEOUT) {
886                                 mono_thread_stop (gc_thread);
887                         }
888                 }
889                 gc_thread = NULL;
890 #ifdef HAVE_BOEHM_GC
891                 GC_finalizer_notifier = NULL;
892 #endif
893         }
894
895 #endif
896
897         DeleteCriticalSection (&handle_section);
898         DeleteCriticalSection (&allocator_section);
899         DeleteCriticalSection (&finalizer_mutex);
900 }
901
902 #else
903
904 /* no Boehm GC support. */
905 void mono_gc_init (void)
906 {
907         InitializeCriticalSection (&handle_section);
908 }
909
910 void mono_gc_cleanup (void)
911 {
912 }
913
914 #endif
915
916 /**
917  * mono_gc_is_finalizer_thread:
918  * @thread: the thread to test.
919  *
920  * In Mono objects are finalized asynchronously on a separate thread.
921  * This routine tests whether the @thread argument represents the
922  * finalization thread.
923  * 
924  * Returns true if @thread is the finalization thread.
925  */
926 gboolean
927 mono_gc_is_finalizer_thread (MonoThread *thread)
928 {
929         return thread == gc_thread;
930 }
931
932