Merge pull request #1068 from esdrubal/bug18421
[mono.git] / mono / metadata / sgen-new-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 #include <errno.h>
46
47 #include "sgen-gc.h"
48 #include "sgen-bridge.h"
49 #include "sgen-hash-table.h"
50 #include "sgen-qsort.h"
51 #include "tabledefs.h"
52 #include "utils/mono-logger-internal.h"
53 #include "utils/mono-time.h"
54 #include "utils/mono-compiler.h"
55
56 //#define NEW_XREFS
57 #ifdef NEW_XREFS
58 //#define TEST_NEW_XREFS
59 #endif
60
61 #if !defined(NEW_XREFS) || defined(TEST_NEW_XREFS)
62 #define OLD_XREFS
63 #endif
64
65 #ifdef NEW_XREFS
66 #define XREFS new_xrefs
67 #else
68 #define XREFS old_xrefs
69 #endif
70
71 typedef struct {
72         int size;
73         int capacity;           /* if negative, data points to another DynArray's data */
74         char *data;
75 } DynArray;
76
77 /*Specializations*/
78
79 typedef struct {
80         DynArray array;
81 } DynIntArray;
82
83 typedef struct {
84         DynArray array;
85 } DynPtrArray;
86
87 typedef struct {
88         DynArray array;
89 } DynSCCArray;
90
91
92 /*
93  * FIXME: Optimizations:
94  *
95  * Don't allocate a scrs array for just one source.  Most objects have
96  * just one source, so use the srcs pointer itself.
97  */
98 typedef struct _HashEntry {
99         gboolean is_bridge;
100
101         union {
102                 struct {
103                         guint32 is_visited : 1;
104                         guint32 finishing_time : 31;
105                         struct _HashEntry *forwarded_to;
106                 } dfs1;
107                 struct {
108                         int scc_index;
109                 } dfs2;
110         } v;
111
112         DynPtrArray srcs;
113 } HashEntry;
114
115 typedef struct {
116         HashEntry entry;
117         double weight;
118 } HashEntryWithAccounting;
119
120 typedef struct _SCC {
121         int index;
122         int api_index;
123         int num_bridge_entries;
124         gboolean flag;
125         /*
126          * New and old xrefs are typically mutually exclusive.  Only when TEST_NEW_XREFS is
127          * enabled we do both, and compare the results.  This should only be done for
128          * debugging, obviously.
129          */
130 #ifdef OLD_XREFS
131         DynIntArray old_xrefs;          /* these are incoming, not outgoing */
132 #endif
133 #ifdef NEW_XREFS
134         DynIntArray new_xrefs;
135 #endif
136 } SCC;
137
138 static SgenHashTable hash_table = SGEN_HASH_TABLE_INIT (INTERNAL_MEM_BRIDGE_HASH_TABLE, INTERNAL_MEM_BRIDGE_HASH_TABLE_ENTRY, sizeof (HashEntry), mono_aligned_addr_hash, NULL);
139
140 static guint32 current_time;
141
142 static gboolean bridge_accounting_enabled = FALSE;
143
144 static SgenBridgeProcessor *bridge_processor;
145
146 /* Core functions */
147 /* public */
148
149 /* private */
150
151 static void
152 dyn_array_init (DynArray *da)
153 {
154         da->size = 0;
155         da->capacity = 0;
156         da->data = NULL;
157 }
158
159 static void
160 dyn_array_uninit (DynArray *da, int elem_size)
161 {
162         if (da->capacity < 0) {
163                 dyn_array_init (da);
164                 return;
165         }
166
167         if (da->capacity == 0)
168                 return;
169
170         sgen_free_internal_dynamic (da->data, elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA);
171         da->data = NULL;
172 }
173
174 static void
175 dyn_array_empty (DynArray *da)
176 {
177         if (da->capacity < 0)
178                 dyn_array_init (da);
179         else
180                 da->size = 0;
181 }
182
183 static void
184 dyn_array_ensure_capacity (DynArray *da, int capacity, int elem_size)
185 {
186         int old_capacity = da->capacity;
187         char *new_data;
188
189         g_assert (capacity > 0);
190
191         if (capacity <= old_capacity)
192                 return;
193
194         if (old_capacity <= 0)
195                 da->capacity = 2;
196         while (capacity > da->capacity)
197                 da->capacity *= 2;
198
199         new_data = sgen_alloc_internal_dynamic (elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA, TRUE);
200         memcpy (new_data, da->data, elem_size * da->size);
201         if (old_capacity > 0)
202                 sgen_free_internal_dynamic (da->data, elem_size * old_capacity, INTERNAL_MEM_BRIDGE_DATA);
203         da->data = new_data;
204 }
205
206 static gboolean
207 dyn_array_is_copy (DynArray *da)
208 {
209         return da->capacity < 0;
210 }
211
212 static void
213 dyn_array_ensure_independent (DynArray *da, int elem_size)
214 {
215         if (!dyn_array_is_copy (da))
216                 return;
217         dyn_array_ensure_capacity (da, da->size, elem_size);
218         g_assert (da->capacity > 0);
219 }
220
221 static void*
222 dyn_array_add (DynArray *da, int elem_size)
223 {
224         void *p;
225
226         dyn_array_ensure_capacity (da, da->size + 1, elem_size);
227
228         p = da->data + da->size * elem_size;
229         ++da->size;
230         return p;
231 }
232
233 static void
234 dyn_array_copy (DynArray *dst, DynArray *src, int elem_size)
235 {
236         dyn_array_uninit (dst, elem_size);
237
238         if (src->size == 0)
239                 return;
240
241         dst->size = src->size;
242         dst->capacity = -1;
243         dst->data = src->data;
244 }
245
246 /* int */
247 static void
248 dyn_array_int_init (DynIntArray *da)
249 {
250         dyn_array_init (&da->array);
251 }
252
253 static void
254 dyn_array_int_uninit (DynIntArray *da)
255 {
256         dyn_array_uninit (&da->array, sizeof (int));
257 }
258
259 static int
260 dyn_array_int_size (DynIntArray *da)
261 {
262         return da->array.size;
263 }
264
265 static void
266 dyn_array_int_empty (DynIntArray *da)
267 {
268         dyn_array_empty (&da->array);
269 }
270
271 static void
272 dyn_array_int_add (DynIntArray *da, int x)
273 {
274         int *p = dyn_array_add (&da->array, sizeof (int));
275         *p = x;
276 }
277
278 static int
279 dyn_array_int_get (DynIntArray *da, int x)
280 {
281         return ((int*)da->array.data)[x];
282 }
283
284 static void
285 dyn_array_int_set (DynIntArray *da, int idx, int val)
286 {
287         ((int*)da->array.data)[idx] = val;
288 }
289
290 static void
291 dyn_array_int_ensure_capacity (DynIntArray *da, int capacity)
292 {
293         dyn_array_ensure_capacity (&da->array, capacity, sizeof (int));
294 }
295
296 static void
297 dyn_array_int_ensure_independent (DynIntArray *da)
298 {
299         dyn_array_ensure_independent (&da->array, sizeof (int));
300 }
301
302 static void
303 dyn_array_int_copy (DynIntArray *dst, DynIntArray *src)
304 {
305         dyn_array_copy (&dst->array, &src->array, sizeof (int));
306 }
307
308 static gboolean
309 dyn_array_int_is_copy (DynIntArray *da)
310 {
311         return dyn_array_is_copy (&da->array);
312 }
313
314 /* ptr */
315
316 static void
317 dyn_array_ptr_init (DynPtrArray *da)
318 {
319         dyn_array_init (&da->array);
320 }
321
322 static void
323 dyn_array_ptr_uninit (DynPtrArray *da)
324 {
325         if (da->array.capacity == 1)
326                 dyn_array_ptr_init (da);
327         else
328                 dyn_array_uninit (&da->array, sizeof (void*));
329 }
330
331 static int
332 dyn_array_ptr_size (DynPtrArray *da)
333 {
334         return da->array.size;
335 }
336
337 static void
338 dyn_array_ptr_empty (DynPtrArray *da)
339 {
340         dyn_array_empty (&da->array);
341 }
342
343 static void*
344 dyn_array_ptr_get (DynPtrArray *da, int x)
345 {
346         if (da->array.capacity == 1) {
347                 g_assert (x == 0);
348                 return da->array.data;
349         }
350         return ((void**)da->array.data)[x];
351 }
352
353 static void
354 dyn_array_ptr_add (DynPtrArray *da, void *ptr)
355 {
356         void **p;
357
358         if (da->array.capacity == 0) {
359                 da->array.capacity = 1;
360                 da->array.size = 1;
361                 p = (void**)&da->array.data;
362         } else if (da->array.capacity == 1) {
363                 void *ptr0 = da->array.data;
364                 void **p0;
365                 dyn_array_init (&da->array);
366                 p0 = dyn_array_add (&da->array, sizeof (void*));
367                 *p0 = ptr0;
368                 p = dyn_array_add (&da->array, sizeof (void*));
369         } else {
370                 p = dyn_array_add (&da->array, sizeof (void*));
371         }
372         *p = ptr;
373 }
374
375 #define dyn_array_ptr_push dyn_array_ptr_add
376
377 static void*
378 dyn_array_ptr_pop (DynPtrArray *da)
379 {
380         int size = da->array.size;
381         void *p;
382         g_assert (size > 0);
383         if (da->array.capacity == 1) {
384                 p = dyn_array_ptr_get (da, 0);
385                 dyn_array_init (&da->array);
386         } else {
387                 g_assert (da->array.capacity > 1);
388                 dyn_array_ensure_independent (&da->array, sizeof (void*));
389                 p = dyn_array_ptr_get (da, size - 1);
390                 --da->array.size;
391         }
392         return p;
393 }
394
395 /*SCC */
396
397 static void
398 dyn_array_scc_init (DynSCCArray *da)
399 {
400         dyn_array_init (&da->array);
401 }
402
403 static void
404 dyn_array_scc_uninit (DynSCCArray *da)
405 {
406         dyn_array_uninit (&da->array, sizeof (SCC));
407 }
408
409 static int
410 dyn_array_scc_size (DynSCCArray *da)
411 {
412         return da->array.size;
413 }
414
415 static SCC*
416 dyn_array_scc_add (DynSCCArray *da)
417 {
418         return dyn_array_add (&da->array, sizeof (SCC));
419 }
420
421 static SCC*
422 dyn_array_scc_get_ptr (DynSCCArray *da, int x)
423 {
424         return &((SCC*)da->array.data)[x];
425 }
426
427 /* Merge code*/
428
429 static DynIntArray merge_array;
430
431 static gboolean
432 dyn_array_int_contains (DynIntArray *da, int x)
433 {
434         int i;
435         for (i = 0; i < dyn_array_int_size (da); ++i)
436                 if (dyn_array_int_get (da, i) == x)
437                         return TRUE;
438         return FALSE;
439 }
440
441 static void
442 enable_accounting (void)
443 {
444         SgenHashTable table = SGEN_HASH_TABLE_INIT (INTERNAL_MEM_BRIDGE_HASH_TABLE, INTERNAL_MEM_BRIDGE_HASH_TABLE_ENTRY, sizeof (HashEntryWithAccounting), mono_aligned_addr_hash, NULL);
445         bridge_accounting_enabled = TRUE;
446         hash_table = table;
447 }
448
449 static MonoGCBridgeObjectKind
450 class_kind (MonoClass *class)
451 {
452         MonoGCBridgeObjectKind res = bridge_callbacks.bridge_class_kind (class);
453
454         /* If it's a bridge, nothing we can do about it. */
455         if (res == GC_BRIDGE_TRANSPARENT_BRIDGE_CLASS || res == GC_BRIDGE_OPAQUE_BRIDGE_CLASS)
456                 return res;
457
458         /* Non bridge classes with no pointers will never point to a bridge, so we can savely ignore them. */
459         if (!class->has_references) {
460                 SGEN_LOG (6, "class %s is opaque\n", class->name);
461                 return GC_BRIDGE_OPAQUE_CLASS;
462         }
463
464         /* Some arrays can be ignored */
465         if (class->rank == 1) {
466                 MonoClass *elem_class = class->element_class;
467
468                 /* FIXME the bridge check can be quite expensive, cache it at the class level. */
469                 /* An array of a sealed type that is not a bridge will never get to a bridge */
470                 if ((elem_class->flags & TYPE_ATTRIBUTE_SEALED) && !elem_class->has_references && !bridge_callbacks.bridge_class_kind (elem_class)) {
471                         SGEN_LOG (6, "class %s is opaque\n", class->name);
472                         return GC_BRIDGE_OPAQUE_CLASS;
473                 }
474         }
475
476         return GC_BRIDGE_TRANSPARENT_CLASS;
477 }
478
479 static HashEntry*
480 get_hash_entry (MonoObject *obj, gboolean *existing)
481 {
482         HashEntry *entry = sgen_hash_table_lookup (&hash_table, obj);
483         HashEntry new_entry;
484
485         if (entry) {
486                 if (existing)
487                         *existing = TRUE;
488                 return entry;
489         }
490         if (existing)
491                 *existing = FALSE;
492
493         memset (&new_entry, 0, sizeof (HashEntry));
494
495         dyn_array_ptr_init (&new_entry.srcs);
496         new_entry.v.dfs1.finishing_time = 0;
497
498         sgen_hash_table_replace (&hash_table, obj, &new_entry, NULL);
499
500         return sgen_hash_table_lookup (&hash_table, obj);
501 }
502
503 static void
504 add_source (HashEntry *entry, HashEntry *src)
505 {
506         dyn_array_ptr_add (&entry->srcs, src);
507 }
508
509 static void
510 free_data (void)
511 {
512         MonoObject *obj;
513         HashEntry *entry;
514         int total_srcs = 0;
515         int max_srcs = 0;
516
517         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
518                 int entry_size = dyn_array_ptr_size (&entry->srcs);
519                 total_srcs += entry_size;
520                 if (entry_size > max_srcs)
521                         max_srcs = entry_size;
522                 dyn_array_ptr_uninit (&entry->srcs);
523         } SGEN_HASH_TABLE_FOREACH_END;
524
525         sgen_hash_table_clean (&hash_table);
526
527         dyn_array_int_uninit (&merge_array);
528         //g_print ("total srcs %d - max %d\n", total_srcs, max_srcs);
529 }
530
531 static HashEntry*
532 register_bridge_object (MonoObject *obj)
533 {
534         HashEntry *entry = get_hash_entry (obj, NULL);
535         entry->is_bridge = TRUE;
536         return entry;
537 }
538
539 static void
540 register_finishing_time (HashEntry *entry, guint32 t)
541 {
542         g_assert (entry->v.dfs1.finishing_time == 0);
543         /* finishing_time has 31 bits, so it must be within signed int32 range. */
544         g_assert (t > 0 && t <= G_MAXINT32);
545         entry->v.dfs1.finishing_time = t;
546 }
547
548 static int ignored_objects;
549
550 static gboolean
551 is_opaque_object (MonoObject *obj)
552 {
553         if ((obj->vtable->gc_bits & SGEN_GC_BIT_BRIDGE_OPAQUE_OBJECT) == SGEN_GC_BIT_BRIDGE_OPAQUE_OBJECT) {
554                 SGEN_LOG (6, "ignoring %s\n", obj->vtable->klass->name);
555                 ++ignored_objects;
556                 return TRUE;
557         }
558         return FALSE;
559 }
560
561 static gboolean
562 object_needs_expansion (MonoObject **objp)
563 {
564         MonoObject *obj = *objp;
565         MonoObject *fwd = SGEN_OBJECT_IS_FORWARDED (obj);
566         if (fwd) {
567                 *objp = fwd;
568                 if (is_opaque_object (fwd))
569                         return FALSE;
570                 return sgen_hash_table_lookup (&hash_table, fwd) != NULL;
571         }
572         if (is_opaque_object (obj))
573                 return FALSE;
574         if (!sgen_object_is_live (obj))
575                 return TRUE;
576         return sgen_hash_table_lookup (&hash_table, obj) != NULL;
577 }
578
579 static HashEntry*
580 follow_forward (HashEntry *entry)
581 {
582         while (entry->v.dfs1.forwarded_to) {
583                 HashEntry *next = entry->v.dfs1.forwarded_to;
584                 if (next->v.dfs1.forwarded_to)
585                         entry->v.dfs1.forwarded_to = next->v.dfs1.forwarded_to;
586                 entry = next;
587         }
588         return entry;
589 }
590
591 static DynPtrArray registered_bridges;
592 static DynPtrArray dfs_stack;
593
594 static int dfs1_passes, dfs2_passes;
595
596 /*
597  * DFS1 maintains a stack, where each two entries are effectively one entry.  (FIXME:
598  * Optimize this via pointer tagging.)  There are two different types of entries:
599  *
600  * entry, src: entry needs to be expanded via scanning, and linked to from src
601  * NULL, entry: entry has already been expanded and needs to be finished
602  */
603
604 #undef HANDLE_PTR
605 #define HANDLE_PTR(ptr,obj)     do {                                    \
606                 MonoObject *dst = (MonoObject*)*(ptr);                  \
607                 if (dst && object_needs_expansion (&dst)) {                     \
608                         ++num_links;                                    \
609                         dyn_array_ptr_push (&dfs_stack, obj_entry);     \
610                         dyn_array_ptr_push (&dfs_stack, follow_forward (get_hash_entry (dst, NULL))); \
611                 }                                                       \
612         } while (0)
613
614 static void
615 dfs1 (HashEntry *obj_entry)
616 {
617         HashEntry *src;
618         g_assert (dyn_array_ptr_size (&dfs_stack) == 0);
619
620         dyn_array_ptr_push (&dfs_stack, NULL);
621         dyn_array_ptr_push (&dfs_stack, obj_entry);
622
623         do {
624                 MonoObject *obj;
625                 char *start;
626                 ++dfs1_passes;
627
628                 obj_entry = dyn_array_ptr_pop (&dfs_stack);
629                 if (obj_entry) {
630                         /* obj_entry needs to be expanded */
631                         src = dyn_array_ptr_pop (&dfs_stack);
632                         if (src)
633                                 g_assert (!src->v.dfs1.forwarded_to);
634
635                         obj_entry = follow_forward (obj_entry);
636
637                 again:
638                         g_assert (!obj_entry->v.dfs1.forwarded_to);
639                         obj = sgen_hash_table_key_for_value_pointer (obj_entry);
640                         start = (char*)obj;
641
642                         if (!obj_entry->v.dfs1.is_visited) {
643                                 int num_links = 0;
644
645                                 obj_entry->v.dfs1.is_visited = 1;
646
647                                 /* push the finishing entry on the stack */
648                                 dyn_array_ptr_push (&dfs_stack, obj_entry);
649                                 dyn_array_ptr_push (&dfs_stack, NULL);
650
651 #include "sgen-scan-object.h"
652
653                                 /*
654                                  * We can remove non-bridge objects with a single outgoing
655                                  * link by forwarding links going to it.
656                                  *
657                                  * This is the first time we've encountered this object, so
658                                  * no links to it have yet been added.  We'll keep it that
659                                  * way by setting the forward pointer, and instead of
660                                  * continuing processing this object, we start over with the
661                                  * object it points to.
662                                  */
663                                 if (!obj_entry->is_bridge && num_links == 1) {
664                                         HashEntry *dst_entry = dyn_array_ptr_pop (&dfs_stack);
665                                         HashEntry *obj_entry_again = dyn_array_ptr_pop (&dfs_stack);
666                                         g_assert (obj_entry_again == obj_entry);
667                                         g_assert (!dst_entry->v.dfs1.forwarded_to);
668                                         if (obj_entry != dst_entry) {
669                                                 obj_entry->v.dfs1.forwarded_to = dst_entry;
670                                                 obj_entry = dst_entry;
671                                         }
672                                         goto again;
673                                 }
674                         }
675
676                         if (src) {
677                                 //g_print ("link %s -> %s\n", sgen_safe_name (src->obj), sgen_safe_name (obj));
678                                 g_assert (!obj_entry->v.dfs1.forwarded_to);
679                                 add_source (obj_entry, src);
680                         } else {
681                                 //g_print ("starting with %s\n", sgen_safe_name (obj));
682                         }
683                 } else {
684                         /* obj_entry needs to be finished */
685
686                         obj_entry = dyn_array_ptr_pop (&dfs_stack);
687
688                         //g_print ("finish %s\n", sgen_safe_name (obj_entry->obj));
689                         register_finishing_time (obj_entry, ++current_time);
690                 }
691         } while (dyn_array_ptr_size (&dfs_stack) > 0);
692 }
693
694 static DynSCCArray sccs;
695 static SCC *current_scc;
696
697 /*
698  * At the end of bridge processing we need to end up with an (acyclyc) graph of bridge
699  * object SCCs, where the links between the nodes (each one an SCC) in that graph represent
700  * the presence of a direct or indirect link between those SCCs.  An example:
701  *
702  *                       D
703  *                       |
704  *                       v
705  *        A -> B -> c -> e -> F
706  *
707  * A, B, D and F are SCCs that contain bridge objects, c and e don't contain bridge objects.
708  * The graph we need to produce from this is:
709  *
710  *                  D
711  *                  |
712  *                  v
713  *        A -> B -> F
714  *
715  * Note that we don't need to produce an edge from A to F.  It's sufficient that F is
716  * indirectly reachable from A.
717  *
718  * The old algorithm would create a set, for each SCC, of bridge SCCs that can reach it,
719  * directly or indirectly, by merging the ones sets for those that reach it directly.  The
720  * sets it would build up are these:
721  *
722  *   A: {}
723  *   B: {A}
724  *   c: {B}
725  *   D: {}
726  *   e: {B,D}
727  *   F: {B,D}
728  *
729  * The merge operations on these sets turned out to be huge time sinks.
730  *
731  * The new algorithm proceeds in two passes: During DFS2, it only builds up the sets of SCCs
732  * that directly point to each SCC:
733  *
734  *   A: {}
735  *   B: {A}
736  *   c: {B}
737  *   D: {}
738  *   e: {c,D}
739  *   F: {e}
740  *
741  * This is the adjacency list for the SCC graph, in other words.  In a separate step
742  * afterwards, it does a depth-first traversal of that graph, for each bridge node, to get
743  * to the final list.  It uses a flag to avoid traversing any node twice.
744  */
745 static void
746 scc_add_xref (SCC *src, SCC *dst)
747 {
748         g_assert (src != dst);
749         g_assert (src->index != dst->index);
750
751 #ifdef NEW_XREFS
752         /*
753          * FIXME: Right now we don't even unique the direct ancestors, but just add to the
754          * list.  Doing a containment check slows this algorithm down to almost the speed of
755          * the old one.  Use the flag instead!
756          */
757         dyn_array_int_add (&dst->new_xrefs, src->index);
758 #endif
759
760 #ifdef OLD_XREFS
761         if (dyn_array_int_is_copy (&dst->old_xrefs)) {
762                 int i;
763                 dyn_array_int_ensure_independent (&dst->old_xrefs);
764                 for (i = 0; i < dyn_array_int_size (&dst->old_xrefs); ++i) {
765                         int j = dyn_array_int_get (&dst->old_xrefs, i);
766                         SCC *bridge_scc = dyn_array_scc_get_ptr (&sccs, j);
767                         g_assert (!bridge_scc->flag);
768                         bridge_scc->flag = TRUE;
769                 }
770         }
771
772         if (src->num_bridge_entries) {
773                 if (src->flag)
774                         return;
775                 src->flag = TRUE;
776                 dyn_array_int_add (&dst->old_xrefs, src->index);
777         } else if (dyn_array_int_size (&dst->old_xrefs) == 0) {
778                 dyn_array_int_copy (&dst->old_xrefs, &src->old_xrefs);
779         } else {
780                 int i;
781                 for (i = 0; i < dyn_array_int_size (&src->old_xrefs); ++i) {
782                         int j = dyn_array_int_get (&src->old_xrefs, i);
783                         SCC *bridge_scc = dyn_array_scc_get_ptr (&sccs, j);
784                         g_assert (bridge_scc->num_bridge_entries);
785                         if (!bridge_scc->flag) {
786                                 bridge_scc->flag = TRUE;
787                                 dyn_array_int_add (&dst->old_xrefs, j);
788                         }
789                 }
790         }
791 #endif
792 }
793
794 static void
795 scc_add_entry (SCC *scc, HashEntry *entry)
796 {
797         g_assert (entry->v.dfs2.scc_index < 0);
798         entry->v.dfs2.scc_index = scc->index;
799         if (entry->is_bridge)
800                 ++scc->num_bridge_entries;
801 }
802
803 static void
804 dfs2 (HashEntry *entry)
805 {
806         int i;
807
808         g_assert (dyn_array_ptr_size (&dfs_stack) == 0);
809
810         dyn_array_ptr_push (&dfs_stack, entry);
811
812         do {
813                 entry = dyn_array_ptr_pop (&dfs_stack);
814                 ++dfs2_passes;
815
816                 if (entry->v.dfs2.scc_index >= 0) {
817                         if (entry->v.dfs2.scc_index != current_scc->index)
818                                 scc_add_xref (dyn_array_scc_get_ptr (&sccs, entry->v.dfs2.scc_index), current_scc);
819                         continue;
820                 }
821
822                 scc_add_entry (current_scc, entry);
823
824                 for (i = 0; i < dyn_array_ptr_size (&entry->srcs); ++i)
825                         dyn_array_ptr_push (&dfs_stack, dyn_array_ptr_get (&entry->srcs, i));
826         } while (dyn_array_ptr_size (&dfs_stack) > 0);
827
828 #ifdef OLD_XREFS
829         /* If xrefs is a copy then we haven't set a single flag. */
830         if (dyn_array_int_is_copy (&current_scc->old_xrefs))
831                 return;
832         for (i = 0; i < dyn_array_int_size (&current_scc->old_xrefs); ++i) {
833                 int j = dyn_array_int_get (&current_scc->old_xrefs, i);
834                 SCC *bridge_scc = dyn_array_scc_get_ptr (&sccs, j);
835                 g_assert (bridge_scc->flag);
836                 bridge_scc->flag = FALSE;
837         }
838 #endif
839 }
840
841 #ifdef NEW_XREFS
842 static void
843 gather_xrefs (SCC *scc)
844 {
845         int i;
846         for (i = 0; i < dyn_array_int_size (&scc->new_xrefs); ++i) {
847                 int index = dyn_array_int_get (&scc->new_xrefs, i);
848                 SCC *src = dyn_array_scc_get_ptr (&sccs, index);
849                 if (src->flag)
850                         continue;
851                 src->flag = TRUE;
852                 if (src->num_bridge_entries)
853                         dyn_array_int_add (&merge_array, index);
854                 else
855                         gather_xrefs (src);
856         }
857 }
858
859 static void
860 reset_flags (SCC *scc)
861 {
862         int i;
863         for (i = 0; i < dyn_array_int_size (&scc->new_xrefs); ++i) {
864                 int index = dyn_array_int_get (&scc->new_xrefs, i);
865                 SCC *src = dyn_array_scc_get_ptr (&sccs, index);
866                 if (!src->flag)
867                         continue;
868                 src->flag = FALSE;
869                 if (!src->num_bridge_entries)
870                         reset_flags (src);
871         }
872 }
873 #endif
874
875 static char *dump_prefix = NULL;
876
877 static void
878 dump_graph (void)
879 {
880         static int counter = 0;
881
882         MonoObject *obj;
883         HashEntry *entry;
884         int prefix_len = strlen (dump_prefix);
885         char *filename = alloca(prefix_len + 64);
886         FILE *file;
887         int edge_id = 0;
888
889         sprintf (filename, "%s.%d.gexf", dump_prefix, counter++);
890         file = fopen (filename, "w");
891
892         if (file == NULL) {
893                 fprintf (stderr, "Warning: Could not open bridge dump file `%s` for writing: %s\n", filename, strerror (errno));
894                 return;
895         }
896
897         fprintf (file, "<gexf xmlns=\"http://www.gexf.net/1.2draft\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd\" version=\"1.2\">\n");
898
899         fprintf (file, "<graph defaultedgetype=\"directed\">\n"
900                         "<attributes class=\"node\">\n"
901                         "<attribute id=\"0\" title=\"class\" type=\"string\"/>\n"
902                         "<attribute id=\"1\" title=\"bridge\" type=\"boolean\"/>\n"
903                         "</attributes>\n");
904
905         fprintf (file, "<nodes>\n");
906         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
907                 MonoVTable *vt = (MonoVTable*) SGEN_LOAD_VTABLE (obj);
908                 fprintf (file, "<node id=\"%p\"><attvalues><attvalue for=\"0\" value=\"%s.%s\"/><attvalue for=\"1\" value=\"%s\"/></attvalues></node>\n",
909                                 obj, vt->klass->name_space, vt->klass->name, entry->is_bridge ? "true" : "false");
910         } SGEN_HASH_TABLE_FOREACH_END;
911         fprintf (file, "</nodes>\n");
912
913         fprintf (file, "<edges>\n");
914         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
915                 int i;
916                 for (i = 0; i < dyn_array_ptr_size (&entry->srcs); ++i) {
917                         HashEntry *src = dyn_array_ptr_get (&entry->srcs, i);
918                         fprintf (file, "<edge id=\"%d\" source=\"%p\" target=\"%p\"/>\n", edge_id++, sgen_hash_table_key_for_value_pointer (src), obj);
919                 }
920         } SGEN_HASH_TABLE_FOREACH_END;
921         fprintf (file, "</edges>\n");
922
923         fprintf (file, "</graph></gexf>\n");
924
925         fclose (file);
926 }
927
928 static void
929 set_dump_prefix (const char *prefix)
930 {
931         dump_prefix = strdup (prefix);
932 }
933
934 static int
935 compare_hash_entries (const HashEntry *e1, const HashEntry *e2)
936 {
937         /* We can cast to signed int here because finishing_time has only 31 bits. */
938         return (gint32)e2->v.dfs1.finishing_time - (gint32)e1->v.dfs1.finishing_time;
939 }
940
941 DEF_QSORT_INLINE(hash_entries, HashEntry*, compare_hash_entries)
942
943 static unsigned long step_1, step_2, step_3, step_4, step_5, step_6;
944 static int fist_pass_links, second_pass_links, sccs_links;
945 static int max_sccs_links = 0;
946
947 static void
948 register_finalized_object (MonoObject *obj)
949 {
950         g_assert (sgen_need_bridge_processing ());
951         dyn_array_ptr_push (&registered_bridges, obj);
952 }
953
954 static void
955 reset_data (void)
956 {
957         dyn_array_ptr_empty (&registered_bridges);
958 }
959
960 static void
961 processing_stw_step (void)
962 {
963         int i;
964         int bridge_count;
965         MonoObject *obj;
966         HashEntry *entry;
967         SGEN_TV_DECLARE (atv);
968         SGEN_TV_DECLARE (btv);
969
970         if (!dyn_array_ptr_size (&registered_bridges))
971                 return;
972
973         SGEN_TV_GETTIME (btv);
974
975         /* first DFS pass */
976
977         dyn_array_ptr_init (&dfs_stack);
978         dyn_array_int_init (&merge_array);
979
980         current_time = 0;
981         /*
982         First we insert all bridges into the hash table and then we do dfs1.
983
984         It must be done in 2 steps since the bridge arrays doesn't come in reverse topological order,
985         which means that we can have entry N pointing to entry N + 1.
986
987         If we dfs1 entry N before N + 1 is registered we'll not consider N + 1 for this bridge
988         pass and not create the required xref between the two.
989         */
990         bridge_count = dyn_array_ptr_size (&registered_bridges);
991         for (i = 0; i < bridge_count ; ++i)
992                 register_bridge_object (dyn_array_ptr_get (&registered_bridges, i));
993
994         for (i = 0; i < bridge_count; ++i)
995                 dfs1 (get_hash_entry (dyn_array_ptr_get (&registered_bridges, i), NULL));
996
997         /* Remove all forwarded objects. */
998         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
999                 if (entry->v.dfs1.forwarded_to) {
1000                         g_assert (dyn_array_ptr_size (&entry->srcs) == 0);
1001                         SGEN_HASH_TABLE_FOREACH_REMOVE (TRUE);
1002                         continue;
1003                 }
1004         } SGEN_HASH_TABLE_FOREACH_END;
1005
1006         SGEN_TV_GETTIME (atv);
1007         step_2 = SGEN_TV_ELAPSED (btv, atv);
1008
1009         if (dump_prefix)
1010                 dump_graph ();
1011 }
1012
1013 static int num_registered_bridges, hash_table_size;
1014
1015 static void
1016 processing_build_callback_data (int generation)
1017 {
1018         int i, j;
1019         int num_sccs, num_xrefs;
1020         int max_entries, max_xrefs;
1021         int sccs_size;
1022         MonoObject *obj;
1023         HashEntry *entry;
1024         HashEntry **all_entries;
1025         MonoGCBridgeSCC **api_sccs;
1026         MonoGCBridgeXRef *api_xrefs;
1027         SGEN_TV_DECLARE (atv);
1028         SGEN_TV_DECLARE (btv);
1029
1030         g_assert (bridge_processor->num_sccs == 0 && bridge_processor->num_xrefs == 0);
1031         g_assert (!bridge_processor->api_sccs && !bridge_processor->api_xrefs);
1032
1033         if (!dyn_array_ptr_size (&registered_bridges))
1034                 return;
1035
1036         g_assert (bridge_processing_in_progress);
1037
1038         SGEN_TV_GETTIME (atv);
1039
1040         /* alloc and fill array of all entries */
1041
1042         all_entries = sgen_alloc_internal_dynamic (sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA, TRUE);
1043
1044         j = 0;
1045         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
1046                 g_assert (entry->v.dfs1.finishing_time > 0);
1047                 all_entries [j++] = entry;
1048                 fist_pass_links += dyn_array_ptr_size (&entry->srcs);
1049         } SGEN_HASH_TABLE_FOREACH_END;
1050         g_assert (j == hash_table.num_entries);
1051         hash_table_size = hash_table.num_entries;
1052
1053         /* sort array according to decreasing finishing time */
1054         qsort_hash_entries (all_entries, hash_table.num_entries);
1055
1056         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
1057                 entry->v.dfs2.scc_index = -1;
1058         } SGEN_HASH_TABLE_FOREACH_END;
1059
1060         SGEN_TV_GETTIME (btv);
1061         step_3 = SGEN_TV_ELAPSED (atv, btv);
1062
1063         /* second DFS pass */
1064
1065         dyn_array_scc_init (&sccs);
1066         for (i = 0; i < hash_table.num_entries; ++i) {
1067                 HashEntry *entry = all_entries [i];
1068                 if (entry->v.dfs2.scc_index < 0) {
1069                         int index = dyn_array_scc_size (&sccs);
1070                         current_scc = dyn_array_scc_add (&sccs);
1071                         current_scc->index = index;
1072                         current_scc->num_bridge_entries = 0;
1073 #ifdef NEW_XREFS
1074                         current_scc->flag = FALSE;
1075                         dyn_array_int_init (&current_scc->new_xrefs);
1076 #endif
1077 #ifdef OLD_XREFS
1078                         dyn_array_int_init (&current_scc->old_xrefs);
1079 #endif
1080                         current_scc->api_index = -1;
1081
1082                         dfs2 (entry);
1083
1084 #ifdef NEW_XREFS
1085                         /*
1086                          * If a node has only one incoming edge, we just copy the source's
1087                          * xrefs array, effectively removing the source from the graph.
1088                          * This takes care of long linked lists.
1089                          */
1090                         if (!current_scc->num_bridge_entries && dyn_array_int_size (&current_scc->new_xrefs) == 1) {
1091                                 SCC *src;
1092                                 j = dyn_array_int_get (&current_scc->new_xrefs, 0);
1093                                 src = dyn_array_scc_get_ptr (&sccs, j);
1094                                 if (src->num_bridge_entries)
1095                                         dyn_array_int_set (&current_scc->new_xrefs, 0, j);
1096                                 else
1097                                         dyn_array_int_copy (&current_scc->new_xrefs, &src->new_xrefs);
1098                         }
1099 #endif
1100                 }
1101         }
1102
1103 #ifdef NEW_XREFS
1104 #ifdef TEST_NEW_XREFS
1105         for (j = 0; j < dyn_array_scc_size (&sccs); ++j) {
1106                 SCC *scc = dyn_array_scc_get_ptr (&sccs, j);
1107                 g_assert (!scc->flag);
1108         }
1109 #endif
1110
1111         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1112                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1113                 g_assert (scc->index == i);
1114                 if (!scc->num_bridge_entries)
1115                         continue;
1116
1117                 dyn_array_int_empty (&merge_array);
1118                 gather_xrefs (scc);
1119                 reset_flags (scc);
1120                 dyn_array_int_copy (&scc->new_xrefs, &merge_array);
1121                 dyn_array_int_ensure_independent (&scc->new_xrefs);
1122
1123 #ifdef TEST_NEW_XREFS
1124                 for (j = 0; j < dyn_array_scc_size (&sccs); ++j) {
1125                         SCC *scc = dyn_array_scc_get_ptr (&sccs, j);
1126                         g_assert (!scc->flag);
1127                 }
1128 #endif
1129         }
1130
1131 #ifdef TEST_NEW_XREFS
1132         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1133                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1134                 g_assert (scc->index == i);
1135                 if (!scc->num_bridge_entries)
1136                         continue;
1137
1138                 g_assert (dyn_array_int_size (&scc->new_xrefs) == dyn_array_int_size (&scc->old_xrefs));
1139                 for (j = 0; j < dyn_array_int_size (&scc->new_xrefs); ++j)
1140                         g_assert (dyn_array_int_contains (&scc->old_xrefs, dyn_array_int_get (&scc->new_xrefs, j)));
1141         }
1142 #endif
1143 #endif
1144
1145         /*
1146          * Compute the weight of each object. The weight of an object is its size plus the size of all
1147          * objects it points do. When the an object is pointed by multiple objects we distribute it's weight
1148          * equally among them. This distribution gives a rough estimate of the real impact of making the object
1149          * go away.
1150          *
1151          * The reasoning for this model is that complex graphs with single roots will have a bridge with very high
1152          * value in comparison to others.
1153          *
1154          * The all_entries array has all objects topologically sorted. To correctly propagate the weights it must be
1155          * done in reverse topological order - so we calculate the weight of the pointed-to objects before processing
1156          * pointer-from objects.
1157          *
1158          * We log those objects in the opposite order for no particular reason. The other constrain is that it should use the same
1159          * direction as the other logging loop that records live/dead information.
1160          */
1161         if (bridge_accounting_enabled) {
1162                 for (i = hash_table.num_entries - 1; i >= 0; --i) {
1163                         double w;
1164                         HashEntryWithAccounting *entry = (HashEntryWithAccounting*)all_entries [i];
1165
1166                         entry->weight += (double)sgen_safe_object_get_size (sgen_hash_table_key_for_value_pointer (entry));
1167                         w = entry->weight / dyn_array_ptr_size (&entry->entry.srcs);
1168                         for (j = 0; j < dyn_array_ptr_size (&entry->entry.srcs); ++j) {
1169                                 HashEntryWithAccounting *other = (HashEntryWithAccounting *)dyn_array_ptr_get (&entry->entry.srcs, j);
1170                                 other->weight += w;
1171                         }
1172                 }
1173                 for (i = 0; i < hash_table.num_entries; ++i) {
1174                         HashEntryWithAccounting *entry = (HashEntryWithAccounting*)all_entries [i];
1175                         if (entry->entry.is_bridge) {
1176                                 MonoObject *obj = sgen_hash_table_key_for_value_pointer (entry);
1177                                 MonoClass *klass = ((MonoVTable*)SGEN_LOAD_VTABLE (obj))->klass;
1178                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC, "OBJECT %s::%s (%p) weight %f", klass->name_space, klass->name, obj, entry->weight);
1179                         }
1180                 }
1181         }
1182
1183         sccs_size = dyn_array_scc_size (&sccs);
1184
1185         for (i = 0; i < hash_table.num_entries; ++i) {
1186                 HashEntry *entry = all_entries [i];
1187                 second_pass_links += dyn_array_ptr_size (&entry->srcs);
1188         }
1189
1190         SGEN_TV_GETTIME (atv);
1191         step_4 = SGEN_TV_ELAPSED (btv, atv);
1192
1193         //g_print ("%d sccs\n", sccs.size);
1194
1195         dyn_array_ptr_uninit (&dfs_stack);
1196
1197         /* init data for callback */
1198
1199         num_sccs = 0;
1200         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1201                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1202                 g_assert (scc->index == i);
1203                 if (scc->num_bridge_entries)
1204                         ++num_sccs;
1205                 sccs_links += dyn_array_int_size (&scc->XREFS);
1206                 max_sccs_links = MAX (max_sccs_links, dyn_array_int_size (&scc->XREFS));
1207         }
1208
1209         api_sccs = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC*) * num_sccs, INTERNAL_MEM_BRIDGE_DATA, TRUE);
1210         num_xrefs = 0;
1211         j = 0;
1212         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1213                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1214                 if (!scc->num_bridge_entries)
1215                         continue;
1216
1217                 api_sccs [j] = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC) + sizeof (MonoObject*) * scc->num_bridge_entries, INTERNAL_MEM_BRIDGE_DATA, TRUE);
1218                 api_sccs [j]->is_alive = FALSE;
1219                 api_sccs [j]->num_objs = scc->num_bridge_entries;
1220                 scc->num_bridge_entries = 0;
1221                 scc->api_index = j++;
1222
1223                 num_xrefs += dyn_array_int_size (&scc->XREFS);
1224         }
1225
1226         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
1227                 if (entry->is_bridge) {
1228                         SCC *scc = dyn_array_scc_get_ptr (&sccs, entry->v.dfs2.scc_index);
1229                         api_sccs [scc->api_index]->objs [scc->num_bridge_entries++] = sgen_hash_table_key_for_value_pointer (entry);
1230                 }
1231         } SGEN_HASH_TABLE_FOREACH_END;
1232
1233         api_xrefs = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeXRef) * num_xrefs, INTERNAL_MEM_BRIDGE_DATA, TRUE);
1234         j = 0;
1235         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1236                 int k;
1237                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1238                 if (!scc->num_bridge_entries)
1239                         continue;
1240                 for (k = 0; k < dyn_array_int_size (&scc->XREFS); ++k) {
1241                         SCC *src_scc = dyn_array_scc_get_ptr (&sccs, dyn_array_int_get (&scc->XREFS, k));
1242                         if (!src_scc->num_bridge_entries)
1243                                 continue;
1244                         api_xrefs [j].src_scc_index = src_scc->api_index;
1245                         api_xrefs [j].dst_scc_index = scc->api_index;
1246                         ++j;
1247                 }
1248         }
1249
1250         SGEN_TV_GETTIME (btv);
1251         step_5 = SGEN_TV_ELAPSED (atv, btv);
1252
1253         /* free data */
1254
1255         j = 0;
1256         max_entries = max_xrefs = 0;
1257         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
1258                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
1259                 if (scc->num_bridge_entries)
1260                         ++j;
1261                 if (scc->num_bridge_entries > max_entries)
1262                         max_entries = scc->num_bridge_entries;
1263                 if (dyn_array_int_size (&scc->XREFS) > max_xrefs)
1264                         max_xrefs = dyn_array_int_size (&scc->XREFS);
1265 #ifdef NEW_XREFS
1266                 dyn_array_int_uninit (&scc->new_xrefs);
1267 #endif
1268 #ifdef OLD_XREFS
1269                 dyn_array_int_uninit (&scc->old_xrefs);
1270 #endif
1271
1272         }
1273         dyn_array_scc_uninit (&sccs);
1274
1275         sgen_free_internal_dynamic (all_entries, sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA);
1276
1277         free_data ();
1278         /* Empty the registered bridges array */
1279         num_registered_bridges = dyn_array_ptr_size (&registered_bridges);
1280         dyn_array_ptr_empty (&registered_bridges);
1281
1282         SGEN_TV_GETTIME (atv);
1283         step_6 = SGEN_TV_ELAPSED (btv, atv);
1284
1285         //g_print ("%d sccs containing bridges - %d max bridge objects - %d max xrefs\n", j, max_entries, max_xrefs);
1286
1287         bridge_processor->num_sccs = num_sccs;
1288         bridge_processor->api_sccs = api_sccs;
1289         bridge_processor->num_xrefs = num_xrefs;
1290         bridge_processor->api_xrefs = api_xrefs;
1291 }
1292
1293 static void
1294 processing_after_callback (int generation)
1295 {
1296         int i, j;
1297         int num_sccs = bridge_processor->num_sccs;
1298         MonoGCBridgeSCC **api_sccs = bridge_processor->api_sccs;
1299
1300         if (bridge_accounting_enabled) {
1301                 for (i = 0; i < num_sccs; ++i) {
1302                         for (j = 0; j < api_sccs [i]->num_objs; ++j)
1303                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC,
1304                                         "OBJECT %s (%p) SCC [%d] %s",
1305                                                 sgen_safe_name (api_sccs [i]->objs [j]), api_sccs [i]->objs [j],
1306                                                 i,
1307                                                 api_sccs [i]->is_alive  ? "ALIVE" : "DEAD");
1308                 }
1309         }
1310
1311         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC, "GC_NEW_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 links %d/%d/%d/%d dfs passes %d/%d ignored %d",
1312                 num_registered_bridges, hash_table_size, dyn_array_scc_size (&sccs),
1313                 step_1 / 10000.0f,
1314                 step_2 / 10000.0f,
1315                 step_3 / 10000.0f,
1316                 step_4 / 10000.0f,
1317                 step_5 / 10000.0f,
1318                 step_6 / 10000.0f,
1319                 fist_pass_links, second_pass_links, sccs_links, max_sccs_links,
1320                 dfs1_passes, dfs2_passes, ignored_objects);
1321
1322         step_1 = 0; /* We must cleanup since this value is used as an accumulator. */
1323         fist_pass_links = second_pass_links = sccs_links = max_sccs_links = 0;
1324         dfs1_passes = dfs2_passes = ignored_objects = 0;
1325 }
1326
1327 static void
1328 describe_pointer (MonoObject *obj)
1329 {
1330         HashEntry *entry;
1331         int i;
1332
1333         for (i = 0; i < dyn_array_ptr_size (&registered_bridges); ++i) {
1334                 if (obj == dyn_array_ptr_get (&registered_bridges, i)) {
1335                         printf ("Pointer is a registered bridge object.\n");
1336                         break;
1337                 }
1338         }
1339
1340         entry = sgen_hash_table_lookup (&hash_table, obj);
1341         if (!entry)
1342                 return;
1343
1344         printf ("Bridge hash table entry %p:\n", entry);
1345         printf ("  is bridge: %d\n", (int)entry->is_bridge);
1346         printf ("  is visited: %d\n", (int)entry->v.dfs1.is_visited);
1347 }
1348
1349 void
1350 sgen_new_bridge_init (SgenBridgeProcessor *collector)
1351 {
1352         collector->reset_data = reset_data;
1353         collector->processing_stw_step = processing_stw_step;
1354         collector->processing_build_callback_data = processing_build_callback_data;
1355         collector->processing_after_callback = processing_after_callback;
1356         collector->class_kind = class_kind;
1357         collector->register_finalized_object = register_finalized_object;
1358         collector->describe_pointer = describe_pointer;
1359         collector->enable_accounting = enable_accounting;
1360         collector->set_dump_prefix = set_dump_prefix;
1361
1362         bridge_processor = collector;
1363 }
1364
1365 #endif