Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
14a8e16a
Commit
14a8e16a
authored
May 23, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Import sinf implementation from musl.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8321ce14
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
13 deletions
+56
-13
math.c
dlls/msvcrt/math.c
+56
-3
unixlib.c
dlls/msvcrt/unixlib.c
+0
-9
unixlib.h
dlls/msvcrt/unixlib.h
+0
-1
No files found.
dlls/msvcrt/math.c
View file @
14a8e16a
...
...
@@ -1121,12 +1121,65 @@ float CDECL powf( float x, float y )
/*********************************************************************
* sinf (MSVCRT.@)
*
* Copied from musl: src/math/sinf.c
*/
float
CDECL
sinf
(
float
x
)
{
float
ret
=
unix_funcs
->
sinf
(
x
);
if
(
!
isfinite
(
x
))
return
math_error
(
_DOMAIN
,
"sinf"
,
x
,
0
,
ret
);
return
ret
;
static
const
double
s1pio2
=
1
*
M_PI_2
,
s2pio2
=
2
*
M_PI_2
,
s3pio2
=
3
*
M_PI_2
,
s4pio2
=
4
*
M_PI_2
;
double
y
;
UINT32
ix
;
int
n
,
sign
;
ix
=
*
(
UINT32
*
)
&
x
;
sign
=
ix
>>
31
;
ix
&=
0x7fffffff
;
if
(
ix
<=
0x3f490fda
)
{
/* |x| ~<= pi/4 */
if
(
ix
<
0x39800000
)
{
/* |x| < 2**-12 */
/* raise inexact if x!=0 and underflow if subnormal */
fp_barrierf
(
ix
<
0x00800000
?
x
/
0x1
p120f
:
x
+
0x1
p120f
);
return
x
;
}
return
__sindf
(
x
);
}
if
(
ix
<=
0x407b53d1
)
{
/* |x| ~<= 5*pi/4 */
if
(
ix
<=
0x4016cbe3
)
{
/* |x| ~<= 3pi/4 */
if
(
sign
)
return
-
__cosdf
(
x
+
s1pio2
);
else
return
__cosdf
(
x
-
s1pio2
);
}
return
__sindf
(
sign
?
-
(
x
+
s2pio2
)
:
-
(
x
-
s2pio2
));
}
if
(
ix
<=
0x40e231d5
)
{
/* |x| ~<= 9*pi/4 */
if
(
ix
<=
0x40afeddf
)
{
/* |x| ~<= 7*pi/4 */
if
(
sign
)
return
__cosdf
(
x
+
s3pio2
);
else
return
-
__cosdf
(
x
-
s3pio2
);
}
return
__sindf
(
sign
?
x
+
s4pio2
:
x
-
s4pio2
);
}
/* sin(Inf or NaN) is NaN */
if
(
isinf
(
x
))
return
math_error
(
_DOMAIN
,
"sinf"
,
x
,
0
,
x
-
x
);
if
(
ix
>=
0x7f800000
)
return
x
-
x
;
/* general argument reduction needed */
n
=
__rem_pio2f
(
x
,
&
y
);
switch
(
n
&
3
)
{
case
0
:
return
__sindf
(
y
);
case
1
:
return
__cosdf
(
y
);
case
2
:
return
__sindf
(
-
y
);
default:
return
-
__cosdf
(
y
);
}
}
/*********************************************************************
...
...
dlls/msvcrt/unixlib.c
View file @
14a8e16a
...
...
@@ -388,14 +388,6 @@ static float CDECL unix_powf( float x, float y )
}
/*********************************************************************
* sinf
*/
static
float
CDECL
unix_sinf
(
float
x
)
{
return
sinf
(
x
);
}
/*********************************************************************
* sinh
*/
static
double
CDECL
unix_sinh
(
double
x
)
...
...
@@ -496,7 +488,6 @@ static const struct unix_funcs funcs =
unix_log2f
,
unix_pow
,
unix_powf
,
unix_sinf
,
unix_sinh
,
unix_sinhf
,
unix_tanf
,
...
...
dlls/msvcrt/unixlib.h
View file @
14a8e16a
...
...
@@ -56,7 +56,6 @@ struct unix_funcs
float
(
CDECL
*
log2f
)(
float
x
);
double
(
CDECL
*
pow
)(
double
x
,
double
y
);
float
(
CDECL
*
powf
)(
float
x
,
float
y
);
float
(
CDECL
*
sinf
)(
float
x
);
double
(
CDECL
*
sinh
)(
double
x
);
float
(
CDECL
*
sinhf
)(
float
x
);
float
(
CDECL
*
tanf
)(
float
x
);
...
...
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