home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0639.ZIP / CCE_0639 / GPP / GXXINC.ZOO / values.h < prev    next >
C/C++ Source or Header  |  1991-07-03  |  6KB  |  184 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24.  
  25. #ifndef _values_h
  26. #ifdef __GNUG__
  27. #pragma once
  28. #pragma interface
  29. #endif
  30. #define _values_h 1
  31.  
  32. #define BITSPERBYTE 8
  33. #define BITS(type)  (BITSPERBYTE * (int)sizeof(type))
  34.  
  35. #define CHARBITS    BITS(char)
  36. #define SHORTBITS   BITS(short)
  37. #define INTBITS     BITS(int)
  38. #define LONGBITS    BITS(long)
  39. #define PTRBITS     BITS(char*)
  40. #define DOUBLEBITS  BITS(double)
  41. #define FLOATBITS   BITS(float)
  42.  
  43. #define MINSHORT    ((short)(1 << (SHORTBITS - 1)))
  44. #define MININT      (1 << (INTBITS - 1))
  45. #define MINLONG     (1L << (LONGBITS - 1))
  46.  
  47. #define MAXSHORT    ((short)~MINSHORT)
  48. #define MAXINT      (~MININT)
  49. #define MAXLONG     (~MINLONG)
  50.  
  51. #define HIBITS    MINSHORT
  52. #define HIBITL    MINLONG
  53.  
  54. #if defined(sun) || defined(hp300) || defined(hpux) || defined(masscomp) || defined(atarist)
  55. #ifdef masscomp
  56. #define MAXDOUBLE                            \
  57. ({                                    \
  58.   double maxdouble_val;                            \
  59.                                     \
  60.   __asm ("fmove%.d #0x7fefffffffffffff,%0"    /* Max double */    \
  61.      : "=f" (maxdouble_val)                        \
  62.      : /* no inputs */);                        \
  63.   maxdouble_val;                            \
  64. })
  65. #define MAXFLOAT ((float) 3.40e+38)
  66. #else
  67. #define MAXDOUBLE   1.79769313486231470e+308
  68. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  69. #endif
  70. #define MINDOUBLE   4.94065645841246544e-324
  71. #define MINFLOAT    ((float)1.40129846432481707e-45)
  72. #define _IEEE       1
  73. #define _DEXPLEN    11
  74. #define _FEXPLEN    8
  75. #define _HIDDENBIT  1
  76. #define DMINEXP     (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  77. #define FMINEXP     (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  78. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  79. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  80.  
  81. #elif defined(sony) 
  82. #define MAXDOUBLE   1.79769313486231470e+308
  83. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  84. #define MINDOUBLE   2.2250738585072010e-308
  85. #define MINFLOAT    ((float)1.17549435e-38)
  86. #define _IEEE       1
  87. #define _DEXPLEN    11
  88. #define _FEXPLEN    8
  89. #define _HIDDENBIT  1
  90. #define DMINEXP     (-(DMAXEXP + DSIGNIF - _HIDDENBIT - 3))
  91. #define FMINEXP     (-(FMAXEXP + FSIGNIF - _HIDDENBIT - 3))
  92. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  93. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  94.  
  95. #elif defined(sequent)
  96. extern double _maxdouble, _mindouble;
  97. extern float _maxfloat, _minfloat;
  98. #define MAXDOUBLE    _maxdouble
  99. #define MAXFLOAT    _maxfloat
  100. #define MINDOUBLE    _mindouble
  101. #define MINFLOAT    _minfloat
  102. #define _IEEE       1
  103. #define _DEXPLEN    11
  104. #define _FEXPLEN    8
  105. #define _HIDDENBIT  1
  106. #define DMINEXP     (-(DMAXEXP - 3))
  107. #define FMINEXP     (-(FMAXEXP - 3))
  108. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  109. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  110.  
  111. #elif defined(i386)
  112. #define MAXDOUBLE   1.79769313486231570e+308
  113. #define MAXFLOAT    ((float)3.40282346638528860e+38)
  114. #define MINDOUBLE   2.22507385850720140e-308
  115. #define MINFLOAT    ((float)1.17549435082228750e-38)
  116. #define _IEEE       0
  117. #define _DEXPLEN    11
  118. #define _FEXPLEN    8
  119. #define _HIDDENBIT  1
  120. #define DMINEXP     (-DMAXEXP)
  121. #define FMINEXP     (-FMAXEXP)
  122. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  123. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  124.  
  125. /* from Andrew Klossner <andrew%frip.wv.tek.com@relay.cs.net> */
  126. #elif defined(m88k)
  127.     /* These are "good" guesses ...
  128.        I'll figure out the true mins and maxes later, at the time I find
  129.        out the mins and maxes that the compiler can tokenize. */
  130. #define MAXDOUBLE   1.79769313486231e+308
  131. #define MAXFLOAT    ((float)3.40282346638528e+38)
  132. #define MINDOUBLE   2.22507385850720e-308
  133. #define MINFLOAT    ((float)1.17549435082228e-38)
  134. #define _IEEE       1
  135. #define _DEXPLEN    11
  136. #define _FEXPLEN    8
  137. #define _HIDDENBIT  1
  138. #define DMINEXP     (1-DMAXEXP)
  139. #define FMINEXP     (1-FMAXEXP)
  140. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  141. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  142.  
  143. #elif defined(convex)
  144. #define MAXDOUBLE   8.9884656743115785e+306
  145. #define MAXFLOAT    ((float) 1.70141173e+38)
  146. #define MINDOUBLE   5.5626846462680035e-308
  147. #define MINFLOAT    ((float) 2.93873588e-39)
  148. #define _IEEE       0
  149. #define _DEXPLEN    11
  150. #define _FEXPLEN    8
  151. #define _HIDDENBIT  1
  152. #define DMINEXP     (-DMAXEXP)
  153. #define FMINEXP     (-FMAXEXP)
  154. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  155. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  156.  
  157. // #elif defined(vax)
  158. // use vax versions by default -- they seem to be the most conservative
  159. #else 
  160.  
  161. #define MAXDOUBLE   1.701411834604692293e+38
  162. #define MINDOUBLE   (2.938735877055718770e-39)
  163.  
  164. #define MAXFLOAT    1.7014117331926443e+38
  165. #define MINFLOAT    2.9387358770557188e-39
  166.  
  167. #define _IEEE       0
  168. #define _DEXPLEN    8
  169. #define _FEXPLEN    8
  170. #define _HIDDENBIT  1
  171. #define DMINEXP     (-DMAXEXP)
  172. #define FMINEXP     (-FMAXEXP)
  173. #define DMAXEXP     ((1 << _DEXPLEN - 1) - 1 + _IEEE)
  174. #define FMAXEXP     ((1 << _FEXPLEN - 1) - 1 + _IEEE)
  175. #endif
  176.  
  177. #define DSIGNIF     (DOUBLEBITS - _DEXPLEN + _HIDDENBIT - 1)
  178. #define FSIGNIF     (FLOATBITS  - _FEXPLEN + _HIDDENBIT - 1)
  179. #define DMAXPOWTWO  ((double)(1L << LONGBITS -2)*(1L << DSIGNIF - LONGBITS +1))
  180. #define FMAXPOWTWO  ((float)(1L << FSIGNIF - 1))
  181.  
  182. #endif
  183.  
  184.