1 | ;; @file
|
---|
2 | ; IPRT - Global YASM/NASM macros
|
---|
3 | ;
|
---|
4 |
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | ;
|
---|
8 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
10 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | ; General Public License (GPL) as published by the Free Software
|
---|
12 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 | ; The contents of this file may alternatively be used under the terms
|
---|
17 | ; of the Common Development and Distribution License Version 1.0
|
---|
18 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | ; CDDL are applicable instead of those of the GPL.
|
---|
21 | ;
|
---|
22 | ; You may elect to license modified versions of this file under the
|
---|
23 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | ;
|
---|
25 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | ; additional information or have any questions.
|
---|
28 | ;
|
---|
29 |
|
---|
30 | %ifndef ___iprt_asmdefs_mac
|
---|
31 | %define ___iprt_asmdefs_mac
|
---|
32 |
|
---|
33 | ;;
|
---|
34 | ; Make the mask for the given bit.
|
---|
35 | %define RT_BIT(bit) (1 << bit)
|
---|
36 |
|
---|
37 | ;;
|
---|
38 | ; Align code, pad with INT3.
|
---|
39 | %define ALIGNCODE(alignment) align alignment, db 0cch
|
---|
40 |
|
---|
41 | ;;
|
---|
42 | ; Align data, pad with ZEROs.
|
---|
43 | %define ALIGNDATA(alignment) align alignment, db 0
|
---|
44 |
|
---|
45 | ;;
|
---|
46 | ; Align BSS, pad with ZEROs.
|
---|
47 | %define ALIGNBSS(alignment) align alignment, resb 1
|
---|
48 |
|
---|
49 | ;;
|
---|
50 | ; NAME_OVERLOAD can be defined by a .asm module to modify all the
|
---|
51 | ; names created using the name macros in this files.
|
---|
52 | ; This is handy when you've got some kind of template code.
|
---|
53 | %ifndef NAME_OVERLOAD
|
---|
54 | %define NAME_OVERLOAD(name) name
|
---|
55 | %endif
|
---|
56 |
|
---|
57 | ;;
|
---|
58 | ; Mangles the given name so it can be referenced using DECLASM() in the
|
---|
59 | ; C/C++ world.
|
---|
60 | %ifdef RT_ARCH_X86
|
---|
61 | %ifdef RT_OS_OS2
|
---|
62 | %define NAME(name) _ %+ NAME_OVERLOAD(name)
|
---|
63 | %endif
|
---|
64 | %ifdef RT_OS_WINDOWS
|
---|
65 | %define NAME(name) _ %+ NAME_OVERLOAD(name)
|
---|
66 | %endif
|
---|
67 | %endif
|
---|
68 | %ifdef RT_OS_DARWIN
|
---|
69 | %define NAME(name) _ %+ NAME_OVERLOAD(name)
|
---|
70 | %endif
|
---|
71 | %ifndef NAME
|
---|
72 | %define NAME(name) NAME_OVERLOAD(name)
|
---|
73 | %endif
|
---|
74 |
|
---|
75 | ;;
|
---|
76 | ; Mangles the given C name so it will _import_ the right symbol.
|
---|
77 | %ifdef ASM_FORMAT_PE
|
---|
78 | %define IMPNAME(name) __imp_ %+ NAME(name)
|
---|
79 | %else
|
---|
80 | %define IMPNAME(name) NAME(name)
|
---|
81 | %endif
|
---|
82 |
|
---|
83 | ;;
|
---|
84 | ; Gets the pointer to an imported object.
|
---|
85 | %ifdef ASM_FORMAT_PE
|
---|
86 | %ifdef RT_ARCH_AMD64
|
---|
87 | %define IMP(name) qword [IMPNAME(name) wrt rip]
|
---|
88 | %else
|
---|
89 | %define IMP(name) dword [IMPNAME(name)]
|
---|
90 | %endif
|
---|
91 | %else
|
---|
92 | %define IMP(name) IMPNAME(name)
|
---|
93 | %endif
|
---|
94 |
|
---|
95 |
|
---|
96 |
|
---|
97 | ;;
|
---|
98 | ; Global marker which is DECLASM() compatible.
|
---|
99 | %macro GLOBALNAME 1,
|
---|
100 | global NAME(%1)
|
---|
101 | NAME(%1):
|
---|
102 | %endmacro
|
---|
103 |
|
---|
104 | ;;
|
---|
105 | ; Global exported marker which is DECLASM() compatible.
|
---|
106 | %macro EXPORTEDNAME 1,
|
---|
107 | %ifdef __NASM__
|
---|
108 | %ifdef ASM_FORMAT_PE
|
---|
109 | export %1=NAME(%1)
|
---|
110 | %endif
|
---|
111 | %ifdef ASM_FORMAT_OMF
|
---|
112 | export NAME(%1) NAME(%1)
|
---|
113 | %endif
|
---|
114 | %endif
|
---|
115 | GLOBALNAME %1
|
---|
116 | %endmacro
|
---|
117 |
|
---|
118 | ;;
|
---|
119 | ; Begins a C callable procedure.
|
---|
120 | %macro BEGINPROC 1
|
---|
121 | GLOBALNAME %1
|
---|
122 | %endmacro
|
---|
123 |
|
---|
124 | ;;
|
---|
125 | ; Begins a C callable exported procedure.
|
---|
126 | %macro BEGINPROC_EXPORTED 1
|
---|
127 | EXPORTEDNAME %1
|
---|
128 | %endmacro
|
---|
129 |
|
---|
130 | ;;
|
---|
131 | ; Ends a C callable procedure.
|
---|
132 | %macro ENDPROC 1
|
---|
133 | GLOBALNAME %1_EndProc
|
---|
134 | db 0xCC, 0xCC, 0xCC, 0xCC
|
---|
135 | %endmacro
|
---|
136 |
|
---|
137 |
|
---|
138 | ;
|
---|
139 | ; Do OMF and Mach-O/Yasm segment definitions
|
---|
140 | ;
|
---|
141 | ; Both format requires this to get the segment order right, in the Mach-O/Yasm case
|
---|
142 | ; it's only to make sure the .bss section ends up last (it's not declared here).
|
---|
143 | ;
|
---|
144 | %ifdef ASM_FORMAT_OMF
|
---|
145 |
|
---|
146 | ; 16-bit segments first (OMF / OS/2 specific).
|
---|
147 | %ifdef RT_INCL_16BIT_SEGMENTS
|
---|
148 | segment DATA16 public CLASS=FAR_DATA align=16 use16
|
---|
149 | segment DATA16_INIT public CLASS=FAR_DATA align=16 use16
|
---|
150 | group DGROUP16 DATA16 DATA16_INIT
|
---|
151 |
|
---|
152 | ;;
|
---|
153 | ; Begins 16-bit data
|
---|
154 | %macro BEGINDATA16 0
|
---|
155 | segment DATA16
|
---|
156 | %endmacro
|
---|
157 |
|
---|
158 | ;;
|
---|
159 | ; Begins 16-bit init data
|
---|
160 | %macro BEGINDATA16INIT 0
|
---|
161 | segment DATA16_INIT
|
---|
162 | %endmacro
|
---|
163 |
|
---|
164 | segment CODE16 public CLASS=FAR_CODE align=16 use16
|
---|
165 | segment CODE16_INIT public CLASS=FAR_CODE align=16 use16
|
---|
166 | group CGROUP16 CODE16 CODE16_INIT
|
---|
167 |
|
---|
168 | ;;
|
---|
169 | ; Begins 16-bit code
|
---|
170 | %macro BEGINCODE16 0
|
---|
171 | segment CODE16
|
---|
172 | %endmacro
|
---|
173 |
|
---|
174 | ;;
|
---|
175 | ; Begins 16-bit init code
|
---|
176 | %macro BEGINCODE16INIT 0
|
---|
177 | segment CODE16_INIT
|
---|
178 | %endmacro
|
---|
179 |
|
---|
180 | %endif
|
---|
181 |
|
---|
182 | ; 32-bit segments.
|
---|
183 | segment TEXT32 public CLASS=CODE align=16 use32 flat
|
---|
184 | segment DATA32 public CLASS=DATA align=16 use32 flat
|
---|
185 | segment BSS32 public CLASS=BSS align=16 use32 flat
|
---|
186 |
|
---|
187 | ; Make the TEXT32 segment default.
|
---|
188 | segment TEXT32
|
---|
189 | %endif
|
---|
190 |
|
---|
191 | %ifdef ASM_FORMAT_MACHO
|
---|
192 | %ifdef __YASM__
|
---|
193 | [section .text]
|
---|
194 | [section .data]
|
---|
195 | %endif
|
---|
196 | %endif
|
---|
197 |
|
---|
198 |
|
---|
199 | ;;
|
---|
200 | ; Begins code
|
---|
201 | %ifdef ASM_FORMAT_OMF
|
---|
202 | %macro BEGINCODE 0
|
---|
203 | segment TEXT32
|
---|
204 | %endmacro
|
---|
205 | %else
|
---|
206 | %macro BEGINCODE 0
|
---|
207 | [section .text]
|
---|
208 | %endmacro
|
---|
209 | %endif
|
---|
210 |
|
---|
211 | ;;
|
---|
212 | ; Begins constant (read-only) data
|
---|
213 | ;
|
---|
214 | ; @remarks This is mapped to the CODE section/segment when there isn't
|
---|
215 | ; any dedicated const section/segment. (There is code that
|
---|
216 | ; assumes this, so don't try change it.)
|
---|
217 | %ifdef ASM_FORMAT_OMF
|
---|
218 | %macro BEGINCONST 0
|
---|
219 | segment TEXT32
|
---|
220 | %endmacro
|
---|
221 | %else
|
---|
222 | %macro BEGINCONST 0
|
---|
223 | %ifdef ASM_FORMAT_MACHO ;; @todo check the other guys too.
|
---|
224 | [section .rodata]
|
---|
225 | %else
|
---|
226 | [section .text]
|
---|
227 | %endif
|
---|
228 | %endmacro
|
---|
229 | %endif
|
---|
230 |
|
---|
231 | ;;
|
---|
232 | ; Begins initialized data
|
---|
233 | %ifdef ASM_FORMAT_OMF
|
---|
234 | %macro BEGINDATA 0
|
---|
235 | segment DATA32
|
---|
236 | %endmacro
|
---|
237 | %else
|
---|
238 | %macro BEGINDATA 0
|
---|
239 | [section .data]
|
---|
240 | %endmacro
|
---|
241 | %endif
|
---|
242 |
|
---|
243 | ;;
|
---|
244 | ; Begins uninitialized data
|
---|
245 | %ifdef ASM_FORMAT_OMF
|
---|
246 | %macro BEGINBSS 0
|
---|
247 | segment BSS32
|
---|
248 | %endmacro
|
---|
249 | %else
|
---|
250 | %macro BEGINBSS 0
|
---|
251 | [section .bss]
|
---|
252 | %endmacro
|
---|
253 | %endif
|
---|
254 |
|
---|
255 |
|
---|
256 |
|
---|
257 | ;; @def ARCH_BITS
|
---|
258 | ; Defines the bit count of the current context.
|
---|
259 | %ifndef ARCH_BITS
|
---|
260 | %ifdef RT_ARCH_AMD64
|
---|
261 | %define ARCH_BITS 64
|
---|
262 | %else
|
---|
263 | %define ARCH_BITS 32
|
---|
264 | %endif
|
---|
265 | %endif
|
---|
266 |
|
---|
267 | ;; @def HC_ARCH_BITS
|
---|
268 | ; Defines the host architechture bit count.
|
---|
269 | %ifndef HC_ARCH_BITS
|
---|
270 | %ifndef IN_RC
|
---|
271 | %define HC_ARCH_BITS ARCH_BITS
|
---|
272 | %else
|
---|
273 | %define HC_ARCH_BITS 32
|
---|
274 | %endif
|
---|
275 | %endif
|
---|
276 |
|
---|
277 | ;; @def R3_ARCH_BITS
|
---|
278 | ; Defines the host ring-3 architechture bit count.
|
---|
279 | %ifndef R3_ARCH_BITS
|
---|
280 | %ifdef IN_RING3
|
---|
281 | %define R3_ARCH_BITS ARCH_BITS
|
---|
282 | %else
|
---|
283 | %define R3_ARCH_BITS HC_ARCH_BITS
|
---|
284 | %endif
|
---|
285 | %endif
|
---|
286 |
|
---|
287 | ;; @def R0_ARCH_BITS
|
---|
288 | ; Defines the host ring-0 architechture bit count.
|
---|
289 | %ifndef R0_ARCH_BITS
|
---|
290 | %ifdef IN_RING0
|
---|
291 | %define R0_ARCH_BITS ARCH_BITS
|
---|
292 | %else
|
---|
293 | %define R0_ARCH_BITS HC_ARCH_BITS
|
---|
294 | %endif
|
---|
295 | %endif
|
---|
296 |
|
---|
297 | ;; @def GC_ARCH_BITS
|
---|
298 | ; Defines the guest architechture bit count.
|
---|
299 | %ifndef GC_ARCH_BITS
|
---|
300 | %ifdef IN_RC
|
---|
301 | %define GC_ARCH_BITS ARCH_BITS
|
---|
302 | %else
|
---|
303 | %define GC_ARCH_BITS 32
|
---|
304 | %endif
|
---|
305 | %endif
|
---|
306 |
|
---|
307 |
|
---|
308 |
|
---|
309 | ;; @def RTHCPTR_DEF
|
---|
310 | ; The pesudo-instruction used to declare an initialized pointer variable in the host context.
|
---|
311 | %if HC_ARCH_BITS == 64
|
---|
312 | %define RTHCPTR_DEF dq
|
---|
313 | %else
|
---|
314 | %define RTHCPTR_DEF dd
|
---|
315 | %endif
|
---|
316 |
|
---|
317 | ;; @def RTHCPTR_RES
|
---|
318 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
319 | ; variable of the host context.
|
---|
320 | %if HC_ARCH_BITS == 64
|
---|
321 | %define RTHCPTR_RES resq
|
---|
322 | %else
|
---|
323 | %define RTHCPTR_RES resd
|
---|
324 | %endif
|
---|
325 |
|
---|
326 | ;; @def RTHCPTR_PRE
|
---|
327 | ; The memory operand prefix used for a pointer in the host context.
|
---|
328 | %if HC_ARCH_BITS == 64
|
---|
329 | %define RTHCPTR_PRE qword
|
---|
330 | %else
|
---|
331 | %define RTHCPTR_PRE dword
|
---|
332 | %endif
|
---|
333 |
|
---|
334 | ;; @def RTHCPTR_CB
|
---|
335 | ; The size in bytes of a pointer in the host context.
|
---|
336 | %if HC_ARCH_BITS == 64
|
---|
337 | %define RTHCPTR_CB 8
|
---|
338 | %else
|
---|
339 | %define RTHCPTR_CB 4
|
---|
340 | %endif
|
---|
341 |
|
---|
342 |
|
---|
343 |
|
---|
344 | ;; @def RTR0PTR_DEF
|
---|
345 | ; The pesudo-instruction used to declare an initialized pointer variable in the ring-0 host context.
|
---|
346 | %if R0_ARCH_BITS == 64
|
---|
347 | %define RTR0PTR_DEF dq
|
---|
348 | %else
|
---|
349 | %define RTR0PTR_DEF dd
|
---|
350 | %endif
|
---|
351 |
|
---|
352 | ;; @def RTR0PTR_RES
|
---|
353 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
354 | ; variable of the ring-0 host context.
|
---|
355 | %if R0_ARCH_BITS == 64
|
---|
356 | %define RTR0PTR_RES resq
|
---|
357 | %else
|
---|
358 | %define RTR0PTR_RES resd
|
---|
359 | %endif
|
---|
360 |
|
---|
361 | ;; @def RTR0PTR_PRE
|
---|
362 | ; The memory operand prefix used for a pointer in the ring-0 host context.
|
---|
363 | %if R0_ARCH_BITS == 64
|
---|
364 | %define RTR0PTR_PRE qword
|
---|
365 | %else
|
---|
366 | %define RTR0PTR_PRE dword
|
---|
367 | %endif
|
---|
368 |
|
---|
369 | ;; @def RTR0PTR_CB
|
---|
370 | ; The size in bytes of a pointer in the ring-0 host context.
|
---|
371 | %if R0_ARCH_BITS == 64
|
---|
372 | %define RTR0PTR_CB 8
|
---|
373 | %else
|
---|
374 | %define RTR0PTR_CB 4
|
---|
375 | %endif
|
---|
376 |
|
---|
377 |
|
---|
378 |
|
---|
379 | ;; @def RTR3PTR_DEF
|
---|
380 | ; The pesudo-instruction used to declare an initialized pointer variable in the ring-3 host context.
|
---|
381 | %if R3_ARCH_BITS == 64
|
---|
382 | %define RTR3PTR_DEF dq
|
---|
383 | %else
|
---|
384 | %define RTR3PTR_DEF dd
|
---|
385 | %endif
|
---|
386 |
|
---|
387 | ;; @def RTR3PTR_RES
|
---|
388 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
389 | ; variable of the ring-3 host context.
|
---|
390 | %if R3_ARCH_BITS == 64
|
---|
391 | %define RTR3PTR_RES resq
|
---|
392 | %else
|
---|
393 | %define RTR3PTR_RES resd
|
---|
394 | %endif
|
---|
395 |
|
---|
396 | ;; @def RTR3PTR_PRE
|
---|
397 | ; The memory operand prefix used for a pointer in the ring-3 host context.
|
---|
398 | %if R3_ARCH_BITS == 64
|
---|
399 | %define RTR3PTR_PRE qword
|
---|
400 | %else
|
---|
401 | %define RTR3PTR_PRE dword
|
---|
402 | %endif
|
---|
403 |
|
---|
404 | ;; @def RTR3PTR_CB
|
---|
405 | ; The size in bytes of a pointer in the ring-3 host context.
|
---|
406 | %if R3_ARCH_BITS == 64
|
---|
407 | %define RTR3PTR_CB 8
|
---|
408 | %else
|
---|
409 | %define RTR3PTR_CB 4
|
---|
410 | %endif
|
---|
411 |
|
---|
412 |
|
---|
413 |
|
---|
414 | ;; @def RTGCPTR_DEF
|
---|
415 | ; The pesudo-instruction used to declare an initialized pointer variable in the guest context.
|
---|
416 | %if GC_ARCH_BITS == 64
|
---|
417 | %define RTGCPTR_DEF dq
|
---|
418 | %else
|
---|
419 | %define RTGCPTR_DEF dd
|
---|
420 | %endif
|
---|
421 |
|
---|
422 | ;; @def RTGCPTR_RES
|
---|
423 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
424 | ; variable of the guest context.
|
---|
425 | %if GC_ARCH_BITS == 64
|
---|
426 | %define RTGCPTR_RES resq
|
---|
427 | %else
|
---|
428 | %define RTGCPTR_RES resd
|
---|
429 | %endif
|
---|
430 |
|
---|
431 | %define RTGCPTR32_RES resd
|
---|
432 | %define RTGCPTR64_RES resq
|
---|
433 |
|
---|
434 | ;; @def RTGCPTR_PRE
|
---|
435 | ; The memory operand prefix used for a pointer in the guest context.
|
---|
436 | %if GC_ARCH_BITS == 64
|
---|
437 | %define RTGCPTR_PRE qword
|
---|
438 | %else
|
---|
439 | %define RTGCPTR_PRE dword
|
---|
440 | %endif
|
---|
441 |
|
---|
442 | ;; @def RTGCPTR_CB
|
---|
443 | ; The size in bytes of a pointer in the guest context.
|
---|
444 | %if GC_ARCH_BITS == 64
|
---|
445 | %define RTGCPTR_CB 8
|
---|
446 | %else
|
---|
447 | %define RTGCPTR_CB 4
|
---|
448 | %endif
|
---|
449 |
|
---|
450 |
|
---|
451 | ;; @def RTRCPTR_DEF
|
---|
452 | ; The pesudo-instruction used to declare an initialized pointer variable in the raw mode context.
|
---|
453 | %define RTRCPTR_DEF dd
|
---|
454 |
|
---|
455 | ;; @def RTRCPTR_RES
|
---|
456 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
457 | ; variable of the raw mode context.
|
---|
458 | %define RTRCPTR_RES resd
|
---|
459 |
|
---|
460 | ;; @def RTRCPTR_PRE
|
---|
461 | ; The memory operand prefix used for a pointer in the raw mode context.
|
---|
462 | %define RTRCPTR_PRE dword
|
---|
463 |
|
---|
464 | ;; @def RTRCPTR_CB
|
---|
465 | ; The size in bytes of a pointer in the raw mode context.
|
---|
466 | %define RTRCPTR_CB 4
|
---|
467 |
|
---|
468 |
|
---|
469 | ;; @def RT_CCPTR_DEF
|
---|
470 | ; The pesudo-instruction used to declare an initialized pointer variable in the current context.
|
---|
471 |
|
---|
472 | ;; @def RT_CCPTR_RES
|
---|
473 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
|
---|
474 | ; variable of the current context.
|
---|
475 |
|
---|
476 | ;; @def RT_CCPTR_PRE
|
---|
477 | ; The memory operand prefix used for a pointer in the current context.
|
---|
478 |
|
---|
479 | ;; @def RT_CCPTR_CB
|
---|
480 | ; The size in bytes of a pointer in the current context.
|
---|
481 |
|
---|
482 | %ifdef IN_RC
|
---|
483 | %define RTCCPTR_DEF RTRCPTR_DEF
|
---|
484 | %define RTCCPTR_RES RTRCPTR_RES
|
---|
485 | %define RTCCPTR_PRE RTRCPTR_PRE
|
---|
486 | %define RTCCPTR_CB RTRCPTR_CB
|
---|
487 | %else
|
---|
488 | %ifdef IN_RING0
|
---|
489 | %define RTCCPTR_DEF RTR0PTR_DEF
|
---|
490 | %define RTCCPTR_RES RTR0PTR_RES
|
---|
491 | %define RTCCPTR_PRE RTR0PTR_PRE
|
---|
492 | %define RTCCPTR_CB RTR0PTR_CB
|
---|
493 | %else
|
---|
494 | %define RTCCPTR_DEF RTR3PTR_DEF
|
---|
495 | %define RTCCPTR_RES RTR3PTR_RES
|
---|
496 | %define RTCCPTR_PRE RTR3PTR_PRE
|
---|
497 | %define RTCCPTR_CB RTR3PTR_CB
|
---|
498 | %endif
|
---|
499 | %endif
|
---|
500 |
|
---|
501 |
|
---|
502 |
|
---|
503 | ;; @def RTHCPHYS_DEF
|
---|
504 | ; The pesudo-instruction used to declare an initialized host physical address.
|
---|
505 | %define RTHCPHYS_DEF dq
|
---|
506 |
|
---|
507 | ;; @def RTHCPTR_RES
|
---|
508 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized
|
---|
509 | ; host physical address variable
|
---|
510 | %define RTHCPHYS_RES resq
|
---|
511 |
|
---|
512 | ;; @def RTHCPTR_PRE
|
---|
513 | ; The memory operand prefix used for a host physical address.
|
---|
514 | %define RTHCPHYS_PRE qword
|
---|
515 |
|
---|
516 | ;; @def RTHCPHYS_CB
|
---|
517 | ; The size in bytes of a host physical address.
|
---|
518 | %define RTHCPHYS_CB 8
|
---|
519 |
|
---|
520 |
|
---|
521 |
|
---|
522 | ;; @def RTGCPHYS_DEF
|
---|
523 | ; The pesudo-instruction used to declare an initialized guest physical address.
|
---|
524 | %define RTGCPHYS_DEF dq
|
---|
525 |
|
---|
526 | ;; @def RTGCPHYS_RES
|
---|
527 | ; The pesudo-instruction used to declare (=reserve space for) an uninitialized
|
---|
528 | ; guest physical address variable
|
---|
529 | %define RTGCPHYS_RES resq
|
---|
530 |
|
---|
531 | ;; @def RTGCPTR_PRE
|
---|
532 | ; The memory operand prefix used for a guest physical address.
|
---|
533 | %define RTGCPHYS_PRE qword
|
---|
534 |
|
---|
535 | ;; @def RTGCPHYS_CB
|
---|
536 | ; The size in bytes of a guest physical address.
|
---|
537 | %define RTGCPHYS_CB 8
|
---|
538 |
|
---|
539 |
|
---|
540 |
|
---|
541 | ;;
|
---|
542 | ; The size of the long double C/C++ type.
|
---|
543 | ; On 32-bit Darwin this is 16 bytes, on L4, Linux, OS/2 and Windows
|
---|
544 | ; it's 12 bytes.
|
---|
545 | ; @todo figure out what 64-bit Windows does (I don't recall right now).
|
---|
546 | %ifdef RT_ARCH_X86
|
---|
547 | %ifdef RT_OS_DARWIN
|
---|
548 | %define RTLRD_CB 16
|
---|
549 | %else
|
---|
550 | %define RTLRD_CB 12
|
---|
551 | %endif
|
---|
552 | %else
|
---|
553 | %define RTLRD_CB 16
|
---|
554 | %endif
|
---|
555 |
|
---|
556 |
|
---|
557 |
|
---|
558 | ;; @def ASM_CALL64_GCC
|
---|
559 | ; Indicates that we're using the GCC 64-bit calling convention.
|
---|
560 | ; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
|
---|
561 |
|
---|
562 | ;; @def ASM_CALL64_MSC
|
---|
563 | ; Indicates that we're using the Microsoft 64-bit calling convention (fastcall on steroids).
|
---|
564 | ; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
|
---|
565 |
|
---|
566 | ; Note: On X86 we're using cdecl unconditionally. There is not yet any common
|
---|
567 | ; calling convention on AMD64, that's why we need to support two different ones.)
|
---|
568 |
|
---|
569 | %ifdef RT_ARCH_AMD64
|
---|
570 | %ifndef ASM_CALL64_GCC
|
---|
571 | %ifndef ASM_CALL64_MSC
|
---|
572 | ; define it based on the object format.
|
---|
573 | %ifdef ASM_FORMAT_PE
|
---|
574 | %define ASM_CALL64_MSC
|
---|
575 | %else
|
---|
576 | %define ASM_CALL64_GCC
|
---|
577 | %endif
|
---|
578 | %endif
|
---|
579 | %else
|
---|
580 | ; sanity check.
|
---|
581 | %ifdef ASM_CALL64_MSC
|
---|
582 | %error "Only one of the ASM_CALL64_* defines should be defined!"
|
---|
583 | %endif
|
---|
584 | %endif
|
---|
585 | %endif
|
---|
586 |
|
---|
587 |
|
---|
588 | ;; @def RT_NOCRT
|
---|
589 | ; Symbol name wrapper for the No-CRT bits.
|
---|
590 | ;
|
---|
591 | ; In order to coexist in the same process as other CRTs, we need to
|
---|
592 | ; decorate the symbols such that they don't conflict the ones in the
|
---|
593 | ; other CRTs. The result of such conflicts / duplicate symbols can
|
---|
594 | ; confuse the dynamic loader on unix like systems.
|
---|
595 | ;
|
---|
596 | ; @remark Always feed the name to this macro first and then pass the result
|
---|
597 | ; on to the next *NAME* macro.
|
---|
598 | ;
|
---|
599 | %ifndef RT_WITHOUT_NOCRT_WRAPPERS
|
---|
600 | %define RT_NOCRT(name) nocrt_ %+ name
|
---|
601 | %else
|
---|
602 | %define RT_NOCRT(name) name
|
---|
603 | %endif
|
---|
604 |
|
---|
605 | ;; @def RT_NOCRT_BEGINPROC
|
---|
606 | ; Starts a NOCRT procedure, taking care of name wrapping and aliasing.
|
---|
607 | ;
|
---|
608 | ; Aliasing (weak ones, if supported) will be created when RT_WITH_NOCRT_ALIASES
|
---|
609 | ; is defined and RT_WITHOUT_NOCRT_WRAPPERS isn't.
|
---|
610 | ;
|
---|
611 | %macro RT_NOCRT_BEGINPROC 1
|
---|
612 | %ifdef RT_WITH_NOCRT_ALIASES
|
---|
613 | BEGINPROC RT_NOCRT(%1)
|
---|
614 | %ifdef ASM_FORMAT_ELF
|
---|
615 | global NAME(%1)
|
---|
616 | weak NAME(%1)
|
---|
617 | NAME(%1):
|
---|
618 | %else
|
---|
619 | GLOBALNAME %1
|
---|
620 | %endif
|
---|
621 | %else ; !RT_WITH_NOCRT_ALIASES
|
---|
622 | BEGINPROC RT_NOCRT(%1)
|
---|
623 | %endif ; !RT_WITH_NOCRT_ALIASES
|
---|
624 | %endmacro ; RT_NOCRT_BEGINPROC
|
---|
625 |
|
---|
626 | %ifdef RT_WITH_NOCRT_ALIASES
|
---|
627 | %ifdef RT_WITHOUT_NOCRT_WRAPPERS
|
---|
628 | %error "RT_WITH_NOCRT_ALIASES and RT_WITHOUT_NOCRT_WRAPPERS doesn't mix."
|
---|
629 | %endif
|
---|
630 | %endif
|
---|
631 |
|
---|
632 |
|
---|
633 |
|
---|
634 | ;; @def xS
|
---|
635 | ; The stack unit size / The register unit size.
|
---|
636 |
|
---|
637 | ;; @def xSP
|
---|
638 | ; The stack pointer register (RSP or ESP).
|
---|
639 |
|
---|
640 | ;; @def xBP
|
---|
641 | ; The base pointer register (RBP or ESP).
|
---|
642 |
|
---|
643 | ;; @def xAX
|
---|
644 | ; RAX or EAX depending on context.
|
---|
645 |
|
---|
646 | ;; @def xBX
|
---|
647 | ; RBX or EBX depending on context.
|
---|
648 |
|
---|
649 | ;; @def xCX
|
---|
650 | ; RCX or ECX depending on context.
|
---|
651 |
|
---|
652 | ;; @def xDX
|
---|
653 | ; RDX or EDX depending on context.
|
---|
654 |
|
---|
655 | ;; @def xDI
|
---|
656 | ; RDI or EDI depending on context.
|
---|
657 |
|
---|
658 | ;; @def xSI
|
---|
659 | ; RSI or ESI depending on context.
|
---|
660 |
|
---|
661 | ;; @def xWrtRIP
|
---|
662 | ; 'wrt rip' for AMD64 targets, nothing for x86 ones.
|
---|
663 |
|
---|
664 | %ifdef RT_ARCH_AMD64
|
---|
665 | %define xS 8
|
---|
666 | %define xSP rsp
|
---|
667 | %define xBP rbp
|
---|
668 | %define xAX rax
|
---|
669 | %define xBX rbx
|
---|
670 | %define xCX rcx
|
---|
671 | %define xDX rdx
|
---|
672 | %define xDI rdi
|
---|
673 | %define xSI rsi
|
---|
674 | %define xWrtRIP wrt rip
|
---|
675 | %else
|
---|
676 | %define xS 4
|
---|
677 | %define xSP esp
|
---|
678 | %define xBP ebp
|
---|
679 | %define xAX eax
|
---|
680 | %define xBX ebx
|
---|
681 | %define xCX ecx
|
---|
682 | %define xDX edx
|
---|
683 | %define xDI edi
|
---|
684 | %define xSI esi
|
---|
685 | %define xWrtRIP
|
---|
686 | %endif
|
---|
687 |
|
---|
688 | %endif
|
---|