VirtualBox

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

Last change on this file since 52335 was 52335, checked in by vboxsync, 10 years ago

RTBigNum: Added shift APIs, implemented a faster division algorithm, optimized multiplication on x86 & amd64.

  • Property eol-style set to native
File size: 20.2 KB
Line 
1;; @file
2; IPRT - Global YASM/NASM macros
3;
4
5;
6; Copyright (C) 2006-2012 Oracle Corporation
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
26%ifndef ___iprt_asmdefs_mac
27%define ___iprt_asmdefs_mac
28
29
30;; @defgroup grp_rt_cdefs_size Size Constants
31; (Of course, these are binary computer terms, not SI.)
32; @{
33;; 1 K (Kilo) (1 024).
34%define _1K 000000400h
35;; 4 K (Kilo) (4 096).
36%define _4K 000001000h
37;; 32 K (Kilo) (32 678).
38%define _32K 000008000h
39;; 64 K (Kilo) (65 536).
40%define _64K 000010000h
41;; 128 K (Kilo) (131 072).
42%define _128K 000020000h
43;; 256 K (Kilo) (262 144).
44%define _256K 000040000h
45;; 512 K (Kilo) (524 288).
46%define _512K 000080000h
47;; 1 M (Mega) (1 048 576).
48%define _1M 000100000h
49;; 2 M (Mega) (2 097 152).
50%define _2M 000200000h
51;; 4 M (Mega) (4 194 304).
52%define _4M 000400000h
53;; 1 G (Giga) (1 073 741 824).
54%define _1G 040000000h
55;; 2 G (Giga) (2 147 483 648).
56%define _2G 00000000080000000h
57;; 4 G (Giga) (4 294 967 296).
58%define _4G 00000000100000000h
59;; 1 T (Tera) (1 099 511 627 776).
60%define _1T 00000010000000000h
61;; 1 P (Peta) (1 125 899 906 842 624).
62%define _1P 00004000000000000h
63;; 1 E (Exa) (1 152 921 504 606 846 976).
64%define _1E 01000000000000000h
65;; 2 E (Exa) (2 305 843 009 213 693 952).
66%define _2E 02000000000000000h
67;; @}
68
69
70;;
71; Make the mask for the given bit.
72%define RT_BIT(bit) (1 << bit)
73
74;;
75; Makes a 32-bit unsigned (not type safe, but whatever) out of four byte values.
76%define RT_MAKE_U32_FROM_U8(b0, b1, b2, b3) ( (b3 << 24) | (b2 << 16) | (b1 << 8) | b0 )
77
78;; Define ASM_FORMAT_PE64 if applicable.
79%ifdef ASM_FORMAT_PE
80 %ifdef RT_ARCH_AMD64
81 %define ASM_FORMAT_PE64 1
82 %endif
83%endif
84
85;;
86; SEH64 macros.
87%ifdef RT_ASM_WITH_SEH64
88 %ifndef ASM_FORMAT_PE64
89 %undef RT_ASM_WITH_SEH64
90 %endif
91%endif
92
93;;
94; Records a xBP push.
95%macro SEH64_PUSH_xBP 0
96 %ifdef RT_ASM_WITH_SEH64
97 [pushreg rbp]
98 %endif
99%endmacro
100
101;;
102; Sets xBP as frame pointer that's pointing to a stack position %1 relative to xSP.
103%macro SEH64_SET_FRAME_xBP 1
104 %ifdef RT_ASM_WITH_SEH64
105 [setframe rbp, %1]
106 %endif
107%endmacro
108
109;;
110; Ends the prologue.
111%macro SEH64_END_PROLOGUE 0
112 %ifdef RT_ASM_WITH_SEH64
113 [endprolog]
114 %endif
115%endmacro
116
117
118;;
119; Align code, pad with INT3.
120%define ALIGNCODE(alignment) align alignment, db 0cch
121
122;;
123; Align data, pad with ZEROs.
124%define ALIGNDATA(alignment) align alignment, db 0
125
126;;
127; Align BSS, pad with ZEROs.
128%define ALIGNBSS(alignment) align alignment, resb 1
129
130;;
131; NAME_OVERLOAD can be defined by a .asm module to modify all the
132; names created using the name macros in this files.
133; This is handy when you've got some kind of template code.
134%ifndef NAME_OVERLOAD
135 %define NAME_OVERLOAD(name) name
136%endif
137
138;;
139; Mangles the given name so it can be referenced using DECLASM() in the
140; C/C++ world.
141%ifndef ASM_FORMAT_BIN
142 %ifdef RT_ARCH_X86
143 %ifdef RT_OS_OS2
144 %define NAME(name) _ %+ NAME_OVERLOAD(name)
145 %endif
146 %ifdef RT_OS_WINDOWS
147 %define NAME(name) _ %+ NAME_OVERLOAD(name)
148 %endif
149 %endif
150 %ifdef RT_OS_DARWIN
151 %define NAME(name) _ %+ NAME_OVERLOAD(name)
152 %endif
153%endif
154%ifndef NAME
155 %define NAME(name) NAME_OVERLOAD(name)
156%endif
157
158;;
159; Mangles the given C name so it will _import_ the right symbol.
160%ifdef ASM_FORMAT_PE
161 %define IMPNAME(name) __imp_ %+ NAME(name)
162%else
163 %define IMPNAME(name) NAME(name)
164%endif
165
166;;
167; Gets the pointer to an imported object.
168%ifdef ASM_FORMAT_PE
169 %ifdef RT_ARCH_AMD64
170 %define IMP(name) qword [IMPNAME(name) wrt rip]
171 %else
172 %define IMP(name) dword [IMPNAME(name)]
173 %endif
174%else
175 %define IMP(name) IMPNAME(name)
176%endif
177
178;;
179; Declares an imported object for use with IMP2.
180; @note May change the current section!
181%macro EXTERN_IMP2 1
182 extern IMPNAME(%1)
183 BEGINDATA
184 %ifdef ASM_FORMAT_MACHO
185 g_Imp2_ %+ %1: RTCCPTR_DEF IMPNAME(%1)
186 %endif
187%endmacro
188
189;;
190; Gets the pointer to an imported object, version 2.
191%ifdef ASM_FORMAT_PE
192 %ifdef RT_ARCH_AMD64
193 %define IMP2(name) qword [IMPNAME(name) wrt rip]
194 %else
195 %define IMP2(name) dword [IMPNAME(name)]
196 %endif
197%elifdef ASM_FORMAT_ELF
198 %ifdef PIC
199 %ifdef RT_ARCH_AMD64
200 %define IMP2(name) qword [rel IMPNAME(name) wrt ..got]
201 %else
202 %define IMP2(name) IMPNAME(name) wrt ..plt
203 %endif
204 %endif
205%elifdef ASM_FORMAT_MACHO
206 %define IMP2(name) RTCCPTR_PRE [g_Imp2_ %+ name xWrtRIP]
207%endif
208%ifndef IMP2
209 %define IMP2(name) IMPNAME(name)
210%endif
211
212
213
214;;
215; Global marker which is DECLASM() compatible.
216%macro GLOBALNAME 1,
217%ifndef ASM_FORMAT_BIN
218global NAME(%1)
219%endif
220NAME(%1):
221%endmacro
222
223;;
224; Global exported marker which is DECLASM() compatible.
225%macro EXPORTEDNAME 1,
226 %ifdef ASM_FORMAT_PE
227 export %1=NAME(%1)
228 %endif
229 %ifdef __NASM__
230 %ifdef ASM_FORMAT_OMF
231 export NAME(%1) NAME(%1)
232 %endif
233%endif
234GLOBALNAME %1
235%endmacro
236
237;;
238; Global marker which is DECLASM() compatible.
239%macro GLOBALNAME_EX 2,
240%ifndef ASM_FORMAT_BIN
241 %ifdef ASM_FORMAT_ELF
242global NAME(%1):%2
243 %else
244global NAME(%1)
245 %endif
246%endif
247NAME(%1):
248%endmacro
249
250;;
251; Global exported marker which is DECLASM() compatible.
252%macro EXPORTEDNAME_EX 2,
253 %ifdef ASM_FORMAT_PE
254 export %1=NAME(%1)
255 %endif
256 %ifdef __NASM__
257 %ifdef ASM_FORMAT_OMF
258 export NAME(%1) NAME(%1)
259 %endif
260%endif
261GLOBALNAME_EX %1, %2
262%endmacro
263
264;;
265; Begins a C callable procedure.
266%macro BEGINPROC 1
267 %ifdef RT_ASM_WITH_SEH64
268global NAME(%1):function
269proc_frame NAME(%1)
270 %else
271GLOBALNAME_EX %1, function hidden
272 %endif
273%endmacro
274
275;;
276; Begins a C callable exported procedure.
277%macro BEGINPROC_EXPORTED 1
278 %ifdef RT_ASM_WITH_SEH64
279 %ifdef ASM_FORMAT_PE
280export %1=NAME(%1)
281 %endif
282global NAME(%1):function
283proc_frame NAME(%1)
284 %else
285EXPORTEDNAME_EX %1, function
286 %endif
287%endmacro
288
289;;
290; Ends a C callable procedure.
291%macro ENDPROC 1
292 %ifdef RT_ASM_WITH_SEH64
293endproc_frame
294 %endif
295GLOBALNAME_EX %1 %+ _EndProc, function hidden
296%ifdef ASM_FORMAT_ELF
297size NAME(%1) NAME(%1 %+ _EndProc) - NAME(%1)
298size NAME(%1 %+ _EndProc) 0
299%endif
300 db 0xCC, 0xCC, 0xCC, 0xCC
301%endmacro
302
303
304;
305; Do OMF and Mach-O/Yasm segment definitions
306;
307; Both format requires this to get the segment order right, in the Mach-O/Yasm case
308; it's only to make sure the .bss section ends up last (it's not declared here).
309;
310%ifdef ASM_FORMAT_OMF
311
312 ; 16-bit segments first (OMF / OS/2 specific).
313 %ifdef RT_INCL_16BIT_SEGMENTS
314 segment DATA16 public CLASS=FAR_DATA align=16 use16
315 segment DATA16_INIT public CLASS=FAR_DATA align=16 use16
316 group DGROUP16 DATA16 DATA16_INIT
317
318 ;;
319 ; Begins 16-bit data
320 %macro BEGINDATA16 0
321 segment DATA16
322 %endmacro
323
324 ;;
325 ; Begins 16-bit init data
326 %macro BEGINDATA16INIT 0
327 segment DATA16_INIT
328 %endmacro
329
330 segment CODE16 public CLASS=FAR_CODE align=16 use16
331 segment CODE16_INIT public CLASS=FAR_CODE align=16 use16
332 group CGROUP16 CODE16 CODE16_INIT
333
334 ;;
335 ; Begins 16-bit code
336 %macro BEGINCODE16 0
337 segment CODE16
338 %endmacro
339
340 ;;
341 ; Begins 16-bit init code
342 %macro BEGINCODE16INIT 0
343 segment CODE16_INIT
344 %endmacro
345
346 %endif
347
348 ; 32-bit segments.
349 segment TEXT32 public CLASS=CODE align=16 use32 flat
350 segment DATA32 public CLASS=DATA align=16 use32 flat
351 segment BSS32 public CLASS=BSS align=16 use32 flat
352
353 ; Make the TEXT32 segment default.
354 segment TEXT32
355%endif
356
357%ifdef ASM_FORMAT_MACHO
358 %ifdef __YASM__
359 section .text
360 section .data
361 %endif
362%endif
363
364
365;;
366; Begins code
367%ifdef ASM_FORMAT_OMF
368 %macro BEGINCODE 0
369 segment TEXT32
370 %endmacro
371%else
372%macro BEGINCODE 0
373 section .text
374%endmacro
375%endif
376
377;;
378; Begins constant (read-only) data
379;
380; @remarks This is mapped to the CODE section/segment when there isn't
381; any dedicated const section/segment. (There is code that
382; assumes this, so don't try change it.)
383%ifdef ASM_FORMAT_OMF
384 %macro BEGINCONST 0
385 segment TEXT32
386 %endmacro
387%else
388 %macro BEGINCONST 0
389 %ifdef ASM_FORMAT_MACHO ;; @todo check the other guys too.
390 section .rodata
391 %else
392 section .text
393 %endif
394 %endmacro
395%endif
396
397;;
398; Begins initialized data
399%ifdef ASM_FORMAT_OMF
400 %macro BEGINDATA 0
401 segment DATA32
402 %endmacro
403%else
404%macro BEGINDATA 0
405 section .data
406%endmacro
407%endif
408
409;;
410; Begins uninitialized data
411%ifdef ASM_FORMAT_OMF
412 %macro BEGINBSS 0
413 segment BSS32
414 %endmacro
415%else
416%macro BEGINBSS 0
417 section .bss
418%endmacro
419%endif
420
421
422
423;; @def ARCH_BITS
424; Defines the bit count of the current context.
425%ifndef ARCH_BITS
426 %ifdef RT_ARCH_AMD64
427 %define ARCH_BITS 64
428 %else
429 %define ARCH_BITS 32
430 %endif
431%endif
432
433;; @def HC_ARCH_BITS
434; Defines the host architechture bit count.
435%ifndef HC_ARCH_BITS
436 %ifndef IN_RC
437 %define HC_ARCH_BITS ARCH_BITS
438 %else
439 %define HC_ARCH_BITS 32
440 %endif
441%endif
442
443;; @def R3_ARCH_BITS
444; Defines the host ring-3 architechture bit count.
445%ifndef R3_ARCH_BITS
446 %ifdef IN_RING3
447 %define R3_ARCH_BITS ARCH_BITS
448 %else
449 %define R3_ARCH_BITS HC_ARCH_BITS
450 %endif
451%endif
452
453;; @def R0_ARCH_BITS
454; Defines the host ring-0 architechture bit count.
455%ifndef R0_ARCH_BITS
456 %ifdef IN_RING0
457 %define R0_ARCH_BITS ARCH_BITS
458 %else
459 %define R0_ARCH_BITS HC_ARCH_BITS
460 %endif
461%endif
462
463;; @def GC_ARCH_BITS
464; Defines the guest architechture bit count.
465%ifndef GC_ARCH_BITS
466 %ifdef IN_RC
467 %define GC_ARCH_BITS ARCH_BITS
468 %else
469 %define GC_ARCH_BITS 32
470 %endif
471%endif
472
473
474
475;; @def RTHCPTR_DEF
476; The pesudo-instruction used to declare an initialized pointer variable in the host context.
477%if HC_ARCH_BITS == 64
478 %define RTHCPTR_DEF dq
479%else
480 %define RTHCPTR_DEF dd
481%endif
482
483;; @def RTHCPTR_RES
484; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
485; variable of the host context.
486%if HC_ARCH_BITS == 64
487 %define RTHCPTR_RES resq
488%else
489 %define RTHCPTR_RES resd
490%endif
491
492;; @def RTHCPTR_PRE
493; The memory operand prefix used for a pointer in the host context.
494%if HC_ARCH_BITS == 64
495 %define RTHCPTR_PRE qword
496%else
497 %define RTHCPTR_PRE dword
498%endif
499
500;; @def RTHCPTR_CB
501; The size in bytes of a pointer in the host context.
502%if HC_ARCH_BITS == 64
503 %define RTHCPTR_CB 8
504%else
505 %define RTHCPTR_CB 4
506%endif
507
508
509
510;; @def RTR0PTR_DEF
511; The pesudo-instruction used to declare an initialized pointer variable in the ring-0 host context.
512%if R0_ARCH_BITS == 64
513 %define RTR0PTR_DEF dq
514%else
515 %define RTR0PTR_DEF dd
516%endif
517
518;; @def RTR0PTR_RES
519; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
520; variable of the ring-0 host context.
521%if R0_ARCH_BITS == 64
522 %define RTR0PTR_RES resq
523%else
524 %define RTR0PTR_RES resd
525%endif
526
527;; @def RTR0PTR_PRE
528; The memory operand prefix used for a pointer in the ring-0 host context.
529%if R0_ARCH_BITS == 64
530 %define RTR0PTR_PRE qword
531%else
532 %define RTR0PTR_PRE dword
533%endif
534
535;; @def RTR0PTR_CB
536; The size in bytes of a pointer in the ring-0 host context.
537%if R0_ARCH_BITS == 64
538 %define RTR0PTR_CB 8
539%else
540 %define RTR0PTR_CB 4
541%endif
542
543
544
545;; @def RTR3PTR_DEF
546; The pesudo-instruction used to declare an initialized pointer variable in the ring-3 host context.
547%if R3_ARCH_BITS == 64
548 %define RTR3PTR_DEF dq
549%else
550 %define RTR3PTR_DEF dd
551%endif
552
553;; @def RTR3PTR_RES
554; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
555; variable of the ring-3 host context.
556%if R3_ARCH_BITS == 64
557 %define RTR3PTR_RES resq
558%else
559 %define RTR3PTR_RES resd
560%endif
561
562;; @def RTR3PTR_PRE
563; The memory operand prefix used for a pointer in the ring-3 host context.
564%if R3_ARCH_BITS == 64
565 %define RTR3PTR_PRE qword
566%else
567 %define RTR3PTR_PRE dword
568%endif
569
570;; @def RTR3PTR_CB
571; The size in bytes of a pointer in the ring-3 host context.
572%if R3_ARCH_BITS == 64
573 %define RTR3PTR_CB 8
574%else
575 %define RTR3PTR_CB 4
576%endif
577
578
579
580;; @def RTGCPTR_DEF
581; The pesudo-instruction used to declare an initialized pointer variable in the guest context.
582%if GC_ARCH_BITS == 64
583 %define RTGCPTR_DEF dq
584%else
585 %define RTGCPTR_DEF dd
586%endif
587
588;; @def RTGCPTR_RES
589; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
590; variable of the guest context.
591%if GC_ARCH_BITS == 64
592 %define RTGCPTR_RES resq
593%else
594 %define RTGCPTR_RES resd
595%endif
596
597%define RTGCPTR32_RES resd
598%define RTGCPTR64_RES resq
599
600;; @def RTGCPTR_PRE
601; The memory operand prefix used for a pointer in the guest context.
602%if GC_ARCH_BITS == 64
603 %define RTGCPTR_PRE qword
604%else
605 %define RTGCPTR_PRE dword
606%endif
607
608;; @def RTGCPTR_CB
609; The size in bytes of a pointer in the guest context.
610%if GC_ARCH_BITS == 64
611 %define RTGCPTR_CB 8
612%else
613 %define RTGCPTR_CB 4
614%endif
615
616
617;; @def RTRCPTR_DEF
618; The pesudo-instruction used to declare an initialized pointer variable in the raw mode context.
619%define RTRCPTR_DEF dd
620
621;; @def RTRCPTR_RES
622; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
623; variable of the raw mode context.
624%define RTRCPTR_RES resd
625
626;; @def RTRCPTR_PRE
627; The memory operand prefix used for a pointer in the raw mode context.
628%define RTRCPTR_PRE dword
629
630;; @def RTRCPTR_CB
631; The size in bytes of a pointer in the raw mode context.
632%define RTRCPTR_CB 4
633
634
635;; @def RT_CCPTR_DEF
636; The pesudo-instruction used to declare an initialized pointer variable in the current context.
637
638;; @def RT_CCPTR_RES
639; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
640; variable of the current context.
641
642;; @def RT_CCPTR_PRE
643; The memory operand prefix used for a pointer in the current context.
644
645;; @def RT_CCPTR_CB
646; The size in bytes of a pointer in the current context.
647
648%ifdef IN_RC
649 %define RTCCPTR_DEF RTRCPTR_DEF
650 %define RTCCPTR_RES RTRCPTR_RES
651 %define RTCCPTR_PRE RTRCPTR_PRE
652 %define RTCCPTR_CB RTRCPTR_CB
653%else
654 %ifdef IN_RING0
655 %define RTCCPTR_DEF RTR0PTR_DEF
656 %define RTCCPTR_RES RTR0PTR_RES
657 %define RTCCPTR_PRE RTR0PTR_PRE
658 %define RTCCPTR_CB RTR0PTR_CB
659 %else
660 %define RTCCPTR_DEF RTR3PTR_DEF
661 %define RTCCPTR_RES RTR3PTR_RES
662 %define RTCCPTR_PRE RTR3PTR_PRE
663 %define RTCCPTR_CB RTR3PTR_CB
664 %endif
665%endif
666
667
668
669;; @def RTHCPHYS_DEF
670; The pesudo-instruction used to declare an initialized host physical address.
671%define RTHCPHYS_DEF dq
672
673;; @def RTHCPTR_RES
674; The pesudo-instruction used to declare (=reserve space for) an uninitialized
675; host physical address variable
676%define RTHCPHYS_RES resq
677
678;; @def RTHCPTR_PRE
679; The memory operand prefix used for a host physical address.
680%define RTHCPHYS_PRE qword
681
682;; @def RTHCPHYS_CB
683; The size in bytes of a host physical address.
684%define RTHCPHYS_CB 8
685
686
687
688;; @def RTGCPHYS_DEF
689; The pesudo-instruction used to declare an initialized guest physical address.
690%define RTGCPHYS_DEF dq
691
692;; @def RTGCPHYS_RES
693; The pesudo-instruction used to declare (=reserve space for) an uninitialized
694; guest physical address variable
695%define RTGCPHYS_RES resq
696
697;; @def RTGCPTR_PRE
698; The memory operand prefix used for a guest physical address.
699%define RTGCPHYS_PRE qword
700
701;; @def RTGCPHYS_CB
702; The size in bytes of a guest physical address.
703%define RTGCPHYS_CB 8
704
705
706
707;;
708; The size of the long double C/C++ type.
709; On 32-bit Darwin this is 16 bytes, on L4, Linux, OS/2 and Windows
710; it's 12 bytes.
711; @todo figure out what 64-bit Windows does (I don't recall right now).
712%ifdef RT_ARCH_X86
713 %ifdef RT_OS_DARWIN
714 %define RTLRD_CB 16
715 %else
716 %define RTLRD_CB 12
717 %endif
718%else
719 %define RTLRD_CB 16
720%endif
721
722
723
724;; @def ASM_CALL64_GCC
725; Indicates that we're using the GCC 64-bit calling convention.
726; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
727
728;; @def ASM_CALL64_MSC
729; Indicates that we're using the Microsoft 64-bit calling convention (fastcall on steroids).
730; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
731
732; Note: On X86 we're using cdecl unconditionally. There is not yet any common
733; calling convention on AMD64, that's why we need to support two different ones.)
734
735%ifdef RT_ARCH_AMD64
736 %ifndef ASM_CALL64_GCC
737 %ifndef ASM_CALL64_MSC
738 ; define it based on the object format.
739 %ifdef ASM_FORMAT_PE
740 %define ASM_CALL64_MSC
741 %else
742 %define ASM_CALL64_GCC
743 %endif
744 %endif
745 %else
746 ; sanity check.
747 %ifdef ASM_CALL64_MSC
748 %error "Only one of the ASM_CALL64_* defines should be defined!"
749 %endif
750 %endif
751%endif
752
753
754;; @def RT_NOCRT
755; Symbol name wrapper for the No-CRT bits.
756;
757; In order to coexist in the same process as other CRTs, we need to
758; decorate the symbols such that they don't conflict the ones in the
759; other CRTs. The result of such conflicts / duplicate symbols can
760; confuse the dynamic loader on unix like systems.
761;
762; @remark Always feed the name to this macro first and then pass the result
763; on to the next *NAME* macro.
764;
765%ifndef RT_WITHOUT_NOCRT_WRAPPERS
766 %define RT_NOCRT(name) nocrt_ %+ name
767%else
768 %define RT_NOCRT(name) name
769%endif
770
771;; @def RT_NOCRT_BEGINPROC
772; Starts a NOCRT procedure, taking care of name wrapping and aliasing.
773;
774; Aliasing (weak ones, if supported) will be created when RT_WITH_NOCRT_ALIASES
775; is defined and RT_WITHOUT_NOCRT_WRAPPERS isn't.
776;
777%macro RT_NOCRT_BEGINPROC 1
778%ifdef RT_WITH_NOCRT_ALIASES
779BEGINPROC RT_NOCRT(%1)
780%ifdef ASM_FORMAT_ELF
781global NAME(%1)
782weak NAME(%1)
783NAME(%1):
784%else
785GLOBALNAME %1
786%endif
787%else ; !RT_WITH_NOCRT_ALIASES
788BEGINPROC RT_NOCRT(%1)
789%endif ; !RT_WITH_NOCRT_ALIASES
790%endmacro ; RT_NOCRT_BEGINPROC
791
792%ifdef RT_WITH_NOCRT_ALIASES
793 %ifdef RT_WITHOUT_NOCRT_WRAPPERS
794 %error "RT_WITH_NOCRT_ALIASES and RT_WITHOUT_NOCRT_WRAPPERS doesn't mix."
795 %endif
796%endif
797
798
799
800;; @def xCB
801; The stack unit size / The register unit size.
802
803;; @def xSP
804; The stack pointer register (RSP or ESP).
805
806;; @def xBP
807; The base pointer register (RBP or ESP).
808
809;; @def xAX
810; RAX or EAX depending on context.
811
812;; @def xBX
813; RBX or EBX depending on context.
814
815;; @def xCX
816; RCX or ECX depending on context.
817
818;; @def xDX
819; RDX or EDX depending on context.
820
821;; @def xDI
822; RDI or EDI depending on context.
823
824;; @def xSI
825; RSI or ESI depending on context.
826
827;; @def xWrtRIP
828; 'wrt rip' for AMD64 targets, nothing for x86 ones.
829
830%ifdef RT_ARCH_AMD64
831 %define xCB 8
832 %define xSP rsp
833 %define xBP rbp
834 %define xAX rax
835 %define xBX rbx
836 %define xCX rcx
837 %define xDX rdx
838 %define xDI rdi
839 %define xSI rsi
840 %define xWrtRIP wrt rip
841%else
842 %define xCB 4
843 %define xSP esp
844 %define xBP ebp
845 %define xAX eax
846 %define xBX ebx
847 %define xCX ecx
848 %define xDX edx
849 %define xDI edi
850 %define xSI esi
851 %define xWrtRIP
852%endif
853
854
855;
856; Some simple compile time assertions.
857;
858; Note! Requires new kBuild to work.
859;
860
861;;
862; Structure size assertion macro.
863%define AssertCompileSize(a_Type, a_Size) AssertCompileSizeML a_Type, a_Size
864%macro AssertCompileSizeML 2,
865 %ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
866 %assign AssertVar_cbActual %1 %+ _size
867 %assign AssertVar_cbExpected %2
868 %if AssertVar_cbActual != AssertVar_cbExpected
869 %error %1 is AssertVar_cbActual bytes instead of AssertVar_cbExpected
870 %endif
871 %endif
872%endmacro
873
874;;
875; Structure memember offset assertion macro.
876%define AssertCompileMemberOffset(a_Type, a_Member, a_off) AssertCompileMemberOffsetML a_Type, a_Member, a_off
877%macro AssertCompileMemberOffsetML 3,
878 %ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
879 %assign AssertVar_offActual %1 %+ . %+ %2
880 %assign AssertVar_offExpected %3
881 %if AssertVar_offActual != AssertVar_offExpected
882 %error %1 %+ . %+ %2 is at AssertVar_offActual instead of AssertVar_offExpected
883 %endif
884 %endif
885%endmacro
886
887%endif
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