1 | ; $Id: RTUInt128MulByU64.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - RTUInt128MulByU64 - AMD64 implementation.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2024 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 | %define RT_ASM_WITH_SEH64
|
---|
39 | %include "iprt/asmdefs.mac"
|
---|
40 | %include "internal/bignum.mac"
|
---|
41 |
|
---|
42 |
|
---|
43 | BEGINCODE
|
---|
44 |
|
---|
45 | ;;
|
---|
46 | ; Multiplies a 128-bit number with a 64-bit one.
|
---|
47 | ;
|
---|
48 | ; @returns puResult.
|
---|
49 | ; @param puResult x86:[ebp + 8] gcc:rdi msc:rcx
|
---|
50 | ; @param puValue1 x86:[ebp + 12] gcc:rsi msc:rdx
|
---|
51 | ; @param uValue2 x86:[ebp + 16] gcc:rdx msc:r8
|
---|
52 | ;
|
---|
53 | RT_BEGINPROC RTUInt128MulByU64
|
---|
54 | ; SEH64_SET_FRAME_xSP 0
|
---|
55 | SEH64_END_PROLOGUE
|
---|
56 |
|
---|
57 | %ifdef RT_ARCH_AMD64
|
---|
58 | %ifdef ASM_CALL64_GCC
|
---|
59 | %define puResult rdi
|
---|
60 | %define puValue1 rsi
|
---|
61 | %define uValue2 r8
|
---|
62 | mov r8, rdx
|
---|
63 | %else
|
---|
64 | %define puResult rcx
|
---|
65 | %define puValue1 r9
|
---|
66 | %define uValue2 r8
|
---|
67 | mov r9, rdx
|
---|
68 | %endif
|
---|
69 |
|
---|
70 | ; puValue1->s.Lo * uValue2
|
---|
71 | mov rax, [puValue1]
|
---|
72 | mul uValue2
|
---|
73 | mov [puResult], rax
|
---|
74 | mov r11, rdx ; Store the lower half of the result.
|
---|
75 |
|
---|
76 | ; puValue1->s.Hi * uValue2
|
---|
77 | mov rax, [puValue1 + 8]
|
---|
78 | mul uValue2
|
---|
79 | add r11, rax ; Calc the second half of the result.
|
---|
80 | mov [puResult + 8], r11 ; Store the high half of the result.
|
---|
81 |
|
---|
82 | mov rax, puResult
|
---|
83 |
|
---|
84 | ;%elifdef RT_ARCH_X86
|
---|
85 | %else
|
---|
86 | %error "unsupported arch"
|
---|
87 | %endif
|
---|
88 |
|
---|
89 | ret
|
---|
90 | ENDPROC RTUInt128MulByU64
|
---|
91 |
|
---|