Merge pull request #1633 from BrzVlad/fix-w32-pinvoke
[mono.git] / mono / metadata / sgen-old-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 "sgen-hash-table.h"
49 #include "sgen-qsort.h"
50 #include "utils/mono-logger-internal.h"
51 #include "utils/mono-time.h"
52 #include "utils/mono-compiler.h"
53
54
55 typedef struct {
56         int size;
57         int capacity;
58         char *data;
59 } DynArray;
60
61 /*Specializations*/
62
63 typedef struct {
64         DynArray array;
65 } DynIntArray;
66
67 typedef struct {
68         DynArray array;
69 } DynPtrArray;
70
71 typedef struct {
72         DynArray array;
73 } DynSCCArray;
74
75
76 /*
77  * FIXME: Optimizations:
78  *
79  * Don't allocate a scrs array for just one source.  Most objects have
80  * just one source, so use the srcs pointer itself.
81  */
82 typedef struct _HashEntry {
83         MonoObject *obj;        /* This is a duplicate - it's already stored in the hash table */
84
85         gboolean is_bridge;
86         gboolean is_visited;
87
88         int finishing_time;
89
90         DynPtrArray srcs;
91
92         int scc_index;
93 } HashEntry;
94
95 typedef struct {
96         HashEntry entry;
97         double weight;
98 } HashEntryWithAccounting;
99
100 typedef struct _SCC {
101         int index;
102         int api_index;
103         int num_bridge_entries;
104         DynIntArray xrefs;              /* these are incoming, not outgoing */
105 } SCC;
106
107 static SgenHashTable hash_table = SGEN_HASH_TABLE_INIT (INTERNAL_MEM_OLD_BRIDGE_HASH_TABLE, INTERNAL_MEM_OLD_BRIDGE_HASH_TABLE_ENTRY, sizeof (HashEntry), mono_aligned_addr_hash, NULL);
108
109 static int current_time;
110
111 static gboolean bridge_accounting_enabled = FALSE;
112
113 static SgenBridgeProcessor *bridge_processor;
114
115 /* Core functions */
116 /* public */
117
118 /* private */
119
120 static void
121 dyn_array_init (DynArray *da)
122 {
123         da->size = 0;
124         da->capacity = 0;
125         da->data = NULL;
126 }
127
128 static void
129 dyn_array_uninit (DynArray *da, int elem_size)
130 {
131         if (da->capacity <= 0)
132                 return;
133
134         sgen_free_internal_dynamic (da->data, elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA);
135         da->data = NULL;
136 }
137
138 static void
139 dyn_array_ensure_capacity (DynArray *da, int capacity, int elem_size)
140 {
141         int old_capacity = da->capacity;
142         char *new_data;
143
144         if (capacity <= old_capacity)
145                 return;
146
147         if (da->capacity == 0)
148                 da->capacity = 2;
149         while (capacity > da->capacity)
150                 da->capacity *= 2;
151
152         new_data = sgen_alloc_internal_dynamic (elem_size * da->capacity, INTERNAL_MEM_BRIDGE_DATA, TRUE);
153         memcpy (new_data, da->data, elem_size * da->size);
154         sgen_free_internal_dynamic (da->data, elem_size * old_capacity, INTERNAL_MEM_BRIDGE_DATA);
155         da->data = new_data;
156 }
157
158 static void*
159 dyn_array_add (DynArray *da, int elem_size)
160 {
161         void *p;
162
163         dyn_array_ensure_capacity (da, da->size + 1, elem_size);
164
165         p = da->data + da->size * elem_size;
166         ++da->size;
167         return p;
168 }
169
170 /* int */
171 static void
172 dyn_array_int_init (DynIntArray *da)
173 {
174         dyn_array_init (&da->array);
175 }
176
177 static void
178 dyn_array_int_uninit (DynIntArray *da)
179 {
180         dyn_array_uninit (&da->array, sizeof (int));
181 }
182
183 static int
184 dyn_array_int_size (DynIntArray *da)
185 {
186         return da->array.size;
187 }
188
189 static void
190 dyn_array_int_set_size (DynIntArray *da, int size)
191 {
192         da->array.size = size;
193 }
194
195 static void
196 dyn_array_int_add (DynIntArray *da, int x)
197 {
198         int *p = dyn_array_add (&da->array, sizeof (int));
199         *p = x;
200 }
201
202 static int
203 dyn_array_int_get (DynIntArray *da, int x)
204 {
205         return ((int*)da->array.data)[x];
206 }
207
208 static void
209 dyn_array_int_set (DynIntArray *da, int idx, int val)
210 {
211         ((int*)da->array.data)[idx] = val;
212 }
213
214 static void
215 dyn_array_int_ensure_capacity (DynIntArray *da, int capacity)
216 {
217         dyn_array_ensure_capacity (&da->array, capacity, sizeof (int));
218 }
219
220 static void
221 dyn_array_int_set_all (DynIntArray *dst, DynIntArray *src)
222 {
223         dyn_array_int_ensure_capacity (dst, src->array.size);
224         memcpy (dst->array.data, src->array.data, src->array.size * sizeof (int));
225         dst->array.size = src->array.size;
226 }
227
228 /* ptr */
229
230 static void
231 dyn_array_ptr_init (DynPtrArray *da)
232 {
233         dyn_array_init (&da->array);
234 }
235
236 static void
237 dyn_array_ptr_uninit (DynPtrArray *da)
238 {
239         dyn_array_uninit (&da->array, sizeof (void*));
240 }
241
242 static int
243 dyn_array_ptr_size (DynPtrArray *da)
244 {
245         return da->array.size;
246 }
247
248 static void
249 dyn_array_ptr_set_size (DynPtrArray *da, int size)
250 {
251         da->array.size = size;
252 }
253
254 static void*
255 dyn_array_ptr_get (DynPtrArray *da, int x)
256 {
257         return ((void**)da->array.data)[x];
258 }
259
260 static void
261 dyn_array_ptr_add (DynPtrArray *da, void *ptr)
262 {
263         void **p = dyn_array_add (&da->array, sizeof (void*));
264         *p = ptr;
265 }
266
267 #define dyn_array_ptr_push dyn_array_ptr_add
268
269 static void*
270 dyn_array_ptr_pop (DynPtrArray *da)
271 {
272         void *p;
273         int size = da->array.size;
274         g_assert (size > 0);
275         p = dyn_array_ptr_get (da, size - 1);
276         --da->array.size;
277         return p;
278 }
279
280 /*SCC */
281
282 static void
283 dyn_array_scc_init (DynSCCArray *da)
284 {
285         dyn_array_init (&da->array);
286 }
287
288 static void
289 dyn_array_scc_uninit (DynSCCArray *da)
290 {
291         dyn_array_uninit (&da->array, sizeof (SCC));
292 }
293
294 static int
295 dyn_array_scc_size (DynSCCArray *da)
296 {
297         return da->array.size;
298 }
299
300 static SCC*
301 dyn_array_scc_add (DynSCCArray *da)
302 {
303         return dyn_array_add (&da->array, sizeof (SCC));
304 }
305
306 static SCC*
307 dyn_array_scc_get_ptr (DynSCCArray *da, int x)
308 {
309         return &((SCC*)da->array.data)[x];
310 }
311
312 /* Merge code*/
313
314 static DynIntArray merge_array;
315
316 static gboolean
317 dyn_array_int_contains (DynIntArray *da, int x)
318 {
319         int i;
320         for (i = 0; i < dyn_array_int_size (da); ++i)
321                 if (dyn_array_int_get (da, i) == x)
322                         return TRUE;
323         return FALSE;
324 }
325
326
327 static void
328 dyn_array_int_merge (DynIntArray *dst, DynIntArray *src)
329 {
330         int i, j;
331
332         dyn_array_int_ensure_capacity (&merge_array, dyn_array_int_size (dst) + dyn_array_int_size (src));
333         dyn_array_int_set_size (&merge_array, 0);
334
335         for (i = j = 0; i < dyn_array_int_size (dst) || j < dyn_array_int_size (src); ) {
336                 if (i < dyn_array_int_size (dst) && j < dyn_array_int_size (src)) {
337                         int a = dyn_array_int_get (dst, i); 
338                         int b = dyn_array_int_get (src, j); 
339                         if (a < b) {
340                                 dyn_array_int_add (&merge_array, a);
341                                 ++i;
342                         } else if (a == b) {
343                                 dyn_array_int_add (&merge_array, a);
344                                 ++i;
345                                 ++j;    
346                         } else {
347                                 dyn_array_int_add (&merge_array, b);
348                                 ++j;
349                         }
350                 } else if (i < dyn_array_int_size (dst)) {
351                         dyn_array_int_add (&merge_array, dyn_array_int_get (dst, i));
352                         ++i;
353                 } else {
354                         dyn_array_int_add (&merge_array, dyn_array_int_get (src, j));
355                         ++j;
356                 }
357         }
358
359         if (dyn_array_int_size (&merge_array) > dyn_array_int_size (dst)) {
360                 dyn_array_int_set_all (dst, &merge_array);
361         }
362 }
363
364 static void
365 dyn_array_int_merge_one (DynIntArray *array, int value)
366 {
367         int i;
368         int tmp;
369         int size = dyn_array_int_size (array);
370
371         for (i = 0; i < size; ++i) {
372                 if (dyn_array_int_get (array, i) == value)
373                         return;
374                 else if (dyn_array_int_get (array, i) > value)
375                         break;
376         }
377
378         dyn_array_int_ensure_capacity (array, size + 1);
379
380         if (i < size) {
381                 tmp = dyn_array_int_get (array, i);
382                 for (; i < size; ++i) {
383                         dyn_array_int_set (array, i, value);
384                         value = tmp;
385                         tmp = dyn_array_int_get (array, i + 1);
386                 }
387                 dyn_array_int_set (array, size, value);
388         } else {
389                 dyn_array_int_set (array, size, value);
390         }
391
392         dyn_array_int_set_size (array, size + 1);
393 }
394
395
396 static void
397 enable_accounting (void)
398 {
399         SgenHashTable table = SGEN_HASH_TABLE_INIT (INTERNAL_MEM_BRIDGE_HASH_TABLE, INTERNAL_MEM_BRIDGE_HASH_TABLE_ENTRY, sizeof (HashEntryWithAccounting), mono_aligned_addr_hash, NULL);
400         bridge_accounting_enabled = TRUE;
401         hash_table = table;
402 }
403
404 static MonoGCBridgeObjectKind
405 class_kind (MonoClass *class)
406 {
407         return bridge_callbacks.bridge_class_kind (class);
408 }
409
410 static HashEntry*
411 get_hash_entry (MonoObject *obj, gboolean *existing)
412 {
413         HashEntry *entry = sgen_hash_table_lookup (&hash_table, obj);
414         HashEntry new_entry;
415
416         if (entry) {
417                 if (existing)
418                         *existing = TRUE;
419                 return entry;
420         }
421         if (existing)
422                 *existing = FALSE;
423
424         memset (&new_entry, 0, sizeof (HashEntry));
425
426         new_entry.obj = obj;
427         dyn_array_ptr_init (&new_entry.srcs);
428         new_entry.finishing_time = -1;
429         new_entry.scc_index = -1;
430
431         sgen_hash_table_replace (&hash_table, obj, &new_entry, NULL);
432
433         return sgen_hash_table_lookup (&hash_table, obj);
434 }
435
436 static void
437 add_source (HashEntry *entry, HashEntry *src)
438 {
439         dyn_array_ptr_add (&entry->srcs, src);
440 }
441
442 static void
443 free_data (void)
444 {
445         MonoObject *obj G_GNUC_UNUSED;
446         HashEntry *entry;
447         int total_srcs = 0;
448         int max_srcs = 0;
449
450         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
451                 int entry_size = dyn_array_ptr_size (&entry->srcs);
452                 total_srcs += entry_size;
453                 if (entry_size > max_srcs)
454                         max_srcs = entry_size;
455                 dyn_array_ptr_uninit (&entry->srcs);
456         } SGEN_HASH_TABLE_FOREACH_END;
457
458         sgen_hash_table_clean (&hash_table);
459
460         dyn_array_int_uninit (&merge_array);
461         //g_print ("total srcs %d - max %d\n", total_srcs, max_srcs);
462 }
463
464 static HashEntry*
465 register_bridge_object (MonoObject *obj)
466 {
467         HashEntry *entry = get_hash_entry (obj, NULL);
468         entry->is_bridge = TRUE;
469         return entry;
470 }
471
472 static void
473 register_finishing_time (HashEntry *entry, int t)
474 {
475         g_assert (entry->finishing_time < 0);
476         entry->finishing_time = t;
477 }
478
479 static gboolean
480 object_is_live (MonoObject **objp)
481 {
482         MonoObject *obj = *objp;
483         MonoObject *fwd = SGEN_OBJECT_IS_FORWARDED (obj);
484         if (fwd) {
485                 *objp = fwd;
486                 return sgen_hash_table_lookup (&hash_table, fwd) == NULL;
487         }
488         if (!sgen_object_is_live (obj))
489                 return FALSE;
490         return sgen_hash_table_lookup (&hash_table, obj) == NULL;
491 }
492
493 static DynPtrArray registered_bridges;
494 static DynPtrArray dfs_stack;
495
496 static int dfs1_passes, dfs2_passes;
497
498
499 #undef HANDLE_PTR
500 #define HANDLE_PTR(ptr,obj)     do {                                    \
501                 MonoObject *dst = (MonoObject*)*(ptr);                  \
502                 if (dst && !object_is_live (&dst)) {                    \
503                         dyn_array_ptr_push (&dfs_stack, obj_entry);     \
504                         dyn_array_ptr_push (&dfs_stack, get_hash_entry (dst, NULL)); \
505                 }                                                       \
506         } while (0)
507
508 static void
509 dfs1 (HashEntry *obj_entry)
510 {
511         HashEntry *src;
512         g_assert (dyn_array_ptr_size (&dfs_stack) == 0);
513
514         dyn_array_ptr_push (&dfs_stack, NULL);
515         dyn_array_ptr_push (&dfs_stack, obj_entry);
516
517         do {
518                 MonoObject *obj;
519                 char *start;
520                 ++dfs1_passes;
521
522                 obj_entry = dyn_array_ptr_pop (&dfs_stack);
523                 if (obj_entry) {
524                         mword desc;
525                         src = dyn_array_ptr_pop (&dfs_stack);
526
527                         obj = obj_entry->obj;
528                         start = (char*)obj;
529                         desc = sgen_obj_get_descriptor_safe (start);
530
531                         if (src) {
532                                 //g_print ("link %s -> %s\n", sgen_safe_name (src->obj), sgen_safe_name (obj));
533                                 add_source (obj_entry, src);
534                         } else {
535                                 //g_print ("starting with %s\n", sgen_safe_name (obj));
536                         }
537
538                         if (obj_entry->is_visited)
539                                 continue;
540
541                         obj_entry->is_visited = TRUE;
542
543                         dyn_array_ptr_push (&dfs_stack, obj_entry);
544                         /* NULL marks that the next entry is to be finished */
545                         dyn_array_ptr_push (&dfs_stack, NULL);
546
547 #include "sgen-scan-object.h"
548                 } else {
549                         obj_entry = dyn_array_ptr_pop (&dfs_stack);
550
551                         //g_print ("finish %s\n", sgen_safe_name (obj_entry->obj));
552                         register_finishing_time (obj_entry, current_time++);
553                 }
554         } while (dyn_array_ptr_size (&dfs_stack) > 0);
555 }
556
557 static void
558 scc_add_xref (SCC *src, SCC *dst)
559 {
560         g_assert (src != dst);
561         g_assert (src->index != dst->index);
562
563         if (dyn_array_int_contains (&dst->xrefs, src->index))
564                 return;
565         if (src->num_bridge_entries) {
566                 dyn_array_int_merge_one (&dst->xrefs, src->index);
567         } else {
568                 int i;
569                 dyn_array_int_merge (&dst->xrefs, &src->xrefs);
570                 for (i = 0; i < dyn_array_int_size (&dst->xrefs); ++i)
571                         g_assert (dyn_array_int_get (&dst->xrefs, i) != dst->index);
572         }
573 }
574
575 static void
576 scc_add_entry (SCC *scc, HashEntry *entry)
577 {
578         g_assert (entry->scc_index < 0);
579         entry->scc_index = scc->index;
580         if (entry->is_bridge)
581                 ++scc->num_bridge_entries;
582 }
583
584 static DynSCCArray sccs;
585 static SCC *current_scc;
586
587 static void
588 dfs2 (HashEntry *entry)
589 {
590         int i;
591
592         g_assert (dyn_array_ptr_size (&dfs_stack) == 0);
593
594         dyn_array_ptr_push (&dfs_stack, entry);
595
596         do {
597                 entry = dyn_array_ptr_pop (&dfs_stack);
598                 ++dfs2_passes;
599
600                 if (entry->scc_index >= 0) {
601                         if (entry->scc_index != current_scc->index)
602                                 scc_add_xref (dyn_array_scc_get_ptr (&sccs, entry->scc_index), current_scc);
603                         continue;
604                 }
605
606                 scc_add_entry (current_scc, entry);
607
608                 for (i = 0; i < dyn_array_ptr_size (&entry->srcs); ++i)
609                         dyn_array_ptr_push (&dfs_stack, dyn_array_ptr_get (&entry->srcs, i));
610         } while (dyn_array_ptr_size (&dfs_stack) > 0);
611 }
612
613 static int
614 compare_hash_entries (const HashEntry *e1, const HashEntry *e2)
615 {
616         return e2->finishing_time - e1->finishing_time;
617 }
618
619 DEF_QSORT_INLINE(hash_entries, HashEntry*, compare_hash_entries)
620
621 static unsigned long step_1, step_2, step_3, step_4, step_5, step_6;
622 static int fist_pass_links, second_pass_links, sccs_links;
623 static int max_sccs_links = 0;
624
625 static void
626 register_finalized_object (MonoObject *obj)
627 {
628         g_assert (sgen_need_bridge_processing ());
629         dyn_array_ptr_push (&registered_bridges, obj);
630 }
631
632 static void
633 reset_data (void)
634 {
635         dyn_array_ptr_set_size (&registered_bridges, 0);
636 }
637
638 static void
639 processing_stw_step (void)
640 {
641         int i;
642         int bridge_count;
643         SGEN_TV_DECLARE (atv);
644         SGEN_TV_DECLARE (btv);
645
646         if (!dyn_array_ptr_size (&registered_bridges))
647                 return;
648
649         SGEN_TV_GETTIME (btv);
650
651         /* first DFS pass */
652
653         dyn_array_ptr_init (&dfs_stack);
654         dyn_array_int_init (&merge_array);
655
656         current_time = 0;
657         /*
658         First we insert all bridges into the hash table and then we do dfs1.
659
660         It must be done in 2 steps since the bridge arrays doesn't come in reverse topological order,
661         which means that we can have entry N pointing to entry N + 1.
662
663         If we dfs1 entry N before N + 1 is registered we'll not consider N + 1 for this bridge
664         pass and not create the required xref between the two.
665         */
666         bridge_count = dyn_array_ptr_size (&registered_bridges);
667         for (i = 0; i < bridge_count ; ++i)
668                 register_bridge_object (dyn_array_ptr_get (&registered_bridges, i));
669
670         for (i = 0; i < bridge_count; ++i)
671                 dfs1 (get_hash_entry (dyn_array_ptr_get (&registered_bridges, i), NULL));
672
673         SGEN_TV_GETTIME (atv);
674         step_2 = SGEN_TV_ELAPSED (btv, atv);
675 }
676
677 static int num_registered_bridges, hash_table_size;
678
679 static void
680 processing_build_callback_data (int generation)
681 {
682         int i, j;
683         int num_sccs, num_xrefs;
684         int max_entries, max_xrefs;
685         MonoObject *obj G_GNUC_UNUSED;
686         HashEntry *entry;
687         HashEntry **all_entries;
688         MonoGCBridgeSCC **api_sccs;
689         MonoGCBridgeXRef *api_xrefs;
690         SGEN_TV_DECLARE (atv);
691         SGEN_TV_DECLARE (btv);
692
693         g_assert (bridge_processor->num_sccs == 0 && bridge_processor->num_xrefs == 0);
694         g_assert (!bridge_processor->api_sccs && !bridge_processor->api_xrefs);
695
696         if (!dyn_array_ptr_size (&registered_bridges))
697                 return;
698
699         g_assert (bridge_processing_in_progress);
700
701         SGEN_TV_GETTIME (atv);
702
703         /* alloc and fill array of all entries */
704
705         all_entries = sgen_alloc_internal_dynamic (sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA, TRUE);
706
707         j = 0;
708         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
709                 g_assert (entry->finishing_time >= 0);
710                 all_entries [j++] = entry;
711                 fist_pass_links += dyn_array_ptr_size (&entry->srcs);
712         } SGEN_HASH_TABLE_FOREACH_END;
713         g_assert (j == hash_table.num_entries);
714         hash_table_size = hash_table.num_entries;
715
716         /* sort array according to decreasing finishing time */
717         qsort_hash_entries (all_entries, hash_table.num_entries);
718
719         SGEN_TV_GETTIME (btv);
720         step_3 = SGEN_TV_ELAPSED (atv, btv);
721
722         /* second DFS pass */
723
724         dyn_array_scc_init (&sccs);
725         for (i = 0; i < hash_table.num_entries; ++i) {
726                 HashEntry *entry = all_entries [i];
727                 if (entry->scc_index < 0) {
728                         int index = dyn_array_scc_size (&sccs);
729                         current_scc = dyn_array_scc_add (&sccs);
730                         current_scc->index = index;
731                         current_scc->num_bridge_entries = 0;
732                         current_scc->api_index = -1;
733                         dyn_array_int_init (&current_scc->xrefs);
734
735                         dfs2 (entry);
736                 }
737         }
738
739         /*
740          * Compute the weight of each object. The weight of an object is its size plus the size of all
741          * objects it points do. When the an object is pointed by multiple objects we distribute it's weight
742          * equally among them. This distribution gives a rough estimate of the real impact of making the object
743          * go away.
744          *
745          * The reasoning for this model is that complex graphs with single roots will have a bridge with very high
746          * value in comparison to others.
747          *
748          * The all_entries array has all objects topologically sorted. To correctly propagate the weights it must be
749          * done in reverse topological order - so we calculate the weight of the pointed-to objects before processing
750          * pointer-from objects.
751          *
752          * We log those objects in the opposite order for no particular reason. The other constrain is that it should use the same
753          * direction as the other logging loop that records live/dead information.
754          */
755         if (bridge_accounting_enabled) {
756                 for (i = hash_table.num_entries - 1; i >= 0; --i) {
757                         double w;
758                         HashEntryWithAccounting *entry = (HashEntryWithAccounting*)all_entries [i];
759
760                         entry->weight += (double)sgen_safe_object_get_size (entry->entry.obj);
761                         w = entry->weight / dyn_array_ptr_size (&entry->entry.srcs);
762                         for (j = 0; j < dyn_array_ptr_size (&entry->entry.srcs); ++j) {
763                                 HashEntryWithAccounting *other = (HashEntryWithAccounting *)dyn_array_ptr_get (&entry->entry.srcs, j);
764                                 other->weight += w;
765                         }
766                 }
767                 for (i = 0; i < hash_table.num_entries; ++i) {
768                         HashEntryWithAccounting *entry = (HashEntryWithAccounting*)all_entries [i];
769                         if (entry->entry.is_bridge) {
770                                 MonoClass *klass = ((MonoVTable*)SGEN_LOAD_VTABLE (entry->entry.obj))->klass;
771                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC, "OBJECT %s::%s (%p) weight %f", klass->name_space, klass->name, entry->entry.obj, entry->weight);
772                         }
773                 }
774         }
775
776         for (i = 0; i < hash_table.num_entries; ++i) {
777                 HashEntry *entry = all_entries [i];
778                 second_pass_links += dyn_array_ptr_size (&entry->srcs);
779         }
780
781         SGEN_TV_GETTIME (atv);
782         step_4 = SGEN_TV_ELAPSED (btv, atv);
783
784         //g_print ("%d sccs\n", sccs.size);
785
786         dyn_array_ptr_uninit (&dfs_stack);
787
788         /* init data for callback */
789
790         num_sccs = 0;
791         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
792                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
793                 g_assert (scc->index == i);
794                 if (scc->num_bridge_entries)
795                         ++num_sccs;
796                 sccs_links += dyn_array_int_size (&scc->xrefs);
797                 max_sccs_links = MAX (max_sccs_links, dyn_array_int_size (&scc->xrefs));
798         }
799
800         api_sccs = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC*) * num_sccs, INTERNAL_MEM_BRIDGE_DATA, TRUE);
801         num_xrefs = 0;
802         j = 0;
803         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
804                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
805                 if (!scc->num_bridge_entries)
806                         continue;
807
808                 api_sccs [j] = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeSCC) + sizeof (MonoObject*) * scc->num_bridge_entries, INTERNAL_MEM_BRIDGE_DATA, TRUE);
809                 api_sccs [j]->is_alive = FALSE;
810                 api_sccs [j]->num_objs = scc->num_bridge_entries;
811                 scc->num_bridge_entries = 0;
812                 scc->api_index = j++;
813
814                 num_xrefs += dyn_array_int_size (&scc->xrefs);
815         }
816
817         SGEN_HASH_TABLE_FOREACH (&hash_table, obj, entry) {
818                 if (entry->is_bridge) {
819                         SCC *scc = dyn_array_scc_get_ptr (&sccs, entry->scc_index);
820                         api_sccs [scc->api_index]->objs [scc->num_bridge_entries++] = entry->obj;
821                 }
822         } SGEN_HASH_TABLE_FOREACH_END;
823
824         api_xrefs = sgen_alloc_internal_dynamic (sizeof (MonoGCBridgeXRef) * num_xrefs, INTERNAL_MEM_BRIDGE_DATA, TRUE);
825         j = 0;
826         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
827                 int k;
828                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
829                 if (!scc->num_bridge_entries)
830                         continue;
831                 for (k = 0; k < dyn_array_int_size (&scc->xrefs); ++k) {
832                         SCC *src_scc = dyn_array_scc_get_ptr (&sccs, dyn_array_int_get (&scc->xrefs, k));
833                         if (!src_scc->num_bridge_entries)
834                                 continue;
835                         api_xrefs [j].src_scc_index = src_scc->api_index;
836                         api_xrefs [j].dst_scc_index = scc->api_index;
837                         ++j;
838                 }
839         }
840
841         SGEN_TV_GETTIME (btv);
842         step_5 = SGEN_TV_ELAPSED (atv, btv);
843
844         /* free data */
845
846         j = 0;
847         max_entries = max_xrefs = 0;
848         for (i = 0; i < dyn_array_scc_size (&sccs); ++i) {
849                 SCC *scc = dyn_array_scc_get_ptr (&sccs, i);
850                 if (scc->num_bridge_entries)
851                         ++j;
852                 if (scc->num_bridge_entries > max_entries)
853                         max_entries = scc->num_bridge_entries;
854                 if (dyn_array_int_size (&scc->xrefs) > max_xrefs)
855                         max_xrefs = dyn_array_int_size (&scc->xrefs);
856                 dyn_array_int_uninit (&scc->xrefs);
857
858         }
859         dyn_array_scc_uninit (&sccs);
860
861         sgen_free_internal_dynamic (all_entries, sizeof (HashEntry*) * hash_table.num_entries, INTERNAL_MEM_BRIDGE_DATA);
862
863         free_data ();
864         /* Empty the registered bridges array */
865         num_registered_bridges = dyn_array_ptr_size (&registered_bridges);
866         dyn_array_ptr_set_size (&registered_bridges, 0);
867
868         SGEN_TV_GETTIME (atv);
869         step_6 = SGEN_TV_ELAPSED (btv, atv);
870
871         //g_print ("%d sccs containing bridges - %d max bridge objects - %d max xrefs\n", j, max_entries, max_xrefs);
872
873         bridge_processor->num_sccs = num_sccs;
874         bridge_processor->api_sccs = api_sccs;
875         bridge_processor->num_xrefs = num_xrefs;
876         bridge_processor->api_xrefs = api_xrefs;
877 }
878
879 static void
880 processing_after_callback (int generation)
881 {
882         int i, j;
883         int num_sccs = bridge_processor->num_sccs;
884         MonoGCBridgeSCC **api_sccs = bridge_processor->api_sccs;
885
886         if (bridge_accounting_enabled) {
887                 for (i = 0; i < num_sccs; ++i) {
888                         for (j = 0; j < api_sccs [i]->num_objs; ++j)
889                                 mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC,
890                                         "OBJECT %s (%p) SCC [%d] %s",
891                                                 sgen_safe_name (api_sccs [i]->objs [j]), api_sccs [i]->objs [j],
892                                                 i,
893                                                 api_sccs [i]->is_alive  ? "ALIVE" : "DEAD");
894                 }
895         }
896
897         mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_GC, "GC_OLD_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",
898                 num_registered_bridges, hash_table_size, dyn_array_scc_size (&sccs),
899                 step_1 / 10000.0f,
900                 step_2 / 10000.0f,
901                 step_3 / 10000.0f,
902                 step_4 / 10000.0f,
903                 step_5 / 10000.0f,
904                 step_6 / 10000.0f,
905                 fist_pass_links, second_pass_links, sccs_links, max_sccs_links,
906                 dfs1_passes, dfs2_passes);
907
908         step_1 = 0; /* We must cleanup since this value is used as an accumulator. */
909         fist_pass_links = second_pass_links = sccs_links = max_sccs_links = 0;
910         dfs1_passes = dfs2_passes = 0;
911 }
912
913 static void
914 describe_pointer (MonoObject *obj)
915 {
916         HashEntry *entry;
917         int i;
918
919         for (i = 0; i < dyn_array_ptr_size (&registered_bridges); ++i) {
920                 if (obj == dyn_array_ptr_get (&registered_bridges, i)) {
921                         printf ("Pointer is a registered bridge object.\n");
922                         break;
923                 }
924         }
925
926         entry = sgen_hash_table_lookup (&hash_table, obj);
927         if (!entry)
928                 return;
929
930         printf ("Bridge hash table entry %p:\n", entry);
931         printf ("  is bridge: %d\n", (int)entry->is_bridge);
932         printf ("  is visited: %d\n", (int)entry->is_visited);
933 }
934
935 void
936 sgen_old_bridge_init (SgenBridgeProcessor *collector)
937 {
938         collector->reset_data = reset_data;
939         collector->processing_stw_step = processing_stw_step;
940         collector->processing_build_callback_data = processing_build_callback_data;
941         collector->processing_after_callback = processing_after_callback;
942         collector->class_kind = class_kind;
943         collector->register_finalized_object = register_finalized_object;
944         collector->describe_pointer = describe_pointer;
945         collector->enable_accounting = enable_accounting;
946
947         bridge_processor = collector;
948 }
949
950 #endif