xref: /netbsd-src/tests/include/sys/t_bitops.c (revision 86cc76e79526b76173878af45ebdc5702c6f3cfc)
1 /*	$NetBSD: t_bitops.c,v 1.9 2011/08/29 12:50:50 jruoho Exp $ */
2 
3 /*-
4  * Copyright (c) 2011 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Jukka Ruohonen.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_bitops.c,v 1.9 2011/08/29 12:50:50 jruoho Exp $");
33 
34 #include <atf-c.h>
35 
36 #include <sys/cdefs.h>
37 #include <sys/bitops.h>
38 #include <sys/utsname.h>
39 
40 #include <math.h>
41 #include <stdlib.h>
42 #include <string.h>
43 
44 static const struct {
45 	uint32_t	val;
46 	int		ffs;
47 	int		fls;
48 } bits[] = {
49 
50 	{ 0x00, 0, 0 }, { 0x01, 1, 1 },	{ 0x02, 2, 2 },	{ 0x03, 1, 2 },
51 	{ 0x04, 3, 3 }, { 0x05, 1, 3 },	{ 0x06, 2, 3 },	{ 0x07, 1, 3 },
52 	{ 0x08, 4, 4 }, { 0x09, 1, 4 },	{ 0x0A, 2, 4 },	{ 0x0B, 1, 4 },
53 	{ 0x0C, 3, 4 }, { 0x0D, 1, 4 },	{ 0x0E, 2, 4 },	{ 0x0F, 1, 4 },
54 
55 	{ 0x10, 5, 5 },	{ 0x11, 1, 5 },	{ 0x12, 2, 5 },	{ 0x13, 1, 5 },
56 	{ 0x14, 3, 5 },	{ 0x15, 1, 5 },	{ 0x16, 2, 5 },	{ 0x17, 1, 5 },
57 	{ 0x18, 4, 5 },	{ 0x19, 1, 5 },	{ 0x1A, 2, 5 },	{ 0x1B, 1, 5 },
58 	{ 0x1C, 3, 5 },	{ 0x1D, 1, 5 },	{ 0x1E, 2, 5 },	{ 0x1F, 1, 5 },
59 
60 	{ 0xF0, 5, 8 },	{ 0xF1, 1, 8 },	{ 0xF2, 2, 8 },	{ 0xF3, 1, 8 },
61 	{ 0xF4, 3, 8 },	{ 0xF5, 1, 8 },	{ 0xF6, 2, 8 },	{ 0xF7, 1, 8 },
62 	{ 0xF8, 4, 8 },	{ 0xF9, 1, 8 },	{ 0xFA, 2, 8 },	{ 0xFB, 1, 8 },
63 	{ 0xFC, 3, 8 },	{ 0xFD, 1, 8 },	{ 0xFE, 2, 8 },	{ 0xFF, 1, 8 },
64 
65 };
66 
67 ATF_TC(fast_divide32);
68 ATF_TC_HEAD(fast_divide32, tc)
69 {
70 	atf_tc_set_md_var(tc, "descr", "A basic test of fast_divide32(3)");
71 }
72 
73 ATF_TC_BODY(fast_divide32, tc)
74 {
75 	uint32_t a, b, q, r, m;
76 	uint8_t i, s1, s2;
77 
78 	a = 0xFFFF;
79 	b = 0x000F;
80 
81 	fast_divide32_prepare(b, &m, &s1, &s2);
82 
83 	q = fast_divide32(a, b, m, s1, s2);
84 	r = fast_remainder32(a, b, m, s1, s2);
85 
86 	ATF_REQUIRE(q == 0x1111 && r == 0);
87 
88 	for (i = 1; i < __arraycount(bits); i++) {
89 
90 		a = bits[i].val;
91 		b = bits[i].ffs;
92 
93 		fast_divide32_prepare(b, &m, &s1, &s2);
94 
95 		q = fast_divide32(a, b, m, s1, s2);
96 		r = fast_remainder32(a, b, m, s1, s2);
97 
98 		ATF_REQUIRE(q == a / b);
99 		ATF_REQUIRE(r == a % b);
100 	}
101 }
102 
103 ATF_TC(ffsfls);
104 ATF_TC_HEAD(ffsfls, tc)
105 {
106 	atf_tc_set_md_var(tc, "descr", "Test ffs32(3)-family for correctness");
107 }
108 
109 ATF_TC_BODY(ffsfls, tc)
110 {
111 	uint8_t i;
112 
113 	ATF_REQUIRE(ffs32(0) == 0x00);
114 	ATF_REQUIRE(fls32(0) == 0x00);
115 	ATF_REQUIRE(ffs64(0) == 0x00);
116 	ATF_REQUIRE(fls64(0) == 0x00);
117 
118 	ATF_REQUIRE(ffs32(UINT32_MAX) == 0x01);
119 	ATF_REQUIRE(fls32(UINT32_MAX) == 0x20);
120 	ATF_REQUIRE(ffs64(UINT64_MAX) == 0x01);
121 	ATF_REQUIRE(fls64(UINT64_MAX) == 0x40);
122 
123 	for (i = 1; i < __arraycount(bits); i++) {
124 
125 		ATF_REQUIRE(ffs32(bits[i].val) == bits[i].ffs);
126 		ATF_REQUIRE(fls32(bits[i].val) == bits[i].fls);
127 		ATF_REQUIRE(ffs64(bits[i].val) == bits[i].ffs);
128 		ATF_REQUIRE(fls64(bits[i].val) == bits[i].fls);
129 
130 		ATF_REQUIRE(ffs32(bits[i].val << 1) == bits[i].ffs + 1);
131 		ATF_REQUIRE(fls32(bits[i].val << 1) == bits[i].fls + 1);
132 		ATF_REQUIRE(ffs64(bits[i].val << 1) == bits[i].ffs + 1);
133 		ATF_REQUIRE(fls64(bits[i].val << 1) == bits[i].fls + 1);
134 
135 		ATF_REQUIRE(ffs32(bits[i].val << 9) == bits[i].ffs + 9);
136 		ATF_REQUIRE(fls32(bits[i].val << 9) == bits[i].fls + 9);
137 		ATF_REQUIRE(ffs64(bits[i].val << 9) == bits[i].ffs + 9);
138 		ATF_REQUIRE(fls64(bits[i].val << 9) == bits[i].fls + 9);
139 	}
140 }
141 
142 ATF_TC(ilog2_basic);
143 ATF_TC_HEAD(ilog2_basic, tc)
144 {
145 	atf_tc_set_md_var(tc, "descr", "Test ilog2(3) for correctness");
146 }
147 
148 ATF_TC_BODY(ilog2_basic, tc)
149 {
150 	uint64_t i, x;
151 
152 	for (i = x = 0; i < 64; i++) {
153 
154 		x = (uint64_t)1 << i;
155 
156 		ATF_REQUIRE(i == (uint64_t)ilog2(x));
157 	}
158 }
159 
160 ATF_TC(ilog2_log2);
161 ATF_TC_HEAD(ilog2_log2, tc)
162 {
163 	atf_tc_set_md_var(tc, "descr", "Test log2(3) vs. ilog2(3)");
164 }
165 
166 ATF_TC_BODY(ilog2_log2, tc)
167 {
168 	struct utsname utsname;
169 	double  x, y;
170 	uint64_t i;
171 
172 	/*
173 	 * This may fail under QEMU; see PR misc/44767.
174 	 */
175 	ATF_REQUIRE(uname(&utsname) == 0);
176 
177 	for (i = 1; i < UINT32_MAX; i += UINT16_MAX) {
178 
179 		x = log2(i);
180 		y = (double)(ilog2(i));
181 
182 		ATF_REQUIRE(ceil(x) >= y);
183 		ATF_REQUIRE(fabs(floor(x) - y) < 1.0e-40);
184 	}
185 }
186 
187 ATF_TP_ADD_TCS(tp)
188 {
189 
190 	ATF_TP_ADD_TC(tp, fast_divide32);
191 	ATF_TP_ADD_TC(tp, ffsfls);
192 	ATF_TP_ADD_TC(tp, ilog2_basic);
193 	ATF_TP_ADD_TC(tp, ilog2_log2);
194 
195 	return atf_no_error();
196 }
197