VirtualBox

source: vbox/trunk/include/iprt/asmdefs.mac@ 1208

Last change on this file since 1208 was 1190, checked in by vboxsync, 18 years ago

Ported IPRT to ring-0 OS/2.

File size: 13.3 KB
Line 
1;; @file
2; InnoTek Portable Runtime - Global YASM/NASM macros
3;
4
5;
6; Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13; distribution. VirtualBox OSE is distributed in the hope that it will
14; be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; If you received this file as part of a commercial VirtualBox
17; distribution, then only the terms of your commercial VirtualBox
18; license agreement apply instead of the previous paragraph.
19
20%ifndef __iprt_asmdefs_mac__
21%define __iprt_asmdefs_mac__
22
23;;
24; Make the mask for the given bit.
25%define BIT(bit) (1 << bit)
26
27;;
28; Align code, pad with INT3.
29%define ALIGNCODE(alignment) align alignment, db 0cch
30
31;;
32; Align data, pad with ZEROs.
33%define ALIGNDATA(alignment) align alignment, db 0
34
35;;
36; Align BSS, pad with ZEROs.
37%define ALIGNBSS(alignment) align alignment, resb 1
38
39;;
40; NAME_OVERLOAD can be defined by a .asm module to modify all the
41; names created using the name macros in this files.
42; This is handy when you've got some kind of template code.
43%ifndef NAME_OVERLOAD
44 %define NAME_OVERLOAD(name) name
45%endif
46
47;;
48; Mangles the given name so it can be referenced using DECLASM() in the
49; C/C++ world.
50%ifdef __X86__
51 %ifdef __DARWIN__
52 %define NAME(name) _ %+ NAME_OVERLOAD(name)
53 %endif
54 %ifdef __OS2__
55 %define NAME(name) _ %+ NAME_OVERLOAD(name)
56 %endif
57 %ifdef __WIN__
58 %define NAME(name) _ %+ NAME_OVERLOAD(name)
59 %endif
60%endif
61%ifndef NAME
62 %define NAME(name) NAME_OVERLOAD(name)
63%endif
64
65;;
66; Mangles the given C name so it will _import_ the right symbol.
67%ifdef ASM_FORMAT_PE
68%define IMPNAME(name) __imp_ %+ NAME(name)
69%else
70%define IMPNAME(name) NAME(name)
71%endif
72
73;;
74; Gets the pointer to an imported object.
75%ifdef ASM_FORMAT_PE
76%define IMP(name) dword [IMPNAME(name)]
77%else
78%define IMP(name) IMPNAME(name)
79%endif
80
81
82
83;;
84; Global marker which is DECLASM() compatible.
85%macro GLOBALNAME 1,
86global NAME(%1)
87NAME(%1):
88%endmacro
89
90;;
91; Global exported marker which is DECLASM() compatible.
92%macro EXPORTEDNAME 1,
93 %ifdef __NASM__
94 %ifdef ASM_FORMAT_PE
95 export %1=NAME(%1)
96 %endif
97 %ifdef ASM_FORMAT_OMF
98 export NAME(%1) NAME(%1)
99 %endif
100%endif
101GLOBALNAME %1
102%endmacro
103
104;;
105; Begins a C callable procedure.
106%macro BEGINPROC 1
107GLOBALNAME %1
108%endmacro
109
110;;
111; Begins a C callable exported procedure.
112%macro BEGINPROC_EXPORTED 1
113EXPORTEDNAME %1
114%endmacro
115
116;;
117; Ends a C callable procedure.
118%macro ENDPROC 1
119GLOBALNAME %1_EndProc
120 db 0xCC, 0xCC, 0xCC, 0xCC
121%endmacro
122
123
124;
125; Do OMF segment definitions
126;
127%ifdef ASM_FORMAT_OMF
128
129 ; 16-bit segments first (OMF / OS/2 specific).
130 %ifdef RT_INCL_16BIT_SEGMENTS
131 segment DATA16 public CLASS=FAR_DATA align=16 use16
132 segment DATA16_INIT public CLASS=FAR_DATA align=16 use16
133 group DGROUP16 DATA16 DATA16_INIT
134
135 ;;
136 ; Begins 16-bit data
137 %macro BEGINDATA16 0
138 segment DATA16
139 %endmacro
140
141 ;;
142 ; Begins 16-bit init data
143 %macro BEGINDATA16INIT 0
144 segment DATA16_INIT
145 %endmacro
146
147 segment CODE16 public CLASS=FAR_CODE align=16 use16
148 segment CODE16_INIT public CLASS=FAR_CODE align=16 use16
149 group CGROUP16 CODE16 CODE16_INIT
150
151 ;;
152 ; Begins 16-bit code
153 %macro BEGINCODE16 0
154 segment CODE16
155 %endmacro
156
157 ;;
158 ; Begins 16-bit init code
159 %macro BEGINCODE16INIT 0
160 segment CODE16_INIT
161 %endmacro
162
163 %endif
164
165 ; 32-bit segments.
166 segment TEXT32 public CLASS=CODE align=16 use32 flat
167 segment DATA32 public CLASS=DATA align=16 use32 flat
168 segment BSS32 public CLASS=BSS align=16 use32 flat
169
170 ; Make the TEXT32 segment default.
171 segment TEXT32
172%endif
173
174
175;;
176; Begins code
177%ifdef ASM_FORMAT_OMF
178 %macro BEGINCODE 0
179 segment TEXT32
180 %endmacro
181%else
182%macro BEGINCODE 0
183[section .text]
184%endmacro
185%endif
186
187
188;;
189; Begins initialized data
190%ifdef ASM_FORMAT_OMF
191 %macro BEGINDATA 0
192 segment DATA32
193 %endmacro
194%else
195%macro BEGINDATA 0
196[section .data]
197%endmacro
198%endif
199
200;;
201; Begins uninitialized data
202%ifdef ASM_FORMAT_OMF
203 %macro BEGINBSS 0
204 segment BSS32
205 %endmacro
206%else
207%macro BEGINBSS 0
208[section .bss]
209%endmacro
210%endif
211
212
213
214;; @def ARCH_BITS
215; Defines the bit count of the current context.
216%ifndef ARCH_BITS
217 %ifdef __AMD64__
218 %define ARCH_BITS 64
219 %else
220 %define ARCH_BITS 32
221 %endif
222%endif
223
224;; @def HC_ARCH_BITS
225; Defines the host architechture bit count.
226%ifndef HC_ARCH_BITS
227 %ifndef IN_GC
228 %define HC_ARCH_BITS ARCH_BITS
229 %else
230 %define HC_ARCH_BITS 32
231 %endif
232%endif
233
234;; @def R3_ARCH_BITS
235; Defines the host ring-3 architechture bit count.
236%ifndef R3_ARCH_BITS
237 %ifdef IN_RING3
238 %define R3_ARCH_BITS ARCH_BITS
239 %else
240 %define R3_ARCH_BITS HC_ARCH_BITS
241 %endif
242%endif
243
244;; @def R0_ARCH_BITS
245; Defines the host ring-0 architechture bit count.
246%ifndef R0_ARCH_BITS
247 %ifdef IN_RING0
248 %define R0_ARCH_BITS ARCH_BITS
249 %else
250 %define R0_ARCH_BITS HC_ARCH_BITS
251 %endif
252%endif
253
254;; @def GC_ARCH_BITS
255; Defines the guest architechture bit count.
256%ifndef GC_ARCH_BITS
257 %ifdef IN_GC
258 %define GC_ARCH_BITS ARCH_BITS
259 %else
260 %define GC_ARCH_BITS 32
261 %endif
262%endif
263
264
265
266;; @def RTHCPTR_DEF
267; The pesudo-instruction used to declare an initialized pointer variable in the host context.
268%if HC_ARCH_BITS == 64
269 %define RTHCPTR_DEF dq
270%else
271 %define RTHCPTR_DEF dd
272%endif
273
274;; @def RTHCPTR_RES
275; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
276; variable of the host context.
277%if HC_ARCH_BITS == 64
278 %define RTHCPTR_RES resq
279%else
280 %define RTHCPTR_RES resd
281%endif
282
283;; @def RTHCPTR_PRE
284; The memory operand prefix used for a pointer in the host context.
285%if HC_ARCH_BITS == 64
286 %define RTHCPTR_PRE qword
287%else
288 %define RTHCPTR_PRE dword
289%endif
290
291;; @def RTHCPTR_CB
292; The size in bytes of a pointer in the host context.
293%if HC_ARCH_BITS == 64
294 %define RTHCPTR_CB 8
295%else
296 %define RTHCPTR_CB 4
297%endif
298
299
300
301;; @def RTR0PTR_DEF
302; The pesudo-instruction used to declare an initialized pointer variable in the ring-0 host context.
303%if R0_ARCH_BITS == 64
304 %define RTR0PTR_DEF dq
305%else
306 %define RTR0PTR_DEF dd
307%endif
308
309;; @def RTR0PTR_RES
310; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
311; variable of the ring-0 host context.
312%if R0_ARCH_BITS == 64
313 %define RTR0PTR_RES resq
314%else
315 %define RTR0PTR_RES resd
316%endif
317
318;; @def RTR0PTR_PRE
319; The memory operand prefix used for a pointer in the ring-0 host context.
320%if R0_ARCH_BITS == 64
321 %define RTR0PTR_PRE qword
322%else
323 %define RTR0PTR_PRE dword
324%endif
325
326;; @def RTR0PTR_CB
327; The size in bytes of a pointer in the ring-0 host context.
328%if R0_ARCH_BITS == 64
329 %define RTR0PTR_CB 8
330%else
331 %define RTR0PTR_CB 4
332%endif
333
334
335
336;; @def RTR3PTR_DEF
337; The pesudo-instruction used to declare an initialized pointer variable in the ring-3 host context.
338%if R3_ARCH_BITS == 64
339 %define RTR3PTR_DEF dq
340%else
341 %define RTR3PTR_DEF dd
342%endif
343
344;; @def RTR3PTR_RES
345; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
346; variable of the ring-3 host context.
347%if R3_ARCH_BITS == 64
348 %define RTR3PTR_RES resq
349%else
350 %define RTR3PTR_RES resd
351%endif
352
353;; @def RTR3PTR_PRE
354; The memory operand prefix used for a pointer in the ring-3 host context.
355%if R3_ARCH_BITS == 64
356 %define RTR3PTR_PRE qword
357%else
358 %define RTR3PTR_PRE dword
359%endif
360
361;; @def RTR3PTR_CB
362; The size in bytes of a pointer in the ring-3 host context.
363%if R3_ARCH_BITS == 64
364 %define RTR3PTR_CB 8
365%else
366 %define RTR3PTR_CB 4
367%endif
368
369
370
371;; @def RTGCPTR_DEF
372; The pesudo-instruction used to declare an initialized pointer variable in the guest context.
373%if GC_ARCH_BITS == 64
374 %define RTGCPTR_DEF dq
375%else
376 %define RTGCPTR_DEF dd
377%endif
378
379;; @def RTGCPTR_RES
380; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
381; variable of the guest context.
382%if GC_ARCH_BITS == 64
383 %define RTGCPTR_RES resq
384%else
385 %define RTGCPTR_RES resd
386%endif
387
388;; @def RTGCPTR_PRE
389; The memory operand prefix used for a pointer in the guest context.
390%if GC_ARCH_BITS == 64
391 %define RTGCPTR_PRE qword
392%else
393 %define RTGCPTR_PRE dword
394%endif
395
396;; @def RTGCPTR_CB
397; The size in bytes of a pointer in the guest context.
398%if GC_ARCH_BITS == 64
399 %define RTGCPTR_CB 8
400%else
401 %define RTGCPTR_CB 4
402%endif
403
404
405
406;; @def RT_CCPTR_DEF
407; The pesudo-instruction used to declare an initialized pointer variable in the current context.
408
409;; @def RT_CCPTR_RES
410; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
411; variable of the current context.
412
413;; @def RT_CCPTR_PRE
414; The memory operand prefix used for a pointer in the current context.
415
416;; @def RT_CCPTR_CB
417; The size in bytes of a pointer in the current context.
418
419%ifdef IN_GC
420 %define RTCCPTR_DEF RTGCPTR_DEF
421 %define RTCCPTR_RES RTGCPTR_RES
422 %define RTCCPTR_PRE RTGCPTR_PRE
423 %define RTCCPTR_CB RTGCPTR_CB
424%else
425 %ifdef IN_RING0
426 %define RTCCPTR_DEF RTR0PTR_DEF
427 %define RTCCPTR_RES RTR0PTR_RES
428 %define RTCCPTR_PRE RTR0PTR_PRE
429 %define RTCCPTR_CB RTR0PTR_CB
430 %else
431 %define RTCCPTR_DEF RTR3PTR_DEF
432 %define RTCCPTR_RES RTR3PTR_RES
433 %define RTCCPTR_PRE RTR3PTR_PRE
434 %define RTCCPTR_CB RTR3PTR_CB
435 %endif
436%endif
437
438
439
440;; @def RTHCPHYS_DEF
441; The pesudo-instruction used to declare an initialized host physical address.
442%define RTHCPHYS_DEF dq
443
444;; @def RTHCPTR_RES
445; The pesudo-instruction used to declare (=reserve space for) an uninitialized
446; host physical address variable
447%define RTHCPHYS_RES resq
448
449;; @def RTHCPTR_PRE
450; The memory operand prefix used for a host physical address.
451%define RTHCPHYS_PRE qword
452
453;; @def RTHCPHYS_CB
454; The size in bytes of a host physical address.
455%define RTHCPHYS_CB 8
456
457
458
459;; @def RTGCPHYS_DEF
460; The pesudo-instruction used to declare an initialized guest physical address.
461%define RTGCPHYS_DEF dd
462
463;; @def RTGCPTR_RES
464; The pesudo-instruction used to declare (=reserve space for) an uninitialized
465; guest physical address variable
466%define RTGCPHYS_RES resd
467
468;; @def RTGCPTR_PRE
469; The memory operand prefix used for a guest physical address.
470%define RTGCPHYS_PRE dword
471
472;; @def RTGCPHYS_CB
473; The size in bytes of a guest physical address.
474%define RTGCPHYS_CB 4
475
476
477
478;;
479; The size of the long double C/C++ type.
480; On 32-bit Darwin this is 16 bytes, on L4, Linux, OS/2 and Windows
481; it's 12 bytes.
482; @todo figure out what 64-bit Windows does (I don't recall right now).
483%ifdef __X86__
484 %ifdef __DARWIN__
485 %define RTLRD_CB 16
486 %else
487 %define RTLRD_CB 12
488 %endif
489%else
490 %define RTLRD_CB 16
491%endif
492
493
494
495;; @def ASM_CALL64_GCC
496; Indicates that we're using the GCC 64-bit calling convention.
497; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
498
499;; @def ASM_CALL64_MSC
500; Indicates that we're using the Microsoft 64-bit calling convention (fastcall on steroids).
501; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
502
503; Note: On X86 we're using cdecl unconditionally. There is not yet any common
504; calling convention on AMD64, that's why we need to support two different ones.)
505
506%ifdef __AMD64__
507 %ifndef ASM_CALL64_GCC
508 %ifndef ASM_CALL64_MSC
509 ; define it based on the object format.
510 %ifdef ASM_FORMAT_PE
511 %define ASM_CALL64_MSC
512 %else
513 %define ASM_CALL64_GCC
514 %endif
515 %endif
516 %else
517 ; sanity check.
518 %ifdef ASM_CALL64_MSC
519 %error "Only one of the ASM_CALL64_* defines should be defined!"
520 %endif
521 %endif
522%endif
523
524
525;; @def RT_NOCRT
526; Symbol name wrapper for the No-CRT bits.
527;
528; In order to coexist in the same process as other CRTs, we need to
529; decorate the symbols such that they don't conflict the ones in the
530; other CRTs. The result of such conflicts / duplicate symbols can
531; confuse the dynamic loader on unix like systems.
532;
533; @remark Always feed the name to this macro first and then pass the result
534; on to the next *NAME* macro.
535;
536%ifndef RT_WITHOUT_NOCRT_WRAPPERS
537 %define RT_NOCRT(name) nocrt_ %+ name
538%else
539 %define RT_NOCRT(name) name
540%endif
541
542
543
544;; @def xS
545; The stack unit size / The register unit size.
546
547;; @def xSP
548; The stack pointer register (RSP or ESP).
549
550;; @def xBP
551; The base pointer register (RBP or ESP).
552
553;; @def xAX
554; RAX or EAX depending on context.
555
556;; @def xBX
557; RBX or EBX depending on context.
558
559;; @def xCX
560; RCX or ECX depending on context.
561
562;; @def xDX
563; RDX or EDX depending on context.
564
565;; @def xDI
566; RDI or EDI depending on context.
567
568;; @def xSI
569; RSI or ESI depending on context.
570
571%ifdef __AMD64__
572 %define xS 8
573 %define xSP rsp
574 %define xBP rbp
575 %define xAX rax
576 %define xBX rbx
577 %define xCX rcx
578 %define xDX rdx
579 %define xDI rdi
580 %define xSI rsi
581%else
582 %define xS 4
583 %define xSP esp
584 %define xBP ebp
585 %define xAX eax
586 %define xBX ebx
587 %define xCX ecx
588 %define xDX edx
589 %define xDI edi
590 %define xSI esi
591%endif
592
593%endif
Note: See TracBrowser for help on using the repository browser.

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