1 /* ffsl.h -- find the first set bit in a word.
2 Copyright (C) 2011-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake. */
19 /* This file is meant to be included by ffsl.c and ffsll.c, after
20 they have defined FUNC and TYPE. */
30 #if defined _MSC_VER && !(__clang_major__ >= 4)
32 /* Copied from ffs.c. */
37 <https://docs.microsoft.com/en-us/cpp/intrinsics/bitscanforward-bitscanforward64> */
39 if (_BitScanForward (&bit
, i
))
46 #if !defined FUNC || !defined TYPE
53 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) \
54 || (__clang_major__ >= 4)
55 return GCC_BUILTIN (i
);
56 #elif defined _MSC_VER && defined MSVC_BUILTIN
57 /* _BitScanForward, _BitScanForward64
58 <https://docs.microsoft.com/en-us/cpp/intrinsics/bitscanforward-bitscanforward64> */
60 if (MSVC_BUILTIN (&bit
, i
))
66 /* Split j into chunks, and look at one chunk after the other. */
67 enum { chunk_bits
= CHAR_BIT
* sizeof (unsigned int) };
68 /* The number of chunks is ceil (sizeof (TYPE) / sizeof (unsigned int))
69 = (sizeof (TYPE) - 1) / sizeof (unsigned int) + 1. */
70 enum { chunk_count
= (sizeof (TYPE
) - 1) / sizeof (unsigned int) + 1 };
76 /* It is tempting to write if (!j) here, but if we do this,
77 Solaris 10/x86 "cc -O" miscompiles the code. */
80 /* Unroll the first loop round. k = 0. */
82 return ffs ((unsigned int) j
);
84 for (k
= 1; k
< chunk_count
- 1; k
++)
85 if ((unsigned int) (j
>> (k
* chunk_bits
)) != 0)
86 return k
* chunk_bits
+ ffs ((unsigned int) (j
>> (k
* chunk_bits
)));
88 /* Last loop round. k = chunk_count - 1. */
89 return (chunk_count
- 1) * chunk_bits
90 + ffs ((unsigned int) (j
>> ((chunk_count
- 1) * chunk_bits
)));