sl@0
|
1 |
/* GLIB sliced memory - fast threaded memory chunk allocator
|
sl@0
|
2 |
* Copyright (C) 2005 Tim Janik
|
sl@0
|
3 |
* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
#include <glib.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <stdio.h>
|
sl@0
|
22 |
#include <string.h>
|
sl@0
|
23 |
#ifdef __SYMBIAN32__
|
sl@0
|
24 |
#include "mrt2_glib2_test.h"
|
sl@0
|
25 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
26 |
#define quick_rand32() (rand_accu = 1664525 * rand_accu + 1013904223, rand_accu)
|
sl@0
|
27 |
static guint prime_size = 1021; // 769; // 509
|
sl@0
|
28 |
static gboolean clean_memchunks = FALSE;
|
sl@0
|
29 |
static guint number_of_blocks = 100; /* total number of blocks allocated */
|
sl@0
|
30 |
static guint number_of_repetitions = 100; /* number of alloc+free repetitions */
|
sl@0
|
31 |
static gboolean want_corruption = FALSE;
|
sl@0
|
32 |
|
sl@0
|
33 |
/* --- old memchunk prototypes (memchunks.c) --- */
|
sl@0
|
34 |
void old_mem_chunks_init (void);
|
sl@0
|
35 |
GMemChunk* old_mem_chunk_new (const gchar *name,
|
sl@0
|
36 |
gint atom_size,
|
sl@0
|
37 |
gulong area_size,
|
sl@0
|
38 |
gint type);
|
sl@0
|
39 |
void old_mem_chunk_destroy (GMemChunk *mem_chunk);
|
sl@0
|
40 |
gpointer old_mem_chunk_alloc (GMemChunk *mem_chunk);
|
sl@0
|
41 |
gpointer old_mem_chunk_alloc0 (GMemChunk *mem_chunk);
|
sl@0
|
42 |
void old_mem_chunk_free (GMemChunk *mem_chunk,
|
sl@0
|
43 |
gpointer mem);
|
sl@0
|
44 |
void old_mem_chunk_clean (GMemChunk *mem_chunk);
|
sl@0
|
45 |
void old_mem_chunk_reset (GMemChunk *mem_chunk);
|
sl@0
|
46 |
void old_mem_chunk_print (GMemChunk *mem_chunk);
|
sl@0
|
47 |
void old_mem_chunk_info (void);
|
sl@0
|
48 |
#ifndef G_ALLOC_AND_FREE
|
sl@0
|
49 |
#define G_ALLOC_AND_FREE 2
|
sl@0
|
50 |
#endif
|
sl@0
|
51 |
|
sl@0
|
52 |
/* --- functions --- */
|
sl@0
|
53 |
static inline int
|
sl@0
|
54 |
corruption (void)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
if (G_UNLIKELY (want_corruption))
|
sl@0
|
57 |
{
|
sl@0
|
58 |
/* corruption per call likelyness is about 1:4000000 */
|
sl@0
|
59 |
guint32 r = g_random_int() % 8000009;
|
sl@0
|
60 |
return r == 277 ? +1 : r == 281 ? -1 : 0;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
return 0;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
static inline gpointer
|
sl@0
|
66 |
memchunk_alloc (GMemChunk **memchunkp,
|
sl@0
|
67 |
guint size)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
size = MAX (size, 1);
|
sl@0
|
70 |
if (G_UNLIKELY (!*memchunkp))
|
sl@0
|
71 |
*memchunkp = old_mem_chunk_new ("", size, 4096, G_ALLOC_AND_FREE);
|
sl@0
|
72 |
return old_mem_chunk_alloc (*memchunkp);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
static inline void
|
sl@0
|
76 |
memchunk_free (GMemChunk *memchunk,
|
sl@0
|
77 |
gpointer chunk)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
old_mem_chunk_free (memchunk, chunk);
|
sl@0
|
80 |
if (clean_memchunks)
|
sl@0
|
81 |
old_mem_chunk_clean (memchunk);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
static gpointer
|
sl@0
|
85 |
test_memchunk_thread (gpointer data)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
GMemChunk **memchunks;
|
sl@0
|
88 |
guint i, j;
|
sl@0
|
89 |
guint8 **ps;
|
sl@0
|
90 |
guint *ss;
|
sl@0
|
91 |
guint32 rand_accu = 2147483563;
|
sl@0
|
92 |
/* initialize random numbers */
|
sl@0
|
93 |
if (data)
|
sl@0
|
94 |
rand_accu = *(guint32*) data;
|
sl@0
|
95 |
else
|
sl@0
|
96 |
{
|
sl@0
|
97 |
GTimeVal rand_tv;
|
sl@0
|
98 |
g_get_current_time (&rand_tv);
|
sl@0
|
99 |
rand_accu = rand_tv.tv_usec + (rand_tv.tv_sec << 16);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
/* prepare for memchunk creation */
|
sl@0
|
103 |
memchunks = (GMemChunk **)g_alloca (sizeof (memchunks[0]) * prime_size);
|
sl@0
|
104 |
memset (memchunks, 0, sizeof (memchunks[0]) * prime_size);
|
sl@0
|
105 |
|
sl@0
|
106 |
ps = g_new (guint8*, number_of_blocks);
|
sl@0
|
107 |
ss = g_new (guint, number_of_blocks);
|
sl@0
|
108 |
/* create number_of_blocks random sizes */
|
sl@0
|
109 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
110 |
ss[i] = quick_rand32() % prime_size;
|
sl@0
|
111 |
/* allocate number_of_blocks blocks */
|
sl@0
|
112 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
113 |
ps[i] = memchunk_alloc (&memchunks[ss[i]], ss[i]);
|
sl@0
|
114 |
for (j = 0; j < number_of_repetitions; j++)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
/* free number_of_blocks/2 blocks */
|
sl@0
|
117 |
for (i = 0; i < number_of_blocks; i += 2)
|
sl@0
|
118 |
memchunk_free (memchunks[ss[i]], ps[i]);
|
sl@0
|
119 |
/* allocate number_of_blocks/2 blocks with new sizes */
|
sl@0
|
120 |
for (i = 0; i < number_of_blocks; i += 2)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
ss[i] = quick_rand32() % prime_size;
|
sl@0
|
123 |
ps[i] = memchunk_alloc (&memchunks[ss[i]], ss[i]);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
}
|
sl@0
|
126 |
/* free number_of_blocks blocks */
|
sl@0
|
127 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
128 |
memchunk_free (memchunks[ss[i]], ps[i]);
|
sl@0
|
129 |
/* alloc and free many equally sized chunks in a row */
|
sl@0
|
130 |
for (i = 0; i < number_of_repetitions; i++)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
guint sz = quick_rand32() % prime_size;
|
sl@0
|
133 |
guint k = number_of_blocks / 100;
|
sl@0
|
134 |
for (j = 0; j < k; j++)
|
sl@0
|
135 |
ps[j] = memchunk_alloc (&memchunks[sz], sz);
|
sl@0
|
136 |
for (j = 0; j < k; j++)
|
sl@0
|
137 |
memchunk_free (memchunks[sz], ps[j]);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
/* cleanout memchunks */
|
sl@0
|
140 |
for (i = 0; i < prime_size; i++)
|
sl@0
|
141 |
if (memchunks[i])
|
sl@0
|
142 |
old_mem_chunk_destroy (memchunks[i]);
|
sl@0
|
143 |
g_free (ps);
|
sl@0
|
144 |
g_free (ss);
|
sl@0
|
145 |
|
sl@0
|
146 |
return NULL;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
static gpointer
|
sl@0
|
150 |
test_sliced_mem_thread (gpointer data)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
guint32 rand_accu = 2147483563;
|
sl@0
|
153 |
guint i, j;
|
sl@0
|
154 |
guint8 **ps;
|
sl@0
|
155 |
guint *ss;
|
sl@0
|
156 |
|
sl@0
|
157 |
/* initialize random numbers */
|
sl@0
|
158 |
if (data)
|
sl@0
|
159 |
rand_accu = *(guint32*) data;
|
sl@0
|
160 |
else
|
sl@0
|
161 |
{
|
sl@0
|
162 |
GTimeVal rand_tv;
|
sl@0
|
163 |
g_get_current_time (&rand_tv);
|
sl@0
|
164 |
rand_accu = rand_tv.tv_usec + (rand_tv.tv_sec << 16);
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
ps = g_new (guint8*, number_of_blocks);
|
sl@0
|
168 |
ss = g_new (guint, number_of_blocks);
|
sl@0
|
169 |
/* create number_of_blocks random sizes */
|
sl@0
|
170 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
171 |
ss[i] = quick_rand32() % prime_size;
|
sl@0
|
172 |
/* allocate number_of_blocks blocks */
|
sl@0
|
173 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
174 |
ps[i] = g_slice_alloc (ss[i] + corruption());
|
sl@0
|
175 |
for (j = 0; j < number_of_repetitions; j++)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
/* free number_of_blocks/2 blocks */
|
sl@0
|
178 |
for (i = 0; i < number_of_blocks; i += 2)
|
sl@0
|
179 |
g_slice_free1 (ss[i] + corruption(), ps[i] + corruption());
|
sl@0
|
180 |
/* allocate number_of_blocks/2 blocks with new sizes */
|
sl@0
|
181 |
for (i = 0; i < number_of_blocks; i += 2)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
ss[i] = quick_rand32() % prime_size;
|
sl@0
|
184 |
ps[i] = g_slice_alloc (ss[i] + corruption());
|
sl@0
|
185 |
}
|
sl@0
|
186 |
}
|
sl@0
|
187 |
/* free number_of_blocks blocks */
|
sl@0
|
188 |
for (i = 0; i < number_of_blocks; i++)
|
sl@0
|
189 |
g_slice_free1 (ss[i] + corruption(), ps[i] + corruption());
|
sl@0
|
190 |
/* alloc and free many equally sized chunks in a row */
|
sl@0
|
191 |
for (i = 0; i < number_of_repetitions; i++)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
guint sz = quick_rand32() % prime_size;
|
sl@0
|
194 |
guint k = number_of_blocks / 100;
|
sl@0
|
195 |
for (j = 0; j < k; j++)
|
sl@0
|
196 |
ps[j] = g_slice_alloc (sz + corruption());
|
sl@0
|
197 |
for (j = 0; j < k; j++)
|
sl@0
|
198 |
g_slice_free1 (sz + corruption(), ps[j] + corruption());
|
sl@0
|
199 |
}
|
sl@0
|
200 |
g_free (ps);
|
sl@0
|
201 |
g_free (ss);
|
sl@0
|
202 |
|
sl@0
|
203 |
return NULL;
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
static void
|
sl@0
|
207 |
usage (void)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
g_print ("Usage: slice-test [n_threads] [G|S|M|O][f][c][~] [maxblocksize] [seed]\n");
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
int
|
sl@0
|
213 |
main (int argc,
|
sl@0
|
214 |
char *argv[])
|
sl@0
|
215 |
{
|
sl@0
|
216 |
guint seed32, *seedp = NULL;
|
sl@0
|
217 |
gboolean ccounters = FALSE, use_memchunks = FALSE;
|
sl@0
|
218 |
guint n_threads = 1;
|
sl@0
|
219 |
const gchar *mode = "slab allocator + magazine cache", *emode = " ";
|
sl@0
|
220 |
#ifdef __SYMBIAN32__
|
sl@0
|
221 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
222 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
223 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
224 |
if (argc > 1)
|
sl@0
|
225 |
n_threads = g_ascii_strtoull (argv[1], NULL, 10);
|
sl@0
|
226 |
if (argc > 2)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
guint i, l = strlen (argv[2]);
|
sl@0
|
229 |
for (i = 0; i < l; i++)
|
sl@0
|
230 |
switch (argv[2][i])
|
sl@0
|
231 |
{
|
sl@0
|
232 |
case 'G': /* GLib mode */
|
sl@0
|
233 |
g_slice_set_config (G_SLICE_CONFIG_ALWAYS_MALLOC, FALSE);
|
sl@0
|
234 |
g_slice_set_config (G_SLICE_CONFIG_BYPASS_MAGAZINES, FALSE);
|
sl@0
|
235 |
mode = "slab allocator + magazine cache";
|
sl@0
|
236 |
break;
|
sl@0
|
237 |
case 'S': /* slab mode */
|
sl@0
|
238 |
g_slice_set_config (G_SLICE_CONFIG_ALWAYS_MALLOC, FALSE);
|
sl@0
|
239 |
g_slice_set_config (G_SLICE_CONFIG_BYPASS_MAGAZINES, TRUE);
|
sl@0
|
240 |
mode = "slab allocator";
|
sl@0
|
241 |
break;
|
sl@0
|
242 |
case 'M': /* malloc mode */
|
sl@0
|
243 |
g_slice_set_config (G_SLICE_CONFIG_ALWAYS_MALLOC, TRUE);
|
sl@0
|
244 |
mode = "system malloc";
|
sl@0
|
245 |
break;
|
sl@0
|
246 |
case 'O': /* old memchunks */
|
sl@0
|
247 |
use_memchunks = TRUE;
|
sl@0
|
248 |
mode = "old memchunks";
|
sl@0
|
249 |
break;
|
sl@0
|
250 |
case 'f': /* eager freeing */
|
sl@0
|
251 |
g_slice_set_config (G_SLICE_CONFIG_WORKING_SET_MSECS, 0);
|
sl@0
|
252 |
clean_memchunks = TRUE;
|
sl@0
|
253 |
emode = " with eager freeing";
|
sl@0
|
254 |
break;
|
sl@0
|
255 |
case 'c': /* print contention counters */
|
sl@0
|
256 |
ccounters = TRUE;
|
sl@0
|
257 |
break;
|
sl@0
|
258 |
case '~':
|
sl@0
|
259 |
want_corruption = TRUE; /* force occasional corruption */
|
sl@0
|
260 |
break;
|
sl@0
|
261 |
default:
|
sl@0
|
262 |
usage();
|
sl@0
|
263 |
return 1;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
}
|
sl@0
|
266 |
if (argc > 3)
|
sl@0
|
267 |
prime_size = g_ascii_strtoull (argv[3], NULL, 10);
|
sl@0
|
268 |
if (argc > 4)
|
sl@0
|
269 |
{
|
sl@0
|
270 |
seed32 = g_ascii_strtoull (argv[4], NULL, 10);
|
sl@0
|
271 |
seedp = &seed32;
|
sl@0
|
272 |
}
|
sl@0
|
273 |
|
sl@0
|
274 |
g_thread_init (NULL);
|
sl@0
|
275 |
|
sl@0
|
276 |
if (argc <= 1)
|
sl@0
|
277 |
usage();
|
sl@0
|
278 |
|
sl@0
|
279 |
{
|
sl@0
|
280 |
gchar strseed[64] = "<random>";
|
sl@0
|
281 |
GThread **threads;
|
sl@0
|
282 |
guint i;
|
sl@0
|
283 |
|
sl@0
|
284 |
if (seedp)
|
sl@0
|
285 |
g_snprintf (strseed, 64, "%u", *seedp);
|
sl@0
|
286 |
g_print ("Starting %d threads allocating random blocks <= %u bytes with seed=%s using %s%s\n", n_threads, prime_size, strseed, mode, emode);
|
sl@0
|
287 |
threads = (GThread **)g_alloca (sizeof(GThread*) * n_threads);
|
sl@0
|
288 |
if (!use_memchunks)
|
sl@0
|
289 |
for (i = 0; i < n_threads; i++)
|
sl@0
|
290 |
threads[i] = g_thread_create_full (test_sliced_mem_thread, seedp, 0, TRUE, FALSE, 0, NULL);
|
sl@0
|
291 |
else
|
sl@0
|
292 |
{
|
sl@0
|
293 |
old_mem_chunks_init();
|
sl@0
|
294 |
for (i = 0; i < n_threads; i++)
|
sl@0
|
295 |
threads[i] = g_thread_create_full (test_memchunk_thread, seedp, 0, TRUE, FALSE, 0, NULL);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
for (i = 0; i < n_threads; i++)
|
sl@0
|
298 |
g_thread_join (threads[i]);
|
sl@0
|
299 |
|
sl@0
|
300 |
if (ccounters)
|
sl@0
|
301 |
{
|
sl@0
|
302 |
guint n, n_chunks = g_slice_get_config (G_SLICE_CONFIG_CHUNK_SIZES);
|
sl@0
|
303 |
g_print (" ChunkSize | MagazineSize | Contention\n");
|
sl@0
|
304 |
for (i = 0; i < n_chunks; i++)
|
sl@0
|
305 |
{
|
sl@0
|
306 |
gint64 *vals = g_slice_get_config_state (G_SLICE_CONFIG_CONTENTION_COUNTER, i, &n);
|
sl@0
|
307 |
g_print (" %9llu | %9llu | %9llu\n", vals[0], vals[2], vals[1]);
|
sl@0
|
308 |
g_free (vals);
|
sl@0
|
309 |
}
|
sl@0
|
310 |
}
|
sl@0
|
311 |
else
|
sl@0
|
312 |
g_print ("Done.\n");
|
sl@0
|
313 |
#ifdef __SYMBIAN32__
|
sl@0
|
314 |
testResultXml("slice-test");
|
sl@0
|
315 |
#endif /* EMULATOR */
|
sl@0
|
316 |
return 0;
|
sl@0
|
317 |
}
|
sl@0
|
318 |
}
|