6 * Paolo Molaro (lupus@ximian.com)
8 * Copyright 2005-2010 Novell, Inc (http://www.novell.com)
10 * Thread start/stop adapted from Boehm's GC:
11 * Copyright (c) 1994 by Xerox Corporation. All rights reserved.
12 * Copyright (c) 1996 by Silicon Graphics. All rights reserved.
13 * Copyright (c) 1998 by Fergus Henderson. All rights reserved.
14 * Copyright (c) 2000-2004 by Hewlett-Packard Company. All rights reserved.
15 * Copyright 2001-2003 Ximian, Inc
16 * Copyright 2003-2010 Novell, Inc.
17 * Copyright (C) 2012 Xamarin Inc
19 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
28 #include "mono/sgen/sgen-gc.h"
29 #include "mono/sgen/sgen-protocol.h"
30 #include "mono/sgen/sgen-cardtable.h"
31 #include "mono/sgen/sgen-memory-governor.h"
32 #include "mono/sgen/sgen-client.h"
34 #define LOS_SECTION_SIZE (1024 * 1024)
37 * This shouldn't be much smaller or larger than MAX_SMALL_OBJ_SIZE.
38 * Must be at least sizeof (LOSSection).
40 #define LOS_CHUNK_SIZE 4096
41 #define LOS_CHUNK_BITS 12
43 /* Largest object that can be allocated in a section. */
44 #define LOS_SECTION_OBJECT_LIMIT (LOS_SECTION_SIZE - LOS_CHUNK_SIZE - sizeof (LOSObject))
45 //#define LOS_SECTION_OBJECT_LIMIT 0
46 #define LOS_SECTION_NUM_CHUNKS ((LOS_SECTION_SIZE >> LOS_CHUNK_BITS) - 1)
48 #define LOS_SECTION_FOR_OBJ(obj) ((LOSSection*)((mword)(obj) & ~(mword)(LOS_SECTION_SIZE - 1)))
49 #define LOS_CHUNK_INDEX(obj,section) (((char*)(obj) - (char*)(section)) >> LOS_CHUNK_BITS)
51 #define LOS_NUM_FAST_SIZES 32
53 typedef struct _LOSFreeChunks LOSFreeChunks
;
54 struct _LOSFreeChunks
{
55 LOSFreeChunks
*next_size
;
59 typedef struct _LOSSection LOSSection
;
62 size_t num_free_chunks
;
63 unsigned char *free_chunk_map
;
66 /* We allow read only access on the list while sweep is not running */
67 LOSObject
*los_object_list
= NULL
;
68 /* Memory used by LOS objects */
69 mword los_memory_usage
= 0;
70 /* Total memory used by the LOS allocator */
71 mword los_memory_usage_total
= 0;
73 static LOSSection
*los_sections
= NULL
;
74 static LOSFreeChunks
*los_fast_free_lists
[LOS_NUM_FAST_SIZES
]; /* 0 is for larger sizes */
75 static mword los_num_objects
= 0;
76 static int los_num_sections
= 0;
79 //#define LOS_CONSISTENCY_CHECK
83 #define LOS_SEGMENT_SIZE (4096 * 1024)
85 static char *los_segment
= NULL
;
86 static int los_segment_index
= 0;
90 sgen_los_object_size (LOSObject
*obj
)
92 return obj
->size
& ~1L;
95 #ifdef LOS_CONSISTENCY_CHECK
97 los_consistency_check (void)
102 mword memory_usage
= 0;
104 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
105 mword obj_size
= sgen_los_object_size (obj
);
106 char *end
= obj
->data
+ obj_size
;
107 int start_index
, num_chunks
;
109 memory_usage
+= obj_size
;
111 if (obj_size
> LOS_SECTION_OBJECT_LIMIT
)
114 section
= LOS_SECTION_FOR_OBJ (obj
);
116 g_assert (end
<= (char*)section
+ LOS_SECTION_SIZE
);
118 start_index
= LOS_CHUNK_INDEX (obj
, section
);
119 num_chunks
= (obj_size
+ sizeof (LOSObject
) + LOS_CHUNK_SIZE
- 1) >> LOS_CHUNK_BITS
;
120 for (i
= start_index
; i
< start_index
+ num_chunks
; ++i
)
121 g_assert (!section
->free_chunk_map
[i
]);
124 for (i
= 0; i
< LOS_NUM_FAST_SIZES
; ++i
) {
125 LOSFreeChunks
*size_chunks
;
126 for (size_chunks
= los_fast_free_lists
[i
]; size_chunks
; size_chunks
= size_chunks
->next_size
) {
127 LOSSection
*section
= LOS_SECTION_FOR_OBJ (size_chunks
);
128 int j
, num_chunks
, start_index
;
131 g_assert (size_chunks
->size
>= LOS_NUM_FAST_SIZES
* LOS_CHUNK_SIZE
);
133 g_assert (size_chunks
->size
== i
* LOS_CHUNK_SIZE
);
135 num_chunks
= size_chunks
->size
>> LOS_CHUNK_BITS
;
136 start_index
= LOS_CHUNK_INDEX (size_chunks
, section
);
137 for (j
= start_index
; j
< start_index
+ num_chunks
; ++j
)
138 g_assert (section
->free_chunk_map
[j
]);
142 g_assert (los_memory_usage
== memory_usage
);
147 add_free_chunk (LOSFreeChunks
*free_chunks
, size_t size
)
149 size_t num_chunks
= size
>> LOS_CHUNK_BITS
;
151 free_chunks
->size
= size
;
153 if (num_chunks
>= LOS_NUM_FAST_SIZES
)
155 free_chunks
->next_size
= los_fast_free_lists
[num_chunks
];
156 los_fast_free_lists
[num_chunks
] = free_chunks
;
159 static LOSFreeChunks
*
160 get_from_size_list (LOSFreeChunks
**list
, size_t size
)
162 LOSFreeChunks
*free_chunks
= NULL
;
164 size_t i
, num_chunks
, start_index
;
167 g_assert ((size
& (LOS_CHUNK_SIZE
- 1)) == 0);
171 if (free_chunks
->size
>= size
)
173 list
= &(*list
)->next_size
;
179 *list
= free_chunks
->next_size
;
181 if (free_chunks
->size
> size
)
182 add_free_chunk ((LOSFreeChunks
*)((char*)free_chunks
+ size
), free_chunks
->size
- size
);
184 num_chunks
= size
>> LOS_CHUNK_BITS
;
186 section
= LOS_SECTION_FOR_OBJ (free_chunks
);
188 start_index
= LOS_CHUNK_INDEX (free_chunks
, section
);
189 for (i
= start_index
; i
< start_index
+ num_chunks
; ++i
) {
190 g_assert (section
->free_chunk_map
[i
]);
191 section
->free_chunk_map
[i
] = 0;
194 section
->num_free_chunks
-= size
>> LOS_CHUNK_BITS
;
195 g_assert (section
->num_free_chunks
>= 0);
201 randomize_los_object_start (gpointer addr
, size_t obj_size
, size_t alloced_size
, size_t addr_alignment
)
204 if (alloced_size
!= obj_size
) {
206 * We want to get a random offset between 0 and (alloced_size - obj_size)
207 * We do a prime multiplication to avoid usage of functions which might not
208 * be thread/signal safe (like rand ()). We subtract 1 to avoid common
209 * power by 2 factors.
211 offset
= SGEN_ALIGN_DOWN ((((size_t)addr
- 1) * 2654435761u) % (alloced_size
- obj_size
));
213 SGEN_ASSERT (0, (alloced_size
- obj_size
) < addr_alignment
, "Why are we wasting one entire chunk for a los object ?");
214 /* Randomize the location within the reserved chunks to improve cache performance */
215 return (LOSObject
*)((guint8
*)addr
+ offset
);
220 get_los_section_memory (size_t size
)
223 LOSFreeChunks
*free_chunks
;
225 size_t obj_size
= size
;
227 size
= SGEN_ALIGN_UP_TO (size
, LOS_CHUNK_SIZE
);
229 num_chunks
= size
>> LOS_CHUNK_BITS
;
231 g_assert (size
> 0 && size
- sizeof (LOSObject
) <= LOS_SECTION_OBJECT_LIMIT
);
232 g_assert (num_chunks
> 0);
235 if (num_chunks
>= LOS_NUM_FAST_SIZES
) {
236 free_chunks
= get_from_size_list (&los_fast_free_lists
[0], size
);
239 for (i
= num_chunks
; i
< LOS_NUM_FAST_SIZES
; ++i
) {
240 free_chunks
= get_from_size_list (&los_fast_free_lists
[i
], size
);
245 free_chunks
= get_from_size_list (&los_fast_free_lists
[0], size
);
249 return randomize_los_object_start (free_chunks
, obj_size
, size
, LOS_CHUNK_SIZE
);
252 if (!sgen_memgov_try_alloc_space (LOS_SECTION_SIZE
, SPACE_LOS
))
255 section
= (LOSSection
*)sgen_alloc_os_memory_aligned (LOS_SECTION_SIZE
, LOS_SECTION_SIZE
, (SgenAllocFlags
)(SGEN_ALLOC_HEAP
| SGEN_ALLOC_ACTIVATE
), NULL
, MONO_MEM_ACCOUNT_SGEN_LOS
);
260 free_chunks
= (LOSFreeChunks
*)((char*)section
+ LOS_CHUNK_SIZE
);
261 free_chunks
->size
= LOS_SECTION_SIZE
- LOS_CHUNK_SIZE
;
262 free_chunks
->next_size
= los_fast_free_lists
[0];
263 los_fast_free_lists
[0] = free_chunks
;
265 section
->num_free_chunks
= LOS_SECTION_NUM_CHUNKS
;
267 section
->free_chunk_map
= (unsigned char*)section
+ sizeof (LOSSection
);
268 g_assert (sizeof (LOSSection
) + LOS_SECTION_NUM_CHUNKS
+ 1 <= LOS_CHUNK_SIZE
);
269 section
->free_chunk_map
[0] = 0;
270 memset (section
->free_chunk_map
+ 1, 1, LOS_SECTION_NUM_CHUNKS
);
272 section
->next
= los_sections
;
273 los_sections
= section
;
275 los_memory_usage_total
+= LOS_SECTION_SIZE
;
282 free_los_section_memory (LOSObject
*obj
, size_t size
)
284 LOSSection
*section
= LOS_SECTION_FOR_OBJ (obj
);
285 size_t num_chunks
, i
, start_index
;
287 size
= SGEN_ALIGN_UP_TO (size
, LOS_CHUNK_SIZE
);
289 num_chunks
= size
>> LOS_CHUNK_BITS
;
291 g_assert (size
> 0 && size
- sizeof (LOSObject
) <= LOS_SECTION_OBJECT_LIMIT
);
292 g_assert (num_chunks
> 0);
294 section
->num_free_chunks
+= num_chunks
;
295 g_assert (section
->num_free_chunks
<= LOS_SECTION_NUM_CHUNKS
);
298 * We could free the LOS section here if it's empty, but we
299 * can't unless we also remove its free chunks from the fast
300 * free lists. Instead, we do it in los_sweep().
303 start_index
= LOS_CHUNK_INDEX (obj
, section
);
304 for (i
= start_index
; i
< start_index
+ num_chunks
; ++i
) {
305 g_assert (!section
->free_chunk_map
[i
]);
306 section
->free_chunk_map
[i
] = 1;
309 add_free_chunk ((LOSFreeChunks
*)SGEN_ALIGN_DOWN_TO ((mword
)obj
, LOS_CHUNK_SIZE
), size
);
313 sgen_los_free_object (LOSObject
*obj
)
315 if (obj
->cardtable_mod_union
)
316 sgen_card_table_free_mod_union (obj
->cardtable_mod_union
, (char*)obj
->data
, sgen_los_object_size (obj
));
319 mword size
= sgen_los_object_size (obj
);
320 SGEN_LOG (4, "Freed large object %p, size %lu", obj
->data
, (unsigned long)size
);
321 binary_protocol_empty (obj
->data
, size
);
323 los_memory_usage
-= size
;
329 if (size
> LOS_SECTION_OBJECT_LIMIT
) {
330 int pagesize
= mono_pagesize ();
331 size
+= sizeof (LOSObject
);
332 size
= SGEN_ALIGN_UP_TO (size
, pagesize
);
333 sgen_free_os_memory ((gpointer
)SGEN_ALIGN_DOWN_TO ((mword
)obj
, pagesize
), size
, SGEN_ALLOC_HEAP
, MONO_MEM_ACCOUNT_SGEN_LOS
);
334 los_memory_usage_total
-= size
;
335 sgen_memgov_release_space (size
, SPACE_LOS
);
337 free_los_section_memory (obj
, size
+ sizeof (LOSObject
));
338 #ifdef LOS_CONSISTENCY_CHECKS
339 los_consistency_check ();
347 * Objects with size >= MAX_SMALL_SIZE are allocated in the large object space.
348 * They are currently kept track of with a linked list.
349 * They don't move, so there is no need to pin them during collection
350 * and we avoid the memcpy overhead.
353 sgen_los_alloc_large_inner (GCVTable vtable
, size_t size
)
355 LOSObject
*obj
= NULL
;
358 g_assert (size
> SGEN_MAX_SMALL_OBJ_SIZE
);
359 g_assert ((size
& 1) == 0);
362 * size + sizeof (LOSObject) <= SSIZE_MAX - (mono_pagesize () - 1)
366 * size <= SSIZE_MAX - (mono_pagesize () - 1) - sizeof (LOSObject)
368 if (size
> SSIZE_MAX
- (mono_pagesize () - 1) - sizeof (LOSObject
))
373 los_segment
= sgen_alloc_os_memory (LOS_SEGMENT_SIZE
, SGEN_ALLOC_HEAP
| SGEN_ALLOC_ACTIVATE
, NULL
);
374 los_segment_index
= ALIGN_UP (los_segment_index
);
376 obj
= (LOSObject
*)(los_segment
+ los_segment_index
);
377 los_segment_index
+= size
+ sizeof (LOSObject
);
378 g_assert (los_segment_index
<= LOS_SEGMENT_SIZE
);
380 sgen_ensure_free_space (size
, GENERATION_OLD
);
383 obj
= g_malloc (size
+ sizeof (LOSObject
));
384 memset (obj
, 0, size
+ sizeof (LOSObject
));
386 if (size
> LOS_SECTION_OBJECT_LIMIT
) {
387 size_t obj_size
= size
+ sizeof (LOSObject
);
388 int pagesize
= mono_pagesize ();
389 size_t alloc_size
= SGEN_ALIGN_UP_TO (obj_size
, pagesize
);
390 if (sgen_memgov_try_alloc_space (alloc_size
, SPACE_LOS
)) {
391 obj
= (LOSObject
*)sgen_alloc_os_memory (alloc_size
, (SgenAllocFlags
)(SGEN_ALLOC_HEAP
| SGEN_ALLOC_ACTIVATE
), NULL
, MONO_MEM_ACCOUNT_SGEN_LOS
);
393 los_memory_usage_total
+= alloc_size
;
394 obj
= randomize_los_object_start (obj
, obj_size
, alloc_size
, pagesize
);
398 obj
= get_los_section_memory (size
+ sizeof (LOSObject
));
400 memset (obj
, 0, size
+ sizeof (LOSObject
));
406 g_assert (!((mword
)obj
->data
& (SGEN_ALLOC_ALIGN
- 1)));
408 vtslot
= (void**)obj
->data
;
410 sgen_update_heap_boundaries ((mword
)obj
->data
, (mword
)obj
->data
+ size
);
411 obj
->next
= los_object_list
;
413 * We need a memory barrier so we don't expose as head of the los object list
414 * a LOSObject that doesn't have its fields initialized.
416 mono_memory_write_barrier ();
417 los_object_list
= obj
;
418 los_memory_usage
+= size
;
420 SGEN_LOG (4, "Allocated large object %p, vtable: %p (%s), size: %zd", obj
->data
, vtable
, sgen_client_vtable_get_name (vtable
), size
);
421 binary_protocol_alloc (obj
->data
, vtable
, size
, sgen_client_get_provenance ());
423 #ifdef LOS_CONSISTENCY_CHECK
424 los_consistency_check ();
430 static void sgen_los_unpin_object (GCObject
*data
);
433 sgen_los_sweep (void)
435 LOSObject
*bigobj
, *prevbo
;
436 LOSSection
*section
, *prev
;
438 int num_sections
= 0;
440 /* sweep the big objects list */
442 for (bigobj
= los_object_list
; bigobj
;) {
443 SGEN_ASSERT (0, !SGEN_OBJECT_IS_PINNED (bigobj
->data
), "Who pinned a LOS object?");
445 if (sgen_los_object_is_pinned (bigobj
->data
)) {
446 if (bigobj
->cardtable_mod_union
) {
447 mword obj_size
= sgen_los_object_size (bigobj
);
448 mword num_cards
= sgen_card_table_number_of_cards_in_range ((mword
) bigobj
->data
, obj_size
);
449 memset (bigobj
->cardtable_mod_union
, 0, num_cards
);
452 sgen_los_unpin_object (bigobj
->data
);
453 sgen_update_heap_boundaries ((mword
)bigobj
->data
, (mword
)bigobj
->data
+ sgen_los_object_size (bigobj
));
456 /* not referenced anywhere, so we can free it */
458 prevbo
->next
= bigobj
->next
;
460 los_object_list
= bigobj
->next
;
462 bigobj
= bigobj
->next
;
463 sgen_los_free_object (to_free
);
467 bigobj
= bigobj
->next
;
470 /* Try to free memory */
471 for (i
= 0; i
< LOS_NUM_FAST_SIZES
; ++i
)
472 los_fast_free_lists
[i
] = NULL
;
475 section
= los_sections
;
477 if (section
->num_free_chunks
== LOS_SECTION_NUM_CHUNKS
) {
478 LOSSection
*next
= section
->next
;
483 sgen_free_os_memory (section
, LOS_SECTION_SIZE
, SGEN_ALLOC_HEAP
, MONO_MEM_ACCOUNT_SGEN_LOS
);
484 sgen_memgov_release_space (LOS_SECTION_SIZE
, SPACE_LOS
);
487 los_memory_usage_total
-= LOS_SECTION_SIZE
;
491 for (i
= 0; i
<= LOS_SECTION_NUM_CHUNKS
; ++i
) {
492 if (section
->free_chunk_map
[i
]) {
494 for (j
= i
+ 1; j
<= LOS_SECTION_NUM_CHUNKS
&& section
->free_chunk_map
[j
]; ++j
)
496 add_free_chunk ((LOSFreeChunks
*)((char*)section
+ (i
<< LOS_CHUNK_BITS
)), (j
- i
) << LOS_CHUNK_BITS
);
502 section
= section
->next
;
507 #ifdef LOS_CONSISTENCY_CHECK
508 los_consistency_check ();
512 g_print ("LOS sections: %d objects: %d usage: %d\n", num_sections, los_num_objects, los_memory_usage);
513 for (i = 0; i < LOS_NUM_FAST_SIZES; ++i) {
515 LOSFreeChunks *free_chunks;
516 for (free_chunks = los_fast_free_lists [i]; free_chunks; free_chunks = free_chunks->next_size)
518 g_print (" %d: %d\n", i, num_chunks);
522 g_assert (los_num_sections
== num_sections
);
526 sgen_ptr_is_in_los (char *ptr
, char **start
)
532 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
533 char *end
= (char*)obj
->data
+ sgen_los_object_size (obj
);
535 if (ptr
>= (char*)obj
->data
&& ptr
< end
) {
537 *start
= (char*)obj
->data
;
545 sgen_los_iterate_objects (IterateObjectCallbackFunc cb
, void *user_data
)
549 for (obj
= los_object_list
; obj
; obj
= obj
->next
)
550 cb (obj
->data
, sgen_los_object_size (obj
), user_data
);
554 sgen_los_is_valid_object (char *object
)
558 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
559 if ((char*)obj
->data
== object
)
566 mono_sgen_los_describe_pointer (char *ptr
)
570 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
571 const char *los_kind
;
575 if ((char*)obj
->data
> ptr
|| (char*)obj
->data
+ sgen_los_object_size (obj
) <= ptr
)
578 size
= sgen_los_object_size (obj
);
579 pinned
= sgen_los_object_is_pinned (obj
->data
);
581 if (size
> LOS_SECTION_OBJECT_LIMIT
)
582 los_kind
= "huge-los-ptr";
584 los_kind
= "los-ptr";
586 if ((char*)obj
->data
== ptr
) {
587 SGEN_LOG (0, "%s (size %d pin %d)\n", los_kind
, (int)size
, pinned
? 1 : 0);
589 SGEN_LOG (0, "%s (interior-ptr offset %zd size %d pin %d)",
590 los_kind
, ptr
- (char*)obj
->data
, (int)size
, pinned
? 1 : 0);
599 sgen_los_iterate_live_block_ranges (sgen_cardtable_block_callback callback
)
602 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
603 GCVTable vt
= SGEN_LOAD_VTABLE (obj
->data
);
604 if (SGEN_VTABLE_HAS_REFERENCES (vt
))
605 callback ((mword
)obj
->data
, sgen_los_object_size (obj
));
610 get_cardtable_mod_union_for_object (LOSObject
*obj
)
612 mword size
= sgen_los_object_size (obj
);
613 guint8
*mod_union
= obj
->cardtable_mod_union
;
617 mod_union
= sgen_card_table_alloc_mod_union ((char*)obj
->data
, size
);
618 other
= (guint8
*)SGEN_CAS_PTR ((gpointer
*)&obj
->cardtable_mod_union
, mod_union
, NULL
);
620 SGEN_ASSERT (0, obj
->cardtable_mod_union
== mod_union
, "Why did CAS not replace?");
623 sgen_card_table_free_mod_union (mod_union
, (char*)obj
->data
, size
);
628 sgen_los_scan_card_table (CardTableScanType scan_type
, ScanCopyContext ctx
, int job_index
, int job_split_count
)
633 binary_protocol_los_card_table_scan_start (sgen_timestamp (), scan_type
& CARDTABLE_SCAN_MOD_UNION
);
634 for (obj
= los_object_list
; obj
; obj
= obj
->next
, i
++) {
638 if (i
% job_split_count
!= job_index
)
641 if (!SGEN_OBJECT_HAS_REFERENCES (obj
->data
))
644 if (scan_type
& CARDTABLE_SCAN_MOD_UNION
) {
645 if (!sgen_los_object_is_pinned (obj
->data
))
648 if (!obj
->cardtable_mod_union
)
651 cards
= get_cardtable_mod_union_for_object (obj
);
653 if (scan_type
== CARDTABLE_SCAN_MOD_UNION_PRECLEAN
) {
654 guint8
*cards_preclean
;
655 mword obj_size
= sgen_los_object_size (obj
);
656 num_cards
= sgen_card_table_number_of_cards_in_range ((mword
) obj
->data
, obj_size
);
657 cards_preclean
= (guint8
*)sgen_alloc_internal_dynamic (num_cards
, INTERNAL_MEM_CARDTABLE_MOD_UNION
, TRUE
);
659 sgen_card_table_preclean_mod_union (cards
, cards_preclean
, num_cards
);
661 cards
= cards_preclean
;
667 sgen_cardtable_scan_object (obj
->data
, sgen_los_object_size (obj
), cards
, ctx
);
669 if (scan_type
== CARDTABLE_SCAN_MOD_UNION_PRECLEAN
)
670 sgen_free_internal_dynamic (cards
, num_cards
, INTERNAL_MEM_CARDTABLE_MOD_UNION
);
672 binary_protocol_los_card_table_scan_end (sgen_timestamp (), scan_type
& CARDTABLE_SCAN_MOD_UNION
);
676 sgen_los_count_cards (long long *num_total_cards
, long long *num_marked_cards
)
679 long long total_cards
= 0;
680 long long marked_cards
= 0;
682 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
684 guint8
*cards
= sgen_card_table_get_card_scan_address ((mword
) obj
->data
);
685 guint8
*cards_end
= sgen_card_table_get_card_scan_address ((mword
) obj
->data
+ sgen_los_object_size (obj
) - 1);
686 mword num_cards
= (cards_end
- cards
) + 1;
688 if (!SGEN_OBJECT_HAS_REFERENCES (obj
->data
))
691 total_cards
+= num_cards
;
692 for (i
= 0; i
< num_cards
; ++i
) {
698 *num_total_cards
= total_cards
;
699 *num_marked_cards
= marked_cards
;
703 sgen_los_update_cardtable_mod_union (void)
707 for (obj
= los_object_list
; obj
; obj
= obj
->next
) {
708 if (!SGEN_OBJECT_HAS_REFERENCES (obj
->data
))
710 sgen_card_table_update_mod_union (get_cardtable_mod_union_for_object (obj
),
711 (char*)obj
->data
, sgen_los_object_size (obj
), NULL
);
716 sgen_los_header_for_object (GCObject
*data
)
719 return (LOSObject
*)((char*)data
- (int)(&(((LOSObject
*)0)->data
)));
721 return (LOSObject
*)((char*)data
- sizeof (LOSObject
));
726 sgen_los_pin_object (GCObject
*data
)
728 LOSObject
*obj
= sgen_los_header_for_object (data
);
729 obj
->size
= obj
->size
| 1;
730 binary_protocol_pin (data
, (gpointer
)SGEN_LOAD_VTABLE (data
), sgen_safe_object_get_size (data
));
734 sgen_los_pin_object_par (GCObject
*data
)
736 LOSObject
*obj
= sgen_los_header_for_object (data
);
737 mword old_size
= obj
->size
;
740 #if SIZEOF_VOID_P == 4
741 old_size
= InterlockedCompareExchange ((volatile gint32
*)&obj
->size
, old_size
| 1, old_size
);
743 old_size
= InterlockedCompareExchange64 ((volatile gint64
*)&obj
->size
, old_size
| 1, old_size
);
747 binary_protocol_pin (data
, (gpointer
)SGEN_LOAD_VTABLE (data
), sgen_safe_object_get_size (data
));
752 sgen_los_unpin_object (GCObject
*data
)
754 LOSObject
*obj
= sgen_los_header_for_object (data
);
755 obj
->size
= sgen_los_object_size (obj
);
759 sgen_los_object_is_pinned (GCObject
*data
)
761 LOSObject
*obj
= sgen_los_header_for_object (data
);
762 return obj
->size
& 1;
766 sgen_los_mark_mod_union_card (GCObject
*mono_obj
, void **ptr
)
768 LOSObject
*obj
= sgen_los_header_for_object (mono_obj
);
769 guint8
*mod_union
= get_cardtable_mod_union_for_object (obj
);
770 /* The LOSObject structure is not represented within the card space */
771 size_t offset
= sgen_card_table_get_card_offset ((char*)ptr
, (char*)sgen_card_table_align_pointer((char*)mono_obj
));
772 SGEN_ASSERT (0, mod_union
, "FIXME: optionally allocate the mod union if it's not here and CAS it in.");
773 mod_union
[offset
] = 1;
776 #endif /* HAVE_SGEN_GC */