Update mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng/RelaxngPattern.cs
[mono.git] / mono / metadata / sgen-internal.c
1 /*
2  * sgen-internal.c
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  * 
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  * 
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  */
23
24 #include "config.h"
25
26 #ifdef HAVE_SGEN_GC
27
28 #include "utils/mono-counters.h"
29 #include "metadata/sgen-gc.h"
30 #include "utils/lock-free-alloc.h"
31 #include "metadata/sgen-memory-governor.h"
32
33 /* keep each size a multiple of ALLOC_ALIGN */
34 static const int allocator_sizes [] = {
35            8,   16,   24,   32,   40,   48,   64,   80,
36           96,  128,  160,  192,  224,  248,  320,  384,
37          448,  528,  584,  680,  816, 1088, 1360, 2040,
38         2336, 2728, 3272, 4088, 5456, 8184 };
39
40 #define NUM_ALLOCATORS  (sizeof (allocator_sizes) / sizeof (int))
41
42 static MonoLockFreeAllocSizeClass size_classes [NUM_ALLOCATORS];
43 static MonoLockFreeAllocator allocators [NUM_ALLOCATORS];
44
45 /*
46  * Find the allocator index for memory chunks that can contain @size
47  * objects.
48  */
49 static int
50 index_for_size (size_t size)
51 {
52         int slot;
53         /* do a binary search or lookup table later. */
54         for (slot = 0; slot < NUM_ALLOCATORS; ++slot) {
55                 if (allocator_sizes [slot] >= size)
56                         return slot;
57         }
58         g_assert_not_reached ();
59         return -1;
60 }
61
62 /*
63  * Allocator indexes for the fixed INTERNAL_MEM_XXX types.  -1 if that
64  * type is dynamic.
65  */
66 static int fixed_type_allocator_indexes [INTERNAL_MEM_MAX];
67
68 void
69 sgen_register_fixed_internal_mem_type (int type, size_t size)
70 {
71         int slot;
72
73         g_assert (type >= 0 && type < INTERNAL_MEM_MAX);
74
75         slot = index_for_size (size);
76         g_assert (slot >= 0);
77
78         if (fixed_type_allocator_indexes [type] == -1)
79                 fixed_type_allocator_indexes [type] = slot;
80         else
81                 g_assert (fixed_type_allocator_indexes [type] == slot);
82 }
83
84 void*
85 sgen_alloc_internal_dynamic (size_t size, int type)
86 {
87         int index;
88         void *p;
89
90         if (size > allocator_sizes [NUM_ALLOCATORS - 1])
91                 return sgen_alloc_os_memory (size, TRUE);
92
93         index = index_for_size (size);
94
95         p = mono_lock_free_alloc (&allocators [index]);
96         memset (p, 0, size);
97         return p;
98 }
99
100 void
101 sgen_free_internal_dynamic (void *addr, size_t size, int type)
102 {
103         int index;
104
105         if (!addr)
106                 return;
107
108         if (size > allocator_sizes [NUM_ALLOCATORS - 1])
109                 return sgen_free_os_memory (addr, size);
110
111         index = index_for_size (size);
112
113         mono_lock_free_free (addr);
114 }
115
116 void*
117 sgen_alloc_internal (int type)
118 {
119         int index = fixed_type_allocator_indexes [type];
120         void *p;
121         g_assert (index >= 0 && index < NUM_ALLOCATORS);
122         p = mono_lock_free_alloc (&allocators [index]);
123         memset (p, 0, allocator_sizes [index]);
124         return p;
125 }
126
127 void
128 sgen_free_internal (void *addr, int type)
129 {
130         int index;
131
132         if (!addr)
133                 return;
134
135         index = fixed_type_allocator_indexes [type];
136         g_assert (index >= 0 && index < NUM_ALLOCATORS);
137
138         mono_lock_free_free (addr);
139 }
140
141 void
142 sgen_dump_internal_mem_usage (FILE *heap_dump_file)
143 {
144         /*
145         static char const *internal_mem_names [] = { "pin-queue", "fragment", "section", "scan-starts",
146                                                      "fin-table", "finalize-entry", "finalize-ready-entry", "dislink-table",
147                                                      "dislink", "roots-table", "root-record", "statistics",
148                                                      "remset", "gray-queue", "store-remset", "marksweep-tables",
149                                                      "marksweep-block-info", "ephemeron-link", "worker-data",
150                                                      "bridge-data", "job-queue-entry", "toggleref-data" };
151
152         int i;
153
154         fprintf (heap_dump_file, "<other-mem-usage type=\"large-internal\" size=\"%lld\"/>\n", large_internal_bytes_alloced);
155         fprintf (heap_dump_file, "<other-mem-usage type=\"pinned-chunks\" size=\"%lld\"/>\n", pinned_chunk_bytes_alloced);
156         for (i = 0; i < INTERNAL_MEM_MAX; ++i) {
157                 fprintf (heap_dump_file, "<other-mem-usage type=\"%s\" size=\"%ld\"/>\n",
158                                 internal_mem_names [i], unmanaged_allocator.small_internal_mem_bytes [i]);
159         }
160         */
161 }
162
163 void
164 sgen_report_internal_mem_usage (void)
165 {
166         /* FIXME: implement */
167         printf ("not implemented yet\n");
168 }
169
170 void
171 sgen_init_internal_allocator (void)
172 {
173         int i;
174
175         for (i = 0; i < INTERNAL_MEM_MAX; ++i)
176                 fixed_type_allocator_indexes [i] = -1;
177
178         for (i = 0; i < NUM_ALLOCATORS; ++i) {
179                 mono_lock_free_allocator_init_size_class (&size_classes [i], allocator_sizes [i]);
180                 mono_lock_free_allocator_init_allocator (&allocators [i], &size_classes [i]);
181         }
182 }
183
184 #endif