Merge pull request #829 from symform/httpwebreq-async-ssl
[mono.git] / mono / metadata / sgen-gc.h
1 /*
2  * sgen-gc.c: Simple generational GC.
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 #ifndef __MONO_SGENGC_H__
23 #define __MONO_SGENGC_H__
24
25 /* pthread impl */
26 #include "config.h"
27
28 #ifdef HAVE_SGEN_GC
29
30 typedef struct _SgenThreadInfo SgenThreadInfo;
31 #define THREAD_INFO_TYPE SgenThreadInfo
32
33 #include <glib.h>
34 #ifdef HAVE_PTHREAD_H
35 #include <pthread.h>
36 #endif
37 #include <signal.h>
38 #include <mono/utils/mono-compiler.h>
39 #include <mono/utils/mono-threads.h>
40 #include <mono/utils/dtrace.h>
41 #include <mono/utils/mono-logger-internal.h>
42 #include <mono/utils/atomic.h>
43 #include <mono/utils/mono-mutex.h>
44 #include <mono/metadata/class-internals.h>
45 #include <mono/metadata/object-internals.h>
46 #include <mono/metadata/sgen-conf.h>
47 #include <mono/metadata/sgen-archdep.h>
48 #include <mono/metadata/sgen-descriptor.h>
49 #include <mono/metadata/sgen-gray.h>
50 #include <mono/metadata/sgen-hash-table.h>
51
52 /* The method used to clear the nursery */
53 /* Clearing at nursery collections is the safest, but has bad interactions with caches.
54  * Clearing at TLAB creation is much faster, but more complex and it might expose hard
55  * to find bugs.
56  */
57 typedef enum {
58         CLEAR_AT_GC,
59         CLEAR_AT_TLAB_CREATION
60 } NurseryClearPolicy;
61
62 NurseryClearPolicy sgen_get_nursery_clear_policy (void) MONO_INTERNAL;
63
64 #define SGEN_TV_DECLARE(name) gint64 name
65 #define SGEN_TV_GETTIME(tv) tv = mono_100ns_ticks ()
66 #define SGEN_TV_ELAPSED(start,end) (int)((end-start) / 10)
67 #define SGEN_TV_ELAPSED_MS(start,end) ((SGEN_TV_ELAPSED((start),(end)) + 500) / 1000)
68
69 #if !defined(__MACH__) && !MONO_MACH_ARCH_SUPPORTED && defined(HAVE_PTHREAD_KILL)
70 #define SGEN_POSIX_STW 1
71 #endif
72
73 /* eventually share with MonoThread? */
74 /*
75  * This structure extends the MonoThreadInfo structure.
76  */
77 struct _SgenThreadInfo {
78         MonoThreadInfo info;
79         /*
80         This is set to TRUE when STW fails to suspend a thread, most probably because the
81         underlying thread is dead.
82         */
83         int skip;
84         volatile int in_critical_region;
85
86         /*
87         This is set the argument of mono_gc_set_skip_thread.
88
89         A thread that knowingly holds no managed state can call this
90         function around blocking loops to reduce the GC burden by not
91         been scanned.
92         */
93         gboolean gc_disabled;
94         void *stack_end;
95         void *stack_start;
96         void *stack_start_limit;
97         char **tlab_next_addr;
98         char **tlab_start_addr;
99         char **tlab_temp_end_addr;
100         char **tlab_real_end_addr;
101         gpointer runtime_data;
102
103 #ifdef SGEN_POSIX_STW
104         /* This is -1 until the first suspend. */
105         int signal;
106         /* FIXME: kill this, we only use signals on systems that have rt-posix, which doesn't have issues with duplicates. */
107         unsigned int stop_count; /* to catch duplicate signals. */
108 #endif
109
110         gpointer stopped_ip;    /* only valid if the thread is stopped */
111         MonoDomain *stopped_domain; /* dsto */
112
113         /*FIXME pretty please finish killing ARCH_NUM_REGS */
114 #ifdef USE_MONO_CTX
115         MonoContext ctx;                /* ditto */
116 #else
117         gpointer regs[ARCH_NUM_REGS];       /* ditto */
118 #endif
119
120 #ifndef HAVE_KW_THREAD
121         char *tlab_start;
122         char *tlab_next;
123         char *tlab_temp_end;
124         char *tlab_real_end;
125 #endif
126 };
127
128 /*
129  * The nursery section uses this struct.
130  */
131 typedef struct _GCMemSection GCMemSection;
132 struct _GCMemSection {
133         char *data;
134         mword size;
135         /* pointer where more data could be allocated if it fits */
136         char *next_data;
137         char *end_data;
138         /*
139          * scan starts is an array of pointers to objects equally spaced in the allocation area
140          * They let use quickly find pinned objects from pinning pointers.
141          */
142         char **scan_starts;
143         /* in major collections indexes in the pin_queue for objects that pin this section */
144         void **pin_queue_start;
145         int pin_queue_num_entries;
146         unsigned int num_scan_start;
147 };
148
149 /*
150  * Recursion is not allowed for the thread lock.
151  */
152 #define LOCK_DECLARE(name) mono_mutex_t name
153 /* if changing LOCK_INIT to something that isn't idempotent, look at
154    its use in mono_gc_base_init in sgen-gc.c */
155 #define LOCK_INIT(name) mono_mutex_init (&(name))
156 #define LOCK_GC do {                                            \
157                 mono_mutex_lock (&gc_mutex);                    \
158                 MONO_GC_LOCKED ();                              \
159         } while (0)
160 #define TRYLOCK_GC (mono_mutex_trylock (&gc_mutex) == 0)
161 #define UNLOCK_GC do { sgen_gc_unlock (); } while (0)
162
163 extern LOCK_DECLARE (sgen_interruption_mutex);
164
165 #define LOCK_INTERRUPTION mono_mutex_lock (&sgen_interruption_mutex)
166 #define UNLOCK_INTERRUPTION mono_mutex_unlock (&sgen_interruption_mutex)
167
168 /* FIXME: Use InterlockedAdd & InterlockedAdd64 to reduce the CAS cost. */
169 #define SGEN_CAS_PTR    InterlockedCompareExchangePointer
170 #define SGEN_ATOMIC_ADD(x,i)    do {                                    \
171                 int __old_x;                                            \
172                 do {                                                    \
173                         __old_x = (x);                                  \
174                 } while (InterlockedCompareExchange (&(x), __old_x + (i), __old_x) != __old_x); \
175         } while (0)
176 #define SGEN_ATOMIC_ADD_P(x,i) do { \
177                 size_t __old_x;                                            \
178                 do {                                                    \
179                         __old_x = (x);                                  \
180                 } while (InterlockedCompareExchangePointer ((void**)&(x), (void*)(__old_x + (i)), (void*)__old_x) != (void*)__old_x); \
181         } while (0)
182
183
184 #ifndef HOST_WIN32
185 /* we intercept pthread_create calls to know which threads exist */
186 #define USE_PTHREAD_INTERCEPT 1
187 #endif
188
189 #ifdef HEAVY_STATISTICS
190 #define HEAVY_STAT(x)   x
191
192 extern long long stat_objects_alloced_degraded;
193 extern long long stat_bytes_alloced_degraded;
194 extern long long stat_copy_object_called_major;
195 extern long long stat_objects_copied_major;
196 #else
197 #define HEAVY_STAT(x)
198 #endif
199
200 #define SGEN_ASSERT(level, a, ...) do { \
201         if (G_UNLIKELY ((level) <= SGEN_MAX_ASSERT_LEVEL && !(a))) {    \
202                 g_error (__VA_ARGS__);  \
203 } } while (0)
204
205
206 #define SGEN_LOG(level, format, ...) do {      \
207         if (G_UNLIKELY ((level) <= SGEN_MAX_DEBUG_LEVEL && (level) <= gc_debug_level)) {        \
208                 mono_gc_printf (gc_debug_file, format, ##__VA_ARGS__);  \
209 } } while (0)
210
211 #define SGEN_COND_LOG(level, cond, format, ...) do {    \
212         if (G_UNLIKELY ((level) <= SGEN_MAX_DEBUG_LEVEL && (level) <= gc_debug_level)) {        \
213                 if (cond)       \
214                         mono_gc_printf (gc_debug_file, format, ##__VA_ARGS__);  \
215 } } while (0)
216
217 #define SGEN_LOG_DO(level, fun) do {    \
218         if (G_UNLIKELY ((level) <= SGEN_MAX_DEBUG_LEVEL && (level) <= gc_debug_level)) {        \
219                 fun;    \
220 } } while (0)
221
222 extern int gc_debug_level;
223 extern FILE* gc_debug_file;
224
225 extern int current_collection_generation;
226
227 extern unsigned int sgen_global_stop_count;
228
229 extern gboolean bridge_processing_in_progress;
230
231 extern int num_ready_finalizers;
232
233 #define SGEN_ALLOC_ALIGN                8
234 #define SGEN_ALLOC_ALIGN_BITS   3
235
236 #define SGEN_ALIGN_UP(s)                (((s)+(SGEN_ALLOC_ALIGN-1)) & ~(SGEN_ALLOC_ALIGN-1))
237
238 /*
239  * The link pointer is hidden by negating each bit.  We use the lowest
240  * bit of the link (before negation) to store whether it needs
241  * resurrection tracking.
242  */
243 #define HIDE_POINTER(p,t)       ((gpointer)(~((gulong)(p)|((t)?1:0))))
244 #define REVEAL_POINTER(p)       ((gpointer)((~(gulong)(p))&~3L))
245
246 #ifdef SGEN_ALIGN_NURSERY
247 #define SGEN_PTR_IN_NURSERY(p,bits,start,end)   (((mword)(p) & ~((1 << (bits)) - 1)) == (mword)(start))
248 #else
249 #define SGEN_PTR_IN_NURSERY(p,bits,start,end)   ((char*)(p) >= (start) && (char*)(p) < (end))
250 #endif
251
252 #ifdef USER_CONFIG
253
254 /* good sizes are 512KB-1MB: larger ones increase a lot memzeroing time */
255 #define DEFAULT_NURSERY_SIZE (sgen_nursery_size)
256 extern int sgen_nursery_size MONO_INTERNAL;
257 #ifdef SGEN_ALIGN_NURSERY
258 /* The number of trailing 0 bits in DEFAULT_NURSERY_SIZE */
259 #define DEFAULT_NURSERY_BITS (sgen_nursery_bits)
260 extern int sgen_nursery_bits MONO_INTERNAL;
261 #endif
262
263 #else
264
265 #define DEFAULT_NURSERY_SIZE (4*1024*1024)
266 #ifdef SGEN_ALIGN_NURSERY
267 #define DEFAULT_NURSERY_BITS 22
268 #endif
269
270 #endif
271
272 #ifndef SGEN_ALIGN_NURSERY
273 #define DEFAULT_NURSERY_BITS -1
274 #endif
275
276 extern char *sgen_nursery_start MONO_INTERNAL;
277 extern char *sgen_nursery_end MONO_INTERNAL;
278
279 static inline MONO_ALWAYS_INLINE gboolean
280 sgen_ptr_in_nursery (void *p)
281 {
282         return SGEN_PTR_IN_NURSERY ((p), DEFAULT_NURSERY_BITS, sgen_nursery_start, sgen_nursery_end);
283 }
284
285 static inline MONO_ALWAYS_INLINE char*
286 sgen_get_nursery_start (void)
287 {
288         return sgen_nursery_start;
289 }
290
291 static inline MONO_ALWAYS_INLINE char*
292 sgen_get_nursery_end (void)
293 {
294         return sgen_nursery_end;
295 }
296
297 /* Structure that corresponds to a MonoVTable: desc is a mword so requires
298  * no cast from a pointer to an integer
299  */
300 typedef struct {
301         MonoClass *klass;
302         mword desc;
303 } GCVTable;
304
305 /* these bits are set in the object vtable: we could merge them since an object can be
306  * either pinned or forwarded but not both.
307  * We store them in the vtable slot because the bits are used in the sync block for
308  * other purposes: if we merge them and alloc the sync blocks aligned to 8 bytes, we can change
309  * this and use bit 3 in the syncblock (with the lower two bits both set for forwarded, that
310  * would be an invalid combination for the monitor and hash code).
311  * The values are already shifted.
312  * The forwarding address is stored in the sync block.
313  */
314 #define SGEN_FORWARDED_BIT 1
315 #define SGEN_PINNED_BIT 2
316 #define SGEN_VTABLE_BITS_MASK 0x3
317
318 /* returns NULL if not forwarded, or the forwarded address */
319 #define SGEN_OBJECT_IS_FORWARDED(obj) (((mword*)(obj))[0] & SGEN_FORWARDED_BIT ? (void*)(((mword*)(obj))[0] & ~SGEN_VTABLE_BITS_MASK) : NULL)
320 #define SGEN_OBJECT_IS_PINNED(obj) (((mword*)(obj))[0] & SGEN_PINNED_BIT)
321
322 /* set the forwarded address fw_addr for object obj */
323 #define SGEN_FORWARD_OBJECT(obj,fw_addr) do {                           \
324                 ((mword*)(obj))[0] = (mword)(fw_addr) | SGEN_FORWARDED_BIT; \
325         } while (0)
326 #define SGEN_PIN_OBJECT(obj) do {       \
327                 ((mword*)(obj))[0] |= SGEN_PINNED_BIT;  \
328         } while (0)
329 #define SGEN_UNPIN_OBJECT(obj) do {     \
330                 ((mword*)(obj))[0] &= ~SGEN_PINNED_BIT; \
331         } while (0)
332
333 /*
334  * Since we set bits in the vtable, use the macro to load it from the pointer to
335  * an object that is potentially pinned.
336  */
337 #define SGEN_LOAD_VTABLE(addr) ((*(mword*)(addr)) & ~SGEN_VTABLE_BITS_MASK)
338
339 #if defined(SGEN_GRAY_OBJECT_ENQUEUE) || SGEN_MAX_DEBUG_LEVEL >= 9
340 #define GRAY_OBJECT_ENQUEUE sgen_gray_object_enqueue
341 #define GRAY_OBJECT_DEQUEUE(queue,o) ((o) = sgen_gray_object_dequeue ((queue)))
342 #else
343 #define GRAY_OBJECT_ENQUEUE(queue,o) do {                               \
344                 if (G_UNLIKELY (!(queue)->first || (queue)->first->end == SGEN_GRAY_QUEUE_SECTION_SIZE)) \
345                         sgen_gray_object_enqueue ((queue), (o));        \
346                 else                                                    \
347                         (queue)->first->objects [(queue)->first->end++] = (o); \
348                 PREFETCH ((o));                                         \
349         } while (0)
350 #define GRAY_OBJECT_DEQUEUE(queue,o) do {                               \
351                 if (!(queue)->first)                                    \
352                         (o) = NULL;                                     \
353                 else if (G_UNLIKELY ((queue)->first->end == 1))         \
354                         (o) = sgen_gray_object_dequeue ((queue));               \
355                 else                                                    \
356                         (o) = (queue)->first->objects [--(queue)->first->end]; \
357         } while (0)
358 #endif
359
360 /*
361 List of what each bit on of the vtable gc bits means. 
362 */
363 enum {
364         SGEN_GC_BIT_BRIDGE_OBJECT = 1,
365 };
366
367 /* the runtime can register areas of memory as roots: we keep two lists of roots,
368  * a pinned root set for conservatively scanned roots and a normal one for
369  * precisely scanned roots (currently implemented as a single list).
370  */
371 typedef struct _RootRecord RootRecord;
372 struct _RootRecord {
373         char *end_root;
374         mword root_desc;
375 };
376
377 enum {
378         ROOT_TYPE_NORMAL = 0, /* "normal" roots */
379         ROOT_TYPE_PINNED = 1, /* roots without a GC descriptor */
380         ROOT_TYPE_WBARRIER = 2, /* roots with a write barrier */
381         ROOT_TYPE_NUM
382 };
383
384 extern SgenHashTable roots_hash [ROOT_TYPE_NUM];
385
386 typedef void (*IterateObjectCallbackFunc) (char*, size_t, void*);
387
388 int sgen_thread_handshake (BOOL suspend) MONO_INTERNAL;
389 gboolean sgen_suspend_thread (SgenThreadInfo *info) MONO_INTERNAL;
390 gboolean sgen_resume_thread (SgenThreadInfo *info) MONO_INTERNAL;
391 void sgen_wait_for_suspend_ack (int count) MONO_INTERNAL;
392 void sgen_os_init (void) MONO_INTERNAL;
393
394 gboolean sgen_is_worker_thread (MonoNativeThreadId thread) MONO_INTERNAL;
395
396 void sgen_update_heap_boundaries (mword low, mword high) MONO_INTERNAL;
397
398 void sgen_scan_area_with_callback (char *start, char *end, IterateObjectCallbackFunc callback, void *data, gboolean allow_flags) MONO_INTERNAL;
399 void sgen_check_section_scan_starts (GCMemSection *section) MONO_INTERNAL;
400
401 /* Keep in sync with description_for_type() in sgen-internal.c! */
402 enum {
403         INTERNAL_MEM_PIN_QUEUE,
404         INTERNAL_MEM_FRAGMENT,
405         INTERNAL_MEM_SECTION,
406         INTERNAL_MEM_SCAN_STARTS,
407         INTERNAL_MEM_FIN_TABLE,
408         INTERNAL_MEM_FINALIZE_ENTRY,
409         INTERNAL_MEM_FINALIZE_READY_ENTRY,
410         INTERNAL_MEM_DISLINK_TABLE,
411         INTERNAL_MEM_DISLINK,
412         INTERNAL_MEM_ROOTS_TABLE,
413         INTERNAL_MEM_ROOT_RECORD,
414         INTERNAL_MEM_STATISTICS,
415         INTERNAL_MEM_STAT_PINNED_CLASS,
416         INTERNAL_MEM_STAT_REMSET_CLASS,
417         INTERNAL_MEM_GRAY_QUEUE,
418         INTERNAL_MEM_MS_TABLES,
419         INTERNAL_MEM_MS_BLOCK_INFO,
420         INTERNAL_MEM_MS_BLOCK_INFO_SORT,
421         INTERNAL_MEM_EPHEMERON_LINK,
422         INTERNAL_MEM_WORKER_DATA,
423         INTERNAL_MEM_WORKER_JOB_DATA,
424         INTERNAL_MEM_BRIDGE_DATA,
425         INTERNAL_MEM_BRIDGE_HASH_TABLE,
426         INTERNAL_MEM_BRIDGE_HASH_TABLE_ENTRY,
427         INTERNAL_MEM_BRIDGE_ALIVE_HASH_TABLE,
428         INTERNAL_MEM_BRIDGE_ALIVE_HASH_TABLE_ENTRY,
429         INTERNAL_MEM_JOB_QUEUE_ENTRY,
430         INTERNAL_MEM_TOGGLEREF_DATA,
431         INTERNAL_MEM_CARDTABLE_MOD_UNION,
432         INTERNAL_MEM_BINARY_PROTOCOL,
433         INTERNAL_MEM_MAX
434 };
435
436 enum {
437         GENERATION_NURSERY,
438         GENERATION_OLD,
439         GENERATION_MAX
440 };
441
442 #ifdef SGEN_BINARY_PROTOCOL
443 #define BINARY_PROTOCOL_ARG(x)  ,x
444 #else
445 #define BINARY_PROTOCOL_ARG(x)
446 #endif
447
448 void sgen_init_internal_allocator (void) MONO_INTERNAL;
449
450 typedef struct _ObjectList ObjectList;
451 struct _ObjectList {
452         MonoObject *obj;
453         ObjectList *next;
454 };
455
456 typedef void (*CopyOrMarkObjectFunc) (void**, SgenGrayQueue*);
457 typedef void (*ScanObjectFunc) (char*, SgenGrayQueue*);
458 typedef void (*ScanVTypeFunc) (char*, mword desc, SgenGrayQueue* BINARY_PROTOCOL_ARG (size_t size));
459
460 typedef struct
461 {
462         ScanObjectFunc scan_func;
463         CopyOrMarkObjectFunc copy_func;
464         SgenGrayQueue *queue;
465 } ScanCopyContext;
466
467 void sgen_report_internal_mem_usage (void) MONO_INTERNAL;
468 void sgen_dump_internal_mem_usage (FILE *heap_dump_file) MONO_INTERNAL;
469 void sgen_dump_section (GCMemSection *section, const char *type) MONO_INTERNAL;
470 void sgen_dump_occupied (char *start, char *end, char *section_start) MONO_INTERNAL;
471
472 void sgen_register_moved_object (void *obj, void *destination) MONO_INTERNAL;
473
474 void sgen_register_fixed_internal_mem_type (int type, size_t size) MONO_INTERNAL;
475
476 void* sgen_alloc_internal (int type) MONO_INTERNAL;
477 void sgen_free_internal (void *addr, int type) MONO_INTERNAL;
478
479 void* sgen_alloc_internal_dynamic (size_t size, int type, gboolean assert_on_failure) MONO_INTERNAL;
480 void sgen_free_internal_dynamic (void *addr, size_t size, int type) MONO_INTERNAL;
481
482 void** sgen_find_optimized_pin_queue_area (void *start, void *end, int *num) MONO_INTERNAL;
483 void sgen_find_section_pin_queue_start_end (GCMemSection *section) MONO_INTERNAL;
484 void sgen_pin_objects_in_section (GCMemSection *section, ScanCopyContext ctx) MONO_INTERNAL;
485
486 void sgen_pin_stats_register_object (char *obj, size_t size);
487 void sgen_pin_stats_register_global_remset (char *obj);
488 void sgen_pin_stats_print_class_stats (void);
489
490 void sgen_sort_addresses (void **array, int size) MONO_INTERNAL;
491 void sgen_add_to_global_remset (gpointer ptr, gpointer obj) MONO_INTERNAL;
492
493 int sgen_get_current_collection_generation (void) MONO_INTERNAL;
494 gboolean sgen_collection_is_parallel (void) MONO_INTERNAL;
495 gboolean sgen_collection_is_concurrent (void) MONO_INTERNAL;
496 gboolean sgen_concurrent_collection_in_progress (void) MONO_INTERNAL;
497
498 typedef struct {
499         CopyOrMarkObjectFunc copy_or_mark_object;
500         ScanObjectFunc scan_object;
501         ScanVTypeFunc scan_vtype;
502         /*FIXME add allocation function? */
503 } SgenObjectOperations;
504
505 SgenObjectOperations *sgen_get_current_object_ops (void) MONO_INTERNAL;
506
507 typedef struct _SgenFragment SgenFragment;
508
509 struct _SgenFragment {
510         SgenFragment *next;
511         char *fragment_start;
512         char *fragment_next; /* the current soft limit for allocation */
513         char *fragment_end;
514         SgenFragment *next_in_order; /* We use a different entry for all active fragments so we can avoid SMR. */
515 };
516
517 typedef struct {
518         SgenFragment *alloc_head; /* List head to be used when allocating memory. Walk with fragment_next. */
519         SgenFragment *region_head; /* List head of the region used by this allocator. Walk with next_in_order. */
520 } SgenFragmentAllocator;
521
522 void sgen_fragment_allocator_add (SgenFragmentAllocator *allocator, char *start, char *end) MONO_INTERNAL;
523 void sgen_fragment_allocator_release (SgenFragmentAllocator *allocator) MONO_INTERNAL;
524 void* sgen_fragment_allocator_serial_alloc (SgenFragmentAllocator *allocator, size_t size) MONO_INTERNAL;
525 void* sgen_fragment_allocator_par_alloc (SgenFragmentAllocator *allocator, size_t size) MONO_INTERNAL;
526 void* sgen_fragment_allocator_serial_range_alloc (SgenFragmentAllocator *allocator, size_t desired_size, size_t minimum_size, size_t *out_alloc_size) MONO_INTERNAL;
527 void* sgen_fragment_allocator_par_range_alloc (SgenFragmentAllocator *allocator, size_t desired_size, size_t minimum_size, size_t *out_alloc_size) MONO_INTERNAL;
528 SgenFragment* sgen_fragment_allocator_alloc (void) MONO_INTERNAL;
529 void sgen_clear_allocator_fragments (SgenFragmentAllocator *allocator) MONO_INTERNAL;
530 void sgen_clear_range (char *start, char *end) MONO_INTERNAL;
531
532
533 /*
534 This is a space/speed compromise as we need to make sure the from/to space check is both O(1)
535 and only hit cache hot memory. On a 4Mb nursery it requires 1024 bytes, or 3% of your average
536 L1 cache. On small configs with a 512kb nursery, this goes to 0.4%.
537
538 Experimental results on how much space we waste with a 4Mb nursery:
539
540 Note that the wastage applies to the half nursery, or 2Mb:
541
542 Test 1 (compiling corlib):
543 9: avg: 3.1k
544 8: avg: 1.6k
545
546 */
547 #define SGEN_TO_SPACE_GRANULE_BITS 9
548 #define SGEN_TO_SPACE_GRANULE_IN_BYTES (1 << SGEN_TO_SPACE_GRANULE_BITS)
549
550 extern char *sgen_space_bitmap MONO_INTERNAL;
551 extern int sgen_space_bitmap_size MONO_INTERNAL;
552
553 static inline gboolean
554 sgen_nursery_is_to_space (char *object)
555 {
556         int idx = (object - sgen_nursery_start) >> SGEN_TO_SPACE_GRANULE_BITS;
557         int byte = idx / 8;
558         int bit = idx & 0x7;
559
560         SGEN_ASSERT (4, sgen_ptr_in_nursery (object), "object %p is not in nursery [%p - %p]", object, sgen_get_nursery_start (), sgen_get_nursery_end ());
561         SGEN_ASSERT (4, byte < sgen_space_bitmap_size, "byte index %d out of range", byte, sgen_space_bitmap_size);
562
563         return (sgen_space_bitmap [byte] & (1 << bit)) != 0;
564 }
565
566 static inline gboolean
567 sgen_nursery_is_from_space (char *object)
568 {
569         return !sgen_nursery_is_to_space (object);
570 }
571
572 static inline gboolean
573 sgen_nursery_is_object_alive (char *obj)
574 {
575         /* FIXME put this asserts under a non default level */
576         g_assert (sgen_ptr_in_nursery (obj));
577
578         if (sgen_nursery_is_to_space (obj))
579                 return TRUE;
580
581         if (SGEN_OBJECT_IS_PINNED (obj) || SGEN_OBJECT_IS_FORWARDED (obj))
582                 return TRUE;
583
584         return FALSE;
585 }
586
587 typedef struct {
588         gboolean is_split;
589
590         char* (*alloc_for_promotion) (MonoVTable *vtable, char *obj, size_t objsize, gboolean has_references);
591         char* (*par_alloc_for_promotion) (MonoVTable *vtable, char *obj, size_t objsize, gboolean has_references);
592
593         SgenObjectOperations serial_ops;
594         SgenObjectOperations parallel_ops;
595
596         void (*prepare_to_space) (char *to_space_bitmap, int space_bitmap_size);
597         void (*clear_fragments) (void);
598         SgenFragment* (*build_fragments_get_exclude_head) (void);
599         void (*build_fragments_release_exclude_head) (void);
600         void (*build_fragments_finish) (SgenFragmentAllocator *allocator);
601         void (*init_nursery) (SgenFragmentAllocator *allocator, char *start, char *end);
602
603         gboolean (*handle_gc_param) (const char *opt); /* Optional */
604         void (*print_gc_param_usage) (void); /* Optional */
605 } SgenMinorCollector;
606
607 extern SgenMinorCollector sgen_minor_collector;
608
609 void sgen_simple_nursery_init (SgenMinorCollector *collector) MONO_INTERNAL;
610 void sgen_split_nursery_init (SgenMinorCollector *collector) MONO_INTERNAL;
611
612 typedef void (*sgen_cardtable_block_callback) (mword start, mword size);
613 void sgen_major_collector_iterate_live_block_ranges (sgen_cardtable_block_callback callback) MONO_INTERNAL;
614
615 typedef struct _SgenMajorCollector SgenMajorCollector;
616 struct _SgenMajorCollector {
617         size_t section_size;
618         gboolean is_parallel;
619         gboolean is_concurrent;
620         gboolean supports_cardtable;
621         gboolean sweeps_lazily;
622
623         /*
624          * This is set to TRUE if the sweep for the last major
625          * collection has been completed.
626          */
627         gboolean *have_swept;
628         /*
629          * This is set to TRUE by the sweep if the next major
630          * collection should be synchronous (for evacuation).  For
631          * non-concurrent collectors, this should be NULL.
632          */
633         gboolean *want_synchronous_collection;
634
635         void* (*alloc_heap) (mword nursery_size, mword nursery_align, int nursery_bits);
636         gboolean (*is_object_live) (char *obj);
637         void* (*alloc_small_pinned_obj) (MonoVTable *vtable, size_t size, gboolean has_references);
638         void* (*alloc_degraded) (MonoVTable *vtable, size_t size);
639
640         SgenObjectOperations major_ops;
641         SgenObjectOperations major_concurrent_ops;
642
643         void* (*alloc_object) (MonoVTable *vtable, int size, gboolean has_references);
644         void* (*par_alloc_object) (MonoVTable *vtable, int size, gboolean has_references);
645         void (*free_pinned_object) (char *obj, size_t size);
646         void (*iterate_objects) (gboolean non_pinned, gboolean pinned, IterateObjectCallbackFunc callback, void *data);
647         void (*free_non_pinned_object) (char *obj, size_t size);
648         void (*find_pin_queue_start_ends) (SgenGrayQueue *queue);
649         void (*pin_objects) (SgenGrayQueue *queue);
650         void (*pin_major_object) (char *obj, SgenGrayQueue *queue);
651         void (*scan_card_table) (gboolean mod_union, SgenGrayQueue *queue);
652         void (*iterate_live_block_ranges) (sgen_cardtable_block_callback callback);
653         void (*update_cardtable_mod_union) (void);
654         void (*init_to_space) (void);
655         void (*sweep) (void);
656         void (*check_scan_starts) (void);
657         void (*dump_heap) (FILE *heap_dump_file);
658         gint64 (*get_used_size) (void);
659         void (*start_nursery_collection) (void);
660         void (*finish_nursery_collection) (void);
661         void (*start_major_collection) (void);
662         void (*finish_major_collection) (void);
663         void (*have_computed_minor_collection_allowance) (void);
664         gboolean (*ptr_is_in_non_pinned_space) (char *ptr, char **start);
665         gboolean (*obj_is_from_pinned_alloc) (char *obj);
666         void (*report_pinned_memory_usage) (void);
667         int (*get_num_major_sections) (void);
668         gboolean (*handle_gc_param) (const char *opt);
669         void (*print_gc_param_usage) (void);
670         gboolean (*is_worker_thread) (MonoNativeThreadId thread);
671         void (*post_param_init) (SgenMajorCollector *collector);
672         void* (*alloc_worker_data) (void);
673         void (*init_worker_thread) (void *data);
674         void (*reset_worker_data) (void *data);
675         gboolean (*is_valid_object) (char *object);
676         MonoVTable* (*describe_pointer) (char *pointer);
677         guint8* (*get_cardtable_mod_union_for_object) (char *object);
678         long long (*get_and_reset_num_major_objects_marked) (void);
679 };
680
681 extern SgenMajorCollector major_collector;
682
683 void sgen_marksweep_init (SgenMajorCollector *collector) MONO_INTERNAL;
684 void sgen_marksweep_fixed_init (SgenMajorCollector *collector) MONO_INTERNAL;
685 void sgen_marksweep_par_init (SgenMajorCollector *collector) MONO_INTERNAL;
686 void sgen_marksweep_fixed_par_init (SgenMajorCollector *collector) MONO_INTERNAL;
687 void sgen_marksweep_conc_init (SgenMajorCollector *collector) MONO_INTERNAL;
688 SgenMajorCollector* sgen_get_major_collector (void) MONO_INTERNAL;
689
690
691 typedef struct {
692         void (*wbarrier_set_field) (MonoObject *obj, gpointer field_ptr, MonoObject* value);
693         void (*wbarrier_set_arrayref) (MonoArray *arr, gpointer slot_ptr, MonoObject* value);
694         void (*wbarrier_arrayref_copy) (gpointer dest_ptr, gpointer src_ptr, int count);
695         void (*wbarrier_value_copy) (gpointer dest, gpointer src, int count, MonoClass *klass);
696         void (*wbarrier_object_copy) (MonoObject* obj, MonoObject *src);
697         void (*wbarrier_generic_nostore) (gpointer ptr);
698         void (*record_pointer) (gpointer ptr);
699
700         void (*finish_scan_remsets) (void *start_nursery, void *end_nursery, SgenGrayQueue *queue);
701
702         void (*prepare_for_major_collection) (void);
703
704         void (*finish_minor_collection) (void);
705         gboolean (*find_address) (char *addr);
706         gboolean (*find_address_with_cards) (char *cards_start, guint8 *cards, char *addr);
707 } SgenRemeberedSet;
708
709 SgenRemeberedSet *sgen_get_remset (void) MONO_INTERNAL;
710
711 static guint /*__attribute__((noinline)) not sure if this hint is a good idea*/
712 slow_object_get_size (MonoVTable *vtable, MonoObject* o)
713 {
714         MonoClass *klass = vtable->klass;
715
716         /*
717          * We depend on mono_string_length_fast and
718          * mono_array_length_fast not using the object's vtable.
719          */
720         if (klass == mono_defaults.string_class) {
721                 return sizeof (MonoString) + 2 * mono_string_length_fast ((MonoString*) o) + 2;
722         } else if (klass->rank) {
723                 MonoArray *array = (MonoArray*)o;
724                 size_t size = sizeof (MonoArray) + klass->sizes.element_size * mono_array_length_fast (array);
725                 if (G_UNLIKELY (array->bounds)) {
726                         size += sizeof (mono_array_size_t) - 1;
727                         size &= ~(sizeof (mono_array_size_t) - 1);
728                         size += sizeof (MonoArrayBounds) * klass->rank;
729                 }
730                 return size;
731         } else {
732                 /* from a created object: the class must be inited already */
733                 return klass->instance_size;
734         }
735 }
736
737 /*
738  * This function can be called on an object whose first word, the
739  * vtable field, is not intact.  This is necessary for the parallel
740  * collector.
741  */
742 static inline guint
743 sgen_par_object_get_size (MonoVTable *vtable, MonoObject* o)
744 {
745         mword descr = (mword)vtable->gc_descr;
746         mword type = descr & 0x7;
747
748         if (type == DESC_TYPE_RUN_LENGTH || type == DESC_TYPE_SMALL_BITMAP) {
749                 mword size = descr & 0xfff8;
750                 if (size == 0) /* This is used to encode a string */
751                         return sizeof (MonoString) + 2 * mono_string_length_fast ((MonoString*) o) + 2;
752                 return size;
753         } else if (type == DESC_TYPE_VECTOR) {
754                 int element_size = ((descr) >> VECTOR_ELSIZE_SHIFT) & MAX_ELEMENT_SIZE;
755                 MonoArray *array = (MonoArray*)o;
756                 size_t size = sizeof (MonoArray) + element_size * mono_array_length_fast (array);
757
758                 if (descr & VECTOR_KIND_ARRAY) {
759                         size += sizeof (mono_array_size_t) - 1;
760                         size &= ~(sizeof (mono_array_size_t) - 1);
761                         size += sizeof (MonoArrayBounds) * vtable->klass->rank;
762                 }
763                 return size;
764         }
765
766         return slow_object_get_size (vtable, o);
767 }
768
769 static inline guint
770 sgen_safe_object_get_size (MonoObject *obj)
771 {
772        char *forwarded;
773
774        if ((forwarded = SGEN_OBJECT_IS_FORWARDED (obj)))
775                obj = (MonoObject*)forwarded;
776
777        return sgen_par_object_get_size ((MonoVTable*)SGEN_LOAD_VTABLE (obj), obj);
778 }
779
780 const char* sgen_safe_name (void* obj) MONO_INTERNAL;
781
782 gboolean sgen_object_is_live (void *obj) MONO_INTERNAL;
783
784 void  sgen_init_fin_weak_hash (void) MONO_INTERNAL;
785
786 gboolean sgen_need_bridge_processing (void) MONO_INTERNAL;
787 void sgen_bridge_reset_data (void) MONO_INTERNAL;
788 void sgen_bridge_processing_stw_step (void) MONO_INTERNAL;
789 void sgen_bridge_processing_finish (int generation) MONO_INTERNAL;
790 void sgen_register_test_bridge_callbacks (const char *bridge_class_name) MONO_INTERNAL;
791 gboolean sgen_is_bridge_object (MonoObject *obj) MONO_INTERNAL;
792 gboolean sgen_is_bridge_class (MonoClass *class) MONO_INTERNAL;
793 void sgen_mark_bridge_object (MonoObject *obj) MONO_INTERNAL;
794 void sgen_bridge_register_finalized_object (MonoObject *object) MONO_INTERNAL;
795 void sgen_bridge_describe_pointer (MonoObject *object) MONO_INTERNAL;
796
797 void sgen_scan_togglerefs (char *start, char *end, ScanCopyContext ctx) MONO_INTERNAL;
798 void sgen_process_togglerefs (void) MONO_INTERNAL;
799
800 typedef mono_bool (*WeakLinkAlivePredicateFunc) (MonoObject*, void*);
801
802 void sgen_null_links_with_predicate (int generation, WeakLinkAlivePredicateFunc predicate, void *data) MONO_INTERNAL;
803
804 gboolean sgen_gc_is_object_ready_for_finalization (void *object) MONO_INTERNAL;
805 void sgen_gc_lock (void) MONO_INTERNAL;
806 void sgen_gc_unlock (void) MONO_INTERNAL;
807 void sgen_gc_event_moves (void) MONO_INTERNAL;
808
809 void sgen_queue_finalization_entry (MonoObject *obj) MONO_INTERNAL;
810 const char* sgen_generation_name (int generation) MONO_INTERNAL;
811
812 void sgen_collect_bridge_objects (int generation, ScanCopyContext ctx) MONO_INTERNAL;
813 void sgen_finalize_in_range (int generation, ScanCopyContext ctx) MONO_INTERNAL;
814 void sgen_null_link_in_range (int generation, gboolean before_finalization, ScanCopyContext ctx) MONO_INTERNAL;
815 void sgen_null_links_for_domain (MonoDomain *domain, int generation) MONO_INTERNAL;
816 void sgen_remove_finalizers_for_domain (MonoDomain *domain, int generation) MONO_INTERNAL;
817 void sgen_process_fin_stage_entries (void) MONO_INTERNAL;
818 void sgen_process_dislink_stage_entries (void) MONO_INTERNAL;
819 void sgen_register_disappearing_link (MonoObject *obj, void **link, gboolean track, gboolean in_gc) MONO_INTERNAL;
820
821 gboolean sgen_drain_gray_stack (int max_objs, ScanCopyContext ctx) MONO_INTERNAL;
822
823 enum {
824         SPACE_NURSERY,
825         SPACE_MAJOR,
826         SPACE_LOS
827 };
828
829 void sgen_pin_object (void *object, SgenGrayQueue *queue) MONO_INTERNAL;
830 void sgen_parallel_pin_or_update (void **ptr, void *obj, MonoVTable *vt, SgenGrayQueue *queue) MONO_INTERNAL;
831 void sgen_set_pinned_from_failed_allocation (mword objsize) MONO_INTERNAL;
832
833 void sgen_ensure_free_space (size_t size) MONO_INTERNAL;
834 void sgen_perform_collection (size_t requested_size, int generation_to_collect, const char *reason, gboolean wait_to_finish) MONO_INTERNAL;
835 gboolean sgen_has_critical_method (void) MONO_INTERNAL;
836 gboolean sgen_is_critical_method (MonoMethod *method) MONO_INTERNAL;
837
838 /* STW */
839
840 typedef struct {
841         int generation;
842         const char *reason;
843         gboolean is_overflow;
844         SGEN_TV_DECLARE (total_time);
845         SGEN_TV_DECLARE (stw_time);
846         SGEN_TV_DECLARE (bridge_time);
847 } GGTimingInfo;
848
849 int sgen_stop_world (int generation) MONO_INTERNAL;
850 int sgen_restart_world (int generation, GGTimingInfo *timing) MONO_INTERNAL;
851
852 /* LOS */
853
854 typedef struct _LOSObject LOSObject;
855 struct _LOSObject {
856         LOSObject *next;
857         mword size; /* this is the object size, lowest bit used for pin/mark */
858         guint8 *cardtable_mod_union; /* only used by the concurrent collector */
859 #if SIZEOF_VOID_P < 8
860         mword dummy;            /* to align object to sizeof (double) */
861 #endif
862         char data [MONO_ZERO_LEN_ARRAY];
863 };
864
865 #define ARRAY_OBJ_INDEX(ptr,array,elem_size) (((char*)(ptr) - ((char*)(array) + G_STRUCT_OFFSET (MonoArray, vector))) / (elem_size))
866
867 extern LOSObject *los_object_list;
868 extern mword los_memory_usage;
869
870 void sgen_los_free_object (LOSObject *obj) MONO_INTERNAL;
871 void* sgen_los_alloc_large_inner (MonoVTable *vtable, size_t size) MONO_INTERNAL;
872 void sgen_los_sweep (void) MONO_INTERNAL;
873 gboolean sgen_ptr_is_in_los (char *ptr, char **start) MONO_INTERNAL;
874 void sgen_los_iterate_objects (IterateObjectCallbackFunc cb, void *user_data) MONO_INTERNAL;
875 void sgen_los_iterate_live_block_ranges (sgen_cardtable_block_callback callback) MONO_INTERNAL;
876 void sgen_los_scan_card_table (gboolean mod_union, SgenGrayQueue *queue) MONO_INTERNAL;
877 void sgen_los_update_cardtable_mod_union (void) MONO_INTERNAL;
878 void sgen_major_collector_scan_card_table (SgenGrayQueue *queue) MONO_INTERNAL;
879 gboolean sgen_los_is_valid_object (char *object) MONO_INTERNAL;
880 gboolean mono_sgen_los_describe_pointer (char *ptr) MONO_INTERNAL;
881 LOSObject* sgen_los_header_for_object (char *data) MONO_INTERNAL;
882 mword sgen_los_object_size (LOSObject *obj) MONO_INTERNAL;
883 void sgen_los_pin_object (char *obj) MONO_INTERNAL;
884 void sgen_los_unpin_object (char *obj) MONO_INTERNAL;
885 gboolean sgen_los_object_is_pinned (char *obj) MONO_INTERNAL;
886
887
888 /* nursery allocator */
889
890 void sgen_clear_nursery_fragments (void) MONO_INTERNAL;
891 void sgen_nursery_allocator_prepare_for_pinning (void) MONO_INTERNAL;
892 void sgen_nursery_allocator_set_nursery_bounds (char *nursery_start, char *nursery_end) MONO_INTERNAL;
893 mword sgen_build_nursery_fragments (GCMemSection *nursery_section, void **start, int num_entries, SgenGrayQueue *unpin_queue) MONO_INTERNAL;
894 void sgen_init_nursery_allocator (void) MONO_INTERNAL;
895 void sgen_nursery_allocator_init_heavy_stats (void) MONO_INTERNAL;
896 void sgen_alloc_init_heavy_stats (void) MONO_INTERNAL;
897 char* sgen_nursery_alloc_get_upper_alloc_bound (void) MONO_INTERNAL;
898 void* sgen_nursery_alloc (size_t size) MONO_INTERNAL;
899 void* sgen_nursery_alloc_range (size_t size, size_t min_size, size_t *out_alloc_size) MONO_INTERNAL;
900 MonoVTable* sgen_get_array_fill_vtable (void) MONO_INTERNAL;
901 gboolean sgen_can_alloc_size (size_t size) MONO_INTERNAL;
902 void sgen_nursery_retire_region (void *address, ptrdiff_t size) MONO_INTERNAL;
903
904 void sgen_nursery_alloc_prepare_for_minor (void) MONO_INTERNAL;
905 void sgen_nursery_alloc_prepare_for_major (void) MONO_INTERNAL;
906
907 char* sgen_alloc_for_promotion (char *obj, size_t objsize, gboolean has_references) MONO_INTERNAL;
908 char* sgen_par_alloc_for_promotion (char *obj, size_t objsize, gboolean has_references) MONO_INTERNAL;
909
910 /* TLS Data */
911
912 extern MonoNativeTlsKey thread_info_key;
913
914 #ifdef HAVE_KW_THREAD
915 extern __thread SgenThreadInfo *sgen_thread_info;
916 extern __thread char *stack_end;
917 #endif
918
919 #ifdef HAVE_KW_THREAD
920 #define TLAB_ACCESS_INIT
921 #define IN_CRITICAL_REGION sgen_thread_info->in_critical_region
922 #else
923 #define TLAB_ACCESS_INIT        SgenThreadInfo *__thread_info__ = mono_native_tls_get_value (thread_info_key)
924 #define IN_CRITICAL_REGION (__thread_info__->in_critical_region)
925 #endif
926
927 #ifndef DISABLE_CRITICAL_REGION
928
929 #ifdef HAVE_KW_THREAD
930 #define IN_CRITICAL_REGION sgen_thread_info->in_critical_region
931 #else
932 #define IN_CRITICAL_REGION (__thread_info__->in_critical_region)
933 #endif
934
935 /* Enter must be visible before anything is done in the critical region. */
936 #define ENTER_CRITICAL_REGION do { mono_atomic_store_acquire (&IN_CRITICAL_REGION, 1); } while (0)
937
938 /* Exit must make sure all critical regions stores are visible before it signal the end of the region. 
939  * We don't need to emit a full barrier since we
940  */
941 #define EXIT_CRITICAL_REGION  do { mono_atomic_store_release (&IN_CRITICAL_REGION, 0); } while (0)
942
943 #endif
944
945 #ifdef HAVE_KW_THREAD
946 #define EMIT_TLS_ACCESS(mb,member,key)  do {    \
947         mono_mb_emit_byte ((mb), MONO_CUSTOM_PREFIX);   \
948         mono_mb_emit_byte ((mb), CEE_MONO_TLS);         \
949         mono_mb_emit_i4 ((mb), (key));          \
950         } while (0)
951 #else
952
953 #if defined(__APPLE__) || defined (HOST_WIN32)
954 #define EMIT_TLS_ACCESS(mb,member,key)  do {    \
955         mono_mb_emit_byte ((mb), MONO_CUSTOM_PREFIX);   \
956         mono_mb_emit_byte ((mb), CEE_MONO_TLS);         \
957         mono_mb_emit_i4 ((mb), TLS_KEY_SGEN_THREAD_INFO);       \
958         mono_mb_emit_icon ((mb), G_STRUCT_OFFSET (SgenThreadInfo, member));     \
959         mono_mb_emit_byte ((mb), CEE_ADD);              \
960         mono_mb_emit_byte ((mb), CEE_LDIND_I);          \
961         } while (0)
962 #else
963 #define EMIT_TLS_ACCESS(mb,member,key)  do { g_error ("sgen is not supported when using --with-tls=pthread.\n"); } while (0)
964 #endif
965
966 #endif
967
968 /* Other globals */
969
970 extern GCMemSection *nursery_section;
971 extern int stat_major_gcs;
972 extern guint32 collect_before_allocs;
973 extern guint32 verify_before_allocs;
974 extern gboolean has_per_allocation_action;
975 extern int degraded_mode;
976 extern int default_nursery_size;
977 extern guint32 tlab_size;
978 extern NurseryClearPolicy nursery_clear_policy;
979 extern gboolean sgen_try_free_some_memory;
980
981 extern LOCK_DECLARE (gc_mutex);
982
983 extern int do_pin_stats;
984
985 /* Nursery helpers. */
986
987 static inline void
988 sgen_set_nursery_scan_start (char *p)
989 {
990         int idx = (p - (char*)nursery_section->data) / SGEN_SCAN_START_SIZE;
991         char *old = nursery_section->scan_starts [idx];
992         if (!old || old > p)
993                 nursery_section->scan_starts [idx] = p;
994 }
995
996
997 /* Object Allocation */
998
999 typedef enum {
1000         ATYPE_NORMAL,
1001         ATYPE_VECTOR,
1002         ATYPE_SMALL,
1003         ATYPE_STRING,
1004         ATYPE_NUM
1005 } SgenAllocatorType;
1006
1007 void sgen_init_tlab_info (SgenThreadInfo* info);
1008 void sgen_clear_tlabs (void);
1009 void sgen_set_use_managed_allocator (gboolean flag);
1010 gboolean sgen_is_managed_allocator (MonoMethod *method);
1011 gboolean sgen_has_managed_allocator (void);
1012
1013 /* Debug support */
1014
1015 void sgen_check_consistency (void);
1016 void sgen_check_mod_union_consistency (void);
1017 void sgen_check_major_refs (void);
1018 void sgen_check_whole_heap (gboolean allow_missing_pinning);
1019 void sgen_check_whole_heap_stw (void) MONO_INTERNAL;
1020 void sgen_check_objref (char *obj);
1021 void sgen_check_major_heap_marked (void) MONO_INTERNAL;
1022 void sgen_check_nursery_objects_pinned (gboolean pinned) MONO_INTERNAL;
1023
1024 /* Write barrier support */
1025
1026 /*
1027  * This causes the compile to extend the liveness of 'v' till the call to dummy_use
1028  */
1029 static inline void
1030 sgen_dummy_use (gpointer v) {
1031 #if defined(__GNUC__)
1032         __asm__ volatile ("" : "=r"(v) : "r"(v));
1033 #elif defined(_MSC_VER)
1034         __asm {
1035                 mov eax, v;
1036                 and eax, eax;
1037         };
1038 #else
1039 #error "Implement sgen_dummy_use for your compiler"
1040 #endif
1041 }
1042
1043 /* Environment variable parsing */
1044
1045 #define MONO_GC_PARAMS_NAME     "MONO_GC_PARAMS"
1046 #define MONO_GC_DEBUG_NAME      "MONO_GC_DEBUG"
1047
1048 gboolean sgen_parse_environment_string_extract_number (const char *str, glong *out) MONO_INTERNAL;
1049 void sgen_env_var_error (const char *env_var, const char *fallback, const char *description_format, ...) MONO_INTERNAL;
1050
1051 /* Utilities */
1052
1053 void sgen_qsort (void *base, size_t nel, size_t width, int (*compar) (const void*, const void*)) MONO_INTERNAL;
1054
1055 #endif /* HAVE_SGEN_GC */
1056
1057 #endif /* __MONO_SGENGC_H__ */