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
1dc3aa80
Commit
1dc3aa80
authored
May 14, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Import nextafterf implementation from musl.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f041eeab
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
13 deletions
+37
-13
math.c
dlls/msvcrt/math.c
+37
-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 @
1dc3aa80
...
...
@@ -234,11 +234,45 @@ float CDECL _copysignf( float x, float y )
/*********************************************************************
* _nextafterf (MSVCRT.@)
*
* Copied from musl: src/math/nextafterf.c
*/
float
CDECL
_nextafterf
(
float
num
,
float
next
)
float
CDECL
_nextafterf
(
float
x
,
float
y
)
{
if
(
!
isfinite
(
num
)
||
!
isfinite
(
next
))
*
_errno
()
=
EDOM
;
return
unix_funcs
->
nextafterf
(
num
,
next
);
unsigned
int
ix
=
*
(
unsigned
int
*
)
&
x
;
unsigned
int
iy
=
*
(
unsigned
int
*
)
&
y
;
unsigned
int
ax
,
ay
,
e
;
if
(
isnan
(
x
)
||
isnan
(
y
))
return
x
+
y
;
if
(
x
==
y
)
{
if
(
_fpclassf
(
y
)
&
(
_FPCLASS_ND
|
_FPCLASS_PD
|
_FPCLASS_NZ
|
_FPCLASS_PZ
))
*
_errno
()
=
ERANGE
;
return
y
;
}
ax
=
ix
&
0x7fffffff
;
ay
=
iy
&
0x7fffffff
;
if
(
ax
==
0
)
{
if
(
ay
==
0
)
return
y
;
ix
=
(
iy
&
0x80000000
)
|
1
;
}
else
if
(
ax
>
ay
||
((
ix
^
iy
)
&
0x80000000
))
ix
--
;
else
ix
++
;
e
=
ix
&
0x7f800000
;
/* raise overflow if ix is infinite and x is finite */
if
(
e
==
0x7f800000
)
{
fp_barrierf
(
x
+
x
);
*
_errno
()
=
ERANGE
;
}
/* raise underflow if ix is subnormal or zero */
y
=
*
(
float
*
)
&
ix
;
if
(
e
==
0
)
{
fp_barrierf
(
x
*
x
+
y
*
y
);
*
_errno
()
=
ERANGE
;
}
return
y
;
}
/*********************************************************************
...
...
dlls/msvcrt/unixlib.c
View file @
1dc3aa80
...
...
@@ -548,14 +548,6 @@ static float CDECL unix_modff( float x, float *iptr )
}
/*********************************************************************
* nextafterf
*/
static
float
CDECL
unix_nextafterf
(
float
num
,
float
next
)
{
return
nextafterf
(
num
,
next
);
}
/*********************************************************************
* nexttoward
*/
static
double
CDECL
unix_nexttoward
(
double
num
,
double
next
)
...
...
@@ -814,7 +806,6 @@ static const struct unix_funcs funcs =
unix_logbf
,
unix_modf
,
unix_modff
,
unix_nextafterf
,
unix_nexttoward
,
unix_nexttowardf
,
unix_pow
,
...
...
dlls/msvcrt/unixlib.h
View file @
1dc3aa80
...
...
@@ -72,7 +72,6 @@ struct unix_funcs
float
(
CDECL
*
logbf
)(
float
x
);
double
(
CDECL
*
modf
)(
double
x
,
double
*
iptr
);
float
(
CDECL
*
modff
)(
float
x
,
float
*
iptr
);
float
(
CDECL
*
nextafterf
)(
float
x
,
float
y
);
double
(
CDECL
*
nexttoward
)(
double
x
,
double
y
);
float
(
CDECL
*
nexttowardf
)(
float
x
,
double
y
);
double
(
CDECL
*
pow
)(
double
x
,
double
y
);
...
...
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