ieee754.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1992, 1995, 1996, 1998 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    The GNU C Library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Lesser General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2.1 of the License, or (at your option) any later version.
  7.    The GNU C Library is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Lesser General Public License for more details.
  11.    You should have received a copy of the GNU Lesser General Public
  12.    License along with the GNU C Library; if not, write to the Free
  13.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14.    02111-1307 USA.  */
  15. #ifndef _IEEE754_H
  16. #define _IEEE754_H 1
  17. #include <features.h>
  18. #include <endian.h>
  19. __BEGIN_DECLS
  20. union ieee754_float
  21.   {
  22.     float f;
  23.     /* This is the IEEE 754 single-precision format.  */
  24.     struct
  25.       {
  26. unsigned int mantissa:23;
  27. unsigned int exponent:8;
  28. unsigned int negative:1;
  29.       } ieee;
  30.     /* This format makes it easier to see if a NaN is a signalling NaN.  */
  31.     struct
  32.       {
  33. unsigned int mantissa:22;
  34. unsigned int quiet_nan:1;
  35. unsigned int exponent:8;
  36. unsigned int negative:1;
  37.       } ieee_nan;
  38.   };
  39. #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent.  */
  40. union ieee754_double
  41.   {
  42.     double d;
  43.     /* This is the IEEE 754 double-precision format.  */
  44.     struct
  45.       {
  46. unsigned int mantissa0:20;
  47. unsigned int exponent:11;
  48. unsigned int negative:1;
  49. unsigned int mantissa1:32;
  50.       } ieee;
  51.     /* This format makes it easier to see if a NaN is a signalling NaN.  */
  52.     struct
  53.       {
  54. unsigned int mantissa0:19;
  55. unsigned int quiet_nan:1;
  56. unsigned int exponent:11;
  57. unsigned int negative:1;
  58. unsigned int mantissa1:32;
  59.       } ieee_nan;
  60.   };
  61. #define IEEE754_DOUBLE_BIAS 0x3ff /* Added to exponent.  */
  62. /* The following two structures are correct for `new' floating point systems but
  63.    wrong for the old FPPC.  The only solution seems to be to avoid their use on
  64.    old hardware.  */
  65. union ieee854_long_double
  66.   {
  67.     long double d;
  68.     /* This is the IEEE 854 double-extended-precision format.  */
  69.     struct
  70.       {
  71. unsigned int exponent:15;
  72. unsigned int empty:16;
  73. unsigned int negative:1;
  74. unsigned int mantissa1:32;
  75. unsigned int mantissa0:32;
  76.       } ieee;
  77.     /* This is for NaNs in the IEEE 854 double-extended-precision format.  */
  78.     struct
  79.       {
  80. unsigned int exponent:15;
  81. unsigned int empty:16;
  82. unsigned int negative:1;
  83. unsigned int mantissa1:32;
  84. unsigned int mantissa0:30;
  85. unsigned int quiet_nan:1;
  86. unsigned int one:1;
  87.       } ieee_nan;
  88.   };
  89. #define IEEE854_LONG_DOUBLE_BIAS 0x3fff
  90. __END_DECLS
  91. #endif /* ieee754.h */