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
04117dc8
Commit
04117dc8
authored
Jun 08, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Reimplement _allmul using 32-bit arithmetic.
Based on compiler-rt. Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0547da64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
large_int.c
dlls/ntdll/large_int.c
+23
-1
No files found.
dlls/ntdll/large_int.c
View file @
04117dc8
...
...
@@ -759,7 +759,29 @@ LONGLONG WINAPI _alldiv( LONGLONG a, LONGLONG b )
*/
LONGLONG
WINAPI
_allmul
(
LONGLONG
a
,
LONGLONG
b
)
{
return
a
*
b
;
LARGE_INTEGER
x
=
{
.
QuadPart
=
a
};
LARGE_INTEGER
y
=
{
.
QuadPart
=
b
};
LARGE_INTEGER
r
;
unsigned
int
t
;
const
int
bits_in_word_2
=
16
;
const
unsigned
int
lower_mask
=
~
0u
>>
bits_in_word_2
;
r
.
u
.
LowPart
=
(
x
.
u
.
LowPart
&
lower_mask
)
*
(
y
.
u
.
LowPart
&
lower_mask
);
t
=
r
.
u
.
LowPart
>>
bits_in_word_2
;
r
.
u
.
LowPart
&=
lower_mask
;
t
+=
(
x
.
u
.
LowPart
>>
bits_in_word_2
)
*
(
y
.
u
.
LowPart
&
lower_mask
);
r
.
u
.
LowPart
+=
(
t
&
lower_mask
)
<<
bits_in_word_2
;
r
.
u
.
HighPart
=
t
>>
bits_in_word_2
;
t
=
r
.
u
.
LowPart
>>
bits_in_word_2
;
r
.
u
.
LowPart
&=
lower_mask
;
t
+=
(
y
.
u
.
LowPart
>>
bits_in_word_2
)
*
(
x
.
u
.
LowPart
&
lower_mask
);
r
.
u
.
LowPart
+=
(
t
&
lower_mask
)
<<
bits_in_word_2
;
r
.
u
.
HighPart
+=
t
>>
bits_in_word_2
;
r
.
u
.
HighPart
+=
(
x
.
u
.
LowPart
>>
bits_in_word_2
)
*
(
y
.
u
.
LowPart
>>
bits_in_word_2
);
r
.
u
.
HighPart
+=
x
.
u
.
HighPart
*
y
.
u
.
LowPart
+
x
.
u
.
LowPart
*
y
.
u
.
HighPart
;
return
r
.
QuadPart
;
}
...
...
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