Merge pull request #472 from MelanieT/spmanager_fix
[mono.git] / mono / metadata / gc.c
1 /*
2  * metadata/gc.c: GC icalls.
3  *
4  * Author: Paolo Molaro <lupus@ximian.com>
5  *
6  * Copyright 2002-2003 Ximian, Inc (http://www.ximian.com)
7  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
8  * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
9  */
10
11 #include <config.h>
12 #include <glib.h>
13 #include <string.h>
14 #include <errno.h>
15
16 #include <mono/metadata/gc-internal.h>
17 #include <mono/metadata/mono-gc.h>
18 #include <mono/metadata/threads.h>
19 #include <mono/metadata/tabledefs.h>
20 #include <mono/metadata/exception.h>
21 #include <mono/metadata/profiler-private.h>
22 #include <mono/metadata/domain-internals.h>
23 #include <mono/metadata/class-internals.h>
24 #include <mono/metadata/metadata-internals.h>
25 #include <mono/metadata/mono-mlist.h>
26 #include <mono/metadata/threadpool.h>
27 #include <mono/metadata/threadpool-internals.h>
28 #include <mono/metadata/threads-types.h>
29 #include <mono/utils/mono-logger-internal.h>
30 #include <mono/metadata/gc-internal.h>
31 #include <mono/metadata/marshal.h> /* for mono_delegate_free_ftnptr () */
32 #include <mono/metadata/attach.h>
33 #include <mono/metadata/console-io.h>
34 #include <mono/utils/mono-semaphore.h>
35 #include <mono/utils/mono-memory-model.h>
36 #include <mono/utils/mono-counters.h>
37 #include <mono/utils/dtrace.h>
38
39 #ifndef HOST_WIN32
40 #include <pthread.h>
41 #endif
42
43 typedef struct DomainFinalizationReq {
44         MonoDomain *domain;
45         HANDLE done_event;
46 } DomainFinalizationReq;
47
48 #ifdef PLATFORM_WINCE /* FIXME: add accessors to gc.dll API */
49 extern void (*__imp_GC_finalizer_notifier)(void);
50 #define GC_finalizer_notifier __imp_GC_finalizer_notifier
51 extern int __imp_GC_finalize_on_demand;
52 #define GC_finalize_on_demand __imp_GC_finalize_on_demand
53 #endif
54
55 static gboolean gc_disabled = FALSE;
56
57 static gboolean finalizing_root_domain = FALSE;
58
59 #define mono_finalizer_lock() EnterCriticalSection (&finalizer_mutex)
60 #define mono_finalizer_unlock() LeaveCriticalSection (&finalizer_mutex)
61 static CRITICAL_SECTION finalizer_mutex;
62 static CRITICAL_SECTION reference_queue_mutex;
63
64 static GSList *domains_to_finalize= NULL;
65 static MonoMList *threads_to_finalize = NULL;
66
67 static MonoInternalThread *gc_thread;
68
69 static void object_register_finalizer (MonoObject *obj, void (*callback)(void *, void*));
70
71 static void mono_gchandle_set_target (guint32 gchandle, MonoObject *obj);
72
73 static void reference_queue_proccess_all (void);
74 static void mono_reference_queue_cleanup (void);
75 static void reference_queue_clear_for_domain (MonoDomain *domain);
76 #ifndef HAVE_NULL_GC
77 static HANDLE pending_done_event;
78 static HANDLE shutdown_event;
79 #endif
80
81 GCStats gc_stats;
82
83 static void
84 add_thread_to_finalize (MonoInternalThread *thread)
85 {
86         mono_finalizer_lock ();
87         if (!threads_to_finalize)
88                 MONO_GC_REGISTER_ROOT_SINGLE (threads_to_finalize);
89         threads_to_finalize = mono_mlist_append (threads_to_finalize, (MonoObject*)thread);
90         mono_finalizer_unlock ();
91 }
92
93 static gboolean suspend_finalizers = FALSE;
94 /* 
95  * actually, we might want to queue the finalize requests in a separate thread,
96  * but we need to be careful about the execution domain of the thread...
97  */
98 void
99 mono_gc_run_finalize (void *obj, void *data)
100 {
101         MonoObject *exc = NULL;
102         MonoObject *o;
103 #ifndef HAVE_SGEN_GC
104         MonoObject *o2;
105 #endif
106         MonoMethod* finalizer = NULL;
107         MonoDomain *caller_domain = mono_domain_get ();
108         MonoDomain *domain;
109         RuntimeInvokeFunction runtime_invoke;
110
111         o = (MonoObject*)((char*)obj + GPOINTER_TO_UINT (data));
112
113         if (suspend_finalizers)
114                 return;
115
116         domain = o->vtable->domain;
117
118 #ifndef HAVE_SGEN_GC
119         mono_domain_finalizers_lock (domain);
120
121         o2 = g_hash_table_lookup (domain->finalizable_objects_hash, o);
122
123         mono_domain_finalizers_unlock (domain);
124
125         if (!o2)
126                 /* Already finalized somehow */
127                 return;
128 #endif
129
130         /* make sure the finalizer is not called again if the object is resurrected */
131         object_register_finalizer (obj, NULL);
132
133         if (o->vtable->klass == mono_defaults.internal_thread_class) {
134                 MonoInternalThread *t = (MonoInternalThread*)o;
135
136                 if (mono_gc_is_finalizer_internal_thread (t))
137                         /* Avoid finalizing ourselves */
138                         return;
139
140                 if (t->threadpool_thread && finalizing_root_domain) {
141                         /* Don't finalize threadpool threads when
142                            shutting down - they're finalized when the
143                            threadpool shuts down. */
144                         add_thread_to_finalize (t);
145                         return;
146                 }
147         }
148
149         if (o->vtable->klass->image == mono_defaults.corlib && !strcmp (o->vtable->klass->name, "DynamicMethod") && finalizing_root_domain) {
150                 /*
151                  * These can't be finalized during unloading/shutdown, since that would
152                  * free the native code which can still be referenced by other
153                  * finalizers.
154                  * FIXME: This is not perfect, objects dying at the same time as 
155                  * dynamic methods can still reference them even when !shutdown.
156                  */
157                 return;
158         }
159
160         if (mono_runtime_get_no_exec ())
161                 return;
162
163         /* speedup later... and use a timeout */
164         /* g_print ("Finalize run on %p %s.%s\n", o, mono_object_class (o)->name_space, mono_object_class (o)->name); */
165
166         /* Use _internal here, since this thread can enter a doomed appdomain */
167         mono_domain_set_internal (mono_object_domain (o));
168
169         /* delegates that have a native function pointer allocated are
170          * registered for finalization, but they don't have a Finalize
171          * method, because in most cases it's not needed and it's just a waste.
172          */
173         if (o->vtable->klass->delegate) {
174                 MonoDelegate* del = (MonoDelegate*)o;
175                 if (del->delegate_trampoline)
176                         mono_delegate_free_ftnptr ((MonoDelegate*)o);
177                 mono_domain_set_internal (caller_domain);
178                 return;
179         }
180
181         finalizer = mono_class_get_finalizer (o->vtable->klass);
182
183 #ifndef DISABLE_COM
184         /* If object has a CCW but has no finalizer, it was only
185          * registered for finalization in order to free the CCW.
186          * Else it needs the regular finalizer run.
187          * FIXME: what to do about ressurection and suppression
188          * of finalizer on object with CCW.
189          */
190         if (mono_marshal_free_ccw (o) && !finalizer) {
191                 mono_domain_set_internal (caller_domain);
192                 return;
193         }
194 #endif
195
196         /* 
197          * To avoid the locking plus the other overhead of mono_runtime_invoke (),
198          * create and precompile a wrapper which calls the finalize method using
199          * a CALLVIRT.
200          */
201         if (!domain->finalize_runtime_invoke) {
202                 MonoMethod *invoke = mono_marshal_get_runtime_invoke (mono_class_get_method_from_name_flags (mono_defaults.object_class, "Finalize", 0, 0), TRUE);
203
204                 domain->finalize_runtime_invoke = mono_compile_method (invoke);
205         }
206
207         runtime_invoke = domain->finalize_runtime_invoke;
208
209         mono_runtime_class_init (o->vtable);
210
211         if (G_UNLIKELY (MONO_GC_FINALIZE_INVOKE_ENABLED ())) {
212                 MONO_GC_FINALIZE_INVOKE ((unsigned long)o, mono_object_get_size (o),
213                                 o->vtable->klass->name_space, o->vtable->klass->name);
214         }
215
216         runtime_invoke (o, NULL, &exc, NULL);
217
218         if (exc)
219                 mono_internal_thread_unhandled_exception (exc);
220
221         mono_domain_set_internal (caller_domain);
222 }
223
224 void
225 mono_gc_finalize_threadpool_threads (void)
226 {
227         while (threads_to_finalize) {
228                 MonoInternalThread *thread = (MonoInternalThread*) mono_mlist_get_data (threads_to_finalize);
229
230                 /* Force finalization of the thread. */
231                 thread->threadpool_thread = FALSE;
232                 mono_object_register_finalizer ((MonoObject*)thread);
233
234                 mono_gc_run_finalize (thread, NULL);
235
236                 threads_to_finalize = mono_mlist_next (threads_to_finalize);
237         }
238 }
239
240 gpointer
241 mono_gc_out_of_memory (size_t size)
242 {
243         /* 
244          * we could allocate at program startup some memory that we could release 
245          * back to the system at this point if we're really low on memory (ie, size is
246          * lower than the memory we set apart)
247          */
248         mono_raise_exception (mono_domain_get ()->out_of_memory_ex);
249
250         return NULL;
251 }
252
253 /*
254  * Some of our objects may point to a different address than the address returned by GC_malloc()
255  * (because of the GetHashCode hack), but we need to pass the real address to register_finalizer.
256  * This also means that in the callback we need to adjust the pointer to get back the real
257  * MonoObject*.
258  * We also need to be consistent in the use of the GC_debug* variants of malloc and register_finalizer, 
259  * since that, too, can cause the underlying pointer to be offset.
260  */
261 static void
262 object_register_finalizer (MonoObject *obj, void (*callback)(void *, void*))
263 {
264 #if HAVE_BOEHM_GC
265         guint offset = 0;
266         MonoDomain *domain;
267
268         if (obj == NULL)
269                 mono_raise_exception (mono_get_exception_argument_null ("obj"));
270         
271         domain = obj->vtable->domain;
272
273 #ifndef GC_DEBUG
274         /* This assertion is not valid when GC_DEBUG is defined */
275         g_assert (GC_base (obj) == (char*)obj - offset);
276 #endif
277
278         if (mono_domain_is_unloading (domain) && (callback != NULL))
279                 /*
280                  * Can't register finalizers in a dying appdomain, since they
281                  * could be invoked after the appdomain has been unloaded.
282                  */
283                 return;
284
285         mono_domain_finalizers_lock (domain);
286
287         if (callback)
288                 g_hash_table_insert (domain->finalizable_objects_hash, obj, obj);
289         else
290                 g_hash_table_remove (domain->finalizable_objects_hash, obj);
291
292         mono_domain_finalizers_unlock (domain);
293
294         GC_REGISTER_FINALIZER_NO_ORDER ((char*)obj - offset, callback, GUINT_TO_POINTER (offset), NULL, NULL);
295 #elif defined(HAVE_SGEN_GC)
296         if (obj == NULL)
297                 mono_raise_exception (mono_get_exception_argument_null ("obj"));
298
299         /*
300          * If we register finalizers for domains that are unloading we might
301          * end up running them while or after the domain is being cleared, so
302          * the objects will not be valid anymore.
303          */
304         if (!mono_domain_is_unloading (obj->vtable->domain))
305                 mono_gc_register_for_finalization (obj, callback);
306 #endif
307 }
308
309 /**
310  * mono_object_register_finalizer:
311  * @obj: object to register
312  *
313  * Records that object @obj has a finalizer, this will call the
314  * Finalize method when the garbage collector disposes the object.
315  * 
316  */
317 void
318 mono_object_register_finalizer (MonoObject *obj)
319 {
320         /* g_print ("Registered finalizer on %p %s.%s\n", obj, mono_object_class (obj)->name_space, mono_object_class (obj)->name); */
321         object_register_finalizer (obj, mono_gc_run_finalize);
322 }
323
324 /**
325  * mono_domain_finalize:
326  * @domain: the domain to finalize
327  * @timeout: msects to wait for the finalization to complete, -1 to wait indefinitely
328  *
329  *  Request finalization of all finalizable objects inside @domain. Wait
330  * @timeout msecs for the finalization to complete.
331  *
332  * Returns: TRUE if succeeded, FALSE if there was a timeout
333  */
334
335 gboolean
336 mono_domain_finalize (MonoDomain *domain, guint32 timeout) 
337 {
338         DomainFinalizationReq *req;
339         guint32 res;
340         HANDLE done_event;
341         MonoInternalThread *thread = mono_thread_internal_current ();
342
343         if (mono_thread_internal_current () == gc_thread)
344                 /* We are called from inside a finalizer, not much we can do here */
345                 return FALSE;
346
347         /* 
348          * No need to create another thread 'cause the finalizer thread
349          * is still working and will take care of running the finalizers
350          */ 
351         
352 #ifndef HAVE_NULL_GC
353         if (gc_disabled)
354                 return TRUE;
355
356         mono_gc_collect (mono_gc_max_generation ());
357
358         done_event = CreateEvent (NULL, TRUE, FALSE, NULL);
359         if (done_event == NULL) {
360                 return FALSE;
361         }
362
363         req = g_new0 (DomainFinalizationReq, 1);
364         req->domain = domain;
365         req->done_event = done_event;
366
367         if (domain == mono_get_root_domain ())
368                 finalizing_root_domain = TRUE;
369         
370         mono_finalizer_lock ();
371
372         domains_to_finalize = g_slist_append (domains_to_finalize, req);
373
374         mono_finalizer_unlock ();
375
376         /* Tell the finalizer thread to finalize this appdomain */
377         mono_gc_finalize_notify ();
378
379         if (timeout == -1)
380                 timeout = INFINITE;
381
382         while (TRUE) {
383                 res = WaitForSingleObjectEx (done_event, timeout, TRUE);
384                 /* printf ("WAIT RES: %d.\n", res); */
385
386                 if (res == WAIT_IO_COMPLETION) {
387                         if ((thread->state & (ThreadState_StopRequested | ThreadState_SuspendRequested)) != 0)
388                                 return FALSE;
389                 } else if (res == WAIT_TIMEOUT) {
390                         /* We leak the handle here */
391                         return FALSE;
392                 } else {
393                         break;
394                 }
395         }
396
397         CloseHandle (done_event);
398
399         if (domain == mono_get_root_domain ()) {
400                 mono_thread_pool_cleanup ();
401                 mono_gc_finalize_threadpool_threads ();
402         }
403
404         return TRUE;
405 #else
406         /* We don't support domain finalization without a GC */
407         return FALSE;
408 #endif
409 }
410
411 void
412 ves_icall_System_GC_InternalCollect (int generation)
413 {
414         mono_gc_collect (generation);
415 }
416
417 gint64
418 ves_icall_System_GC_GetTotalMemory (MonoBoolean forceCollection)
419 {
420         MONO_ARCH_SAVE_REGS;
421
422         if (forceCollection)
423                 mono_gc_collect (mono_gc_max_generation ());
424         return mono_gc_get_used_size ();
425 }
426
427 void
428 ves_icall_System_GC_KeepAlive (MonoObject *obj)
429 {
430         MONO_ARCH_SAVE_REGS;
431
432         /*
433          * Does nothing.
434          */
435 }
436
437 void
438 ves_icall_System_GC_ReRegisterForFinalize (MonoObject *obj)
439 {
440         if (!obj)
441                 mono_raise_exception (mono_get_exception_argument_null ("obj"));
442
443         object_register_finalizer (obj, mono_gc_run_finalize);
444 }
445
446 void
447 ves_icall_System_GC_SuppressFinalize (MonoObject *obj)
448 {
449         if (!obj)
450                 mono_raise_exception (mono_get_exception_argument_null ("obj"));
451
452         /* delegates have no finalizers, but we register them to deal with the
453          * unmanaged->managed trampoline. We don't let the user suppress it
454          * otherwise we'd leak it.
455          */
456         if (obj->vtable->klass->delegate)
457                 return;
458
459         /* FIXME: Need to handle case where obj has COM Callable Wrapper
460          * generated for it that needs cleaned up, but user wants to suppress
461          * their derived object finalizer. */
462
463         object_register_finalizer (obj, NULL);
464 }
465
466 void
467 ves_icall_System_GC_WaitForPendingFinalizers (void)
468 {
469 #ifndef HAVE_NULL_GC
470         if (!mono_gc_pending_finalizers ())
471                 return;
472
473         if (mono_thread_internal_current () == gc_thread)
474                 /* Avoid deadlocks */
475                 return;
476
477         /*
478         If the finalizer thread is not live, lets pretend no finalizers are pending since the current thread might
479         be the one responsible for starting it up.
480         */
481         if (gc_thread == NULL)
482                 return;
483
484         ResetEvent (pending_done_event);
485         mono_gc_finalize_notify ();
486         /* g_print ("Waiting for pending finalizers....\n"); */
487         WaitForSingleObjectEx (pending_done_event, INFINITE, TRUE);
488         /* g_print ("Done pending....\n"); */
489 #endif
490 }
491
492 void
493 ves_icall_System_GC_register_ephemeron_array (MonoObject *array)
494 {
495 #ifdef HAVE_SGEN_GC
496         if (!mono_gc_ephemeron_array_add (array))
497                 mono_raise_exception (mono_object_domain (array)->out_of_memory_ex);
498 #endif
499 }
500
501 MonoObject*
502 ves_icall_System_GC_get_ephemeron_tombstone (void)
503 {
504         return mono_domain_get ()->ephemeron_tombstone;
505 }
506
507 #define mono_allocator_lock() EnterCriticalSection (&allocator_section)
508 #define mono_allocator_unlock() LeaveCriticalSection (&allocator_section)
509 static CRITICAL_SECTION allocator_section;
510 static CRITICAL_SECTION handle_section;
511
512 typedef enum {
513         HANDLE_WEAK,
514         HANDLE_WEAK_TRACK,
515         HANDLE_NORMAL,
516         HANDLE_PINNED
517 } HandleType;
518
519 static HandleType mono_gchandle_get_type (guint32 gchandle);
520
521 MonoObject *
522 ves_icall_System_GCHandle_GetTarget (guint32 handle)
523 {
524         return mono_gchandle_get_target (handle);
525 }
526
527 /*
528  * if type == -1, change the target of the handle, otherwise allocate a new handle.
529  */
530 guint32
531 ves_icall_System_GCHandle_GetTargetHandle (MonoObject *obj, guint32 handle, gint32 type)
532 {
533         if (type == -1) {
534                 mono_gchandle_set_target (handle, obj);
535                 /* the handle doesn't change */
536                 return handle;
537         }
538         switch (type) {
539         case HANDLE_WEAK:
540                 return mono_gchandle_new_weakref (obj, FALSE);
541         case HANDLE_WEAK_TRACK:
542                 return mono_gchandle_new_weakref (obj, TRUE);
543         case HANDLE_NORMAL:
544                 return mono_gchandle_new (obj, FALSE);
545         case HANDLE_PINNED:
546                 return mono_gchandle_new (obj, TRUE);
547         default:
548                 g_assert_not_reached ();
549         }
550         return 0;
551 }
552
553 void
554 ves_icall_System_GCHandle_FreeHandle (guint32 handle)
555 {
556         mono_gchandle_free (handle);
557 }
558
559 gpointer
560 ves_icall_System_GCHandle_GetAddrOfPinnedObject (guint32 handle)
561 {
562         MonoObject *obj;
563
564         if (mono_gchandle_get_type (handle) != HANDLE_PINNED)
565                 return (gpointer)-2;
566         obj = mono_gchandle_get_target (handle);
567         if (obj) {
568                 MonoClass *klass = mono_object_class (obj);
569                 if (klass == mono_defaults.string_class) {
570                         return mono_string_chars ((MonoString*)obj);
571                 } else if (klass->rank) {
572                         return mono_array_addr ((MonoArray*)obj, char, 0);
573                 } else {
574                         /* the C# code will check and throw the exception */
575                         /* FIXME: missing !klass->blittable test, see bug #61134 */
576                         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) == TYPE_ATTRIBUTE_AUTO_LAYOUT)
577                                 return (gpointer)-1;
578                         return (char*)obj + sizeof (MonoObject);
579                 }
580         }
581         return NULL;
582 }
583
584 typedef struct {
585         guint32  *bitmap;
586         gpointer *entries;
587         guint32   size;
588         guint8    type;
589         guint     slot_hint : 24; /* starting slot for search */
590         /* 2^16 appdomains should be enough for everyone (though I know I'll regret this in 20 years) */
591         /* we alloc this only for weak refs, since we can get the domain directly in the other cases */
592         guint16  *domain_ids;
593 } HandleData;
594
595 /* weak and weak-track arrays will be allocated in malloc memory 
596  */
597 static HandleData gc_handles [] = {
598         {NULL, NULL, 0, HANDLE_WEAK, 0},
599         {NULL, NULL, 0, HANDLE_WEAK_TRACK, 0},
600         {NULL, NULL, 0, HANDLE_NORMAL, 0},
601         {NULL, NULL, 0, HANDLE_PINNED, 0}
602 };
603
604 #define lock_handles(handles) EnterCriticalSection (&handle_section)
605 #define unlock_handles(handles) LeaveCriticalSection (&handle_section)
606
607 static int
608 find_first_unset (guint32 bitmap)
609 {
610         int i;
611         for (i = 0; i < 32; ++i) {
612                 if (!(bitmap & (1 << i)))
613                         return i;
614         }
615         return -1;
616 }
617
618 static void*
619 make_root_descr_all_refs (int numbits, gboolean pinned)
620 {
621 #ifdef HAVE_SGEN_GC
622         if (pinned)
623                 return NULL;
624 #endif
625         return mono_gc_make_root_descr_all_refs (numbits);
626 }
627
628 static guint32
629 alloc_handle (HandleData *handles, MonoObject *obj, gboolean track)
630 {
631         gint slot, i;
632         guint32 res;
633         lock_handles (handles);
634         if (!handles->size) {
635                 handles->size = 32;
636                 if (handles->type > HANDLE_WEAK_TRACK) {
637                         handles->entries = mono_gc_alloc_fixed (sizeof (gpointer) * handles->size, make_root_descr_all_refs (handles->size, handles->type == HANDLE_PINNED));
638                 } else {
639                         handles->entries = g_malloc0 (sizeof (gpointer) * handles->size);
640                         handles->domain_ids = g_malloc0 (sizeof (guint16) * handles->size);
641                 }
642                 handles->bitmap = g_malloc0 (handles->size / 8);
643         }
644         i = -1;
645         for (slot = handles->slot_hint; slot < handles->size / 32; ++slot) {
646                 if (handles->bitmap [slot] != 0xffffffff) {
647                         i = find_first_unset (handles->bitmap [slot]);
648                         handles->slot_hint = slot;
649                         break;
650                 }
651         }
652         if (i == -1 && handles->slot_hint != 0) {
653                 for (slot = 0; slot < handles->slot_hint; ++slot) {
654                         if (handles->bitmap [slot] != 0xffffffff) {
655                                 i = find_first_unset (handles->bitmap [slot]);
656                                 handles->slot_hint = slot;
657                                 break;
658                         }
659                 }
660         }
661         if (i == -1) {
662                 guint32 *new_bitmap;
663                 guint32 new_size = handles->size * 2; /* always double: we memset to 0 based on this below */
664
665                 /* resize and copy the bitmap */
666                 new_bitmap = g_malloc0 (new_size / 8);
667                 memcpy (new_bitmap, handles->bitmap, handles->size / 8);
668                 g_free (handles->bitmap);
669                 handles->bitmap = new_bitmap;
670
671                 /* resize and copy the entries */
672                 if (handles->type > HANDLE_WEAK_TRACK) {
673                         gpointer *entries;
674
675                         entries = mono_gc_alloc_fixed (sizeof (gpointer) * new_size, make_root_descr_all_refs (new_size, handles->type == HANDLE_PINNED));
676                         mono_gc_memmove (entries, handles->entries, sizeof (gpointer) * handles->size);
677
678                         mono_gc_free_fixed (handles->entries);
679                         handles->entries = entries;
680                 } else {
681                         gpointer *entries;
682                         guint16 *domain_ids;
683                         domain_ids = g_malloc0 (sizeof (guint16) * new_size);
684                         entries = g_malloc (sizeof (gpointer) * new_size);
685                         /* we disable GC because we could lose some disappearing link updates */
686                         mono_gc_disable ();
687                         mono_gc_memmove (entries, handles->entries, sizeof (gpointer) * handles->size);
688                         mono_gc_bzero (entries + handles->size, sizeof (gpointer) * handles->size);
689                         memcpy (domain_ids, handles->domain_ids, sizeof (guint16) * handles->size);
690                         for (i = 0; i < handles->size; ++i) {
691                                 MonoObject *obj = mono_gc_weak_link_get (&(handles->entries [i]));
692                                 if (handles->entries [i])
693                                         mono_gc_weak_link_remove (&(handles->entries [i]), track);
694                                 /*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]);*/
695                                 if (obj) {
696                                         mono_gc_weak_link_add (&(entries [i]), obj, track);
697                                 }
698                         }
699                         g_free (handles->entries);
700                         g_free (handles->domain_ids);
701                         handles->entries = entries;
702                         handles->domain_ids = domain_ids;
703                         mono_gc_enable ();
704                 }
705
706                 /* set i and slot to the next free position */
707                 i = 0;
708                 slot = (handles->size + 1) / 32;
709                 handles->slot_hint = handles->size + 1;
710                 handles->size = new_size;
711         }
712         handles->bitmap [slot] |= 1 << i;
713         slot = slot * 32 + i;
714         handles->entries [slot] = NULL;
715         if (handles->type <= HANDLE_WEAK_TRACK) {
716                 /*FIXME, what to use when obj == null?*/
717                 handles->domain_ids [slot] = (obj ? mono_object_get_domain (obj) : mono_domain_get ())->domain_id;
718                 if (obj)
719                         mono_gc_weak_link_add (&(handles->entries [slot]), obj, track);
720         } else {
721                 handles->entries [slot] = obj;
722         }
723
724 #ifndef DISABLE_PERFCOUNTERS
725         mono_perfcounters->gc_num_handles++;
726 #endif
727         unlock_handles (handles);
728         /*g_print ("allocated entry %d of type %d to object %p (in slot: %p)\n", slot, handles->type, obj, handles->entries [slot]);*/
729         res = (slot << 3) | (handles->type + 1);
730         mono_profiler_gc_handle (MONO_PROFILER_GC_HANDLE_CREATED, handles->type, res, obj);
731         return res;
732 }
733
734 /**
735  * mono_gchandle_new:
736  * @obj: managed object to get a handle for
737  * @pinned: whether the object should be pinned
738  *
739  * This returns a handle that wraps the object, this is used to keep a
740  * reference to a managed object from the unmanaged world and preventing the
741  * object from being disposed.
742  * 
743  * If @pinned is false the address of the object can not be obtained, if it is
744  * true the address of the object can be obtained.  This will also pin the
745  * object so it will not be possible by a moving garbage collector to move the
746  * object. 
747  * 
748  * Returns: a handle that can be used to access the object from
749  * unmanaged code.
750  */
751 guint32
752 mono_gchandle_new (MonoObject *obj, gboolean pinned)
753 {
754         return alloc_handle (&gc_handles [pinned? HANDLE_PINNED: HANDLE_NORMAL], obj, FALSE);
755 }
756
757 /**
758  * mono_gchandle_new_weakref:
759  * @obj: managed object to get a handle for
760  * @pinned: whether the object should be pinned
761  *
762  * This returns a weak handle that wraps the object, this is used to
763  * keep a reference to a managed object from the unmanaged world.
764  * Unlike the mono_gchandle_new the object can be reclaimed by the
765  * garbage collector.  In this case the value of the GCHandle will be
766  * set to zero.
767  * 
768  * If @pinned is false the address of the object can not be obtained, if it is
769  * true the address of the object can be obtained.  This will also pin the
770  * object so it will not be possible by a moving garbage collector to move the
771  * object. 
772  * 
773  * Returns: a handle that can be used to access the object from
774  * unmanaged code.
775  */
776 guint32
777 mono_gchandle_new_weakref (MonoObject *obj, gboolean track_resurrection)
778 {
779         guint32 handle = alloc_handle (&gc_handles [track_resurrection? HANDLE_WEAK_TRACK: HANDLE_WEAK], obj, track_resurrection);
780
781         return handle;
782 }
783
784 static HandleType
785 mono_gchandle_get_type (guint32 gchandle)
786 {
787         guint type = (gchandle & 7) - 1;
788
789         return type;
790 }
791
792 /**
793  * mono_gchandle_get_target:
794  * @gchandle: a GCHandle's handle.
795  *
796  * The handle was previously created by calling mono_gchandle_new or
797  * mono_gchandle_new_weakref. 
798  *
799  * Returns a pointer to the MonoObject represented by the handle or
800  * NULL for a collected object if using a weakref handle.
801  */
802 MonoObject*
803 mono_gchandle_get_target (guint32 gchandle)
804 {
805         guint slot = gchandle >> 3;
806         guint type = (gchandle & 7) - 1;
807         HandleData *handles = &gc_handles [type];
808         MonoObject *obj = NULL;
809         if (type > 3)
810                 return NULL;
811         lock_handles (handles);
812         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
813                 if (handles->type <= HANDLE_WEAK_TRACK) {
814                         obj = mono_gc_weak_link_get (&handles->entries [slot]);
815                 } else {
816                         obj = handles->entries [slot];
817                 }
818         } else {
819                 /* print a warning? */
820         }
821         unlock_handles (handles);
822         /*g_print ("get target of entry %d of type %d: %p\n", slot, handles->type, obj);*/
823         return obj;
824 }
825
826 static void
827 mono_gchandle_set_target (guint32 gchandle, MonoObject *obj)
828 {
829         guint slot = gchandle >> 3;
830         guint type = (gchandle & 7) - 1;
831         HandleData *handles = &gc_handles [type];
832         MonoObject *old_obj = NULL;
833
834         if (type > 3)
835                 return;
836         lock_handles (handles);
837         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
838                 if (handles->type <= HANDLE_WEAK_TRACK) {
839                         old_obj = handles->entries [slot];
840                         if (handles->entries [slot])
841                                 mono_gc_weak_link_remove (&handles->entries [slot], handles->type == HANDLE_WEAK_TRACK);
842                         if (obj)
843                                 mono_gc_weak_link_add (&handles->entries [slot], obj, handles->type == HANDLE_WEAK_TRACK);
844                         /*FIXME, what to use when obj == null?*/
845                         handles->domain_ids [slot] = (obj ? mono_object_get_domain (obj) : mono_domain_get ())->domain_id;
846                 } else {
847                         handles->entries [slot] = obj;
848                 }
849         } else {
850                 /* print a warning? */
851         }
852         /*g_print ("changed entry %d of type %d to object %p (in slot: %p)\n", slot, handles->type, obj, handles->entries [slot]);*/
853         unlock_handles (handles);
854 }
855
856 /**
857  * mono_gchandle_is_in_domain:
858  * @gchandle: a GCHandle's handle.
859  * @domain: An application domain.
860  *
861  * Returns: true if the object wrapped by the @gchandle belongs to the specific @domain.
862  */
863 gboolean
864 mono_gchandle_is_in_domain (guint32 gchandle, MonoDomain *domain)
865 {
866         guint slot = gchandle >> 3;
867         guint type = (gchandle & 7) - 1;
868         HandleData *handles = &gc_handles [type];
869         gboolean result = FALSE;
870         if (type > 3)
871                 return FALSE;
872         lock_handles (handles);
873         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
874                 if (handles->type <= HANDLE_WEAK_TRACK) {
875                         result = domain->domain_id == handles->domain_ids [slot];
876                 } else {
877                         MonoObject *obj;
878                         obj = handles->entries [slot];
879                         if (obj == NULL)
880                                 result = TRUE;
881                         else
882                                 result = domain == mono_object_domain (obj);
883                 }
884         } else {
885                 /* print a warning? */
886         }
887         unlock_handles (handles);
888         return result;
889 }
890
891 /**
892  * mono_gchandle_free:
893  * @gchandle: a GCHandle's handle.
894  *
895  * Frees the @gchandle handle.  If there are no outstanding
896  * references, the garbage collector can reclaim the memory of the
897  * object wrapped. 
898  */
899 void
900 mono_gchandle_free (guint32 gchandle)
901 {
902         guint slot = gchandle >> 3;
903         guint type = (gchandle & 7) - 1;
904         HandleData *handles = &gc_handles [type];
905         if (type > 3)
906                 return;
907
908         lock_handles (handles);
909         if (slot < handles->size && (handles->bitmap [slot / 32] & (1 << (slot % 32)))) {
910                 if (handles->type <= HANDLE_WEAK_TRACK) {
911                         if (handles->entries [slot])
912                                 mono_gc_weak_link_remove (&handles->entries [slot], handles->type == HANDLE_WEAK_TRACK);
913                 } else {
914                         handles->entries [slot] = NULL;
915                 }
916                 handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
917         } else {
918                 /* print a warning? */
919         }
920 #ifndef DISABLE_PERFCOUNTERS
921         mono_perfcounters->gc_num_handles--;
922 #endif
923         /*g_print ("freed entry %d of type %d\n", slot, handles->type);*/
924         unlock_handles (handles);
925         mono_profiler_gc_handle (MONO_PROFILER_GC_HANDLE_DESTROYED, handles->type, gchandle, NULL);
926 }
927
928 /**
929  * mono_gchandle_free_domain:
930  * @domain: domain that is unloading
931  *
932  * Function used internally to cleanup any GC handle for objects belonging
933  * to the specified domain during appdomain unload.
934  */
935 void
936 mono_gchandle_free_domain (MonoDomain *domain)
937 {
938         guint type;
939
940         for (type = 0; type < 3; ++type) {
941                 guint slot;
942                 HandleData *handles = &gc_handles [type];
943                 lock_handles (handles);
944                 for (slot = 0; slot < handles->size; ++slot) {
945                         if (!(handles->bitmap [slot / 32] & (1 << (slot % 32))))
946                                 continue;
947                         if (type <= HANDLE_WEAK_TRACK) {
948                                 if (domain->domain_id == handles->domain_ids [slot]) {
949                                         handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
950                                         if (handles->entries [slot])
951                                                 mono_gc_weak_link_remove (&handles->entries [slot], handles->type == HANDLE_WEAK_TRACK);
952                                 }
953                         } else {
954                                 if (handles->entries [slot] && mono_object_domain (handles->entries [slot]) == domain) {
955                                         handles->bitmap [slot / 32] &= ~(1 << (slot % 32));
956                                         handles->entries [slot] = NULL;
957                                 }
958                         }
959                 }
960                 unlock_handles (handles);
961         }
962
963 }
964
965 MonoBoolean
966 GCHandle_CheckCurrentDomain (guint32 gchandle)
967 {
968         return mono_gchandle_is_in_domain (gchandle, mono_domain_get ());
969 }
970
971 #ifndef HAVE_NULL_GC
972
973 #ifdef MONO_HAS_SEMAPHORES
974 static MonoSemType finalizer_sem;
975 #endif
976 static HANDLE finalizer_event;
977 static volatile gboolean finished=FALSE;
978
979 void
980 mono_gc_finalize_notify (void)
981 {
982 #ifdef DEBUG
983         g_message ( "%s: prodding finalizer", __func__);
984 #endif
985
986 #ifdef MONO_HAS_SEMAPHORES
987         MONO_SEM_POST (&finalizer_sem);
988 #else
989         SetEvent (finalizer_event);
990 #endif
991 }
992
993 #ifdef HAVE_BOEHM_GC
994
995 static void
996 collect_objects (gpointer key, gpointer value, gpointer user_data)
997 {
998         GPtrArray *arr = (GPtrArray*)user_data;
999         g_ptr_array_add (arr, key);
1000 }
1001
1002 #endif
1003
1004 /*
1005  * finalize_domain_objects:
1006  *
1007  *  Run the finalizers of all finalizable objects in req->domain.
1008  */
1009 static void
1010 finalize_domain_objects (DomainFinalizationReq *req)
1011 {
1012         MonoDomain *domain = req->domain;
1013
1014 #if HAVE_SGEN_GC
1015 #define NUM_FOBJECTS 64
1016         MonoObject *to_finalize [NUM_FOBJECTS];
1017         int count;
1018 #endif
1019
1020         /* Process finalizers which are already in the queue */
1021         mono_gc_invoke_finalizers ();
1022
1023 #ifdef HAVE_BOEHM_GC
1024         while (g_hash_table_size (domain->finalizable_objects_hash) > 0) {
1025                 int i;
1026                 GPtrArray *objs;
1027                 /* 
1028                  * Since the domain is unloading, nobody is allowed to put
1029                  * new entries into the hash table. But finalize_object might
1030                  * remove entries from the hash table, so we make a copy.
1031                  */
1032                 objs = g_ptr_array_new ();
1033                 g_hash_table_foreach (domain->finalizable_objects_hash, collect_objects, objs);
1034                 /* printf ("FINALIZING %d OBJECTS.\n", objs->len); */
1035
1036                 for (i = 0; i < objs->len; ++i) {
1037                         MonoObject *o = (MonoObject*)g_ptr_array_index (objs, i);
1038                         /* FIXME: Avoid finalizing threads, etc */
1039                         mono_gc_run_finalize (o, 0);
1040                 }
1041
1042                 g_ptr_array_free (objs, TRUE);
1043         }
1044 #elif defined(HAVE_SGEN_GC)
1045         while ((count = mono_gc_finalizers_for_domain (domain, to_finalize, NUM_FOBJECTS))) {
1046                 int i;
1047                 for (i = 0; i < count; ++i) {
1048                         mono_gc_run_finalize (to_finalize [i], 0);
1049                 }
1050         }
1051 #endif
1052
1053         /* cleanup the reference queue */
1054         reference_queue_clear_for_domain (domain);
1055         
1056         /* printf ("DONE.\n"); */
1057         SetEvent (req->done_event);
1058
1059         /* The event is closed in mono_domain_finalize if we get here */
1060         g_free (req);
1061 }
1062
1063 static guint32
1064 finalizer_thread (gpointer unused)
1065 {
1066         while (!finished) {
1067                 /* Wait to be notified that there's at least one
1068                  * finaliser to run
1069                  */
1070
1071                 g_assert (mono_domain_get () == mono_get_root_domain ());
1072
1073                 /* An alertable wait is required so this thread can be suspended on windows */
1074 #ifdef MONO_HAS_SEMAPHORES
1075                 MONO_SEM_WAIT_ALERTABLE (&finalizer_sem, TRUE);
1076 #else
1077                 WaitForSingleObjectEx (finalizer_event, INFINITE, TRUE);
1078 #endif
1079
1080                 mono_threads_perform_thread_dump ();
1081
1082                 mono_console_handle_async_ops ();
1083
1084 #ifndef DISABLE_ATTACH
1085                 mono_attach_maybe_start ();
1086 #endif
1087
1088                 if (domains_to_finalize) {
1089                         mono_finalizer_lock ();
1090                         if (domains_to_finalize) {
1091                                 DomainFinalizationReq *req = domains_to_finalize->data;
1092                                 domains_to_finalize = g_slist_remove (domains_to_finalize, req);
1093                                 mono_finalizer_unlock ();
1094
1095                                 finalize_domain_objects (req);
1096                         } else {
1097                                 mono_finalizer_unlock ();
1098                         }
1099                 }                               
1100
1101                 /* If finished == TRUE, mono_gc_cleanup has been called (from mono_runtime_cleanup),
1102                  * before the domain is unloaded.
1103                  */
1104                 mono_gc_invoke_finalizers ();
1105
1106                 reference_queue_proccess_all ();
1107
1108                 SetEvent (pending_done_event);
1109         }
1110
1111         SetEvent (shutdown_event);
1112         return 0;
1113 }
1114
1115 #ifndef LAZY_GC_THREAD_CREATION
1116 static
1117 #endif
1118 void
1119 mono_gc_init_finalizer_thread (void)
1120 {
1121         gc_thread = mono_thread_create_internal (mono_domain_get (), finalizer_thread, NULL, FALSE, TRUE, 0);
1122         ves_icall_System_Threading_Thread_SetName_internal (gc_thread, mono_string_new (mono_domain_get (), "Finalizer"));
1123 }
1124
1125 void
1126 mono_gc_init (void)
1127 {
1128         InitializeCriticalSection (&handle_section);
1129         InitializeCriticalSection (&allocator_section);
1130
1131         InitializeCriticalSection (&finalizer_mutex);
1132         InitializeCriticalSection (&reference_queue_mutex);
1133
1134         MONO_GC_REGISTER_ROOT_FIXED (gc_handles [HANDLE_NORMAL].entries);
1135         MONO_GC_REGISTER_ROOT_FIXED (gc_handles [HANDLE_PINNED].entries);
1136
1137         mono_counters_register ("Minor GC collections", MONO_COUNTER_GC | MONO_COUNTER_INT, &gc_stats.minor_gc_count);
1138         mono_counters_register ("Major GC collections", MONO_COUNTER_GC | MONO_COUNTER_INT, &gc_stats.major_gc_count);
1139         mono_counters_register ("Minor GC time", MONO_COUNTER_GC | MONO_COUNTER_TIME_INTERVAL, &gc_stats.minor_gc_time_usecs);
1140         mono_counters_register ("Major GC time", MONO_COUNTER_GC | MONO_COUNTER_TIME_INTERVAL, &gc_stats.major_gc_time_usecs);
1141
1142         mono_gc_base_init ();
1143
1144         if (mono_gc_is_disabled ()) {
1145                 gc_disabled = TRUE;
1146                 return;
1147         }
1148         
1149         finalizer_event = CreateEvent (NULL, FALSE, FALSE, NULL);
1150         pending_done_event = CreateEvent (NULL, TRUE, FALSE, NULL);
1151         shutdown_event = CreateEvent (NULL, TRUE, FALSE, NULL);
1152         if (finalizer_event == NULL || pending_done_event == NULL || shutdown_event == NULL) {
1153                 g_assert_not_reached ();
1154         }
1155 #ifdef MONO_HAS_SEMAPHORES
1156         MONO_SEM_INIT (&finalizer_sem, 0);
1157 #endif
1158
1159 #ifndef LAZY_GC_THREAD_CREATION
1160         mono_gc_init_finalizer_thread ();
1161 #endif
1162 }
1163
1164 void
1165 mono_gc_cleanup (void)
1166 {
1167 #ifdef DEBUG
1168         g_message ("%s: cleaning up finalizer", __func__);
1169 #endif
1170
1171         if (!gc_disabled) {
1172                 ResetEvent (shutdown_event);
1173                 finished = TRUE;
1174                 if (mono_thread_internal_current () != gc_thread) {
1175                         mono_gc_finalize_notify ();
1176                         /* Finishing the finalizer thread, so wait a little bit... */
1177                         /* MS seems to wait for about 2 seconds */
1178                         if (WaitForSingleObjectEx (shutdown_event, 2000, FALSE) == WAIT_TIMEOUT) {
1179                                 int ret;
1180
1181                                 /* Set a flag which the finalizer thread can check */
1182                                 suspend_finalizers = TRUE;
1183
1184                                 /* Try to abort the thread, in the hope that it is running managed code */
1185                                 mono_thread_internal_stop (gc_thread);
1186
1187                                 /* Wait for it to stop */
1188                                 ret = WaitForSingleObjectEx (gc_thread->handle, 100, TRUE);
1189
1190                                 if (ret == WAIT_TIMEOUT) {
1191                                         /* 
1192                                          * The finalizer thread refused to die. There is not much we 
1193                                          * can do here, since the runtime is shutting down so the 
1194                                          * state the finalizer thread depends on will vanish.
1195                                          */
1196                                         g_warning ("Shutting down finalizer thread timed out.");
1197                                 } else {
1198                                         /*
1199                                          * FIXME: On unix, when the above wait returns, the thread 
1200                                          * might still be running io-layer code, or pthreads code.
1201                                          */
1202                                         Sleep (100);
1203                                 }
1204                         } else {
1205                                 int ret;
1206
1207                                 /* Wait for the thread to actually exit */
1208                                 ret = WaitForSingleObjectEx (gc_thread->handle, INFINITE, TRUE);
1209                                 g_assert (ret == WAIT_OBJECT_0);
1210
1211 #ifndef HOST_WIN32
1212                                 /*
1213                                  * The above wait only waits for the exited event to be signalled, the thread might still be running. To fix this race, we
1214                                  * create the finalizer thread without calling pthread_detach () on it, so we can wait for it manually.
1215                                  */
1216                                 ret = pthread_join ((gpointer)(gsize)gc_thread->tid, NULL);
1217                                 g_assert (ret == 0);
1218 #endif
1219                         }
1220                 }
1221                 gc_thread = NULL;
1222 #ifdef HAVE_BOEHM_GC
1223                 GC_finalizer_notifier = NULL;
1224 #endif
1225         }
1226
1227         mono_reference_queue_cleanup ();
1228
1229         DeleteCriticalSection (&handle_section);
1230         DeleteCriticalSection (&allocator_section);
1231         DeleteCriticalSection (&finalizer_mutex);
1232         DeleteCriticalSection (&reference_queue_mutex);
1233 }
1234
1235 #else
1236
1237 /* Null GC dummy functions */
1238 void
1239 mono_gc_finalize_notify (void)
1240 {
1241 }
1242
1243 void mono_gc_init (void)
1244 {
1245         InitializeCriticalSection (&handle_section);
1246 }
1247
1248 void mono_gc_cleanup (void)
1249 {
1250 }
1251
1252 #endif
1253
1254 gboolean
1255 mono_gc_is_finalizer_internal_thread (MonoInternalThread *thread)
1256 {
1257         return thread == gc_thread;
1258 }
1259
1260 /**
1261  * mono_gc_is_finalizer_thread:
1262  * @thread: the thread to test.
1263  *
1264  * In Mono objects are finalized asynchronously on a separate thread.
1265  * This routine tests whether the @thread argument represents the
1266  * finalization thread.
1267  * 
1268  * Returns true if @thread is the finalization thread.
1269  */
1270 gboolean
1271 mono_gc_is_finalizer_thread (MonoThread *thread)
1272 {
1273         return mono_gc_is_finalizer_internal_thread (thread->internal_thread);
1274 }
1275
1276 #if defined(__MACH__)
1277 static pthread_t mach_exception_thread;
1278
1279 void
1280 mono_gc_register_mach_exception_thread (pthread_t thread)
1281 {
1282         mach_exception_thread = thread;
1283 }
1284
1285 pthread_t
1286 mono_gc_get_mach_exception_thread (void)
1287 {
1288         return mach_exception_thread;
1289 }
1290 #endif
1291
1292 /**
1293  * mono_gc_parse_environment_string_extract_number:
1294  *
1295  * @str: points to the first digit of the number
1296  * @out: pointer to the variable that will receive the value
1297  *
1298  * Tries to extract a number from the passed string, taking in to account m, k
1299  * and g suffixes
1300  *
1301  * Returns true if passing was successful
1302  */
1303 gboolean
1304 mono_gc_parse_environment_string_extract_number (const char *str, glong *out)
1305 {
1306         char *endptr;
1307         int len = strlen (str), shift = 0;
1308         glong val;
1309         gboolean is_suffix = FALSE;
1310         char suffix;
1311
1312         if (!len)
1313                 return FALSE;
1314
1315         suffix = str [len - 1];
1316
1317         switch (suffix) {
1318                 case 'g':
1319                 case 'G':
1320                         shift += 10;
1321                 case 'm':
1322                 case 'M':
1323                         shift += 10;
1324                 case 'k':
1325                 case 'K':
1326                         shift += 10;
1327                         is_suffix = TRUE;
1328                         break;
1329                 default:
1330                         if (!isdigit (suffix))
1331                                 return FALSE;
1332                         break;
1333         }
1334
1335         errno = 0;
1336         val = strtol (str, &endptr, 10);
1337
1338         if ((errno == ERANGE && (val == LONG_MAX || val == LONG_MIN))
1339                         || (errno != 0 && val == 0) || (endptr == str))
1340                 return FALSE;
1341
1342         if (is_suffix) {
1343                 gulong unshifted;
1344
1345                 if (val < 0)    /* negative numbers cannot be suffixed */
1346                         return FALSE;
1347                 if (*(endptr + 1)) /* Invalid string. */
1348                         return FALSE;
1349
1350                 unshifted = (gulong)val;
1351                 val <<= shift;
1352                 if (val < 0)    /* overflow */
1353                         return FALSE;
1354                 if (((gulong)val >> shift) != unshifted) /* value too large */
1355                         return FALSE;
1356         }
1357
1358         *out = val;
1359         return TRUE;
1360 }
1361
1362 #ifndef HAVE_SGEN_GC
1363 void*
1364 mono_gc_alloc_mature (MonoVTable *vtable)
1365 {
1366         return mono_object_new_specific (vtable);
1367 }
1368 #endif
1369
1370
1371 static MonoReferenceQueue *ref_queues;
1372
1373 static void
1374 ref_list_remove_element (RefQueueEntry **prev, RefQueueEntry *element)
1375 {
1376         do {
1377                 /* Guard if head is changed concurrently. */
1378                 while (*prev != element)
1379                         prev = &(*prev)->next;
1380         } while (prev && InterlockedCompareExchangePointer ((void*)prev, element->next, element) != element);
1381 }
1382
1383 static void
1384 ref_list_push (RefQueueEntry **head, RefQueueEntry *value)
1385 {
1386         RefQueueEntry *current;
1387         do {
1388                 current = *head;
1389                 value->next = current;
1390                 STORE_STORE_FENCE; /*Must make sure the previous store is visible before the CAS. */
1391         } while (InterlockedCompareExchangePointer ((void*)head, value, current) != current);
1392 }
1393
1394 static void
1395 reference_queue_proccess (MonoReferenceQueue *queue)
1396 {
1397         RefQueueEntry **iter = &queue->queue;
1398         RefQueueEntry *entry;
1399         while ((entry = *iter)) {
1400 #ifdef HAVE_SGEN_GC
1401                 if (queue->should_be_deleted || !mono_gc_weak_link_get (&entry->dis_link)) {
1402                         mono_gc_weak_link_remove (&entry->dis_link, TRUE);
1403 #else
1404                 if (queue->should_be_deleted || !mono_gchandle_get_target (entry->gchandle)) {
1405                         mono_gchandle_free ((guint32)entry->gchandle);
1406 #endif
1407                         ref_list_remove_element (iter, entry);
1408                         queue->callback (entry->user_data);
1409                         g_free (entry);
1410                 } else {
1411                         iter = &entry->next;
1412                 }
1413         }
1414 }
1415
1416 static void
1417 reference_queue_proccess_all (void)
1418 {
1419         MonoReferenceQueue **iter;
1420         MonoReferenceQueue *queue = ref_queues;
1421         for (; queue; queue = queue->next)
1422                 reference_queue_proccess (queue);
1423
1424 restart:
1425         EnterCriticalSection (&reference_queue_mutex);
1426         for (iter = &ref_queues; *iter;) {
1427                 queue = *iter;
1428                 if (!queue->should_be_deleted) {
1429                         iter = &queue->next;
1430                         continue;
1431                 }
1432                 if (queue->queue) {
1433                         LeaveCriticalSection (&reference_queue_mutex);
1434                         reference_queue_proccess (queue);
1435                         goto restart;
1436                 }
1437                 *iter = queue->next;
1438                 g_free (queue);
1439         }
1440         LeaveCriticalSection (&reference_queue_mutex);
1441 }
1442
1443 static void
1444 mono_reference_queue_cleanup (void)
1445 {
1446         MonoReferenceQueue *queue = ref_queues;
1447         for (; queue; queue = queue->next)
1448                 queue->should_be_deleted = TRUE;
1449         reference_queue_proccess_all ();
1450 }
1451
1452 static void
1453 reference_queue_clear_for_domain (MonoDomain *domain)
1454 {
1455         MonoReferenceQueue *queue = ref_queues;
1456         for (; queue; queue = queue->next) {
1457                 RefQueueEntry **iter = &queue->queue;
1458                 RefQueueEntry *entry;
1459                 while ((entry = *iter)) {
1460                         MonoObject *obj;
1461 #ifdef HAVE_SGEN_GC
1462                         obj = mono_gc_weak_link_get (&entry->dis_link);
1463                         if (obj && mono_object_domain (obj) == domain) {
1464                                 mono_gc_weak_link_remove (&entry->dis_link, TRUE);
1465 #else
1466                         obj = mono_gchandle_get_target (entry->gchandle);
1467                         if (obj && mono_object_domain (obj) == domain) {
1468                                 mono_gchandle_free ((guint32)entry->gchandle);
1469 #endif
1470                                 ref_list_remove_element (iter, entry);
1471                                 queue->callback (entry->user_data);
1472                                 g_free (entry);
1473                         } else {
1474                                 iter = &entry->next;
1475                         }
1476                 }
1477         }
1478 }
1479 /**
1480  * mono_gc_reference_queue_new:
1481  * @callback callback used when processing dead entries.
1482  *
1483  * Create a new reference queue used to process collected objects.
1484  * A reference queue let you queue a pair (managed object, user data)
1485  * using the mono_gc_reference_queue_add method.
1486  *
1487  * Once the managed object is collected @callback will be called
1488  * in the finalizer thread with 'user data' as argument.
1489  *
1490  * The callback is called without any locks held.
1491  */
1492 MonoReferenceQueue*
1493 mono_gc_reference_queue_new (mono_reference_queue_callback callback)
1494 {
1495         MonoReferenceQueue *res = g_new0 (MonoReferenceQueue, 1);
1496         res->callback = callback;
1497
1498         EnterCriticalSection (&reference_queue_mutex);
1499         res->next = ref_queues;
1500         ref_queues = res;
1501         LeaveCriticalSection (&reference_queue_mutex);
1502
1503         return res;
1504 }
1505
1506 /**
1507  * mono_gc_reference_queue_add:
1508  * @queue the queue to add the reference to.
1509  * @obj the object to be watched for collection
1510  * @user_data parameter to be passed to the queue callback
1511  *
1512  * Queue an object to be watched for collection, when the @obj is
1513  * collected, the callback that was registered for the @queue will
1514  * be invoked with the @obj and @user_data arguments.
1515  *
1516  * @returns false if the queue is scheduled to be freed.
1517  */
1518 gboolean
1519 mono_gc_reference_queue_add (MonoReferenceQueue *queue, MonoObject *obj, void *user_data)
1520 {
1521         RefQueueEntry *entry;
1522         if (queue->should_be_deleted)
1523                 return FALSE;
1524
1525         entry = g_new0 (RefQueueEntry, 1);
1526         entry->user_data = user_data;
1527
1528 #ifdef HAVE_SGEN_GC
1529         mono_gc_weak_link_add (&entry->dis_link, obj, TRUE);
1530 #else
1531         entry->gchandle = mono_gchandle_new_weakref (obj, TRUE);
1532         mono_object_register_finalizer (obj);
1533 #endif
1534
1535         ref_list_push (&queue->queue, entry);
1536         return TRUE;
1537 }
1538
1539 /**
1540  * mono_gc_reference_queue_free:
1541  * @queue the queue that should be deleted.
1542  *
1543  * This operation signals that @queue should be deleted. This operation is deferred
1544  * as it happens on the finalizer thread.
1545  *
1546  * After this call, no further objects can be queued. It's the responsibility of the
1547  * caller to make sure that no further attempt to access queue will be made.
1548  */
1549 void
1550 mono_gc_reference_queue_free (MonoReferenceQueue *queue)
1551 {
1552         queue->should_be_deleted = TRUE;
1553 }
1554
1555 #define ptr_mask ((sizeof (void*) - 1))
1556 #define _toi(ptr) ((size_t)ptr)
1557 #define unaligned_bytes(ptr) (_toi(ptr) & ptr_mask)
1558 #define align_down(ptr) ((void*)(_toi(ptr) & ~ptr_mask))
1559 #define align_up(ptr) ((void*) ((_toi(ptr) + ptr_mask) & ~ptr_mask))
1560
1561 /**
1562  * mono_gc_bzero:
1563  * @dest: address to start to clear
1564  * @size: size of the region to clear
1565  *
1566  * Zero @size bytes starting at @dest.
1567  *
1568  * Use this to zero memory that can hold managed pointers.
1569  *
1570  * FIXME borrow faster code from some BSD libc or bionic
1571  */
1572 void
1573 mono_gc_bzero (void *dest, size_t size)
1574 {
1575         char *p = (char*)dest;
1576         char *end = p + size;
1577         char *align_end = align_up (p);
1578         char *word_end;
1579
1580         while (p < align_end)
1581                 *p++ = 0;
1582
1583         word_end = align_down (end);
1584         while (p < word_end) {
1585                 *((void**)p) = NULL;
1586                 p += sizeof (void*);
1587         }
1588
1589         while (p < end)
1590                 *p++ = 0;
1591 }
1592
1593
1594 /**
1595  * mono_gc_memmove:
1596  * @dest: destination of the move
1597  * @src: source
1598  * @size: size of the block to move
1599  *
1600  * Move @size bytes from @src to @dest.
1601  * size MUST be a multiple of sizeof (gpointer)
1602  *
1603  * FIXME borrow faster code from some BSD libc or bionic
1604  */
1605 void
1606 mono_gc_memmove (void *dest, const void *src, size_t size)
1607 {
1608         /*
1609          * If dest and src are differently aligned with respect to
1610          * pointer size then it makes no sense to do aligned copying.
1611          * In fact, we would end up with unaligned loads which is
1612          * incorrect on some architectures.
1613          */
1614         if ((char*)dest - (char*)align_down (dest) != (char*)src - (char*)align_down (src)) {
1615                 memmove (dest, src, size);
1616                 return;
1617         }
1618
1619         /*
1620          * A bit of explanation on why we align only dest before doing word copies.
1621          * Pointers to managed objects must always be stored in word aligned addresses, so
1622          * even if dest is misaligned, src will be by the same amount - this ensure proper atomicity of reads.
1623          */
1624         if (dest > src && ((size_t)((char*)dest - (char*)src) < size)) {
1625                 char *p = (char*)dest + size;
1626                 char *s = (char*)src + size;
1627                 char *start = (char*)dest;
1628                 char *align_end = MAX((char*)dest, (char*)align_down (p));
1629                 char *word_start;
1630
1631                 while (p > align_end)
1632                         *--p = *--s;
1633
1634                 word_start = align_up (start);
1635                 while (p > word_start) {
1636                         p -= sizeof (void*);
1637                         s -= sizeof (void*);
1638                         *((void**)p) = *((void**)s);
1639                 }
1640
1641                 while (p > start)
1642                         *--p = *--s;
1643         } else {
1644                 char *p = (char*)dest;
1645                 char *s = (char*)src;
1646                 char *end = p + size;
1647                 char *align_end = MIN ((char*)end, (char*)align_up (p));
1648                 char *word_end;
1649
1650                 while (p < align_end)
1651                         *p++ = *s++;
1652
1653                 word_end = align_down (end);
1654                 while (p < word_end) {
1655                         *((void**)p) = *((void**)s);
1656                         p += sizeof (void*);
1657                         s += sizeof (void*);
1658                 }
1659
1660                 while (p < end)
1661                         *p++ = *s++;
1662         }
1663 }
1664
1665