source: trunk/libs/newlib/src/newlib/libc/stdlib/strtold.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 3.2 KB
Line 
1/*
2(C) Copyright IBM Corp. 2009
3
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9* Redistributions of source code must retain the above copyright notice,
10this list of conditions and the following disclaimer.
11* Redistributions in binary form must reproduce the above copyright
12notice, this list of conditions and the following disclaimer in the
13documentation and/or other materials provided with the distribution.
14* Neither the name of IBM nor the names of its contributors may be
15used to endorse or promote products derived from this software without
16specific prior written permission.
17
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28POSSIBILITY OF SUCH DAMAGE.
29*/
30
31#include <stdlib.h>
32#include "local.h"
33#include "mprec.h"
34#undef FLT_ROUNDS
35
36#ifdef _HAVE_LONG_DOUBLE
37
38/* Intel MCU has no x87 floating point unit */
39#if (defined (__x86_64__) || defined (__i386__)) && !defined (__iamcu__)
40static const int map[] = {
41        1,      /* round to nearest */
42        3,      /* round to zero */
43        2,      /* round to negative infinity */
44        0       /* round to positive infinity */
45};
46
47int
48__flt_rounds(void)
49{
50        int x;
51
52        /* Assume that the x87 and the SSE unit agree on the rounding mode. */
53        __asm("fnstcw %0" : "=m" (x));
54        return (map[(x >> 10) & 0x03]);
55}
56#define FLT_ROUNDS __flt_rounds()
57#else
58#define FLT_ROUNDS 0
59#endif
60
61long double
62_strtold_r (struct _reent *ptr, const char *__restrict s00,
63            char **__restrict se)
64{
65#ifdef _LDBL_EQ_DBL
66  /* On platforms where long double is as wide as double.  */
67  return _strtod_l (ptr, s00, se, __get_current_locale ());
68#else
69  long double result;
70
71  _strtorx_l (ptr, s00, se, FLT_ROUNDS, &result, __get_current_locale ());
72  return result;
73#endif
74}
75
76long double
77strtold_l (const char *__restrict s00, char **__restrict se, locale_t loc)
78{
79#ifdef _LDBL_EQ_DBL
80  /* On platforms where long double is as wide as double.  */
81  return _strtod_l (_REENT, s00, se, loc);
82#else
83  long double result;
84
85  _strtorx_l (_REENT, s00, se, FLT_ROUNDS, &result, loc);
86  return result;
87#endif
88}
89
90long double
91strtold (const char *__restrict s00, char **__restrict se)
92{
93#ifdef _LDBL_EQ_DBL
94  /* On platforms where long double is as wide as double.  */
95  return _strtod_l (_REENT, s00, se, __get_current_locale ());
96#else
97  long double result;
98
99  _strtorx_l (_REENT, s00, se, FLT_ROUNDS, &result, __get_current_locale ());
100  return result;
101#endif
102}
103
104#endif /* _HAVE_LONG_DOUBLE */
105
Note: See TracBrowser for help on using the repository browser.