Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43630
b: refs/heads/master
c: ef55d53
h: refs/heads/master
v: v3
  • Loading branch information
David Howells authored and Linus Torvalds committed Dec 8, 2006
1 parent 73b8341 commit e0b3ab2
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 39d61db0edb34d60b83c5e0d62d0e906578cc707
refs/heads/master: ef55d53caa055aedee13e77da82740987dd64f2d
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ config RWSEM_XCHGADD_ALGORITHM

config ARCH_HAS_ILOG2_U32
bool
default n
default y

config ARCH_HAS_ILOG2_U64
bool
default n
default y if 64BIT

config GENERIC_HWEIGHT
bool
Expand Down
21 changes: 20 additions & 1 deletion trunk/include/asm-powerpc/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,14 +190,33 @@ static __inline__ void set_bits(unsigned long mask, unsigned long *addr)
* Return the zero-based bit position (LE, not IBM bit numbering) of
* the most significant 1-bit in a double word.
*/
static __inline__ int __ilog2(unsigned long x)
static __inline__ __attribute__((const))
int __ilog2(unsigned long x)
{
int lz;

asm (PPC_CNTLZL "%0,%1" : "=r" (lz) : "r" (x));
return BITS_PER_LONG - 1 - lz;
}

static inline __attribute__((const))
int __ilog2_u32(u32 n)
{
int bit;
asm ("cntlzw %0,%1" : "=r" (bit) : "r" (n));
return 31 - bit;
}

#ifdef __powerpc64__
static inline __attribute__((const))
int __ilog2_u64(u32 n)
{
int bit;
asm ("cntlzd %0,%1" : "=r" (bit) : "r" (n));
return 63 - bit;
}
#endif

/*
* Determines the bit position of the least significant 0 bit in the
* specified double word. The returned bit position will be
Expand Down
10 changes: 1 addition & 9 deletions trunk/include/asm-powerpc/page_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,7 @@ extern void clear_pages(void *page, int order);
static inline void clear_page(void *page) { clear_pages(page, 0); }
extern void copy_page(void *to, void *from);

/* Pure 2^n version of get_order */
extern __inline__ int get_order(unsigned long size)
{
int lz;

size = (size-1) >> PAGE_SHIFT;
asm ("cntlzw %0,%1" : "=r" (lz) : "r" (size));
return 32 - lz;
}
#include <asm-generic/page.h>

#endif /* __ASSEMBLY__ */

Expand Down

0 comments on commit e0b3ab2

Please sign in to comment.