1 | ; $Id: x86-allmul.asm 98495 2023-02-07 15:56:13Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - Visual C++ Compiler - 64-bit multiplication support, x86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2023 Oracle and/or its affiliates.
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox base platform packages, as
|
---|
10 | ; available from https://www.virtualbox.org.
|
---|
11 | ;
|
---|
12 | ; This program is free software; you can redistribute it and/or
|
---|
13 | ; modify it under the terms of the GNU General Public License
|
---|
14 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
15 | ; License.
|
---|
16 | ;
|
---|
17 | ; This program is distributed in the hope that it will be useful, but
|
---|
18 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | ; General Public License for more details.
|
---|
21 | ;
|
---|
22 | ; You should have received a copy of the GNU General Public License
|
---|
23 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | ;
|
---|
25 | ; The contents of this file may alternatively be used under the terms
|
---|
26 | ; of the Common Development and Distribution License Version 1.0
|
---|
27 | ; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | ; in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | ; CDDL are applicable instead of those of the GPL.
|
---|
30 | ;
|
---|
31 | ; You may elect to license modified versions of this file under the
|
---|
32 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | ;
|
---|
34 | ; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | ;
|
---|
36 |
|
---|
37 |
|
---|
38 | ;*********************************************************************************************************************************
|
---|
39 | ;* Header Files *
|
---|
40 | ;*********************************************************************************************************************************
|
---|
41 | %include "iprt/asmdefs.mac"
|
---|
42 |
|
---|
43 |
|
---|
44 | ;;
|
---|
45 | ; Multiplication of signed or unsigned 64-bit values.
|
---|
46 | ;
|
---|
47 | ; @returns edx:eax
|
---|
48 | ; @param [esp+04h] Factor #1 (64-bit)
|
---|
49 | ; @param [esp+0ch] Factor #2 (64-bit)
|
---|
50 | ; @uses ecx
|
---|
51 | ;
|
---|
52 | BEGINPROC_RAW __allmul
|
---|
53 | ;
|
---|
54 | ; See if this is a pure 32-bit multiplication. We might get lucky.
|
---|
55 | ;
|
---|
56 | mov eax, [esp + 04h] ; eax = F1.lo
|
---|
57 |
|
---|
58 | mov edx, [esp + 04h+4]
|
---|
59 | mov ecx, [esp + 0ch+4] ; ecx = F2.hi
|
---|
60 | or edx, ecx ; trashes edx but reduces number of branches.
|
---|
61 | jnz .complicated
|
---|
62 |
|
---|
63 | ; edx:eax = F1.lo * F2.lo
|
---|
64 | mul dword [esp + 0ch]
|
---|
65 |
|
---|
66 | ret 10h
|
---|
67 |
|
---|
68 | ;
|
---|
69 | ; Complicated.
|
---|
70 | ;
|
---|
71 | .complicated:
|
---|
72 | ; ecx = F1.lo * F2.hi (edx contains overflow here can be ignored)
|
---|
73 | mul ecx
|
---|
74 | mov ecx, eax
|
---|
75 |
|
---|
76 | ; ecx += F1.hi * F2.lo (edx can be ignored again)
|
---|
77 | mov eax, [esp + 04h+4]
|
---|
78 | mul dword [esp + 0ch]
|
---|
79 | add ecx, eax
|
---|
80 |
|
---|
81 | ; edx:eax = F1.lo * F2.lo
|
---|
82 | mov eax, [esp + 04h]
|
---|
83 | mul dword [esp + 0ch]
|
---|
84 |
|
---|
85 | ; Add ecx to the high part (edx).
|
---|
86 | add edx, ecx
|
---|
87 |
|
---|
88 | ret 10h
|
---|
89 | ENDPROC_RAW __allmul
|
---|
90 |
|
---|