Update contrib.
1 /* GLIB sliced memory - fast threaded memory chunk allocator
2 * Copyright (C) 2005 Tim Janik
3 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
22 #define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base)))
25 #include "mrt2_glib2_test.h"
26 #endif //__SYMBIAN32__
28 static gdouble parse_memsize (const gchar *cstring);
29 static void usage (void);
32 fill_memory (guint **mem,
37 for (j = 0; j < n; j++)
42 access_memory3 (guint **mema,
48 guint64 accu = 0, i, j;
50 for (i = 0; i < repeats; i++)
52 for (j = 1; j < n; j += 2)
53 memd[j][o] = mema[j][o] + memb[j][o];
55 for (i = 0; i < repeats; i++)
56 for (j = 0; j < n; j++)
62 touch_mem (guint64 block_size,
66 guint64 j, accu, n = n_blocks;
70 guint **mema = g_new (guint*, n);
71 for (j = 0; j < n; j++)
72 mema[j] = g_slice_alloc (block_size);
73 memb = g_new (guint*, n);
74 for (j = 0; j < n; j++)
75 memb[j] = g_slice_alloc (block_size);
76 memc = g_new (guint*, n);
77 for (j = 0; j < n; j++)
78 memc[j] = g_slice_alloc (block_size);
80 timer = g_timer_new();
81 fill_memory (mema, n, 2);
82 fill_memory (memb, n, 3);
83 fill_memory (memc, n, 4);
84 access_memory3 (mema, memb, memc, n, 3);
85 g_timer_start (timer);
86 accu = access_memory3 (mema, memb, memc, n, repeats);
89 g_print ("Access-time = %fs\n", g_timer_elapsed (timer, NULL));
90 g_assert (accu / repeats == (2 + 3) * n / 2 + 4 * n / 2);
92 for (j = 0; j < n; j++)
94 g_slice_free1 (block_size, mema[j]);
95 g_slice_free1 (block_size, memb[j]);
96 g_slice_free1 (block_size, memc[j]);
98 g_timer_destroy (timer);
107 g_print ("Usage: slice-color <block-size> [memory-size] [repeats] [colorization]\n");
114 guint64 block_size = 512, area_size = 1024, n_blocks, repeats = 10;
117 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);
118 g_set_print_handler(mrtPrintHandler);
119 #endif /*__SYMBIAN32__*/
122 block_size = parse_memsize (argv[1]);
129 area_size = parse_memsize (argv[2]);
131 repeats = parse_memsize (argv[3]);
133 g_slice_set_config (G_SLICE_CONFIG_COLOR_INCREMENT, parse_memsize (argv[4]));
135 /* figure number of blocks from block and area size.
136 * divide area by 3 because touch_mem() allocates 3 areas
138 n_blocks = area_size / 3 / ALIGN (block_size, sizeof (gsize) * 2);
140 /* basic sanity checks */
141 if (!block_size || !n_blocks || block_size >= area_size)
143 g_printerr ("Invalid arguments: block-size=%llu memory-size=%llu\n", block_size, area_size);
148 g_print ("Will allocate and touch %llu blocks of %llu bytes (= %llu bytes) %llu times with color increment: 0x%08llx\n",
149 n_blocks, block_size, n_blocks * block_size, repeats, g_slice_get_config (G_SLICE_CONFIG_COLOR_INCREMENT));
150 touch_mem (block_size, n_blocks, repeats);
154 testResultXml("slice-color");
155 #endif //__SYMBIAN32__
163 parse_memsize (const gchar *cstring)
165 gchar *mem = g_strdup (cstring);
166 gchar *string = g_strstrip (mem);
167 guint l = strlen (string);
172 switch (l ? string[l - 1] : 0)
174 case 'k': f = 1000; break;
175 case 'K': f = 1024; break;
176 case 'm': f = 1000000; break;
177 case 'M': f = 1024 * 1024; break;
178 case 'g': f = 1000000000; break;
179 case 'G': f = 1024 * 1024 * 1024; break;
183 msize = g_ascii_strtod (string, &derr);
188 g_printerr ("failed to parse number at: %s\n", derr);