/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright IBM Corp. 1999,2013 * * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>, * * The description below was taken in large parts from the powerpc * bitops header file: * Within a word, bits are numbered LSB first. Lot's of places make * this assumption by directly testing bits with (val & (1<<nr)). * This can cause confusion for large (> 1 word) bitmaps on a * big-endian system because, unlike little endian, the number of each * bit depends on the word size. * * The bitop functions are defined to work on unsigned longs, so the bits * end up numbered: * |63..............0|127............64|191...........128|255...........192| * * We also have special functions which work with an MSB0 encoding. * The bits are numbered: * |0..............63|64............127|128...........191|192...........255| * * The main difference is that bit 0-63 in the bit number field needs to be * reversed compared to the LSB0 encoded bit fields. This can be achieved by * XOR with 0x3f. *
*/
#ifndef _S390_BITOPS_H #define _S390_BITOPS_H
#ifndef _LINUX_BITOPS_H #error only <linux/bitops.h> can be included directly #endif
/** * __flogr - find leftmost one * @word - The word to search * * Returns the bit number of the most significant bit set, * where the most significant bit has bit number 0. * If no bit is set this function returns 64.
*/ staticinlineunsignedchar __flogr(unsignedlong word)
{ if (__builtin_constant_p(word)) { unsignedlong bit = 0;
if (!word) return 64; if (!(word & 0xffffffff00000000UL)) {
word <<= 32;
bit += 32;
} if (!(word & 0xffff000000000000UL)) {
word <<= 16;
bit += 16;
} if (!(word & 0xff00000000000000UL)) {
word <<= 8;
bit += 8;
} if (!(word & 0xf000000000000000UL)) {
word <<= 4;
bit += 4;
} if (!(word & 0xc000000000000000UL)) {
word <<= 2;
bit += 2;
} if (!(word & 0x8000000000000000UL)) {
word <<= 1;
bit += 1;
} return bit;
} else { union register_pair rp;
/** * __ffs - find first bit in word. * @word: The word to search * * Undefined if no bit exists, so code should check against 0 first.
*/ staticinlineunsignedlong __ffs(unsignedlong word)
{ return __flogr(-word & word) ^ (BITS_PER_LONG - 1);
}
/** * ffs - find first bit set * @word: the word to search * * This is defined the same way as the libc and * compiler builtin ffs routines (man ffs).
*/ staticinlineint ffs(int word)
{ unsignedlong mask = 2 * BITS_PER_LONG - 1; unsignedint val = (unsignedint)word;
/** * __fls - find last (most-significant) set bit in a long word * @word: the word to search * * Undefined if no set bit exists, so code should check against 0 first.
*/ staticinlineunsignedlong __fls(unsignedlong word)
{ return __flogr(word) ^ (BITS_PER_LONG - 1);
}
/** * fls64 - find last set bit in a 64-bit word * @word: the word to search * * This is defined in a similar way as the libc and compiler builtin * ffsll, but returns the position of the most significant set bit. * * fls64(value) returns 0 if value is 0 or the position of the last * set bit if value is nonzero. The last (most significant) bit is * at position 64.
*/ staticinlineint fls64(unsignedlong word)
{ unsignedlong mask = 2 * BITS_PER_LONG - 1;
/** * fls - find last (most-significant) bit set * @word: the word to search * * This is defined the same way as ffs. * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
*/ staticinlineint fls(unsignedint word)
{ return fls64(word);
}
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 und die Messung sind noch experimentell.