/usr/include/bm/bmutil.h is in bmagic 3.7.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef BMUTIL__H__INCLUDED__
#define BMUTIL__H__INCLUDED__
/*
Copyright(c) 2002-2009 Anatoliy Kuznetsov(anatoliy_kuznetsov at yahoo.com)
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information please visit: http://bmagic.sourceforge.net
*/
#include "bmdef.h"
#include "bmconst.h"
#if defined(_M_AMD64) || defined(_M_X64)
#include <intrin.h>
#endif
namespace bm
{
/*
// SSE2 vector equality comparison
int _mm_any_eq( vFloat a, vFloat b )
{
//test a==b for each float in a & b
vFloat mask = _mm_cmpeq_ps( a, b );
//copy top bit of each result to maskbits
int maskBits = _mm_movemask_ps( mask );
return maskBits != 0;
}
*/
// From:
// http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.8562
//
template<typename T>
T bit_scan_fwd(T v)
{
return
DeBruijn_bit_position<true>::_multiply[((word_t)((v & -v) * 0x077CB531U)) >> 27];
}
/**
Get minimum of 2 values
*/
template<typename T>
T min_value(T v1, T v2)
{
return v1 < v2 ? v1 : v2;
}
/**
Fast loop-less function to find LOG2
*/
template<typename T>
T ilog2(T x)
{
unsigned int l = 0;
if(x >= 1<<16) { x>>=16; l |= 16; }
if(x >= 1<<8) { x>>=8; l |= 8; }
if(x >= 1<<4) { x>>=4; l |= 4; }
if(x >= 1<<2) { x>>=2; l |= 2; }
if(x >= 1<<1) l |=1;
return l;
}
template<>
inline bm::gap_word_t ilog2(gap_word_t x)
{
unsigned int l = 0;
if(x >= 1<<8) { x>>=8; l |= 8; }
if(x >= 1<<4) { x>>=4; l |= 4; }
if(x >= 1<<2) { x>>=2; l |= 2; }
if(x >= 1<<1) l |=1;
return (bm::gap_word_t)l;
}
/**
Mini auto-pointer for internal memory management
@internal
*/
template<class T>
class ptr_guard
{
public:
ptr_guard(T* p) : ptr_(p) {}
~ptr_guard() { delete ptr_; }
private:
ptr_guard(const ptr_guard<T>& p);
ptr_guard& operator=(const ptr_guard<T>& p);
private:
T* ptr_;
};
/**
Lookup table based integer LOG2
*/
template<typename T>
T ilog2_LUT(T x)
{
unsigned l = 0;
if (x & 0xffff0000)
{
l += 16; x >>= 16;
}
if (x & 0xff00)
{
l += 8; x >>= 8;
}
return l + first_bit_table<true>::_idx[x];
}
/**
Lookup table based short integer LOG2
*/
template<>
inline bm::gap_word_t ilog2_LUT<bm::gap_word_t>(bm::gap_word_t x)
{
unsigned l = 0;
if (x & 0xff00)
{
l += 8; x >>= 8;
}
return (bm::gap_word_t)(l + first_bit_table<true>::_idx[x]);
}
// if we are running on x86 CPU we can use inline ASM
#ifdef BM_x86
#ifdef __GNUG__
inline
unsigned bsf_asm32(unsigned int v)
{
unsigned r;
asm volatile(" bsfl %1, %0": "=r"(r): "rm"(v) );
return r;
}
BMFORCEINLINE unsigned bsr_asm32(register unsigned int v)
{
unsigned r;
asm volatile(" bsrl %1, %0": "=r"(r): "rm"(v) );
return r;
}
#endif // __GNUG__
#ifdef _MSC_VER
#if defined(_M_AMD64) || defined(_M_X64) // inline assembly not supported
BMFORCEINLINE unsigned int bsr_asm32(unsigned int value)
{
unsigned long r;
_BitScanReverse(&r, value);
return r;
}
BMFORCEINLINE unsigned int bsf_asm32(unsigned int value)
{
unsigned long r;
_BitScanForward(&r, value);
return r;
}
#else
BMFORCEINLINE unsigned int bsr_asm32(register unsigned int value)
{
__asm bsr eax, value
}
BMFORCEINLINE unsigned int bsf_asm32(register unsigned int value)
{
__asm bsf eax, value
}
#endif
#endif // _MSC_VER
#endif // BM_x86
} // bm
#endif
|