master
1/*
2 This Software is provided under the Zope Public License (ZPL) Version 2.1.
3
4 Copyright (c) 2009, 2010 by the mingw-w64 project
5
6 See the AUTHORS file for the list of contributors to the mingw-w64 project.
7
8 This license has been certified as open source. It has also been designated
9 as GPL compatible by the Free Software Foundation (FSF).
10
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions are met:
13
14 1. Redistributions in source code must retain the accompanying copyright
15 notice, this list of conditions, and the following disclaimer.
16 2. Redistributions in binary form must reproduce the accompanying
17 copyright notice, this list of conditions, and the following disclaimer
18 in the documentation and/or other materials provided with the
19 distribution.
20 3. Names of the copyright holders must not be used to endorse or promote
21 products derived from this software without prior written permission
22 from the copyright holders.
23 4. The right to distribute this software or to use it for any purpose does
24 not give you the right to use Servicemarks (sm) or Trademarks (tm) of
25 the copyright holders. Use of them is covered by separate agreement
26 with the copyright holders.
27 5. If any files are modified, you must cause the modified files to carry
28 prominent notices stating that you changed the files and the date of
29 any change.
30
31 Disclaimer
32
33 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
34 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
36 EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
37 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
38 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
39 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
40 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
41 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
42 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*/
44
45#include "../complex/complex_internal.h"
46#include <errno.h>
47
48static long double c0 = 1.44268798828125L; // INV_LN2
49static long double c1 = 7.05260771340735992468e-6L;
50
51static long double
52__expl_internal (long double x)
53{
54 long double res = 0.0L;
55 asm volatile (
56 "fldl2e\n\t" /* 1 log2(e) */
57 "fmul %%st(1),%%st\n\t" /* 1 x log2(e) */
58
59#ifdef __x86_64__
60 "subq $8, %%rsp\n"
61 "fnstcw 4(%%rsp)\n"
62 "movzwl 4(%%rsp), %%eax\n"
63 "orb $12, %%ah\n"
64 "movw %%ax, (%%rsp)\n"
65 "fldcw (%%rsp)\n"
66 "frndint\n\t" /* 1 i */
67 "fld %%st(1)\n\t" /* 2 x */
68 "frndint\n\t" /* 2 xi */
69 "fldcw 4(%%rsp)\n"
70 "addq $8, %%rsp\n"
71#else
72 "push %%eax\n\tsubl $8, %%esp\n"
73 "fnstcw 4(%%esp)\n"
74 "movzwl 4(%%esp), %%eax\n"
75 "orb $12, %%ah\n"
76 "movw %%ax, (%%esp)\n"
77 "fldcw (%%esp)\n"
78 "frndint\n\t" /* 1 i */
79 "fld %%st(1)\n\t" /* 2 x */
80 "frndint\n\t" /* 2 xi */
81 "fldcw 4(%%esp)\n"
82 "addl $8, %%esp\n\tpop %%eax\n"
83#endif
84 "fld %%st(1)\n\t" /* 3 i */
85 "fldt %2\n\t" /* 4 c0 */
86 "fld %%st(2)\n\t" /* 5 xi */
87 "fmul %%st(1),%%st\n\t" /* 5 c0 xi */
88 "fsubp %%st,%%st(2)\n\t" /* 4 f = c0 xi - i */
89 "fld %%st(4)\n\t" /* 5 x */
90 "fsub %%st(3),%%st\n\t" /* 5 xf = x - xi */
91 "fmulp %%st,%%st(1)\n\t" /* 4 c0 xf */
92 "faddp %%st,%%st(1)\n\t" /* 3 f = f + c0 xf */
93 "fldt %3\n\t" /* 4 */
94 "fmul %%st(4),%%st\n\t" /* 4 c1 * x */
95 "faddp %%st,%%st(1)\n\t" /* 3 f = f + c1 * x */
96 "f2xm1\n\t" /* 3 2^(fract(x * log2(e))) - 1 */
97 "fld1\n\t" /* 4 1.0 */
98 "faddp\n\t" /* 3 2^(fract(x * log2(e))) */
99 "fstp %%st(1)\n\t" /* 2 */
100 "fscale\n\t" /* 2 scale factor is st(1); e^x */
101 "fstp %%st(1)\n\t" /* 1 */
102 "fstp %%st(1)\n\t" /* 0 */
103 : "=t" (res) : "0" (x), "m" (c0), "m" (c1) : "ax", "dx");
104 return res;
105}
106
107__FLT_TYPE
108__FLT_ABI(exp) (__FLT_TYPE x)
109{
110 int x_class = fpclassify (x);
111 if (x_class == FP_NAN)
112 {
113 __FLT_RPT_DOMAIN ("exp", x, 0.0, x);
114 return x;
115 }
116 else if (x_class == FP_INFINITE)
117 {
118 __FLT_TYPE r = (signbit (x) ? __FLT_CST (0.0) : __FLT_HUGE_VAL);
119 __FLT_RPT_ERANGE ("exp", x, 0.0, r, signbit (x));
120 return r;
121 }
122 else if (x_class == FP_ZERO)
123 {
124 return __FLT_CST (1.0);
125 }
126 else if (x > __FLT_MAXLOG)
127 {
128 __FLT_RPT_ERANGE ("exp", x, 0.0, __FLT_HUGE_VAL, 1);
129 return __FLT_HUGE_VAL;
130 }
131 else if (x < __FLT_MINLOG)
132 {
133 return __FLT_CST(0.0);
134 }
135 else
136 return (__FLT_TYPE) __expl_internal ((long double) x);
137}