-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.h
393 lines (303 loc) · 7.56 KB
/
test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/*
* Copyright (C) 2014, 2019 Sebastian Huber <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef TEST_H
#define TEST_H
#define __STDC_FORMAT_MACROS
#include <assert.h>
#include <inttypes.h>
#include <stddef.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#ifdef __rtems__
#include <rtems.h>
#include <rtems/bspIo.h>
#else /* __rtems__ */
#include <sys/time.h>
#include <sys/resource.h>
#include <stdio.h>
#endif /* __rtems__ */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef uint64_t ticks;
#ifdef __rtems__
#define ticks_read() rtems_clock_get_uptime_nanoseconds()
#else /* __rtems__ */
#define printk printf
static inline uintptr_t ticks_read(void)
{
struct rusage r;
getrusage(RUSAGE_SELF, &r);
return r.ru_utime.tv_sec * 1000000000ULL + r.ru_utime.tv_usec * 1000ULL;
}
#endif /* __rtems__ */
#define ticks_difference(t1, t0) ((t1) - (t0))
#define ticks_to_nanoseconds(t) (t)
typedef struct {
int key;
bool is_member;
} test_data;
typedef void (*tree_init_tree)(void *tree);
typedef void (*tree_init_node)(void *node, int key);
typedef test_data *(*tree_get_data)(void *node);
typedef void (*tree_insert)(void *tree, void *node);
typedef void (*tree_extract)(void *tree, void *node);
static inline uint32_t simple_random( uint32_t v )
{
v *= 1664525;
v += 1013904223;
return v;
}
static inline void *get_node(void *nodes, size_t node_size, size_t i)
{
return (void *) ((char *) nodes + i * node_size);
}
static inline void *next_node(void *node, size_t node_size)
{
return get_node(node, node_size, 1);
}
static inline void *create_nodes(
size_t node_count,
size_t node_size,
tree_init_node init_node
)
{
void *nodes;
void *node;
size_t i;
nodes = calloc(node_count, node_size);
assert(nodes != NULL);
node = nodes;
for (i = 0; i < node_count; ++i) {
(*init_node)(node, (int) i);
node = next_node(node, node_size);
}
return nodes;
}
static inline void test_random_ops(
void *tree,
size_t node_count,
size_t node_size,
tree_init_tree init_tree,
tree_init_node init_node,
tree_get_data get_data,
tree_insert insert,
tree_extract extract
)
{
uint32_t v = 0xdeadbeef;
size_t m = 123 * node_count;
unsigned long insert_count = 0;
unsigned long extract_count = 0;
int shift = 8;
void *nodes;
size_t i;
ticks t0;
ticks t1;
ticks d;
assert(node_count < (1UL << (32 - shift)));
(*init_tree)(tree);
nodes = create_nodes(node_count, node_size, init_node);
t0 = ticks_read();
for (i = 0; i < m; ++i) {
size_t j = (v >> shift) % node_count;
void *node = get_node(nodes, node_size, j);
test_data *data = (*get_data)(node);
if (data->is_member) {
data->is_member = false;
++extract_count;
(*extract)(tree, node);
} else {
data->is_member = true;
++insert_count;
(*insert)(tree, node);
}
v = simple_random(v);
}
t1 = ticks_read();
d = ticks_difference(t1, t0);
printk(
"\t\t\t<Sample nodeCount=\"%lu\" "
"insertCount=\"%lu\" "
"extractCount=\"%lu\" "
"duration=\"%" PRIu64 "\"/>\n",
(unsigned long) node_count,
insert_count,
extract_count,
ticks_to_nanoseconds(d)
);
free(nodes);
}
static inline void test_linear(
void *tree,
size_t node_count,
size_t node_size,
tree_init_tree init_tree,
tree_init_node init_node,
tree_insert insert,
tree_extract extract
)
{
size_t m = 10000;
void *nodes;
size_t i;
size_t j;
ticks t0;
ticks t1;
ticks d;
(*init_tree)(tree);
nodes = create_nodes(node_count, node_size, init_node);
t0 = ticks_read();
for (i = 0; i < m; ++i) {
void *node;
node = nodes;
for (j = 0; j < node_count; ++j) {
(*insert)(tree, node);
node = next_node(node, node_size);
}
node = nodes;
for (j = 0; j < node_count; ++j) {
(*extract)(tree, node);
node = next_node(node, node_size);
}
}
t1 = ticks_read();
d = ticks_difference(t1, t0);
printk(
"\t\t\t<Sample nodeCount=\"%lu\" "
"insertCount=\"%lu\" "
"extractCount=\"%lu\" "
"duration=\"%" PRIu64 "\"/>\n",
(unsigned long) node_count,
(unsigned long) m,
(unsigned long) m,
ticks_to_nanoseconds(d)
);
free(nodes);
}
static inline size_t large_set_next(size_t c)
{
return (123 * c + 99) / 100;
}
static inline void test(
const char *impl,
void *tree,
size_t node_size,
tree_init_tree init_tree,
tree_init_node init_node,
tree_get_data get_data,
tree_insert insert,
tree_extract extract
)
{
size_t small_set_size = 128;
size_t large_set_size = 1;
size_t c;
size_t i;
printk(
"\t<RBTest implementation=\"%s\" nodeSize=\"%lu\">\n",
impl,
(unsigned long) (node_size - sizeof(test_data))
);
printk("\t\t<SmallSetRandomOps>\n");
for (i = 1; i < small_set_size; ++i) {
test_random_ops(
tree,
i,
node_size,
init_tree,
init_node,
get_data,
insert,
extract
);
}
printk("\t\t</SmallSetRandomOps>\n");
printk("\t\t<LargeSetRandomOps>\n");
c = i;
while (c < large_set_size) {
test_random_ops(
tree,
c,
node_size,
init_tree,
init_node,
get_data,
insert,
extract
);
c = large_set_next(c);
}
printk("\t\t</LargeSetRandomOps>\n");
printk("\t\t<SmallSetLinear>\n");
for (i = 1; i < small_set_size; ++i) {
test_linear(
tree,
i,
node_size,
init_tree,
init_node,
insert,
extract
);
}
printk("\t\t</SmallSetLinear>\n");
printk("\t\t<LargeSetLinear>\n");
c = i;
while (c < large_set_size) {
test_linear(
tree,
c,
node_size,
init_tree,
init_node,
insert,
extract
);
c = large_set_next(c);
}
printk("\t\t</LargeSetLinear>\n");
printk("\t</RBTest>\n");
}
void test_bheap(void);
void test_rbtree_boost(void);
void test_rbtree_bsd(void);
void test_rbtree_bsd_for_rtems(void);
void test_rbtree_chain(void);
void test_rbtree_ec(void);
void test_rbtree_jffs2(void);
void test_rbtree_linux(void);
void test_rbtree_llrb(void);
void test_rbtree_rb(void);
void test_rbtree_rb_new(void);
void test_rbtree_rb_old(void);
void test_rbtree_rtems(void);
void test_rbtree_rtems_compact(void);
void test_rbtree_tailq(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* TEST_H */