s_nan.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*-
  2. * Copyright (c) 2007 David Schultz
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * $FreeBSD: src/lib/msun/src/s_nan.c,v 1.2 2007/12/18 23:46:32 das Exp $
  27. */
  28. //VBS
  29. //#include <sys/endian.h>
  30. #include <ctype.h>
  31. #include <float.h>
  32. #include <openlibm_math.h>
  33. #include <stdint.h>
  34. #include <string.h> //for memset
  35. #include "math_private.h"
  36. #if !defined(__APPLE__) && !defined(__FreeBSD__)
  37. static __inline int digittoint(int c) {
  38. if ('0' <= c && c <= '9')
  39. return (c - '0');
  40. else if ('A' <= c && c <= 'F')
  41. return (c - 'A' + 10);
  42. else if ('a' <= c && c <= 'f')
  43. return (c - 'a' + 10);
  44. return 0;
  45. }
  46. #endif
  47. /*
  48. * Scan a string of hexadecimal digits (the format nan(3) expects) and
  49. * make a bit array (using the local endianness). We stop when we
  50. * encounter an invalid character, NUL, etc. If we overflow, we do
  51. * the same as gcc's __builtin_nan(), namely, discard the high order bits.
  52. *
  53. * The format this routine accepts needs to be compatible with what is used
  54. * in contrib/gdtoa/hexnan.c (for strtod/scanf) and what is used in
  55. * __builtin_nan(). In fact, we're only 100% compatible for strings we
  56. * consider valid, so we might be violating the C standard. But it's
  57. * impossible to use nan(3) portably anyway, so this seems good enough.
  58. */
  59. OLM_DLLEXPORT void
  60. __scan_nan(u_int32_t *words, int num_words, const char *s)
  61. {
  62. int si; /* index into s */
  63. int bitpos; /* index into words (in bits) */
  64. memset(words, 0, num_words * sizeof(u_int32_t));
  65. /* Allow a leading '0x'. (It's expected, but redundant.) */
  66. if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
  67. s += 2;
  68. /* Scan forwards in the string, looking for the end of the sequence. */
  69. for (si = 0; isxdigit(s[si]); si++)
  70. ;
  71. /* Scan backwards, filling in the bits in words[] as we go. */
  72. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  73. for (bitpos = 0; bitpos < 32 * num_words; bitpos += 4) {
  74. #else
  75. for (bitpos = 32 * num_words - 4; bitpos >= 0; bitpos -= 4) {
  76. #endif
  77. if (--si < 0)
  78. break;
  79. words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
  80. }
  81. }
  82. OLM_DLLEXPORT double
  83. nan(const char *s)
  84. {
  85. union {
  86. double d;
  87. u_int32_t bits[2];
  88. } u;
  89. __scan_nan(u.bits, 2, s);
  90. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  91. u.bits[1] |= 0x7ff80000;
  92. #else
  93. u.bits[0] |= 0x7ff80000;
  94. #endif
  95. return (u.d);
  96. }
  97. OLM_DLLEXPORT float
  98. nanf(const char *s)
  99. {
  100. union {
  101. float f;
  102. u_int32_t bits[1];
  103. } u;
  104. __scan_nan(u.bits, 1, s);
  105. u.bits[0] |= 0x7fc00000;
  106. return (u.f);
  107. }
  108. #if (LDBL_MANT_DIG == 53)
  109. __weak_reference(nan, nanl);
  110. #endif