[sgen] Add parallel copying infrastructure
[mono.git] / mono / sgen / sgen-marksweep-drain-gray-stack.h
1 /*
2  * sgen-marksweep-drain-gray-stack.h: The copy/mark and gray stack
3  *     draining functions of the M&S major collector.
4  *
5  * Copyright (C) 2014 Xamarin Inc
6  *
7  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
8  */
9
10 /*
11  * COPY_OR_MARK_FUNCTION_NAME must be defined to be the function name of the copy/mark
12  * function.
13  *
14  * SCAN_OBJECT_FUNCTION_NAME must be defined to be the function name of the object scanning
15  * function.
16  *
17  * DRAIN_GRAY_STACK_FUNCTION_NAME must be defined to be the function name of the gray stack
18  * draining function.
19  *
20  * Define COPY_OR_MARK_WITH_EVACUATION to support evacuation.
21  */
22
23 /* Returns whether the object is still in the nursery. */
24 static inline MONO_ALWAYS_INLINE gboolean
25 COPY_OR_MARK_FUNCTION_NAME (GCObject **ptr, GCObject *obj, SgenGrayQueue *queue)
26 {
27         MSBlockInfo *block;
28
29 #ifdef HEAVY_STATISTICS
30         ++stat_optimized_copy;
31         {
32                 GCObject *forwarded;
33                 SgenDescriptor desc;
34                 if ((forwarded = SGEN_OBJECT_IS_FORWARDED (obj)))
35                         desc = sgen_obj_get_descriptor_safe (forwarded);
36                 else
37                         desc = sgen_obj_get_descriptor_safe (obj);
38
39                 sgen_descriptor_count_copied_object (desc);
40         }
41 #endif
42
43         SGEN_ASSERT (9, obj, "null object from pointer %p", ptr);
44 #if !defined(COPY_OR_MARK_CONCURRENT) && !defined(COPY_OR_MARK_CONCURRENT_WITH_EVACUATION)
45         SGEN_ASSERT (9, current_collection_generation == GENERATION_OLD, "old gen parallel allocator called from a %d collection", current_collection_generation);
46 #endif
47
48         if (sgen_ptr_in_nursery (obj)) {
49 #if !defined(COPY_OR_MARK_CONCURRENT) && !defined(COPY_OR_MARK_CONCURRENT_WITH_EVACUATION)
50                 int word, bit;
51                 gboolean first = TRUE;
52                 GCObject *forwarded, *old_obj;
53                 mword vtable_word = *(mword*)obj;
54
55                 HEAVY_STAT (++stat_optimized_copy_nursery);
56
57 #if SGEN_MAX_DEBUG_LEVEL >= 9
58                 if (sgen_nursery_is_to_space (obj))
59                         SGEN_ASSERT (9, !SGEN_VTABLE_IS_PINNED (vtable_word) && !SGEN_VTABLE_IS_FORWARDED (vtable_word), "To-space object can't be pinned or forwarded.");
60 #endif
61
62                 if (SGEN_VTABLE_IS_PINNED (vtable_word)) {
63                         SGEN_ASSERT (9, !SGEN_VTABLE_IS_FORWARDED (vtable_word), "Cannot be both pinned and forwarded.");
64                         HEAVY_STAT (++stat_optimized_copy_nursery_pinned);
65                         return TRUE;
66                 }
67                 if ((forwarded = (GCObject *)SGEN_VTABLE_IS_FORWARDED (vtable_word))) {
68                         HEAVY_STAT (++stat_optimized_copy_nursery_forwarded);
69                         SGEN_UPDATE_REFERENCE (ptr, forwarded);
70                         return sgen_ptr_in_nursery (forwarded);
71                 }
72
73                 /* An object in the nursery To Space has already been copied and grayed. Nothing to do. */
74                 if (sgen_nursery_is_to_space (obj))
75                         return TRUE;
76
77 #ifdef COPY_OR_MARK_WITH_EVACUATION
78         do_copy_object:
79 #endif
80                 old_obj = obj;
81 #ifdef COPY_OR_MARK_PARALLEL
82                 obj = copy_object_no_checks_par (obj, queue);
83 #else
84                 obj = copy_object_no_checks (obj, queue);
85 #endif
86                 if (G_UNLIKELY (old_obj == obj)) {
87                         /*
88                          * If we fail to evacuate an object we just stop doing it for a
89                          * given block size as all other will surely fail too.
90                          */
91                         /* FIXME: test this case somehow. */
92                         if (!sgen_ptr_in_nursery (obj)) {
93                                 int size_index;
94                                 block = MS_BLOCK_FOR_OBJ (obj);
95                                 size_index = block->obj_size_index;
96                                 evacuate_block_obj_sizes [size_index] = FALSE;
97                                 MS_MARK_OBJECT_AND_ENQUEUE (obj, sgen_obj_get_descriptor (obj), block, queue);
98                                 return FALSE;
99                         }
100                         return TRUE;
101                 }
102                 HEAVY_STAT (++stat_objects_copied_major);
103                 SGEN_UPDATE_REFERENCE (ptr, obj);
104
105                 if (sgen_ptr_in_nursery (obj))
106                         return TRUE;
107
108                 /*
109                  * FIXME: See comment for copy_object_no_checks().  If
110                  * we have that, we can let the allocation function
111                  * give us the block info, too, and we won't have to
112                  * re-fetch it.
113                  *
114                  * FIXME (2): We should rework this to avoid all those nursery checks.
115                  */
116                 /*
117                  * For the split nursery allocator the object might
118                  * still be in the nursery despite having being
119                  * promoted, in which case we can't mark it.
120                  */
121                 block = MS_BLOCK_FOR_OBJ (obj);
122                 MS_CALC_MARK_BIT (word, bit, obj);
123                 SGEN_ASSERT (9, !MS_MARK_BIT (block, word, bit), "object %p already marked", obj);
124 #ifdef COPY_OR_MARK_PARALLEL
125                 MS_SET_MARK_BIT_PAR (block, word, bit, first);
126 #else
127                 MS_SET_MARK_BIT (block, word, bit);
128 #endif
129                 if (first)
130                         binary_protocol_mark (obj, (gpointer)SGEN_LOAD_VTABLE (obj), sgen_safe_object_get_size (obj));
131
132                 return FALSE;
133 #endif
134         } else {
135                 mword vtable_word = *(mword*)obj;
136                 SgenDescriptor desc;
137                 int type;
138
139                 HEAVY_STAT (++stat_optimized_copy_major);
140
141 #ifdef COPY_OR_MARK_WITH_EVACUATION
142                 {
143                         GCObject *forwarded;
144                         if ((forwarded = (GCObject *)SGEN_VTABLE_IS_FORWARDED (vtable_word))) {
145                                 HEAVY_STAT (++stat_optimized_copy_major_forwarded);
146                                 SGEN_UPDATE_REFERENCE (ptr, forwarded);
147                                 SGEN_ASSERT (9, !sgen_ptr_in_nursery (forwarded), "Cannot be forwarded to nursery.");
148                                 return FALSE;
149                         }
150                 }
151 #endif
152
153                 SGEN_ASSERT (9, !SGEN_VTABLE_IS_PINNED (vtable_word), "Pinned object in non-pinned block?");
154
155                 /* We untag the vtable for concurrent M&S, in case bridge is running and it tagged it */
156                 desc = sgen_vtable_get_descriptor ((GCVTable)SGEN_POINTER_UNTAG_VTABLE (vtable_word));
157                 type = desc & DESC_TYPE_MASK;
158
159                 if (sgen_safe_object_is_small (obj, type)) {
160 #ifdef HEAVY_STATISTICS
161                         if (type <= DESC_TYPE_MAX_SMALL_OBJ)
162                                 ++stat_optimized_copy_major_small_fast;
163                         else
164                                 ++stat_optimized_copy_major_small_slow;
165 #endif
166
167                         block = MS_BLOCK_FOR_OBJ (obj);
168
169 #ifdef COPY_OR_MARK_CONCURRENT_WITH_EVACUATION
170                         if (G_UNLIKELY (major_block_is_evacuating (block))) {
171                                 /*
172                                  * We don't copy within the concurrent phase. These objects will
173                                  * be handled below in the finishing pause, by scanning the mod-union
174                                  * card table.
175                                  */
176                                 return FALSE;
177                         }
178 #endif
179
180 #ifdef COPY_OR_MARK_WITH_EVACUATION
181                         if (major_block_is_evacuating (block)) {
182                                 HEAVY_STAT (++stat_optimized_copy_major_small_evacuate);
183                                 goto do_copy_object;
184                         }
185 #endif
186
187 #ifdef COPY_OR_MARK_PARALLEL
188                         MS_MARK_OBJECT_AND_ENQUEUE_PAR (obj, desc, block, queue);
189 #else
190                         MS_MARK_OBJECT_AND_ENQUEUE (obj, desc, block, queue);
191 #endif
192                 } else {
193                         gboolean first = TRUE;
194                         HEAVY_STAT (++stat_optimized_copy_major_large);
195 #ifdef COPY_OR_MARK_PARALLEL
196                         first = sgen_los_pin_object_par (obj);
197 #else
198                         if (sgen_los_object_is_pinned (obj))
199                                 first = FALSE;
200                         else
201                                 sgen_los_pin_object (obj);
202 #endif
203
204                         if (first) {
205                                 binary_protocol_pin (obj, (gpointer)SGEN_LOAD_VTABLE (obj), sgen_safe_object_get_size (obj));
206                                 if (SGEN_OBJECT_HAS_REFERENCES (obj))
207                                         GRAY_OBJECT_ENQUEUE (queue, obj, desc);
208                         }
209                 }
210                 return FALSE;
211         }
212
213         return TRUE;
214 }
215
216 static void
217 SCAN_OBJECT_FUNCTION_NAME (GCObject *full_object, SgenDescriptor desc, SgenGrayQueue *queue)
218 {
219         char *start = (char*)full_object;
220
221 #ifdef HEAVY_STATISTICS
222         ++stat_optimized_major_scan;
223         if (!sgen_gc_descr_has_references (desc))
224                 ++stat_optimized_major_scan_no_refs;
225         sgen_descriptor_count_scanned_object (desc);
226 #endif
227 #ifdef SGEN_HEAVY_BINARY_PROTOCOL
228         add_scanned_object (start);
229 #endif
230
231         /* Now scan the object. */
232
233 #undef HANDLE_PTR
234 #if defined(COPY_OR_MARK_CONCURRENT_WITH_EVACUATION)
235 #define HANDLE_PTR(ptr,obj)     do {                                    \
236                 GCObject *__old = *(ptr);                               \
237                 binary_protocol_scan_process_reference ((full_object), (ptr), __old); \
238                 if (__old && !sgen_ptr_in_nursery (__old)) {            \
239                         if (G_UNLIKELY (!sgen_ptr_in_nursery (ptr) &&   \
240                                         sgen_safe_object_is_small (__old, sgen_obj_get_descriptor (__old) & DESC_TYPE_MASK) && \
241                                         major_block_is_evacuating (MS_BLOCK_FOR_OBJ (__old)))) { \
242                                 mark_mod_union_card ((full_object), (void**)(ptr), __old); \
243                         } else {                                        \
244                                 PREFETCH_READ (__old);                  \
245                                 COPY_OR_MARK_FUNCTION_NAME ((ptr), __old, queue); \
246                         }                                               \
247                 } else {                                                \
248                         if (G_UNLIKELY (sgen_ptr_in_nursery (__old) && !sgen_ptr_in_nursery ((ptr)) && !sgen_cement_is_forced (__old))) \
249                                 mark_mod_union_card ((full_object), (void**)(ptr), __old); \
250                         }                                               \
251                 } while (0)
252 #elif defined(COPY_OR_MARK_CONCURRENT)
253 #define HANDLE_PTR(ptr,obj)     do {                                    \
254                 GCObject *__old = *(ptr);                               \
255                 binary_protocol_scan_process_reference ((full_object), (ptr), __old); \
256                 if (__old && !sgen_ptr_in_nursery (__old)) {            \
257                         PREFETCH_READ (__old);                  \
258                         COPY_OR_MARK_FUNCTION_NAME ((ptr), __old, queue); \
259                 } else {                                                \
260                         if (G_UNLIKELY (sgen_ptr_in_nursery (__old) && !sgen_ptr_in_nursery ((ptr)) && !sgen_cement_is_forced (__old))) \
261                                 mark_mod_union_card ((full_object), (void**)(ptr), __old); \
262                         }                                               \
263                 } while (0)
264 #else
265 #define HANDLE_PTR(ptr,obj)     do {                                    \
266                 GCObject *__old = *(ptr);                                       \
267                 binary_protocol_scan_process_reference ((full_object), (ptr), __old); \
268                 if (__old) {                                            \
269                         gboolean __still_in_nursery = COPY_OR_MARK_FUNCTION_NAME ((ptr), __old, queue); \
270                         if (G_UNLIKELY (__still_in_nursery && !sgen_ptr_in_nursery ((ptr)) && !SGEN_OBJECT_IS_CEMENTED (*(ptr)))) { \
271                                 GCObject *__copy = *(ptr);                      \
272                                 sgen_add_to_global_remset ((ptr), __copy); \
273                         }                                               \
274                 }                                                       \
275         } while (0)
276 #endif
277
278 #define SCAN_OBJECT_PROTOCOL
279 #include "sgen-scan-object.h"
280 }
281
282 #ifdef SCAN_VTYPE_FUNCTION_NAME 
283 static void
284 SCAN_VTYPE_FUNCTION_NAME (GCObject *full_object, char *start, SgenDescriptor desc, SgenGrayQueue *queue BINARY_PROTOCOL_ARG (size_t size))
285 {
286         SGEN_OBJECT_LAYOUT_STATISTICS_DECLARE_BITMAP;
287
288 #ifdef HEAVY_STATISTICS
289         /* FIXME: We're half scanning this object.  How do we account for that? */
290         //add_scanned_object (start);
291 #endif
292
293         /* The descriptors include info about the object header as well */
294         start -= SGEN_CLIENT_OBJECT_HEADER_SIZE;
295
296         /* We use the same HANDLE_PTR from the obj scan function */
297 #define SCAN_OBJECT_NOVTABLE
298 #define SCAN_OBJECT_PROTOCOL
299 #include "sgen-scan-object.h"
300
301         SGEN_OBJECT_LAYOUT_STATISTICS_COMMIT_BITMAP;
302 }
303 #endif
304
305 #ifdef SCAN_PTR_FIELD_FUNCTION_NAME
306 static void
307 SCAN_PTR_FIELD_FUNCTION_NAME (GCObject *full_object, GCObject **ptr, SgenGrayQueue *queue)
308 {
309         HANDLE_PTR (ptr, NULL);
310 }
311 #endif
312
313 static gboolean
314 DRAIN_GRAY_STACK_FUNCTION_NAME (SgenGrayQueue *queue)
315 {
316 #if defined(COPY_OR_MARK_CONCURRENT) || defined(COPY_OR_MARK_CONCURRENT_WITH_EVACUATION)
317         int i;
318         for (i = 0; i < 32; i++) {
319 #else
320         for (;;) {
321 #endif
322                 GCObject *obj;
323                 SgenDescriptor desc;
324
325                 HEAVY_STAT (++stat_drain_loops);
326
327                 GRAY_OBJECT_DEQUEUE (queue, &obj, &desc);
328                 if (!obj)
329                         return TRUE;
330
331                 SCAN_OBJECT_FUNCTION_NAME (obj, desc, queue);
332         }
333         return FALSE;
334 }
335
336 #undef COPY_OR_MARK_PARALLEL
337 #undef COPY_OR_MARK_FUNCTION_NAME
338 #undef COPY_OR_MARK_WITH_EVACUATION
339 #undef COPY_OR_MARK_CONCURRENT
340 #undef COPY_OR_MARK_CONCURRENT_WITH_EVACUATION
341 #undef SCAN_OBJECT_FUNCTION_NAME
342 #undef SCAN_VTYPE_FUNCTION_NAME
343 #undef SCAN_PTR_FIELD_FUNCTION_NAME
344 #undef DRAIN_GRAY_STACK_FUNCTION_NAME