sl@0
|
1 |
/* GLIB sliced memory - fast threaded memory chunk allocator
|
sl@0
|
2 |
* Copyright (C) 2005 Tim Janik
|
sl@0
|
3 |
* Portions copyright (c) 2009 Nokia Corporation. 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 |
#include <string.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base)))
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifdef __SYMBIAN32__
|
sl@0
|
25 |
#include "mrt2_glib2_test.h"
|
sl@0
|
26 |
#endif //__SYMBIAN32__
|
sl@0
|
27 |
|
sl@0
|
28 |
static gdouble parse_memsize (const gchar *cstring);
|
sl@0
|
29 |
static void usage (void);
|
sl@0
|
30 |
|
sl@0
|
31 |
static void
|
sl@0
|
32 |
fill_memory (guint **mem,
|
sl@0
|
33 |
guint n,
|
sl@0
|
34 |
guint val)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
guint j, o = 0;
|
sl@0
|
37 |
for (j = 0; j < n; j++)
|
sl@0
|
38 |
mem[j][o] = val;
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
static guint64
|
sl@0
|
42 |
access_memory3 (guint **mema,
|
sl@0
|
43 |
guint **memb,
|
sl@0
|
44 |
guint **memd,
|
sl@0
|
45 |
guint n,
|
sl@0
|
46 |
guint64 repeats)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
guint64 accu = 0, i, j;
|
sl@0
|
49 |
const guint o = 0;
|
sl@0
|
50 |
for (i = 0; i < repeats; i++)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
for (j = 1; j < n; j += 2)
|
sl@0
|
53 |
memd[j][o] = mema[j][o] + memb[j][o];
|
sl@0
|
54 |
}
|
sl@0
|
55 |
for (i = 0; i < repeats; i++)
|
sl@0
|
56 |
for (j = 0; j < n; j++)
|
sl@0
|
57 |
accu += memd[j][o];
|
sl@0
|
58 |
return accu;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
static void
|
sl@0
|
62 |
touch_mem (guint64 block_size,
|
sl@0
|
63 |
guint64 n_blocks,
|
sl@0
|
64 |
guint64 repeats)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
guint64 j, accu, n = n_blocks;
|
sl@0
|
67 |
GTimer *timer;
|
sl@0
|
68 |
guint **memc;
|
sl@0
|
69 |
guint **memb;
|
sl@0
|
70 |
guint **mema = g_new (guint*, n);
|
sl@0
|
71 |
for (j = 0; j < n; j++)
|
sl@0
|
72 |
mema[j] = g_slice_alloc (block_size);
|
sl@0
|
73 |
memb = g_new (guint*, n);
|
sl@0
|
74 |
for (j = 0; j < n; j++)
|
sl@0
|
75 |
memb[j] = g_slice_alloc (block_size);
|
sl@0
|
76 |
memc = g_new (guint*, n);
|
sl@0
|
77 |
for (j = 0; j < n; j++)
|
sl@0
|
78 |
memc[j] = g_slice_alloc (block_size);
|
sl@0
|
79 |
|
sl@0
|
80 |
timer = g_timer_new();
|
sl@0
|
81 |
fill_memory (mema, n, 2);
|
sl@0
|
82 |
fill_memory (memb, n, 3);
|
sl@0
|
83 |
fill_memory (memc, n, 4);
|
sl@0
|
84 |
access_memory3 (mema, memb, memc, n, 3);
|
sl@0
|
85 |
g_timer_start (timer);
|
sl@0
|
86 |
accu = access_memory3 (mema, memb, memc, n, repeats);
|
sl@0
|
87 |
g_timer_stop (timer);
|
sl@0
|
88 |
|
sl@0
|
89 |
g_print ("Access-time = %fs\n", g_timer_elapsed (timer, NULL));
|
sl@0
|
90 |
g_assert (accu / repeats == (2 + 3) * n / 2 + 4 * n / 2);
|
sl@0
|
91 |
|
sl@0
|
92 |
for (j = 0; j < n; j++)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
g_slice_free1 (block_size, mema[j]);
|
sl@0
|
95 |
g_slice_free1 (block_size, memb[j]);
|
sl@0
|
96 |
g_slice_free1 (block_size, memc[j]);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
g_timer_destroy (timer);
|
sl@0
|
99 |
g_free (mema);
|
sl@0
|
100 |
g_free (memb);
|
sl@0
|
101 |
g_free (memc);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
static void
|
sl@0
|
105 |
usage (void)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
g_print ("Usage: slice-color <block-size> [memory-size] [repeats] [colorization]\n");
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
int
|
sl@0
|
111 |
main (int argc,
|
sl@0
|
112 |
char *argv[])
|
sl@0
|
113 |
{
|
sl@0
|
114 |
guint64 block_size = 512, area_size = 1024, n_blocks, repeats = 10;
|
sl@0
|
115 |
|
sl@0
|
116 |
#ifdef __SYMBIAN32__
|
sl@0
|
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);
|
sl@0
|
118 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
119 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
120 |
|
sl@0
|
121 |
if (argc > 1)
|
sl@0
|
122 |
block_size = parse_memsize (argv[1]);
|
sl@0
|
123 |
else
|
sl@0
|
124 |
{
|
sl@0
|
125 |
usage();
|
sl@0
|
126 |
block_size = 512;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
if (argc > 2)
|
sl@0
|
129 |
area_size = parse_memsize (argv[2]);
|
sl@0
|
130 |
if (argc > 3)
|
sl@0
|
131 |
repeats = parse_memsize (argv[3]);
|
sl@0
|
132 |
if (argc > 4)
|
sl@0
|
133 |
g_slice_set_config (G_SLICE_CONFIG_COLOR_INCREMENT, parse_memsize (argv[4]));
|
sl@0
|
134 |
|
sl@0
|
135 |
/* figure number of blocks from block and area size.
|
sl@0
|
136 |
* divide area by 3 because touch_mem() allocates 3 areas
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
n_blocks = area_size / 3 / ALIGN (block_size, sizeof (gsize) * 2);
|
sl@0
|
139 |
|
sl@0
|
140 |
/* basic sanity checks */
|
sl@0
|
141 |
if (!block_size || !n_blocks || block_size >= area_size)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
g_printerr ("Invalid arguments: block-size=%llu memory-size=%llu\n", block_size, area_size);
|
sl@0
|
144 |
usage();
|
sl@0
|
145 |
return 1;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
g_print ("Will allocate and touch %llu blocks of %llu bytes (= %llu bytes) %llu times with color increment: 0x%08llx\n",
|
sl@0
|
149 |
n_blocks, block_size, n_blocks * block_size, repeats, g_slice_get_config (G_SLICE_CONFIG_COLOR_INCREMENT));
|
sl@0
|
150 |
touch_mem (block_size, n_blocks, repeats);
|
sl@0
|
151 |
|
sl@0
|
152 |
|
sl@0
|
153 |
#ifdef __SYMBIAN32__
|
sl@0
|
154 |
testResultXml("slice-color");
|
sl@0
|
155 |
#endif //__SYMBIAN32__
|
sl@0
|
156 |
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
return 0;
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
static gdouble
|
sl@0
|
163 |
parse_memsize (const gchar *cstring)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
gchar *mem = g_strdup (cstring);
|
sl@0
|
166 |
gchar *string = g_strstrip (mem);
|
sl@0
|
167 |
guint l = strlen (string);
|
sl@0
|
168 |
gdouble f = 0;
|
sl@0
|
169 |
gchar *derr = NULL;
|
sl@0
|
170 |
gdouble msize;
|
sl@0
|
171 |
|
sl@0
|
172 |
switch (l ? string[l - 1] : 0)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
case 'k': f = 1000; break;
|
sl@0
|
175 |
case 'K': f = 1024; break;
|
sl@0
|
176 |
case 'm': f = 1000000; break;
|
sl@0
|
177 |
case 'M': f = 1024 * 1024; break;
|
sl@0
|
178 |
case 'g': f = 1000000000; break;
|
sl@0
|
179 |
case 'G': f = 1024 * 1024 * 1024; break;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
if (f)
|
sl@0
|
182 |
string[l - 1] = 0;
|
sl@0
|
183 |
msize = g_ascii_strtod (string, &derr);
|
sl@0
|
184 |
g_free (mem);
|
sl@0
|
185 |
/*
|
sl@0
|
186 |
if (derr && *derr)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
g_printerr ("failed to parse number at: %s\n", derr);
|
sl@0
|
189 |
msize = 0;
|
sl@0
|
190 |
}*/
|
sl@0
|
191 |
if (f)
|
sl@0
|
192 |
msize *= f;
|
sl@0
|
193 |
return msize;
|
sl@0
|
194 |
}
|