Make sgen-los.c into a proper C module.
[mono.git] / mono / metadata / sgen-cardtable.h
1 /*
2  * Copyright 2001-2003 Ximian, Inc
3  * Copyright 2003-2010 Novell, Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef __MONO_SGEN_CARD_TABLE_INLINES_H__
25 #define __MONO_SGEN_CARD_TABLE_INLINES_H__
26
27 #define SGEN_HAVE_CARDTABLE     1
28
29 #ifdef SGEN_HAVE_CARDTABLE
30
31 void sgen_card_table_reset_region (mword start, mword end) MONO_INTERNAL;
32 void* sgen_card_table_align_pointer (void *ptr) MONO_INTERNAL;
33 void sgen_card_table_mark_address (mword address) MONO_INTERNAL;
34 void sgen_card_table_mark_range (mword address, mword size) MONO_INTERNAL;
35 void sgen_cardtable_scan_object (char *obj, mword obj_size, guint8 *cards, SgenGrayQueue *queue) MONO_INTERNAL;
36 gboolean sgen_card_table_get_card_data (guint8 *dest, mword address, mword cards) MONO_INTERNAL;
37
38 /*How many bytes a single card covers*/
39 #define CARD_BITS 9
40
41 /* How many bits of the address space is covered by the card table.
42  * If this value is smaller than the number of address bits, card aliasing is required.
43  */
44 #define CARD_TABLE_BITS 32
45
46 #define CARD_SIZE_IN_BYTES (1 << CARD_BITS)
47 #define CARD_COUNT_BITS (CARD_TABLE_BITS - CARD_BITS)
48 #define CARD_COUNT_IN_BYTES (1 << CARD_COUNT_BITS)
49 #define CARD_MASK ((1 << CARD_COUNT_BITS) - 1)
50
51 #if SIZEOF_VOID_P * 8 > CARD_TABLE_BITS
52 #define SGEN_HAVE_OVERLAPPING_CARDS     1
53 #endif
54
55 extern guint8 *sgen_cardtable MONO_INTERNAL;
56
57
58 #ifdef SGEN_HAVE_OVERLAPPING_CARDS
59
60 static inline guint8*
61 sgen_card_table_get_card_address (mword address)
62 {
63         return sgen_cardtable + ((address >> CARD_BITS) & CARD_MASK);
64 }
65
66 extern guint8 *sgen_shadow_cardtable MONO_INTERNAL;
67
68 static inline  guint8*
69 sgen_card_table_get_shadow_card_address (mword address)
70 {
71         return sgen_shadow_cardtable + ((address >> CARD_BITS) & CARD_MASK);
72 }
73
74 static inline gboolean
75 sgen_card_table_card_begin_scanning (mword address)
76 {
77         return *sgen_card_table_get_shadow_card_address (address) != 0;
78 }
79
80 static inline void
81 sgen_card_table_prepare_card_for_scanning (guint8 *card)
82 {
83 }
84
85 #define sgen_card_table_get_card_scan_address sgen_card_table_get_shadow_card_address
86
87 #else
88
89 static inline guint8*
90 sgen_card_table_get_card_address (mword address)
91 {
92         return sgen_cardtable + (address >> CARD_BITS);
93 }
94
95 static inline gboolean
96 sgen_card_table_card_begin_scanning (mword address)
97 {
98         guint8 *card = sgen_card_table_get_card_address (address);
99         gboolean res = *card;
100         *card = 0;
101         return res;
102 }
103
104 static inline void
105 sgen_card_table_prepare_card_for_scanning (guint8 *card)
106 {
107         *card = 0;
108 }
109
110 #define sgen_card_table_get_card_scan_address sgen_card_table_get_card_address
111
112 #endif
113
114 #endif
115
116
117
118 #endif