Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mono / metadata / gc-internal.h
1 /*
2  * metadata/gc-internal.h: Internal GC interface
3  *
4  * Author: Paolo Molaro <lupus@ximian.com>
5  *
6  * (C) 2002 Ximian, Inc.
7  */
8
9 #ifndef __MONO_METADATA_GC_INTERNAL_H__
10 #define __MONO_METADATA_GC_INTERNAL_H__
11
12 #include <glib.h>
13 #include <mono/metadata/object-internals.h>
14 #include <mono/metadata/threads-types.h>
15 #include <mono/utils/gc_wrapper.h>
16
17 #define mono_domain_finalizers_lock(domain) EnterCriticalSection (&(domain)->finalizable_objects_hash_lock);
18 #define mono_domain_finalizers_unlock(domain) LeaveCriticalSection (&(domain)->finalizable_objects_hash_lock);
19
20 /* Register a memory area as a conservatively scanned GC root */
21 #define MONO_GC_REGISTER_ROOT(x) mono_gc_register_root ((char*)&(x), sizeof(x), NULL)
22
23 #define MONO_GC_UNREGISTER_ROOT(x) mono_gc_deregister_root ((char*)&(x))
24
25 /*
26  * Register a memory location as a root pointing to memory allocated using
27  * mono_gc_alloc_fixed (). This includes MonoGHashTable.
28  */
29 #ifdef HAVE_SGEN_GC
30 /* The result of alloc_fixed () is not GC tracked memory */
31 #define MONO_GC_REGISTER_ROOT_FIXED(x)
32 #else
33 #define MONO_GC_REGISTER_ROOT_FIXED(x) MONO_GC_REGISTER_ROOT ((x))
34 #endif
35
36 /*
37  * Return a GC descriptor for an array containing N pointers to memory allocated
38  * by mono_gc_alloc_fixed ().
39  */
40 #ifdef HAVE_SGEN_GC
41 /* The result of alloc_fixed () is not GC tracked memory */
42 #define MONO_GC_ROOT_DESCR_FOR_FIXED(n) mono_gc_make_root_descr_all_refs (0)
43 #else
44 /* The result of alloc_fixed () is GC tracked memory */
45 #define MONO_GC_ROOT_DESCR_FOR_FIXED(n) NULL
46 #endif
47
48 /* Register a memory location holding a single object reference as a GC root */
49 #define MONO_GC_REGISTER_ROOT_SINGLE(x) do { \
50         g_assert (sizeof (x) == sizeof (MonoObject*)); \
51         mono_gc_register_root ((char*)&(x), sizeof(MonoObject*), mono_gc_make_root_descr_all_refs (1)); \
52         } while (0)
53
54 /*
55  * This is used for fields which point to objects which are kept alive by other references
56  * when using Boehm.
57  */
58 #ifdef HAVE_SGEN_GC
59 #define MONO_GC_REGISTER_ROOT_IF_MOVING(x) do { \
60                 MONO_GC_REGISTER_ROOT_SINGLE(x);                \
61 } while (0)
62
63 #define MONO_GC_UNREGISTER_ROOT_IF_MOVING(x) do { \
64         MONO_GC_UNREGISTER_ROOT (x); \
65 } while (0)
66 #else
67 #define MONO_GC_REGISTER_ROOT_IF_MOVING(x)
68 #define MONO_GC_UNREGISTER_ROOT_IF_MOVING(x)
69 #endif
70
71 /* useful until we keep track of gc-references in corlib etc. */
72 #ifdef HAVE_SGEN_GC
73 #define IS_GC_REFERENCE(t) FALSE
74 #else
75 #define IS_GC_REFERENCE(t) ((t)->type == MONO_TYPE_U && class->image == mono_defaults.corlib)
76 #endif
77
78 void   mono_object_register_finalizer               (MonoObject  *obj) MONO_INTERNAL;
79 void   ves_icall_System_GC_InternalCollect          (int          generation) MONO_INTERNAL;
80 gint64 ves_icall_System_GC_GetTotalMemory           (MonoBoolean  forceCollection) MONO_INTERNAL;
81 void   ves_icall_System_GC_KeepAlive                (MonoObject  *obj) MONO_INTERNAL;
82 void   ves_icall_System_GC_ReRegisterForFinalize    (MonoObject  *obj) MONO_INTERNAL;
83 void   ves_icall_System_GC_SuppressFinalize         (MonoObject  *obj) MONO_INTERNAL;
84 void   ves_icall_System_GC_WaitForPendingFinalizers (void) MONO_INTERNAL;
85
86 MonoObject *ves_icall_System_GCHandle_GetTarget (guint32 handle) MONO_INTERNAL;
87 guint32     ves_icall_System_GCHandle_GetTargetHandle (MonoObject *obj, guint32 handle, gint32 type) MONO_INTERNAL;
88 void        ves_icall_System_GCHandle_FreeHandle (guint32 handle) MONO_INTERNAL;
89 gpointer    ves_icall_System_GCHandle_GetAddrOfPinnedObject (guint32 handle) MONO_INTERNAL;
90 void        ves_icall_System_GC_register_ephemeron_array (MonoObject *array) MONO_INTERNAL;
91 MonoObject  *ves_icall_System_GC_get_ephemeron_tombstone (void) MONO_INTERNAL;
92
93 extern void mono_gc_init (void) MONO_INTERNAL;
94 extern void mono_gc_base_init (void) MONO_INTERNAL;
95 extern void mono_gc_cleanup (void) MONO_INTERNAL;
96 extern void mono_gc_enable (void) MONO_INTERNAL;
97 extern void mono_gc_disable (void) MONO_INTERNAL;
98
99 /*
100  * Return whenever the current thread is registered with the GC (i.e. started
101  * by the GC pthread wrappers on unix.
102  */
103 extern gboolean mono_gc_is_gc_thread (void) MONO_INTERNAL;
104
105 /*
106  * Try to register a foreign thread with the GC, if we fail or the backend
107  * can't cope with this concept - we return FALSE.
108  */
109 extern gboolean mono_gc_register_thread (void *baseptr) MONO_INTERNAL;
110
111 extern gboolean mono_gc_is_finalizer_internal_thread (MonoInternalThread *thread) MONO_INTERNAL;
112
113 /* only valid after the RECLAIM_START GC event and before RECLAIM_END
114  * Not exported in public headers, but can be linked to (unsupported).
115  */
116 extern gboolean mono_object_is_alive (MonoObject* obj);
117 extern gboolean mono_gc_is_finalizer_thread (MonoThread *thread);
118 extern gpointer mono_gc_out_of_memory (size_t size);
119 extern void     mono_gc_enable_events (void);
120
121 /* disappearing link functionality */
122 void        mono_gc_weak_link_add    (void **link_addr, MonoObject *obj, gboolean track) MONO_INTERNAL;
123 void        mono_gc_weak_link_remove (void **link_addr) MONO_INTERNAL;
124 MonoObject *mono_gc_weak_link_get    (void **link_addr) MONO_INTERNAL;
125
126 #ifndef HAVE_SGEN_GC
127 void    mono_gc_add_weak_track_handle    (MonoObject *obj, guint32 gchandle) MONO_INTERNAL;
128 void    mono_gc_change_weak_track_handle (MonoObject *old_obj, MonoObject *obj, guint32 gchandle) MONO_INTERNAL;
129 void    mono_gc_remove_weak_track_handle (guint32 gchandle) MONO_INTERNAL;
130 GSList* mono_gc_remove_weak_track_object (MonoDomain *domain, MonoObject *obj) MONO_INTERNAL;
131 #endif
132
133 /*Ephemeron functionality. Sgen only*/
134 gboolean    mono_gc_ephemeron_array_add (MonoObject *obj) MONO_INTERNAL;
135
136
137 MonoBoolean
138 GCHandle_CheckCurrentDomain (guint32 gchandle) MONO_INTERNAL;
139
140 /* simple interface for data structures needed in the runtime */
141 void* mono_gc_make_descr_from_bitmap (gsize *bitmap, int numbits) MONO_INTERNAL;
142
143 /* Return a root descriptor for a root with all refs */
144 void* mono_gc_make_root_descr_all_refs (int numbits) MONO_INTERNAL;
145
146 /* User defined marking function */
147 /* It should work like this:
148  * foreach (ref in GC references in the are structure pointed to by ADDR)
149  *    mark_func (ref)
150  */
151 typedef void (*MonoGCMarkFunc)     (void **addr);
152 typedef void (*MonoGCRootMarkFunc) (void *addr, MonoGCMarkFunc mark_func);
153
154 /* Create a descriptor with a user defined marking function */
155 void *mono_gc_make_root_descr_user (MonoGCRootMarkFunc marker);
156
157 /* desc is the result from mono_gc_make_descr*. A NULL value means
158  * all the words might contain GC pointers.
159  * The memory is non-moving and it will be explicitly deallocated.
160  * size bytes will be available from the returned address (ie, descr
161  * must not be stored in the returned memory)
162  * NOTE: Under Boehm, this returns memory allocated using GC_malloc, so the result should
163  * be stored into a location registered using MONO_GC_REGISTER_ROOT_FIXED ().
164  */
165 void* mono_gc_alloc_fixed            (size_t size, void *descr) MONO_INTERNAL;
166 void  mono_gc_free_fixed             (void* addr) MONO_INTERNAL;
167
168 /* make sure the gchandle was allocated for an object in domain */
169 gboolean mono_gchandle_is_in_domain (guint32 gchandle, MonoDomain *domain) MONO_INTERNAL;
170 void     mono_gchandle_free_domain  (MonoDomain *domain) MONO_INTERNAL;
171
172 typedef void (*FinalizerThreadCallback) (gpointer user_data);
173
174 /* if there are finalizers to run, run them. Returns the number of finalizers run */
175 gboolean mono_gc_pending_finalizers (void) MONO_INTERNAL;
176 void     mono_gc_finalize_notify    (void) MONO_INTERNAL;
177
178 void* mono_gc_alloc_pinned_obj (MonoVTable *vtable, size_t size) MONO_INTERNAL;
179 void* mono_gc_alloc_obj (MonoVTable *vtable, size_t size) MONO_INTERNAL;
180 void* mono_gc_alloc_vector (MonoVTable *vtable, size_t size, uintptr_t max_length) MONO_INTERNAL;
181 void* mono_gc_alloc_array (MonoVTable *vtable, size_t size, uintptr_t max_length, uintptr_t bounds_size) MONO_INTERNAL;
182 void* mono_gc_alloc_string (MonoVTable *vtable, size_t size, gint32 len) MONO_INTERNAL;
183 void* mono_gc_make_descr_for_string (gsize *bitmap, int numbits) MONO_INTERNAL;
184 void* mono_gc_make_descr_for_object (gsize *bitmap, int numbits, size_t obj_size) MONO_INTERNAL;
185 void* mono_gc_make_descr_for_array (int vector, gsize *elem_bitmap, int numbits, size_t elem_size) MONO_INTERNAL;
186
187 void  mono_gc_register_for_finalization (MonoObject *obj, void *user_data) MONO_INTERNAL;
188 void  mono_gc_add_memory_pressure (gint64 value) MONO_INTERNAL;
189 int   mono_gc_register_root (char *start, size_t size, void *descr) MONO_INTERNAL;
190 void  mono_gc_deregister_root (char* addr) MONO_INTERNAL;
191 int   mono_gc_finalizers_for_domain (MonoDomain *domain, MonoObject **out_array, int out_size) MONO_INTERNAL;
192 void  mono_gc_run_finalize (void *obj, void *data) MONO_INTERNAL;
193 void  mono_gc_clear_domain (MonoDomain * domain) MONO_INTERNAL;
194 void* mono_gc_alloc_mature (MonoVTable *vtable) MONO_INTERNAL;
195
196 /* 
197  * Register a root which can only be written using a write barrier.
198  * Writes to the root must be done using a write barrier (MONO_ROOT_SETREF).
199  * If the root uses an user defined mark routine, the writes are not required to be
200  * to the area between START and START+SIZE.
201  * The write barrier allows the GC to avoid scanning this root at each collection, so it
202  * is more efficient.
203  * FIXME: Add an API for clearing remset entries if a root with a user defined
204  * mark routine is deleted.
205  */
206 int mono_gc_register_root_wbarrier (char *start, size_t size, void *descr) MONO_INTERNAL;
207
208 void mono_gc_wbarrier_set_root (gpointer ptr, MonoObject *value) MONO_INTERNAL;
209
210 /* Set a field of a root registered using mono_gc_register_root_wbarrier () */
211 #define MONO_ROOT_SETREF(s,fieldname,value) do {        \
212         mono_gc_wbarrier_set_root (&((s)->fieldname), (MonoObject*)value); \
213 } while (0)
214
215 void  mono_gc_finalize_threadpool_threads (void) MONO_INTERNAL;
216
217 /* fast allocation support */
218
219 /* Accessible using mono_marshal_wrapper_info_from_wrapper () */
220 typedef struct {
221         const char *gc_name;
222         int alloc_type;
223 } AllocatorWrapperInfo;
224
225 MonoMethod* mono_gc_get_managed_allocator (MonoVTable *vtable, gboolean for_box) MONO_INTERNAL;
226 MonoMethod* mono_gc_get_managed_array_allocator (MonoVTable *vtable, int rank) MONO_INTERNAL;
227 MonoMethod *mono_gc_get_managed_allocator_by_type (int atype) MONO_INTERNAL;
228
229 guint32 mono_gc_get_managed_allocator_types (void) MONO_INTERNAL;
230
231 /* Return a short string identifying the GC, indented to be saved in AOT images */
232 const char *mono_gc_get_gc_name (void) MONO_INTERNAL;
233
234 /* Fast write barriers */
235 MonoMethod* mono_gc_get_write_barrier (void) MONO_INTERNAL;
236
237 /* Fast valuetype copy */
238 void mono_gc_wbarrier_value_copy_bitmap (gpointer dest, gpointer src, int size, unsigned bitmap) MONO_INTERNAL;
239
240 /* helper for the managed alloc support */
241 MonoString *mono_string_alloc (int length) MONO_INTERNAL;
242
243 /* 
244  * Functions supplied by the runtime and called by the GC. Currently only used
245  * by SGEN.
246  */
247 typedef struct {
248         /* 
249          * Function called during thread startup/attach to allocate thread-local data 
250          * needed by the other functions.
251          */
252         gpointer (*thread_attach_func) (void);
253         /* FIXME: Add a cleanup function too */
254         /* 
255          * Function called from every thread when suspending for GC. It can save
256          * data needed for marking from thread stacks. user_data is the data returned 
257          * by attach_func. This might called with GC locks held and the word stopped,
258          * so it shouldn't do any synchronization etc.
259          */
260         void (*thread_suspend_func) (gpointer user_data, void *sigcontext);
261         /* 
262          * Function called to mark from thread stacks. user_data is the data returned 
263          * by attach_func. This is called twice, with the word stopped:
264          * - in the first pass, it should mark areas of the stack using
265          *   conservative marking by calling mono_gc_conservatively_scan_area ().
266          * - in the second pass, it should mark the remaining areas of the stack
267          *   using precise marking by calling mono_gc_scan_object ().
268          */
269         void (*thread_mark_func) (gpointer user_data, guint8 *stack_start, guint8 *stack_end, gboolean precise);
270 } MonoGCCallbacks;
271
272 /* Set the callback functions callable by the GC */
273 void mono_gc_set_gc_callbacks (MonoGCCallbacks *callbacks) MONO_INTERNAL;
274 MonoGCCallbacks *mono_gc_get_gc_callbacks (void) MONO_INTERNAL;
275
276 /* Functions callable from the thread mark func */
277
278 /* Scan the memory area between START and END conservatively */
279 void mono_gc_conservatively_scan_area (void *start, void *end) MONO_INTERNAL;
280
281 /* Scan OBJ, returning its new address */
282 void *mono_gc_scan_object (void *obj) MONO_INTERNAL;
283
284 /* Return the bitmap encoded by a descriptor */
285 gsize* mono_gc_get_bitmap_for_descr (void *descr, int *numbits) MONO_INTERNAL;
286
287 /* Return the suspend signal number used by the GC to suspend threads,
288    or -1 if not applicable. */
289 int mono_gc_get_suspend_signal (void) MONO_INTERNAL;
290
291 /*
292  * Return a human readable description of the GC in malloc-ed memory.
293  */
294 char* mono_gc_get_description (void) MONO_INTERNAL;
295
296 /*
297  * Configure the GC to desktop mode
298  */
299 void mono_gc_set_desktop_mode (void) MONO_INTERNAL;
300
301 /*
302  * Return whenever this GC can move objects
303  */
304 gboolean mono_gc_is_moving (void) MONO_INTERNAL;
305
306 typedef void* (*MonoGCLockedCallbackFunc) (void *data);
307
308 void* mono_gc_invoke_with_gc_lock (MonoGCLockedCallbackFunc func, void *data) MONO_INTERNAL;
309
310 int mono_gc_get_los_limit (void) MONO_INTERNAL;
311
312 guint8* mono_gc_get_card_table (int *shift_bits, gpointer *card_mask) MONO_INTERNAL;
313
314 void* mono_gc_get_nursery (int *shift_bits, size_t *size) MONO_INTERNAL;
315
316 /*
317  * Return whenever GC is disabled
318  */
319 gboolean mono_gc_is_disabled (void) MONO_INTERNAL;
320
321 #if defined(__MACH__)
322 void mono_gc_register_mach_exception_thread (pthread_t thread) MONO_INTERNAL;
323 pthread_t mono_gc_get_mach_exception_thread (void) MONO_INTERNAL;
324 #endif
325
326 gboolean mono_gc_parse_environment_string_extract_number (const char *str, glong *out) MONO_INTERNAL;
327
328 #endif /* __MONO_METADATA_GC_INTERNAL_H__ */
329