VirtualBox

source: vbox/trunk/src/VBox/Devices/BiosCommonCode/commondefs.inc@ 77807

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1; $Id: commondefs.inc 76553 2019-01-01 01:45:53Z vboxsync $
2;; @file
3; Stuff for drawing the BIOS logo.
4;
5
6;
7; Copyright (C) 2004-2019 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
18
19;; Switches back to default CPU mode.
20SET_DEFAULT_CPU macro
21 if VBOX_BIOS_CPU eq 8086
22 .8086
23 elseif VBOX_BIOS_CPU eq 80186
24 .186
25 elseif VBOX_BIOS_CPU eq 80286
26 .286
27 elseif VBOX_BIOS_CPU eq 80386
28 .386
29 else
30 .errnz 1, Unsupported target CPU value: VBOX_BIOS_CPU
31 .386
32 endif
33endm
34
35
36;; Switches back to default CPU mode, max 286.
37SET_DEFAULT_CPU_286 macro
38 if VBOX_BIOS_CPU eq 8086
39 .8086
40 elseif VBOX_BIOS_CPU eq 80186
41 .186
42 else
43 .286
44 endif
45endm
46
47
48;;
49; Pretends to do a call by pushing the return address and jumping
50; to the function.
51;
52; This is slightly problematic on 8086 since it doesn't support pushing
53; word immediates. OTOH, it support pushing memory, so we'll do that
54; instead when targeting 8086.
55;
56if 0 ;; this crap crashes wasm, makes it call exit(0), or similar weird stuff.
57 ;; switched to a simpler approach where I define the one return address variable myself.
58DO_JMP_CALL macro calling, returning
59 if VBOX_BIOS_CPU gt 8086
60 push returning
61 jmp calling
62 else
63 push word ptr cs:[%jmp_call_addr_&returning]
64 jmp calling
65;public jmp_call_addr_&returning
66%jmp_call_addr_&returning: dw offset retaddr
67 endif
68endm
69
70DO_JMP_CALL_AGAIN macro calling, returning
71 if VBOX_BIOS_CPU gt 8086
72 push returning
73 jmp calling
74 else
75 push word ptr cs:[%jmp_call_addr_&returning]
76 jmp calling
77 endif
78endm
79
80else ; Simplified.
81DO_JMP_CALL_EX macro calling, returning, returning_ptr_var
82 if VBOX_BIOS_CPU gt 8086
83 push returning
84 jmp calling
85 else
86 push word ptr cs:[returning_ptr_var]
87 jmp calling
88 endif
89endm
90
91endif ; Simplified.
92
93
94;; For handling the pusha instruction depending on target CPU.
95DO_pusha macro
96 if VBOX_BIOS_CPU gt 8086
97 pusha
98 else
99 push ax
100 push cx
101 push dx
102 push bx
103 push sp
104 push bp
105 push si
106 push di
107 endif
108endm
109
110
111;; For handling the popad/popa instruction depending on target CPU.
112DO_popa macro
113 if VBOX_BIOS_CPU gt 8086
114 popa
115 else
116 pop di
117 pop si
118 pop bp
119 pop bx ;pop sp
120 pop bx
121 pop dx
122 pop cx
123 pop ax
124 endif
125endm
126
127
128;; For handling the pushad/pusha instruction depending on target CPU.
129DO_PUSHAD macro
130 if VBOX_BIOS_CPU ge 80386
131 pushad
132 elseif VBOX_BIOS_CPU gt 8086
133 pusha
134 else
135 push ax
136 push cx
137 push dx
138 push bx
139 push sp
140 push bp
141 push si
142 push di
143 endif
144endm
145
146
147;; For handling the popad/popa instruction depending on target CPU.
148DO_POPAD macro
149 if VBOX_BIOS_CPU ge 80386
150 popad
151 elseif VBOX_BIOS_CPU gt 8086
152 popa
153 else
154 pop di
155 pop si
156 pop bp
157 pop bx ;pop sp
158 pop bx
159 pop dx
160 pop cx
161 pop ax
162 endif
163endm
164
165
166;; ASSUMES working stack.
167DO_shr macro reg, count
168 if VBOX_BIOS_CPU ge 80186
169 shr reg, count
170 else
171 if count ge 6
172 push cx
173 mov cl, count
174 shr reg, cl
175 pop cx
176 else
177 if count ge 5
178 shr reg, 1
179 endif
180 if count ge 4
181 shr reg, 1
182 endif
183 if count ge 3
184 shr reg, 1
185 endif
186 if count ge 2
187 shr reg, 1
188 endif
189 if count ge 1
190 shr reg, 1
191 endif
192 endif
193 endif
194endm
195
196
197;; ASSUMES working stack.
198DO_shl macro reg, count
199 if VBOX_BIOS_CPU ge 80186
200 shl reg, count
201 else
202 if count ge 6
203 push cx
204 mov cl, count
205 shl reg, cl
206 pop cx
207 else
208 if count ge 5
209 shl reg, 1
210 endif
211 if count ge 4
212 shl reg, 1
213 endif
214 if count ge 3
215 shl reg, 1
216 endif
217 if count ge 2
218 shl reg, 1
219 endif
220 if count ge 1
221 shl reg, 1
222 endif
223 endif
224 endif
225endm
226
227
228
229
230;; Adds a special label that will have its address checked after linking.
231BIOSORG_CHECK macro addr
232public biosorg_check_at_&addr
233biosorg_check_at_&addr:
234 endm
235
236;; Adds a special label that will have its address checked after linking.
237BIOSORG_CHECK_BEFORE macro addr
238public biosorg_check_before_or_at_&addr
239biosorg_check_before_or_at_&addr:
240 endm
241
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette