/usr/include/InsightToolkit/Common/itkMathDetail.h is in libinsighttoolkit3-dev 3.20.1+git20120521-6build1.
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 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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkMathDetail.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkMathDetail_h
#define __itkMathDetail_h
#include "vnl/vnl_math.h"
#include "itkNumericTraits.h"
#ifdef ITK_HAVE_FENV_H
// The Sun Studio CC compiler seems to have a bug where if cstdio is
// included stdio.h must also be included before fenv.h
#include <stdio.h>
#include <fenv.h> // should this be cfenv?
#endif /* ITK_HAVE_FENV_H */
// Figure out when the fast implementations can be used
//
// Turn on 32-bit sse2 impl if asked for
#if VNL_CONFIG_ENABLE_SSE2_ROUNDING && defined(__SSE2__) && (!defined(__GCCXML__))
# define USE_SSE2_32IMPL 1
#else
# define USE_SSE2_32IMPL 0
#endif
// Turn on 64-bit sse2 impl only on 64-bit architectures and if asked for
# define USE_SSE2_64IMPL 0
#if VNL_CONFIG_ENABLE_SSE2_ROUNDING && defined(__SSE2__) && \
( defined(__x86_64) || defined(__x86_64__) || defined(_M_X64)) && (!defined(__GCCXML__) )
// _mm_cvtsd_si64 and _mm_cvtss_si64 are not defined in gcc prior to 4.0
// of gcc, we have opted not to use a compile test for this due to
// complication with universal binaries on apple
#if (!defined(__GNUC__) || ( defined(__GNUC__) && (__GNUC__>=4 ) ))
# undef USE_SSE2_64IMPL
# define USE_SSE2_64IMPL 1
#endif
#endif
// Turn on 32-bit and 64-bit asm impl when using GCC on x86 platform with the following exception:
// GCCXML
#if defined(__GNUC__) && (!defined(__GCCXML__)) && (defined(__i386__) || defined(__i386) || defined(__x86_64__) || defined(__x86_64))
# define GCC_USE_ASM_32IMPL 1
# define GCC_USE_ASM_64IMPL 1
#else
# define GCC_USE_ASM_32IMPL 0
# define GCC_USE_ASM_64IMPL 0
#endif
// Turn on 32-bit and 64-bit asm impl when using msvc on 32 bits windows
#if defined(VCL_VC) && (!defined(__GCCXML__)) && !defined(_WIN64)
# define VC_USE_ASM_32IMPL 1
# define VC_USE_ASM_64IMPL 1
#else
# define VC_USE_ASM_32IMPL 0
# define VC_USE_ASM_64IMPL 0
#endif
namespace itk
{
namespace Math
{
namespace Detail
{
// The functions defined in this namespace are not meant to be used directly
// and thus do not adhere to the standard backward-compatibility
// policy of ITK, as any Detail namespace should be considered private.
// Please use the functions from the itk::Math namespace instead
////////////////////////////////////////
// Base versions
template <typename TReturn, typename TInput>
inline TReturn RoundHalfIntegerToEven_base(TInput x)
{
if ( NumericTraits<TInput>::IsNonnegative( x ) )
{
x += static_cast<TInput>( 0.5 );
}
else
{
x -= static_cast<TInput>( 0.5 );
}
const TReturn r = static_cast<TReturn>( x );
return ( x != static_cast<TInput>( r ) ) ? r : static_cast<TReturn>( 2*(r/2) );
}
template <typename TReturn, typename TInput>
inline TReturn RoundHalfIntegerUp_base(TInput x)
{
x += static_cast<TInput>( 0.5 );
const TReturn r = static_cast<TReturn>( x );
return ( NumericTraits<TInput>::IsNonnegative( x ) ) ?
r :
( x == static_cast<TInput>( r ) ? r : r - static_cast<TReturn>(1) );
}
template <typename TReturn, typename TInput>
inline TReturn Floor_base(TInput x)
{
const TReturn r = static_cast<TReturn>( x );
return ( NumericTraits<TInput>::IsNonnegative( x ) ) ?
r :
( x == static_cast<TInput>( r ) ? r : r - static_cast<TReturn>(1) );
}
template <typename TReturn, typename TInput>
inline TReturn Ceil_base(TInput x)
{
const TReturn r = static_cast<TReturn>( x );
return ( NumericTraits<TInput>::IsNegative( x ) ) ?
r :
( x == static_cast<TInput>( r ) ? r : r + static_cast<TReturn>(1) );
}
////////////////////////////////////////
// 32 bits versions
#if USE_SSE2_32IMPL // sse2 implementation
inline int32_t RoundHalfIntegerToEven_32(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
return _mm_cvtsd_si32(_mm_set_sd(x));
}
inline int32_t RoundHalfIntegerToEven_32(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
return _mm_cvtss_si32(_mm_set_ss(x));
}
#elif GCC_USE_ASM_32IMPL // gcc asm implementation
inline int32_t RoundHalfIntegerToEven_32(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int32_t r;
__asm__ __volatile__( "fistpl %0" : "=m"(r) : "t"(x) : "st" );
return r;
}
inline int32_t RoundHalfIntegerToEven_32(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int32_t r;
__asm__ __volatile__( "fistpl %0" : "=m"(r) : "t"(x) : "st" );
return r;
}
#elif VC_USE_ASM_32IMPL // msvc asm implementation
inline int32_t RoundHalfIntegerToEven_32(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int32_t r;
__asm
{
fld x
fistp r
}
return r;
}
inline int32_t RoundHalfIntegerToEven_32(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int32_t r;
__asm
{
fld x
fistp r
}
return r;
}
#else // Base implementation
inline int32_t RoundHalfIntegerToEven_32(double x) { return RoundHalfIntegerToEven_base<int32_t,double>(x); }
inline int32_t RoundHalfIntegerToEven_32(float x) { return RoundHalfIntegerToEven_base<int32_t,float>(x); }
#endif
#if USE_SSE2_32IMPL || GCC_USE_ASM_32IMPL || VC_USE_ASM_32IMPL
inline int32_t RoundHalfIntegerUp_32(double x) { return RoundHalfIntegerToEven_32(2*x+0.5)>>1; }
inline int32_t RoundHalfIntegerUp_32(float x) { return RoundHalfIntegerToEven_32(2*x+0.5f)>>1; }
inline int32_t Floor_32(double x) { return RoundHalfIntegerToEven_32(2*x-0.5)>>1; }
inline int32_t Floor_32(float x) { return RoundHalfIntegerToEven_32(2*x-0.5f)>>1; }
inline int32_t Ceil_32(double x) { return -(RoundHalfIntegerToEven_32(-0.5-2*x)>>1); }
inline int32_t Ceil_32(float x) { return -(RoundHalfIntegerToEven_32(-0.5f-2*x)>>1); }
#else // Base implementation
inline int32_t RoundHalfIntegerUp_32(double x) { return RoundHalfIntegerUp_base<int32_t,double>(x); }
inline int32_t RoundHalfIntegerUp_32(float x) { return RoundHalfIntegerUp_base<int32_t,float>(x); }
inline int32_t Floor_32(double x) { return Floor_base<int32_t,double>(x); }
inline int32_t Floor_32(float x) { return Floor_base<int32_t,float>(x); }
inline int32_t Ceil_32(double x) { return Ceil_base<int32_t,double>(x); }
inline int32_t Ceil_32(float x) { return Ceil_base<int32_t,float>(x); }
#endif // USE_SSE2_32IMPL || GCC_USE_ASM_32IMPL || VC_USE_ASM_32IMPL
////////////////////////////////////////
// 64 bits versions
#ifdef ITK_HAS_INT_64
#if USE_SSE2_64IMPL // sse2 implementation
inline int64_t RoundHalfIntegerToEven_64(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
return _mm_cvtsd_si64(_mm_set_sd(x));
}
inline int64_t RoundHalfIntegerToEven_64(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
return _mm_cvtss_si64(_mm_set_ss(x));
}
#elif GCC_USE_ASM_64IMPL // gcc asm implementation
inline int64_t RoundHalfIntegerToEven_64(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int64_t r;
__asm__ __volatile__( "fistpll %0" : "=m"(r) : "t"(x) : "st" );
return r;
}
inline int64_t RoundHalfIntegerToEven_64(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int64_t r;
__asm__ __volatile__( "fistpll %0" : "=m"(r) : "t"(x) : "st" );
return r;
}
#elif VC_USE_ASM_64IMPL // msvc asm implementation
inline int64_t RoundHalfIntegerToEven_64(double x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int64_t r;
__asm
{
fld x
fistp r
}
return r;
}
inline int64_t RoundHalfIntegerToEven_64(float x)
{
#if defined(ITK_CHECK_FPU_ROUNDING_MODE) && defined(HAVE_FENV_H)
assert( fegetround() == FE_TONEAREST );
#endif
int64_t r;
__asm
{
fld x
fistp r
}
return r;
}
#else // Base implementation
inline int64_t RoundHalfIntegerToEven_64(double x) { return RoundHalfIntegerToEven_base<int64_t,double>(x); }
inline int64_t RoundHalfIntegerToEven_64(float x) { return RoundHalfIntegerToEven_base<int64_t,float>(x); }
#endif
#if USE_SSE2_64IMPL || GCC_USE_ASM_64IMPL || VC_USE_ASM_64IMPL
inline int64_t RoundHalfIntegerUp_64(double x) { return RoundHalfIntegerToEven_64(2*x+0.5)>>1; }
inline int64_t RoundHalfIntegerUp_64(float x) { return RoundHalfIntegerToEven_64(2*x+0.5f)>>1; }
inline int64_t Floor_64(double x) { return RoundHalfIntegerToEven_64(2*x-0.5)>>1; }
inline int64_t Floor_64(float x) { return RoundHalfIntegerToEven_64(2*x-0.5f)>>1; }
inline int64_t Ceil_64(double x) { return -(RoundHalfIntegerToEven_64(-0.5-2*x)>>1); }
inline int64_t Ceil_64(float x) { return -(RoundHalfIntegerToEven_64(-0.5f-2*x)>>1); }
#else // Base implementation
inline int64_t RoundHalfIntegerUp_64(double x) { return RoundHalfIntegerUp_base<int64_t,double>(x); }
inline int64_t RoundHalfIntegerUp_64(float x) { return RoundHalfIntegerUp_base<int64_t,float>(x); }
inline int64_t Floor_64(double x) { return Floor_base<int64_t,double>(x); }
inline int64_t Floor_64(float x) { return Floor_base<int64_t,float>(x); }
inline int64_t Ceil_64(double x) { return Ceil_base<int64_t,double>(x); }
inline int64_t Ceil_64(float x) { return Ceil_base<int64_t,float>(x); }
#endif // USE_SSE2_64IMPL || GCC_USE_ASM_64IMPL || VC_USE_ASM_64IMPL
#endif // VXL_HAS_INT_64
} // end namespace Detail
} // end namespace Math
// move to itkConceptChecking?
namespace Concept
{
template< typename T> struct FloatOrDouble;
template<> struct FloatOrDouble<float>{};
template<> struct FloatOrDouble<double>{};
} // end namespace Concept
} // end namespace itk
#undef USE_SSE2_32IMPL
#undef GCC_USE_ASM_32IMPL
#undef VC_USE_ASM_32IMPL
#undef USE_SSE2_64IMPL
#undef GCC_USE_ASM_64IMPL
#undef VC_USE_ASM_64IMPL
#endif // end of itkMathDetail.h
|