Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 1992, Linus Torvalds. |
| 3 | * Copyright 2010 Tilera Corporation. All Rights Reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation, version 2. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 12 | * NON INFRINGEMENT. See the GNU General Public License for |
| 13 | * more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef _ASM_TILE_BITOPS_H |
| 17 | #define _ASM_TILE_BITOPS_H |
| 18 | |
| 19 | #include <linux/types.h> |
| 20 | |
| 21 | #ifndef _LINUX_BITOPS_H |
| 22 | #error only <linux/bitops.h> can be included directly |
| 23 | #endif |
| 24 | |
| 25 | #ifdef __tilegx__ |
| 26 | #include <asm/bitops_64.h> |
| 27 | #else |
| 28 | #include <asm/bitops_32.h> |
| 29 | #endif |
| 30 | |
| 31 | /** |
| 32 | * __ffs - find first set bit in word |
| 33 | * @word: The word to search |
| 34 | * |
| 35 | * Undefined if no set bit exists, so code should check against 0 first. |
| 36 | */ |
| 37 | static inline unsigned long __ffs(unsigned long word) |
| 38 | { |
| 39 | return __builtin_ctzl(word); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * ffz - find first zero bit in word |
| 44 | * @word: The word to search |
| 45 | * |
| 46 | * Undefined if no zero exists, so code should check against ~0UL first. |
| 47 | */ |
| 48 | static inline unsigned long ffz(unsigned long word) |
| 49 | { |
| 50 | return __builtin_ctzl(~word); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * __fls - find last set bit in word |
| 55 | * @word: The word to search |
| 56 | * |
| 57 | * Undefined if no set bit exists, so code should check against 0 first. |
| 58 | */ |
| 59 | static inline unsigned long __fls(unsigned long word) |
| 60 | { |
| 61 | return (sizeof(word) * 8) - 1 - __builtin_clzl(word); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * ffs - find first set bit in word |
| 66 | * @x: the word to search |
| 67 | * |
| 68 | * This is defined the same way as the libc and compiler builtin ffs |
| 69 | * routines, therefore differs in spirit from the other bitops. |
| 70 | * |
| 71 | * ffs(value) returns 0 if value is 0 or the position of the first |
| 72 | * set bit if value is nonzero. The first (least significant) bit |
| 73 | * is at position 1. |
| 74 | */ |
| 75 | static inline int ffs(int x) |
| 76 | { |
| 77 | return __builtin_ffs(x); |
| 78 | } |
| 79 | |
Chris Metcalf | 9f1d62b | 2012-05-25 12:32:09 -0400 | [diff] [blame] | 80 | static inline int fls64(__u64 w) |
| 81 | { |
| 82 | return (sizeof(__u64) * 8) - __builtin_clzll(w); |
| 83 | } |
| 84 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 85 | /** |
| 86 | * fls - find last set bit in word |
| 87 | * @x: the word to search |
| 88 | * |
| 89 | * This is defined in a similar way as the libc and compiler builtin |
| 90 | * ffs, but returns the position of the most significant set bit. |
| 91 | * |
| 92 | * fls(value) returns 0 if value is 0 or the position of the last |
| 93 | * set bit if value is nonzero. The last (most significant) bit is |
| 94 | * at position 32. |
| 95 | */ |
| 96 | static inline int fls(int x) |
| 97 | { |
Chris Metcalf | 9f1d62b | 2012-05-25 12:32:09 -0400 | [diff] [blame] | 98 | return fls64((unsigned int) x); |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 99 | } |
| 100 | |
Chris Metcalf | 947e7dc | 2010-08-13 20:32:41 -0400 | [diff] [blame] | 101 | static inline unsigned int __arch_hweight32(unsigned int w) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 102 | { |
| 103 | return __builtin_popcount(w); |
| 104 | } |
| 105 | |
Chris Metcalf | 947e7dc | 2010-08-13 20:32:41 -0400 | [diff] [blame] | 106 | static inline unsigned int __arch_hweight16(unsigned int w) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 107 | { |
| 108 | return __builtin_popcount(w & 0xffff); |
| 109 | } |
| 110 | |
Chris Metcalf | 947e7dc | 2010-08-13 20:32:41 -0400 | [diff] [blame] | 111 | static inline unsigned int __arch_hweight8(unsigned int w) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 112 | { |
| 113 | return __builtin_popcount(w & 0xff); |
| 114 | } |
| 115 | |
Chris Metcalf | 947e7dc | 2010-08-13 20:32:41 -0400 | [diff] [blame] | 116 | static inline unsigned long __arch_hweight64(__u64 w) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 117 | { |
| 118 | return __builtin_popcountll(w); |
| 119 | } |
| 120 | |
Chris Metcalf | 947e7dc | 2010-08-13 20:32:41 -0400 | [diff] [blame] | 121 | #include <asm-generic/bitops/const_hweight.h> |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 122 | #include <asm-generic/bitops/lock.h> |
Akinobu Mita | 708ff2a | 2010-09-29 18:08:50 +0900 | [diff] [blame] | 123 | #include <asm-generic/bitops/find.h> |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 124 | #include <asm-generic/bitops/sched.h> |
Chris Metcalf | 18aecc2 | 2011-05-04 14:38:26 -0400 | [diff] [blame] | 125 | #include <asm-generic/bitops/non-atomic.h> |
Akinobu Mita | 861b5ae | 2011-03-23 16:42:02 -0700 | [diff] [blame] | 126 | #include <asm-generic/bitops/le.h> |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 127 | |
| 128 | #endif /* _ASM_TILE_BITOPS_H */ |