1 /*- 2 * Copyright (c) 2023 The FreeBSD Foundation 3 * 4 * This software was developed by Robert Clausecker <fuz@FreeBSD.org> 5 * under sponsorship from the FreeBSD Foundation. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ''AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE 27 */ 28 #include <sys/cdefs.h> 29 30 #include <atf-c.h> 31 #include <limits.h> 32 #include <stdint.h> 33 #include <strings.h> 34 35 #ifndef FLS 36 # define FLS fls 37 # define TYPE int 38 # define TYPE_MIN INT_MIN 39 #endif 40 41 ATF_TC_WITHOUT_HEAD(zero); 42 ATF_TC_BODY(zero, tc) 43 { 44 ATF_CHECK_EQ((TYPE)0, FLS(0)); 45 } 46 47 ATF_TC_WITHOUT_HEAD(twobit); 48 ATF_TC_BODY(twobit, tc) 49 { 50 const TYPE one = 1; 51 TYPE x; 52 const int n = sizeof(TYPE) * CHAR_BIT; 53 int i, j; 54 55 for (i = 0; i < n - 1; i++) 56 for (j = 0; j <= i; j++) { 57 x = one << i | one << j; 58 ATF_CHECK_EQ_MSG(i + 1, FLS(x), 59 "%s(%#jx) == %d != %d", __STRING(FLS), (intmax_t)x, FLS(x), i + 1); 60 } 61 } 62 63 ATF_TC_WITHOUT_HEAD(twobitneg); 64 ATF_TC_BODY(twobitneg, tc) 65 { 66 const TYPE one = 1; 67 TYPE x; 68 const int n = sizeof(TYPE) * CHAR_BIT; 69 int i, j; 70 71 for (i = 0; i < n - 1; i++) 72 for (j = 0; j <= i; j++) { 73 x = one << i | one << j | TYPE_MIN; 74 ATF_CHECK_EQ_MSG(n, FLS(x), 75 "%s(%#jx) == %d != %d", __STRING(FLS), (intmax_t)x, FLS(x), n); 76 } 77 } 78 79 80 ATF_TP_ADD_TCS(tp) 81 { 82 83 ATF_TP_ADD_TC(tp, zero); 84 ATF_TP_ADD_TC(tp, twobit); 85 ATF_TP_ADD_TC(tp, twobitneg); 86 87 return (atf_no_error()); 88 } 89