fpmath.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*-
  2. * Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org>
  3. * Copyright (c) 2002 David Schultz <das@FreeBSD.ORG>
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. * SUCH DAMAGE.
  26. *
  27. * $FreeBSD: src/lib/libc/include/fpmath.h,v 1.4 2008/12/23 22:20:59 marcel Exp $
  28. */
  29. #ifndef _FPMATH_H_
  30. #define _FPMATH_H_
  31. #if defined(__aarch64__)
  32. #include "aarch64_fpmath.h"
  33. #elif defined(__i386__) || defined(__x86_64__)
  34. #ifdef __LP64__
  35. #include "amd64_fpmath.h"
  36. #else
  37. #include "i386_fpmath.h"
  38. #endif
  39. #elif defined(__powerpc__)
  40. #include "powerpc_fpmath.h"
  41. #endif
  42. /* Definitions provided directly by GCC and Clang. */
  43. #if !(defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__))
  44. #if defined(__GLIBC__)
  45. #include <features.h>
  46. #include <endian.h>
  47. #define __ORDER_LITTLE_ENDIAN__ __LITTLE_ENDIAN
  48. #define __ORDER_BIG_ENDIAN__ __BIG_ENDIAN
  49. #define __BYTE_ORDER__ __BYTE_ORDER
  50. #elif defined(__APPLE__)
  51. #include <machine/endian.h>
  52. #define __ORDER_LITTLE_ENDIAN__ LITTLE_ENDIAN
  53. #define __ORDER_BIG_ENDIAN__ BIG_ENDIAN
  54. #define __BYTE_ORDER__ BYTE_ORDER
  55. #elif defined(_WIN32)
  56. #define __ORDER_LITTLE_ENDIAN__ 1234
  57. #define __ORDER_BIG_ENDIAN__ 4321
  58. #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
  59. #endif
  60. #endif /* __BYTE_ORDER__, __ORDER_LITTLE_ENDIAN__ and __ORDER_BIG_ENDIAN__ */
  61. #ifndef __FLOAT_WORD_ORDER__
  62. #define __FLOAT_WORD_ORDER__ __BYTE_ORDER__
  63. #endif
  64. union IEEEf2bits {
  65. float f;
  66. struct {
  67. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  68. unsigned int man :23;
  69. unsigned int exp :8;
  70. unsigned int sign :1;
  71. #else /* _BIG_ENDIAN */
  72. unsigned int sign :1;
  73. unsigned int exp :8;
  74. unsigned int man :23;
  75. #endif
  76. } bits;
  77. };
  78. #define DBL_MANH_SIZE 20
  79. #define DBL_MANL_SIZE 32
  80. union IEEEd2bits {
  81. double d;
  82. struct {
  83. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  84. #if __FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__
  85. unsigned int manl :32;
  86. #endif
  87. unsigned int manh :20;
  88. unsigned int exp :11;
  89. unsigned int sign :1;
  90. #if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
  91. unsigned int manl :32;
  92. #endif
  93. #else /* _BIG_ENDIAN */
  94. unsigned int sign :1;
  95. unsigned int exp :11;
  96. unsigned int manh :20;
  97. unsigned int manl :32;
  98. #endif
  99. } bits;
  100. };
  101. #endif