[sgen] Don't force synchronous collection unless requested by the user.
[mono.git] / mono / metadata / sgen-alloc.c
1 /*
2  * sgen-alloc.c: Object allocation routines + managed allocators
3  *
4  * Author:
5  *      Paolo Molaro (lupus@ximian.com)
6  *  Rodrigo Kumpera (kumpera@gmail.com)
7  *
8  * Copyright 2005-2011 Novell, Inc (http://www.novell.com)
9  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
10  * Copyright 2011 Xamarin, Inc.
11  * Copyright (C) 2012 Xamarin Inc
12  *
13  * This library is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Library General Public
15  * License 2.0 as published by the Free Software Foundation;
16  *
17  * This library is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Library General Public License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License 2.0 along with this library; if not, write to the Free
24  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  */
26
27 /*
28  * ######################################################################
29  * ########  Object allocation
30  * ######################################################################
31  * This section of code deals with allocating memory for objects.
32  * There are several ways:
33  * *) allocate large objects
34  * *) allocate normal objects
35  * *) fast lock-free allocation
36  * *) allocation of pinned objects
37  */
38
39 #include "config.h"
40 #ifdef HAVE_SGEN_GC
41
42 #include "metadata/sgen-gc.h"
43 #include "metadata/sgen-protocol.h"
44 #include "metadata/sgen-memory-governor.h"
45 #include "metadata/profiler-private.h"
46 #include "metadata/marshal.h"
47 #include "metadata/method-builder.h"
48 #include "utils/mono-memory-model.h"
49 #include "utils/mono-counters.h"
50
51 #define ALIGN_UP                SGEN_ALIGN_UP
52 #define ALLOC_ALIGN             SGEN_ALLOC_ALIGN
53 #define ALLOC_ALIGN_BITS        SGEN_ALLOC_ALIGN_BITS
54 #define MAX_SMALL_OBJ_SIZE      SGEN_MAX_SMALL_OBJ_SIZE
55 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
56
57 #define OPDEF(a,b,c,d,e,f,g,h,i,j) \
58         a = i,
59
60 enum {
61 #include "mono/cil/opcode.def"
62         CEE_LAST
63 };
64
65 #undef OPDEF
66
67 static gboolean use_managed_allocator = TRUE;
68
69 #ifdef HEAVY_STATISTICS
70 static long long stat_objects_alloced = 0;
71 static long long stat_bytes_alloced = 0;
72 static long long stat_bytes_alloced_los = 0;
73
74 #endif
75
76 /*
77  * Allocation is done from a Thread Local Allocation Buffer (TLAB). TLABs are allocated
78  * from nursery fragments.
79  * tlab_next is the pointer to the space inside the TLAB where the next object will 
80  * be allocated.
81  * tlab_temp_end is the pointer to the end of the temporary space reserved for
82  * the allocation: it allows us to set the scan starts at reasonable intervals.
83  * tlab_real_end points to the end of the TLAB.
84  */
85
86 /*
87  * FIXME: What is faster, a TLS variable pointing to a structure, or separate TLS 
88  * variables for next+temp_end ?
89  */
90 #ifdef HAVE_KW_THREAD
91 static __thread char *tlab_start;
92 static __thread char *tlab_next;
93 static __thread char *tlab_temp_end;
94 static __thread char *tlab_real_end;
95 /* Used by the managed allocator/wbarrier */
96 static __thread char **tlab_next_addr;
97 #endif
98
99 #ifdef HAVE_KW_THREAD
100 #define TLAB_START      tlab_start
101 #define TLAB_NEXT       tlab_next
102 #define TLAB_TEMP_END   tlab_temp_end
103 #define TLAB_REAL_END   tlab_real_end
104 #else
105 #define TLAB_START      (__thread_info__->tlab_start)
106 #define TLAB_NEXT       (__thread_info__->tlab_next)
107 #define TLAB_TEMP_END   (__thread_info__->tlab_temp_end)
108 #define TLAB_REAL_END   (__thread_info__->tlab_real_end)
109 #endif
110
111 static void*
112 alloc_degraded (MonoVTable *vtable, size_t size, gboolean for_mature)
113 {
114         static int last_major_gc_warned = -1;
115         static int num_degraded = 0;
116
117         void *p;
118
119         if (!for_mature) {
120                 if (last_major_gc_warned < stat_major_gcs) {
121                         ++num_degraded;
122                         if (num_degraded == 1 || num_degraded == 3)
123                                 fprintf (stderr, "Warning: Degraded allocation.  Consider increasing nursery-size if the warning persists.\n");
124                         else if (num_degraded == 10)
125                                 fprintf (stderr, "Warning: Repeated degraded allocation.  Consider increasing nursery-size.\n");
126                         last_major_gc_warned = stat_major_gcs;
127                 }
128                 InterlockedExchangeAdd (&degraded_mode, size);
129                 sgen_ensure_free_space (size);
130         } else {
131                 if (sgen_need_major_collection (size))
132                         sgen_perform_collection (size, GENERATION_OLD, "mature allocation failure", !for_mature);
133         }
134
135
136         p = major_collector.alloc_degraded (vtable, size);
137
138         if (for_mature) {
139                 MONO_GC_MAJOR_OBJ_ALLOC_MATURE ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
140         } else {
141                 binary_protocol_alloc_degraded (p, vtable, size);
142                 MONO_GC_MAJOR_OBJ_ALLOC_DEGRADED ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
143         }
144
145         return p;
146 }
147
148 /*
149  * Provide a variant that takes just the vtable for small fixed-size objects.
150  * The aligned size is already computed and stored in vt->gc_descr.
151  * Note: every SGEN_SCAN_START_SIZE or so we are given the chance to do some special
152  * processing. We can keep track of where objects start, for example,
153  * so when we scan the thread stacks for pinned objects, we can start
154  * a search for the pinned object in SGEN_SCAN_START_SIZE chunks.
155  */
156 static void*
157 mono_gc_alloc_obj_nolock (MonoVTable *vtable, size_t size)
158 {
159         /* FIXME: handle OOM */
160         void **p;
161         char *new_next;
162         TLAB_ACCESS_INIT;
163
164         HEAVY_STAT (++stat_objects_alloced);
165         if (size <= SGEN_MAX_SMALL_OBJ_SIZE)
166                 HEAVY_STAT (stat_bytes_alloced += size);
167         else
168                 HEAVY_STAT (stat_bytes_alloced_los += size);
169
170         size = ALIGN_UP (size);
171
172         g_assert (vtable->gc_descr);
173
174         if (G_UNLIKELY (has_per_allocation_action)) {
175                 static int alloc_count;
176                 int current_alloc = InterlockedIncrement (&alloc_count);
177
178                 if (collect_before_allocs) {
179                         if (((current_alloc % collect_before_allocs) == 0) && nursery_section) {
180                                 sgen_perform_collection (0, GENERATION_NURSERY, "collect-before-alloc-triggered", TRUE);
181                                 if (!degraded_mode && sgen_can_alloc_size (size) && size <= SGEN_MAX_SMALL_OBJ_SIZE) {
182                                         // FIXME:
183                                         g_assert_not_reached ();
184                                 }
185                         }
186                 } else if (verify_before_allocs) {
187                         if ((current_alloc % verify_before_allocs) == 0)
188                                 sgen_check_whole_heap_stw ();
189                 }
190         }
191
192         /*
193          * We must already have the lock here instead of after the
194          * fast path because we might be interrupted in the fast path
195          * (after confirming that new_next < TLAB_TEMP_END) by the GC,
196          * and we'll end up allocating an object in a fragment which
197          * no longer belongs to us.
198          *
199          * The managed allocator does not do this, but it's treated
200          * specially by the world-stopping code.
201          */
202
203         if (size > SGEN_MAX_SMALL_OBJ_SIZE) {
204                 p = sgen_los_alloc_large_inner (vtable, size);
205         } else {
206                 /* tlab_next and tlab_temp_end are TLS vars so accessing them might be expensive */
207
208                 p = (void**)TLAB_NEXT;
209                 /* FIXME: handle overflow */
210                 new_next = (char*)p + size;
211                 TLAB_NEXT = new_next;
212
213                 if (G_LIKELY (new_next < TLAB_TEMP_END)) {
214                         /* Fast path */
215
216                         /* 
217                          * FIXME: We might need a memory barrier here so the change to tlab_next is 
218                          * visible before the vtable store.
219                          */
220
221                         SGEN_LOG (6, "Allocated object %p, vtable: %p (%s), size: %zd", p, vtable, vtable->klass->name, size);
222                         binary_protocol_alloc (p , vtable, size);
223                         if (G_UNLIKELY (MONO_GC_NURSERY_OBJ_ALLOC_ENABLED ()))
224                                 MONO_GC_NURSERY_OBJ_ALLOC ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
225                         g_assert (*p == NULL);
226                         mono_atomic_store_seq (p, vtable);
227
228                         return p;
229                 }
230
231                 /* Slow path */
232
233                 /* there are two cases: the object is too big or we run out of space in the TLAB */
234                 /* we also reach here when the thread does its first allocation after a minor 
235                  * collection, since the tlab_ variables are initialized to NULL.
236                  * there can be another case (from ORP), if we cooperate with the runtime a bit:
237                  * objects that need finalizers can have the high bit set in their size
238                  * so the above check fails and we can readily add the object to the queue.
239                  * This avoids taking again the GC lock when registering, but this is moot when
240                  * doing thread-local allocation, so it may not be a good idea.
241                  */
242                 if (TLAB_NEXT >= TLAB_REAL_END) {
243                         int available_in_tlab;
244                         /* 
245                          * Run out of space in the TLAB. When this happens, some amount of space
246                          * remains in the TLAB, but not enough to satisfy the current allocation
247                          * request. Currently, we retire the TLAB in all cases, later we could
248                          * keep it if the remaining space is above a treshold, and satisfy the
249                          * allocation directly from the nursery.
250                          */
251                         TLAB_NEXT -= size;
252                         /* when running in degraded mode, we continue allocing that way
253                          * for a while, to decrease the number of useless nursery collections.
254                          */
255                         if (degraded_mode && degraded_mode < DEFAULT_NURSERY_SIZE)
256                                 return alloc_degraded (vtable, size, FALSE);
257
258                         available_in_tlab = TLAB_REAL_END - TLAB_NEXT;
259                         if (size > tlab_size || available_in_tlab > SGEN_MAX_NURSERY_WASTE) {
260                                 /* Allocate directly from the nursery */
261                                 do {
262                                         p = sgen_nursery_alloc (size);
263                                         if (!p) {
264                                                 sgen_ensure_free_space (size);
265                                                 if (degraded_mode)
266                                                         return alloc_degraded (vtable, size, FALSE);
267                                                 else
268                                                         p = sgen_nursery_alloc (size);
269                                         }
270                                 } while (!p);
271                                 if (!p) {
272                                         // no space left
273                                         g_assert (0);
274                                 }
275
276                                 if (nursery_clear_policy == CLEAR_AT_TLAB_CREATION) {
277                                         memset (p, 0, size);
278                                 }
279                         } else {
280                                 size_t alloc_size = 0;
281                                 if (TLAB_START)
282                                         SGEN_LOG (3, "Retire TLAB: %p-%p [%ld]", TLAB_START, TLAB_REAL_END, (long)(TLAB_REAL_END - TLAB_NEXT - size));
283                                 sgen_nursery_retire_region (p, available_in_tlab);
284
285                                 do {
286                                         p = sgen_nursery_alloc_range (tlab_size, size, &alloc_size);
287                                         if (!p) {
288                                                 sgen_ensure_free_space (tlab_size);
289                                                 if (degraded_mode)
290                                                         return alloc_degraded (vtable, size, FALSE);
291                                                 else
292                                                         p = sgen_nursery_alloc_range (tlab_size, size, &alloc_size);
293                                         }
294                                 } while (!p);
295                                         
296                                 if (!p) {
297                                         // no space left
298                                         g_assert (0);
299                                 }
300
301                                 /* Allocate a new TLAB from the current nursery fragment */
302                                 TLAB_START = (char*)p;
303                                 TLAB_NEXT = TLAB_START;
304                                 TLAB_REAL_END = TLAB_START + alloc_size;
305                                 TLAB_TEMP_END = TLAB_START + MIN (SGEN_SCAN_START_SIZE, alloc_size);
306
307                                 if (nursery_clear_policy == CLEAR_AT_TLAB_CREATION) {
308                                         memset (TLAB_START, 0, alloc_size);
309                                 }
310
311                                 /* Allocate from the TLAB */
312                                 p = (void*)TLAB_NEXT;
313                                 TLAB_NEXT += size;
314                                 sgen_set_nursery_scan_start ((char*)p);
315                         }
316                 } else {
317                         /* Reached tlab_temp_end */
318
319                         /* record the scan start so we can find pinned objects more easily */
320                         sgen_set_nursery_scan_start ((char*)p);
321                         /* we just bump tlab_temp_end as well */
322                         TLAB_TEMP_END = MIN (TLAB_REAL_END, TLAB_NEXT + SGEN_SCAN_START_SIZE);
323                         SGEN_LOG (5, "Expanding local alloc: %p-%p", TLAB_NEXT, TLAB_TEMP_END);
324                 }
325         }
326
327         if (G_LIKELY (p)) {
328                 SGEN_LOG (6, "Allocated object %p, vtable: %p (%s), size: %zd", p, vtable, vtable->klass->name, size);
329                 binary_protocol_alloc (p, vtable, size);
330                 if (G_UNLIKELY (MONO_GC_MAJOR_OBJ_ALLOC_LARGE_ENABLED ()|| MONO_GC_NURSERY_OBJ_ALLOC_ENABLED ())) {
331                         if (size > SGEN_MAX_SMALL_OBJ_SIZE)
332                                 MONO_GC_MAJOR_OBJ_ALLOC_LARGE ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
333                         else
334                                 MONO_GC_NURSERY_OBJ_ALLOC ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
335                 }
336                 mono_atomic_store_seq (p, vtable);
337         }
338
339         return p;
340 }
341
342 static void*
343 mono_gc_try_alloc_obj_nolock (MonoVTable *vtable, size_t size)
344 {
345         void **p;
346         char *new_next;
347         TLAB_ACCESS_INIT;
348
349         size = ALIGN_UP (size);
350
351         g_assert (vtable->gc_descr);
352         if (size > SGEN_MAX_SMALL_OBJ_SIZE)
353                 return NULL;
354
355         if (G_UNLIKELY (size > tlab_size)) {
356                 /* Allocate directly from the nursery */
357                 p = sgen_nursery_alloc (size);
358                 if (!p)
359                         return NULL;
360                 sgen_set_nursery_scan_start ((char*)p);
361
362                 /*FIXME we should use weak memory ops here. Should help specially on x86. */
363                 if (nursery_clear_policy == CLEAR_AT_TLAB_CREATION)
364                         memset (p, 0, size);
365         } else {
366                 int available_in_tlab;
367                 char *real_end;
368                 /* tlab_next and tlab_temp_end are TLS vars so accessing them might be expensive */
369
370                 p = (void**)TLAB_NEXT;
371                 /* FIXME: handle overflow */
372                 new_next = (char*)p + size;
373
374                 real_end = TLAB_REAL_END;
375                 available_in_tlab = real_end - (char*)p;
376
377                 if (G_LIKELY (new_next < real_end)) {
378                         TLAB_NEXT = new_next;
379
380                         /* Second case, we overflowed temp end */
381                         if (G_UNLIKELY (new_next >= TLAB_TEMP_END)) {
382                                 sgen_set_nursery_scan_start (new_next);
383                                 /* we just bump tlab_temp_end as well */
384                                 TLAB_TEMP_END = MIN (TLAB_REAL_END, TLAB_NEXT + SGEN_SCAN_START_SIZE);
385                                 SGEN_LOG (5, "Expanding local alloc: %p-%p", TLAB_NEXT, TLAB_TEMP_END);
386                         }
387                 } else if (available_in_tlab > SGEN_MAX_NURSERY_WASTE) {
388                         /* Allocate directly from the nursery */
389                         p = sgen_nursery_alloc (size);
390                         if (!p)
391                                 return NULL;
392
393                         if (nursery_clear_policy == CLEAR_AT_TLAB_CREATION)
394                                 memset (p, 0, size);                    
395                 } else {
396                         size_t alloc_size = 0;
397
398                         sgen_nursery_retire_region (p, available_in_tlab);
399                         new_next = sgen_nursery_alloc_range (tlab_size, size, &alloc_size);
400                         p = (void**)new_next;
401                         if (!p)
402                                 return NULL;
403
404                         TLAB_START = (char*)new_next;
405                         TLAB_NEXT = new_next + size;
406                         TLAB_REAL_END = new_next + alloc_size;
407                         TLAB_TEMP_END = new_next + MIN (SGEN_SCAN_START_SIZE, alloc_size);
408                         sgen_set_nursery_scan_start ((char*)p);
409
410                         if (nursery_clear_policy == CLEAR_AT_TLAB_CREATION)
411                                 memset (new_next, 0, alloc_size);
412
413                         MONO_GC_NURSERY_TLAB_ALLOC ((mword)new_next, alloc_size);
414                 }
415         }
416
417         HEAVY_STAT (++stat_objects_alloced);
418         HEAVY_STAT (stat_bytes_alloced += size);
419
420         SGEN_LOG (6, "Allocated object %p, vtable: %p (%s), size: %zd", p, vtable, vtable->klass->name, size);
421         binary_protocol_alloc (p, vtable, size);
422         if (G_UNLIKELY (MONO_GC_NURSERY_OBJ_ALLOC_ENABLED ()))
423                 MONO_GC_NURSERY_OBJ_ALLOC ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
424         g_assert (*p == NULL); /* FIXME disable this in non debug builds */
425
426         mono_atomic_store_seq (p, vtable);
427
428         return p;
429 }
430
431 void*
432 mono_gc_alloc_obj (MonoVTable *vtable, size_t size)
433 {
434         void *res;
435 #ifndef DISABLE_CRITICAL_REGION
436         TLAB_ACCESS_INIT;
437         ENTER_CRITICAL_REGION;
438         res = mono_gc_try_alloc_obj_nolock (vtable, size);
439         if (res) {
440                 EXIT_CRITICAL_REGION;
441                 return res;
442         }
443         EXIT_CRITICAL_REGION;
444 #endif
445         LOCK_GC;
446         res = mono_gc_alloc_obj_nolock (vtable, size);
447         UNLOCK_GC;
448         if (G_UNLIKELY (!res))
449                 return mono_gc_out_of_memory (size);
450         return res;
451 }
452
453 void*
454 mono_gc_alloc_vector (MonoVTable *vtable, size_t size, uintptr_t max_length)
455 {
456         MonoArray *arr;
457 #ifndef DISABLE_CRITICAL_REGION
458         TLAB_ACCESS_INIT;
459         ENTER_CRITICAL_REGION;
460         arr = mono_gc_try_alloc_obj_nolock (vtable, size);
461         if (arr) {
462                 /*This doesn't require fencing since EXIT_CRITICAL_REGION already does it for us*/
463                 arr->max_length = max_length;
464                 EXIT_CRITICAL_REGION;
465                 return arr;
466         }
467         EXIT_CRITICAL_REGION;
468 #endif
469
470         LOCK_GC;
471
472         arr = mono_gc_alloc_obj_nolock (vtable, size);
473         if (G_UNLIKELY (!arr)) {
474                 UNLOCK_GC;
475                 return mono_gc_out_of_memory (size);
476         }
477
478         arr->max_length = max_length;
479
480         UNLOCK_GC;
481
482         return arr;
483 }
484
485 void*
486 mono_gc_alloc_array (MonoVTable *vtable, size_t size, uintptr_t max_length, uintptr_t bounds_size)
487 {
488         MonoArray *arr;
489         MonoArrayBounds *bounds;
490
491 #ifndef DISABLE_CRITICAL_REGION
492         TLAB_ACCESS_INIT;
493         ENTER_CRITICAL_REGION;
494         arr = mono_gc_try_alloc_obj_nolock (vtable, size);
495         if (arr) {
496                 /*This doesn't require fencing since EXIT_CRITICAL_REGION already does it for us*/
497                 arr->max_length = max_length;
498
499                 bounds = (MonoArrayBounds*)((char*)arr + size - bounds_size);
500                 arr->bounds = bounds;
501                 EXIT_CRITICAL_REGION;
502                 return arr;
503         }
504         EXIT_CRITICAL_REGION;
505 #endif
506
507         LOCK_GC;
508
509         arr = mono_gc_alloc_obj_nolock (vtable, size);
510         if (G_UNLIKELY (!arr)) {
511                 UNLOCK_GC;
512                 return mono_gc_out_of_memory (size);
513         }
514
515         arr->max_length = max_length;
516
517         bounds = (MonoArrayBounds*)((char*)arr + size - bounds_size);
518         arr->bounds = bounds;
519
520         UNLOCK_GC;
521
522         return arr;
523 }
524
525 void*
526 mono_gc_alloc_string (MonoVTable *vtable, size_t size, gint32 len)
527 {
528         MonoString *str;
529 #ifndef DISABLE_CRITICAL_REGION
530         TLAB_ACCESS_INIT;
531         ENTER_CRITICAL_REGION;
532         str = mono_gc_try_alloc_obj_nolock (vtable, size);
533         if (str) {
534                 /*This doesn't require fencing since EXIT_CRITICAL_REGION already does it for us*/
535                 str->length = len;
536                 EXIT_CRITICAL_REGION;
537                 return str;
538         }
539         EXIT_CRITICAL_REGION;
540 #endif
541
542         LOCK_GC;
543
544         str = mono_gc_alloc_obj_nolock (vtable, size);
545         if (G_UNLIKELY (!str)) {
546                 UNLOCK_GC;
547                 return mono_gc_out_of_memory (size);
548         }
549
550         str->length = len;
551
552         UNLOCK_GC;
553
554         return str;
555 }
556
557 /*
558  * To be used for interned strings and possibly MonoThread, reflection handles.
559  * We may want to explicitly free these objects.
560  */
561 void*
562 mono_gc_alloc_pinned_obj (MonoVTable *vtable, size_t size)
563 {
564         void **p;
565         size = ALIGN_UP (size);
566         LOCK_GC;
567
568         if (size > SGEN_MAX_SMALL_OBJ_SIZE) {
569                 /* large objects are always pinned anyway */
570                 p = sgen_los_alloc_large_inner (vtable, size);
571         } else {
572                 SGEN_ASSERT (9, vtable->klass->inited, "class %s:%s is not initialized", vtable->klass->name_space, vtable->klass->name);
573                 p = major_collector.alloc_small_pinned_obj (vtable, size, SGEN_VTABLE_HAS_REFERENCES (vtable));
574         }
575         if (G_LIKELY (p)) {
576                 SGEN_LOG (6, "Allocated pinned object %p, vtable: %p (%s), size: %zd", p, vtable, vtable->klass->name, size);
577                 if (size > SGEN_MAX_SMALL_OBJ_SIZE)
578                         MONO_GC_MAJOR_OBJ_ALLOC_LARGE ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
579                 else
580                         MONO_GC_MAJOR_OBJ_ALLOC_PINNED ((mword)p, size, vtable->klass->name_space, vtable->klass->name);
581                 binary_protocol_alloc_pinned (p, vtable, size);
582         }
583         UNLOCK_GC;
584         return p;
585 }
586
587 void*
588 mono_gc_alloc_mature (MonoVTable *vtable)
589 {
590         void **res;
591         size_t size = ALIGN_UP (vtable->klass->instance_size);
592         LOCK_GC;
593         res = alloc_degraded (vtable, size, TRUE);
594         UNLOCK_GC;
595         if (G_UNLIKELY (vtable->klass->has_finalize))
596                 mono_object_register_finalizer ((MonoObject*)res);
597
598         return res;
599 }
600
601 void*
602 mono_gc_alloc_fixed (size_t size, void *descr)
603 {
604         /* FIXME: do a single allocation */
605         void *res = calloc (1, size);
606         if (!res)
607                 return NULL;
608         if (!mono_gc_register_root (res, size, descr)) {
609                 free (res);
610                 res = NULL;
611         }
612         return res;
613 }
614
615 void
616 mono_gc_free_fixed (void* addr)
617 {
618         mono_gc_deregister_root (addr);
619         free (addr);
620 }
621
622 void
623 sgen_init_tlab_info (SgenThreadInfo* info)
624 {
625 #ifndef HAVE_KW_THREAD
626         SgenThreadInfo *__thread_info__ = info;
627 #endif
628
629         info->tlab_start_addr = &TLAB_START;
630         info->tlab_next_addr = &TLAB_NEXT;
631         info->tlab_temp_end_addr = &TLAB_TEMP_END;
632         info->tlab_real_end_addr = &TLAB_REAL_END;
633
634 #ifdef HAVE_KW_THREAD
635         tlab_next_addr = &tlab_next;
636 #endif
637 }
638
639 /*
640  * Clear the thread local TLAB variables for all threads.
641  */
642 void
643 sgen_clear_tlabs (void)
644 {
645         SgenThreadInfo *info;
646
647         FOREACH_THREAD (info) {
648                 /* A new TLAB will be allocated when the thread does its first allocation */
649                 *info->tlab_start_addr = NULL;
650                 *info->tlab_next_addr = NULL;
651                 *info->tlab_temp_end_addr = NULL;
652                 *info->tlab_real_end_addr = NULL;
653         } END_FOREACH_THREAD
654 }
655
656 static MonoMethod* alloc_method_cache [ATYPE_NUM];
657
658 #ifdef MANAGED_ALLOCATION
659 /* FIXME: Do this in the JIT, where specialized allocation sequences can be created
660  * for each class. This is currently not easy to do, as it is hard to generate basic 
661  * blocks + branches, but it is easy with the linear IL codebase.
662  *
663  * For this to work we'd need to solve the TLAB race, first.  Now we
664  * require the allocator to be in a few known methods to make sure
665  * that they are executed atomically via the restart mechanism.
666  */
667 static MonoMethod*
668 create_allocator (int atype)
669 {
670         int p_var, size_var;
671         guint32 slowpath_branch, max_size_branch;
672         MonoMethodBuilder *mb;
673         MonoMethod *res;
674         MonoMethodSignature *csig;
675         static gboolean registered = FALSE;
676         int tlab_next_addr_var, new_next_var;
677         int num_params, i;
678         const char *name = NULL;
679         AllocatorWrapperInfo *info;
680
681 #ifdef HAVE_KW_THREAD
682         int tlab_next_addr_offset = -1;
683         int tlab_temp_end_offset = -1;
684
685         MONO_THREAD_VAR_OFFSET (tlab_next_addr, tlab_next_addr_offset);
686         MONO_THREAD_VAR_OFFSET (tlab_temp_end, tlab_temp_end_offset);
687
688         g_assert (tlab_next_addr_offset != -1);
689         g_assert (tlab_temp_end_offset != -1);
690 #endif
691
692         if (!registered) {
693                 mono_register_jit_icall (mono_gc_alloc_obj, "mono_gc_alloc_obj", mono_create_icall_signature ("object ptr int"), FALSE);
694                 mono_register_jit_icall (mono_gc_alloc_vector, "mono_gc_alloc_vector", mono_create_icall_signature ("object ptr int int"), FALSE);
695                 registered = TRUE;
696         }
697
698         if (atype == ATYPE_SMALL) {
699                 num_params = 1;
700                 name = "AllocSmall";
701         } else if (atype == ATYPE_NORMAL) {
702                 num_params = 1;
703                 name = "Alloc";
704         } else if (atype == ATYPE_VECTOR) {
705                 num_params = 2;
706                 name = "AllocVector";
707         } else {
708                 g_assert_not_reached ();
709         }
710
711         csig = mono_metadata_signature_alloc (mono_defaults.corlib, num_params);
712         csig->ret = &mono_defaults.object_class->byval_arg;
713         for (i = 0; i < num_params; ++i)
714                 csig->params [i] = &mono_defaults.int_class->byval_arg;
715
716         mb = mono_mb_new (mono_defaults.object_class, name, MONO_WRAPPER_ALLOC);
717         size_var = mono_mb_add_local (mb, &mono_defaults.int32_class->byval_arg);
718         if (atype == ATYPE_NORMAL || atype == ATYPE_SMALL) {
719                 /* size = vtable->klass->instance_size; */
720                 mono_mb_emit_ldarg (mb, 0);
721                 mono_mb_emit_icon (mb, G_STRUCT_OFFSET (MonoVTable, klass));
722                 mono_mb_emit_byte (mb, CEE_ADD);
723                 mono_mb_emit_byte (mb, CEE_LDIND_I);
724                 mono_mb_emit_icon (mb, G_STRUCT_OFFSET (MonoClass, instance_size));
725                 mono_mb_emit_byte (mb, CEE_ADD);
726                 /* FIXME: assert instance_size stays a 4 byte integer */
727                 mono_mb_emit_byte (mb, CEE_LDIND_U4);
728                 mono_mb_emit_stloc (mb, size_var);
729         } else if (atype == ATYPE_VECTOR) {
730                 MonoExceptionClause *clause;
731                 int pos, pos_leave;
732                 MonoClass *oom_exc_class;
733                 MonoMethod *ctor;
734
735                 /* n >  MONO_ARRAY_MAX_INDEX -> OverflowException */
736                 mono_mb_emit_ldarg (mb, 1);
737                 mono_mb_emit_icon (mb, MONO_ARRAY_MAX_INDEX);
738                 pos = mono_mb_emit_short_branch (mb, CEE_BLE_UN_S);
739                 mono_mb_emit_exception (mb, "OverflowException", NULL);
740                 mono_mb_patch_short_branch (mb, pos);
741
742                 clause = mono_image_alloc0 (mono_defaults.corlib, sizeof (MonoExceptionClause));
743                 clause->try_offset = mono_mb_get_label (mb);
744
745                 /* vtable->klass->sizes.element_size */
746                 mono_mb_emit_ldarg (mb, 0);
747                 mono_mb_emit_icon (mb, G_STRUCT_OFFSET (MonoVTable, klass));
748                 mono_mb_emit_byte (mb, CEE_ADD);
749                 mono_mb_emit_byte (mb, CEE_LDIND_I);
750                 mono_mb_emit_icon (mb, G_STRUCT_OFFSET (MonoClass, sizes.element_size));
751                 mono_mb_emit_byte (mb, CEE_ADD);
752                 mono_mb_emit_byte (mb, CEE_LDIND_U4);
753
754                 /* * n */
755                 mono_mb_emit_ldarg (mb, 1);
756                 mono_mb_emit_byte (mb, CEE_MUL_OVF_UN);
757                 /* + sizeof (MonoArray) */
758                 mono_mb_emit_icon (mb, sizeof (MonoArray));
759                 mono_mb_emit_byte (mb, CEE_ADD_OVF_UN);
760                 mono_mb_emit_stloc (mb, size_var);
761
762                 pos_leave = mono_mb_emit_branch (mb, CEE_LEAVE);
763
764                 /* catch */
765                 clause->flags = MONO_EXCEPTION_CLAUSE_NONE;
766                 clause->try_len = mono_mb_get_pos (mb) - clause->try_offset;
767                 clause->data.catch_class = mono_class_from_name (mono_defaults.corlib,
768                                 "System", "OverflowException");
769                 g_assert (clause->data.catch_class);
770                 clause->handler_offset = mono_mb_get_label (mb);
771
772                 oom_exc_class = mono_class_from_name (mono_defaults.corlib,
773                                 "System", "OutOfMemoryException");
774                 g_assert (oom_exc_class);
775                 ctor = mono_class_get_method_from_name (oom_exc_class, ".ctor", 0);
776                 g_assert (ctor);
777
778                 mono_mb_emit_byte (mb, CEE_POP);
779                 mono_mb_emit_op (mb, CEE_NEWOBJ, ctor);
780                 mono_mb_emit_byte (mb, CEE_THROW);
781
782                 clause->handler_len = mono_mb_get_pos (mb) - clause->handler_offset;
783                 mono_mb_set_clauses (mb, 1, clause);
784                 mono_mb_patch_branch (mb, pos_leave);
785                 /* end catch */
786         } else {
787                 g_assert_not_reached ();
788         }
789
790         /* size += ALLOC_ALIGN - 1; */
791         mono_mb_emit_ldloc (mb, size_var);
792         mono_mb_emit_icon (mb, ALLOC_ALIGN - 1);
793         mono_mb_emit_byte (mb, CEE_ADD);
794         /* size &= ~(ALLOC_ALIGN - 1); */
795         mono_mb_emit_icon (mb, ~(ALLOC_ALIGN - 1));
796         mono_mb_emit_byte (mb, CEE_AND);
797         mono_mb_emit_stloc (mb, size_var);
798
799         /* if (size > MAX_SMALL_OBJ_SIZE) goto slowpath */
800         if (atype != ATYPE_SMALL) {
801                 mono_mb_emit_ldloc (mb, size_var);
802                 mono_mb_emit_icon (mb, MAX_SMALL_OBJ_SIZE);
803                 max_size_branch = mono_mb_emit_short_branch (mb, MONO_CEE_BGT_UN_S);
804         }
805
806         /*
807          * We need to modify tlab_next, but the JIT only supports reading, so we read
808          * another tls var holding its address instead.
809          */
810
811         /* tlab_next_addr (local) = tlab_next_addr (TLS var) */
812         tlab_next_addr_var = mono_mb_add_local (mb, &mono_defaults.int_class->byval_arg);
813         EMIT_TLS_ACCESS (mb, tlab_next_addr, tlab_next_addr_offset);
814         mono_mb_emit_stloc (mb, tlab_next_addr_var);
815
816         /* p = (void**)tlab_next; */
817         p_var = mono_mb_add_local (mb, &mono_defaults.int_class->byval_arg);
818         mono_mb_emit_ldloc (mb, tlab_next_addr_var);
819         mono_mb_emit_byte (mb, CEE_LDIND_I);
820         mono_mb_emit_stloc (mb, p_var);
821         
822         /* new_next = (char*)p + size; */
823         new_next_var = mono_mb_add_local (mb, &mono_defaults.int_class->byval_arg);
824         mono_mb_emit_ldloc (mb, p_var);
825         mono_mb_emit_ldloc (mb, size_var);
826         mono_mb_emit_byte (mb, CEE_CONV_I);
827         mono_mb_emit_byte (mb, CEE_ADD);
828         mono_mb_emit_stloc (mb, new_next_var);
829
830         /* if (G_LIKELY (new_next < tlab_temp_end)) */
831         mono_mb_emit_ldloc (mb, new_next_var);
832         EMIT_TLS_ACCESS (mb, tlab_temp_end, tlab_temp_end_offset);
833         slowpath_branch = mono_mb_emit_short_branch (mb, MONO_CEE_BLT_UN_S);
834
835         /* Slowpath */
836         if (atype != ATYPE_SMALL)
837                 mono_mb_patch_short_branch (mb, max_size_branch);
838
839         mono_mb_emit_byte (mb, MONO_CUSTOM_PREFIX);
840         mono_mb_emit_byte (mb, CEE_MONO_NOT_TAKEN);
841
842         /* FIXME: mono_gc_alloc_obj takes a 'size_t' as an argument, not an int32 */
843         mono_mb_emit_ldarg (mb, 0);
844         mono_mb_emit_ldloc (mb, size_var);
845         if (atype == ATYPE_NORMAL || atype == ATYPE_SMALL) {
846                 mono_mb_emit_icall (mb, mono_gc_alloc_obj);
847         } else if (atype == ATYPE_VECTOR) {
848                 mono_mb_emit_ldarg (mb, 1);
849                 mono_mb_emit_icall (mb, mono_gc_alloc_vector);
850         } else {
851                 g_assert_not_reached ();
852         }
853         mono_mb_emit_byte (mb, CEE_RET);
854
855         /* Fastpath */
856         mono_mb_patch_short_branch (mb, slowpath_branch);
857
858         /* FIXME: Memory barrier */
859
860         /* tlab_next = new_next */
861         mono_mb_emit_ldloc (mb, tlab_next_addr_var);
862         mono_mb_emit_ldloc (mb, new_next_var);
863         mono_mb_emit_byte (mb, CEE_STIND_I);
864
865         /*The tlab store must be visible before the the vtable store. This could be replaced with a DDS but doing it with IL would be tricky. */
866         mono_mb_emit_byte ((mb), MONO_CUSTOM_PREFIX);
867         mono_mb_emit_op (mb, CEE_MONO_MEMORY_BARRIER, StoreStoreBarrier);
868
869         /* *p = vtable; */
870         mono_mb_emit_ldloc (mb, p_var);
871         mono_mb_emit_ldarg (mb, 0);
872         mono_mb_emit_byte (mb, CEE_STIND_I);
873
874         if (atype == ATYPE_VECTOR) {
875                 /* arr->max_length = max_length; */
876                 mono_mb_emit_ldloc (mb, p_var);
877                 mono_mb_emit_ldflda (mb, G_STRUCT_OFFSET (MonoArray, max_length));
878                 mono_mb_emit_ldarg (mb, 1);
879 #ifdef MONO_BIG_ARRAYS
880                 mono_mb_emit_byte (mb, CEE_STIND_I);
881 #else
882                 mono_mb_emit_byte (mb, CEE_STIND_I4);
883 #endif
884         }
885
886         /*
887         We must make sure both vtable and max_length are globaly visible before returning to managed land.
888         */
889         mono_mb_emit_byte ((mb), MONO_CUSTOM_PREFIX);
890         mono_mb_emit_op (mb, CEE_MONO_MEMORY_BARRIER, StoreStoreBarrier);
891
892         /* return p */
893         mono_mb_emit_ldloc (mb, p_var);
894         mono_mb_emit_byte (mb, CEE_RET);
895
896         res = mono_mb_create_method (mb, csig, 8);
897         mono_mb_free (mb);
898         mono_method_get_header (res)->init_locals = FALSE;
899
900         info = mono_image_alloc0 (mono_defaults.corlib, sizeof (AllocatorWrapperInfo));
901         info->gc_name = "sgen";
902         info->alloc_type = atype;
903         mono_marshal_set_wrapper_info (res, info);
904
905         return res;
906 }
907 #endif
908
909 /*
910  * Generate an allocator method implementing the fast path of mono_gc_alloc_obj ().
911  * The signature of the called method is:
912  *      object allocate (MonoVTable *vtable)
913  */
914 MonoMethod*
915 mono_gc_get_managed_allocator (MonoVTable *vtable, gboolean for_box)
916 {
917 #ifdef MANAGED_ALLOCATION
918         MonoClass *klass = vtable->klass;
919
920 #ifdef HAVE_KW_THREAD
921         int tlab_next_offset = -1;
922         int tlab_temp_end_offset = -1;
923         MONO_THREAD_VAR_OFFSET (tlab_next, tlab_next_offset);
924         MONO_THREAD_VAR_OFFSET (tlab_temp_end, tlab_temp_end_offset);
925
926         if (tlab_next_offset == -1 || tlab_temp_end_offset == -1)
927                 return NULL;
928 #endif
929
930         if (!mono_runtime_has_tls_get ())
931                 return NULL;
932         if (klass->instance_size > tlab_size)
933                 return NULL;
934         if (klass->has_finalize || klass->marshalbyref || (mono_profiler_get_events () & MONO_PROFILE_ALLOCATIONS))
935                 return NULL;
936         if (klass->rank)
937                 return NULL;
938         if (klass->byval_arg.type == MONO_TYPE_STRING)
939                 return NULL;
940         if (collect_before_allocs)
941                 return NULL;
942
943         if (ALIGN_TO (klass->instance_size, ALLOC_ALIGN) < MAX_SMALL_OBJ_SIZE)
944                 return mono_gc_get_managed_allocator_by_type (ATYPE_SMALL);
945         else
946                 return mono_gc_get_managed_allocator_by_type (ATYPE_NORMAL);
947 #else
948         return NULL;
949 #endif
950 }
951
952 MonoMethod*
953 mono_gc_get_managed_array_allocator (MonoVTable *vtable, int rank)
954 {
955 #ifdef MANAGED_ALLOCATION
956         MonoClass *klass = vtable->klass;
957
958 #ifdef HAVE_KW_THREAD
959         int tlab_next_offset = -1;
960         int tlab_temp_end_offset = -1;
961         MONO_THREAD_VAR_OFFSET (tlab_next, tlab_next_offset);
962         MONO_THREAD_VAR_OFFSET (tlab_temp_end, tlab_temp_end_offset);
963
964         if (tlab_next_offset == -1 || tlab_temp_end_offset == -1)
965                 return NULL;
966 #endif
967
968         if (rank != 1)
969                 return NULL;
970         if (!mono_runtime_has_tls_get ())
971                 return NULL;
972         if (mono_profiler_get_events () & MONO_PROFILE_ALLOCATIONS)
973                 return NULL;
974         if (has_per_allocation_action)
975                 return NULL;
976         g_assert (!mono_class_has_finalizer (klass) && !klass->marshalbyref);
977
978         return mono_gc_get_managed_allocator_by_type (ATYPE_VECTOR);
979 #else
980         return NULL;
981 #endif
982 }
983
984 void
985 sgen_set_use_managed_allocator (gboolean flag)
986 {
987         use_managed_allocator = flag;
988 }
989
990 MonoMethod*
991 mono_gc_get_managed_allocator_by_type (int atype)
992 {
993 #ifdef MANAGED_ALLOCATION
994         MonoMethod *res;
995
996         if (!use_managed_allocator)
997                 return NULL;
998
999         if (!mono_runtime_has_tls_get ())
1000                 return NULL;
1001
1002         mono_loader_lock ();
1003         res = alloc_method_cache [atype];
1004         if (!res)
1005                 res = alloc_method_cache [atype] = create_allocator (atype);
1006         mono_loader_unlock ();
1007         return res;
1008 #else
1009         return NULL;
1010 #endif
1011 }
1012
1013 guint32
1014 mono_gc_get_managed_allocator_types (void)
1015 {
1016         return ATYPE_NUM;
1017 }
1018
1019 gboolean
1020 sgen_is_managed_allocator (MonoMethod *method)
1021 {
1022         int i;
1023
1024         for (i = 0; i < ATYPE_NUM; ++i)
1025                 if (method == alloc_method_cache [i])
1026                         return TRUE;
1027         return FALSE;
1028 }
1029
1030 gboolean
1031 sgen_has_managed_allocator (void)
1032 {
1033         int i;
1034
1035         for (i = 0; i < ATYPE_NUM; ++i)
1036                 if (alloc_method_cache [i])
1037                         return TRUE;
1038         return FALSE;
1039 }       
1040
1041 #ifdef HEAVY_STATISTICS
1042 void
1043 sgen_alloc_init_heavy_stats (void)
1044 {
1045         mono_counters_register ("# objects allocated", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_objects_alloced);     
1046         mono_counters_register ("bytes allocated", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_bytes_alloced);
1047         mono_counters_register ("bytes allocated in LOS", MONO_COUNTER_GC | MONO_COUNTER_LONG, &stat_bytes_alloced_los);
1048 }
1049 #endif
1050
1051 #endif /*HAVE_SGEN_GC*/