Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
7d0d7690
Commit
7d0d7690
authored
May 29, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 31, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Import expm1f implementation from musl.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5b025c71
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
84 additions
and
22 deletions
+84
-22
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
math.c
dlls/msvcrt/math.c
+84
-3
unixlib.c
dlls/msvcrt/unixlib.c
+0
-13
unixlib.h
dlls/msvcrt/unixlib.h
+0
-1
config.h.in
include/config.h.in
+0
-3
No files found.
configure
View file @
7d0d7690
...
...
@@ -19618,7 +19618,6 @@ fi
for
ac_func
in
\
exp2
\
exp2f
\
expm1f
\
fma
\
fmaf
\
lgamma
\
...
...
configure.ac
View file @
7d0d7690
...
...
@@ -2658,7 +2658,6 @@ fi
AC_CHECK_FUNCS(\
exp2 \
exp2f \
expm1f \
fma \
fmaf \
lgamma \
...
...
dlls/msvcrt/math.c
View file @
7d0d7690
...
...
@@ -5856,12 +5856,93 @@ double CDECL expm1(double x)
/*********************************************************************
* expm1f (MSVCR120.@)
*
* Copied from musl: src/math/expm1f.c
*/
float
CDECL
expm1f
(
float
x
)
{
float
ret
=
unix_funcs
->
expm1f
(
x
);
if
(
isfinite
(
x
)
&&
!
isfinite
(
ret
))
*
_errno
()
=
ERANGE
;
return
ret
;
static
const
float
ln2_hi
=
6.9313812256e-01
,
ln2_lo
=
9.0580006145e-06
,
invln2
=
1.4426950216e+00
,
Q1
=
-
3.3333212137e-2
,
Q2
=
1.5807170421e-3
;
float
y
,
hi
,
lo
,
c
,
t
,
e
,
hxs
,
hfx
,
r1
,
twopk
;
union
{
float
f
;
UINT32
i
;}
u
=
{
x
};
UINT32
hx
=
u
.
i
&
0x7fffffff
;
int
k
,
sign
=
u
.
i
>>
31
;
/* filter out huge and non-finite argument */
if
(
hx
>=
0x4195b844
)
{
/* if |x|>=27*ln2 */
if
(
hx
>=
0x7f800000
)
/* NaN */
return
u
.
i
==
0xff800000
?
-
1
:
x
;
if
(
sign
)
return
math_error
(
_UNDERFLOW
,
"exp"
,
x
,
0
,
-
1
);
if
(
hx
>
0x42b17217
)
/* x > log(FLT_MAX) */
return
math_error
(
_OVERFLOW
,
"exp"
,
x
,
0
,
fp_barrierf
(
x
*
FLT_MAX
));
}
/* argument reduction */
if
(
hx
>
0x3eb17218
)
{
/* if |x| > 0.5 ln2 */
if
(
hx
<
0x3F851592
)
{
/* and |x| < 1.5 ln2 */
if
(
!
sign
)
{
hi
=
x
-
ln2_hi
;
lo
=
ln2_lo
;
k
=
1
;
}
else
{
hi
=
x
+
ln2_hi
;
lo
=
-
ln2_lo
;
k
=
-
1
;
}
}
else
{
k
=
invln2
*
x
+
(
sign
?
-
0
.
5
f
:
0
.
5
f
);
t
=
k
;
hi
=
x
-
t
*
ln2_hi
;
/* t*ln2_hi is exact here */
lo
=
t
*
ln2_lo
;
}
x
=
hi
-
lo
;
c
=
(
hi
-
x
)
-
lo
;
}
else
if
(
hx
<
0x33000000
)
{
/* when |x|<2**-25, return x */
if
(
hx
<
0x00800000
)
fp_barrierf
(
x
*
x
);
return
x
;
}
else
k
=
0
;
/* x is now in primary range */
hfx
=
0
.
5
f
*
x
;
hxs
=
x
*
hfx
;
r1
=
1
.
0
f
+
hxs
*
(
Q1
+
hxs
*
Q2
);
t
=
3
.
0
f
-
r1
*
hfx
;
e
=
hxs
*
((
r1
-
t
)
/
(
6
.
0
f
-
x
*
t
));
if
(
k
==
0
)
/* c is 0 */
return
x
-
(
x
*
e
-
hxs
);
e
=
x
*
(
e
-
c
)
-
c
;
e
-=
hxs
;
/* exp(x) ~ 2^k (x_reduced - e + 1) */
if
(
k
==
-
1
)
return
0
.
5
f
*
(
x
-
e
)
-
0
.
5
f
;
if
(
k
==
1
)
{
if
(
x
<
-
0
.
25
f
)
return
-
2
.
0
f
*
(
e
-
(
x
+
0
.
5
f
));
return
1
.
0
f
+
2
.
0
f
*
(
x
-
e
);
}
u
.
i
=
(
0x7f
+
k
)
<<
23
;
/* 2^k */
twopk
=
u
.
f
;
if
(
k
<
0
||
k
>
56
)
{
/* suffice to return exp(x)-1 */
y
=
x
-
e
+
1
.
0
f
;
if
(
k
==
128
)
y
=
y
*
2
.
0
f
*
0x1
p127f
;
else
y
=
y
*
twopk
;
return
y
-
1
.
0
f
;
}
u
.
i
=
(
0x7f
-
k
)
<<
23
;
/* 2^-k */
if
(
k
<
23
)
y
=
(
x
-
e
+
(
1
-
u
.
f
))
*
twopk
;
else
y
=
(
x
-
(
e
+
u
.
f
)
+
1
)
*
twopk
;
return
y
;
}
/*********************************************************************
...
...
dlls/msvcrt/unixlib.c
View file @
7d0d7690
...
...
@@ -99,18 +99,6 @@ static float CDECL unix_exp2f( float x )
}
/*********************************************************************
* expm1f
*/
static
float
CDECL
unix_expm1f
(
float
x
)
{
#ifdef HAVE_EXPM1F
return
expm1f
(
x
);
#else
return
exp
(
x
)
-
1
;
#endif
}
/*********************************************************************
* fma
*/
static
double
CDECL
unix_fma
(
double
x
,
double
y
,
double
z
)
...
...
@@ -362,7 +350,6 @@ static const struct unix_funcs funcs =
unix_expf
,
unix_exp2
,
unix_exp2f
,
unix_expm1f
,
unix_fma
,
unix_fmaf
,
unix_frexp
,
...
...
dlls/msvcrt/unixlib.h
View file @
7d0d7690
...
...
@@ -29,7 +29,6 @@ struct unix_funcs
float
(
CDECL
*
expf
)(
float
x
);
double
(
CDECL
*
exp2
)(
double
x
);
float
(
CDECL
*
exp2f
)(
float
x
);
float
(
CDECL
*
expm1f
)(
float
x
);
double
(
CDECL
*
fma
)(
double
x
,
double
y
,
double
z
);
float
(
CDECL
*
fmaf
)(
float
x
,
float
y
,
float
z
);
double
(
CDECL
*
frexp
)(
double
x
,
int
*
exp
);
...
...
include/config.h.in
View file @
7d0d7690
...
...
@@ -98,9 +98,6 @@
/* Define to 1 if you have the `exp2f' function. */
#undef HAVE_EXP2F
/* Define to 1 if you have the `expm1f' function. */
#undef HAVE_EXPM1F
/* Define to 1 if you have the `F3DAudioInitialize8' function. */
#undef HAVE_F3DAUDIOINITIALIZE8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment