Blame view

3rdparty/boost_1_81_0/boost/intrusive/detail/math.hpp 6.56 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
  /////////////////////////////////////////////////////////////////////////////
  //
  // (C) Copyright Ion Gaztanaga  2014-2014
  //
  // Distributed under the Boost Software License, Version 1.0.
  //    (See accompanying file LICENSE_1_0.txt or copy at
  //          http://www.boost.org/LICENSE_1_0.txt)
  //
  // See http://www.boost.org/libs/intrusive for documentation.
  //
  /////////////////////////////////////////////////////////////////////////////
  
  #ifndef BOOST_INTRUSIVE_DETAIL_MATH_HPP
  #define BOOST_INTRUSIVE_DETAIL_MATH_HPP
  
  #ifndef BOOST_CONFIG_HPP
  #  include <boost/config.hpp>
  #endif
  
  #if defined(BOOST_HAS_PRAGMA_ONCE)
  #  pragma once
  #endif
  
  #include <cstddef>
  #include <climits>
  #include <boost/intrusive/detail/mpl.hpp>
  #include <cstring>
  
  namespace boost {
  namespace intrusive {
  namespace detail {
  
  ///////////////////////////
  // floor_log2  Dispatcher
  ////////////////////////////
  
  #if defined(_MSC_VER) && (_MSC_VER >= 1300)
  
     }}} //namespace boost::intrusive::detail
  
     //Use _BitScanReverseXX intrinsics
  
     #if defined(_M_X64) || defined(_M_AMD64) || defined(_M_IA64)   //64 bit target
        #define BOOST_INTRUSIVE_BSR_INTRINSIC_64_BIT
     #endif
  
     #ifndef __INTRIN_H_   // Avoid including any windows system header
        #ifdef __cplusplus
        extern "C" {
        #endif // __cplusplus
  
        #if defined(BOOST_INTRUSIVE_BSR_INTRINSIC_64_BIT)   //64 bit target
           unsigned char _BitScanReverse64(unsigned long *index, unsigned __int64 mask);
           #pragma intrinsic(_BitScanReverse64)
        #else //32 bit target
           unsigned char _BitScanReverse(unsigned long *index, unsigned long mask);
           #pragma intrinsic(_BitScanReverse)
        #endif
  
        #ifdef __cplusplus
        }
        #endif // __cplusplus
     #endif // __INTRIN_H_
  
     #ifdef BOOST_INTRUSIVE_BSR_INTRINSIC_64_BIT
        #define BOOST_INTRUSIVE_BSR_INTRINSIC _BitScanReverse64
        #undef BOOST_INTRUSIVE_BSR_INTRINSIC_64_BIT
     #else
        #define BOOST_INTRUSIVE_BSR_INTRINSIC _BitScanReverse
     #endif
  
     namespace boost {
     namespace intrusive {
     namespace detail {
  
     inline std::size_t floor_log2 (std::size_t x)
     {
        unsigned long log2;
        BOOST_INTRUSIVE_BSR_INTRINSIC( &log2, x );
        return static_cast<std::size_t>(log2);
     }
  
     #undef BOOST_INTRUSIVE_BSR_INTRINSIC
  
  #elif defined(__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) //GCC >=3.4
  
     //Compile-time error in case of missing specialization
     template<class Uint>
     struct builtin_clz_dispatch;
  
     #if defined(BOOST_HAS_LONG_LONG)
     template<>
     struct builtin_clz_dispatch< ::boost::ulong_long_type >
     {
        static ::boost::ulong_long_type call(::boost::ulong_long_type n)
        {  return (::boost::ulong_long_type)__builtin_clzll(n); }
     };
     #endif
  
     template<>
     struct builtin_clz_dispatch<unsigned long>
     {
        static unsigned long call(unsigned long n)
        {  return (unsigned long)__builtin_clzl(n); }
     };
  
     template<>
     struct builtin_clz_dispatch<unsigned int>
     {
        static unsigned int call(unsigned int n)
        {  return (unsigned int)__builtin_clz(n); }
     };
  
     inline std::size_t floor_log2(std::size_t n)
     {
        return sizeof(std::size_t)*CHAR_BIT - std::size_t(1) - builtin_clz_dispatch<std::size_t>::call(n);
     }
  
  #else //Portable methods
  
  ////////////////////////////
  // Generic method
  ////////////////////////////
  
     inline std::size_t floor_log2_get_shift(std::size_t n, true_ )//power of two size_t
     {  return n >> 1;  }
  
     inline std::size_t floor_log2_get_shift(std::size_t n, false_ )//non-power of two size_t
     {  return (n >> 1) + ((n & 1u) & (n != 1)); }
  
     template<std::size_t N>
     inline std::size_t floor_log2 (std::size_t x, integral_constant<std::size_t, N>)
     {
        const std::size_t Bits = N;
        const bool Size_t_Bits_Power_2= !(Bits & (Bits-1));
  
        std::size_t n = x;
        std::size_t log2 = 0;
  
        std::size_t remaining_bits = Bits;
        std::size_t shift = floor_log2_get_shift(remaining_bits, bool_<Size_t_Bits_Power_2>());
        while(shift){
           std::size_t tmp = n >> shift;
           if (tmp){
              log2 += shift, n = tmp;
           }
           shift = floor_log2_get_shift(shift, bool_<Size_t_Bits_Power_2>());
        }
  
        return log2;
     }
  
     inline std::size_t floor_log2 (std::size_t x)
     {
        const std::size_t Bits = sizeof(std::size_t)*CHAR_BIT;
        return floor_log2(x, integral_constant<std::size_t, Bits>());
     }
  
  #endif
  
  //Thanks to Laurent de Soras in
  //http://www.flipcode.com/archives/Fast_log_Function.shtml
  inline float fast_log2 (float val)
  {
     unsigned x;
     std::memcpy(&x, &val, sizeof(float));
     const int log_2 = int((x >> 23) & 255) - 128;
     x &= ~(unsigned(255u) << 23u);
     x += unsigned(127) << 23u;
     std::memcpy(&val, &x, sizeof(float));
     //1+log2(m), m ranging from 1 to 2
     //3rd degree polynomial keeping first derivate continuity.
     //For less precision the line can be commented out
     val = ((-1.f/3.f) * val + 2.f) * val - (2.f/3.f);
     return val + static_cast<float>(log_2);
  }
  
  inline bool is_pow2(std::size_t x)
  {  return (x & (x-1)) == 0;  }
  
  template<std::size_t N>
  struct static_is_pow2
  {
     static const bool value = (N & (N-1)) == 0;
  };
  
  inline std::size_t ceil_log2 (std::size_t x)
  {
     return static_cast<std::size_t>(!(is_pow2)(x)) + floor_log2(x);
  }
  
  inline std::size_t ceil_pow2 (std::size_t x)
  {
     return std::size_t(1u) << (ceil_log2)(x);
  }
  
  inline std::size_t previous_or_equal_pow2(std::size_t x)
  {
     return std::size_t(1u) << floor_log2(x);
  }
  
  template<class SizeType, std::size_t N>
  struct numbits_eq
  {
     static const bool value = sizeof(SizeType)*CHAR_BIT == N;
  };
  
  template<class SizeType, class Enabler = void >
  struct sqrt2_pow_max;
  
  template <class SizeType>
  struct sqrt2_pow_max<SizeType, typename voider<typename enable_if< numbits_eq<SizeType, 32> >::type>::type>
  {
     static const SizeType value = 0xb504f334;
     static const std::size_t pow   = 31;
  };
  
  #ifndef BOOST_NO_INT64_T
  
  template <class SizeType>
  struct sqrt2_pow_max<SizeType, typename voider<typename enable_if< numbits_eq<SizeType, 64> >::type>::type>
  {
     static const SizeType value = 0xb504f333f9de6484ull;
     static const std::size_t pow   = 63;
  };
  
  #endif   //BOOST_NO_INT64_T
  
  // Returns floor(pow(sqrt(2), x * 2 + 1)).
  // Defined for X from 0 up to the number of bits in size_t minus 1.
  inline std::size_t sqrt2_pow_2xplus1 (std::size_t x)
  {
     const std::size_t value = (std::size_t)sqrt2_pow_max<std::size_t>::value;
     const std::size_t pow   = (std::size_t)sqrt2_pow_max<std::size_t>::pow;
     return (value >> (pow - x)) + 1;
  }
  
  } //namespace detail
  } //namespace intrusive
  } //namespace boost
  
  #endif //BOOST_INTRUSIVE_DETAIL_MATH_HPP