1 | ; $Id: bs3-wc16-U8DQ.asm 93115 2022-01-01 11:31:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - 16-bit Watcom C/C++, 64-bit unsigned integer division.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2022 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | %include "bs3kit-template-header.mac"
|
---|
28 |
|
---|
29 | BS3_EXTERN_CMN Bs3UInt64Div
|
---|
30 |
|
---|
31 |
|
---|
32 | ;;
|
---|
33 | ; 64-bit unsigned integer division, SS variant.
|
---|
34 | ;
|
---|
35 | ; @returns ax:bx:cx:dx quotient. (AX is the most significant, DX the least)
|
---|
36 | ; @param ax:bx:cx:dx Dividend.
|
---|
37 | ; @param [ss:si] Divisor
|
---|
38 | ;
|
---|
39 | ; @uses Nothing.
|
---|
40 | ;
|
---|
41 | global $_?U8DQ
|
---|
42 | $_?U8DQ:
|
---|
43 | push es
|
---|
44 | push ss
|
---|
45 | pop es
|
---|
46 | %ifdef ASM_MODEL_FAR_CODE
|
---|
47 | push cs
|
---|
48 | %endif
|
---|
49 | call $_?U8DQE
|
---|
50 | pop es
|
---|
51 | %ifdef ASM_MODEL_FAR_CODE
|
---|
52 | retf
|
---|
53 | %else
|
---|
54 | ret
|
---|
55 | %endif
|
---|
56 |
|
---|
57 | ;;
|
---|
58 | ; 64-bit unsigned integer division, ES variant.
|
---|
59 | ;
|
---|
60 | ; @returns ax:bx:cx:dx quotient. (AX is the most significant, DX the least)
|
---|
61 | ; @param ax:bx:cx:dx Dividend.
|
---|
62 | ; @param [es:si] Divisor
|
---|
63 | ;
|
---|
64 | ; @uses Nothing.
|
---|
65 | ;
|
---|
66 | global $_?U8DQE
|
---|
67 | $_?U8DQE:
|
---|
68 | push ds
|
---|
69 | push es
|
---|
70 |
|
---|
71 | ;
|
---|
72 | ; Convert to a C __cdecl call - not doing this in assembly.
|
---|
73 | ;
|
---|
74 |
|
---|
75 | ; Set up a frame of sorts, allocating 16 bytes for the result buffer.
|
---|
76 | push bp
|
---|
77 | sub sp, 10h
|
---|
78 | mov bp, sp
|
---|
79 |
|
---|
80 | ; Pointer to the return buffer.
|
---|
81 | push ss
|
---|
82 | push bp
|
---|
83 | add bp, 10h ; Correct bp.
|
---|
84 |
|
---|
85 | ; The divisor.
|
---|
86 | push word [es:si + 6]
|
---|
87 | push word [es:si + 4]
|
---|
88 | push word [es:si + 2]
|
---|
89 | push word [es:si]
|
---|
90 |
|
---|
91 | ; The dividend.
|
---|
92 | push ax
|
---|
93 | push bx
|
---|
94 | push cx
|
---|
95 | push dx
|
---|
96 |
|
---|
97 | call Bs3UInt64Div
|
---|
98 |
|
---|
99 | ; Load the quotient.
|
---|
100 | mov ax, [bp - 10h + 6]
|
---|
101 | mov bx, [bp - 10h + 4]
|
---|
102 | mov cx, [bp - 10h + 2]
|
---|
103 | mov dx, [bp - 10h]
|
---|
104 |
|
---|
105 | mov sp, bp
|
---|
106 | pop bp
|
---|
107 | pop es
|
---|
108 | pop ds
|
---|
109 | %ifdef ASM_MODEL_FAR_CODE
|
---|
110 | retf
|
---|
111 | %else
|
---|
112 | ret
|
---|
113 | %endif
|
---|
114 |
|
---|