Merge pull request #1656 from alexanderkyte/webservice_27561
[mono.git] / mono / sgen / sgen-conf.h
1 /*
2  * sgen-conf.h: Tunable parameters and debugging switches.
3  *
4  * Copyright 2001-2003 Ximian, Inc
5  * Copyright 2003-2010 Novell, Inc.
6  * Copyright 2011 Xamarin Inc (http://www.xamarin.com)
7  * Copyright (C) 2012 Xamarin Inc
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License 2.0 as published by the Free Software Foundation;
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License 2.0 along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22 #ifndef __MONO_SGENCONF_H__
23 #define __MONO_SGENCONF_H__
24
25 #include <glib.h>
26
27 /*Basic defines and static tunables */
28
29 #if SIZEOF_VOID_P == 4
30 typedef guint32 mword;
31 #else
32 typedef guint64 mword;
33 #endif
34
35
36 /*
37  * Turning on heavy statistics will turn off the managed allocator and
38  * the managed write barrier.
39  */
40 // #define HEAVY_STATISTICS
41
42 #ifdef HEAVY_STATISTICS
43 #define HEAVY_STAT(x)   x
44 #else
45 #define HEAVY_STAT(x)
46 #endif
47
48 /*
49  * Define this to allow the user to change the nursery size by
50  * specifying its value in the MONO_GC_PARAMS environmental
51  * variable. See mono_gc_base_init for details.
52  */
53 #define USER_CONFIG 1
54
55 /*
56  * The binary protocol enables logging a lot of the GC ativity in a way that is not very
57  * intrusive and produces a compact file that can be searched using a custom tool.  This
58  * option enables very fine-grained binary protocol events, which will make the GC a tiny
59  * bit less efficient even if no binary protocol file is generated.
60  */
61 //#define SGEN_HEAVY_BINARY_PROTOCOL
62
63 /*
64  * This extends the heavy binary protocol to record the provenance of an object
65  * for every allocation.
66  */
67 //#define SGEN_OBJECT_PROVENANCE
68
69 /*
70  * This enables checks whenever objects are enqueued in gray queues.
71  * Right now the only check done is that we never enqueue nursery
72  * pointers in the concurrent collector.
73  */
74 //#define SGEN_CHECK_GRAY_OBJECT_ENQUEUE
75
76 /*
77  * This keeps track of where a gray object queue section is and
78  * whether it is where it should be.
79  */
80 //#define SGEN_CHECK_GRAY_OBJECT_SECTIONS
81
82 /*
83  * Enable this to check every reference update for null references and whether the update is
84  * made in a worker thread.  In only a few cases do we potentially update references by
85  * writing nulls, so we assert in all the cases where it's not allowed.  The concurrent
86  * collector's worker thread is not allowed to update references at all, so we also assert
87  * that we're not in the worker thread.
88  */
89 //#define SGEN_CHECK_UPDATE_REFERENCE
90
91 /*
92  * Define this and use the "xdomain-checks" MONO_GC_DEBUG option to
93  * have cross-domain checks in the write barrier.
94  */
95 //#define XDOMAIN_CHECKS_IN_WBARRIER
96
97 /*
98  * Define this to get number of objects marked information in the
99  * concurrent GC DTrace probes.  Has a small performance impact, so
100  * it's disabled by default.
101  */
102 //#define SGEN_COUNT_NUMBER_OF_MAJOR_OBJECTS_MARKED
103
104 /*
105  * Object layout statistics gather a histogram of reference locations
106  * over all scanned objects.  We use this information to improve GC
107  * descriptors to speed up scanning.  This does not provide any
108  * troubleshooting assistance (unless you are troubled in highly
109  * unusual ways) and makes scanning slower.
110  */
111 //#define SGEN_OBJECT_LAYOUT_STATISTICS
112
113 #ifndef SGEN_HEAVY_BINARY_PROTOCOL
114 #ifndef HEAVY_STATISTICS
115 #define MANAGED_ALLOCATION
116 #ifndef XDOMAIN_CHECKS_IN_WBARRIER
117 #define MANAGED_WBARRIER
118 #endif
119 #endif
120 #endif
121
122 /*
123  * Maximum level of debug to enable on this build.
124  * Making this a constant enables us to put logging in a lot of places and
125  * not pay its cost on release builds.
126  */
127 #define SGEN_MAX_DEBUG_LEVEL 2
128
129 /*
130  * Maximum level of asserts to enable on this build.
131  * FIXME replace all magic numbers with defines.
132  */
133 #define SGEN_MAX_ASSERT_LEVEL 5
134
135
136 #define GC_BITS_PER_WORD (sizeof (mword) * 8)
137
138 /*Size of the section used by the copying GC. */
139 #define SGEN_SIZEOF_GC_MEM_SECTION      ((sizeof (GCMemSection) + 7) & ~7)
140
141 /*
142  * to quickly find the head of an object pinned by a conservative
143  * address we keep track of the objects allocated for each
144  * SGEN_SCAN_START_SIZE memory chunk in the nursery or other memory
145  * sections. Larger values have less memory overhead and bigger
146  * runtime cost. 4-8 KB are reasonable values.
147  */
148 #define SGEN_SCAN_START_SIZE (4096*2)
149
150 /*
151  * Objects bigger then this go into the large object space.  This size has a few
152  * constraints.  At least two of them must fit into a major heap block.  It must also play
153  * well with the run length GC descriptor, which encodes the object size.
154  */
155 #define SGEN_MAX_SMALL_OBJ_SIZE 8000
156
157 /*
158  * This is the maximum ammount of memory we're willing to waste in order to speed up allocation.
159  * Wastage comes in thre forms:
160  *
161  * -when building the nursery fragment list, small regions are discarded;
162  * -when allocating memory from a fragment if it ends up below the threshold, we remove it from the fragment list; and
163  * -when allocating a new tlab, we discard the remaining space of the old one
164  *
165  * Increasing this value speeds up allocation but will cause more frequent nursery collections as less space will be used.
166  * Descreasing this value will cause allocation to be slower since we'll have to cycle thru more fragments.
167  * 512 annedoctally keeps wastage under control and doesn't impact allocation performance too much. 
168 */
169 #define SGEN_MAX_NURSERY_WASTE 512
170
171
172 /*
173  * Minimum allowance for nursery allocations, as a multiple of the size of nursery.
174  *
175  * We allow at least this much allocation to happen to the major heap from multiple
176  * minor collections before triggering a major collection.
177  *
178  * Bigger values increases throughput by allowing more garbage to sit in the major heap.
179  * Smaller values leads to better memory effiency but more frequent major collections.
180  */
181 #define SGEN_DEFAULT_ALLOWANCE_NURSERY_SIZE_RATIO 4.0
182
183 #define SGEN_MIN_ALLOWANCE_NURSERY_SIZE_RATIO 1.0
184 #define SGEN_MAX_ALLOWANCE_NURSERY_SIZE_RATIO 10.0
185
186 /*
187  * Default ratio of memory we want to release in a major collection in relation to the the current heap size.
188  *
189  * A major collection target is to free a given amount of memory. This amount is a ratio of the major heap size.
190  *
191  * Values above 0.5 cause the heap to agressively grow when it's small and waste memory when it's big.
192  * Lower values will produce more reasonable sized heaps when it's small, but will be suboptimal at large
193  * sizes as they will use a small fraction only.
194  *
195  */
196 #define SGEN_DEFAULT_SAVE_TARGET_RATIO 0.5
197
198 #define SGEN_MIN_SAVE_TARGET_RATIO 0.1
199 #define SGEN_MAX_SAVE_TARGET_RATIO 2.0
200
201 /*
202  * Configurable cementing parameters.
203  *
204  * If there are too many pinned nursery objects with many references
205  * from the major heap, the hash table size must be increased.
206  *
207  * The threshold is the number of references from the major heap to a
208  * pinned nursery object which triggers cementing: if there are more
209  * than that number of references, the pinned object is cemented until
210  * the next major collection.
211  */
212 #define SGEN_CEMENT_HASH_SHIFT  6
213 #define SGEN_CEMENT_HASH_SIZE   (1 << SGEN_CEMENT_HASH_SHIFT)
214 #define SGEN_CEMENT_HASH(hv)    (((hv) ^ ((hv) >> SGEN_CEMENT_HASH_SHIFT)) & (SGEN_CEMENT_HASH_SIZE - 1))
215 #define SGEN_CEMENT_THRESHOLD   1000
216
217 #endif