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
8a2f7c73
Commit
8a2f7c73
authored
May 18, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 18, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Import remquof implementation from musl.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c7fa4673
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
77 additions
and
23 deletions
+77
-23
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
math.c
dlls/msvcrt/math.c
+77
-3
unixlib.c
dlls/msvcrt/unixlib.c
+0
-14
unixlib.h
dlls/msvcrt/unixlib.h
+0
-1
config.h.in
include/config.h.in
+0
-3
No files found.
configure
View file @
8a2f7c73
...
...
@@ -19640,7 +19640,6 @@ for ac_func in \
log2f
\
remainder
\
remainderf
\
remquof
\
tgamma
\
tgammaf
...
...
configure.ac
View file @
8a2f7c73
...
...
@@ -2680,7 +2680,6 @@ AC_CHECK_FUNCS(\
log2f \
remainder \
remainderf \
remquof \
tgamma \
tgammaf
)
...
...
dlls/msvcrt/math.c
View file @
8a2f7c73
...
...
@@ -5581,12 +5581,86 @@ end:
/*********************************************************************
* remquof (MSVCR120.@)
*
* Copied from musl: src/math/remquof.c
*/
float
CDECL
remquof
(
float
x
,
float
y
,
int
*
quo
)
{
if
(
!
isfinite
(
x
))
*
_errno
()
=
EDOM
;
if
(
isnan
(
y
)
||
y
==
0
.
0
f
)
*
_errno
()
=
EDOM
;
return
unix_funcs
->
remquof
(
x
,
y
,
quo
);
UINT32
uxi
=
*
(
UINT32
*
)
&
x
;
UINT32
uyi
=
*
(
UINT32
*
)
&
y
;
int
ex
=
uxi
>>
23
&
0xff
;
int
ey
=
uyi
>>
23
&
0xff
;
int
sx
=
uxi
>>
31
;
int
sy
=
uyi
>>
31
;
UINT32
q
,
i
;
*
quo
=
0
;
if
(
y
==
0
||
isinf
(
x
))
*
_errno
()
=
EDOM
;
if
(
uyi
<<
1
==
0
||
isnan
(
y
)
||
ex
==
0xff
)
return
(
x
*
y
)
/
(
x
*
y
);
if
(
uxi
<<
1
==
0
)
return
x
;
/* normalize x and y */
if
(
!
ex
)
{
for
(
i
=
uxi
<<
9
;
i
>>
31
==
0
;
ex
--
,
i
<<=
1
);
uxi
<<=
-
ex
+
1
;
}
else
{
uxi
&=
-
1U
>>
9
;
uxi
|=
1U
<<
23
;
}
if
(
!
ey
)
{
for
(
i
=
uyi
<<
9
;
i
>>
31
==
0
;
ey
--
,
i
<<=
1
);
uyi
<<=
-
ey
+
1
;
}
else
{
uyi
&=
-
1U
>>
9
;
uyi
|=
1U
<<
23
;
}
q
=
0
;
if
(
ex
<
ey
)
{
if
(
ex
+
1
==
ey
)
goto
end
;
return
x
;
}
/* x mod y */
for
(;
ex
>
ey
;
ex
--
)
{
i
=
uxi
-
uyi
;
if
(
i
>>
31
==
0
)
{
uxi
=
i
;
q
++
;
}
uxi
<<=
1
;
q
<<=
1
;
}
i
=
uxi
-
uyi
;
if
(
i
>>
31
==
0
)
{
uxi
=
i
;
q
++
;
}
if
(
uxi
==
0
)
ex
=
-
30
;
else
for
(;
uxi
>>
23
==
0
;
uxi
<<=
1
,
ex
--
);
end:
/* scale result and decide between |x| and |x|-|y| */
if
(
ex
>
0
)
{
uxi
-=
1U
<<
23
;
uxi
|=
(
UINT32
)
ex
<<
23
;
}
else
{
uxi
>>=
-
ex
+
1
;
}
x
=
*
(
float
*
)
&
uxi
;
if
(
sy
)
y
=
-
y
;
if
(
ex
==
ey
||
(
ex
+
1
==
ey
&&
(
2
*
x
>
y
||
(
2
*
x
==
y
&&
q
%
2
))))
{
x
-=
y
;
q
++
;
}
q
&=
0x7fffffff
;
*
quo
=
sx
^
sy
?
-
(
int
)
q
:
(
int
)
q
;
return
sx
?
-
x
:
x
;
}
/*********************************************************************
...
...
dlls/msvcrt/unixlib.c
View file @
8a2f7c73
...
...
@@ -502,19 +502,6 @@ static float CDECL unix_remainderf(float x, float y)
}
/*********************************************************************
* remquof
*/
static
float
CDECL
unix_remquof
(
float
x
,
float
y
,
int
*
quo
)
{
#ifdef HAVE_REMQUOF
return
remquof
(
x
,
y
,
quo
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
;
#endif
}
/*********************************************************************
* sin
*/
static
double
CDECL
unix_sin
(
double
x
)
...
...
@@ -649,7 +636,6 @@ static const struct unix_funcs funcs =
unix_powf
,
unix_remainder
,
unix_remainderf
,
unix_remquof
,
unix_sin
,
unix_sinf
,
unix_sinh
,
...
...
dlls/msvcrt/unixlib.h
View file @
8a2f7c73
...
...
@@ -66,7 +66,6 @@ struct unix_funcs
float
(
CDECL
*
powf
)(
float
x
,
float
y
);
double
(
CDECL
*
remainder
)(
double
x
,
double
y
);
float
(
CDECL
*
remainderf
)(
float
x
,
float
y
);
float
(
CDECL
*
remquof
)(
float
x
,
float
y
,
int
*
quo
);
double
(
CDECL
*
sin
)(
double
x
);
float
(
CDECL
*
sinf
)(
float
x
);
double
(
CDECL
*
sinh
)(
double
x
);
...
...
include/config.h.in
View file @
8a2f7c73
...
...
@@ -636,9 +636,6 @@
/* Define to 1 if you have the `remainderf' function. */
#undef HAVE_REMAINDERF
/* Define to 1 if you have the `remquof' function. */
#undef HAVE_REMQUOF
/* Define to 1 if the system has the type `request_sense'. */
#undef HAVE_REQUEST_SENSE
...
...
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