1 /*
2 * ====================================================
3 * Copyright (C) 1998, 2002 by Red Hat Inc. All rights reserved.
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software is freely granted, provided that this notice
7 * is preserved.
8 * ====================================================
9 */
10
11 #if !defined(_SOFT_FLOAT)
12
13 /*
14 Fast version of exp using Intel float instructions.
15
16 float _f_expf (float x);
17
18 Function computes e ** x. The following special cases exist:
19 1. if x is 0.0 ==> return 1.0
20 2. if x is infinity ==> return infinity
21 3. if x is -infinity ==> return 0.0
22 4. if x is NaN ==> return x
23 There is no error checking or setting of errno.
24 */
25
26
27 #include <math.h>
28 #include "f_math.h"
29
_f_expf(float x)30 float _f_expf (float x)
31 {
32 if (check_finitef(x))
33 {
34 float result;
35 __asm__("fldl2e; fmulp; fld %%st; frndint; fsub %%st,%%st(1); fxch;" \
36 "fchs; f2xm1; fld1; faddp; fxch; fld1; fscale; fstp %%st(1); fmulp" :
37 "=t"(result) : "0"(x));
38 return result;
39 }
40 else if (x == -infinityf())
41 return 0.0;
42
43 return x;
44 }
45
46 #endif
47