| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /*************************************************************************
- *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
- *
- * smartdns is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * smartdns is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "bitmap.h"
- #include "bitops.h"
- /*
- * This is a common helper function for find_next_bit, find_next_zero_bit, and
- * find_next_and_bit. The differences are:
- * - The "invert" argument, which is XORed with each fetched word before
- * searching it for one bits.
- * - The optional "addr2", which is addr2 with "addr1" if present.
- */
- static inline unsigned long _find_next_bit(const unsigned long *addr1,
- const unsigned long *addr2, unsigned long nbits,
- unsigned long start, unsigned long invert)
- {
- unsigned long tmp;
- if (unlikely(start >= nbits))
- return nbits;
- tmp = addr1[start / BITS_PER_LONG];
- if (addr2)
- tmp &= addr2[start / BITS_PER_LONG];
- tmp ^= invert;
- /* Handle 1st word. */
- tmp &= BITMAP_FIRST_WORD_MASK(start);
- start = round_down(start, BITS_PER_LONG);
- while (!tmp) {
- start += BITS_PER_LONG;
- if (start >= nbits)
- return nbits;
- tmp = addr1[start / BITS_PER_LONG];
- if (addr2)
- tmp &= addr2[start / BITS_PER_LONG];
- tmp ^= invert;
- }
- return min(start + __ffs(tmp), nbits);
- }
- /*
- * Find the next set bit in a memory region.
- */
- unsigned long find_next_bit(const unsigned long *addr, unsigned long size,
- unsigned long offset)
- {
- return _find_next_bit(addr, NULL, size, offset, 0UL);
- }
- /*
- * Find the first set bit in a memory region.
- */
- unsigned long find_first_bit(const unsigned long *addr, unsigned long size)
- {
- unsigned long idx;
- for (idx = 0; idx * BITS_PER_LONG < size; idx++) {
- if (addr[idx])
- return min(idx * BITS_PER_LONG + __ffs(addr[idx]), size);
- }
- return size;
- }
- /*
- * Find the first cleared bit in a memory region.
- */
- unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size)
- {
- unsigned long idx;
- for (idx = 0; idx * BITS_PER_LONG < size; idx++) {
- if (addr[idx] != ~0UL)
- return min(idx * BITS_PER_LONG + ffz(addr[idx]), size);
- }
- return size;
- }
- unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size,
- unsigned long offset)
- {
- return _find_next_bit(addr, NULL, size, offset, ~0UL);
- }
- unsigned long find_next_and_bit(const unsigned long *addr1,
- const unsigned long *addr2, unsigned long size,
- unsigned long offset)
- {
- return _find_next_bit(addr1, addr2, size, offset, 0UL);
- }
- /**
- * hweightN - returns the hamming weight of a N-bit word
- * @x: the word to weigh
- *
- * The Hamming Weight of a number is the total number of bits set in it.
- */
- unsigned int __sw_hweight32(unsigned int w)
- {
- #ifdef CONFIG_ARCH_HAS_FAST_MULTIPLIER
- w -= (w >> 1) & 0x55555555;
- w = (w & 0x33333333) + ((w >> 2) & 0x33333333);
- w = (w + (w >> 4)) & 0x0f0f0f0f;
- return (w * 0x01010101) >> 24;
- #else
- unsigned int res = w - ((w >> 1) & 0x55555555);
- res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
- res = (res + (res >> 4)) & 0x0F0F0F0F;
- res = res + (res >> 8);
- return (res + (res >> 16)) & 0x000000FF;
- #endif
- }
- unsigned int __sw_hweight16(unsigned int w)
- {
- unsigned int res = w - ((w >> 1) & 0x5555);
- res = (res & 0x3333) + ((res >> 2) & 0x3333);
- res = (res + (res >> 4)) & 0x0F0F;
- return (res + (res >> 8)) & 0x00FF;
- }
- unsigned int __sw_hweight8(unsigned int w)
- {
- unsigned int res = w - ((w >> 1) & 0x55);
- res = (res & 0x33) + ((res >> 2) & 0x33);
- return (res + (res >> 4)) & 0x0F;
- }
- unsigned long __sw_hweight64(uint64_t w)
- {
- #if BITS_PER_LONG == 32
- return __sw_hweight32((unsigned int)(w >> 32)) +
- __sw_hweight32((unsigned int)w);
- #elif BITS_PER_LONG == 64
- #ifdef CONFIG_ARCH_HAS_FAST_MULTIPLIER
- w -= (w >> 1) & 0x5555555555555555ul;
- w = (w & 0x3333333333333333ul) + ((w >> 2) & 0x3333333333333333ul);
- w = (w + (w >> 4)) & 0x0f0f0f0f0f0f0f0ful;
- return (w * 0x0101010101010101ul) >> 56;
- #else
- uint64_t res = w - ((w >> 1) & 0x5555555555555555ul);
- res = (res & 0x3333333333333333ul) + ((res >> 2) & 0x3333333333333333ul);
- res = (res + (res >> 4)) & 0x0F0F0F0F0F0F0F0Ful;
- res = res + (res >> 8);
- res = res + (res >> 16);
- return (res + (res >> 32)) & 0x00000000000000FFul;
- #endif
- #endif
- }
|