hw/arm/virt: add 2.8 machine type
[qemu/ar7.git] / tests / test-qht.c
blob46a64b6731dcf0dafefa1a8088cd94b36df2390a
1 /*
2 * Copyright (C) 2016, Emilio G. Cota <cota@braap.org>
4 * License: GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7 #include "qemu/osdep.h"
8 #include "qemu/qht.h"
10 #define N 5000
12 static struct qht ht;
13 static int32_t arr[N * 2];
15 static bool is_equal(const void *obj, const void *userp)
17 const int32_t *a = obj;
18 const int32_t *b = userp;
20 return *a == *b;
23 static void insert(int a, int b)
25 int i;
27 for (i = a; i < b; i++) {
28 uint32_t hash;
30 arr[i] = i;
31 hash = i;
33 qht_insert(&ht, &arr[i], hash);
37 static void rm(int init, int end)
39 int i;
41 for (i = init; i < end; i++) {
42 uint32_t hash;
44 hash = arr[i];
45 g_assert_true(qht_remove(&ht, &arr[i], hash));
49 static void check(int a, int b, bool expected)
51 struct qht_stats stats;
52 int i;
54 for (i = a; i < b; i++) {
55 void *p;
56 uint32_t hash;
57 int32_t val;
59 val = i;
60 hash = i;
61 p = qht_lookup(&ht, is_equal, &val, hash);
62 g_assert_true(!!p == expected);
64 qht_statistics_init(&ht, &stats);
65 if (stats.used_head_buckets) {
66 g_assert_cmpfloat(qdist_avg(&stats.chain), >=, 1.0);
68 g_assert_cmpuint(stats.head_buckets, >, 0);
69 qht_statistics_destroy(&stats);
72 static void count_func(struct qht *ht, void *p, uint32_t hash, void *userp)
74 unsigned int *curr = userp;
76 (*curr)++;
79 static void check_n(size_t expected)
81 struct qht_stats stats;
83 qht_statistics_init(&ht, &stats);
84 g_assert_cmpuint(stats.entries, ==, expected);
85 qht_statistics_destroy(&stats);
88 static void iter_check(unsigned int count)
90 unsigned int curr = 0;
92 qht_iter(&ht, count_func, &curr);
93 g_assert_cmpuint(curr, ==, count);
96 static void qht_do_test(unsigned int mode, size_t init_entries)
98 /* under KVM we might fetch stats from an uninitialized qht */
99 check_n(0);
101 qht_init(&ht, 0, mode);
103 check_n(0);
104 insert(0, N);
105 check(0, N, true);
106 check_n(N);
107 check(-N, -1, false);
108 iter_check(N);
110 rm(101, 102);
111 check_n(N - 1);
112 insert(N, N * 2);
113 check_n(N + N - 1);
114 rm(N, N * 2);
115 check_n(N - 1);
116 insert(101, 102);
117 check_n(N);
119 rm(10, 200);
120 check_n(N - 190);
121 insert(150, 200);
122 check_n(N - 190 + 50);
123 insert(10, 150);
124 check_n(N);
126 rm(1, 2);
127 check_n(N - 1);
128 qht_reset_size(&ht, 0);
129 check_n(0);
130 check(0, N, false);
132 qht_destroy(&ht);
135 static void qht_test(unsigned int mode)
137 qht_do_test(mode, 0);
138 qht_do_test(mode, 1);
139 qht_do_test(mode, 2);
140 qht_do_test(mode, 8);
141 qht_do_test(mode, 16);
142 qht_do_test(mode, 8192);
143 qht_do_test(mode, 16384);
146 static void test_default(void)
148 qht_test(0);
151 static void test_resize(void)
153 qht_test(QHT_MODE_AUTO_RESIZE);
156 int main(int argc, char *argv[])
158 g_test_init(&argc, &argv, NULL);
159 g_test_add_func("/qht/mode/default", test_default);
160 g_test_add_func("/qht/mode/resize", test_resize);
161 return g_test_run();