bitscan.hpp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. ///////////////////////////////////////////////////////////////
  2. // Copyright 2013 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
  5. //
  6. // Comparison operators for cpp_int_backend:
  7. //
  8. #ifndef BOOST_MP_DETAIL_BITSCAN_HPP
  9. #define BOOST_MP_DETAIL_BITSCAN_HPP
  10. #if (defined(BOOST_MSVC) || (defined(__clang__) && defined(__c2__)) || (defined(BOOST_INTEL) && defined(_MSC_VER))) && (defined(_M_IX86) || defined(_M_X64))
  11. #include <intrin.h>
  12. #endif
  13. namespace boost{ namespace multiprecision{ namespace detail{
  14. template <class Unsigned>
  15. inline unsigned find_lsb(Unsigned mask, const mpl::int_<0>&)
  16. {
  17. unsigned result = 0;
  18. while(!(mask & 1u))
  19. {
  20. mask >>= 1;
  21. ++result;
  22. }
  23. return result;
  24. }
  25. template <class Unsigned>
  26. inline unsigned find_msb(Unsigned mask, const mpl::int_<0>&)
  27. {
  28. unsigned index = 0;
  29. while(mask)
  30. {
  31. ++index;
  32. mask >>= 1;
  33. }
  34. return --index;
  35. }
  36. #if (defined(BOOST_MSVC) || (defined(__clang__) && defined(__c2__)) || (defined(BOOST_INTEL) && defined(_MSC_VER))) && (defined(_M_IX86) || defined(_M_X64))
  37. #pragma intrinsic(_BitScanForward,_BitScanReverse)
  38. BOOST_FORCEINLINE unsigned find_lsb(unsigned long mask, const mpl::int_<1>&)
  39. {
  40. unsigned long result;
  41. _BitScanForward(&result, mask);
  42. return result;
  43. }
  44. BOOST_FORCEINLINE unsigned find_msb(unsigned long mask, const mpl::int_<1>&)
  45. {
  46. unsigned long result;
  47. _BitScanReverse(&result, mask);
  48. return result;
  49. }
  50. #ifdef _M_X64
  51. #pragma intrinsic(_BitScanForward64,_BitScanReverse64)
  52. BOOST_FORCEINLINE unsigned find_lsb(unsigned __int64 mask, const mpl::int_<2>&)
  53. {
  54. unsigned long result;
  55. _BitScanForward64(&result, mask);
  56. return result;
  57. }
  58. template <class Unsigned>
  59. BOOST_FORCEINLINE unsigned find_msb(Unsigned mask, const mpl::int_<2>&)
  60. {
  61. unsigned long result;
  62. _BitScanReverse64(&result, mask);
  63. return result;
  64. }
  65. #endif
  66. template <class Unsigned>
  67. BOOST_FORCEINLINE unsigned find_lsb(Unsigned mask)
  68. {
  69. typedef typename make_unsigned<Unsigned>::type ui_type;
  70. typedef typename mpl::if_c<
  71. sizeof(Unsigned) <= sizeof(unsigned long),
  72. mpl::int_<1>,
  73. #ifdef _M_X64
  74. typename mpl::if_c<
  75. sizeof(Unsigned) <= sizeof(__int64),
  76. mpl::int_<2>,
  77. mpl::int_<0>
  78. >::type
  79. #else
  80. mpl::int_<0>
  81. #endif
  82. >::type tag_type;
  83. return find_lsb(static_cast<ui_type>(mask), tag_type());
  84. }
  85. template <class Unsigned>
  86. BOOST_FORCEINLINE unsigned find_msb(Unsigned mask)
  87. {
  88. typedef typename make_unsigned<Unsigned>::type ui_type;
  89. typedef typename mpl::if_c<
  90. sizeof(Unsigned) <= sizeof(unsigned long),
  91. mpl::int_<1>,
  92. #ifdef _M_X64
  93. typename mpl::if_c<
  94. sizeof(Unsigned) <= sizeof(__int64),
  95. mpl::int_<2>,
  96. mpl::int_<0>
  97. >::type
  98. #else
  99. mpl::int_<0>
  100. #endif
  101. >::type tag_type;
  102. return find_msb(static_cast<ui_type>(mask), tag_type());
  103. }
  104. #elif defined(BOOST_GCC) || defined(__clang__) || (defined(BOOST_INTEL) && defined(__GNUC__))
  105. BOOST_FORCEINLINE unsigned find_lsb(unsigned mask, mpl::int_<1> const&)
  106. {
  107. return __builtin_ctz(mask);
  108. }
  109. BOOST_FORCEINLINE unsigned find_lsb(unsigned long mask, mpl::int_<2> const&)
  110. {
  111. return __builtin_ctzl(mask);
  112. }
  113. BOOST_FORCEINLINE unsigned find_lsb(boost::ulong_long_type mask, mpl::int_<3> const&)
  114. {
  115. return __builtin_ctzll(mask);
  116. }
  117. BOOST_FORCEINLINE unsigned find_msb(unsigned mask, mpl::int_<1> const&)
  118. {
  119. return sizeof(unsigned) * CHAR_BIT - 1 - __builtin_clz(mask);
  120. }
  121. BOOST_FORCEINLINE unsigned find_msb(unsigned long mask, mpl::int_<2> const&)
  122. {
  123. return sizeof(unsigned long) * CHAR_BIT - 1 - __builtin_clzl(mask);
  124. }
  125. BOOST_FORCEINLINE unsigned find_msb(boost::ulong_long_type mask, mpl::int_<3> const&)
  126. {
  127. return sizeof(boost::ulong_long_type) * CHAR_BIT - 1 - __builtin_clzll(mask);
  128. }
  129. template <class Unsigned>
  130. BOOST_FORCEINLINE unsigned find_lsb(Unsigned mask)
  131. {
  132. typedef typename make_unsigned<Unsigned>::type ui_type;
  133. typedef typename mpl::if_c<
  134. sizeof(Unsigned) <= sizeof(unsigned),
  135. mpl::int_<1>,
  136. typename mpl::if_c<
  137. sizeof(Unsigned) <= sizeof(unsigned long),
  138. mpl::int_<2>,
  139. typename mpl::if_c<
  140. sizeof(Unsigned) <= sizeof(boost::ulong_long_type),
  141. mpl::int_<3>,
  142. mpl::int_<0>
  143. >::type
  144. >::type
  145. >::type tag_type;
  146. return find_lsb(static_cast<ui_type>(mask), tag_type());
  147. }
  148. template <class Unsigned>
  149. BOOST_FORCEINLINE unsigned find_msb(Unsigned mask)
  150. {
  151. typedef typename make_unsigned<Unsigned>::type ui_type;
  152. typedef typename mpl::if_c<
  153. sizeof(Unsigned) <= sizeof(unsigned),
  154. mpl::int_<1>,
  155. typename mpl::if_c<
  156. sizeof(Unsigned) <= sizeof(unsigned long),
  157. mpl::int_<2>,
  158. typename mpl::if_c<
  159. sizeof(Unsigned) <= sizeof(boost::ulong_long_type),
  160. mpl::int_<3>,
  161. mpl::int_<0>
  162. >::type
  163. >::type
  164. >::type tag_type;
  165. return find_msb(static_cast<ui_type>(mask), tag_type());
  166. }
  167. #elif defined(BOOST_INTEL)
  168. BOOST_FORCEINLINE unsigned find_lsb(unsigned mask, mpl::int_<1> const&)
  169. {
  170. return _bit_scan_forward(mask);
  171. }
  172. BOOST_FORCEINLINE unsigned find_msb(unsigned mask, mpl::int_<1> const&)
  173. {
  174. return _bit_scan_reverse(mask);
  175. }
  176. template <class Unsigned>
  177. BOOST_FORCEINLINE unsigned find_lsb(Unsigned mask)
  178. {
  179. typedef typename make_unsigned<Unsigned>::type ui_type;
  180. typedef typename mpl::if_c<
  181. sizeof(Unsigned) <= sizeof(unsigned),
  182. mpl::int_<1>,
  183. mpl::int_<0>
  184. >::type tag_type;
  185. return find_lsb(static_cast<ui_type>(mask), tag_type());
  186. }
  187. template <class Unsigned>
  188. BOOST_FORCEINLINE unsigned find_msb(Unsigned mask)
  189. {
  190. typedef typename make_unsigned<Unsigned>::type ui_type;
  191. typedef typename mpl::if_c<
  192. sizeof(Unsigned) <= sizeof(unsigned),
  193. mpl::int_<1>,
  194. mpl::int_<0>
  195. >::type tag_type;
  196. return find_msb(static_cast<ui_type>(mask), tag_type());
  197. }
  198. #else
  199. template <class Unsigned>
  200. BOOST_FORCEINLINE unsigned find_lsb(Unsigned mask)
  201. {
  202. return find_lsb(mask, mpl::int_<0>());
  203. }
  204. template <class Unsigned>
  205. BOOST_FORCEINLINE unsigned find_msb(Unsigned mask)
  206. {
  207. return find_msb(mask, mpl::int_<0>());
  208. }
  209. #endif
  210. }}}
  211. #endif