double.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.double.h 1.5 05/17/01 18:14:22 cort
  3.  */
  4. /*
  5.  * Definitions for IEEE Double Precision
  6.  */
  7. #if _FP_W_TYPE_SIZE < 32
  8. #error "Here's a nickel kid.  Go buy yourself a real computer."
  9. #endif
  10. #if _FP_W_TYPE_SIZE < 64
  11. #define _FP_FRACTBITS_D (2 * _FP_W_TYPE_SIZE)
  12. #else
  13. #define _FP_FRACTBITS_D _FP_W_TYPE_SIZE
  14. #endif
  15. #define _FP_FRACBITS_D 53
  16. #define _FP_FRACXBITS_D (_FP_FRACTBITS_D - _FP_FRACBITS_D)
  17. #define _FP_WFRACBITS_D (_FP_WORKBITS + _FP_FRACBITS_D)
  18. #define _FP_WFRACXBITS_D (_FP_FRACTBITS_D - _FP_WFRACBITS_D)
  19. #define _FP_EXPBITS_D 11
  20. #define _FP_EXPBIAS_D 1023
  21. #define _FP_EXPMAX_D 2047
  22. #define _FP_QNANBIT_D
  23. ((_FP_W_TYPE)1 << ((_FP_FRACBITS_D-2) % _FP_W_TYPE_SIZE))
  24. #define _FP_IMPLBIT_D
  25. ((_FP_W_TYPE)1 << ((_FP_FRACBITS_D-1) % _FP_W_TYPE_SIZE))
  26. #define _FP_OVERFLOW_D
  27. ((_FP_W_TYPE)1 << (_FP_WFRACBITS_D % _FP_W_TYPE_SIZE))
  28. #if _FP_W_TYPE_SIZE < 64
  29. union _FP_UNION_D
  30. {
  31.   double flt;
  32.   struct {
  33. #if __BYTE_ORDER == __BIG_ENDIAN
  34.     unsigned sign  : 1;
  35.     unsigned exp   : _FP_EXPBITS_D;
  36.     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
  37.     unsigned frac0 : _FP_W_TYPE_SIZE;
  38. #else
  39.     unsigned frac0 : _FP_W_TYPE_SIZE;
  40.     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
  41.     unsigned exp   : _FP_EXPBITS_D;
  42.     unsigned sign  : 1;
  43. #endif
  44.   } bits __attribute__((packed));
  45. };
  46. #define FP_DECL_D(X) _FP_DECL(2,X)
  47. #define FP_UNPACK_RAW_D(X,val) _FP_UNPACK_RAW_2(D,X,val)
  48. #define FP_PACK_RAW_D(val,X) _FP_PACK_RAW_2(D,val,X)
  49. #define FP_UNPACK_D(X,val)
  50.   do {
  51.     _FP_UNPACK_RAW_2(D,X,val);
  52.     _FP_UNPACK_CANONICAL(D,2,X);
  53.   } while (0)
  54. #define FP_PACK_D(val,X)
  55.   do {
  56.     _FP_PACK_CANONICAL(D,2,X);
  57.     _FP_PACK_RAW_2(D,val,X);
  58.   } while (0)
  59. #define FP_NEG_D(R,X) _FP_NEG(D,2,R,X)
  60. #define FP_ADD_D(R,X,Y) _FP_ADD(D,2,R,X,Y)
  61. #define FP_SUB_D(R,X,Y) _FP_SUB(D,2,R,X,Y)
  62. #define FP_MUL_D(R,X,Y) _FP_MUL(D,2,R,X,Y)
  63. #define FP_DIV_D(R,X,Y) _FP_DIV(D,2,R,X,Y)
  64. #define FP_SQRT_D(R,X) _FP_SQRT(D,2,R,X)
  65. #define FP_CMP_D(r,X,Y,un) _FP_CMP(D,2,r,X,Y,un)
  66. #define FP_CMP_EQ_D(r,X,Y) _FP_CMP_EQ(D,2,r,X,Y)
  67. #define FP_TO_INT_D(r,X,rsz,rsg)  _FP_TO_INT(D,2,r,X,rsz,rsg)
  68. #define FP_FROM_INT_D(X,r,rs,rt)  _FP_FROM_INT(D,2,X,r,rs,rt)
  69. #else
  70. union _FP_UNION_D
  71. {
  72.   double flt;
  73.   struct {
  74. #if __BYTE_ORDER == __BIG_ENDIAN
  75.     unsigned sign : 1;
  76.     unsigned exp  : _FP_EXPBITS_D;
  77.     unsigned long frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
  78. #else
  79.     unsigned long frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
  80.     unsigned exp  : _FP_EXPBITS_D;
  81.     unsigned sign : 1;
  82. #endif
  83.   } bits __attribute__((packed));
  84. };
  85. #define FP_DECL_D(X) _FP_DECL(1,X)
  86. #define FP_UNPACK_RAW_D(X,val) _FP_UNPACK_RAW_1(D,X,val)
  87. #define FP_PACK_RAW_D(val,X) _FP_PACK_RAW_1(D,val,X)
  88. #define FP_UNPACK_D(X,val)
  89.   do {
  90.     _FP_UNPACK_RAW_1(D,X,val);
  91.     _FP_UNPACK_CANONICAL(D,1,X);
  92.   } while (0)
  93. #define FP_PACK_D(val,X)
  94.   do {
  95.     _FP_PACK_CANONICAL(D,1,X);
  96.     _FP_PACK_RAW_1(D,val,X);
  97.   } while (0)
  98. #define FP_NEG_D(R,X) _FP_NEG(D,1,R,X)
  99. #define FP_ADD_D(R,X,Y) _FP_ADD(D,1,R,X,Y)
  100. #define FP_SUB_D(R,X,Y) _FP_SUB(D,1,R,X,Y)
  101. #define FP_MUL_D(R,X,Y) _FP_MUL(D,1,R,X,Y)
  102. #define FP_DIV_D(R,X,Y) _FP_DIV(D,1,R,X,Y)
  103. #define FP_SQRT_D(R,X) _FP_SQRT(D,1,R,X)
  104. /* The implementation of _FP_MUL_D and _FP_DIV_D should be chosen by
  105.    the target machine.  */
  106. #define FP_CMP_D(r,X,Y,un) _FP_CMP(D,1,r,X,Y,un)
  107. #define FP_CMP_EQ_D(r,X,Y) _FP_CMP_EQ(D,1,r,X,Y)
  108. #define FP_TO_INT_D(r,X,rsz,rsg)  _FP_TO_INT(D,1,r,X,rsz,rsg)
  109. #define FP_FROM_INT_D(X,r,rs,rt)  _FP_FROM_INT(D,1,X,r,rs,rt)
  110. #endif /* W_TYPE_SIZE < 64 */