40639d7050b1db8d2793aa66cf7156285fe0bb9a
[mono.git] / mono / sgen / sgen-simple-nursery.c
1 /*
2  * sgen-simple-nursery.c: Simple always promote nursery.
3  *
4  * Copyright 2001-2003 Ximian, Inc
5  * Copyright 2003-2010 Novell, Inc.
6  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
7  * Copyright (C) 2012 Xamarin Inc
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License 2.0 as published by the Free Software Foundation;
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License 2.0 along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #include "config.h"
24 #ifdef HAVE_SGEN_GC
25
26 #include <string.h>
27
28 #include "mono/sgen/sgen-gc.h"
29 #include "mono/sgen/sgen-protocol.h"
30 #include "mono/sgen/sgen-layout-stats.h"
31 #include "mono/sgen/sgen-client.h"
32
33 static inline GCObject*
34 alloc_for_promotion (GCVTable vtable, GCObject *obj, size_t objsize, gboolean has_references)
35 {
36         return major_collector.alloc_object (vtable, objsize, has_references);
37 }
38
39 static SgenFragment*
40 build_fragments_get_exclude_head (void)
41 {
42         return NULL;
43 }
44
45 static void
46 build_fragments_release_exclude_head (void)
47 {
48 }
49
50 static void
51 build_fragments_finish (SgenFragmentAllocator *allocator)
52 {
53 }
54
55 static void
56 prepare_to_space (char *to_space_bitmap, size_t space_bitmap_size)
57 {
58 }
59
60 static void
61 clear_fragments (void)
62 {       
63 }
64
65 static void
66 init_nursery (SgenFragmentAllocator *allocator, char *start, char *end)
67 {
68         sgen_fragment_allocator_add (allocator, start, end);
69 }
70
71
72 /******************************************Copy/Scan functins ************************************************/
73
74 #define SGEN_SIMPLE_NURSERY
75
76 #define SERIAL_COPY_OBJECT simple_nursery_serial_copy_object
77 #define SERIAL_COPY_OBJECT_FROM_OBJ simple_nursery_serial_copy_object_from_obj
78
79 #include "sgen-minor-copy-object.h"
80 #include "sgen-minor-scan-object.h"
81
82 void
83 sgen_simple_nursery_init (SgenMinorCollector *collector)
84 {
85         collector->is_split = FALSE;
86
87         collector->alloc_for_promotion = alloc_for_promotion;
88
89         collector->prepare_to_space = prepare_to_space;
90         collector->clear_fragments = clear_fragments;
91         collector->build_fragments_get_exclude_head = build_fragments_get_exclude_head;
92         collector->build_fragments_release_exclude_head = build_fragments_release_exclude_head;
93         collector->build_fragments_finish = build_fragments_finish;
94         collector->init_nursery = init_nursery;
95
96         FILL_MINOR_COLLECTOR_COPY_OBJECT (collector);
97         FILL_MINOR_COLLECTOR_SCAN_OBJECT (collector);
98 }
99
100
101 #endif