ffsl, ffsll: Optimize for GCC.
[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   int result = 0;
38   unsigned TYPE j = i;
39
40   /* GCC has __builtin_ffs, but it is limited to int.  */
41   if (!i)
42     return 0;
43   while (1)
44     {
45       if ((unsigned int) j)
46         return result + ffs ((unsigned int) j);
47       j >>= CHAR_BIT * sizeof (unsigned int);
48       result += CHAR_BIT * sizeof (unsigned int);
49     }
50 #endif
51 }