Yury Norov | 8f6f19d | 2015-04-16 12:43:16 -0700 | [diff] [blame] | 1 | /* bit search implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
Yury Norov | 8f6f19d | 2015-04-16 12:43:16 -0700 | [diff] [blame] | 6 | * Copyright (C) 2008 IBM Corporation |
| 7 | * 'find_last_bit' is written by Rusty Russell <rusty@rustcorp.com.au> |
| 8 | * (Inspired by David Howell's find_next_bit implementation) |
| 9 | * |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 10 | * Rewritten by Yury Norov <yury.norov@gmail.com> to decrease |
| 11 | * size and improve performance, 2015. |
| 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License |
| 15 | * as published by the Free Software Foundation; either version |
| 16 | * 2 of the License, or (at your option) any later version. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/bitops.h> |
Yury Norov | 8f6f19d | 2015-04-16 12:43:16 -0700 | [diff] [blame] | 20 | #include <linux/bitmap.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 21 | #include <linux/export.h> |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 24 | #if !defined(find_next_bit) || !defined(find_next_zero_bit) |
| 25 | |
| 26 | /* |
| 27 | * This is a common helper function for find_next_bit and |
| 28 | * find_next_zero_bit. The difference is the "invert" argument, which |
| 29 | * is XORed with each fetched word before searching it for one bits. |
| 30 | */ |
| 31 | static unsigned long _find_next_bit(const unsigned long *addr, |
| 32 | unsigned long nbits, unsigned long start, unsigned long invert) |
| 33 | { |
| 34 | unsigned long tmp; |
| 35 | |
| 36 | if (!nbits || start >= nbits) |
| 37 | return nbits; |
| 38 | |
| 39 | tmp = addr[start / BITS_PER_LONG] ^ invert; |
| 40 | |
| 41 | /* Handle 1st word. */ |
| 42 | tmp &= BITMAP_FIRST_WORD_MASK(start); |
| 43 | start = round_down(start, BITS_PER_LONG); |
| 44 | |
| 45 | while (!tmp) { |
| 46 | start += BITS_PER_LONG; |
| 47 | if (start >= nbits) |
| 48 | return nbits; |
| 49 | |
| 50 | tmp = addr[start / BITS_PER_LONG] ^ invert; |
| 51 | } |
| 52 | |
| 53 | return min(start + __ffs(tmp), nbits); |
| 54 | } |
| 55 | #endif |
Akinobu Mita | c7f612c | 2006-03-26 01:39:11 -0800 | [diff] [blame] | 56 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 57 | #ifndef find_next_bit |
Alexander van Heukelum | 64970b6 | 2008-03-11 16:17:19 +0100 | [diff] [blame] | 58 | /* |
| 59 | * Find the next set bit in a memory region. |
Akinobu Mita | c7f612c | 2006-03-26 01:39:11 -0800 | [diff] [blame] | 60 | */ |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 61 | unsigned long find_next_bit(const unsigned long *addr, unsigned long size, |
| 62 | unsigned long offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 64 | return _find_next_bit(addr, size, offset, 0UL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 66 | EXPORT_SYMBOL(find_next_bit); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 67 | #endif |
Akinobu Mita | c7f612c | 2006-03-26 01:39:11 -0800 | [diff] [blame] | 68 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 69 | #ifndef find_next_zero_bit |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 70 | unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size, |
| 71 | unsigned long offset) |
Akinobu Mita | c7f612c | 2006-03-26 01:39:11 -0800 | [diff] [blame] | 72 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 73 | return _find_next_bit(addr, size, offset, ~0UL); |
Akinobu Mita | c7f612c | 2006-03-26 01:39:11 -0800 | [diff] [blame] | 74 | } |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 75 | EXPORT_SYMBOL(find_next_zero_bit); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 76 | #endif |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 77 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 78 | #ifndef find_first_bit |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 79 | /* |
| 80 | * Find the first set bit in a memory region. |
| 81 | */ |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 82 | unsigned long find_first_bit(const unsigned long *addr, unsigned long size) |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 83 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 84 | unsigned long idx; |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 85 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 86 | for (idx = 0; idx * BITS_PER_LONG < size; idx++) { |
| 87 | if (addr[idx]) |
| 88 | return min(idx * BITS_PER_LONG + __ffs(addr[idx]), size); |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 89 | } |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 90 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 91 | return size; |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 92 | } |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 93 | EXPORT_SYMBOL(find_first_bit); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 94 | #endif |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 95 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 96 | #ifndef find_first_zero_bit |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 97 | /* |
| 98 | * Find the first cleared bit in a memory region. |
| 99 | */ |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 100 | unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size) |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 101 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 102 | unsigned long idx; |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 103 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 104 | for (idx = 0; idx * BITS_PER_LONG < size; idx++) { |
| 105 | if (addr[idx] != ~0UL) |
| 106 | return min(idx * BITS_PER_LONG + ffz(addr[idx]), size); |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 107 | } |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 108 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 109 | return size; |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 110 | } |
Thomas Gleixner | fee4b19 | 2008-04-29 12:01:02 +0200 | [diff] [blame] | 111 | EXPORT_SYMBOL(find_first_zero_bit); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 112 | #endif |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 113 | |
Yury Norov | 8f6f19d | 2015-04-16 12:43:16 -0700 | [diff] [blame] | 114 | #ifndef find_last_bit |
| 115 | unsigned long find_last_bit(const unsigned long *addr, unsigned long size) |
| 116 | { |
| 117 | if (size) { |
| 118 | unsigned long val = BITMAP_LAST_WORD_MASK(size); |
| 119 | unsigned long idx = (size-1) / BITS_PER_LONG; |
| 120 | |
| 121 | do { |
| 122 | val &= addr[idx]; |
| 123 | if (val) |
| 124 | return idx * BITS_PER_LONG + __fls(val); |
| 125 | |
| 126 | val = ~0ul; |
| 127 | } while (idx--); |
| 128 | } |
| 129 | return size; |
| 130 | } |
| 131 | EXPORT_SYMBOL(find_last_bit); |
| 132 | #endif |
| 133 | |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 134 | #ifdef __BIG_ENDIAN |
| 135 | |
| 136 | /* include/linux/byteorder does not support "unsigned long" type */ |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 137 | static inline unsigned long ext2_swab(const unsigned long y) |
| 138 | { |
| 139 | #if BITS_PER_LONG == 64 |
| 140 | return (unsigned long) __swab64((u64) y); |
| 141 | #elif BITS_PER_LONG == 32 |
| 142 | return (unsigned long) __swab32((u32) y); |
| 143 | #else |
| 144 | #error BITS_PER_LONG not defined |
| 145 | #endif |
| 146 | } |
| 147 | |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 148 | #if !defined(find_next_bit_le) || !defined(find_next_zero_bit_le) |
| 149 | static unsigned long _find_next_bit_le(const unsigned long *addr, |
| 150 | unsigned long nbits, unsigned long start, unsigned long invert) |
| 151 | { |
| 152 | unsigned long tmp; |
| 153 | |
| 154 | if (!nbits || start >= nbits) |
| 155 | return nbits; |
| 156 | |
| 157 | tmp = addr[start / BITS_PER_LONG] ^ invert; |
| 158 | |
| 159 | /* Handle 1st word. */ |
| 160 | tmp &= ext2_swab(BITMAP_FIRST_WORD_MASK(start)); |
| 161 | start = round_down(start, BITS_PER_LONG); |
| 162 | |
| 163 | while (!tmp) { |
| 164 | start += BITS_PER_LONG; |
| 165 | if (start >= nbits) |
| 166 | return nbits; |
| 167 | |
| 168 | tmp = addr[start / BITS_PER_LONG] ^ invert; |
| 169 | } |
| 170 | |
| 171 | return min(start + __ffs(ext2_swab(tmp)), nbits); |
| 172 | } |
| 173 | #endif |
| 174 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 175 | #ifndef find_next_zero_bit_le |
Akinobu Mita | a56560b | 2011-03-23 16:41:50 -0700 | [diff] [blame] | 176 | unsigned long find_next_zero_bit_le(const void *addr, unsigned |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 177 | long size, unsigned long offset) |
| 178 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 179 | return _find_next_bit_le(addr, size, offset, ~0UL); |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 180 | } |
Akinobu Mita | c4945b9 | 2011-03-23 16:41:47 -0700 | [diff] [blame] | 181 | EXPORT_SYMBOL(find_next_zero_bit_le); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 182 | #endif |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 183 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 184 | #ifndef find_next_bit_le |
Akinobu Mita | a56560b | 2011-03-23 16:41:50 -0700 | [diff] [blame] | 185 | unsigned long find_next_bit_le(const void *addr, unsigned |
Aneesh Kumar K.V | aa02ad6 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 186 | long size, unsigned long offset) |
| 187 | { |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 188 | return _find_next_bit_le(addr, size, offset, 0UL); |
Aneesh Kumar K.V | aa02ad6 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 189 | } |
Akinobu Mita | c4945b9 | 2011-03-23 16:41:47 -0700 | [diff] [blame] | 190 | EXPORT_SYMBOL(find_next_bit_le); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 191 | #endif |
Akinobu Mita | 0664996 | 2011-03-23 16:41:59 -0700 | [diff] [blame] | 192 | |
Akinobu Mita | 930ae74 | 2006-03-26 01:39:15 -0800 | [diff] [blame] | 193 | #endif /* __BIG_ENDIAN */ |