bitops.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * linux/arch/unicore32/include/asm/bitops.h
  3. *
  4. * Code specific to PKUnity SoC and UniCore ISA
  5. *
  6. * Copyright (C) 2001-2010 GUAN Xue-tao
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef __UNICORE_BITOPS_H__
  13. #define __UNICORE_BITOPS_H__
  14. #define find_next_bit __uc32_find_next_bit
  15. #define find_next_zero_bit __uc32_find_next_zero_bit
  16. #define find_first_bit __uc32_find_first_bit
  17. #define find_first_zero_bit __uc32_find_first_zero_bit
  18. #define _ASM_GENERIC_BITOPS_FLS_H_
  19. #define _ASM_GENERIC_BITOPS___FLS_H_
  20. #define _ASM_GENERIC_BITOPS_FFS_H_
  21. #define _ASM_GENERIC_BITOPS___FFS_H_
  22. /*
  23. * On UNICORE, those functions can be implemented around
  24. * the cntlz instruction for much better code efficiency.
  25. */
  26. static inline int fls(int x)
  27. {
  28. int ret;
  29. asm("cntlz\t%0, %1" : "=r" (ret) : "r" (x) : "cc");
  30. ret = 32 - ret;
  31. return ret;
  32. }
  33. #define __fls(x) (fls(x) - 1)
  34. #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
  35. #define __ffs(x) (ffs(x) - 1)
  36. #include <asm-generic/bitops.h>
  37. #endif /* __UNICORE_BITOPS_H__ */