2 * Testsuite for atomic64_t functions
4 * Copyright © 2010 Luca Barbieri
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/init.h>
15 #include <linux/bug.h>
16 #include <linux/kernel.h>
17 #include <linux/atomic.h>
18 #include <linux/module.h>
21 #include <asm/cpufeature.h> /* for boot_cpu_has below */
24 #define TEST(bit, op, c_op, val) \
26 atomic##bit##_set(&v, v0); \
28 atomic##bit##_##op(val, &v); \
30 WARN(atomic##bit##_read(&v) != r, "%Lx != %Lx\n", \
31 (unsigned long long)atomic##bit##_read(&v), \
32 (unsigned long long)r); \
36 * Test for a atomic operation family,
37 * @test should be a macro accepting parameters (bit, op, ...)
40 #define FAMILY_TEST(test, bit, op, args...) \
42 test(bit, op, ##args); \
43 test(bit, op##_acquire, ##args); \
44 test(bit, op##_release, ##args); \
45 test(bit, op##_relaxed, ##args); \
48 #define TEST_RETURN(bit, op, c_op, val) \
50 atomic##bit##_set(&v, v0); \
53 BUG_ON(atomic##bit##_##op(val, &v) != r); \
54 BUG_ON(atomic##bit##_read(&v) != r); \
57 #define TEST_FETCH(bit, op, c_op, val) \
59 atomic##bit##_set(&v, v0); \
62 BUG_ON(atomic##bit##_##op(val, &v) != v0); \
63 BUG_ON(atomic##bit##_read(&v) != r); \
66 #define RETURN_FAMILY_TEST(bit, op, c_op, val) \
68 FAMILY_TEST(TEST_RETURN, bit, op, c_op, val); \
71 #define FETCH_FAMILY_TEST(bit, op, c_op, val) \
73 FAMILY_TEST(TEST_FETCH, bit, op, c_op, val); \
76 #define TEST_ARGS(bit, op, init, ret, expect, args...) \
78 atomic##bit##_set(&v, init); \
79 BUG_ON(atomic##bit##_##op(&v, ##args) != ret); \
80 BUG_ON(atomic##bit##_read(&v) != expect); \
83 #define XCHG_FAMILY_TEST(bit, init, new) \
85 FAMILY_TEST(TEST_ARGS, bit, xchg, init, init, new, new); \
88 #define CMPXCHG_FAMILY_TEST(bit, init, new, wrong) \
90 FAMILY_TEST(TEST_ARGS, bit, cmpxchg, \
91 init, init, new, init, new); \
92 FAMILY_TEST(TEST_ARGS, bit, cmpxchg, \
93 init, init, init, wrong, new); \
96 #define INC_RETURN_FAMILY_TEST(bit, i) \
98 FAMILY_TEST(TEST_ARGS, bit, inc_return, \
99 i, (i) + one, (i) + one); \
102 #define DEC_RETURN_FAMILY_TEST(bit, i) \
104 FAMILY_TEST(TEST_ARGS, bit, dec_return, \
105 i, (i) - one, (i) - one); \
108 static __init void test_atomic(void)
112 int onestwos = 0x11112222;
118 TEST(, add, +=, onestwos);
119 TEST(, add, +=, -one);
120 TEST(, sub, -=, onestwos);
121 TEST(, sub, -=, -one);
125 TEST(, andnot, &= ~, v1);
127 RETURN_FAMILY_TEST(, add_return, +=, onestwos);
128 RETURN_FAMILY_TEST(, add_return, +=, -one);
129 RETURN_FAMILY_TEST(, sub_return, -=, onestwos);
130 RETURN_FAMILY_TEST(, sub_return, -=, -one);
132 FETCH_FAMILY_TEST(, fetch_add, +=, onestwos);
133 FETCH_FAMILY_TEST(, fetch_add, +=, -one);
134 FETCH_FAMILY_TEST(, fetch_sub, -=, onestwos);
135 FETCH_FAMILY_TEST(, fetch_sub, -=, -one);
137 FETCH_FAMILY_TEST(, fetch_or, |=, v1);
138 FETCH_FAMILY_TEST(, fetch_and, &=, v1);
139 FETCH_FAMILY_TEST(, fetch_andnot, &= ~, v1);
140 FETCH_FAMILY_TEST(, fetch_xor, ^=, v1);
142 INC_RETURN_FAMILY_TEST(, v0);
143 DEC_RETURN_FAMILY_TEST(, v0);
145 XCHG_FAMILY_TEST(, v0, v1);
146 CMPXCHG_FAMILY_TEST(, v0, v1, onestwos);
150 #define INIT(c) do { atomic64_set(&v, c); r = c; } while (0)
151 static __init void test_atomic64(void)
153 long long v0 = 0xaaa31337c001d00dLL;
154 long long v1 = 0xdeadbeefdeafcafeLL;
155 long long v2 = 0xfaceabadf00df001LL;
156 long long onestwos = 0x1111111122222222LL;
159 atomic64_t v = ATOMIC64_INIT(v0);
161 BUG_ON(v.counter != r);
163 atomic64_set(&v, v1);
165 BUG_ON(v.counter != r);
166 BUG_ON(atomic64_read(&v) != r);
168 TEST(64, add, +=, onestwos);
169 TEST(64, add, +=, -one);
170 TEST(64, sub, -=, onestwos);
171 TEST(64, sub, -=, -one);
172 TEST(64, or, |=, v1);
173 TEST(64, and, &=, v1);
174 TEST(64, xor, ^=, v1);
175 TEST(64, andnot, &= ~, v1);
177 RETURN_FAMILY_TEST(64, add_return, +=, onestwos);
178 RETURN_FAMILY_TEST(64, add_return, +=, -one);
179 RETURN_FAMILY_TEST(64, sub_return, -=, onestwos);
180 RETURN_FAMILY_TEST(64, sub_return, -=, -one);
182 FETCH_FAMILY_TEST(64, fetch_add, +=, onestwos);
183 FETCH_FAMILY_TEST(64, fetch_add, +=, -one);
184 FETCH_FAMILY_TEST(64, fetch_sub, -=, onestwos);
185 FETCH_FAMILY_TEST(64, fetch_sub, -=, -one);
187 FETCH_FAMILY_TEST(64, fetch_or, |=, v1);
188 FETCH_FAMILY_TEST(64, fetch_and, &=, v1);
189 FETCH_FAMILY_TEST(64, fetch_andnot, &= ~, v1);
190 FETCH_FAMILY_TEST(64, fetch_xor, ^=, v1);
195 BUG_ON(v.counter != r);
200 BUG_ON(v.counter != r);
202 INC_RETURN_FAMILY_TEST(64, v0);
203 DEC_RETURN_FAMILY_TEST(64, v0);
205 XCHG_FAMILY_TEST(64, v0, v1);
206 CMPXCHG_FAMILY_TEST(64, v0, v1, v2);
209 BUG_ON(atomic64_add_unless(&v, one, v0));
210 BUG_ON(v.counter != r);
213 BUG_ON(!atomic64_add_unless(&v, one, v1));
215 BUG_ON(v.counter != r);
218 BUG_ON(atomic64_dec_if_positive(&v) != (onestwos - 1));
220 BUG_ON(v.counter != r);
223 BUG_ON(atomic64_dec_if_positive(&v) != -one);
224 BUG_ON(v.counter != r);
227 BUG_ON(atomic64_dec_if_positive(&v) != (-one - one));
228 BUG_ON(v.counter != r);
231 BUG_ON(!atomic64_inc_not_zero(&v));
233 BUG_ON(v.counter != r);
236 BUG_ON(atomic64_inc_not_zero(&v));
237 BUG_ON(v.counter != r);
240 BUG_ON(!atomic64_inc_not_zero(&v));
242 BUG_ON(v.counter != r);
245 static __init int test_atomics_init(void)
251 pr_info("passed for %s platform %s CX8 and %s SSE\n",
254 #elif defined(CONFIG_X86_CMPXCHG64)
259 boot_cpu_has(X86_FEATURE_CX8) ? "with" : "without",
260 boot_cpu_has(X86_FEATURE_XMM) ? "with" : "without");
268 static __exit void test_atomics_exit(void) {}
270 module_init(test_atomics_init);
271 module_exit(test_atomics_exit);
273 MODULE_LICENSE("GPL");