Remove an intermediate buffer in the bridge code.
[mono.git] / mono / metadata / sgen-bridge.c
1 /*
2  * sgen-bridge.c: Simple generational GC.
3  *
4  * Copyright 2011 Novell, Inc (http://www.novell.com)
5  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
6  *
7  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
9  *
10  * Permission is hereby granted to use or copy this program
11  * for any purpose,  provided the above notices are retained on all copies.
12  * Permission to modify the code and to distribute modified code is granted,
13  * provided the above notices are retained, and a notice that the code was
14  * modified is included with the above copyright notice.
15  *
16  *
17  * Copyright 2001-2003 Ximian, Inc
18  * Copyright 2003-2010 Novell, Inc.
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39
40 #include "config.h"
41
42 #ifdef HAVE_SGEN_GC
43
44 #include <stdlib.h>
45
46 #include "sgen-gc.h"
47 #include "sgen-bridge.h"
48 #include "utils/mono-logger-internal.h"
49 #include "utils/mono-time.h"
50
51
52 typedef struct {
53         int size;
54         int elem_size;
55         int capacity;
56         char *data;
57 } DynArray;
58
59 #define DYN_ARRAY_REF(da,i)     ((void*)((da)->data + (i) * (da)->elem_size))
60 #define DYN_ARRAY_PTR_REF(da,i) (((void**)(da)->data) [(i)])
61 #define DYN_ARRAY_INT_REF(da,i) (((int*)(da)->data) [(i)])
62 #define DYN_ARRAY_PTR_STATIC_INITIALIZER { 0, sizeof (void*), 0, NULL }
63 #define DYN_ARRAY_INT_STATIC_INITIALIZER { 0, sizeof (int), 0, NULL }
64
65 static void
66 dyn_array_init (DynArray *da, int elem_size)
67 {
68         da->size = 0;
69         da->elem_size = elem_size;
70         da->capacity = 0;
71         da->data = NULL;
72 }
73
74 static void
75 dyn_array_ptr_init (DynArray *da)
76 {
77         dyn_array_init (da, sizeof (void*));
78 }
79
80 static void
81 dyn_array_int_init (DynArray *da)
82 {
83         dyn_array_init (da, sizeof (int));
84 }
85
86 static void
87 dyn_array_uninit (DynArray *da)
88 {
89         if (da->capacity <= 0)
90                 return;
91
92         mono_sgen_free_internal_dynamic (da->data, da->elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA);
93         da->data = NULL;
94 }
95
96 static void
97 dyn_array_ensure_capacity (DynArray *da, int capacity)
98 {
99         int old_capacity = da->capacity;
100         char *new_data;
101
102         if (capacity <= old_capacity)
103                 return;
104
105         if (da->capacity == 0)
106                 da->capacity = 2;
107         while (capacity > da->capacity)
108                 da->capacity *= 2;
109
110         new_data = mono_sgen_alloc_internal_dynamic (da->elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA);
111         memcpy (new_data, da->data, da->elem_size * da->size);
112         mono_sgen_free_internal_dynamic (da->data, da->elem_size * old_capacity, INTERNAL_MEM_BRIDGE_DATA);
113         da->data = new_data;
114 }
115
116 static void*
117 dyn_array_add (DynArray *da)
118 {
119         void *p;
120
121         dyn_array_ensure_capacity (da, da->size + 1);
122
123         p = DYN_ARRAY_REF (da, da->size);
124         ++da->size;
125         return p;
126 }
127
128 static void
129 dyn_array_ptr_add (DynArray *da, void *ptr)
130 {
131         void **p = dyn_array_add (da);
132         *p = ptr;
133 }
134
135 #define dyn_array_ptr_push dyn_array_ptr_add
136
137 static void*
138 dyn_array_ptr_pop (DynArray *da)
139 {
140         void *p;
141         g_assert (da->size > 0);
142         p = DYN_ARRAY_PTR_REF (da, da->size - 1);
143         --da->size;
144         return p;
145 }
146
147 static void
148 dyn_array_int_add (DynArray *da, int x)
149 {
150         int *p = dyn_array_add (da);
151         *p = x;
152 }
153
154 /*
155 static gboolean
156 dyn_array_ptr_contains (DynArray *da, void *ptr)
157 {
158         int i;
159         for (i = 0; i < da->size; ++i)
160                 if (DYN_ARRAY_PTR_REF (da, i) == ptr)
161                         return TRUE;
162         return FALSE;
163 }
164 */
165
166 static gboolean
167 dyn_array_int_contains (DynArray *da, int x)
168 {
169         int i;
170         for (i = 0; i < da->size; ++i)
171                 if (DYN_ARRAY_INT_REF (da, i) == x)
172                         return TRUE;
173         return FALSE;
174 }
175
176 static DynArray merge_array;
177
178 static void
179 dyn_array_int_merge (DynArray *dst, DynArray *src)
180 {
181         int i, j;
182
183         dyn_array_ensure_capacity (&merge_array, dst->size + src->size);
184         merge_array.size = 0;
185
186         for (i = j = 0; i < dst->size || j < src->size; ) {
187                 if (i < dst->size && j < src->size) {
188                         int a = DYN_ARRAY_INT_REF (dst, i); 
189                         int b = DYN_ARRAY_INT_REF (src, j); 
190                         if (a < b) {
191                                 dyn_array_int_add (&merge_array, a);
192                                 ++i;
193                         } else if (a == b) {
194                                 dyn_array_int_add (&merge_array, a);
195                                 ++i;
196                                 ++j;    
197                         } else {
198                                 dyn_array_int_add (&merge_array, b);
199                                 ++j;
200                         }
201                 } else if (i < dst->size) {
202                         dyn_array_int_add (&merge_array, DYN_ARRAY_INT_REF (dst, i));
203                         ++i;
204                 } else {
205                         dyn_array_int_add (&merge_array, DYN_ARRAY_INT_REF (src, j));
206                         ++j;
207                 }
208         }
209
210         if (merge_array.size > dst->size) {
211                 dyn_array_ensure_capacity (dst, merge_array.size);
212                 memcpy (DYN_ARRAY_REF (dst, 0), DYN_ARRAY_REF (&merge_array, 0), merge_array.size * merge_array.elem_size);
213                 dst->size = merge_array.size;
214         }
215 }
216
217 static void
218 dyn_array_int_merge_one (DynArray *array, int value)
219 {
220         int i;
221         int tmp;
222         int end = array->size;
223
224         for (i = 0; i < end; ++i) {
225                 if (DYN_ARRAY_INT_REF (array, i) == value)
226                         return;
227                 else if (DYN_ARRAY_INT_REF (array, i) > value)
228                         break;
229         }
230
231         dyn_array_ensure_capacity (array, array->size + 1);
232
233         if (i < end) {
234                 tmp = DYN_ARRAY_INT_REF (array, i);
235                 for (; i <= end; ++i) {
236                         DYN_ARRAY_INT_REF (array, i) = value;
237                         value = tmp;
238                         tmp = DYN_ARRAY_INT_REF (array, i + 1);
239                 }
240                 DYN_ARRAY_INT_REF (array, end + 1) = tmp;
241         } else {
242                 DYN_ARRAY_INT_REF (array, end) = value;
243         }
244         ++array->size;
245 }
246
247 /*
248  * FIXME: Optimizations:
249  *
250  * Don't allocate a scrs array for just one source.  Most objects have
251  * just one source, so use the srcs pointer itself.
252  */
253 typedef struct _HashEntry {
254         MonoObject *obj;        /* This is a duplicate - it's already stored in the hash table */
255
256         gboolean is_bridge;
257         gboolean is_visited;
258
259         int finishing_time;
260
261         DynArray srcs;
262
263         int scc_index;
264 } HashEntry;
265
266 typedef struct _SCC {
267         int index;
268         int api_index;
269         int num_bridge_entries;
270         DynArray xrefs;         /* these are incoming, not outgoing */
271 } SCC;
272
273 static SgenHashTable hash_table = SGEN_HASH_TABLE_INIT (INTERNAL_MEM_BRIDGE_DATA, INTERNAL_MEM_BRIDGE_DATA, sizeof (HashEntry), mono_aligned_addr_hash, NULL);
274
275 static MonoGCBridgeCallbacks bridge_callbacks;
276
277 static int current_time;
278
279 void
280 mono_gc_register_bridge_callbacks (MonoGCBridgeCallbacks *callbacks)
281 {
282         bridge_callbacks = *callbacks;
283 }
284
285 gboolean
286 mono_sgen_is_bridge_object (MonoObject *obj)
287 {
288         return bridge_callbacks.is_bridge_object (obj);
289 }
290
291 gboolean
292 mono_sgen_need_bridge_processing (void)
293 {
294         return bridge_callbacks.cross_references != NULL;
295 }
296
297 static HashEntry*
298 get_hash_entry (MonoObject *obj, gboolean *existing)
299 {
300         HashEntry *entry = mono_sgen_hash_table_lookup (&hash_table, obj);
301         HashEntry new_entry;
302
303         if (entry) {
304                 if (existing)
305                         *existing = TRUE;
306                 return entry;
307         }
308         if (existing)
309                 *existing = FALSE;
310
311         memset (&new_entry, 0, sizeof (HashEntry));
312
313         new_entry.obj = obj;
314         dyn_array_ptr_init (&new_entry.srcs);
315         new_entry.finishing_time = -1;
316         new_entry.scc_index = -1;
317
318         mono_sgen_hash_table_replace (&hash_table, obj, &new_entry);
319
320         return mono_sgen_hash_table_lookup (&hash_table, obj);
321 }
322
323 static void
324 add_source (HashEntry *entry, HashEntry *src)
325 {
326         dyn_array_ptr_add (&entry->srcs, src);
327 }
328
329 static void
330 free_data (void)
331 {
332         MonoObject *obj;
333         HashEntry *entry;
334         int total_srcs = 0;
335         int max_srcs = 0;
336
337         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
338                 total_srcs += entry->srcs.size;
339                 if (entry->srcs.size > max_srcs)
340                         max_srcs = entry->srcs.size;
341                 dyn_array_uninit (&entry->srcs);
342         } SGEN_HASH_TABLE_FOREACH_END;
343
344         mono_sgen_hash_table_clean (&hash_table);
345
346         dyn_array_uninit (&merge_array);
347         //g_print ("total srcs %d - max %d\n", total_srcs, max_srcs);
348 }
349
350 static gboolean
351 register_bridge_object (MonoObject *obj)
352 {
353         gboolean existing;
354         HashEntry *entry = get_hash_entry (obj, &existing);
355         entry->is_bridge = TRUE;
356         return !existing;
357 }
358
359 static void
360 register_finishing_time (HashEntry *entry, int t)
361 {
362         g_assert (entry->finishing_time < 0);
363         entry->finishing_time = t;
364 }
365
366 static gboolean
367 object_is_live (MonoObject **objp)
368 {
369         MonoObject *obj = *objp;
370         MonoObject *fwd = SGEN_OBJECT_IS_FORWARDED (obj);
371         if (fwd) {
372                 *objp = fwd;
373                 return mono_sgen_hash_table_lookup (&hash_table, fwd) == NULL;
374         }
375         if (!mono_sgen_object_is_live (obj))
376                 return FALSE;
377         return mono_sgen_hash_table_lookup (&hash_table, obj) == NULL;
378 }
379
380 static DynArray registered_bridges = DYN_ARRAY_PTR_STATIC_INITIALIZER;
381 static DynArray dfs_stack;
382
383 static int dsf1_passes, dsf2_passes;
384
385
386 #undef HANDLE_PTR
387 #define HANDLE_PTR(ptr,obj)     do {                                    \
388                 MonoObject *dst = (MonoObject*)*(ptr);                  \
389                 if (dst && !object_is_live (&dst)) {                    \
390                         dyn_array_ptr_push (&dfs_stack, obj_entry);     \
391                         dyn_array_ptr_push (&dfs_stack, get_hash_entry (dst, NULL)); \
392                 }                                                       \
393         } while (0)
394
395 static void
396 dfs1 (HashEntry *obj_entry, HashEntry *src)
397 {
398         g_assert (dfs_stack.size == 0);
399
400         dyn_array_ptr_push (&dfs_stack, src);
401         dyn_array_ptr_push (&dfs_stack, obj_entry);
402
403         do {
404                 MonoObject *obj;
405                 char *start;
406                 ++dsf1_passes;
407
408                 obj_entry = dyn_array_ptr_pop (&dfs_stack);
409                 if (obj_entry) {
410                         src = dyn_array_ptr_pop (&dfs_stack);
411
412                         obj = obj_entry->obj;
413                         start = (char*)obj;
414
415                         if (src) {
416                                 //g_print ("link %s -> %s\n", mono_sgen_safe_name (src->obj), mono_sgen_safe_name (obj));
417                                 add_source (obj_entry, src);
418                         } else {
419                                 //g_print ("starting with %s\n", mono_sgen_safe_name (obj));
420                         }
421
422                         if (obj_entry->is_visited)
423                                 continue;
424
425                         obj_entry->is_visited = TRUE;
426
427                         dyn_array_ptr_push (&dfs_stack, obj_entry);
428                         /* NULL marks that the next entry is to be finished */
429                         dyn_array_ptr_push (&dfs_stack, NULL);
430
431 #include "sgen-scan-object.h"
432                 } else {
433                         obj_entry = dyn_array_ptr_pop (&dfs_stack);
434
435                         //g_print ("finish %s\n", mono_sgen_safe_name (obj_entry->obj));
436                         register_finishing_time (obj_entry, current_time++);
437                 }
438         } while (dfs_stack.size > 0);
439 }
440
441 static void
442 scc_add_xref (SCC *src, SCC *dst)
443 {
444         g_assert (src != dst);
445         g_assert (src->index != dst->index);
446
447         if (dyn_array_int_contains (&dst->xrefs, src->index))
448                 return;
449         if (src->num_bridge_entries) {
450                 dyn_array_int_merge_one (&dst->xrefs, src->index);
451         } else {
452                 int i;
453                 dyn_array_int_merge (&dst->xrefs, &src->xrefs);
454                 for (i = 0; i < dst->xrefs.size; ++i)
455                         g_assert (DYN_ARRAY_INT_REF (&dst->xrefs, i) != dst->index);
456         }
457 }
458
459 static void
460 scc_add_entry (SCC *scc, HashEntry *entry)
461 {
462         g_assert (entry->scc_index < 0);
463         entry->scc_index = scc->index;
464         if (entry->is_bridge)
465                 ++scc->num_bridge_entries;
466 }
467
468 static DynArray sccs;
469 static SCC *current_scc;
470
471 static void
472 dfs2 (HashEntry *entry)
473 {
474         int i;
475
476         g_assert (dfs_stack.size == 0);
477
478         dyn_array_ptr_push (&dfs_stack, entry);
479
480         do {
481                 entry = dyn_array_ptr_pop (&dfs_stack);
482                 ++dsf2_passes;
483
484                 if (entry->scc_index >= 0) {
485                         if (entry->scc_index != current_scc->index)
486                                 scc_add_xref (DYN_ARRAY_REF (&sccs, entry->scc_index), current_scc);
487                         continue;
488                 }
489
490                 scc_add_entry (current_scc, entry);
491
492                 for (i = 0; i < entry->srcs.size; ++i)
493                         dyn_array_ptr_push (&dfs_stack, DYN_ARRAY_PTR_REF (&entry->srcs, i));
494         } while (dfs_stack.size > 0);
495 }
496
497 static int
498 compare_hash_entries (const void *ep1, const void *ep2)
499 {
500         HashEntry *e1 = *(HashEntry**)ep1;
501         HashEntry *e2 = *(HashEntry**)ep2;
502         return e2->finishing_time - e1->finishing_time;
503 }
504
505 static unsigned long step_1, step_2, step_3, step_4, step_5, step_6, step_7, step_8;
506 static int fist_pass_links, second_pass_links, sccs_links;
507 static int max_sccs_links = 0;
508
509 void
510 mono_sgen_bridge_register_finalized_object (MonoObject *obj)
511 {
512         g_assert (mono_sgen_need_bridge_processing ());
513
514         if (register_bridge_object (obj))
515                 dyn_array_ptr_push (&registered_bridges, obj);
516 }
517
518 void
519 mono_sgen_bridge_processing_stw_step (void)
520 {
521         int i;
522         SGEN_TV_DECLARE (atv);
523         SGEN_TV_DECLARE (btv);
524
525         if (!registered_bridges.size)
526                 return;
527
528         SGEN_TV_GETTIME (btv);
529
530         /* first DFS pass */
531
532         dyn_array_ptr_init (&dfs_stack);
533         dyn_array_int_init (&merge_array);
534
535         current_time = 0;
536         for (i = 0; i < registered_bridges.size; ++i)
537                 dfs1 (get_hash_entry (DYN_ARRAY_PTR_REF (&registered_bridges, i), NULL), NULL);
538
539         SGEN_TV_GETTIME (atv);
540         step_2 = SGEN_TV_ELAPSED (btv, atv);
541 }
542
543 void
544 mono_sgen_bridge_processing_finish (void)
545 {
546         int i, j;
547         int num_sccs, num_xrefs;
548         int max_entries, max_xrefs;
549         int hash_table_size, sccs_size;
550         MonoObject *obj;
551         HashEntry *entry;
552         int num_registered_bridges;
553         HashEntry **all_entries;
554         MonoGCBridgeSCC **api_sccs;
555         MonoGCBridgeXRef *api_xrefs;
556         SGEN_TV_DECLARE (atv);
557         SGEN_TV_DECLARE (btv);
558
559         if (!registered_bridges.size)
560                 return;
561
562         SGEN_TV_GETTIME (atv);
563
564         /* alloc and fill array of all entries */
565
566         all_entries = mono_sgen_alloc_internal_dynamic (sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA);
567
568         j = 0;
569         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
570                 g_assert (entry->finishing_time >= 0);
571                 all_entries [j++] = entry;
572                 fist_pass_links += entry->srcs.size;
573         } SGEN_HASH_TABLE_FOREACH_END;
574         g_assert (j == hash_table.num_entries);
575         hash_table_size = hash_table.num_entries;
576
577         /* sort array according to decreasing finishing time */
578
579         qsort (all_entries, hash_table.num_entries, sizeof (HashEntry*), compare_hash_entries);
580
581         SGEN_TV_GETTIME (btv);
582         step_3 = SGEN_TV_ELAPSED (atv, btv);
583
584         /* second DFS pass */
585
586         dyn_array_init (&sccs, sizeof (SCC));
587         for (i = 0; i < hash_table.num_entries; ++i) {
588                 HashEntry *entry = all_entries [i];
589                 if (entry->scc_index < 0) {
590                         int index = sccs.size;
591                         current_scc = dyn_array_add (&sccs);
592                         current_scc->index = index;
593                         current_scc->num_bridge_entries = 0;
594                         current_scc->api_index = -1;
595                         dyn_array_int_init (&current_scc->xrefs);
596
597                         dfs2 (entry);
598                 }
599         }
600
601         sccs_size = sccs.size;
602
603         for (i = 0; i < hash_table.num_entries; ++i) {
604                 HashEntry *entry = all_entries [i];
605                 second_pass_links += entry->srcs.size;
606         }
607
608         SGEN_TV_GETTIME (atv);
609         step_4 = SGEN_TV_ELAPSED (btv, atv);
610
611         //g_print ("%d sccs\n", sccs.size);
612
613         dyn_array_uninit (&dfs_stack);
614
615         /* init data for callback */
616
617         num_sccs = 0;
618         for (i = 0; i < sccs.size; ++i) {
619                 SCC *scc = DYN_ARRAY_REF (&sccs, i);
620                 g_assert (scc->index == i);
621                 if (scc->num_bridge_entries)
622                         ++num_sccs;
623                 sccs_links += scc->xrefs.size;
624                 max_sccs_links = MAX (max_sccs_links, scc->xrefs.size);
625         }
626
627         api_sccs = mono_sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC*) * num_sccs, INTERNAL_MEM_BRIDGE_DATA);
628         num_xrefs = 0;
629         j = 0;
630         for (i = 0; i < sccs.size; ++i) {
631                 SCC *scc = DYN_ARRAY_REF (&sccs, i);
632                 if (!scc->num_bridge_entries)
633                         continue;
634
635                 api_sccs [j] = mono_sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC) + sizeof (MonoObject*) * scc->num_bridge_entries, INTERNAL_MEM_BRIDGE_DATA);
636                 api_sccs [j]->num_objs = scc->num_bridge_entries;
637                 scc->num_bridge_entries = 0;
638                 scc->api_index = j++;
639
640                 num_xrefs += scc->xrefs.size;
641         }
642
643         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
644                 if (entry->is_bridge) {
645                         SCC *scc = DYN_ARRAY_REF (&sccs, entry->scc_index);
646                         api_sccs [scc->api_index]->objs [scc->num_bridge_entries++] = entry->obj;
647                 }
648         } SGEN_HASH_TABLE_FOREACH_END;
649
650         api_xrefs = mono_sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeXRef) * num_xrefs, INTERNAL_MEM_BRIDGE_DATA);
651         j = 0;
652         for (i = 0; i < sccs.size; ++i) {
653                 int k;
654                 SCC *scc = DYN_ARRAY_REF (&sccs, i);
655                 if (!scc->num_bridge_entries)
656                         continue;
657                 for (k = 0; k < scc->xrefs.size; ++k) {
658                         SCC *src_scc = DYN_ARRAY_REF (&sccs, DYN_ARRAY_INT_REF (&scc->xrefs, k));
659                         if (!src_scc->num_bridge_entries)
660                                 continue;
661                         api_xrefs [j].src_scc_index = src_scc->api_index;
662                         api_xrefs [j].dst_scc_index = scc->api_index;
663                         ++j;
664                 }
665         }
666
667         SGEN_TV_GETTIME (btv);
668         step_5 = SGEN_TV_ELAPSED (atv, btv);
669
670         /* free data */
671
672         j = 0;
673         max_entries = max_xrefs = 0;
674         for (i = 0; i < sccs.size; ++i) {
675                 SCC *scc = DYN_ARRAY_REF (&sccs, i);
676                 if (scc->num_bridge_entries)
677                         ++j;
678                 if (scc->num_bridge_entries > max_entries)
679                         max_entries = scc->num_bridge_entries;
680                 if (scc->xrefs.size > max_xrefs)
681                         max_xrefs = scc->xrefs.size;
682                 dyn_array_uninit (&scc->xrefs);
683
684         }
685         dyn_array_uninit (&sccs);
686
687         mono_sgen_free_internal_dynamic (all_entries, sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA);
688
689         free_data ();
690         /* Empty the registered bridges array */
691         num_registered_bridges = registered_bridges.size;
692         registered_bridges.size = 0;
693
694         SGEN_TV_GETTIME (atv);
695         step_6 = SGEN_TV_ELAPSED (btv, atv);
696
697         //g_print ("%d sccs containing bridges - %d max bridge objects - %d max xrefs\n", j, max_entries, max_xrefs);
698
699         /* callback */
700
701         bridge_callbacks.cross_references (num_sccs, api_sccs, num_xrefs, api_xrefs);
702
703 /*Release for finalization those objects we no longer care. */
704         SGEN_TV_GETTIME (btv);
705         step_7 = SGEN_TV_ELAPSED (atv, btv);
706
707         for (i = 0; i < num_sccs; ++i) {
708                 if (!api_sccs [i]->objs [0])
709                         continue;
710                 for (j = 0; j < api_sccs [i]->num_objs; ++j)
711                         mono_sgen_mark_bridge_object (api_sccs [i]->objs [j]);
712         }
713
714         /* free callback data */
715
716         for (i = 0; i < num_sccs; ++i) {
717                 mono_sgen_free_internal_dynamic (api_sccs [i],
718                                 sizeof (MonoGCBridgeSCC) + sizeof (MonoObject*) * api_sccs [i]->num_objs,
719                                 INTERNAL_MEM_BRIDGE_DATA);
720         }
721         mono_sgen_free_internal_dynamic (api_sccs, sizeof (MonoGCBridgeSCC*) * num_sccs, INTERNAL_MEM_BRIDGE_DATA);
722
723         mono_sgen_free_internal_dynamic (api_xrefs, sizeof (MonoGCBridgeXRef) * num_xrefs, INTERNAL_MEM_BRIDGE_DATA);
724
725         SGEN_TV_GETTIME (atv);
726         step_8 = SGEN_TV_ELAPSED (btv, atv);
727
728         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC, "GC_BRIDGE num-objects %d num_hash_entries %d sccs size %d init %.2fms df1 %.2fms sort %.2fms dfs2 %.2fms setup-cb %.2fms free-data %.2fms user-cb %.2fms clenanup %.2fms links %d/%d/%d/%d dfs passes %d/%d",
729                 num_registered_bridges, hash_table_size, sccs.size,
730                 step_1 / 1000.0f,
731                 step_2 / 1000.0f,
732                 step_3 / 1000.0f,
733                 step_4 / 1000.0f,
734                 step_5 / 1000.0f,
735                 step_6 / 1000.0f,
736                 step_7 / 1000.0f,
737                 step_8 / 1000.f,
738                 fist_pass_links, second_pass_links, sccs_links, max_sccs_links,
739                 dsf1_passes, dsf2_passes);
740
741         step_1 = 0; /* We must cleanup since this value is used as an accumulator. */
742 }
743
744 static const char *bridge_class;
745
746 static gboolean
747 bridge_test_is_bridge_object (MonoObject *obj)
748 {
749         return !strcmp (bridge_class, obj->vtable->klass->name);
750 }
751
752 static void
753 bridge_test_cross_reference (int num_sccs, MonoGCBridgeSCC **sccs, int num_xrefs, MonoGCBridgeXRef *xrefs)
754 {
755         int i;
756         for (i = 0; i < num_sccs; ++i) {
757                 int j;
758         //      g_print ("--- SCC %d\n", i);
759                 for (j = 0; j < sccs [i]->num_objs; ++j) {
760         //              g_print ("  %s\n", mono_sgen_safe_name (sccs [i]->objs [j]));
761                         if (i & 1) /*retain half of the bridged objects */
762                                 sccs [i]->objs [0] = NULL;
763                 }
764         }
765         for (i = 0; i < num_xrefs; ++i) {
766                 g_assert (xrefs [i].src_scc_index >= 0 && xrefs [i].src_scc_index < num_sccs);
767                 g_assert (xrefs [i].dst_scc_index >= 0 && xrefs [i].dst_scc_index < num_sccs);
768         //      g_print ("%d -> %d\n", xrefs [i].src_scc_index, xrefs [i].dst_scc_index);
769         }
770 }
771
772
773 void
774 mono_sgen_register_test_bridge_callbacks (const char *bridge_class_name)
775 {
776         MonoGCBridgeCallbacks callbacks;
777         callbacks.is_bridge_object = bridge_test_is_bridge_object;
778         callbacks.cross_references = bridge_test_cross_reference;
779         mono_gc_register_bridge_callbacks (&callbacks);
780         bridge_class = bridge_class_name;
781 }
782
783 #endif