]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/ofed/include/linux/log2.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / ofed / include / linux / log2.h
1 /*-
2  * Copyright (c) 2010 Isilon Systems, Inc.
3  * Copyright (c) 2010 iX Systems, Inc.
4  * Copyright (c) 2010 Panasas, Inc.
5  * All rights reserved.
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 unmodified, this list of conditions, and the following
12  *    disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #ifndef _LINUX_LOG2_H_
30 #define _LINUX_LOG2_H_
31
32 #include <linux/types.h>
33
34 #include <sys/libkern.h>
35
36 static inline unsigned long
37 roundup_pow_of_two(unsigned long x)
38 {
39         return (1UL << flsl(x - 1));
40 }
41
42 static inline int
43 is_power_of_2(unsigned long n)
44 {
45         return (n == roundup_pow_of_two(n));
46 }
47
48 static inline unsigned long
49 rounddown_pow_of_two(unsigned long x)
50 {
51         return (1UL << (flsl(x) - 1));
52 }
53
54
55 /*
56  * deal with unrepresentable constant logarithms
57  */
58 extern __attribute__((const, noreturn))
59 int ____ilog2_NaN(void);
60
61 /*
62  * non-constant log of base 2 calculators
63  * - the arch may override these in asm/bitops.h if they can be implemented
64  *   more efficiently than using fls() and fls64()
65  * - the arch is not required to handle n==0 if implementing the fallback
66  */
67 #ifndef CONFIG_ARCH_HAS_ILOG2_U32
68 static inline __attribute__((const))
69 int __ilog2_u32(u32 n)
70 {
71         return flsl(n) - 1;
72 }
73 #endif
74
75 #ifndef CONFIG_ARCH_HAS_ILOG2_U64
76 static inline __attribute__((const))
77 int __ilog2_u64(u64 n)
78 {
79         return flsl(n) - 1;
80 }
81 #endif
82
83
84 /**
85  * ilog2 - log of base 2 of 32-bit or a 64-bit unsigned value
86  * @n - parameter
87  *
88  * constant-capable log of base 2 calculation
89  * - this can be used to initialise global variables from constant data, hence
90  *   the massive ternary operator construction
91  *
92  * selects the appropriately-sized optimised version depending on sizeof(n)
93  */
94 #define ilog2(n)                                \
95 (                                               \
96         __builtin_constant_p(n) ? (             \
97                 (n) < 1 ? ____ilog2_NaN() :     \
98                 (n) & (1ULL << 63) ? 63 :       \
99                 (n) & (1ULL << 62) ? 62 :       \
100                 (n) & (1ULL << 61) ? 61 :       \
101                 (n) & (1ULL << 60) ? 60 :       \
102                 (n) & (1ULL << 59) ? 59 :       \
103                 (n) & (1ULL << 58) ? 58 :       \
104                 (n) & (1ULL << 57) ? 57 :       \
105                 (n) & (1ULL << 56) ? 56 :       \
106                 (n) & (1ULL << 55) ? 55 :       \
107                 (n) & (1ULL << 54) ? 54 :       \
108                 (n) & (1ULL << 53) ? 53 :       \
109                 (n) & (1ULL << 52) ? 52 :       \
110                 (n) & (1ULL << 51) ? 51 :       \
111                 (n) & (1ULL << 50) ? 50 :       \
112                 (n) & (1ULL << 49) ? 49 :       \
113                 (n) & (1ULL << 48) ? 48 :       \
114                 (n) & (1ULL << 47) ? 47 :       \
115                 (n) & (1ULL << 46) ? 46 :       \
116                 (n) & (1ULL << 45) ? 45 :       \
117                 (n) & (1ULL << 44) ? 44 :       \
118                 (n) & (1ULL << 43) ? 43 :       \
119                 (n) & (1ULL << 42) ? 42 :       \
120                 (n) & (1ULL << 41) ? 41 :       \
121                 (n) & (1ULL << 40) ? 40 :       \
122                 (n) & (1ULL << 39) ? 39 :       \
123                 (n) & (1ULL << 38) ? 38 :       \
124                 (n) & (1ULL << 37) ? 37 :       \
125                 (n) & (1ULL << 36) ? 36 :       \
126                 (n) & (1ULL << 35) ? 35 :       \
127                 (n) & (1ULL << 34) ? 34 :       \
128                 (n) & (1ULL << 33) ? 33 :       \
129                 (n) & (1ULL << 32) ? 32 :       \
130                 (n) & (1ULL << 31) ? 31 :       \
131                 (n) & (1ULL << 30) ? 30 :       \
132                 (n) & (1ULL << 29) ? 29 :       \
133                 (n) & (1ULL << 28) ? 28 :       \
134                 (n) & (1ULL << 27) ? 27 :       \
135                 (n) & (1ULL << 26) ? 26 :       \
136                 (n) & (1ULL << 25) ? 25 :       \
137                 (n) & (1ULL << 24) ? 24 :       \
138                 (n) & (1ULL << 23) ? 23 :       \
139                 (n) & (1ULL << 22) ? 22 :       \
140                 (n) & (1ULL << 21) ? 21 :       \
141                 (n) & (1ULL << 20) ? 20 :       \
142                 (n) & (1ULL << 19) ? 19 :       \
143                 (n) & (1ULL << 18) ? 18 :       \
144                 (n) & (1ULL << 17) ? 17 :       \
145                 (n) & (1ULL << 16) ? 16 :       \
146                 (n) & (1ULL << 15) ? 15 :       \
147                 (n) & (1ULL << 14) ? 14 :       \
148                 (n) & (1ULL << 13) ? 13 :       \
149                 (n) & (1ULL << 12) ? 12 :       \
150                 (n) & (1ULL << 11) ? 11 :       \
151                 (n) & (1ULL << 10) ? 10 :       \
152                 (n) & (1ULL <<  9) ?  9 :       \
153                 (n) & (1ULL <<  8) ?  8 :       \
154                 (n) & (1ULL <<  7) ?  7 :       \
155                 (n) & (1ULL <<  6) ?  6 :       \
156                 (n) & (1ULL <<  5) ?  5 :       \
157                 (n) & (1ULL <<  4) ?  4 :       \
158                 (n) & (1ULL <<  3) ?  3 :       \
159                 (n) & (1ULL <<  2) ?  2 :       \
160                 (n) & (1ULL <<  1) ?  1 :       \
161                 (n) & (1ULL <<  0) ?  0 :       \
162                 ____ilog2_NaN()                 \
163                                    ) :          \
164         (sizeof(n) <= 4) ?                      \
165         __ilog2_u32(n) :                        \
166         __ilog2_u64(n)                          \
167  )
168
169 #endif  /* _LINUX_LOG2_H_ */