Merge pull request #513 from pruiz/xamarin-bug-8565-v2
[mono.git] / mono / metadata / sgen-copy-object.h
1 /*
2  * sgen-copy-object.h: This is where objects are copied.
3  *
4  * Copyright 2001-2003 Ximian, Inc
5  * Copyright 2003-2010 Novell, Inc.
6  * Copyright (C) 2012 Xamarin Inc
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License 2.0 as published by the Free Software Foundation;
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License 2.0 along with this library; if not, write to the Free
19  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 extern long long stat_copy_object_called_nursery;
22 extern long long stat_objects_copied_nursery;
23
24 extern long long stat_nursery_copy_object_failed_from_space;
25 extern long long stat_nursery_copy_object_failed_forwarded;
26 extern long long stat_nursery_copy_object_failed_pinned;
27
28 extern long long stat_slots_allocated_in_vain;
29
30 /*
31  * This function can be used even if the vtable of obj is not valid
32  * anymore, which is the case in the parallel collector.
33  */
34 static inline void
35 par_copy_object_no_checks (char *destination, MonoVTable *vt, void *obj, mword objsize, SgenGrayQueue *queue)
36 {
37 #ifdef __GNUC__
38         static const void *copy_labels [] = { &&LAB_0, &&LAB_1, &&LAB_2, &&LAB_3, &&LAB_4, &&LAB_5, &&LAB_6, &&LAB_7, &&LAB_8 };
39 #endif
40
41         SGEN_ASSERT (9, vt->klass->inited, "vtable %p for class %s:%s was not initialized", vt, vt->klass->name_space, vt->klass->name);
42         SGEN_LOG (9, " (to %p, %s size: %lu)", destination, ((MonoObject*)obj)->vtable->klass->name, (unsigned long)objsize);
43         binary_protocol_copy (obj, destination, vt, objsize);
44
45         if (G_UNLIKELY (MONO_GC_OBJ_MOVED_ENABLED ())) {
46                 int dest_gen = sgen_ptr_in_nursery (destination) ? GENERATION_NURSERY : GENERATION_OLD;
47                 int src_gen = sgen_ptr_in_nursery (obj) ? GENERATION_NURSERY : GENERATION_OLD;
48                 MONO_GC_OBJ_MOVED ((mword)destination, (mword)obj, dest_gen, src_gen, objsize, vt->klass->name_space, vt->klass->name);
49         }
50
51 #ifdef __GNUC__
52         if (objsize <= sizeof (gpointer) * 8) {
53                 mword *dest = (mword*)destination;
54                 goto *copy_labels [objsize / sizeof (gpointer)];
55         LAB_8:
56                 (dest) [7] = ((mword*)obj) [7];
57         LAB_7:
58                 (dest) [6] = ((mword*)obj) [6];
59         LAB_6:
60                 (dest) [5] = ((mword*)obj) [5];
61         LAB_5:
62                 (dest) [4] = ((mword*)obj) [4];
63         LAB_4:
64                 (dest) [3] = ((mword*)obj) [3];
65         LAB_3:
66                 (dest) [2] = ((mword*)obj) [2];
67         LAB_2:
68                 (dest) [1] = ((mword*)obj) [1];
69         LAB_1:
70                 ;
71         LAB_0:
72                 ;
73         } else {
74                 /*can't trust memcpy doing word copies */
75                 mono_gc_memmove (destination + sizeof (mword), (char*)obj + sizeof (mword), objsize - sizeof (mword));
76         }
77 #else
78                 mono_gc_memmove (destination + sizeof (mword), (char*)obj + sizeof (mword), objsize - sizeof (mword));
79 #endif
80         /* adjust array->bounds */
81         SGEN_ASSERT (9, vt->gc_descr, "vtable %p for class %s:%s has no gc descriptor", vt, vt->klass->name_space, vt->klass->name);
82
83         if (G_UNLIKELY (vt->rank && ((MonoArray*)obj)->bounds)) {
84                 MonoArray *array = (MonoArray*)destination;
85                 array->bounds = (MonoArrayBounds*)((char*)destination + ((char*)((MonoArray*)obj)->bounds - (char*)obj));
86                 SGEN_LOG (9, "Array instance %p: size: %lu, rank: %d, length: %lu", array, (unsigned long)objsize, vt->rank, (unsigned long)mono_array_length (array));
87         }
88         if (G_UNLIKELY (mono_profiler_events & MONO_PROFILE_GC_MOVES))
89                 sgen_register_moved_object (obj, destination);
90         obj = destination;
91         if (queue) {
92                 SGEN_LOG (9, "Enqueuing gray object %p (%s)", obj, sgen_safe_name (obj));
93                 GRAY_OBJECT_ENQUEUE (queue, obj);
94         }
95 }
96
97 /*
98  * This can return OBJ itself on OOM.
99  */
100 #ifdef _MSC_VER
101 static __declspec(noinline) void*
102 #else
103 static G_GNUC_UNUSED void* __attribute__((noinline))
104 #endif
105 copy_object_no_checks (void *obj, SgenGrayQueue *queue)
106 {
107         MonoVTable *vt = ((MonoObject*)obj)->vtable;
108         gboolean has_references = SGEN_VTABLE_HAS_REFERENCES (vt);
109         mword objsize = SGEN_ALIGN_UP (sgen_par_object_get_size (vt, (MonoObject*)obj));
110         char *destination = COLLECTOR_SERIAL_ALLOC_FOR_PROMOTION (obj, objsize, has_references);
111
112         if (G_UNLIKELY (!destination)) {
113                 collector_pin_object (obj, queue);
114                 sgen_set_pinned_from_failed_allocation (objsize);
115                 return obj;
116         }
117
118         *(MonoVTable**)destination = vt;
119         par_copy_object_no_checks (destination, vt, obj, objsize, has_references ? queue : NULL);
120
121         /* set the forwarding pointer */
122         SGEN_FORWARD_OBJECT (obj, destination);
123
124         return destination;
125 }