ffsl: Optimize on 32-bit platforms.
[gnulib.git] / lib / ffsl.h
1 /* ffsl.h -- find the first set bit in a word.
2    Copyright (C) 2011 Free Software Foundation, Inc.
3
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.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Eric Blake.  */
18
19 /* This file is meant to be included by ffsl.c and ffsll.c, after
20    they have defined FUNC and TYPE.  */
21
22 #include <string.h>
23
24 #include <limits.h>
25 #include <strings.h>
26
27 #if !defined FUNC || !defined TYPE
28 # error
29 #endif
30
31 int
32 FUNC (TYPE i)
33 {
34 #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) && defined GCC_BUILTIN
35   return GCC_BUILTIN (i);
36 #else
37   if (sizeof (TYPE) == sizeof (int))
38     return ffs (i);
39   else
40     {
41       unsigned TYPE j = i;
42       /* Split j into chunks, and look at one chunk after the other.  */
43       /* Define chunk_bits so as to avoid a GCC warning
44            "right shift count >= width of type"
45          if sizeof (TYPE) == sizeof (int).  */
46       enum
47         {
48           chunk_bits = (sizeof (TYPE) != sizeof (int)
49                         ? CHAR_BIT * sizeof (unsigned int)
50                         : 0)
51         };
52       int result = 0;
53
54       /* It is tempting to write  if (!j)  here, but if we do this,
55          Solaris 10/x86 "cc -O" miscompiles the code.  */
56       if (!i)
57         return 0;
58       while (1)
59         {
60           if ((unsigned int) j)
61             return result + ffs ((unsigned int) j);
62           j >>= chunk_bits;
63           result += chunk_bits;
64         }
65     }
66 #endif
67 }