blob: bb4ac2e053859482f98933b278a8d0adda71aa5a [file] [log] [blame]
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +02001#ifndef _PERF_LINUX_BITOPS_H_
2#define _PERF_LINUX_BITOPS_H_
3
Arnaldo Carvalho de Melofb720142010-04-30 19:31:12 -03004#include <linux/kernel.h>
5#include <asm/hweight.h>
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +02006
Arnaldo Carvalho de Melofb720142010-04-30 19:31:12 -03007#define BITS_PER_LONG __WORDSIZE
8#define BITS_PER_BYTE 8
9#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
Paul Mackerrasee3d2502009-11-24 15:19:43 +110010
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020011static inline void set_bit(int nr, unsigned long *addr)
12{
13 addr[nr / BITS_PER_LONG] |= 1UL << (nr % BITS_PER_LONG);
14}
15
16static __always_inline int test_bit(unsigned int nr, const unsigned long *addr)
17{
18 return ((1UL << (nr % BITS_PER_LONG)) &
19 (((unsigned long *)addr)[nr / BITS_PER_LONG])) != 0;
20}
21
Arnaldo Carvalho de Melofb720142010-04-30 19:31:12 -030022static inline unsigned long hweight_long(unsigned long w)
23{
24 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
25}
Frederic Weisbecker5a116dd2009-10-17 17:12:33 +020026
27#endif