1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
; $Id: support.asm $
;; @file
; Compiler support routines.
;
;
; Copyright (C) 2012 Oracle Corporation
;
; This file is part of VirtualBox Open Source Edition (OSE), as
; available from http://www.virtualbox.org. This file is free software;
; you can redistribute it and/or modify it under the terms of the GNU
; General Public License (GPL) as published by the Free Software
; Foundation, in version 2 as it comes in the "COPYING" file of the
; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
;
;*******************************************************************************
;* Exported Symbols *
;*******************************************************************************
public __U4D
public __U4M
ifndef VBOX_PC_BIOS
public __I4D
public __I4M
endif
public _fmemset_
public _fmemcpy_
.386p
_TEXT segment public 'CODE' use16
assume cs:_TEXT
;;
; 32-bit unsigned division.
;
; @param dx:ax Dividend.
; @param cx:bx Divisor.
; @returns dx:ax Quotient.
; cx:bx Reminder.
;
__U4D:
pushf
push eax
push edx
push ecx
rol eax, 16
mov ax, dx
ror eax, 16
xor edx, edx
shr ecx, 16
mov cx, bx
div ecx ; eax:edx / ecx -> eax=quotient, edx=reminder.
mov bx, dx
pop ecx
shr edx, 16
mov cx, dx
pop edx
ror eax, 16
mov dx, ax
add sp, 2
pop ax
rol eax, 16
popf
ret
ifndef VBOX_PC_BIOS
;;
; 32-bit signed division.
;
; @param dx:ax Dividend.
; @param cx:bx Divisor.
; @returns dx:ax Quotient.
; cx:bx Reminder.
;
__I4D:
pushf
push eax
push edx
push ecx
rol eax, 16
mov ax, dx
ror eax, 16
xor edx, edx
shr ecx, 16
mov cx, bx
idiv ecx ; eax:edx / ecx -> eax=quotient, edx=reminder.
mov bx, dx
pop ecx
shr edx, 16
mov cx, dx
pop edx
ror eax, 16
mov dx, ax
add sp, 2
pop ax
rol eax, 16
popf
ret
endif ; VBOX_PC_BIOS
;;
; 32-bit unsigned multiplication.
;
; @param dx:ax Factor 1.
; @param cx:bx Factor 2.
; @returns dx:ax Result.
;
__U4M:
pushf
push eax
push edx
push ecx
rol eax, 16
mov ax, dx
ror eax, 16
xor edx, edx
shr ecx, 16
mov cx, bx
mul ecx ; eax * ecx -> edx:eax
pop ecx
pop edx
ror eax, 16
mov dx, ax
add sp, 2
pop ax
rol eax, 16
popf
ret
ifndef VBOX_PC_BIOS
;;
; 32-bit unsigned multiplication.
; memset taking a far pointer.
;
; @param dx:ax Factor 1.
; @param cx:bx Factor 2.
; @returns dx:ax Result.
; cx, es may be modified; di is preserved
;
__I4M:
pushf
push eax
push edx
push ecx
push ebx
rol eax, 16
mov ax, dx
ror eax, 16
xor edx, edx
shr ecx, 16
mov cx, bx
imul ecx ; eax * ecx -> edx:eax
pop ebx
pop ecx
pop edx
ror eax, 16
mov dx, ax
add sp, 2
pop ax
rol eax, 16
popf
ret
endif ; VBOX_PC_BIOS
;;
; memset taking a far pointer.
;
; cx, es may be modified; di is preserved
;
; @returns dx:ax unchanged.
; @param dx:ax Pointer to the memory.
; @param bl The fill value.
; @param cx The number of bytes to fill.
;
_fmemset_:
push di
mov es, dx
mov di, ax
xchg al, bl
rep stosb
xchg al, bl
pop di
ret
;;
; memset taking far pointers.
;
; cx, es may be modified; si, di are preserved
;
; @returns dx:ax unchanged.
; @param dx:ax Pointer to the destination memory.
; @param cx:bx Pointer to the source memory.
; @param sp+2 The number of bytes to copy (dw).
;
_fmemcpy_:
push bp
mov bp, sp
push di
push ds
push si
mov es, dx
mov di, ax
mov ds, cx
mov si, bx
mov cx, [bp + 4]
rep movsb
pop si
pop ds
pop di
leave
ret
_TEXT ends
end
|