// SPDX-License-Identifier: GPL-2.0-or-later /* bit search implementation * * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * Copyright (C) 2008 IBM Corporation * 'find_last_bit' is written by Rusty Russell <rusty@rustcorp.com.au> * (Inspired by David Howell's find_next_bit implementation) * * Rewritten by Yury Norov <yury.norov@gmail.com> to decrease * size and improve performance, 2015.
*/
/* * Common helper for find_bit() function family * @FETCH: The expression that fetches and pre-processes each word of bitmap(s) * @MUNGE: The expression that post-processes a word containing found bit (may be empty) * @size: The bitmap size in bits
*/ #define FIND_FIRST_BIT(FETCH, MUNGE, size) \
({ \ unsignedlong idx, val, sz = (size); \
\ for (idx = 0; idx * BITS_PER_LONG < sz; idx++) { \
val = (FETCH); \ if (val) { \
sz = min(idx * BITS_PER_LONG + __ffs(MUNGE(val)), sz); \ break; \
} \
} \
\
sz; \
})
/* * Common helper for find_next_bit() function family * @FETCH: The expression that fetches and pre-processes each word of bitmap(s) * @MUNGE: The expression that post-processes a word containing found bit (may be empty) * @size: The bitmap size in bits * @start: The bitnumber to start searching at
*/ #define FIND_NEXT_BIT(FETCH, MUNGE, size, start) \
({ \ unsignedlong mask, idx, tmp, sz = (size), __start = (start); \
\ if (unlikely(__start >= sz)) \ goto out; \
\
mask = MUNGE(BITMAP_FIRST_WORD_MASK(__start)); \
idx = __start / BITS_PER_LONG; \
\ for (tmp = (FETCH) & mask; !tmp; tmp = (FETCH)) { \ if ((idx + 1) * BITS_PER_LONG >= sz) \ goto out; \
idx++; \
} \
\
sz = min(idx * BITS_PER_LONG + __ffs(MUNGE(tmp)), sz); \
out: \
sz; \
})
#ifndef find_first_bit /* * Find the first set bit in a memory region.
*/ unsignedlong _find_first_bit(constunsignedlong *addr, unsignedlong size)
{ return FIND_FIRST_BIT(addr[idx], /* nop */, size);
}
EXPORT_SYMBOL(_find_first_bit); #endif
#ifndef find_first_and_bit /* * Find the first set bit in two memory regions.
*/ unsignedlong _find_first_and_bit(constunsignedlong *addr1, constunsignedlong *addr2, unsignedlong size)
{ return FIND_FIRST_BIT(addr1[idx] & addr2[idx], /* nop */, size);
}
EXPORT_SYMBOL(_find_first_and_bit); #endif
/* * Find the first bit set in 1st memory region and unset in 2nd.
*/ unsignedlong _find_first_andnot_bit(constunsignedlong *addr1, constunsignedlong *addr2, unsignedlong size)
{ return FIND_FIRST_BIT(addr1[idx] & ~addr2[idx], /* nop */, size);
}
EXPORT_SYMBOL(_find_first_andnot_bit);
/* * Find the first set bit in three memory regions.
*/ unsignedlong _find_first_and_and_bit(constunsignedlong *addr1, constunsignedlong *addr2, constunsignedlong *addr3, unsignedlong size)
{ return FIND_FIRST_BIT(addr1[idx] & addr2[idx] & addr3[idx], /* nop */, size);
}
EXPORT_SYMBOL(_find_first_and_and_bit);
#ifndef find_first_zero_bit /* * Find the first cleared bit in a memory region.
*/ unsignedlong _find_first_zero_bit(constunsignedlong *addr, unsignedlong size)
{ return FIND_FIRST_BIT(~addr[idx], /* nop */, size);
}
EXPORT_SYMBOL(_find_first_zero_bit); #endif
#ifndef find_first_zero_bit_le /* * Find the first cleared bit in an LE memory region.
*/ unsignedlong _find_first_zero_bit_le(constunsignedlong *addr, unsignedlong size)
{ return FIND_FIRST_BIT(~addr[idx], swab, size);
}
EXPORT_SYMBOL(_find_first_zero_bit_le);
/** * find_random_bit - find a set bit at random position * @addr: The address to base the search on * @size: The bitmap size in bits * * Returns: a position of a random set bit; >= @size otherwise
*/ unsignedlong find_random_bit(constunsignedlong *addr, unsignedlong size)
{ int w = bitmap_weight(addr, size);
switch (w) { case 0: return size; case 1: /* Performance trick for single-bit bitmaps */ return find_first_bit(addr, size); default: return find_nth_bit(addr, size, get_random_u32_below(w));
}
}
EXPORT_SYMBOL(find_random_bit);
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.