bitops.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* asm/bitops.h for Linux/CRIS
  2.  *
  3.  * TODO: asm versions if speed is needed
  4.  *       set_bit, clear_bit and change_bit wastes cycles being only
  5.  *       macros into test_and_set_bit etc.
  6.  *       kernel-doc things (**) for macros are disabled
  7.  *
  8.  * All bit operations return 0 if the bit was cleared before the
  9.  * operation and != 0 if it was not.
  10.  *
  11.  * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
  12.  */
  13. #ifndef _CRIS_BITOPS_H
  14. #define _CRIS_BITOPS_H
  15. /* Currently this is unsuitable for consumption outside the kernel.  */
  16. #ifdef __KERNEL__ 
  17. #include <asm/system.h>
  18. /* We use generic_ffs so get it; include guards resolve the possible
  19.    mutually inclusion.  */
  20. #include <linux/bitops.h>
  21. /*
  22.  * Some hacks to defeat gcc over-optimizations..
  23.  */
  24. struct __dummy { unsigned long a[100]; };
  25. #define ADDR (*(struct __dummy *) addr)
  26. #define CONST_ADDR (*(const struct __dummy *) addr)
  27. /*
  28.  * set_bit - Atomically set a bit in memory
  29.  * @nr: the bit to set
  30.  * @addr: the address to start counting from
  31.  *
  32.  * This function is atomic and may not be reordered.  See __set_bit()
  33.  * if you do not require the atomic guarantees.
  34.  * Note that @nr may be almost arbitrarily large; this function is not
  35.  * restricted to acting on a single-word quantity.
  36.  */
  37. #define set_bit(nr, addr)    (void)test_and_set_bit(nr, addr)
  38. /*
  39.  * clear_bit - Clears a bit in memory
  40.  * @nr: Bit to clear
  41.  * @addr: Address to start counting from
  42.  *
  43.  * clear_bit() is atomic and may not be reordered.  However, it does
  44.  * not contain a memory barrier, so if it is used for locking purposes,
  45.  * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
  46.  * in order to ensure changes are visible on other processors.
  47.  */
  48. #define clear_bit(nr, addr)  (void)test_and_clear_bit(nr, addr)
  49. /*
  50.  * change_bit - Toggle a bit in memory
  51.  * @nr: Bit to clear
  52.  * @addr: Address to start counting from
  53.  *
  54.  * change_bit() is atomic and may not be reordered.
  55.  * Note that @nr may be almost arbitrarily large; this function is not
  56.  * restricted to acting on a single-word quantity.
  57.  */
  58. #define change_bit(nr, addr) (void)test_and_change_bit(nr, addr)
  59. /*
  60.  * __change_bit - Toggle a bit in memory
  61.  * @nr: the bit to set
  62.  * @addr: the address to start counting from
  63.  *
  64.  * Unlike change_bit(), this function is non-atomic and may be reordered.
  65.  * If it's called on the same region of memory simultaneously, the effect
  66.  * may be that only one operation succeeds.
  67.  */
  68. #define __change_bit(nr, addr) (void)__test_and_change_bit(nr, addr)
  69. /**
  70.  * test_and_set_bit - Set a bit and return its old value
  71.  * @nr: Bit to set
  72.  * @addr: Address to count from
  73.  *
  74.  * This operation is atomic and cannot be reordered.  
  75.  * It also implies a memory barrier.
  76.  */
  77. static __inline__ int test_and_set_bit(int nr, void *addr)
  78. {
  79. unsigned int mask, retval;
  80. unsigned long flags;
  81. unsigned int *adr = (unsigned int *)addr;
  82. adr += nr >> 5;
  83. mask = 1 << (nr & 0x1f);
  84. save_flags(flags);
  85. cli();
  86. retval = (mask & *adr) != 0;
  87. *adr |= mask;
  88. restore_flags(flags);
  89. return retval;
  90. }
  91. /*
  92.  * clear_bit() doesn't provide any barrier for the compiler.
  93.  */
  94. #define smp_mb__before_clear_bit()      barrier()
  95. #define smp_mb__after_clear_bit()       barrier()
  96. /**
  97.  * test_and_clear_bit - Clear a bit and return its old value
  98.  * @nr: Bit to set
  99.  * @addr: Address to count from
  100.  *
  101.  * This operation is atomic and cannot be reordered.  
  102.  * It also implies a memory barrier.
  103.  */
  104. static __inline__ int test_and_clear_bit(int nr, void *addr)
  105. {
  106. unsigned int mask, retval;
  107. unsigned long flags;
  108. unsigned int *adr = (unsigned int *)addr;
  109. adr += nr >> 5;
  110. mask = 1 << (nr & 0x1f);
  111. save_flags(flags);
  112. cli();
  113. retval = (mask & *adr) != 0;
  114. *adr &= ~mask;
  115. restore_flags(flags);
  116. return retval;
  117. }
  118. /**
  119.  * __test_and_clear_bit - Clear a bit and return its old value
  120.  * @nr: Bit to set
  121.  * @addr: Address to count from
  122.  *
  123.  * This operation is non-atomic and can be reordered.  
  124.  * If two examples of this operation race, one can appear to succeed
  125.  * but actually fail.  You must protect multiple accesses with a lock.
  126.  */
  127. static __inline__ int __test_and_clear_bit(int nr, void *addr)
  128. {
  129. unsigned int mask, retval;
  130. unsigned int *adr = (unsigned int *)addr;
  131. adr += nr >> 5;
  132. mask = 1 << (nr & 0x1f);
  133. retval = (mask & *adr) != 0;
  134. *adr &= ~mask;
  135. return retval;
  136. }
  137. /**
  138.  * test_and_change_bit - Change a bit and return its new value
  139.  * @nr: Bit to set
  140.  * @addr: Address to count from
  141.  *
  142.  * This operation is atomic and cannot be reordered.  
  143.  * It also implies a memory barrier.
  144.  */
  145. static __inline__ int test_and_change_bit(int nr, void *addr)
  146. {
  147. unsigned int mask, retval;
  148. unsigned long flags;
  149. unsigned int *adr = (unsigned int *)addr;
  150. adr += nr >> 5;
  151. mask = 1 << (nr & 0x1f);
  152. save_flags(flags);
  153. cli();
  154. retval = (mask & *adr) != 0;
  155. *adr ^= mask;
  156. restore_flags(flags);
  157. return retval;
  158. }
  159. /* WARNING: non atomic and it can be reordered! */
  160. static __inline__ int __test_and_change_bit(int nr, void *addr)
  161. {
  162. unsigned int mask, retval;
  163. unsigned int *adr = (unsigned int *)addr;
  164. adr += nr >> 5;
  165. mask = 1 << (nr & 0x1f);
  166. retval = (mask & *adr) != 0;
  167. *adr ^= mask;
  168. return retval;
  169. }
  170. /**
  171.  * test_bit - Determine whether a bit is set
  172.  * @nr: bit number to test
  173.  * @addr: Address to start counting from
  174.  *
  175.  * This routine doesn't need to be atomic.
  176.  */
  177. static __inline__ int test_bit(int nr, const void *addr)
  178. {
  179. unsigned int mask;
  180. unsigned int *adr = (unsigned int *)addr;
  181. adr += nr >> 5;
  182. mask = 1 << (nr & 0x1f);
  183. return ((mask & *adr) != 0);
  184. }
  185. /*
  186.  * Find-bit routines..
  187.  */
  188. /*
  189.  * Helper functions for the core of the ff[sz] functions, wrapping the
  190.  * syntactically awkward asms.  The asms compute the number of leading
  191.  * zeroes of a bits-in-byte and byte-in-word and word-in-dword-swapped
  192.  * number.  They differ in that the first function also inverts all bits
  193.  * in the input.
  194.  */
  195. static __inline__ unsigned long cris_swapnwbrlz(unsigned long w)
  196. {
  197. /* Let's just say we return the result in the same register as the
  198.    input.  Saying we clobber the input but can return the result
  199.    in another register:
  200.    !  __asm__ ("swapnwbr %2ntlz %2,%0"
  201.    !       : "=r,r" (res), "=r,X" (dummy) : "1,0" (w));
  202.    confuses gcc (sched.c, gcc from cris-dist-1.14).  */
  203. unsigned long res;
  204. __asm__ ("swapnwbr %0 nt"
  205.  "lz %0,%0"
  206.  : "=r" (res) : "0" (w));
  207. return res;
  208. }
  209. static __inline__ unsigned long cris_swapwbrlz(unsigned long w)
  210. {
  211. unsigned res;
  212. __asm__ ("swapwbr %0 nt"
  213.  "lz %0,%0"
  214.  : "=r" (res)
  215.  : "0" (w));
  216. return res;
  217. }
  218. /*
  219.  * ffz = Find First Zero in word. Undefined if no zero exists,
  220.  * so code should check against ~0UL first..
  221.  */
  222. static __inline__ unsigned long ffz(unsigned long w)
  223. {
  224. /* The generic_ffs function is used to avoid the asm when the
  225.    argument is a constant.  */
  226. return __builtin_constant_p (w)
  227. ? (~w ? (unsigned long) generic_ffs ((int) ~w) - 1 : 32)
  228. : cris_swapnwbrlz (w);
  229. }
  230. /*
  231.  * Somewhat like ffz but the equivalent of generic_ffs: in contrast to
  232.  * ffz we return the first one-bit *plus one*.
  233.  */
  234. static __inline__ unsigned long ffs(unsigned long w)
  235. {
  236. /* The generic_ffs function is used to avoid the asm when the
  237.    argument is a constant.  */
  238. return __builtin_constant_p (w)
  239. ? (unsigned long) generic_ffs ((int) w)
  240. : w ? cris_swapwbrlz (w) + 1 : 0;
  241. }
  242. /**
  243.  * find_next_zero_bit - find the first zero bit in a memory region
  244.  * @addr: The address to base the search on
  245.  * @offset: The bitnumber to start searching at
  246.  * @size: The maximum size to search
  247.  */
  248. static __inline__ int find_next_zero_bit (void * addr, int size, int offset)
  249. {
  250. unsigned long *p = ((unsigned long *) addr) + (offset >> 5);
  251. unsigned long result = offset & ~31UL;
  252. unsigned long tmp;
  253. if (offset >= size)
  254. return size;
  255. size -= result;
  256. offset &= 31UL;
  257. if (offset) {
  258. tmp = *(p++);
  259. tmp |= ~0UL >> (32-offset);
  260. if (size < 32)
  261. goto found_first;
  262. if (~tmp)
  263. goto found_middle;
  264. size -= 32;
  265. result += 32;
  266. }
  267. while (size & ~31UL) {
  268. if (~(tmp = *(p++)))
  269. goto found_middle;
  270. result += 32;
  271. size -= 32;
  272. }
  273. if (!size)
  274. return result;
  275. tmp = *p;
  276.  found_first:
  277. tmp |= ~0UL >> size;
  278.  found_middle:
  279. return result + ffz(tmp);
  280. }
  281. /**
  282.  * find_first_zero_bit - find the first zero bit in a memory region
  283.  * @addr: The address to start the search at
  284.  * @size: The maximum size to search
  285.  *
  286.  * Returns the bit-number of the first zero bit, not the number of the byte
  287.  * containing a bit.
  288.  */
  289. #define find_first_zero_bit(addr, size) 
  290.         find_next_zero_bit((addr), (size), 0)
  291. /*
  292.  * hweightN - returns the hamming weight of a N-bit word
  293.  * @x: the word to weigh
  294.  *
  295.  * The Hamming Weight of a number is the total number of bits set in it.
  296.  */
  297. #define hweight32(x) generic_hweight32(x)
  298. #define hweight16(x) generic_hweight16(x)
  299. #define hweight8(x) generic_hweight8(x)
  300. #define ext2_set_bit                 test_and_set_bit
  301. #define ext2_clear_bit               test_and_clear_bit
  302. #define ext2_test_bit                test_bit
  303. #define ext2_find_first_zero_bit     find_first_zero_bit
  304. #define ext2_find_next_zero_bit      find_next_zero_bit
  305. /* Bitmap functions for the minix filesystem.  */
  306. #define minix_set_bit(nr,addr) test_and_set_bit(nr,addr)
  307. #define minix_clear_bit(nr,addr) test_and_clear_bit(nr,addr)
  308. #define minix_test_bit(nr,addr) test_bit(nr,addr)
  309. #define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
  310. #endif /* __KERNEL__ */
  311. #endif /* _CRIS_BITOPS_H */