fdlibm.h
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:7k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* @(#)fdlibm.h 5.1 93/09/24 */
  2. /*
  3.  * ====================================================
  4.  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5.  *
  6.  * Developed at SunPro, a Sun Microsystems, Inc. business.
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software is freely granted, provided that this notice 
  9.  * is preserved.
  10.  * ====================================================
  11.  */
  12. /* CYGNUS LOCAL: Include files.  */
  13. #include <math.h>
  14. #include "ieeefp.h"
  15. /* CYGNUS LOCAL: Default to XOPEN_MODE.  */
  16. #define _XOPEN_MODE
  17. #ifndef __P
  18. #ifdef __STDC__
  19. #define __P(p) p
  20. #else
  21. #define __P(p) ()
  22. #endif
  23. #endif
  24. #define HUGE ((float)3.40282346638528860e+38)
  25. /* 
  26.  * set X_TLOSS = pi*2**52, which is possibly defined in <values.h>
  27.  * (one may replace the following line by "#include <values.h>")
  28.  */
  29. #define X_TLOSS 1.41484755040568800000e+16 
  30. /* glue typedefs for VxWorks */
  31. typedef int __int32_t;
  32. typedef unsigned int __uint32_t;
  33. /* Functions that are not documented, and are not in <math.h>.  */
  34. extern double logb __P((double));
  35. #ifdef _SCALB_INT
  36. extern double scalb __P((double, int));
  37. #else
  38. extern double scalb __P((double, double));
  39. #endif
  40. extern double significand __P((double));
  41. /* ieee style elementary functions */
  42. extern double __ieee754_sqrt __P((double));
  43. extern double __ieee754_acos __P((double));
  44. extern double __ieee754_acosh __P((double));
  45. extern double __ieee754_log __P((double));
  46. extern double __ieee754_atanh __P((double));
  47. extern double __ieee754_asin __P((double));
  48. extern double __ieee754_atan2 __P((double,double));
  49. extern double __ieee754_exp __P((double));
  50. extern double __ieee754_cosh __P((double));
  51. extern double __ieee754_fmod __P((double,double));
  52. extern double __ieee754_pow __P((double,double));
  53. extern double __ieee754_lgamma_r __P((double,int *));
  54. extern double __ieee754_gamma_r __P((double,int *));
  55. extern double __ieee754_log10 __P((double));
  56. extern double __ieee754_sinh __P((double));
  57. extern double __ieee754_hypot __P((double,double));
  58. extern double __ieee754_j0 __P((double));
  59. extern double __ieee754_j1 __P((double));
  60. extern double __ieee754_y0 __P((double));
  61. extern double __ieee754_y1 __P((double));
  62. extern double __ieee754_jn __P((int,double));
  63. extern double __ieee754_yn __P((int,double));
  64. extern double __ieee754_remainder __P((double,double));
  65. extern __int32_t __ieee754_rem_pio2 __P((double,double*));
  66. #ifdef _SCALB_INT
  67. extern double __ieee754_scalb __P((double,int));
  68. #else
  69. extern double __ieee754_scalb __P((double,double));
  70. #endif
  71. /* fdlibm kernel function */
  72. extern double __kernel_standard __P((double,double,int));
  73. extern double __kernel_sin __P((double,double,int));
  74. extern double __kernel_cos __P((double,double));
  75. extern double __kernel_tan __P((double,double,int));
  76. extern int    __kernel_rem_pio2 __P((double*,double*,int,int,int,const __int32_t*));
  77. /* Undocumented float functions.  */
  78. extern float logbf __P((float));
  79. #ifdef _SCALB_INT
  80. extern float scalbf __P((float, int));
  81. #else
  82. extern float scalbf __P((float, float));
  83. #endif
  84. extern float significandf __P((float));
  85. /* ieee style elementary float functions */
  86. extern float __ieee754_sqrtf __P((float));
  87. extern float __ieee754_acosf __P((float));
  88. extern float __ieee754_acoshf __P((float));
  89. extern float __ieee754_logf __P((float));
  90. extern float __ieee754_atanhf __P((float));
  91. extern float __ieee754_asinf __P((float));
  92. extern float __ieee754_atan2f __P((float,float));
  93. extern float __ieee754_expf __P((float));
  94. extern float __ieee754_coshf __P((float));
  95. extern float __ieee754_fmodf __P((float,float));
  96. extern float __ieee754_powf __P((float,float));
  97. extern float __ieee754_lgammaf_r __P((float,int *));
  98. extern float __ieee754_gammaf_r __P((float,int *));
  99. extern float __ieee754_log10f __P((float));
  100. extern float __ieee754_sinhf __P((float));
  101. extern float __ieee754_hypotf __P((float,float));
  102. extern float __ieee754_j0f __P((float));
  103. extern float __ieee754_j1f __P((float));
  104. extern float __ieee754_y0f __P((float));
  105. extern float __ieee754_y1f __P((float));
  106. extern float __ieee754_jnf __P((int,float));
  107. extern float __ieee754_ynf __P((int,float));
  108. extern float __ieee754_remainderf __P((float,float));
  109. extern __int32_t __ieee754_rem_pio2f __P((float,float*));
  110. #ifdef _SCALB_INT
  111. extern float __ieee754_scalbf __P((float,int));
  112. #else
  113. extern float __ieee754_scalbf __P((float,float));
  114. #endif
  115. /* float versions of fdlibm kernel functions */
  116. extern float __kernel_sinf __P((float,float,int));
  117. extern float __kernel_cosf __P((float,float));
  118. extern float __kernel_tanf __P((float,float,int));
  119. extern int   __kernel_rem_pio2f __P((float*,float*,int,int,int,const __int32_t*));
  120. /* The original code used statements like
  121. n0 = ((*(int*)&one)>>29)^1; * index of high word *
  122. ix0 = *(n0+(int*)&x); * high word of x *
  123. ix1 = *((1-n0)+(int*)&x); * low word of x *
  124.    to dig two 32 bit words out of the 64 bit IEEE floating point
  125.    value.  That is non-ANSI, and, moreover, the gcc instruction
  126.    scheduler gets it wrong.  We instead use the following macros.
  127.    Unlike the original code, we determine the endianness at compile
  128.    time, not at run time; I don't see much benefit to selecting
  129.    endianness at run time.  */
  130. #ifndef __IEEE_BIG_ENDIAN
  131. #ifndef __IEEE_LITTLE_ENDIAN
  132.  #error Must define endianness
  133. #endif
  134. #endif
  135. /* A union which permits us to convert between a double and two 32 bit
  136.    ints.  */
  137. #ifdef __IEEE_BIG_ENDIAN
  138. typedef union 
  139. {
  140.   double value;
  141.   struct 
  142.   {
  143.     __uint32_t msw;
  144.     __uint32_t lsw;
  145.   } parts;
  146. } ieee_double_shape_type;
  147. #endif
  148. #ifdef __IEEE_LITTLE_ENDIAN
  149. typedef union 
  150. {
  151.   double value;
  152.   struct 
  153.   {
  154.     __uint32_t lsw;
  155.     __uint32_t msw;
  156.   } parts;
  157. } ieee_double_shape_type;
  158. #endif
  159. /* Get two 32 bit ints from a double.  */
  160. #define EXTRACT_WORDS(ix0,ix1,d)
  161. do {
  162.   ieee_double_shape_type ew_u;
  163.   ew_u.value = (d);
  164.   (ix0) = ew_u.parts.msw;
  165.   (ix1) = ew_u.parts.lsw;
  166. } while (0)
  167. /* Get the more significant 32 bit int from a double.  */
  168. #define GET_HIGH_WORD(i,d)
  169. do {
  170.   ieee_double_shape_type gh_u;
  171.   gh_u.value = (d);
  172.   (i) = gh_u.parts.msw;
  173. } while (0)
  174. /* Get the less significant 32 bit int from a double.  */
  175. #define GET_LOW_WORD(i,d)
  176. do {
  177.   ieee_double_shape_type gl_u;
  178.   gl_u.value = (d);
  179.   (i) = gl_u.parts.lsw;
  180. } while (0)
  181. /* Set a double from two 32 bit ints.  */
  182. #define INSERT_WORDS(d,ix0,ix1)
  183. do {
  184.   ieee_double_shape_type iw_u;
  185.   iw_u.parts.msw = (ix0);
  186.   iw_u.parts.lsw = (ix1);
  187.   (d) = iw_u.value;
  188. } while (0)
  189. /* Set the more significant 32 bits of a double from an int.  */
  190. #define SET_HIGH_WORD(d,v)
  191. do {
  192.   ieee_double_shape_type sh_u;
  193.   sh_u.value = (d);
  194.   sh_u.parts.msw = (v);
  195.   (d) = sh_u.value;
  196. } while (0)
  197. /* Set the less significant 32 bits of a double from an int.  */
  198. #define SET_LOW_WORD(d,v)
  199. do {
  200.   ieee_double_shape_type sl_u;
  201.   sl_u.value = (d);
  202.   sl_u.parts.lsw = (v);
  203.   (d) = sl_u.value;
  204. } while (0)
  205. /* A union which permits us to convert between a float and a 32 bit
  206.    int.  */
  207. typedef union
  208. {
  209.   float value;
  210.   __uint32_t word;
  211. } ieee_float_shape_type;
  212. /* Get a 32 bit int from a float.  */
  213. #define GET_FLOAT_WORD(i,d)
  214. do {
  215.   ieee_float_shape_type gf_u;
  216.   gf_u.value = (d);
  217.   (i) = gf_u.word;
  218. } while (0)
  219. /* Set a float from a 32 bit int.  */
  220. #define SET_FLOAT_WORD(d,i)
  221. do {
  222.   ieee_float_shape_type sf_u;
  223.   sf_u.word = (i);
  224.   (d) = sf_u.value;
  225. } while (0)