limits
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:14k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  */
  13. /* NOTE: This is not portable code.  Parts of numeric_limits<> are
  14.  * inherently machine-dependent, and this file is written for the MIPS
  15.  * architecture and the SGI MIPSpro C++ compiler.  Parts of it (in
  16.  * particular, some of the characteristics of floating-point types)
  17.  * are almost certainly incorrect for any other platform.
  18.  */
  19. #ifndef __SGI_CPP_LIMITS
  20. #define __SGI_CPP_LIMITS
  21. #include <limits.h>
  22. #include <float.h>
  23. #include <stl_config.h>
  24. __STL_BEGIN_NAMESPACE
  25. enum float_round_style {
  26.   round_indeterminate       = -1,
  27.   round_toward_zero         =  0,
  28.   round_to_nearest          =  1,
  29.   round_toward_infinity     =  2,
  30.   round_toward_neg_infinity =  3
  31. };
  32. enum float_denorm_style {
  33.   denorm_indeterminate = -1,
  34.   denorm_absent        =  0,
  35.   denorm_present       =  1
  36. };
  37. // Base class for all specializations of numeric_limits.
  38. template <class __number>
  39. class _Numeric_limits_base {
  40. public:
  41.   static const bool is_specialized = false;
  42.   static __number min() __STL_NOTHROW { return __number(); }
  43.   static __number max() __STL_NOTHROW { return __number(); }
  44.   static const int digits   = 0;
  45.   static const int digits10 = 0;
  46.   static const bool is_signed  = false;
  47.   static const bool is_integer = false;
  48.   static const bool is_exact   = false;
  49.   static const int radix = 0;
  50.   static __number epsilon() __STL_NOTHROW     { return __number(); }
  51.   static __number round_error() __STL_NOTHROW { return __number(); }
  52.   static const int min_exponent   = 0;
  53.   static const int min_exponent10 = 0;
  54.   static const int max_exponent   = 0;
  55.   static const int max_exponent10 = 0;
  56.   static const bool has_infinity      = false;
  57.   static const bool has_quiet_NaN     = false;
  58.   static const bool has_signaling_NaN = false;
  59.   static const float_denorm_style has_denorm = denorm_absent;
  60.   static const bool has_denorm_loss   = false;
  61.   static __number infinity() __STL_NOTHROW      { return __number(); }
  62.   static __number quiet_NaN() __STL_NOTHROW     { return __number(); }
  63.   static __number signaling_NaN() __STL_NOTHROW { return __number(); }
  64.   static __number denorm_min() __STL_NOTHROW    { return __number(); }
  65.   static const bool is_iec559  = false;
  66.   static const bool is_bounded = false;
  67.   static const bool is_modulo  = false;
  68.   static const bool traps           = false;
  69.   static const bool tinyness_before = false;
  70.   static const float_round_style round_style = round_toward_zero;
  71. };
  72. #define __declare_numeric_base_member(__type, __mem) 
  73. template <class __number> 
  74.   const __type _Numeric_limits_base<__number>:: __mem
  75. __declare_numeric_base_member(bool, is_specialized);
  76. __declare_numeric_base_member(int, digits);
  77. __declare_numeric_base_member(int, digits10);
  78. __declare_numeric_base_member(bool, is_signed);
  79. __declare_numeric_base_member(bool, is_integer);
  80. __declare_numeric_base_member(bool, is_exact);
  81. __declare_numeric_base_member(int, radix);
  82. __declare_numeric_base_member(int, min_exponent);
  83. __declare_numeric_base_member(int, max_exponent);
  84. __declare_numeric_base_member(int, min_exponent10);
  85. __declare_numeric_base_member(int, max_exponent10);
  86. __declare_numeric_base_member(bool, has_infinity);
  87. __declare_numeric_base_member(bool, has_quiet_NaN);
  88. __declare_numeric_base_member(bool, has_signaling_NaN);
  89. __declare_numeric_base_member(float_denorm_style, has_denorm);
  90. __declare_numeric_base_member(bool, has_denorm_loss);
  91. __declare_numeric_base_member(bool, is_iec559);
  92. __declare_numeric_base_member(bool, is_bounded);
  93. __declare_numeric_base_member(bool, is_modulo);
  94. __declare_numeric_base_member(bool, traps);
  95. __declare_numeric_base_member(bool, tinyness_before);
  96. __declare_numeric_base_member(float_round_style, round_style);
  97. #undef __declare_numeric_base_member
  98. // Base class for integers.
  99. template <class _Int,
  100.           _Int __imin,
  101.           _Int __imax,
  102.           int __idigits = -1>
  103. class _Integer_limits : public _Numeric_limits_base<_Int> 
  104. {
  105. public:
  106.   static const bool is_specialized = true;
  107.   static _Int min() __STL_NOTHROW { return __imin; }
  108.   static _Int max() __STL_NOTHROW { return __imax; }
  109.   static const int digits = 
  110.     (__idigits < 0) ? sizeof(_Int) * CHAR_BIT - (__imin == 0 ? 0 : 1) 
  111.                     : __idigits;
  112.   static const int digits10 = (digits * 301) / 1000; 
  113.                                 // log 2 = 0.301029995664...
  114.   static const bool is_signed = __imin != 0;
  115.   static const bool is_integer = true;
  116.   static const bool is_exact = true;
  117.   static const int radix = 2;
  118.   static const bool is_bounded = true;
  119.   static const bool is_modulo = true;
  120. };
  121. #define __declare_integer_limits_member(__type, __mem) 
  122. template <class _Int, _Int __imin, _Int __imax, int __idigits> 
  123.   const __type _Integer_limits<_Int, __imin, __imax, __idigits>:: __mem
  124. __declare_integer_limits_member(bool, is_specialized);
  125. __declare_integer_limits_member(int, digits);
  126. __declare_integer_limits_member(int, digits10);
  127. __declare_integer_limits_member(bool, is_signed);
  128. __declare_integer_limits_member(bool, is_integer);
  129. __declare_integer_limits_member(bool, is_exact);
  130. __declare_integer_limits_member(int, radix);
  131. __declare_integer_limits_member(bool, is_bounded);
  132. __declare_integer_limits_member(bool, is_modulo);
  133. #undef __declare_integer_limits_member
  134. // Base class for floating-point numbers.
  135. template <class __number,
  136.          int __Digits, int __Digits10,
  137.          int __MinExp, int __MaxExp,
  138.          int __MinExp10, int __MaxExp10,
  139.          unsigned int __InfinityWord,
  140.          unsigned int __QNaNWord, unsigned int __SNaNWord,
  141.          bool __IsIEC559,
  142.          float_round_style __RoundStyle>
  143. class _Floating_limits : public _Numeric_limits_base<__number>
  144. {
  145. public:
  146.   static const bool is_specialized = true;
  147.   static const int digits   = __Digits;
  148.   static const int digits10 = __Digits10;
  149.   static const bool is_signed = true;
  150.   static const int radix = 2;
  151.   static const int min_exponent   = __MinExp;
  152.   static const int max_exponent   = __MaxExp;
  153.   static const int min_exponent10 = __MinExp10;
  154.   static const int max_exponent10 = __MaxExp10;
  155.   static const bool has_infinity      = true;
  156.   static const bool has_quiet_NaN     = true;
  157.   static const bool has_signaling_NaN = true;
  158.   static const float_denorm_style has_denorm = denorm_indeterminate;
  159.   static const bool has_denorm_loss   = false;
  160.   static __number infinity() __STL_NOTHROW {
  161.     static unsigned int _S_inf[sizeof(__number) / sizeof(int)] = 
  162.       { __InfinityWord };
  163.     return *reinterpret_cast<__number*>(&_S_inf);
  164.   }
  165.   static __number quiet_NaN() __STL_NOTHROW {
  166.     static unsigned int _S_nan[sizeof(__number) / sizeof(int)] = 
  167.       { __QNaNWord };
  168.     return *reinterpret_cast<__number*>(&_S_nan);
  169.   }
  170.   static __number signaling_NaN() __STL_NOTHROW {
  171.     static unsigned int _S_nan[sizeof(__number) / sizeof(int)] = 
  172.       { __SNaNWord };
  173.     return *reinterpret_cast<__number*>(&_S_nan);
  174.   }
  175.   static const bool is_iec559       = __IsIEC559;
  176.   static const bool is_bounded      = true;
  177.   static const bool traps           = true;
  178.   static const bool tinyness_before = false;
  179.   static const float_round_style round_style = __RoundStyle;
  180. };
  181. #define __declare_float_limits_member(__type, __mem) 
  182. template <class __Num, int __Dig, int __Dig10, 
  183.           int __MnX, int __MxX, int __MnX10, int __MxX10, 
  184.           unsigned int __Inf, unsigned int __QNaN, unsigned int __SNaN, 
  185.           bool __IsIEEE, float_round_style __Sty> 
  186. const __type _Floating_limits<__Num, __Dig, __Dig10, 
  187.                               __MnX, __MxX, __MnX10, __MxX10, 
  188.                               __Inf, __QNaN, __SNaN,__IsIEEE, __Sty>:: __mem
  189. __declare_float_limits_member(bool, is_specialized);  
  190. __declare_float_limits_member(int, digits);  
  191. __declare_float_limits_member(int, digits10);  
  192. __declare_float_limits_member(bool, is_signed);  
  193. __declare_float_limits_member(int, radix);  
  194. __declare_float_limits_member(int, min_exponent);  
  195. __declare_float_limits_member(int, max_exponent);  
  196. __declare_float_limits_member(int, min_exponent10);  
  197. __declare_float_limits_member(int, max_exponent10);  
  198. __declare_float_limits_member(bool, has_infinity);
  199. __declare_float_limits_member(bool, has_quiet_NaN);
  200. __declare_float_limits_member(bool, has_signaling_NaN);
  201. __declare_float_limits_member(float_denorm_style, has_denorm);
  202. __declare_float_limits_member(bool, has_denorm_loss);
  203. __declare_float_limits_member(bool, is_iec559);
  204. __declare_float_limits_member(bool, is_bounded);
  205. __declare_float_limits_member(bool, traps);
  206. __declare_float_limits_member(bool, tinyness_before);
  207. __declare_float_limits_member(float_round_style, round_style);
  208. #undef __declare_float_limits_member
  209. // Class numeric_limits
  210. // The unspecialized class.
  211. template<class T> 
  212. class numeric_limits : public _Numeric_limits_base<T> {};
  213. // Specializations for all built-in integral types.
  214. #ifndef __STL_NO_BOOL
  215. template<>
  216. class numeric_limits<bool>
  217.   : public _Integer_limits<bool, false, true, 0>
  218. {};
  219. #endif /* __STL_NO_BOOL */
  220. template<>
  221. class numeric_limits<char>
  222.   : public _Integer_limits<char, CHAR_MIN, CHAR_MAX>
  223. {};
  224. template<>
  225. class numeric_limits<signed char>
  226.   : public _Integer_limits<signed char, SCHAR_MIN, SCHAR_MAX>
  227. {};
  228. template<>
  229. class numeric_limits<unsigned char>
  230.   : public _Integer_limits<unsigned char, 0, UCHAR_MAX>
  231. {};
  232. #ifdef __STL_HAS_WCHAR_T
  233. template<>
  234. class numeric_limits<wchar_t>
  235.   : public _Integer_limits<wchar_t, INT_MIN, INT_MAX>
  236. {};
  237. #endif
  238. template<>
  239. class numeric_limits<short>
  240.   : public _Integer_limits<short, SHRT_MIN, SHRT_MAX>
  241. {};
  242. template<>
  243. class numeric_limits<unsigned short>
  244.   : public _Integer_limits<unsigned short, 0, USHRT_MAX>
  245. {};
  246. template<>
  247. class numeric_limits<int>
  248.   : public _Integer_limits<int, INT_MIN, INT_MAX>
  249. {};
  250. template<>
  251. class numeric_limits<unsigned int>
  252.   : public _Integer_limits<unsigned int, 0, UINT_MAX>
  253. {};
  254. template<>
  255. class numeric_limits<long>
  256.   : public _Integer_limits<long, LONG_MIN, LONG_MAX>
  257. {};
  258. template<>
  259. class numeric_limits<unsigned long>
  260.   : public _Integer_limits<unsigned long, 0, ULONG_MAX>
  261. {};
  262. #ifdef __STL_LONG_LONG
  263. template<>
  264. class numeric_limits<long long>
  265.   : public _Integer_limits<long long, LONGLONG_MIN, LONGLONG_MAX>
  266. {};
  267. template<>
  268. class numeric_limits<unsigned long long>
  269.   : public _Integer_limits<unsigned long long, 0, ULONGLONG_MAX>
  270. {};
  271. #endif /* __STL_LONG_LONG */
  272. // Specializations for all built-in floating-point type.
  273. template<> class numeric_limits<float>
  274.   : public _Floating_limits<float, 
  275.                             FLT_MANT_DIG,   // Binary digits of precision
  276.                             FLT_DIG,        // Decimal digits of precision
  277.                             FLT_MIN_EXP,    // Minimum exponent
  278.                             FLT_MAX_EXP,    // Maximum exponent
  279.                             FLT_MIN_10_EXP, // Minimum base 10 exponent
  280.                             FLT_MAX_10_EXP, // Maximum base 10 exponent
  281.                             0x7f800000u,    // First word of +infinity
  282.                             0x7f810000u,    // First word of quiet NaN
  283.                             0x7fc10000u,    // First word of signaling NaN
  284.                             true,           // conforms to iec559
  285.                             round_to_nearest>
  286. {
  287. public:
  288.   static float min() __STL_NOTHROW { return FLT_MIN; }
  289.   static float denorm_min() __STL_NOTHROW { return FLT_MIN; }
  290.   static float max() __STL_NOTHROW { return FLT_MAX; }
  291.   static float epsilon() __STL_NOTHROW { return FLT_EPSILON; }
  292.   static float round_error() __STL_NOTHROW { return 0.5f; } // Units: ulps.
  293. };
  294. template<> class numeric_limits<double>
  295.   : public _Floating_limits<double, 
  296.                             DBL_MANT_DIG,   // Binary digits of precision
  297.                             DBL_DIG,        // Decimal digits of precision
  298.                             DBL_MIN_EXP,    // Minimum exponent
  299.                             DBL_MAX_EXP,    // Maximum exponent
  300.                             DBL_MIN_10_EXP, // Minimum base 10 exponent
  301.                             DBL_MAX_10_EXP, // Maximum base 10 exponent
  302.                             0x7ff00000u,    // First word of +infinity
  303.                             0x7ff10000u,    // First word of quiet NaN
  304.                             0x7ff90000u,    // First word of signaling NaN
  305.                             true,           // conforms to iec559
  306.                             round_to_nearest>
  307. {
  308. public:
  309.   static double min() __STL_NOTHROW { return DBL_MIN; }
  310.   static double denorm_min() __STL_NOTHROW { return DBL_MIN; }
  311.   static double max() __STL_NOTHROW { return DBL_MAX; }
  312.   static double epsilon() __STL_NOTHROW { return DBL_EPSILON; }
  313.   static double round_error() __STL_NOTHROW { return 0.5; } // Units: ulps.
  314. };
  315. template<> class numeric_limits<long double>
  316.   : public _Floating_limits<long double, 
  317.                             LDBL_MANT_DIG,  // Binary digits of precision
  318.                             LDBL_DIG,       // Decimal digits of precision
  319.                             LDBL_MIN_EXP,   // Minimum exponent
  320.                             LDBL_MAX_EXP,   // Maximum exponent
  321.                             LDBL_MIN_10_EXP,// Minimum base 10 exponent
  322.                             LDBL_MAX_10_EXP,// Maximum base 10 exponent
  323.                             0x7ff00000u,    // First word of +infinity
  324.                             0x7ff10000u,    // First word of quiet NaN
  325.                             0x7ff90000u,    // First word of signaling NaN
  326.                             false,          // Doesn't conform to iec559
  327.                             round_to_nearest>
  328. {
  329. public:
  330.   static long double min() __STL_NOTHROW { return LDBL_MIN; }
  331.   static long double denorm_min() __STL_NOTHROW { return LDBL_MIN; }
  332.   static long double max() __STL_NOTHROW { return LDBL_MAX; }
  333.   static long double epsilon() __STL_NOTHROW { return LDBL_EPSILON; }
  334.   static long double round_error() __STL_NOTHROW { return 4; } // Units: ulps.
  335. };
  336. __STL_END_NAMESPACE
  337. #endif /* __SGI_CPP_LIMITS */
  338. // Local Variables:
  339. // mode:C++
  340. // End: