e5028586675d63d25a7861ab7af54555223d0e89
[mono.git] / mono / metadata / sgen-major-copying.c
1 /*
2  * sgen-major-copying.c: Simple generational GC.
3  *
4  * Author:
5  *      Paolo Molaro (lupus@ximian.com)
6  *
7  * Copyright 2005-2010 Novell, Inc (http://www.novell.com)
8  *
9  * Thread start/stop adapted from Boehm's GC:
10  * Copyright (c) 1994 by Xerox Corporation.  All rights reserved.
11  * Copyright (c) 1996 by Silicon Graphics.  All rights reserved.
12  * Copyright (c) 1998 by Fergus Henderson.  All rights reserved.
13  * Copyright (c) 2000-2004 by Hewlett-Packard Company.  All rights reserved.
14  *
15  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
16  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
17  *
18  * Permission is hereby granted to use or copy this program
19  * for any purpose,  provided the above notices are retained on all copies.
20  * Permission to modify the code and to distribute modified code is granted,
21  * provided the above notices are retained, and a notice that the code was
22  * modified is included with the above copyright notice.
23  *
24  *
25  * Copyright 2001-2003 Ximian, Inc
26  * Copyright 2003-2010 Novell, Inc.
27  * 
28  * Permission is hereby granted, free of charge, to any person obtaining
29  * a copy of this software and associated documentation files (the
30  * "Software"), to deal in the Software without restriction, including
31  * without limitation the rights to use, copy, modify, merge, publish,
32  * distribute, sublicense, and/or sell copies of the Software, and to
33  * permit persons to whom the Software is furnished to do so, subject to
34  * the following conditions:
35  * 
36  * The above copyright notice and this permission notice shall be
37  * included in all copies or substantial portions of the Software.
38  * 
39  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
40  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
42  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
43  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
44  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
45  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
46  */
47
48 #include "config.h"
49
50 #ifdef HAVE_SGEN_GC
51
52 #include "utils/mono-counters.h"
53
54 #include "metadata/gc-internal.h"
55 #include "metadata/sgen-gc.h"
56 #include "metadata/sgen-protocol.h"
57 #include "metadata/mono-gc.h"
58 #include "metadata/object-internals.h"
59 #include "metadata/profiler-private.h"
60
61 #define MAJOR_SECTION_SIZE              SGEN_PINNED_CHUNK_SIZE
62 #define BLOCK_FOR_OBJECT(o)             SGEN_PINNED_CHUNK_FOR_PTR ((o))
63 #define MAJOR_SECTION_FOR_OBJECT(o)     ((GCMemSection*)BLOCK_FOR_OBJECT ((o)))
64
65 #define MAJOR_OBJ_IS_IN_TO_SPACE(o)     (MAJOR_SECTION_FOR_OBJECT ((o))->is_to_space)
66
67 static int num_major_sections = 0;
68
69 static GCMemSection *section_list = NULL;
70
71 static SgenPinnedAllocator pinned_allocator;
72
73 static gboolean have_swept;
74
75 /*
76  * used when moving the objects
77  */
78 static char *to_space_bumper = NULL;
79 static char *to_space_top = NULL;
80 static GCMemSection *to_space_section = NULL;
81
82 /* we get this at init */
83 static int nursery_bits;
84 static char *nursery_start;
85 static char *nursery_end;
86
87 #define ptr_in_nursery(p)       (SGEN_PTR_IN_NURSERY ((p), nursery_bits, nursery_start, nursery_end))
88
89 #ifdef HEAVY_STATISTICS
90 static long stat_major_copy_object_failed_forwarded = 0;
91 static long stat_major_copy_object_failed_pinned = 0;
92 static long stat_major_copy_object_failed_large_pinned = 0;
93 static long stat_major_copy_object_failed_to_space = 0;
94 #endif
95
96 static void*
97 major_alloc_heap (mword nursery_size, mword nursery_align, int the_nursery_bits)
98 {
99         if (nursery_align)
100                 nursery_start = sgen_alloc_os_memory_aligned (nursery_size, nursery_align, TRUE);
101         else
102                 nursery_start = sgen_alloc_os_memory (nursery_size, TRUE);
103
104         nursery_end = nursery_start + nursery_size;
105         nursery_bits = the_nursery_bits;
106
107         return nursery_start;
108 }
109
110 static gboolean
111 obj_is_from_pinned_alloc (char *p)
112 {
113         return BLOCK_FOR_OBJECT (p)->role == MEMORY_ROLE_PINNED;
114 }
115
116 static void
117 free_pinned_object (char *obj, size_t size)
118 {
119         sgen_free_pinned (&pinned_allocator, obj, size);
120 }
121
122 /*
123  * Allocate a new section of memory to be used as old generation.
124  */
125 static GCMemSection*
126 alloc_major_section (void)
127 {
128         GCMemSection *section;
129         int scan_starts;
130
131         section = sgen_alloc_os_memory_aligned (MAJOR_SECTION_SIZE, MAJOR_SECTION_SIZE, TRUE);
132         section->next_data = section->data = (char*)section + SGEN_SIZEOF_GC_MEM_SECTION;
133         g_assert (!((mword)section->data & 7));
134         section->size = MAJOR_SECTION_SIZE - SGEN_SIZEOF_GC_MEM_SECTION;
135         section->end_data = section->data + section->size;
136         sgen_update_heap_boundaries ((mword)section->data, (mword)section->end_data);
137         DEBUG (3, fprintf (gc_debug_file, "New major heap section: (%p-%p), total: %ld\n", section->data, section->end_data, mono_gc_get_heap_size ()));
138         scan_starts = (section->size + SGEN_SCAN_START_SIZE - 1) / SGEN_SCAN_START_SIZE;
139         section->scan_starts = sgen_alloc_internal_dynamic (sizeof (char*) * scan_starts, INTERNAL_MEM_SCAN_STARTS);
140         section->num_scan_start = scan_starts;
141         section->block.role = MEMORY_ROLE_GEN1;
142         section->is_to_space = TRUE;
143
144         /* add to the section list */
145         section->block.next = section_list;
146         section_list = section;
147
148         ++num_major_sections;
149
150         return section;
151 }
152
153 static void
154 free_major_section (GCMemSection *section)
155 {
156         DEBUG (3, fprintf (gc_debug_file, "Freed major section %p (%p-%p)\n", section, section->data, section->end_data));
157         sgen_free_internal_dynamic (section->scan_starts,
158                         (section->size + SGEN_SCAN_START_SIZE - 1) / SGEN_SCAN_START_SIZE * sizeof (char*), INTERNAL_MEM_SCAN_STARTS);
159         sgen_free_os_memory (section, MAJOR_SECTION_SIZE);
160
161         --num_major_sections;
162 }
163
164 static void
165 new_to_space_section (void)
166 {
167         /* FIXME: if the current to_space_section is empty, we don't
168            have to allocate a new one */
169
170         to_space_section = alloc_major_section ();
171         to_space_bumper = to_space_section->next_data;
172         to_space_top = to_space_section->end_data;
173 }
174
175 static void
176 to_space_set_next_data (void)
177 {
178         g_assert (to_space_bumper >= to_space_section->next_data && to_space_bumper <= to_space_section->end_data);
179         to_space_section->next_data = to_space_bumper;
180 }
181
182 static void
183 to_space_expand (void)
184 {
185         if (to_space_section) {
186                 g_assert (to_space_top == to_space_section->end_data);
187                 to_space_set_next_data ();
188         }
189
190         new_to_space_section ();
191 }
192
193 static void*
194 major_alloc_object (int size, gboolean has_references)
195 {
196         char *dest = to_space_bumper;
197         /* Make sure we have enough space available */
198         if (dest + size > to_space_top) {
199                 to_space_expand ();
200                 (dest) = to_space_bumper;
201                 DEBUG (8, g_assert (dest + size <= to_space_top));
202         }
203         to_space_bumper += size;
204         DEBUG (8, g_assert (to_space_bumper <= to_space_top));
205         to_space_section->scan_starts [(dest - (char*)to_space_section->data)/SGEN_SCAN_START_SIZE] = dest;
206         return dest;
207 }
208
209 static void
210 unset_to_space (void)
211 {
212         /* between collections the to_space_bumper is invalidated
213            because degraded allocations might occur, so we set it to
214            NULL, just to make it explicit */
215         to_space_bumper = NULL;
216
217         /* don't unset to_space_section if we implement the FIXME in
218            new_to_space_section */
219         to_space_section = NULL;
220 }
221
222 static gboolean
223 major_is_object_live (char *obj)
224 {
225         mword objsize;
226
227         /* nursery */
228         if (ptr_in_nursery (obj))
229                 return FALSE;
230
231         objsize = SGEN_ALIGN_UP (sgen_safe_object_get_size ((MonoObject*)obj));
232
233         /* LOS */
234         if (objsize > SGEN_MAX_SMALL_OBJ_SIZE)
235                 return FALSE;
236
237         /* pinned chunk */
238         if (obj_is_from_pinned_alloc (obj))
239                 return FALSE;
240
241         /* now we know it's in a major heap section */
242         return MAJOR_SECTION_FOR_OBJECT (obj)->is_to_space;
243 }
244
245 /* size is a multiple of ALLOC_ALIGN */
246 static void*
247 major_alloc_small_pinned_obj (size_t size, gboolean has_references)
248 {
249         return sgen_alloc_pinned (&pinned_allocator, size);
250 }
251
252 /*
253  * size is already rounded up and we hold the GC lock.
254  */
255 static void*
256 major_alloc_degraded (MonoVTable *vtable, size_t size)
257 {
258         GCMemSection *section;
259         void **p = NULL;
260         g_assert (size <= SGEN_MAX_SMALL_OBJ_SIZE);
261         HEAVY_STAT (++stat_objects_alloced_degraded);
262         HEAVY_STAT (stat_bytes_alloced_degraded += size);
263         for (section = section_list; section; section = section->block.next) {
264                 if ((section->end_data - section->next_data) >= size) {
265                         p = (void**)section->next_data;
266                         break;
267                 }
268         }
269         if (!p) {
270                 section = alloc_major_section ();
271                 section->is_to_space = FALSE;
272                 /* FIXME: handle OOM */
273                 p = (void**)section->next_data;
274                 sgen_register_major_sections_alloced (1);
275         }
276         section->next_data += size;
277         DEBUG (3, fprintf (gc_debug_file, "Allocated (degraded) object %p, vtable: %p (%s), size: %zd in section %p\n", p, vtable, vtable->klass->name, size, section));
278         *p = vtable;
279         return p;
280 }
281
282 #define pin_major_object        sgen_pin_object
283
284 #include "sgen-major-copy-object.h"
285
286 static void
287 major_copy_or_mark_object (void **obj_slot, SgenGrayQueue *queue)
288 {
289         char *forwarded;
290         char *obj = *obj_slot;
291         mword objsize;
292
293         DEBUG (9, g_assert (current_collection_generation == GENERATION_OLD));
294
295         HEAVY_STAT (++stat_copy_object_called_major);
296
297         DEBUG (9, fprintf (gc_debug_file, "Precise copy of %p from %p", obj, obj_slot));
298
299         /*
300          * obj must belong to one of:
301          *
302          * 1. the nursery
303          * 2. the LOS
304          * 3. a pinned chunk
305          * 4. a non-to-space section of the major heap
306          * 5. a to-space section of the major heap
307          *
308          * In addition, objects in 1, 2 and 4 might also be pinned.
309          * Objects in 1 and 4 might be forwarded.
310          *
311          * Before we can copy the object we must make sure that we are
312          * allowed to, i.e. that the object not pinned, not already
313          * forwarded and doesn't belong to the LOS, a pinned chunk, or
314          * a to-space section.
315          *
316          * We are usually called for to-space objects (5) when we have
317          * two remset entries for the same reference.  The first entry
318          * copies the object and updates the reference and the second
319          * calls us with the updated reference that points into
320          * to-space.  There might also be other circumstances where we
321          * get to-space objects.
322          */
323
324         if ((forwarded = SGEN_OBJECT_IS_FORWARDED (obj))) {
325                 DEBUG (9, g_assert (((MonoVTable*)SGEN_LOAD_VTABLE(obj))->gc_descr));
326                 DEBUG (9, fprintf (gc_debug_file, " (already forwarded to %p)\n", forwarded));
327                 HEAVY_STAT (++stat_major_copy_object_failed_forwarded);
328                 *obj_slot = forwarded;
329                 return;
330         }
331         if (SGEN_OBJECT_IS_PINNED (obj)) {
332                 DEBUG (9, g_assert (((MonoVTable*)SGEN_LOAD_VTABLE(obj))->gc_descr));
333                 DEBUG (9, fprintf (gc_debug_file, " (pinned, no change)\n"));
334                 HEAVY_STAT (++stat_major_copy_object_failed_pinned);
335                 return;
336         }
337
338         if (ptr_in_nursery (obj))
339                 goto copy;
340
341         /*
342          * At this point we know obj is not pinned, not forwarded and
343          * belongs to 2, 3, 4, or 5.
344          *
345          * LOS object (2) are simple, at least until we always follow
346          * the rule: if objsize > SGEN_MAX_SMALL_OBJ_SIZE, pin the
347          * object and return it.  At the end of major collections, we
348          * walk the los list and if the object is pinned, it is
349          * marked, otherwise it can be freed.
350          *
351          * Pinned chunks (3) and major heap sections (4, 5) both
352          * reside in blocks, which are always aligned, so once we've
353          * eliminated LOS objects, we can just access the block and
354          * see whether it's a pinned chunk or a major heap section.
355          */
356
357         objsize = SGEN_ALIGN_UP (sgen_safe_object_get_size ((MonoObject*)obj));
358
359         if (G_UNLIKELY (objsize > SGEN_MAX_SMALL_OBJ_SIZE || obj_is_from_pinned_alloc (obj))) {
360                 if (SGEN_OBJECT_IS_PINNED (obj))
361                         return;
362                 DEBUG (9, fprintf (gc_debug_file, " (marked LOS/Pinned %p (%s), size: %zd)\n", obj, sgen_safe_name (obj), objsize));
363                 binary_protocol_pin (obj, (gpointer)SGEN_LOAD_VTABLE (obj), sgen_safe_object_get_size ((MonoObject*)obj));
364                 SGEN_PIN_OBJECT (obj);
365                 GRAY_OBJECT_ENQUEUE (queue, obj);
366                 HEAVY_STAT (++stat_major_copy_object_failed_large_pinned);
367                 return;
368         }
369
370         /*
371          * Now we know the object is in a major heap section.  All we
372          * need to do is check whether it's already in to-space (5) or
373          * not (4).
374          */
375         if (MAJOR_OBJ_IS_IN_TO_SPACE (obj)) {
376                 DEBUG (9, g_assert (objsize <= SGEN_MAX_SMALL_OBJ_SIZE));
377                 DEBUG (9, fprintf (gc_debug_file, " (already copied)\n"));
378                 HEAVY_STAT (++stat_major_copy_object_failed_to_space);
379                 return;
380         }
381
382  copy:
383         HEAVY_STAT (++stat_objects_copied_major);
384
385         *obj_slot = copy_object_no_checks (obj, queue);
386 }
387
388 #include "sgen-major-scan-object.h"
389
390 /* FIXME: later reduce code duplication here with build_nursery_fragments().
391  * We don't keep track of section fragments for non-nursery sections yet, so
392  * just memset to 0.
393  */
394 static void
395 build_section_fragments (GCMemSection *section)
396 {
397         int i;
398         char *frag_start, *frag_end;
399         size_t frag_size;
400
401         /* clear scan starts */
402         memset (section->scan_starts, 0, section->num_scan_start * sizeof (gpointer));
403         frag_start = section->data;
404         section->next_data = section->data;
405         for (i = 0; i < section->pin_queue_num_entries; ++i) {
406                 frag_end = section->pin_queue_start [i];
407                 /* remove the pin bit from pinned objects */
408                 SGEN_UNPIN_OBJECT (frag_end);
409                 if (frag_end >= section->data + section->size) {
410                         frag_end = section->data + section->size;
411                 } else {
412                         section->scan_starts [((char*)frag_end - (char*)section->data)/SGEN_SCAN_START_SIZE] = frag_end;
413                 }
414                 frag_size = frag_end - frag_start;
415                 if (frag_size) {
416                         binary_protocol_empty (frag_start, frag_size);
417                         memset (frag_start, 0, frag_size);
418                 }
419                 frag_size = SGEN_ALIGN_UP (sgen_safe_object_get_size ((MonoObject*)section->pin_queue_start [i]));
420                 frag_start = (char*)section->pin_queue_start [i] + frag_size;
421                 section->next_data = MAX (section->next_data, frag_start);
422         }
423         frag_end = section->end_data;
424         frag_size = frag_end - frag_start;
425         if (frag_size) {
426                 binary_protocol_empty (frag_start, frag_size);
427                 memset (frag_start, 0, frag_size);
428         }
429 }
430
431 static void
432 sweep_pinned_objects_callback (char *ptr, size_t size, void *data)
433 {
434         if (SGEN_OBJECT_IS_PINNED (ptr)) {
435                 SGEN_UNPIN_OBJECT (ptr);
436                 DEBUG (6, fprintf (gc_debug_file, "Unmarked pinned object %p (%s)\n", ptr, sgen_safe_name (ptr)));
437         } else {
438                 DEBUG (6, fprintf (gc_debug_file, "Freeing unmarked pinned object %p (%s)\n", ptr, sgen_safe_name (ptr)));
439                 free_pinned_object (ptr, size);
440         }
441 }
442
443 static void
444 sweep_pinned_objects (void)
445 {
446         sgen_pinned_scan_objects (&pinned_allocator, sweep_pinned_objects_callback, NULL);
447 }
448
449 static void
450 major_iterate_objects (gboolean non_pinned, gboolean pinned, IterateObjectCallbackFunc callback, void *data)
451 {
452         if (non_pinned) {
453                 GCMemSection *section;
454                 for (section = section_list; section; section = section->block.next)
455                         sgen_scan_area_with_callback (section->data, section->end_data, callback, data, FALSE);
456         }
457         if (pinned)
458                 sgen_pinned_scan_objects (&pinned_allocator, callback, data);
459 }
460
461 static void
462 major_free_non_pinned_object (char *obj, size_t size)
463 {
464         memset (obj, 0, size);
465 }
466
467 static void
468 pin_pinned_object_callback (void *addr, size_t slot_size, SgenGrayQueue *queue)
469 {
470         binary_protocol_pin (addr, (gpointer)SGEN_LOAD_VTABLE (addr), sgen_safe_object_get_size ((MonoObject*)addr));
471         if (!SGEN_OBJECT_IS_PINNED (addr))
472                 sgen_pin_stats_register_object ((char*) addr, sgen_safe_object_get_size ((MonoObject*) addr));
473         SGEN_PIN_OBJECT (addr);
474         GRAY_OBJECT_ENQUEUE (queue, addr);
475         DEBUG (6, fprintf (gc_debug_file, "Marked pinned object %p (%s) from roots\n", addr, sgen_safe_name (addr)));
476 }
477
478 static void
479 major_find_pin_queue_start_ends (SgenGrayQueue *queue)
480 {
481         GCMemSection *section;
482
483         for (section = section_list; section; section = section->block.next)
484                 sgen_find_section_pin_queue_start_end (section);
485         sgen_pinned_scan_pinned_objects (&pinned_allocator, (IterateObjectCallbackFunc)pin_pinned_object_callback, queue);
486 }
487
488 static void
489 major_pin_objects (SgenGrayQueue *queue)
490 {
491         GCMemSection *section;
492
493         for (section = section_list; section; section = section->block.next)
494                 sgen_pin_objects_in_section (section, queue);
495 }
496
497 static void
498 major_init_to_space (void)
499 {
500         new_to_space_section ();
501 }
502
503 static void
504 major_sweep (void)
505 {
506         GCMemSection *section, *prev_section;
507
508         to_space_set_next_data ();
509         unset_to_space ();
510
511         /* unpin objects from the pinned chunks and free the unmarked ones */
512         sweep_pinned_objects ();
513
514         sgen_pinned_update_heap_boundaries (&pinned_allocator);
515
516         /* free the unused sections */
517         prev_section = NULL;
518         for (section = section_list; section;) {
519                 GCMemSection *this_section = section;
520
521                 /* to_space doesn't need handling here */
522                 if (section->is_to_space) {
523                         section->is_to_space = FALSE;
524                         prev_section = section;
525                         section = section->block.next;
526                         goto update;
527                 }
528                 /* no pinning object, so the section is free */
529                 if (!section->pin_queue_num_entries) {
530                         GCMemSection *to_free;
531                         g_assert (!section->pin_queue_start);
532                         if (prev_section)
533                                 prev_section->block.next = section->block.next;
534                         else
535                                 section_list = section->block.next;
536                         to_free = section;
537                         section = section->block.next;
538                         free_major_section (to_free);
539                         continue;
540                 } else {
541                         DEBUG (6, fprintf (gc_debug_file, "Section %p has still pinned objects (%d)\n", section, section->pin_queue_num_entries));
542                         build_section_fragments (section);
543                 }
544                 prev_section = section;
545                 section = section->block.next;
546
547         update:
548                 sgen_update_heap_boundaries ((mword)this_section->data, (mword)this_section->data + this_section->size);
549         }
550
551         have_swept = TRUE;
552 }
553
554 static void
555 major_check_scan_starts (void)
556 {
557         GCMemSection *section;
558         for (section = section_list; section; section = section->block.next)
559                 sgen_check_section_scan_starts (section);
560 }
561
562 static void
563 major_dump_heap (FILE *heap_dump_file)
564 {
565         GCMemSection *section;
566         for (section = section_list; section; section = section->block.next)
567                 sgen_dump_section (section, "old");
568         /* FIXME: dump pinned sections, too */
569 }
570
571 static gint64
572 major_get_used_size (void)
573 {
574         gint64 tot = 0;
575         GCMemSection *section;
576         for (section = section_list; section; section = section->block.next) {
577                 /* this is approximate... */
578                 tot += section->next_data - section->data;
579         }
580         return tot;
581 }
582
583 /* only valid during minor collections */
584 static int old_num_major_sections;
585
586 static void
587 major_start_nursery_collection (void)
588 {
589         old_num_major_sections = num_major_sections;
590
591         if (!to_space_section) {
592                 new_to_space_section ();
593         } else {
594                 /* we might have done degraded allocation since the
595                    last collection */
596                 g_assert (to_space_bumper <= to_space_section->next_data);
597                 to_space_bumper = to_space_section->next_data;
598
599                 to_space_section->is_to_space = TRUE;
600         }
601 }
602
603 static void
604 major_finish_nursery_collection (void)
605 {
606         GCMemSection *section;
607         int sections_alloced;
608
609         to_space_set_next_data ();
610
611         for (section = section_list; section; section = section->block.next)
612                 section->is_to_space = FALSE;
613
614         sections_alloced = num_major_sections - old_num_major_sections;
615         sgen_register_major_sections_alloced (sections_alloced);
616 }
617
618 static void
619 major_finish_major_collection (void)
620 {
621 }
622
623 static gboolean
624 major_ptr_is_in_non_pinned_space (char *ptr)
625 {
626         GCMemSection *section;
627         for (section = section_list; section;) {
628                 if (ptr >= section->data && ptr < section->data + section->size)
629                         return TRUE;
630                 section = section->block.next;
631         }
632         return FALSE;
633 }
634
635 static void
636 major_report_pinned_memory_usage (void)
637 {
638         sgen_report_pinned_mem_usage (&pinned_allocator);
639 }
640
641 static int
642 get_num_major_sections (void)
643 {
644         return num_major_sections;
645 }
646
647 void
648 sgen_copying_init (SgenMajorCollector *collector)
649 {
650 #ifdef HEAVY_STATISTICS
651         mono_counters_register ("# major copy_object() failed forwarded", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_major_copy_object_failed_forwarded);
652         mono_counters_register ("# major copy_object() failed pinned", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_major_copy_object_failed_pinned);
653         mono_counters_register ("# major copy_object() failed large or pinned chunk", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_major_copy_object_failed_large_pinned);
654         mono_counters_register ("# major copy_object() failed to space", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_major_copy_object_failed_to_space);
655 #endif
656
657         collector->section_size = MAJOR_SECTION_SIZE;
658         collector->supports_cardtable = FALSE;
659         collector->is_parallel = FALSE;
660
661         collector->have_swept = &have_swept;
662
663         collector->alloc_heap = major_alloc_heap;
664         collector->is_object_live = major_is_object_live;
665         collector->alloc_small_pinned_obj = major_alloc_small_pinned_obj;
666         collector->alloc_degraded = major_alloc_degraded;
667         collector->copy_or_mark_object = major_copy_or_mark_object;
668         collector->alloc_object = major_alloc_object;
669         collector->free_pinned_object = free_pinned_object;
670         collector->iterate_objects = major_iterate_objects;
671         collector->free_non_pinned_object = major_free_non_pinned_object;
672         collector->find_pin_queue_start_ends = major_find_pin_queue_start_ends;
673         collector->pin_objects = major_pin_objects;
674         collector->init_to_space = major_init_to_space;
675         collector->sweep = major_sweep;
676         collector->check_scan_starts = major_check_scan_starts;
677         collector->dump_heap = major_dump_heap;
678         collector->get_used_size = major_get_used_size;
679         collector->start_nursery_collection = major_start_nursery_collection;
680         collector->finish_nursery_collection = major_finish_nursery_collection;
681         collector->finish_major_collection = major_finish_major_collection;
682         collector->ptr_is_in_non_pinned_space = major_ptr_is_in_non_pinned_space;
683         collector->obj_is_from_pinned_alloc = obj_is_from_pinned_alloc;
684         collector->report_pinned_memory_usage = major_report_pinned_memory_usage;
685         collector->get_num_major_sections = get_num_major_sections;
686         collector->handle_gc_param = NULL;
687         collector->print_gc_param_usage = NULL;
688
689         FILL_COLLECTOR_COPY_OBJECT (collector);
690         FILL_COLLECTOR_SCAN_OBJECT (collector);
691 }
692
693 #endif