/usr/include/ITK-4.9/itkMathDetail.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
/*=========================================================================
*
* Portions of this file are subject to the VTK Toolkit Version 3 copyright.
*
* Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
*
* For complete copyright, license and disclaimer of warranty information
* please refer to the NOTICE file at the top of the ITK source tree.
*
*=========================================================================*/
#ifndef itkMathDetail_h
#define itkMathDetail_h
#include "vnl/vnl_math.h"
#include "itkIntTypes.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 <cstdio>
#include <fenv.h> // should this be cfenv?
#endif /* ITK_HAVE_FENV_H */
#if defined( ITK_HAVE_EMMINTRIN_H ) && !defined( ITK_WRAPPING_PARSER )
#include <emmintrin.h> // sse 2 intrinsics
#endif /* ITK_HAVE_EMMINTRIN_H && ! ITK_WRAPPING_PARSER */
// assume no SSE2:
#define USE_SSE2_64IMPL 0
#define USE_SSE2_32IMPL 0
// For apple assume sse2 is on for all intel builds, check for 64 and 32
// bit versions
#if defined(__APPLE__) && defined( __SSE2__ ) && !defined( ITK_WRAPPING_PARSER )
# if defined( __i386__ )
# undef USE_SSE2_32IMPL
# define USE_SSE2_32IMPL 1
# endif
# if defined( __x86_64 )
// Turn on the 64 bits implementation
# undef USE_SSE2_64IMPL
# define USE_SSE2_64IMPL 1
// Turn on also the 32 bits implementation
// since it is available in 64 bits versions.
# undef USE_SSE2_32IMPL
# define USE_SSE2_32IMPL 1
# endif
#else
// For non-apple (no universal binary possible) just use the
// try-compile set ITK_COMPILER_SUPPORTS_SSE2_32 and
// ITK_COMPILER_SUPPORTS_SSE2_64 to set values:
# if defined(ITK_COMPILER_SUPPORTS_SSE2_32) && !defined( ITK_WRAPPING_PARSER )
# undef USE_SSE2_32IMPL
# define USE_SSE2_32IMPL 1
# endif
# if defined(ITK_COMPILER_SUPPORTS_SSE2_64) && !defined( ITK_WRAPPING_PARSER )
# 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( ITK_WRAPPING_PARSER ) ) && ( 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( ITK_WRAPPING_PARSER ) ) && !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
CLANG_PRAGMA_PUSH
CLANG_SUPPRESS_Wfloat_equal
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 ) );
}
CLANG_PRAGMA_POP
////////////////////////////////////////
// 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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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
#if USE_SSE2_64IMPL // sse2 implementation
inline int64_t RoundHalfIntegerToEven_64(double x)
{
#if defined( ITK_CHECK_FPU_ROUNDING_MODE ) && defined( HAVE_FENV_H )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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 )
itkAssertInDebugAndIgnoreInReleaseMacro(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
template <typename T>
struct FloatIEEETraits;
template <>
struct FloatIEEETraits<float>
{
typedef int32_t IntType;
typedef uint32_t UIntType;
};
template <>
struct FloatIEEETraits<double>
{
typedef int64_t IntType;
typedef uint64_t UIntType;
};
template <typename T>
union FloatIEEE
{
typedef T FloatType;
typedef typename FloatIEEETraits<T>::IntType IntType;
typedef typename FloatIEEETraits<T>::UIntType UIntType;
FloatType asFloat;
IntType asInt;
UIntType asUInt;
FloatIEEE(FloatType f): asFloat(f) {}
bool Sign() const
{
return (asUInt >> (sizeof(asUInt)*8-1)) != 0;
}
IntType AsULP() const
{
return this->Sign()? IntType(~(~UIntType(0) >> 1) - asUInt) : asInt;
}
};
} // 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
|